From: Andrew Morton <akpm@linux-foundation.org>
To: "Serge E. Hallyn" <serge@hallyn.com>
Cc: containers@lists.linux-foundation.org,
kernel list <linux-kernel@vger.kernel.org>,
"Eric W. Biederman" <ebiederm@xmission.com>,
Michael Kerrisk <mtk.manpages@gmail.com>,
dhowells@redhat.com, oleg@mail.hallyn.com,
dlezcano@mail.hallyn.com,
LSM <linux-security-module@vger.kernel.org>
Subject: Re: [PATCH 01/10] Add a user_namespace as creator/owner of uts_namespace
Date: Mon, 28 Feb 2011 16:28:30 -0800 [thread overview]
Message-ID: <20110228162830.35a051a8.akpm@linux-foundation.org> (raw)
In-Reply-To: <20110224150150.GA8262@mail.hallyn.com>
On Thu, 24 Feb 2011 15:01:51 +0000
"Serge E. Hallyn" <serge@hallyn.com> wrote:
> Cc: oleg@mail.hallyn.com, dlezcano@mail.hallyn.com
I don't think those addresses do what you think they do.
> copy_process() handles CLONE_NEWUSER before the rest of the
> namespaces. So in the case of clone(CLONE_NEWUSER|CLONE_NEWUTS)
> the new uts namespace will have the new user namespace as its
> owner. That is what we want, since we want root in that new
> userns to be able to have privilege over it.
>
Well this sucks. Anyone who is reading this patch series really won't
have a clue what any of it is for. There's no context provided.
A useful way of thinking about this is to ask yourself "what will Linus
think when this stuff hits his inbox". If the answer is "he'll say
wtf" then we're doing it wrong.
Sigh.
I shall (again) paste in the below text, which I snarfed from the wiki.
Please check that it is complete, accurate and adequate. If not,
please send along replacement text.
: The expected course of development for user namespaces targeted
: capabilities is laid out at https://wiki.ubuntu.com/UserNamespace.
:
: Goals:
:
: - Make it safe for an unprivileged user to unshare namespaces. They
: will be privileged with respect to the new namespace, but this should
: only include resources which the unprivileged user already owns.
:
: - Provide separate limits and accounting for userids in different
: namespaces.
:
: Status:
:
: Currently (as of 2.6.38) you can clone with the CLONE_NEWUSER flag to
: get a new user namespace if you have the CAP_SYS_ADMIN, CAP_SETUID, and
: CAP_SETGID capabilities. What this gets you is a whole new set of
: userids, meaning that user 500 will have a different 'struct user' in
: your namespace than in other namespaces. So any accounting information
: stored in struct user will be unique to your namespace.
:
: However, throughout the kernel there are checks which
:
: - simply check for a capability. Since root in a child namespace
: has all capabilities, this means that a child namespace is not
: constrained.
:
: - simply compare uid1 == uid2. Since these are the integer uids,
: uid 500 in namespace 1 will be said to be equal to uid 500 in
: namespace 2.
:
: As a result, the lxc implementation at lxc.sf.net does not use user
: namespaces. This is actually helpful because it leaves us free to
: develop user namespaces in such a way that, for some time, user
: namespaces may be unuseful.
:
:
: Bugs aside, this patchset is supposed to not at all affect systems which
: are not actively using user namespaces, and only restrict what tasks in
: child user namespace can do. They begin to limit privilege to a user
: namespace, so that root in a container cannot kill or ptrace tasks in the
: parent user namespace, and can only get world access rights to files.
: Since all files currently belong to the initila user namespace, that means
: that child user namespaces can only get world access rights to *all*
: files. While this temporarily makes user namespaces bad for system
: containers, it starts to get useful for some sandboxing.
:
: I've run the 'runltplite.sh' with and without this patchset and found no
: difference.
next prev parent reply other threads:[~2011-03-01 0:28 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-02-24 15:01 [PATCH 01/10] Add a user_namespace as creator/owner of uts_namespace Serge E. Hallyn
2011-02-24 15:02 ` [PATCH 02/10] security: Make capabilities relative to the user namespace Serge E. Hallyn
2011-02-24 15:02 ` [PATCH 03/10] allow sethostname in a container Serge E. Hallyn
[not found] ` <20110224150150.GA8262-7LNsyQBKDXoIagZqoN9o3w@public.gmane.org>
2011-02-24 15:02 ` [PATCH 02/10] security: Make capabilities relative to the user namespace Serge E. Hallyn
2011-02-24 15:02 ` [PATCH 03/10] allow sethostname in a container Serge E. Hallyn
2011-02-24 15:02 ` [PATCH 04/10] allow killing tasks in your own or child userns Serge E. Hallyn
2011-02-24 15:02 ` [PATCH 05/10] Allow ptrace from non-init user namespaces Serge E. Hallyn
2011-02-24 15:02 ` [PATCH 06/10] user namespaces: convert all capable checks in kernel/sys.c Serge E. Hallyn
2011-02-24 15:03 ` [PATCH 07/10] add a user namespace owner of ipc ns Serge E. Hallyn
2011-02-24 15:03 ` [PATCH 08/10] user namespaces: convert several capable() calls Serge E. Hallyn
2011-02-24 15:03 ` [PATCH 09/10] userns: check user namespace for task->file uid equivalence checks Serge E. Hallyn
2011-02-24 15:03 ` [PATCH 10/10] rename is_owner_or_cap to inode_owner_or_capable Serge E. Hallyn
2011-02-24 17:03 ` [PATCH 01/10] Add a user_namespace as creator/owner of uts_namespace David Howells
2011-03-01 0:28 ` Andrew Morton
2011-02-24 15:02 ` [PATCH 04/10] allow killing tasks in your own or child userns Serge E. Hallyn
2011-02-24 15:02 ` [PATCH 05/10] Allow ptrace from non-init user namespaces Serge E. Hallyn
2011-02-24 16:57 ` David Howells
2011-02-24 15:02 ` [PATCH 06/10] user namespaces: convert all capable checks in kernel/sys.c Serge E. Hallyn
2011-02-24 15:03 ` [PATCH 07/10] add a user namespace owner of ipc ns Serge E. Hallyn
2011-02-24 15:03 ` [PATCH 08/10] user namespaces: convert several capable() calls Serge E. Hallyn
2011-02-24 15:03 ` [PATCH 09/10] userns: check user namespace for task->file uid equivalence checks Serge E. Hallyn
[not found] ` <20110224150315.GI8262-7LNsyQBKDXoIagZqoN9o3w@public.gmane.org>
2011-03-01 22:24 ` Nathan Lynch
2011-03-01 22:24 ` Nathan Lynch
2011-03-01 23:07 ` Serge E. Hallyn
2011-03-01 23:07 ` Serge E. Hallyn
2011-02-24 15:03 ` [PATCH 10/10] rename is_owner_or_cap to inode_owner_or_capable Serge E. Hallyn
[not found] ` <20110224150243.GE8262-7LNsyQBKDXoIagZqoN9o3w@public.gmane.org>
2011-02-24 16:57 ` [PATCH 05/10] Allow ptrace from non-init user namespaces David Howells
2011-02-24 17:03 ` [PATCH 01/10] Add a user_namespace as creator/owner of uts_namespace David Howells
2011-03-01 0:28 ` Andrew Morton [this message]
2011-03-01 5:37 ` Serge E. Hallyn
[not found] ` <20110228162830.35a051a8.akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>
2011-03-01 5:37 ` Serge E. Hallyn
-- strict thread matches above, loose matches on Subject: below --
2011-02-24 15:01 Serge E. Hallyn
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=20110228162830.35a051a8.akpm@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=containers@lists.linux-foundation.org \
--cc=dhowells@redhat.com \
--cc=dlezcano@mail.hallyn.com \
--cc=ebiederm@xmission.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-security-module@vger.kernel.org \
--cc=mtk.manpages@gmail.com \
--cc=oleg@mail.hallyn.com \
--cc=serge@hallyn.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.