audit.c 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #include <linux/init.h>
  2. #include <linux/types.h>
  3. #include <linux/audit.h>
  4. #include <asm/unistd.h>
  5. static unsigned dir_class[] = {
  6. #include <asm-generic/audit_dir_write.h>
  7. ~0U
  8. };
  9. static unsigned read_class[] = {
  10. #include <asm-generic/audit_read.h>
  11. ~0U
  12. };
  13. static unsigned write_class[] = {
  14. #include <asm-generic/audit_write.h>
  15. ~0U
  16. };
  17. static unsigned chattr_class[] = {
  18. #include <asm-generic/audit_change_attr.h>
  19. ~0U
  20. };
  21. static int __init audit_classes_init(void)
  22. {
  23. #ifdef CONFIG_PPC64
  24. extern __u32 ppc32_dir_class[];
  25. extern __u32 ppc32_write_class[];
  26. extern __u32 ppc32_read_class[];
  27. extern __u32 ppc32_chattr_class[];
  28. audit_register_class(AUDIT_CLASS_WRITE_32, ppc32_write_class);
  29. audit_register_class(AUDIT_CLASS_READ_32, ppc32_read_class);
  30. audit_register_class(AUDIT_CLASS_DIR_WRITE_32, ppc32_dir_class);
  31. audit_register_class(AUDIT_CLASS_CHATTR_32, ppc32_chattr_class);
  32. #endif
  33. audit_register_class(AUDIT_CLASS_WRITE, write_class);
  34. audit_register_class(AUDIT_CLASS_READ, read_class);
  35. audit_register_class(AUDIT_CLASS_DIR_WRITE, dir_class);
  36. audit_register_class(AUDIT_CLASS_CHATTR, chattr_class);
  37. return 0;
  38. }
  39. __initcall(audit_classes_init);