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