diff options
author | Eric Paris <eparis@redhat.com> | 2012-01-03 12:25:15 -0500 |
---|---|---|
committer | Eric Paris <eparis@redhat.com> | 2012-01-05 18:52:54 -0500 |
commit | c7eba4a97563fd8b431787f7ad623444f2da80c6 (patch) | |
tree | 12041949c45c2f394d6a96041c39e07ad6df720b /include/linux/security.h | |
parent | b7e724d303b684655e4ca3dabd5a6840ad19012d (diff) |
capabilities: introduce security_capable_noaudit
Exactly like security_capable except don't audit any denials. This is for
places where the kernel may make decisions about what to do if a task has a
given capability, but which failing that capability is not a sign of a
security policy violation. An example is checking if a task has
CAP_SYS_ADMIN to lower it's likelyhood of being killed by the oom killer.
This check is not a security violation if it is denied.
Signed-off-by: Eric Paris <eparis@redhat.com>
Acked-by: Serge E. Hallyn <serge.hallyn@canonical.com>
Diffstat (limited to 'include/linux/security.h')
-rw-r--r-- | include/linux/security.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/security.h b/include/linux/security.h index ee969ff40a26..caff54eee686 100644 --- a/include/linux/security.h +++ b/include/linux/security.h | |||
@@ -1668,6 +1668,8 @@ int security_capset(struct cred *new, const struct cred *old, | |||
1668 | const kernel_cap_t *permitted); | 1668 | const kernel_cap_t *permitted); |
1669 | int security_capable(const struct cred *cred, struct user_namespace *ns, | 1669 | int security_capable(const struct cred *cred, struct user_namespace *ns, |
1670 | int cap); | 1670 | int cap); |
1671 | int security_capable_noaudit(const struct cred *cred, struct user_namespace *ns, | ||
1672 | int cap); | ||
1671 | int security_real_capable(struct task_struct *tsk, struct user_namespace *ns, | 1673 | int security_real_capable(struct task_struct *tsk, struct user_namespace *ns, |
1672 | int cap); | 1674 | int cap); |
1673 | int security_real_capable_noaudit(struct task_struct *tsk, | 1675 | int security_real_capable_noaudit(struct task_struct *tsk, |
@@ -1869,6 +1871,11 @@ static inline int security_capable(const struct cred *cred, | |||
1869 | return cap_capable(cred, ns, cap, SECURITY_CAP_AUDIT); | 1871 | return cap_capable(cred, ns, cap, SECURITY_CAP_AUDIT); |
1870 | } | 1872 | } |
1871 | 1873 | ||
1874 | static inline int security_capable_noaudit(const struct cred *cred, | ||
1875 | struct user_namespace *ns, int cap) { | ||
1876 | return cap_capable(cred, ns, cap, SECURITY_CAP_NOAUDIT); | ||
1877 | } | ||
1878 | |||
1872 | static inline int security_real_capable(struct task_struct *tsk, struct user_namespace *ns, int cap) | 1879 | static inline int security_real_capable(struct task_struct *tsk, struct user_namespace *ns, int cap) |
1873 | { | 1880 | { |
1874 | int ret; | 1881 | int ret; |