aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sparc64/kernel/compat_audit.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2006-09-12 02:59:45 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2006-09-12 03:05:05 -0400
commitf6bc0c1c5b0fe393efaf922e01887c33b35f2910 (patch)
treeba6985fae2eca0397c872d3ab015c1c403678213 /arch/sparc64/kernel/compat_audit.c
parente65e1fc2d24b09c496af76e9c5253ac30b300a89 (diff)
[PATCH] sparc64 audit syscall classes hookup
... that should do it for all targets; the only remaining issues are mips (currently treated as non-biarch) and handling of other OS emulations (OSF/SunOS/Solaris/???). The latter would need to be assigned new AUDIT_ARCH_... ABI numbers anyway... Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/sparc64/kernel/compat_audit.c')
-rw-r--r--arch/sparc64/kernel/compat_audit.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/arch/sparc64/kernel/compat_audit.c b/arch/sparc64/kernel/compat_audit.c
new file mode 100644
index 000000000000..cca96c91b780
--- /dev/null
+++ b/arch/sparc64/kernel/compat_audit.c
@@ -0,0 +1,37 @@
1#include <asm-sparc/unistd.h>
2
3unsigned sparc32_dir_class[] = {
4#include <asm-generic/audit_dir_write.h>
5~0U
6};
7
8unsigned sparc32_chattr_class[] = {
9#include <asm-generic/audit_change_attr.h>
10~0U
11};
12
13unsigned sparc32_write_class[] = {
14#include <asm-generic/audit_write.h>
15~0U
16};
17
18unsigned sparc32_read_class[] = {
19#include <asm-generic/audit_read.h>
20~0U
21};
22
23int sparc32_classify_syscall(unsigned syscall)
24{
25 switch(syscall) {
26 case __NR_open:
27 return 2;
28 case __NR_openat:
29 return 3;
30 case __NR_socketcall:
31 return 4;
32 case __NR_execve:
33 return 5;
34 default:
35 return 1;
36 }
37}