capabilities: remove the task from capable LSM hook entirely
authorEric Paris <eparis@redhat.com>
Tue, 3 Jan 2012 17:25:14 +0000 (12:25 -0500)
committerEric Paris <eparis@redhat.com>
Thu, 5 Jan 2012 23:52:53 +0000 (18:52 -0500)
commit6a9de49115d5ff9871d953af1a5c8249e1585731
treeeee3700ccc2ce26c566bfe99129e646fac9f983e
parent2653812e14f4e16688ec8247d7fd290bdbbc4747
capabilities: remove the task from capable LSM hook entirely

The capabilities framework is based around credentials, not necessarily the
current task.  Yet we still passed the current task down into LSMs from the
security_capable() LSM hook as if it was a meaningful portion of the security
decision.  This patch removes the 'generic' passing of current and instead
forces individual LSMs to use current explicitly if they think it is
appropriate.  In our case those LSMs are SELinux and AppArmor.

I believe the AppArmor use of current is incorrect, but that is wholely
unrelated to this patch.  This patch does not change what AppArmor does, it
just makes it clear in the AppArmor code that it is doing it.

The SELinux code still uses current in it's audit message, which may also be
wrong and needs further investigation.  Again this is NOT a change, it may
have always been wrong, this patch just makes it clear what is happening.

Signed-off-by: Eric Paris <eparis@redhat.com>
include/linux/security.h
security/apparmor/lsm.c
security/commoncap.c
security/security.c
security/selinux/hooks.c