Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | #include <asm/unistd_32.h> |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 3 | #include <asm/audit.h> |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4 | |
| 5 | unsigned ia32_dir_class[] = { |
| 6 | #include <asm-generic/audit_dir_write.h> |
| 7 | ~0U |
| 8 | }; |
| 9 | |
| 10 | unsigned ia32_chattr_class[] = { |
| 11 | #include <asm-generic/audit_change_attr.h> |
| 12 | ~0U |
| 13 | }; |
| 14 | |
| 15 | unsigned ia32_write_class[] = { |
| 16 | #include <asm-generic/audit_write.h> |
| 17 | ~0U |
| 18 | }; |
| 19 | |
| 20 | unsigned ia32_read_class[] = { |
| 21 | #include <asm-generic/audit_read.h> |
| 22 | ~0U |
| 23 | }; |
| 24 | |
| 25 | unsigned ia32_signal_class[] = { |
| 26 | #include <asm-generic/audit_signal.h> |
| 27 | ~0U |
| 28 | }; |
| 29 | |
| 30 | int ia32_classify_syscall(unsigned syscall) |
| 31 | { |
| 32 | switch (syscall) { |
| 33 | case __NR_open: |
| 34 | return 2; |
| 35 | case __NR_openat: |
| 36 | return 3; |
| 37 | case __NR_socketcall: |
| 38 | return 4; |
| 39 | case __NR_execve: |
| 40 | case __NR_execveat: |
| 41 | return 5; |
| 42 | default: |
| 43 | return 1; |
| 44 | } |
| 45 | } |