[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20110111052759.GA24970@mail.hallyn.com>
Date: Tue, 11 Jan 2011 05:27:59 +0000
From: "Serge E. Hallyn" <serge@...lyn.com>
To: Bastian Blank <bastian@...di.eu.org>,
"Serge E. Hallyn" <serge@...lyn.com>,
containers@...ts.linux-foundation.org,
kernel list <linux-kernel@...r.kernel.org>,
LSM <linux-security-module@...r.kernel.org>,
"Eric W. Biederman" <ebiederm@...ssion.com>,
Kees Cook <kees.cook@...onical.com>,
Alexey Dobriyan <adobriyan@...il.com>,
Michael Kerrisk <mtk.manpages@...il.com>
Subject: Re: [PATCH 6/7] user namespaces: convert all capable checks in
kernel/sys.c
Quoting Bastian Blank (bastian@...di.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.
Eric's ns_capable() has already simplified this quite a bit - which is
part of why I've sometimes not been thinking about it right, it's now
simpler than it used to be :)
thanks,
-serge
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists