>> 1 // SPDX-License-Identifier: GPL-2.0 1 #include <linux/init.h> 2 #include <linux/init.h> 2 #include <linux/types.h> 3 #include <linux/types.h> 3 #include <linux/audit.h> 4 #include <linux/audit.h> 4 #include <asm/unistd.h> 5 #include <asm/unistd.h> 5 6 6 static unsigned dir_class[] = { !! 7 #include "kernel.h" >> 8 >> 9 static unsigned int dir_class[] = { 7 #include <asm-generic/audit_dir_write.h> 10 #include <asm-generic/audit_dir_write.h> 8 ~0U 11 ~0U 9 }; 12 }; 10 13 11 static unsigned read_class[] = { !! 14 static unsigned int read_class[] = { 12 #include <asm-generic/audit_read.h> 15 #include <asm-generic/audit_read.h> 13 ~0U 16 ~0U 14 }; 17 }; 15 18 16 static unsigned write_class[] = { !! 19 static unsigned int write_class[] = { 17 #include <asm-generic/audit_write.h> 20 #include <asm-generic/audit_write.h> 18 ~0U 21 ~0U 19 }; 22 }; 20 23 21 static unsigned chattr_class[] = { !! 24 static unsigned int chattr_class[] = { 22 #include <asm-generic/audit_change_attr.h> 25 #include <asm-generic/audit_change_attr.h> 23 ~0U 26 ~0U 24 }; 27 }; 25 28 26 static unsigned signal_class[] = { !! 29 static unsigned int signal_class[] = { 27 #include <asm-generic/audit_signal.h> 30 #include <asm-generic/audit_signal.h> 28 ~0U 31 ~0U 29 }; 32 }; 30 33 31 int audit_classify_arch(int arch) 34 int audit_classify_arch(int arch) 32 { 35 { >> 36 #ifdef CONFIG_COMPAT >> 37 if (arch == AUDIT_ARCH_SPARC) >> 38 return 1; >> 39 #endif 33 return 0; 40 return 0; 34 } 41 } 35 42 36 int audit_classify_syscall(int abi, unsigned s !! 43 int audit_classify_syscall(int abi, unsigned int syscall) 37 { 44 { >> 45 #ifdef CONFIG_COMPAT >> 46 if (abi == AUDIT_ARCH_SPARC) >> 47 return sparc32_classify_syscall(syscall); >> 48 #endif 38 switch(syscall) { 49 switch(syscall) { 39 case __NR_open: 50 case __NR_open: 40 return AUDITSC_OPEN; 51 return AUDITSC_OPEN; 41 case __NR_openat: 52 case __NR_openat: 42 return AUDITSC_OPENAT; 53 return AUDITSC_OPENAT; >> 54 case __NR_socketcall: >> 55 return AUDITSC_SOCKETCALL; 43 case __NR_execve: 56 case __NR_execve: 44 return AUDITSC_EXECVE; 57 return AUDITSC_EXECVE; 45 case __NR_openat2: 58 case __NR_openat2: 46 return AUDITSC_OPENAT2; 59 return AUDITSC_OPENAT2; 47 default: 60 default: 48 return AUDITSC_NATIVE; 61 return AUDITSC_NATIVE; 49 } 62 } 50 } 63 } 51 64 52 static int __init audit_classes_init(void) 65 static int __init audit_classes_init(void) 53 { 66 { >> 67 #ifdef CONFIG_COMPAT >> 68 audit_register_class(AUDIT_CLASS_WRITE_32, sparc32_write_class); >> 69 audit_register_class(AUDIT_CLASS_READ_32, sparc32_read_class); >> 70 audit_register_class(AUDIT_CLASS_DIR_WRITE_32, sparc32_dir_class); >> 71 audit_register_class(AUDIT_CLASS_CHATTR_32, sparc32_chattr_class); >> 72 audit_register_class(AUDIT_CLASS_SIGNAL_32, sparc32_signal_class); >> 73 #endif 54 audit_register_class(AUDIT_CLASS_WRITE 74 audit_register_class(AUDIT_CLASS_WRITE, write_class); 55 audit_register_class(AUDIT_CLASS_READ, 75 audit_register_class(AUDIT_CLASS_READ, read_class); 56 audit_register_class(AUDIT_CLASS_DIR_W 76 audit_register_class(AUDIT_CLASS_DIR_WRITE, dir_class); 57 audit_register_class(AUDIT_CLASS_CHATT 77 audit_register_class(AUDIT_CLASS_CHATTR, chattr_class); 58 audit_register_class(AUDIT_CLASS_SIGNA 78 audit_register_class(AUDIT_CLASS_SIGNAL, signal_class); 59 return 0; 79 return 0; 60 } 80 } 61 81 62 __initcall(audit_classes_init); 82 __initcall(audit_classes_init); 63 83
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.