diff options
author | Eric Paris <eparis@redhat.com> | 2008-11-11 05:48:22 -0500 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2008-11-11 05:48:22 -0500 |
commit | e68b75a027bb94066576139ee33676264f867b87 (patch) | |
tree | 2c31f59a4abe9d7bb3cb75fdf3b57772feeeb6f6 /kernel/capability.c | |
parent | 3fc689e96c0c90b6fede5946d6c31075e9464f69 (diff) |
When the capset syscall is used it is not possible for audit to record the
actual capbilities being added/removed. This patch adds a new record type
which emits the target pid and the eff, inh, and perm cap sets.
example output if you audit capset syscalls would be:
type=SYSCALL msg=audit(1225743140.465:76): arch=c000003e syscall=126 success=yes exit=0 a0=17f2014 a1=17f201c a2=80000000 a3=7fff2ab7f060 items=0 ppid=2160 pid=2223 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=pts0 ses=1 comm="setcap" exe="/usr/sbin/setcap" subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 key=(null)
type=UNKNOWN[1322] msg=audit(1225743140.465:76): pid=0 cap_pi=ffffffffffffffff cap_pp=ffffffffffffffff cap_pe=ffffffffffffffff
Signed-off-by: Eric Paris <eparis@redhat.com>
Acked-by: Serge Hallyn <serue@us.ibm.com>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'kernel/capability.c')
-rw-r--r-- | kernel/capability.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/kernel/capability.c b/kernel/capability.c index e13a68535ad5..19f9eda89975 100644 --- a/kernel/capability.c +++ b/kernel/capability.c | |||
@@ -7,6 +7,7 @@ | |||
7 | * 30 May 2002: Cleanup, Robert M. Love <rml@tech9.net> | 7 | * 30 May 2002: Cleanup, Robert M. Love <rml@tech9.net> |
8 | */ | 8 | */ |
9 | 9 | ||
10 | #include <linux/audit.h> | ||
10 | #include <linux/capability.h> | 11 | #include <linux/capability.h> |
11 | #include <linux/mm.h> | 12 | #include <linux/mm.h> |
12 | #include <linux/module.h> | 13 | #include <linux/module.h> |
@@ -468,6 +469,10 @@ asmlinkage long sys_capset(cap_user_header_t header, const cap_user_data_t data) | |||
468 | i++; | 469 | i++; |
469 | } | 470 | } |
470 | 471 | ||
472 | ret = audit_log_capset(pid, &effective, &inheritable, &permitted); | ||
473 | if (ret) | ||
474 | return ret; | ||
475 | |||
471 | if (pid && (pid != task_pid_vnr(current))) | 476 | if (pid && (pid != task_pid_vnr(current))) |
472 | ret = do_sys_capset_other_tasks(pid, &effective, &inheritable, | 477 | ret = do_sys_capset_other_tasks(pid, &effective, &inheritable, |
473 | &permitted); | 478 | &permitted); |