Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 1 | #include <asm/unistd_32.h> |
Al Viro | b915543 | 2006-07-01 03:56:16 -0400 | [diff] [blame] | 2 | |
| 3 | unsigned ia32_dir_class[] = { |
| 4 | #include <asm-generic/audit_dir_write.h> |
| 5 | ~0U |
| 6 | }; |
| 7 | |
| 8 | unsigned ia32_chattr_class[] = { |
| 9 | #include <asm-generic/audit_change_attr.h> |
| 10 | ~0U |
| 11 | }; |
Al Viro | dc104fb | 2006-08-31 19:05:56 -0400 | [diff] [blame] | 12 | |
| 13 | unsigned ia32_write_class[] = { |
| 14 | #include <asm-generic/audit_write.h> |
| 15 | ~0U |
| 16 | }; |
| 17 | |
| 18 | unsigned ia32_read_class[] = { |
| 19 | #include <asm-generic/audit_read.h> |
| 20 | ~0U |
| 21 | }; |
Al Viro | 55669bf | 2006-08-31 19:26:40 -0400 | [diff] [blame] | 22 | |
Amy Griffis | 7f13da4 | 2007-03-29 18:00:37 -0400 | [diff] [blame] | 23 | unsigned ia32_signal_class[] = { |
| 24 | #include <asm-generic/audit_signal.h> |
| 25 | ~0U |
| 26 | }; |
| 27 | |
Al Viro | 55669bf | 2006-08-31 19:26:40 -0400 | [diff] [blame] | 28 | int ia32_classify_syscall(unsigned syscall) |
| 29 | { |
Paolo Ciarrocchi | 7375931 | 2008-01-30 13:32:54 +0100 | [diff] [blame] | 30 | switch (syscall) { |
Al Viro | 55669bf | 2006-08-31 19:26:40 -0400 | [diff] [blame] | 31 | case __NR_open: |
| 32 | return 2; |
| 33 | case __NR_openat: |
| 34 | return 3; |
| 35 | case __NR_socketcall: |
| 36 | return 4; |
| 37 | case __NR_execve: |
David Drysdale | 27d6ec7 | 2014-12-12 16:57:33 -0800 | [diff] [blame] | 38 | case __NR_execveat: |
Al Viro | 55669bf | 2006-08-31 19:26:40 -0400 | [diff] [blame] | 39 | return 5; |
| 40 | default: |
| 41 | return 1; |
| 42 | } |
| 43 | } |