fanotify.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. #ifndef _LINUX_FANOTIFY_H
  2. #define _LINUX_FANOTIFY_H
  3. #include <linux/types.h>
  4. /* the following events that user-space can register for */
  5. #define FAN_ACCESS 0x00000001 /* File was accessed */
  6. #define FAN_MODIFY 0x00000002 /* File was modified */
  7. #define FAN_CLOSE_WRITE 0x00000008 /* Unwrittable file closed */
  8. #define FAN_CLOSE_NOWRITE 0x00000010 /* Writtable file closed */
  9. #define FAN_OPEN 0x00000020 /* File was opened */
  10. #define FAN_EVENT_ON_CHILD 0x08000000 /* interested in child events */
  11. #define FAN_Q_OVERFLOW 0x00004000 /* Event queued overflowed */
  12. #define FAN_OPEN_PERM 0x00010000 /* File open in perm check */
  13. #define FAN_ACCESS_PERM 0x00020000 /* File accessed in perm check */
  14. /* helper events */
  15. #define FAN_CLOSE (FAN_CLOSE_WRITE | FAN_CLOSE_NOWRITE) /* close */
  16. /* flags used for fanotify_init() */
  17. #define FAN_CLOEXEC 0x00000001
  18. #define FAN_NONBLOCK 0x00000002
  19. /* These are NOT bitwise flags. Both bits are used togther. */
  20. #define FAN_CLASS_NOTIF 0x00000000
  21. #define FAN_CLASS_CONTENT 0x00000004
  22. #define FAN_CLASS_PRE_CONTENT 0x00000008
  23. #define FAN_ALL_CLASS_BITS (FAN_CLASS_NOTIF | FAN_CLASS_CONTENT | \
  24. FAN_CLASS_PRE_CONTENT)
  25. #define FAN_UNLIMITED_QUEUE 0x00000010
  26. #define FAN_ALL_INIT_FLAGS (FAN_CLOEXEC | FAN_NONBLOCK | \
  27. FAN_ALL_CLASS_BITS | FAN_UNLIMITED_QUEUE)
  28. /* flags used for fanotify_modify_mark() */
  29. #define FAN_MARK_ADD 0x00000001
  30. #define FAN_MARK_REMOVE 0x00000002
  31. #define FAN_MARK_DONT_FOLLOW 0x00000004
  32. #define FAN_MARK_ONLYDIR 0x00000008
  33. #define FAN_MARK_MOUNT 0x00000010
  34. #define FAN_MARK_IGNORED_MASK 0x00000020
  35. #define FAN_MARK_IGNORED_SURV_MODIFY 0x00000040
  36. #define FAN_MARK_FLUSH 0x00000080
  37. #define FAN_ALL_MARK_FLAGS (FAN_MARK_ADD |\
  38. FAN_MARK_REMOVE |\
  39. FAN_MARK_DONT_FOLLOW |\
  40. FAN_MARK_ONLYDIR |\
  41. FAN_MARK_MOUNT |\
  42. FAN_MARK_IGNORED_MASK |\
  43. FAN_MARK_IGNORED_SURV_MODIFY |\
  44. FAN_MARK_FLUSH)
  45. /*
  46. * All of the events - we build the list by hand so that we can add flags in
  47. * the future and not break backward compatibility. Apps will get only the
  48. * events that they originally wanted. Be sure to add new events here!
  49. */
  50. #define FAN_ALL_EVENTS (FAN_ACCESS |\
  51. FAN_MODIFY |\
  52. FAN_CLOSE |\
  53. FAN_OPEN)
  54. /*
  55. * All events which require a permission response from userspace
  56. */
  57. #define FAN_ALL_PERM_EVENTS (FAN_OPEN_PERM |\
  58. FAN_ACCESS_PERM)
  59. #define FAN_ALL_OUTGOING_EVENTS (FAN_ALL_EVENTS |\
  60. FAN_ALL_PERM_EVENTS |\
  61. FAN_Q_OVERFLOW)
  62. #define FANOTIFY_METADATA_VERSION 2
  63. struct fanotify_event_metadata {
  64. __u32 event_len;
  65. __u32 vers;
  66. __aligned_u64 mask;
  67. __s32 fd;
  68. __s32 pid;
  69. };
  70. struct fanotify_response {
  71. __s32 fd;
  72. __u32 response;
  73. } __attribute__ ((packed));
  74. /* Legit userspace responses to a _PERM event */
  75. #define FAN_ALLOW 0x01
  76. #define FAN_DENY 0x02
  77. /* Helper functions to deal with fanotify_event_metadata buffers */
  78. #define FAN_EVENT_METADATA_LEN (sizeof(struct fanotify_event_metadata))
  79. #define FAN_EVENT_NEXT(meta, len) ((len) -= (meta)->event_len, \
  80. (struct fanotify_event_metadata*)(((char *)(meta)) + \
  81. (meta)->event_len))
  82. #define FAN_EVENT_OK(meta, len) ((long)(len) >= (long)FAN_EVENT_METADATA_LEN && \
  83. (long)(meta)->event_len >= (long)FAN_EVENT_METADATA_LEN && \
  84. (long)(meta)->event_len <= (long)(len))
  85. #endif /* _LINUX_FANOTIFY_H */