blob: 0b6e08cf8afb07639b844588b82cfc153e5059de [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 {
Al Viro435d5f42014-10-31 22:56:04 -04009 struct ns_common ns;
Al Virobe08d6d2011-12-06 13:32:36 -050010 struct mount * root;
Miklos Szeredi9f6c61f2020-05-14 16:44:24 +020011 /*
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 */
Al Viro0226f492011-12-06 12:21:54 -050016 struct list_head list;
Miklos Szeredi9f6c61f2020-05-14 16:44:24 +020017 spinlock_t ns_lock;
Eric W. Biederman771b1372012-07-26 21:08:32 -070018 struct user_namespace *user_ns;
Eric W. Biederman537f7cc2016-08-08 14:37:37 -050019 struct ucounts *ucounts;
Eric W. Biederman8823c072010-03-07 18:49:36 -080020 u64 seq; /* Sequence number to prevent loops */
Al Viro0226f492011-12-06 12:21:54 -050021 wait_queue_head_t poll;
Al Viroc7999c32014-02-27 14:40:10 -050022 u64 event;
Eric W. Biedermand2921682016-09-28 00:27:17 -050023 unsigned int mounts; /* # of mounts in the namespace */
24 unsigned int pending_mounts;
Kees Cook3859a272016-10-28 01:22:25 -070025} __randomize_layout;
Al Virob2dba1a2011-11-23 19:26:23 -050026
Al Viro68e8a9f2011-11-24 22:53:09 -050027struct mnt_pcp {
28 int mnt_count;
29 int mnt_writers;
30};
31
Al Viro84d17192013-03-15 10:53:28 -040032struct mountpoint {
Al Viro0818bf22014-02-28 13:46:44 -050033 struct hlist_node m_hash;
Al Viro84d17192013-03-15 10:53:28 -040034 struct dentry *m_dentry;
Eric W. Biederman0a5eb7c2013-09-22 19:37:01 -070035 struct hlist_head m_list;
Al Viro84d17192013-03-15 10:53:28 -040036 int m_count;
37};
38
Al Viro7d6fec42011-11-23 12:14:10 -050039struct mount {
Al Viro38129a12014-03-20 21:10:51 -040040 struct hlist_node mnt_hash;
Al Viro0714a532011-11-24 22:19:58 -050041 struct mount *mnt_parent;
Al Viroa73324d2011-11-24 22:25:07 -050042 struct dentry *mnt_mountpoint;
Al Viro7d6fec42011-11-23 12:14:10 -050043 struct vfsmount mnt;
Al Viro9ea459e12014-08-08 13:08:20 -040044 union {
45 struct rcu_head mnt_rcu;
46 struct llist_node mnt_llist;
47 };
Al Viro68e8a9f2011-11-24 22:53:09 -050048#ifdef CONFIG_SMP
49 struct mnt_pcp __percpu *mnt_pcp;
Al Viro68e8a9f2011-11-24 22:53:09 -050050#else
51 int mnt_count;
52 int mnt_writers;
53#endif
Al Viro6b41d532011-11-24 23:24:33 -050054 struct list_head mnt_mounts; /* list of children, anchored here */
55 struct list_head mnt_child; /* and going through their mnt_child */
Miklos Szeredi39f7c4d2011-11-21 12:11:30 +010056 struct list_head mnt_instance; /* mount instance on sb->s_mounts */
Al Viro52ba1622011-11-25 02:25:17 -050057 const char *mnt_devname; /* Name of device e.g. /dev/dsk/hda1 */
Al Viro1a4eeaf2011-11-25 02:19:55 -050058 struct list_head mnt_list;
Al Viro6776db3d2011-11-25 00:22:05 -050059 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 */
Al Viro32301922011-11-25 00:10:28 -050063 struct mount *mnt_master; /* slave is on master->mnt_slave_list */
Al Viro143c8c92011-11-25 00:46:35 -050064 struct mnt_namespace *mnt_ns; /* containing namespace */
Al Viro84d17192013-03-15 10:53:28 -040065 struct mountpoint *mnt_mp; /* where is it mounted */
Al Viro56cbb422019-07-04 16:57:51 -040066 union {
67 struct hlist_node mnt_mp_list; /* list mounts with the same mountpoint */
68 struct hlist_node mnt_umount;
69 };
Eric W. Biederman99b19d12016-10-24 16:16:13 -050070 struct list_head mnt_umounting; /* list entry for umount propagation */
Al Viroc63181e2011-11-25 02:35:16 -050071#ifdef CONFIG_FSNOTIFY
Jan Kara08991e82017-02-01 09:21:58 +010072 struct fsnotify_mark_connector __rcu *mnt_fsnotify_marks;
Al Viroc63181e2011-11-25 02:35:16 -050073 __u32 mnt_fsnotify_mask;
74#endif
Al Viro15169fe2011-11-25 00:50:41 -050075 int mnt_id; /* mount identifier */
76 int mnt_group_id; /* peer group identifier */
Al Viro863d6842011-11-25 00:57:42 -050077 int mnt_expiry_mark; /* true if marked for expiry */
Al Viro215752f2014-08-07 06:23:41 -040078 struct hlist_head mnt_pins;
Al Viro56cbb422019-07-04 16:57:51 -040079 struct hlist_head mnt_stuck_children;
Kees Cook3859a272016-10-28 01:22:25 -070080} __randomize_layout;
Al Viro7d6fec42011-11-23 12:14:10 -050081
Al Virof7a99c52012-06-09 00:59:08 -040082#define MNT_NS_INTERNAL ERR_PTR(-EINVAL) /* distinct from any mnt_namespace */
83
Al Viro7d6fec42011-11-23 12:14:10 -050084static inline struct mount *real_mount(struct vfsmount *mnt)
85{
86 return container_of(mnt, struct mount, mnt);
87}
88
Al Viro676da582011-11-24 21:47:05 -050089static inline int mnt_has_parent(struct mount *mnt)
Al Virob2dba1a2011-11-23 19:26:23 -050090{
Al Viro0714a532011-11-24 22:19:58 -050091 return mnt != mnt->mnt_parent;
Al Virob2dba1a2011-11-23 19:26:23 -050092}
Al Viroc7105362011-11-24 18:22:03 -050093
Al Virof7a99c52012-06-09 00:59:08 -040094static inline int is_mounted(struct vfsmount *mnt)
95{
96 /* neither detached nor internal? */
Eric W. Biederman260a4592014-01-20 15:26:15 -080097 return !IS_ERR_OR_NULL(real_mount(mnt)->mnt_ns);
Al Virof7a99c52012-06-09 00:59:08 -040098}
99
Al Viro474279d2013-10-01 16:11:26 -0400100extern struct mount *__lookup_mnt(struct vfsmount *, struct dentry *);
Al Viro0226f492011-12-06 12:21:54 -0500101
Al Viro294d71f2015-05-08 11:43:53 -0400102extern int __legitimize_mnt(struct vfsmount *, unsigned);
Al Viro48a066e2013-09-29 22:06:07 -0400103extern bool legitimize_mnt(struct vfsmount *, unsigned);
104
Ian Kentc6609c02016-11-24 08:03:41 +1100105static inline bool __path_is_mountpoint(const struct path *path)
106{
107 struct mount *m = __lookup_mnt(path->mnt, path->dentry);
108 return m && likely(!(m->mnt.mnt_flags & MNT_SYNC_UMOUNT));
109}
110
Eric W. Biederman80b5dce2013-10-03 01:31:18 -0700111extern void __detach_mounts(struct dentry *dentry);
112
113static inline void detach_mounts(struct dentry *dentry)
114{
115 if (!d_mountpoint(dentry))
116 return;
117 __detach_mounts(dentry);
118}
119
Al Viro0226f492011-12-06 12:21:54 -0500120static inline void get_mnt_ns(struct mnt_namespace *ns)
121{
Kirill Tkhai1a7b89692020-08-03 13:16:42 +0300122 refcount_inc(&ns->ns.count);
Al Viro0226f492011-12-06 12:21:54 -0500123}
124
Al Viro48a066e2013-09-29 22:06:07 -0400125extern seqlock_t mount_lock;
Al Viro719ea2f2013-09-29 11:24:49 -0400126
Al Viro0226f492011-12-06 12:21:54 -0500127struct proc_mounts {
Al Viro0226f492011-12-06 12:21:54 -0500128 struct mnt_namespace *ns;
129 struct path root;
130 int (*show)(struct seq_file *, struct vfsmount *);
Miklos Szeredi9f6c61f2020-05-14 16:44:24 +0200131 struct mount cursor;
Al Viro0226f492011-12-06 12:21:54 -0500132};
133
134extern const struct seq_operations mounts_op;
Eric W. Biederman7af13642013-10-04 19:15:13 -0700135
136extern bool __is_local_mountpoint(struct dentry *dentry);
137static inline bool is_local_mountpoint(struct dentry *dentry)
138{
139 if (!d_mountpoint(dentry))
140 return false;
141
142 return __is_local_mountpoint(dentry);
143}
Al Viro74e83122019-01-30 13:30:21 -0500144
145static inline bool is_anon_ns(struct mnt_namespace *ns)
146{
147 return ns->seq == 0;
148}
Miklos Szeredi9f6c61f2020-05-14 16:44:24 +0200149
150extern void mnt_cursor_del(struct mnt_namespace *ns, struct mount *cursor);