]> git.baikalelectronics.ru Git - kernel.git/commit
LSM: Fix for security_inode_getsecurity and -EOPNOTSUPP
authorCasey Schaufler <casey@schaufler-ca.com>
Wed, 1 Jun 2016 00:24:15 +0000 (17:24 -0700)
committerJames Morris <james.l.morris@oracle.com>
Mon, 6 Jun 2016 09:59:18 +0000 (19:59 +1000)
commit4e1492d3048e92b350b685802539f01a01cce373
treeb7529a81d1580fe37dae577530a1cbc4e52bd86c
parentc08dd092fca4c0e49b2f6fe8c6f57a01dc0dab1b
LSM: Fix for security_inode_getsecurity and -EOPNOTSUPP

Serge Hallyn pointed out that the current implementation of
security_inode_getsecurity() works if there is only one hook
provided for it, but will fail if there is more than one and
the attribute requested isn't supplied by the first module.
This isn't a problem today, since only SELinux and Smack
provide this hook and there is (currently) no way to enable
both of those modules at the same time. Serge, however, wants
to introduce a capability attribute and an inode_getsecurity
hook in the capability security module to handle it. This
addresses that upcoming problem, will be required for "extreme
stacking" and is just a better implementation.

Signed-off-by: Casey Schaufler <casey@schaufler-ca.com>
Acked-by: Serge Hallyn <serge@hallyn.com>
Signed-off-by: James Morris <james.l.morris@oracle.com>
security/security.c