From: Bastian Blank <bastian@waldi.eu.org>
To: "Serge E. Hallyn" <serge@hallyn.com>
Cc: containers@lists.linux-foundation.org,
kernel list <linux-kernel@vger.kernel.org>,
LSM <linux-security-module@vger.kernel.org>,
"Eric W. Biederman" <ebiederm@xmission.com>,
Kees Cook <kees.cook@canonical.com>,
Alexey Dobriyan <adobriyan@gmail.com>,
Michael Kerrisk <mtk.manpages@gmail.com>
Subject: Re: [PATCH 6/7] user namespaces: convert all capable checks in kernel/sys.c
Date: Fri, 14 Jan 2011 16:02:17 +0100 [thread overview]
Message-ID: <20110114150217.GC20945@wavehammer.waldi.eu.org> (raw)
In-Reply-To: <20110111052759.GA24970@mail.hallyn.com>
On Tue, Jan 11, 2011 at 05:27:59AM +0000, Serge E. Hallyn wrote:
> Quoting Bastian Blank (bastian@waldi.eu.org):
> > On Mon, Jan 10, 2011 at 09:14:07PM +0000, Serge E. Hallyn wrote:
> > > - if (pcred->uid != cred->euid &&
> > > - pcred->euid != cred->euid && !capable(CAP_SYS_NICE)) {
> > > + if (pcred->user->user_ns != cred->user->user_ns &&
> > > + pcred->uid != cred->euid &&
> > > + pcred->euid != cred->euid &&
> > > + !ns_capable(pcred->user->user_ns, CAP_SYS_NICE)) {
> >
> > I don't think this is correct. This would not error out if the both
> > userns are the same. Because the same patern (check uid if same userns,
> > otherwise only capability) shows up in several parts of the code, maybe
> > this should be factored out.
>
> Yeah, I'd really like to factor this out because it shows up everywhere
> and I have to think about it every time I look at it. But each time it
> shows up, the uids being compared slightly change. There must be some
> clever way of doing it, hopefully it'll fall out soon.
Well, then make mostly identical (_inline_) functions in one location
(include/linux/cred.h comes in mind). You can ask later why they have
to be different.
You are scaling the complexity up. So you need to make it somehow
manageable, and even slightly different versions in one place are much
easier to handle than the same in many different places.
kill_ok_by_cred would be:
cred_check_euid_suid(struct task_struct *p, X capable)
set_one_prio_perm would be:
cred_check_euid_euid(struct task_struct *p, X capable)
Bastian
--
"Life and death are seldom logical."
"But attaining a desired goal always is."
-- McCoy and Spock, "The Galileo Seven", stardate 2821.7
next prev parent reply other threads:[~2011-01-14 15:02 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-10 21:11 userns: targeted capabilities v3 Serge E. Hallyn
2011-01-10 21:13 ` [PATCH 1/7] Add a user_namespace as creator/owner of uts_namespace Serge E. Hallyn
2011-01-10 21:13 ` [PATCH 2/7] security: Make capabilities relative to the user namespace Serge E. Hallyn
2011-01-10 21:13 ` [PATCH 3/7] allow sethostname in a container Serge E. Hallyn
2011-01-10 21:13 ` [PATCH 4/7] allow killing tasks in your own or child userns Serge E. Hallyn
2011-01-10 21:52 ` Bastian Blank
2011-01-10 22:51 ` Serge Hallyn
2011-01-10 23:23 ` Bastian Blank
2011-01-11 1:31 ` Serge E. Hallyn
2011-01-14 14:50 ` Bastian Blank
2011-01-15 0:31 ` Serge E. Hallyn
2011-01-15 11:30 ` Bastian Blank
2011-01-15 14:12 ` Serge E. Hallyn
2011-01-11 4:22 ` Oren Laadan
2011-01-11 4:32 ` Serge E. Hallyn
2011-01-10 21:13 ` [PATCH 5/7] Allow ptrace from non-init user namespaces Serge E. Hallyn
2011-01-10 21:14 ` [PATCH 6/7] user namespaces: convert all capable checks in kernel/sys.c Serge E. Hallyn
2011-01-10 21:59 ` Bastian Blank
2011-01-10 22:56 ` Serge Hallyn
2011-01-11 5:27 ` Serge E. Hallyn
2011-01-14 15:02 ` Bastian Blank [this message]
2011-01-10 21:14 ` [PATCH 7/7] user namespaces: convert several capable() calls 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=20110114150217.GC20945@wavehammer.waldi.eu.org \
--to=bastian@waldi.eu.org \
--cc=adobriyan@gmail.com \
--cc=containers@lists.linux-foundation.org \
--cc=ebiederm@xmission.com \
--cc=kees.cook@canonical.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-security-module@vger.kernel.org \
--cc=mtk.manpages@gmail.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 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®