eeprom: at24: check at24_read/write arguments
[linux-2.6/btrfs-unstable.git] / lib / compat_audit.c
blob77eabad69b4a8fcde3edc3d869548a67bbeff383
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/init.h>
3 #include <linux/types.h>
4 #include <asm/unistd32.h>
6 unsigned compat_dir_class[] = {
7 #include <asm-generic/audit_dir_write.h>
8 ~0U
9 };
11 unsigned compat_read_class[] = {
12 #include <asm-generic/audit_read.h>
13 ~0U
16 unsigned compat_write_class[] = {
17 #include <asm-generic/audit_write.h>
18 ~0U
21 unsigned compat_chattr_class[] = {
22 #include <asm-generic/audit_change_attr.h>
23 ~0U
26 unsigned compat_signal_class[] = {
27 #include <asm-generic/audit_signal.h>
28 ~0U
31 int audit_classify_compat_syscall(int abi, unsigned syscall)
33 switch (syscall) {
34 #ifdef __NR_open
35 case __NR_open:
36 return 2;
37 #endif
38 #ifdef __NR_openat
39 case __NR_openat:
40 return 3;
41 #endif
42 #ifdef __NR_socketcall
43 case __NR_socketcall:
44 return 4;
45 #endif
46 case __NR_execve:
47 return 5;
48 default:
49 return 1;