mount.h 3.5 KB

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