diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-11 12:57:16 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-11 12:57:16 -0400 |
commit | 853da0022023c046e0a5ccc51d427745f0c94de7 (patch) | |
tree | bc36f80f00aa11c3c239a80ecf04ba8238219ce8 /lib | |
parent | 5884c40668a928bba017eaf54e2eb3c01c8a98e6 (diff) | |
parent | 0a4ff8c2598b72f2fa9d50aae9e1809e684dbf41 (diff) |
Merge branch 'audit.b38' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current
* 'audit.b38' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current:
[PATCH] Abnormal End of Processes
[PATCH] match audit name data
[PATCH] complete message queue auditing
[PATCH] audit inode for all xattr syscalls
[PATCH] initialize name osid
[PATCH] audit signal recipients
[PATCH] add SIGNAL syscall class (v3)
[PATCH] auditing ptrace
Diffstat (limited to 'lib')
-rw-r--r-- | lib/audit.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/audit.c b/lib/audit.c index 3b1289fadf06..8e7dc1c63aa9 100644 --- a/lib/audit.c +++ b/lib/audit.c | |||
@@ -23,6 +23,16 @@ static unsigned chattr_class[] = { | |||
23 | ~0U | 23 | ~0U |
24 | }; | 24 | }; |
25 | 25 | ||
26 | static unsigned signal_class[] = { | ||
27 | #include <asm-generic/audit_signal.h> | ||
28 | ~0U | ||
29 | }; | ||
30 | |||
31 | int audit_classify_arch(int arch) | ||
32 | { | ||
33 | return 0; | ||
34 | } | ||
35 | |||
26 | int audit_classify_syscall(int abi, unsigned syscall) | 36 | int audit_classify_syscall(int abi, unsigned syscall) |
27 | { | 37 | { |
28 | switch(syscall) { | 38 | switch(syscall) { |
@@ -49,6 +59,7 @@ static int __init audit_classes_init(void) | |||
49 | audit_register_class(AUDIT_CLASS_READ, read_class); | 59 | audit_register_class(AUDIT_CLASS_READ, read_class); |
50 | audit_register_class(AUDIT_CLASS_DIR_WRITE, dir_class); | 60 | audit_register_class(AUDIT_CLASS_DIR_WRITE, dir_class); |
51 | audit_register_class(AUDIT_CLASS_CHATTR, chattr_class); | 61 | audit_register_class(AUDIT_CLASS_CHATTR, chattr_class); |
62 | audit_register_class(AUDIT_CLASS_SIGNAL, signal_class); | ||
52 | return 0; | 63 | return 0; |
53 | } | 64 | } |
54 | 65 | ||