mount.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #include <linux/mount.h>
  3. #include <linux/seq_file.h>
  4. #include <linux/poll.h>
  5. #include <linux/ns_common.h>
  6. #include <linux/fs_pin.h>
  7. struct mnt_namespace {
  8. atomic_t count;
  9. struct ns_common ns;
  10. struct mount * root;
  11. struct list_head list;
  12. struct user_namespace *user_ns;
  13. struct ucounts *ucounts;
  14. u64 seq; /* Sequence number to prevent loops */
  15. wait_queue_head_t poll;
  16. u64 event;
  17. unsigned int mounts; /* # of mounts in the namespace */
  18. unsigned int pending_mounts;
  19. } __randomize_layout;
  20. struct mnt_pcp {
  21. int mnt_count;
  22. int mnt_writers;
  23. };
  24. struct mountpoint {
  25. struct hlist_node m_hash;
  26. struct dentry *m_dentry;
  27. struct hlist_head m_list;
  28. int m_count;
  29. };
  30. struct mount {
  31. struct hlist_node mnt_hash;
  32. struct mount *mnt_parent;
  33. struct dentry *mnt_mountpoint;
  34. struct vfsmount mnt;
  35. union {
  36. struct rcu_head mnt_rcu;
  37. struct llist_node mnt_llist;
  38. };
  39. #ifdef CONFIG_SMP
  40. struct mnt_pcp __percpu *mnt_pcp;
  41. #else
  42. int mnt_count;
  43. int mnt_writers;
  44. #endif
  45. struct list_head mnt_mounts; /* list of children, anchored here */
  46. struct list_head mnt_child; /* and going through their mnt_child */
  47. struct list_head mnt_instance; /* mount instance on sb->s_mounts */
  48. const char *mnt_devname; /* Name of device e.g. /dev/dsk/hda1 */
  49. struct list_head mnt_list;
  50. struct list_head mnt_expire; /* link in fs-specific expiry list */
  51. struct list_head mnt_share; /* circular list of shared mounts */
  52. struct list_head mnt_slave_list;/* list of slave mounts */
  53. struct list_head mnt_slave; /* slave list entry */
  54. struct mount *mnt_master; /* slave is on master->mnt_slave_list */
  55. struct mnt_namespace *mnt_ns; /* containing namespace */
  56. struct mountpoint *mnt_mp; /* where is it mounted */
  57. struct hlist_node mnt_mp_list; /* list mounts with the same mountpoint */
  58. struct list_head mnt_umounting; /* list entry for umount propagation */
  59. #ifdef CONFIG_FSNOTIFY
  60. struct fsnotify_mark_connector __rcu *mnt_fsnotify_marks;
  61. __u32 mnt_fsnotify_mask;
  62. #endif
  63. int mnt_id; /* mount identifier */
  64. int mnt_group_id; /* peer group identifier */
  65. int mnt_expiry_mark; /* true if marked for expiry */
  66. struct hlist_head mnt_pins;
  67. struct fs_pin mnt_umount;
  68. struct dentry *mnt_ex_mountpoint;
  69. } __randomize_layout;
  70. #define MNT_NS_INTERNAL ERR_PTR(-EINVAL) /* distinct from any mnt_namespace */
  71. static inline struct mount *real_mount(struct vfsmount *mnt)
  72. {
  73. return container_of(mnt, struct mount, mnt);
  74. }
  75. static inline int mnt_has_parent(struct mount *mnt)
  76. {
  77. return mnt != mnt->mnt_parent;
  78. }
  79. static inline int is_mounted(struct vfsmount *mnt)
  80. {
  81. /* neither detached nor internal? */
  82. return !IS_ERR_OR_NULL(real_mount(mnt)->mnt_ns);
  83. }
  84. extern struct mount *__lookup_mnt(struct vfsmount *, struct dentry *);
  85. extern int __legitimize_mnt(struct vfsmount *, unsigned);
  86. extern bool legitimize_mnt(struct vfsmount *, unsigned);
  87. static inline bool __path_is_mountpoint(const struct path *path)
  88. {
  89. struct mount *m = __lookup_mnt(path->mnt, path->dentry);
  90. return m && likely(!(m->mnt.mnt_flags & MNT_SYNC_UMOUNT));
  91. }
  92. extern void __detach_mounts(struct dentry *dentry);
  93. static inline void detach_mounts(struct dentry *dentry)
  94. {
  95. if (!d_mountpoint(dentry))
  96. return;
  97. __detach_mounts(dentry);
  98. }
  99. static inline void get_mnt_ns(struct mnt_namespace *ns)
  100. {
  101. atomic_inc(&ns->count);
  102. }
  103. extern seqlock_t mount_lock;
  104. static inline void lock_mount_hash(void)
  105. {
  106. write_seqlock(&mount_lock);
  107. }
  108. static inline void unlock_mount_hash(void)
  109. {
  110. write_sequnlock(&mount_lock);
  111. }
  112. struct proc_mounts {
  113. struct mnt_namespace *ns;
  114. struct path root;
  115. int (*show)(struct seq_file *, struct vfsmount *);
  116. void *cached_mount;
  117. u64 cached_event;
  118. loff_t cached_index;
  119. };
  120. extern const struct seq_operations mounts_op;
  121. extern bool __is_local_mountpoint(struct dentry *dentry);
  122. static inline bool is_local_mountpoint(struct dentry *dentry)
  123. {
  124. if (!d_mountpoint(dentry))
  125. return false;
  126. return __is_local_mountpoint(dentry);
  127. }