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>
12 * Traversal and modification of .list is protected by either
13 * - taking namespace_sem for write, OR
14 * - taking namespace_sem for read AND taking .ns_lock.
16 struct list_head list
;
18 struct user_namespace
*user_ns
;
19 struct ucounts
*ucounts
;
20 u64 seq
; /* Sequence number to prevent loops */
21 wait_queue_head_t poll
;
23 unsigned int mounts
; /* # of mounts in the namespace */
24 unsigned int pending_mounts
;
33 struct hlist_node m_hash
;
34 struct dentry
*m_dentry
;
35 struct hlist_head m_list
;
40 struct hlist_node mnt_hash
;
41 struct mount
*mnt_parent
;
42 struct dentry
*mnt_mountpoint
;
45 struct rcu_head mnt_rcu
;
46 struct llist_node mnt_llist
;
49 struct mnt_pcp __percpu
*mnt_pcp
;
54 struct list_head mnt_mounts
; /* list of children, anchored here */
55 struct list_head mnt_child
; /* and going through their mnt_child */
56 struct list_head mnt_instance
; /* mount instance on sb->s_mounts */
57 const char *mnt_devname
; /* Name of device e.g. /dev/dsk/hda1 */
58 struct list_head mnt_list
;
59 struct list_head mnt_expire
; /* link in fs-specific expiry list */
60 struct list_head mnt_share
; /* circular list of shared mounts */
61 struct list_head mnt_slave_list
;/* list of slave mounts */
62 struct list_head mnt_slave
; /* slave list entry */
63 struct mount
*mnt_master
; /* slave is on master->mnt_slave_list */
64 struct mnt_namespace
*mnt_ns
; /* containing namespace */
65 struct mountpoint
*mnt_mp
; /* where is it mounted */
67 struct hlist_node mnt_mp_list
; /* list mounts with the same mountpoint */
68 struct hlist_node mnt_umount
;
70 struct list_head mnt_umounting
; /* list entry for umount propagation */
71 #ifdef CONFIG_FSNOTIFY
72 struct fsnotify_mark_connector __rcu
*mnt_fsnotify_marks
;
73 __u32 mnt_fsnotify_mask
;
75 int mnt_id
; /* mount identifier */
76 int mnt_group_id
; /* peer group identifier */
77 int mnt_expiry_mark
; /* true if marked for expiry */
78 struct hlist_head mnt_pins
;
79 struct hlist_head mnt_stuck_children
;
82 #define MNT_NS_INTERNAL ERR_PTR(-EINVAL) /* distinct from any mnt_namespace */
84 static inline struct mount
*real_mount(struct vfsmount
*mnt
)
86 return container_of(mnt
, struct mount
, mnt
);
89 static inline int mnt_has_parent(struct mount
*mnt
)
91 return mnt
!= mnt
->mnt_parent
;
94 static inline int is_mounted(struct vfsmount
*mnt
)
96 /* neither detached nor internal? */
97 return !IS_ERR_OR_NULL(real_mount(mnt
)->mnt_ns
);
100 extern struct mount
*__lookup_mnt(struct vfsmount
*, struct dentry
*);
102 extern int __legitimize_mnt(struct vfsmount
*, unsigned);
103 extern bool legitimize_mnt(struct vfsmount
*, unsigned);
105 static inline bool __path_is_mountpoint(const struct path
*path
)
107 struct mount
*m
= __lookup_mnt(path
->mnt
, path
->dentry
);
108 return m
&& likely(!(m
->mnt
.mnt_flags
& MNT_SYNC_UMOUNT
));
111 extern void __detach_mounts(struct dentry
*dentry
);
113 static inline void detach_mounts(struct dentry
*dentry
)
115 if (!d_mountpoint(dentry
))
117 __detach_mounts(dentry
);
120 static inline void get_mnt_ns(struct mnt_namespace
*ns
)
122 refcount_inc(&ns
->ns
.count
);
125 extern seqlock_t mount_lock
;
127 static inline void lock_mount_hash(void)
129 write_seqlock(&mount_lock
);
132 static inline void unlock_mount_hash(void)
134 write_sequnlock(&mount_lock
);
138 struct mnt_namespace
*ns
;
140 int (*show
)(struct seq_file
*, struct vfsmount
*);
144 extern const struct seq_operations mounts_op
;
146 extern bool __is_local_mountpoint(struct dentry
*dentry
);
147 static inline bool is_local_mountpoint(struct dentry
*dentry
)
149 if (!d_mountpoint(dentry
))
152 return __is_local_mountpoint(dentry
);
155 static inline bool is_anon_ns(struct mnt_namespace
*ns
)
160 extern void mnt_cursor_del(struct mnt_namespace
*ns
, struct mount
*cursor
);