fanotify.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #include <linux/fsnotify_backend.h>
  3. #include <linux/path.h>
  4. #include <linux/slab.h>
  5. extern struct kmem_cache *fanotify_mark_cache;
  6. extern struct kmem_cache *fanotify_event_cachep;
  7. extern struct kmem_cache *fanotify_perm_event_cachep;
  8. /*
  9. * Structure for normal fanotify events. It gets allocated in
  10. * fanotify_handle_event() and freed when the information is retrieved by
  11. * userspace
  12. */
  13. struct fanotify_event_info {
  14. struct fsnotify_event fse;
  15. /*
  16. * We hold ref to this path so it may be dereferenced at any point
  17. * during this object's lifetime
  18. */
  19. struct path path;
  20. struct pid *tgid;
  21. };
  22. /*
  23. * Structure for permission fanotify events. It gets allocated and freed in
  24. * fanotify_handle_event() since we wait there for user response. When the
  25. * information is retrieved by userspace the structure is moved from
  26. * group->notification_list to group->fanotify_data.access_list to wait for
  27. * user response.
  28. */
  29. struct fanotify_perm_event_info {
  30. struct fanotify_event_info fae;
  31. int response; /* userspace answer to question */
  32. int fd; /* fd we passed to userspace for this event */
  33. };
  34. static inline struct fanotify_perm_event_info *
  35. FANOTIFY_PE(struct fsnotify_event *fse)
  36. {
  37. return container_of(fse, struct fanotify_perm_event_info, fae.fse);
  38. }
  39. static inline bool fanotify_is_perm_event(u32 mask)
  40. {
  41. return IS_ENABLED(CONFIG_FANOTIFY_ACCESS_PERMISSIONS) &&
  42. mask & FAN_ALL_PERM_EVENTS;
  43. }
  44. static inline struct fanotify_event_info *FANOTIFY_E(struct fsnotify_event *fse)
  45. {
  46. return container_of(fse, struct fanotify_event_info, fse);
  47. }
  48. struct fanotify_event_info *fanotify_alloc_event(struct fsnotify_group *group,
  49. struct inode *inode, u32 mask,
  50. const struct path *path);