userns: Replace the hard to write inode_userns with inode_capable.
authorEric W. Biederman <ebiederm@xmission.com>
Tue, 15 Nov 2011 00:24:06 +0000 (16:24 -0800)
committerEric W. Biederman <ebiederm@xmission.com>
Sun, 8 Apr 2012 00:02:46 +0000 (17:02 -0700)
commit1a48e2ac034d47ed843081c4523b63c46b46888b
treed3a32ac7ffc47b075a64701a2fd74e00bbccf84d
parent973c5914260d75292f71a4729753086b9e863d57
userns: Replace the hard to write inode_userns with inode_capable.

This represents a change in strategy of how to handle user namespaces.
Instead of tagging everything explicitly with a user namespace and bulking
up all of the comparisons of uids and gids in the kernel,  all uids and gids
in use will have a mapping to a flat kuid and kgid spaces respectively.  This
allows much more of the existing logic to be preserved and in general
allows for faster code.

In this new and improved world we allow someone to utiliize capabilities
over an inode if the inodes owner mapps into the capabilities holders user
namespace and the user has capabilities in their user namespace.  Which
is simple and efficient.

Moving the fs uid comparisons to be comparisons in a flat kuid space
follows in later patches, something that is only significant if you
are using user namespaces.

Acked-by: Serge Hallyn <serge.hallyn@canonical.com>
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
fs/inode.c
fs/namei.c
include/linux/capability.h
include/linux/fs.h
kernel/capability.c