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


On Wed, Apr 13 2022, Jeremy Maitin-Shepard wrote:

> 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.

Yes, let's be clear. I'm not saying it doesn't suck, just that the git
project has maintained for approximate forever that thou shalt be
careful with a repo you unpack via a tarball, for exactly this reason.

So I think fixing that is needed, but that it would fall under future
feature development, not an immediate follow-up to the CVE.

I recognize that the CVE somewhat blurred the lines though, i.e. it's
really just a special-case of the old tarball case, for which we never
cared about ownership.

But that's also an artifact of git's *nix legacy, where you don't need
to worry about /.git or /home/.git, except if your root user creates it,
and then you're hosed anyway.

>> 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.

Yes, I think we're on the wrong path with considering ownership of the
config at all, and I've been advocating for adopting something more like
Emacs's model for years :) E.g.:

	https://lore.kernel.org/git/87zi6eakkt.fsf@evledraar.gmail.com/

It also came up in the git-security@ discussion...

But that's a somewhat larger change, so just because that's a sensible
eventual goal doesn't mean that a shorter term mitigation is the wrong
thing for now.

But I for one would be estatic to have someone add the Emacs-like model
to git *hint* *hint* :)

>>
>> 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).

Aside from anything else I think it's safe to say that we'll probably be
much more careful in adding these arbitrary execution options in the
future, so I'm not too worried about that.

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

*nod*. I'm just saying that this should get you out of the woods when
doing "basic inspection", it would probably be a good idea to add -c
core.pager=less or whatever to that though.

      reply	other threads:[~2022-04-13 19:34 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
2022-04-13 19:21     ` Ævar Arnfjörð Bjarmason [this message]

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=220413.86fsmgeq15.gmgdl@evledraar.gmail.com \
    --to=avarab@gmail.com \
    --cc=git@vger.kernel.org \
    --cc=jeremy@jeremyms.com \
    /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).