fsnotify.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __FS_NOTIFY_FSNOTIFY_H_
  3. #define __FS_NOTIFY_FSNOTIFY_H_
  4. #include <linux/list.h>
  5. #include <linux/fsnotify.h>
  6. #include <linux/srcu.h>
  7. #include <linux/types.h>
  8. #include "../mount.h"
  9. /*
  10. * fsnotify_connp_t is what we embed in objects which connector can be attached
  11. * to.
  12. */
  13. typedef struct fsnotify_mark_connector __rcu *fsnotify_connp_t;
  14. static inline struct inode *fsnotify_conn_inode(
  15. struct fsnotify_mark_connector *conn)
  16. {
  17. return conn->obj;
  18. }
  19. static inline struct mount *fsnotify_conn_mount(
  20. struct fsnotify_mark_connector *conn)
  21. {
  22. return real_mount(conn->obj);
  23. }
  24. static inline struct super_block *fsnotify_conn_sb(
  25. struct fsnotify_mark_connector *conn)
  26. {
  27. return conn->obj;
  28. }
  29. static inline struct mnt_namespace *fsnotify_conn_mntns(
  30. struct fsnotify_mark_connector *conn)
  31. {
  32. return conn->obj;
  33. }
  34. static inline struct super_block *fsnotify_object_sb(void *obj,
  35. enum fsnotify_obj_type obj_type)
  36. {
  37. switch (obj_type) {
  38. case FSNOTIFY_OBJ_TYPE_INODE:
  39. return ((struct inode *)obj)->i_sb;
  40. case FSNOTIFY_OBJ_TYPE_VFSMOUNT:
  41. return ((struct vfsmount *)obj)->mnt_sb;
  42. case FSNOTIFY_OBJ_TYPE_SB:
  43. return (struct super_block *)obj;
  44. default:
  45. return NULL;
  46. }
  47. }
  48. static inline struct super_block *fsnotify_connector_sb(
  49. struct fsnotify_mark_connector *conn)
  50. {
  51. return fsnotify_object_sb(conn->obj, conn->type);
  52. }
  53. static inline fsnotify_connp_t *fsnotify_sb_marks(struct super_block *sb)
  54. {
  55. struct fsnotify_sb_info *sbinfo = fsnotify_sb_info(sb);
  56. return sbinfo ? &sbinfo->sb_marks : NULL;
  57. }
  58. /* destroy all events sitting in this groups notification queue */
  59. extern void fsnotify_flush_notify(struct fsnotify_group *group);
  60. /* protects reads of inode and vfsmount marks list */
  61. extern struct srcu_struct fsnotify_mark_srcu;
  62. /* compare two groups for sorting of marks lists */
  63. extern int fsnotify_compare_groups(struct fsnotify_group *a,
  64. struct fsnotify_group *b);
  65. /* Destroy all inode marks for given superblock */
  66. void fsnotify_unmount_inodes(struct fsnotify_sb_info *sbinfo);
  67. /* Destroy all marks attached to an object via connector */
  68. extern void fsnotify_destroy_marks(fsnotify_connp_t *connp);
  69. /* run the list of all marks associated with inode and destroy them */
  70. static inline void fsnotify_clear_marks_by_inode(struct inode *inode)
  71. {
  72. fsnotify_destroy_marks(&inode->i_fsnotify_marks);
  73. }
  74. /* run the list of all marks associated with vfsmount and destroy them */
  75. static inline void fsnotify_clear_marks_by_mount(struct vfsmount *mnt)
  76. {
  77. fsnotify_destroy_marks(&real_mount(mnt)->mnt_fsnotify_marks);
  78. }
  79. /* run the list of all marks associated with sb and destroy them */
  80. static inline void fsnotify_clear_marks_by_sb(struct super_block *sb)
  81. {
  82. fsnotify_destroy_marks(fsnotify_sb_marks(sb));
  83. }
  84. static inline void fsnotify_clear_marks_by_mntns(struct mnt_namespace *mntns)
  85. {
  86. fsnotify_destroy_marks(&mntns->n_fsnotify_marks);
  87. }
  88. /*
  89. * update the dentry->d_flags of all of inode's children to indicate if inode cares
  90. * about events that happen to its children.
  91. */
  92. extern void fsnotify_set_children_dentry_flags(struct inode *inode);
  93. void fsnotify_init_connector_caches(void);
  94. #endif /* __FS_NOTIFY_FSNOTIFY_H_ */