blob: c7abb7b394d8eed9ca2833e656d345fc44e3a402 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Al Virob2dba1a2011-11-23 19:26:23 -05002#include <linux/mount.h>
Al Viro0226f492011-12-06 12:21:54 -05003#include <linux/seq_file.h>
4#include <linux/poll.h>
Al Viro435d5f42014-10-31 22:56:04 -04005#include <linux/ns_common.h>
Al Viro87b95ce2015-01-10 19:01:08 -05006#include <linux/fs_pin.h>
Al Viro0226f492011-12-06 12:21:54 -05007
8struct mnt_namespace {
9 atomic_t count;
Al Viro435d5f42014-10-31 22:56:04 -040010 struct ns_common ns;
Al Virobe08d6d2011-12-06 13:32:36 -050011 struct mount * root;
Miklos Szeredi9f6c61f2020-05-14 16:44:24 +020012 /*
13 * Traversal and modification of .list is protected by either
14 * - taking namespace_sem for write, OR
15 * - taking namespace_sem for read AND taking .ns_lock.
16 */
Al Viro0226f492011-12-06 12:21:54 -050017 struct list_head list;
Miklos Szeredi9f6c61f2020-05-14 16:44:24 +020018 spinlock_t ns_lock;
Eric W. Biederman771b1372012-07-26 21:08:32 -070019 struct user_namespace *user_ns;
Eric W. Biederman537f7cc2016-08-08 14:37:37 -050020 struct ucounts *ucounts;
Eric W. Biederman8823c072010-03-07 18:49:36 -080021 u64 seq; /* Sequence number to prevent loops */
Al Viro0226f492011-12-06 12:21:54 -050022 wait_queue_head_t poll;
Al Viroc7999c32014-02-27 14:40:10 -050023 u64 event;
Eric W. Biedermand2921682016-09-28 00:27:17 -050024 unsigned int mounts; /* # of mounts in the namespace */
25 unsigned int pending_mounts;
Kees Cook3859a272016-10-28 01:22:25 -070026} __randomize_layout;
Al Virob2dba1a2011-11-23 19:26:23 -050027
Al Viro68e8a9f2011-11-24 22:53:09 -050028struct mnt_pcp {
29 int mnt_count;
30 int mnt_writers;
31};
32
Al Viro84d17192013-03-15 10:53:28 -040033struct mountpoint {
Al Viro0818bf22014-02-28 13:46:44 -050034 struct hlist_node m_hash;
Al Viro84d17192013-03-15 10:53:28 -040035 struct dentry *m_dentry;
Eric W. Biederman0a5eb7c2013-09-22 19:37:01 -070036 struct hlist_head m_list;
Al Viro84d17192013-03-15 10:53:28 -040037 int m_count;
38};
39
Al Viro7d6fec42011-11-23 12:14:10 -050040struct mount {
Al Viro38129a12014-03-20 21:10:51 -040041 struct hlist_node mnt_hash;
Al Viro0714a532011-11-24 22:19:58 -050042 struct mount *mnt_parent;
Al Viroa73324d2011-11-24 22:25:07 -050043 struct dentry *mnt_mountpoint;
Al Viro7d6fec42011-11-23 12:14:10 -050044 struct vfsmount mnt;
Al Viro9ea459e12014-08-08 13:08:20 -040045 union {
46 struct rcu_head mnt_rcu;
47 struct llist_node mnt_llist;
48 };
Al Viro68e8a9f2011-11-24 22:53:09 -050049#ifdef CONFIG_SMP
50 struct mnt_pcp __percpu *mnt_pcp;
Al Viro68e8a9f2011-11-24 22:53:09 -050051#else
52 int mnt_count;
53 int mnt_writers;
54#endif
Al Viro6b41d532011-11-24 23:24:33 -050055 struct list_head mnt_mounts; /* list of children, anchored here */
56 struct list_head mnt_child; /* and going through their mnt_child */
Miklos Szeredi39f7c4d2011-11-21 12:11:30 +010057 struct list_head mnt_instance; /* mount instance on sb->s_mounts */
Al Viro52ba1622011-11-25 02:25:17 -050058 const char *mnt_devname; /* Name of device e.g. /dev/dsk/hda1 */
Al Viro1a4eeaf2011-11-25 02:19:55 -050059 struct list_head mnt_list;
Al Viro6776db3d2011-11-25 00:22:05 -050060 struct list_head mnt_expire; /* link in fs-specific expiry list */
61 struct list_head mnt_share; /* circular list of shared mounts */
62 struct list_head mnt_slave_list;/* list of slave mounts */
63 struct list_head mnt_slave; /* slave list entry */
Al Viro32301922011-11-25 00:10:28 -050064 struct mount *mnt_master; /* slave is on master->mnt_slave_list */
Al Viro143c8c92011-11-25 00:46:35 -050065 struct mnt_namespace *mnt_ns; /* containing namespace */
Al Viro84d17192013-03-15 10:53:28 -040066 struct mountpoint *mnt_mp; /* where is it mounted */
Al Viro56cbb422019-07-04 16:57:51 -040067 union {
68 struct hlist_node mnt_mp_list; /* list mounts with the same mountpoint */
69 struct hlist_node mnt_umount;
70 };
Eric W. Biederman99b19d12016-10-24 16:16:13 -050071 struct list_head mnt_umounting; /* list entry for umount propagation */
Al Viroc63181e2011-11-25 02:35:16 -050072#ifdef CONFIG_FSNOTIFY
Jan Kara08991e82017-02-01 09:21:58 +010073 struct fsnotify_mark_connector __rcu *mnt_fsnotify_marks;
Al Viroc63181e2011-11-25 02:35:16 -050074 __u32 mnt_fsnotify_mask;
75#endif
Al Viro15169fe2011-11-25 00:50:41 -050076 int mnt_id; /* mount identifier */
77 int mnt_group_id; /* peer group identifier */
Al Viro863d6842011-11-25 00:57:42 -050078 int mnt_expiry_mark; /* true if marked for expiry */
Al Viro215752f2014-08-07 06:23:41 -040079 struct hlist_head mnt_pins;
Al Viro56cbb422019-07-04 16:57:51 -040080 struct hlist_head mnt_stuck_children;
Kees Cook3859a272016-10-28 01:22:25 -070081} __randomize_layout;
Al Viro7d6fec42011-11-23 12:14:10 -050082
Al Virof7a99c52012-06-09 00:59:08 -040083#define MNT_NS_INTERNAL ERR_PTR(-EINVAL) /* distinct from any mnt_namespace */
84
Al Viro7d6fec42011-11-23 12:14:10 -050085static inline struct mount *real_mount(struct vfsmount *mnt)
86{
87 return container_of(mnt, struct mount, mnt);
88}
89
Al Viro676da582011-11-24 21:47:05 -050090static inline int mnt_has_parent(struct mount *mnt)
Al Virob2dba1a2011-11-23 19:26:23 -050091{
Al Viro0714a532011-11-24 22:19:58 -050092 return mnt != mnt->mnt_parent;
Al Virob2dba1a2011-11-23 19:26:23 -050093}
Al Viroc7105362011-11-24 18:22:03 -050094
Al Virof7a99c52012-06-09 00:59:08 -040095static inline int is_mounted(struct vfsmount *mnt)
96{
97 /* neither detached nor internal? */
Eric W. Biederman260a4592014-01-20 15:26:15 -080098 return !IS_ERR_OR_NULL(real_mount(mnt)->mnt_ns);
Al Virof7a99c52012-06-09 00:59:08 -040099}
100
Al Viro474279d2013-10-01 16:11:26 -0400101extern struct mount *__lookup_mnt(struct vfsmount *, struct dentry *);
Al Viro0226f492011-12-06 12:21:54 -0500102
Al Viro294d71f2015-05-08 11:43:53 -0400103extern int __legitimize_mnt(struct vfsmount *, unsigned);
Al Viro48a066e2013-09-29 22:06:07 -0400104extern bool legitimize_mnt(struct vfsmount *, unsigned);
105
Ian Kentc6609c02016-11-24 08:03:41 +1100106static inline bool __path_is_mountpoint(const struct path *path)
107{
108 struct mount *m = __lookup_mnt(path->mnt, path->dentry);
109 return m && likely(!(m->mnt.mnt_flags & MNT_SYNC_UMOUNT));
110}
111
Eric W. Biederman80b5dce2013-10-03 01:31:18 -0700112extern void __detach_mounts(struct dentry *dentry);
113
114static inline void detach_mounts(struct dentry *dentry)
115{
116 if (!d_mountpoint(dentry))
117 return;
118 __detach_mounts(dentry);
119}
120
Al Viro0226f492011-12-06 12:21:54 -0500121static inline void get_mnt_ns(struct mnt_namespace *ns)
122{
123 atomic_inc(&ns->count);
124}
125
Al Viro48a066e2013-09-29 22:06:07 -0400126extern seqlock_t mount_lock;
Al Viro719ea2f2013-09-29 11:24:49 -0400127
128static inline void lock_mount_hash(void)
129{
Al Viro48a066e2013-09-29 22:06:07 -0400130 write_seqlock(&mount_lock);
Al Viro719ea2f2013-09-29 11:24:49 -0400131}
132
133static inline void unlock_mount_hash(void)
134{
Al Viro48a066e2013-09-29 22:06:07 -0400135 write_sequnlock(&mount_lock);
Al Viro719ea2f2013-09-29 11:24:49 -0400136}
137
Al Viro0226f492011-12-06 12:21:54 -0500138struct proc_mounts {
Al Viro0226f492011-12-06 12:21:54 -0500139 struct mnt_namespace *ns;
140 struct path root;
141 int (*show)(struct seq_file *, struct vfsmount *);
Miklos Szeredi9f6c61f2020-05-14 16:44:24 +0200142 struct mount cursor;
Al Viro0226f492011-12-06 12:21:54 -0500143};
144
145extern const struct seq_operations mounts_op;
Eric W. Biederman7af13642013-10-04 19:15:13 -0700146
147extern bool __is_local_mountpoint(struct dentry *dentry);
148static inline bool is_local_mountpoint(struct dentry *dentry)
149{
150 if (!d_mountpoint(dentry))
151 return false;
152
153 return __is_local_mountpoint(dentry);
154}
Al Viro74e83122019-01-30 13:30:21 -0500155
156static inline bool is_anon_ns(struct mnt_namespace *ns)
157{
158 return ns->seq == 0;
159}
Miklos Szeredi9f6c61f2020-05-14 16:44:24 +0200160
161extern void mnt_cursor_del(struct mnt_namespace *ns, struct mount *cursor);