Commit | Line | Data |
---|---|---|
b2441318 | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
b2dba1af | 2 | #include <linux/mount.h> |
0226f492 AV |
3 | #include <linux/seq_file.h> |
4 | #include <linux/poll.h> | |
435d5f4b | 5 | #include <linux/ns_common.h> |
87b95ce0 | 6 | #include <linux/fs_pin.h> |
0226f492 AV |
7 | |
8 | struct mnt_namespace { | |
435d5f4b | 9 | struct ns_common ns; |
be08d6d2 | 10 | struct mount * root; |
9f6c61f9 MS |
11 | /* |
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. | |
15 | */ | |
0226f492 | 16 | struct list_head list; |
9f6c61f9 | 17 | spinlock_t ns_lock; |
771b1371 | 18 | struct user_namespace *user_ns; |
537f7ccb | 19 | struct ucounts *ucounts; |
8823c079 | 20 | u64 seq; /* Sequence number to prevent loops */ |
0226f492 | 21 | wait_queue_head_t poll; |
c7999c36 | 22 | u64 event; |
d2921684 EB |
23 | unsigned int mounts; /* # of mounts in the namespace */ |
24 | unsigned int pending_mounts; | |
3859a271 | 25 | } __randomize_layout; |
b2dba1af | 26 | |
68e8a9fe AV |
27 | struct mnt_pcp { |
28 | int mnt_count; | |
29 | int mnt_writers; | |
30 | }; | |
31 | ||
84d17192 | 32 | struct mountpoint { |
0818bf27 | 33 | struct hlist_node m_hash; |
84d17192 | 34 | struct dentry *m_dentry; |
0a5eb7c8 | 35 | struct hlist_head m_list; |
84d17192 AV |
36 | int m_count; |
37 | }; | |
38 | ||
7d6fec45 | 39 | struct mount { |
38129a13 | 40 | struct hlist_node mnt_hash; |
0714a533 | 41 | struct mount *mnt_parent; |
a73324da | 42 | struct dentry *mnt_mountpoint; |
7d6fec45 | 43 | struct vfsmount mnt; |
9ea459e1 AV |
44 | union { |
45 | struct rcu_head mnt_rcu; | |
46 | struct llist_node mnt_llist; | |
47 | }; | |
68e8a9fe AV |
48 | #ifdef CONFIG_SMP |
49 | struct mnt_pcp __percpu *mnt_pcp; | |
68e8a9fe AV |
50 | #else |
51 | int mnt_count; | |
52 | int mnt_writers; | |
53 | #endif | |
6b41d536 AV |
54 | struct list_head mnt_mounts; /* list of children, anchored here */ |
55 | struct list_head mnt_child; /* and going through their mnt_child */ | |
39f7c4db | 56 | struct list_head mnt_instance; /* mount instance on sb->s_mounts */ |
52ba1621 | 57 | const char *mnt_devname; /* Name of device e.g. /dev/dsk/hda1 */ |
1a4eeaf2 | 58 | struct list_head mnt_list; |
6776db3d AV |
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 */ | |
32301920 | 63 | struct mount *mnt_master; /* slave is on master->mnt_slave_list */ |
143c8c91 | 64 | struct mnt_namespace *mnt_ns; /* containing namespace */ |
84d17192 | 65 | struct mountpoint *mnt_mp; /* where is it mounted */ |
56cbb429 AV |
66 | union { |
67 | struct hlist_node mnt_mp_list; /* list mounts with the same mountpoint */ | |
68 | struct hlist_node mnt_umount; | |
69 | }; | |
99b19d16 | 70 | struct list_head mnt_umounting; /* list entry for umount propagation */ |
c63181e6 | 71 | #ifdef CONFIG_FSNOTIFY |
08991e83 | 72 | struct fsnotify_mark_connector __rcu *mnt_fsnotify_marks; |
c63181e6 AV |
73 | __u32 mnt_fsnotify_mask; |
74 | #endif | |
15169fe7 AV |
75 | int mnt_id; /* mount identifier */ |
76 | int mnt_group_id; /* peer group identifier */ | |
863d684f | 77 | int mnt_expiry_mark; /* true if marked for expiry */ |
215752fc | 78 | struct hlist_head mnt_pins; |
56cbb429 | 79 | struct hlist_head mnt_stuck_children; |
3859a271 | 80 | } __randomize_layout; |
7d6fec45 | 81 | |
f7a99c5b AV |
82 | #define MNT_NS_INTERNAL ERR_PTR(-EINVAL) /* distinct from any mnt_namespace */ |
83 | ||
7d6fec45 AV |
84 | static inline struct mount *real_mount(struct vfsmount *mnt) |
85 | { | |
86 | return container_of(mnt, struct mount, mnt); | |
87 | } | |
88 | ||
676da58d | 89 | static inline int mnt_has_parent(struct mount *mnt) |
b2dba1af | 90 | { |
0714a533 | 91 | return mnt != mnt->mnt_parent; |
b2dba1af | 92 | } |
c7105365 | 93 | |
f7a99c5b AV |
94 | static inline int is_mounted(struct vfsmount *mnt) |
95 | { | |
96 | /* neither detached nor internal? */ | |
260a459d | 97 | return !IS_ERR_OR_NULL(real_mount(mnt)->mnt_ns); |
f7a99c5b AV |
98 | } |
99 | ||
474279dc | 100 | extern struct mount *__lookup_mnt(struct vfsmount *, struct dentry *); |
0226f492 | 101 | |
294d71ff | 102 | extern int __legitimize_mnt(struct vfsmount *, unsigned); |
48a066e7 | 103 | |
c6609c0a IK |
104 | static inline bool __path_is_mountpoint(const struct path *path) |
105 | { | |
106 | struct mount *m = __lookup_mnt(path->mnt, path->dentry); | |
107 | return m && likely(!(m->mnt.mnt_flags & MNT_SYNC_UMOUNT)); | |
108 | } | |
109 | ||
80b5dce8 EB |
110 | extern void __detach_mounts(struct dentry *dentry); |
111 | ||
112 | static inline void detach_mounts(struct dentry *dentry) | |
113 | { | |
114 | if (!d_mountpoint(dentry)) | |
115 | return; | |
116 | __detach_mounts(dentry); | |
117 | } | |
118 | ||
0226f492 AV |
119 | static inline void get_mnt_ns(struct mnt_namespace *ns) |
120 | { | |
1a7b8969 | 121 | refcount_inc(&ns->ns.count); |
0226f492 AV |
122 | } |
123 | ||
48a066e7 | 124 | extern seqlock_t mount_lock; |
719ea2fb | 125 | |
0226f492 | 126 | struct proc_mounts { |
0226f492 AV |
127 | struct mnt_namespace *ns; |
128 | struct path root; | |
129 | int (*show)(struct seq_file *, struct vfsmount *); | |
9f6c61f9 | 130 | struct mount cursor; |
0226f492 AV |
131 | }; |
132 | ||
133 | extern const struct seq_operations mounts_op; | |
7af1364f EB |
134 | |
135 | extern bool __is_local_mountpoint(struct dentry *dentry); | |
136 | static inline bool is_local_mountpoint(struct dentry *dentry) | |
137 | { | |
138 | if (!d_mountpoint(dentry)) | |
139 | return false; | |
140 | ||
141 | return __is_local_mountpoint(dentry); | |
142 | } | |
74e83122 AV |
143 | |
144 | static inline bool is_anon_ns(struct mnt_namespace *ns) | |
145 | { | |
146 | return ns->seq == 0; | |
147 | } | |
9f6c61f9 MS |
148 | |
149 | extern void mnt_cursor_del(struct mnt_namespace *ns, struct mount *cursor); |