From: "Serge E. Hallyn" <serge@hallyn.com>
To: Andy Lutomirski <luto@amacapital.net>
Cc: "Serge E. Hallyn" <serge@hallyn.com>,
"Eric W. Biederman" <ebiederm@xmission.com>,
Linux FS Devel <linux-fsdevel@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Michael j Theall <mtheall@us.ibm.com>,
fuse-devel@lists.sourceforge.net,
Miklos Szeredi <miklos@szeredi.hu>,
"Serge H. Hallyn" <serge.hallyn@ubuntu.com>,
Seth Forshee <seth.forshee@canonical.com>
Subject: Re: [PATCH] fs: Treat non-ancestor-namespace mounts as MNT_NOSUID
Date: Wed, 15 Oct 2014 00:45:50 +0200 [thread overview]
Message-ID: <20141014224550.GA12714@mail.hallyn.com> (raw)
In-Reply-To: <CALCETrXLHcc++qkjV6uKz6kTG9aSKkZFr8qBAHnWLxfGQYe9VQ@mail.gmail.com>
Quoting Andy Lutomirski (luto@amacapital.net):
> On Tue, Oct 14, 2014 at 3:14 PM, Serge E. Hallyn <serge@hallyn.com> wrote:
> > Quoting Serge E. Hallyn (serge@hallyn.com):
> >> Quoting Eric W. Biederman (ebiederm@xmission.com):
> >> > Andy Lutomirski <luto@amacapital.net> writes:
> >> >
> >> > > If a process gets access to a mount from a descendent or unrelated
> >> > > user namespace, that process should not be able to take advantage of
> >> > > setuid files or selinux entrypoints from that filesystem.
> >> > >
> >> > > This will make it safer to allow more complex filesystems to be
> >> > > mounted in non-root user namespaces.
> >> > >
> >> > > This does not remove the need for MNT_LOCK_NOSUID. The setuid,
> >> > > setgid, and file capability bits can no longer be abused if code in
> >> > > a user namespace were to clear nosuid on an untrusted filesystem,
> >> > > but this patch, by itself, is insufficient to protect the system
> >> > > from abuse of files that, when execed, would increase MAC privilege.
> >> > >
> >> > > As a more concrete explanation, any task that can manipulate a
> >> > > vfsmount associated with a given user namespace already has
> >> > > capabilities in that namespace and all of its descendents. If they
> >> > > can cause a malicious setuid, setgid, or file-caps executable to
> >> > > appear in that mount, then that executable will only allow them to
> >> > > elevate privileges in exactly the set of namespaces in which they
> >> > > are already privileges.
> >> > >
> >> > > On the other hand, if they can cause a malicious executable to
> >> > > appear with a dangerous MAC label, running it could change the
> >> > > caller's security context in a way that should not have been
> >> > > possible, even inside the namespace in which the task is confined.
> >> >
> >> > As presented this is complete and total nonsense. Mount propgation
> >> > strongly weakens if not completely breaks the assumptions you are making
> >> > in this code.
> >> >
> >> > To write any generic code that knows anything we need to capture a user
> >> > namespace on struct super.
> >> >
> >> > Further I think all we really want is to filter out security labels from
> >> > unprivileged mounts. uids/gids and the like should be completely fine
> >> > because of the uid mappings.
> >> >
> >> > Having been down the route of comparing uids as userns uid tuples I am
> >> > convinced that anything requires us to take the user namespace into
> >> > account on a routine basis in the core will simply be broken for someone
> >> > forgetting somewhere. This looks like a design that has that kind of
> >> > susceptibility.
> >>
> >> The above paragraph is very compelling. However Andy's patch is a step
> >> in the right direction from what we've got. I think given what you say
> >> below and given Andy's rationale above, simply tweaking his patch to
> >> ignore the parent-userns loop, and return false if current_user_ns() !=
> >> mount_userns, should be right? It'll prevent a child userns from
> >> setting a selinux/apparmor entrypoint or POSIX file capabilities on a
> >> file and having the parent userns trip over those.
> >
> > Ok, Andy's fn does the opposite, which will protect the parent userns,
> > which is good.
> >
> > I suspect simply insisting that the user_ns's be equal is still better.
> > It fits better with the idea that POSIX caps (and LSM entrypoints) are
> > orthogonal to DAC. Kinda.
>
> We could tighten it even further if we compared *mount* namespaces
> instead of user namespaces. That would benefit Docker, non-userns-lxc
> and such, too (sigh).
>
> Actually, I see to good reason to insist on userns equality but not on
> mountns equality. If we're not going to trust executables in foreign
> namespaces, let's go all the way to distrust executables in all
> foreign namespaces, at least unless someone thinks of a reason this
> would break existing userspace.
I have no doubt there is code out there in production which ends up
executing /proc/pid/root/sbin/ifconfig etc. Cause, you know, you really
wanna execute whatever garbage is there... Breaking that might be a
good thing.
-serge
next prev parent reply other threads:[~2014-10-14 22:45 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-14 21:43 Andy Lutomirski
2014-10-14 21:57 ` Eric W. Biederman
2014-10-14 22:07 ` Andy Lutomirski
2014-10-14 22:13 ` Andy Lutomirski
2014-10-14 22:12 ` Serge E. Hallyn
2014-10-14 22:14 ` Andy Lutomirski
2014-10-14 22:14 ` Serge E. Hallyn
2014-10-14 22:19 ` Andy Lutomirski
2014-10-14 22:45 ` Serge E. Hallyn [this message]
2014-10-14 22:47 ` Andy Lutomirski
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=20141014224550.GA12714@mail.hallyn.com \
--to=serge@hallyn.com \
--cc=ebiederm@xmission.com \
--cc=fuse-devel@lists.sourceforge.net \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luto@amacapital.net \
--cc=miklos@szeredi.hu \
--cc=mtheall@us.ibm.com \
--cc=serge.hallyn@ubuntu.com \
--cc=seth.forshee@canonical.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
all inboxes | Powered by JetHome®