audit.c 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 unsigned signal_class[] = {
  22. #include <asm-generic/audit_signal.h>
  23. ~0U
  24. };
  25. int audit_classify_arch(int arch)
  26. {
  27. return 0;
  28. }
  29. int audit_classify_syscall(int abi, unsigned syscall)
  30. {
  31. switch(syscall) {
  32. case __NR_open:
  33. return 2;
  34. #ifdef __NR_openat
  35. case __NR_openat:
  36. return 3;
  37. #endif
  38. #ifdef __NR_socketcall
  39. case __NR_socketcall:
  40. return 4;
  41. #endif
  42. case __NR_execve:
  43. return 5;
  44. default:
  45. return 0;
  46. }
  47. }
  48. static int __init audit_classes_init(void)
  49. {
  50. audit_register_class(AUDIT_CLASS_WRITE, write_class);
  51. audit_register_class(AUDIT_CLASS_READ, read_class);
  52. audit_register_class(AUDIT_CLASS_DIR_WRITE, dir_class);
  53. audit_register_class(AUDIT_CLASS_CHATTR, chattr_class);
  54. audit_register_class(AUDIT_CLASS_SIGNAL, signal_class);
  55. return 0;
  56. }
  57. __initcall(audit_classes_init);