blob: f39bc9da4d73c8e38bdbb85c8385fc8820f76dc8 [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;
Al Viro0226f492011-12-06 12:21:54 -050012 struct list_head list;
Eric W. Biederman771b1372012-07-26 21:08:32 -070013 struct user_namespace *user_ns;
Eric W. Biederman537f7cc2016-08-08 14:37:37 -050014 struct ucounts *ucounts;
Eric W. Biederman8823c072010-03-07 18:49:36 -080015 u64 seq; /* Sequence number to prevent loops */
Al Viro0226f492011-12-06 12:21:54 -050016 wait_queue_head_t poll;
Al Viroc7999c32014-02-27 14:40:10 -050017 u64 event;
Eric W. Biedermand2921682016-09-28 00:27:17 -050018 unsigned int mounts; /* # of mounts in the namespace */
19 unsigned int pending_mounts;
Kees Cook3859a272016-10-28 01:22:25 -070020} __randomize_layout;
Al Virob2dba1a2011-11-23 19:26:23 -050021
Al Viro68e8a9f2011-11-24 22:53:09 -050022struct mnt_pcp {
23 int mnt_count;
24 int mnt_writers;
25};
26
Al Viro84d17192013-03-15 10:53:28 -040027struct mountpoint {
Al Viro0818bf22014-02-28 13:46:44 -050028 struct hlist_node m_hash;
Al Viro84d17192013-03-15 10:53:28 -040029 struct dentry *m_dentry;
Eric W. Biederman0a5eb7c2013-09-22 19:37:01 -070030 struct hlist_head m_list;
Al Viro84d17192013-03-15 10:53:28 -040031 int m_count;
32};
33
Al Viro7d6fec42011-11-23 12:14:10 -050034struct mount {
Al Viro38129a12014-03-20 21:10:51 -040035 struct hlist_node mnt_hash;
Al Viro0714a532011-11-24 22:19:58 -050036 struct mount *mnt_parent;
Al Viroa73324d2011-11-24 22:25:07 -050037 struct dentry *mnt_mountpoint;
Al Viro7d6fec42011-11-23 12:14:10 -050038 struct vfsmount mnt;
Al Viro9ea459e2014-08-08 13:08:20 -040039 union {
40 struct rcu_head mnt_rcu;
41 struct llist_node mnt_llist;
42 };
Al Viro68e8a9f2011-11-24 22:53:09 -050043#ifdef CONFIG_SMP
44 struct mnt_pcp __percpu *mnt_pcp;
Al Viro68e8a9f2011-11-24 22:53:09 -050045#else
46 int mnt_count;
47 int mnt_writers;
48#endif
Al Viro6b41d532011-11-24 23:24:33 -050049 struct list_head mnt_mounts; /* list of children, anchored here */
50 struct list_head mnt_child; /* and going through their mnt_child */
Miklos Szeredi39f7c4d2011-11-21 12:11:30 +010051 struct list_head mnt_instance; /* mount instance on sb->s_mounts */
Al Viro52ba1622011-11-25 02:25:17 -050052 const char *mnt_devname; /* Name of device e.g. /dev/dsk/hda1 */
Al Viro1a4eeaf2011-11-25 02:19:55 -050053 struct list_head mnt_list;
Al Viro6776db3d2011-11-25 00:22:05 -050054 struct list_head mnt_expire; /* link in fs-specific expiry list */
55 struct list_head mnt_share; /* circular list of shared mounts */
56 struct list_head mnt_slave_list;/* list of slave mounts */
57 struct list_head mnt_slave; /* slave list entry */
Al Viro32301922011-11-25 00:10:28 -050058 struct mount *mnt_master; /* slave is on master->mnt_slave_list */
Al Viro143c8c92011-11-25 00:46:35 -050059 struct mnt_namespace *mnt_ns; /* containing namespace */
Al Viro84d17192013-03-15 10:53:28 -040060 struct mountpoint *mnt_mp; /* where is it mounted */
Eric W. Biederman0a5eb7c2013-09-22 19:37:01 -070061 struct hlist_node mnt_mp_list; /* list mounts with the same mountpoint */
Eric W. Biederman99b19d12016-10-24 16:16:13 -050062 struct list_head mnt_umounting; /* list entry for umount propagation */
Al Viroc63181e2011-11-25 02:35:16 -050063#ifdef CONFIG_FSNOTIFY
Jan Kara08991e82017-02-01 09:21:58 +010064 struct fsnotify_mark_connector __rcu *mnt_fsnotify_marks;
Al Viroc63181e2011-11-25 02:35:16 -050065 __u32 mnt_fsnotify_mask;
66#endif
Al Viro15169fe2011-11-25 00:50:41 -050067 int mnt_id; /* mount identifier */
68 int mnt_group_id; /* peer group identifier */
Al Viro863d6842011-11-25 00:57:42 -050069 int mnt_expiry_mark; /* true if marked for expiry */
Al Viro215752f2014-08-07 06:23:41 -040070 struct hlist_head mnt_pins;
Al Viro87b95ce2015-01-10 19:01:08 -050071 struct fs_pin mnt_umount;
72 struct dentry *mnt_ex_mountpoint;
Kees Cook3859a272016-10-28 01:22:25 -070073} __randomize_layout;
Al Viro7d6fec42011-11-23 12:14:10 -050074
Al Virof7a99c52012-06-09 00:59:08 -040075#define MNT_NS_INTERNAL ERR_PTR(-EINVAL) /* distinct from any mnt_namespace */
76
Al Viro7d6fec42011-11-23 12:14:10 -050077static inline struct mount *real_mount(struct vfsmount *mnt)
78{
79 return container_of(mnt, struct mount, mnt);
80}
81
Al Viro676da582011-11-24 21:47:05 -050082static inline int mnt_has_parent(struct mount *mnt)
Al Virob2dba1a2011-11-23 19:26:23 -050083{
Al Viro0714a532011-11-24 22:19:58 -050084 return mnt != mnt->mnt_parent;
Al Virob2dba1a2011-11-23 19:26:23 -050085}
Al Viroc7105362011-11-24 18:22:03 -050086
Al Virof7a99c52012-06-09 00:59:08 -040087static inline int is_mounted(struct vfsmount *mnt)
88{
89 /* neither detached nor internal? */
Eric W. Biederman260a4592014-01-20 15:26:15 -080090 return !IS_ERR_OR_NULL(real_mount(mnt)->mnt_ns);
Al Virof7a99c52012-06-09 00:59:08 -040091}
92
Al Viro474279d2013-10-01 16:11:26 -040093extern struct mount *__lookup_mnt(struct vfsmount *, struct dentry *);
Al Viro0226f492011-12-06 12:21:54 -050094
Al Viro294d71f2015-05-08 11:43:53 -040095extern int __legitimize_mnt(struct vfsmount *, unsigned);
Al Viro48a066e2013-09-29 22:06:07 -040096extern bool legitimize_mnt(struct vfsmount *, unsigned);
97
Ian Kentc6609c02016-11-24 08:03:41 +110098static inline bool __path_is_mountpoint(const struct path *path)
99{
100 struct mount *m = __lookup_mnt(path->mnt, path->dentry);
101 return m && likely(!(m->mnt.mnt_flags & MNT_SYNC_UMOUNT));
102}
103
Eric W. Biederman80b5dce2013-10-03 01:31:18 -0700104extern void __detach_mounts(struct dentry *dentry);
105
106static inline void detach_mounts(struct dentry *dentry)
107{
108 if (!d_mountpoint(dentry))
109 return;
110 __detach_mounts(dentry);
111}
112
Al Viro0226f492011-12-06 12:21:54 -0500113static inline void get_mnt_ns(struct mnt_namespace *ns)
114{
115 atomic_inc(&ns->count);
116}
117
Al Viro48a066e2013-09-29 22:06:07 -0400118extern seqlock_t mount_lock;
Al Viro719ea2f2013-09-29 11:24:49 -0400119
120static inline void lock_mount_hash(void)
121{
Al Viro48a066e2013-09-29 22:06:07 -0400122 write_seqlock(&mount_lock);
Al Viro719ea2f2013-09-29 11:24:49 -0400123}
124
125static inline void unlock_mount_hash(void)
126{
Al Viro48a066e2013-09-29 22:06:07 -0400127 write_sequnlock(&mount_lock);
Al Viro719ea2f2013-09-29 11:24:49 -0400128}
129
Al Viro0226f492011-12-06 12:21:54 -0500130struct proc_mounts {
Al Viro0226f492011-12-06 12:21:54 -0500131 struct mnt_namespace *ns;
132 struct path root;
133 int (*show)(struct seq_file *, struct vfsmount *);
Al Viroc7999c32014-02-27 14:40:10 -0500134 void *cached_mount;
135 u64 cached_event;
136 loff_t cached_index;
Al Viro0226f492011-12-06 12:21:54 -0500137};
138
139extern const struct seq_operations mounts_op;
Eric W. Biederman7af13642013-10-04 19:15:13 -0700140
141extern bool __is_local_mountpoint(struct dentry *dentry);
142static inline bool is_local_mountpoint(struct dentry *dentry)
143{
144 if (!d_mountpoint(dentry))
145 return false;
146
147 return __is_local_mountpoint(dentry);
148}