fanotify.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. /* FIXME currently Q's have no limit.... */
  12. #define FAN_Q_OVERFLOW 0x00004000 /* Event queued overflowed */
  13. #define FAN_OPEN_PERM 0x00010000 /* File open in perm check */
  14. #define FAN_ACCESS_PERM 0x00020000 /* File accessed in perm check */
  15. /* helper events */
  16. #define FAN_CLOSE (FAN_CLOSE_WRITE | FAN_CLOSE_NOWRITE) /* close */
  17. /* flags used for fanotify_init() */
  18. #define FAN_CLOEXEC 0x00000001
  19. #define FAN_NONBLOCK 0x00000002
  20. /* These are NOT bitwise flags. Both bits are used togther. */
  21. #define FAN_CLASS_NOTIF 0x00000000
  22. #define FAN_CLASS_CONTENT 0x00000004
  23. #define FAN_CLASS_PRE_CONTENT 0x00000008
  24. #define FAN_ALL_CLASS_BITS (FAN_CLASS_NOTIF | FAN_CLASS_CONTENT | \
  25. FAN_CLASS_PRE_CONTENT)
  26. #define FAN_ALL_INIT_FLAGS (FAN_CLOEXEC | FAN_NONBLOCK | \
  27. FAN_ALL_CLASS_BITS)
  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. /*
  45. * All of the events - we build the list by hand so that we can add flags in
  46. * the future and not break backward compatibility. Apps will get only the
  47. * events that they originally wanted. Be sure to add new events here!
  48. */
  49. #define FAN_ALL_EVENTS (FAN_ACCESS |\
  50. FAN_MODIFY |\
  51. FAN_CLOSE |\
  52. FAN_OPEN)
  53. /*
  54. * All events which require a permission response from userspace
  55. */
  56. #define FAN_ALL_PERM_EVENTS (FAN_OPEN_PERM |\
  57. FAN_ACCESS_PERM)
  58. #define FAN_ALL_OUTGOING_EVENTS (FAN_ALL_EVENTS |\
  59. FAN_ALL_PERM_EVENTS |\
  60. FAN_Q_OVERFLOW)
  61. #define FANOTIFY_METADATA_VERSION 2
  62. struct fanotify_event_metadata {
  63. __u32 event_len;
  64. __u32 vers;
  65. __u64 mask;
  66. __s32 fd;
  67. __s32 pid;
  68. } __attribute__ ((packed));
  69. struct fanotify_response {
  70. __s32 fd;
  71. __u32 response;
  72. } __attribute__ ((packed));
  73. /* Legit userspace responses to a _PERM event */
  74. #define FAN_ALLOW 0x01
  75. #define FAN_DENY 0x02
  76. /* Helper functions to deal with fanotify_event_metadata buffers */
  77. #define FAN_EVENT_METADATA_LEN (sizeof(struct fanotify_event_metadata))
  78. #define FAN_EVENT_NEXT(meta, len) ((len) -= (meta)->event_len, \
  79. (struct fanotify_event_metadata*)(((char *)(meta)) + \
  80. (meta)->event_len))
  81. #define FAN_EVENT_OK(meta, len) ((long)(len) >= (long)FAN_EVENT_METADATA_LEN && \
  82. (long)(meta)->event_len >= (long)FAN_EVENT_METADATA_LEN && \
  83. (long)(meta)->event_len <= (long)(len))
  84. #endif /* _LINUX_FANOTIFY_H */