git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jeremy Maitin-Shepard <jeremy@jeremyms.com>
To: "Ævar Arnfjörð Bjarmason" <avarab@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: Limitations of ownership checking fox for CVE-2022-24765
Date: Wed, 13 Apr 2022 09:00:51 -0700	[thread overview]
Message-ID: <CAKJfoCHWYaQGgK1_Wv0j1qW--pwD3=T9A5m8zQJRwwVOrRLx_Q@mail.gmail.com> (raw)
In-Reply-To: <220413.86v8vdf46n.gmgdl@evledraar.gmail.com>

On Wed, Apr 13, 2022, 07:28 Ævar Arnfjörð Bjarmason <avarab@gmail.com> wrote:
>
>
> On Tue, Apr 12 2022, Jeremy Maitin-Shepard wrote:
>
> > The current fix for CVE-2022-24765 prevents unsafe command execution
> > in some cases but does not address all cases:
> >
> > - Ownership by the current user should not be taken to mean "trusted":
> > the user may have retrieved a directory tree from an untrusted source,
> > including:
> >   - Another version control system (which won't prevent a .git directory)
> >   - Unpacking an archive
> >   - FUSE mounting a remote filesystem
>
> Those would be good to fix, but I don't think it's correct that it's
> within the scope of CVE-2022-24765.
>
> That CVE is specifically about the multi-user case where we'd previously
> pick up another user's .git directory.


I can see the distinction but I would say the CVE addresses a specific
case of the more general problem that commands like `status` for
inspecting a repository aren't safe by default.

By solving the more general problem we also solve the case described
in the CVE.  On the other hand if the more general problem is not
solved then it is still not safe to run `git status` automatically.
The fix for this CVE might give users the impression that it is safe,
when given how most users do things, it is probably not.

> As noted in [1] the solution that got committed does suffer from that
> edge case, but I think [1] also summarizes why that approach was taken.


The argument in the thread seemed to be that by broadly blocking the
multi-user issue, there is less risk of discovering another multi-user
vulnerability.  But since it does nothing to address the more general
issue of `git status` being unsafe to run from untrusted directories,
the real mitigation is to ensure `git status` isn't run automatically
(and carefully inspect any untrusted directories before running it).
And if users employ that mitigation, the additional ownership check
isn't necessary.

Other tools such as direnv and the Emacs dir-locals mechanism have
exactly the same issue of needing to decide whether to trust
configuration files in the current directory.  They solve the issue
with an allowlist.  I'm not aware of any tool that trusts based on
ownership.

>
> A way of mitigating that case is to put something like this in one's
> .bashrc:
>
>         git () {
>                 command git -c core.fsmonitor=false "$@";
>         }
>
> Then, even if you need to use that safe.directory feature you won't be
> vulnerable to someone sneaking up on you and adding this to the
> .git/config of the (presumably core.sharedRepository) repo:
>
>     [core]
>     fsmonitor = rm -rf /


It fixes the current known issue by disabling that feature altogether,
but unlike a hypothetical --safe option it doesn't protect against any
similar config options that may be added in the future (or existing
ones found in the future to be unsafe).

Additionally it doesn't provide a mechanism for allowing specific
commands or specific repositories.

On Wed, Apr 13, 2022 at 7:28 AM Ævar Arnfjörð Bjarmason
<avarab@gmail.com> wrote:
>
>
> On Tue, Apr 12 2022, Jeremy Maitin-Shepard wrote:
>
> > The current fix for CVE-2022-24765 prevents unsafe command execution
> > in some cases but does not address all cases:
> >
> > - Ownership by the current user should not be taken to mean "trusted":
> > the user may have retrieved a directory tree from an untrusted source,
> > including:
> >   - Another version control system (which won't prevent a .git directory)
> >   - Unpacking an archive
> >   - FUSE mounting a remote filesystem
>
> Those would be good to fix, but I don't think it's correct that it's
> within the scope of CVE-2022-24765.
>
> That CVE is specifically about the multi-user case where we'd previously
> pick up another user's .git directory.
>
> Whereas these cases aren't like that in that they:
>
> 1) Require the user to have set up that .git directory themselves, in
>    one way or another.
> 2) ...or for the OS to enforce user permissions so loosely that others
>   can chown files as you.
>
> > Additionally, the current fix requires additional configuration to
> > support existing use cases, and does not provide uses a way to safely
> > execute commands like `git status` or `git log` on untrusted
> > repositories.
>
> Yes, I agree. I.e. that the method of fixing it is all-or-nothing, and
> therefore creates escalation issues that wouldn't occur with a narrower approach.
>
> There was extensive off-list discussion about this, my [1] touches some
> of it. To quote my side of a discussion following-up [1] about the more
> narrow approach:
>
>         An implementation that asks the user to create an opt-in for any and all
>         config will be much less secure for the core.sharedRepository case,
>         which is an edge case my proposed change on top doesn't have.
>
>         That's because we'll refuse to read *any* config (including just that
>         created by "git init"), and then ask the user to opt-in to any *future*
>         config to keep using the repository at all.
>
>         So for the sort of staging environment I mentioned upthread it'll
>         effectively create a vulnerability which we'll still have no practical
>         mitigation for.
>
>         Whereas if we only error on the specific exploitation vector(s) users
>         who're using a repository without such config will never need to opt-in
>         at all, so when someone sneaks up on them later and adds a
>         core.fsmonitor=/path/to/exploit they'll know, and we can show a much
>         more pointed and obvious error to that effect.
>
> As noted in [1] the solution that got committed does suffer from that
> edge case, but I think [1] also summarizes why that approach was taken.
>
> A way of mitigating that case is to put something like this in one's
> .bashrc:
>
>         git () {
>                 command git -c core.fsmonitor=false "$@";
>         }
>
> Then, even if you need to use that safe.directory feature you won't be
> vulnerable to someone sneaking up on you and adding this to the
> .git/config of the (presumably core.sharedRepository) repo:
>
>     [core]
>     fsmonitor = rm -rf /
>
> > I think a better solution would be for git to support a `--safe`
> > option that only runs config-specified commands specifically added to
> > an allowed list, or if the repository itself has been added to
> > safe.directories.
> >
> > Ideally git would default to running in `--safe` mode, but if that is
> > too disruptive at least the option would be available for use in
> > prompt commands, etc.
> >
> > (Please CC me in replies as I'm not subscribed to the list.)
>
> What you're suggesting would be nice, and has been discussed on-list
> before.
>
> But it's fundamentally the same case as "make inspecting an unpacked
> .git [from a tarball] safe", i.e. that we'll currently pick up config
> from it.
>
> The CVE specifically exists because it's subtly different from that
> long-known-about case.
>
> 1. https://lore.kernel.org/git/220412.86h76yglfe.gmgdl@evledraar.gmail.com/

  reply	other threads:[~2022-04-13 16:01 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-13  4:42 Limitations of ownership checking fox for CVE-2022-24765 Jeremy Maitin-Shepard
2022-04-13 14:05 ` Ævar Arnfjörð Bjarmason
2022-04-13 16:00   ` Jeremy Maitin-Shepard [this message]
2022-04-13 19:21     ` Ævar Arnfjörð Bjarmason

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAKJfoCHWYaQGgK1_Wv0j1qW--pwD3=T9A5m8zQJRwwVOrRLx_Q@mail.gmail.com' \
    --to=jeremy@jeremyms.com \
    --cc=avarab@gmail.com \
    --cc=git@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).