Al Viro | c080379 | 2006-08-31 19:02:42 -0400 | [diff] [blame^] | 1 | #include <linux/init.h> |
| 2 | #include <linux/types.h> |
| 3 | #include <linux/audit.h> |
| 4 | #include <asm/unistd.h> |
| 5 | |
| 6 | static unsigned dir_class[] = { |
| 7 | #include <asm-generic/audit_dir_write.h> |
| 8 | ~0U |
| 9 | }; |
| 10 | |
| 11 | static unsigned chattr_class[] = { |
| 12 | #include <asm-generic/audit_change_attr.h> |
| 13 | ~0U |
| 14 | }; |
| 15 | |
| 16 | static int __init audit_classes_init(void) |
| 17 | { |
| 18 | #ifdef CONFIG_COMPAT |
| 19 | extern __u32 s390_dir_class[]; |
| 20 | extern __u32 s390_chattr_class[]; |
| 21 | audit_register_class(AUDIT_CLASS_DIR_WRITE_32, s390_dir_class); |
| 22 | audit_register_class(AUDIT_CLASS_CHATTR_32, s390_chattr_class); |
| 23 | #endif |
| 24 | audit_register_class(AUDIT_CLASS_DIR_WRITE, dir_class); |
| 25 | audit_register_class(AUDIT_CLASS_CHATTR, chattr_class); |
| 26 | return 0; |
| 27 | } |
| 28 | |
| 29 | __initcall(audit_classes_init); |