xref: /openbmc/linux/fs/namespace.c (revision 474279dc)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  *  linux/fs/namespace.c
31da177e4SLinus Torvalds  *
41da177e4SLinus Torvalds  * (C) Copyright Al Viro 2000, 2001
51da177e4SLinus Torvalds  *	Released under GPL v2.
61da177e4SLinus Torvalds  *
71da177e4SLinus Torvalds  * Based on code from fs/super.c, copyright Linus Torvalds and others.
81da177e4SLinus Torvalds  * Heavily rewritten.
91da177e4SLinus Torvalds  */
101da177e4SLinus Torvalds 
111da177e4SLinus Torvalds #include <linux/syscalls.h>
12d10577a8SAl Viro #include <linux/export.h>
1316f7e0feSRandy Dunlap #include <linux/capability.h>
146b3286edSKirill Korotaev #include <linux/mnt_namespace.h>
15771b1371SEric W. Biederman #include <linux/user_namespace.h>
161da177e4SLinus Torvalds #include <linux/namei.h>
171da177e4SLinus Torvalds #include <linux/security.h>
1873cd49ecSMiklos Szeredi #include <linux/idr.h>
19d10577a8SAl Viro #include <linux/acct.h>		/* acct_auto_close_mnt */
2057f150a5SRob Landley #include <linux/init.h>		/* init_rootfs */
21d10577a8SAl Viro #include <linux/fs_struct.h>	/* get_fs_root et.al. */
22d10577a8SAl Viro #include <linux/fsnotify.h>	/* fsnotify_vfsmount_delete */
23d10577a8SAl Viro #include <linux/uaccess.h>
240bb80f24SDavid Howells #include <linux/proc_ns.h>
2520b4fb48SLinus Torvalds #include <linux/magic.h>
2607b20889SRam Pai #include "pnode.h"
27948730b0SAdrian Bunk #include "internal.h"
281da177e4SLinus Torvalds 
2913f14b4dSEric Dumazet #define HASH_SHIFT ilog2(PAGE_SIZE / sizeof(struct list_head))
3013f14b4dSEric Dumazet #define HASH_SIZE (1UL << HASH_SHIFT)
3113f14b4dSEric Dumazet 
325addc5ddSAl Viro static int event;
3373cd49ecSMiklos Szeredi static DEFINE_IDA(mnt_id_ida);
34719f5d7fSMiklos Szeredi static DEFINE_IDA(mnt_group_ida);
3599b7db7bSNick Piggin static DEFINE_SPINLOCK(mnt_id_lock);
36f21f6220SAl Viro static int mnt_id_start = 0;
37f21f6220SAl Viro static int mnt_group_start = 1;
385addc5ddSAl Viro 
39fa3536ccSEric Dumazet static struct list_head *mount_hashtable __read_mostly;
4084d17192SAl Viro static struct list_head *mountpoint_hashtable __read_mostly;
41e18b890bSChristoph Lameter static struct kmem_cache *mnt_cache __read_mostly;
4259aa0da8SAl Viro static DECLARE_RWSEM(namespace_sem);
431da177e4SLinus Torvalds 
44f87fd4c2SMiklos Szeredi /* /sys/fs */
4500d26666SGreg Kroah-Hartman struct kobject *fs_kobj;
4600d26666SGreg Kroah-Hartman EXPORT_SYMBOL_GPL(fs_kobj);
47f87fd4c2SMiklos Szeredi 
4899b7db7bSNick Piggin /*
4999b7db7bSNick Piggin  * vfsmount lock may be taken for read to prevent changes to the
5099b7db7bSNick Piggin  * vfsmount hash, ie. during mountpoint lookups or walking back
5199b7db7bSNick Piggin  * up the tree.
5299b7db7bSNick Piggin  *
5399b7db7bSNick Piggin  * It should be taken for write in all cases where the vfsmount
5499b7db7bSNick Piggin  * tree or hash is modified or when a vfsmount structure is modified.
5599b7db7bSNick Piggin  */
5699b7db7bSNick Piggin DEFINE_BRLOCK(vfsmount_lock);
5799b7db7bSNick Piggin 
581da177e4SLinus Torvalds static inline unsigned long hash(struct vfsmount *mnt, struct dentry *dentry)
591da177e4SLinus Torvalds {
601da177e4SLinus Torvalds 	unsigned long tmp = ((unsigned long)mnt / L1_CACHE_BYTES);
611da177e4SLinus Torvalds 	tmp += ((unsigned long)dentry / L1_CACHE_BYTES);
6213f14b4dSEric Dumazet 	tmp = tmp + (tmp >> HASH_SHIFT);
6313f14b4dSEric Dumazet 	return tmp & (HASH_SIZE - 1);
641da177e4SLinus Torvalds }
651da177e4SLinus Torvalds 
6699b7db7bSNick Piggin /*
6799b7db7bSNick Piggin  * allocation is serialized by namespace_sem, but we need the spinlock to
6899b7db7bSNick Piggin  * serialize with freeing.
6999b7db7bSNick Piggin  */
70b105e270SAl Viro static int mnt_alloc_id(struct mount *mnt)
7173cd49ecSMiklos Szeredi {
7273cd49ecSMiklos Szeredi 	int res;
7373cd49ecSMiklos Szeredi 
7473cd49ecSMiklos Szeredi retry:
7573cd49ecSMiklos Szeredi 	ida_pre_get(&mnt_id_ida, GFP_KERNEL);
7699b7db7bSNick Piggin 	spin_lock(&mnt_id_lock);
7715169fe7SAl Viro 	res = ida_get_new_above(&mnt_id_ida, mnt_id_start, &mnt->mnt_id);
78f21f6220SAl Viro 	if (!res)
7915169fe7SAl Viro 		mnt_id_start = mnt->mnt_id + 1;
8099b7db7bSNick Piggin 	spin_unlock(&mnt_id_lock);
8173cd49ecSMiklos Szeredi 	if (res == -EAGAIN)
8273cd49ecSMiklos Szeredi 		goto retry;
8373cd49ecSMiklos Szeredi 
8473cd49ecSMiklos Szeredi 	return res;
8573cd49ecSMiklos Szeredi }
8673cd49ecSMiklos Szeredi 
87b105e270SAl Viro static void mnt_free_id(struct mount *mnt)
8873cd49ecSMiklos Szeredi {
8915169fe7SAl Viro 	int id = mnt->mnt_id;
9099b7db7bSNick Piggin 	spin_lock(&mnt_id_lock);
91f21f6220SAl Viro 	ida_remove(&mnt_id_ida, id);
92f21f6220SAl Viro 	if (mnt_id_start > id)
93f21f6220SAl Viro 		mnt_id_start = id;
9499b7db7bSNick Piggin 	spin_unlock(&mnt_id_lock);
9573cd49ecSMiklos Szeredi }
9673cd49ecSMiklos Szeredi 
97719f5d7fSMiklos Szeredi /*
98719f5d7fSMiklos Szeredi  * Allocate a new peer group ID
99719f5d7fSMiklos Szeredi  *
100719f5d7fSMiklos Szeredi  * mnt_group_ida is protected by namespace_sem
101719f5d7fSMiklos Szeredi  */
1024b8b21f4SAl Viro static int mnt_alloc_group_id(struct mount *mnt)
103719f5d7fSMiklos Szeredi {
104f21f6220SAl Viro 	int res;
105f21f6220SAl Viro 
106719f5d7fSMiklos Szeredi 	if (!ida_pre_get(&mnt_group_ida, GFP_KERNEL))
107719f5d7fSMiklos Szeredi 		return -ENOMEM;
108719f5d7fSMiklos Szeredi 
109f21f6220SAl Viro 	res = ida_get_new_above(&mnt_group_ida,
110f21f6220SAl Viro 				mnt_group_start,
11115169fe7SAl Viro 				&mnt->mnt_group_id);
112f21f6220SAl Viro 	if (!res)
11315169fe7SAl Viro 		mnt_group_start = mnt->mnt_group_id + 1;
114f21f6220SAl Viro 
115f21f6220SAl Viro 	return res;
116719f5d7fSMiklos Szeredi }
117719f5d7fSMiklos Szeredi 
118719f5d7fSMiklos Szeredi /*
119719f5d7fSMiklos Szeredi  * Release a peer group ID
120719f5d7fSMiklos Szeredi  */
1214b8b21f4SAl Viro void mnt_release_group_id(struct mount *mnt)
122719f5d7fSMiklos Szeredi {
12315169fe7SAl Viro 	int id = mnt->mnt_group_id;
124f21f6220SAl Viro 	ida_remove(&mnt_group_ida, id);
125f21f6220SAl Viro 	if (mnt_group_start > id)
126f21f6220SAl Viro 		mnt_group_start = id;
12715169fe7SAl Viro 	mnt->mnt_group_id = 0;
128719f5d7fSMiklos Szeredi }
129719f5d7fSMiklos Szeredi 
130b3e19d92SNick Piggin /*
131b3e19d92SNick Piggin  * vfsmount lock must be held for read
132b3e19d92SNick Piggin  */
13383adc753SAl Viro static inline void mnt_add_count(struct mount *mnt, int n)
134b3e19d92SNick Piggin {
135b3e19d92SNick Piggin #ifdef CONFIG_SMP
13668e8a9feSAl Viro 	this_cpu_add(mnt->mnt_pcp->mnt_count, n);
137b3e19d92SNick Piggin #else
138b3e19d92SNick Piggin 	preempt_disable();
13968e8a9feSAl Viro 	mnt->mnt_count += n;
140b3e19d92SNick Piggin 	preempt_enable();
141b3e19d92SNick Piggin #endif
142b3e19d92SNick Piggin }
143b3e19d92SNick Piggin 
144b3e19d92SNick Piggin /*
145b3e19d92SNick Piggin  * vfsmount lock must be held for write
146b3e19d92SNick Piggin  */
14783adc753SAl Viro unsigned int mnt_get_count(struct mount *mnt)
148b3e19d92SNick Piggin {
149b3e19d92SNick Piggin #ifdef CONFIG_SMP
150f03c6599SAl Viro 	unsigned int count = 0;
151b3e19d92SNick Piggin 	int cpu;
152b3e19d92SNick Piggin 
153b3e19d92SNick Piggin 	for_each_possible_cpu(cpu) {
15468e8a9feSAl Viro 		count += per_cpu_ptr(mnt->mnt_pcp, cpu)->mnt_count;
155b3e19d92SNick Piggin 	}
156b3e19d92SNick Piggin 
157b3e19d92SNick Piggin 	return count;
158b3e19d92SNick Piggin #else
15968e8a9feSAl Viro 	return mnt->mnt_count;
160b3e19d92SNick Piggin #endif
161b3e19d92SNick Piggin }
162b3e19d92SNick Piggin 
163b105e270SAl Viro static struct mount *alloc_vfsmnt(const char *name)
1641da177e4SLinus Torvalds {
165c63181e6SAl Viro 	struct mount *mnt = kmem_cache_zalloc(mnt_cache, GFP_KERNEL);
166c63181e6SAl Viro 	if (mnt) {
16773cd49ecSMiklos Szeredi 		int err;
16873cd49ecSMiklos Szeredi 
169c63181e6SAl Viro 		err = mnt_alloc_id(mnt);
17088b38782SLi Zefan 		if (err)
17188b38782SLi Zefan 			goto out_free_cache;
17288b38782SLi Zefan 
17388b38782SLi Zefan 		if (name) {
174c63181e6SAl Viro 			mnt->mnt_devname = kstrdup(name, GFP_KERNEL);
175c63181e6SAl Viro 			if (!mnt->mnt_devname)
17688b38782SLi Zefan 				goto out_free_id;
17773cd49ecSMiklos Szeredi 		}
17873cd49ecSMiklos Szeredi 
179b3e19d92SNick Piggin #ifdef CONFIG_SMP
180c63181e6SAl Viro 		mnt->mnt_pcp = alloc_percpu(struct mnt_pcp);
181c63181e6SAl Viro 		if (!mnt->mnt_pcp)
182b3e19d92SNick Piggin 			goto out_free_devname;
183b3e19d92SNick Piggin 
184c63181e6SAl Viro 		this_cpu_add(mnt->mnt_pcp->mnt_count, 1);
185b3e19d92SNick Piggin #else
186c63181e6SAl Viro 		mnt->mnt_count = 1;
187c63181e6SAl Viro 		mnt->mnt_writers = 0;
188b3e19d92SNick Piggin #endif
189b3e19d92SNick Piggin 
190c63181e6SAl Viro 		INIT_LIST_HEAD(&mnt->mnt_hash);
191c63181e6SAl Viro 		INIT_LIST_HEAD(&mnt->mnt_child);
192c63181e6SAl Viro 		INIT_LIST_HEAD(&mnt->mnt_mounts);
193c63181e6SAl Viro 		INIT_LIST_HEAD(&mnt->mnt_list);
194c63181e6SAl Viro 		INIT_LIST_HEAD(&mnt->mnt_expire);
195c63181e6SAl Viro 		INIT_LIST_HEAD(&mnt->mnt_share);
196c63181e6SAl Viro 		INIT_LIST_HEAD(&mnt->mnt_slave_list);
197c63181e6SAl Viro 		INIT_LIST_HEAD(&mnt->mnt_slave);
1982504c5d6SAndreas Gruenbacher #ifdef CONFIG_FSNOTIFY
1992504c5d6SAndreas Gruenbacher 		INIT_HLIST_HEAD(&mnt->mnt_fsnotify_marks);
2002504c5d6SAndreas Gruenbacher #endif
2011da177e4SLinus Torvalds 	}
202c63181e6SAl Viro 	return mnt;
20388b38782SLi Zefan 
204d3ef3d73Snpiggin@suse.de #ifdef CONFIG_SMP
205d3ef3d73Snpiggin@suse.de out_free_devname:
206c63181e6SAl Viro 	kfree(mnt->mnt_devname);
207d3ef3d73Snpiggin@suse.de #endif
20888b38782SLi Zefan out_free_id:
209c63181e6SAl Viro 	mnt_free_id(mnt);
21088b38782SLi Zefan out_free_cache:
211c63181e6SAl Viro 	kmem_cache_free(mnt_cache, mnt);
21288b38782SLi Zefan 	return NULL;
2131da177e4SLinus Torvalds }
2141da177e4SLinus Torvalds 
2158366025eSDave Hansen /*
2168366025eSDave Hansen  * Most r/o checks on a fs are for operations that take
2178366025eSDave Hansen  * discrete amounts of time, like a write() or unlink().
2188366025eSDave Hansen  * We must keep track of when those operations start
2198366025eSDave Hansen  * (for permission checks) and when they end, so that
2208366025eSDave Hansen  * we can determine when writes are able to occur to
2218366025eSDave Hansen  * a filesystem.
2228366025eSDave Hansen  */
2233d733633SDave Hansen /*
2243d733633SDave Hansen  * __mnt_is_readonly: check whether a mount is read-only
2253d733633SDave Hansen  * @mnt: the mount to check for its write status
2263d733633SDave Hansen  *
2273d733633SDave Hansen  * This shouldn't be used directly ouside of the VFS.
2283d733633SDave Hansen  * It does not guarantee that the filesystem will stay
2293d733633SDave Hansen  * r/w, just that it is right *now*.  This can not and
2303d733633SDave Hansen  * should not be used in place of IS_RDONLY(inode).
2313d733633SDave Hansen  * mnt_want/drop_write() will _keep_ the filesystem
2323d733633SDave Hansen  * r/w.
2333d733633SDave Hansen  */
2343d733633SDave Hansen int __mnt_is_readonly(struct vfsmount *mnt)
2353d733633SDave Hansen {
2362e4b7fcdSDave Hansen 	if (mnt->mnt_flags & MNT_READONLY)
2372e4b7fcdSDave Hansen 		return 1;
2382e4b7fcdSDave Hansen 	if (mnt->mnt_sb->s_flags & MS_RDONLY)
2392e4b7fcdSDave Hansen 		return 1;
2402e4b7fcdSDave Hansen 	return 0;
2413d733633SDave Hansen }
2423d733633SDave Hansen EXPORT_SYMBOL_GPL(__mnt_is_readonly);
2433d733633SDave Hansen 
24483adc753SAl Viro static inline void mnt_inc_writers(struct mount *mnt)
2453d733633SDave Hansen {
246d3ef3d73Snpiggin@suse.de #ifdef CONFIG_SMP
24768e8a9feSAl Viro 	this_cpu_inc(mnt->mnt_pcp->mnt_writers);
248d3ef3d73Snpiggin@suse.de #else
24968e8a9feSAl Viro 	mnt->mnt_writers++;
250d3ef3d73Snpiggin@suse.de #endif
2513d733633SDave Hansen }
2523d733633SDave Hansen 
25383adc753SAl Viro static inline void mnt_dec_writers(struct mount *mnt)
2543d733633SDave Hansen {
255d3ef3d73Snpiggin@suse.de #ifdef CONFIG_SMP
25668e8a9feSAl Viro 	this_cpu_dec(mnt->mnt_pcp->mnt_writers);
257d3ef3d73Snpiggin@suse.de #else
25868e8a9feSAl Viro 	mnt->mnt_writers--;
259d3ef3d73Snpiggin@suse.de #endif
260d3ef3d73Snpiggin@suse.de }
261d3ef3d73Snpiggin@suse.de 
26283adc753SAl Viro static unsigned int mnt_get_writers(struct mount *mnt)
263d3ef3d73Snpiggin@suse.de {
264d3ef3d73Snpiggin@suse.de #ifdef CONFIG_SMP
265d3ef3d73Snpiggin@suse.de 	unsigned int count = 0;
2663d733633SDave Hansen 	int cpu;
2673d733633SDave Hansen 
2683d733633SDave Hansen 	for_each_possible_cpu(cpu) {
26968e8a9feSAl Viro 		count += per_cpu_ptr(mnt->mnt_pcp, cpu)->mnt_writers;
2703d733633SDave Hansen 	}
2713d733633SDave Hansen 
272d3ef3d73Snpiggin@suse.de 	return count;
273d3ef3d73Snpiggin@suse.de #else
274d3ef3d73Snpiggin@suse.de 	return mnt->mnt_writers;
275d3ef3d73Snpiggin@suse.de #endif
2763d733633SDave Hansen }
2773d733633SDave Hansen 
2784ed5e82fSMiklos Szeredi static int mnt_is_readonly(struct vfsmount *mnt)
2794ed5e82fSMiklos Szeredi {
2804ed5e82fSMiklos Szeredi 	if (mnt->mnt_sb->s_readonly_remount)
2814ed5e82fSMiklos Szeredi 		return 1;
2824ed5e82fSMiklos Szeredi 	/* Order wrt setting s_flags/s_readonly_remount in do_remount() */
2834ed5e82fSMiklos Szeredi 	smp_rmb();
2844ed5e82fSMiklos Szeredi 	return __mnt_is_readonly(mnt);
2854ed5e82fSMiklos Szeredi }
2864ed5e82fSMiklos Szeredi 
2873d733633SDave Hansen /*
288eb04c282SJan Kara  * Most r/o & frozen checks on a fs are for operations that take discrete
289eb04c282SJan Kara  * amounts of time, like a write() or unlink().  We must keep track of when
290eb04c282SJan Kara  * those operations start (for permission checks) and when they end, so that we
291eb04c282SJan Kara  * can determine when writes are able to occur to a filesystem.
2923d733633SDave Hansen  */
2938366025eSDave Hansen /**
294eb04c282SJan Kara  * __mnt_want_write - get write access to a mount without freeze protection
29583adc753SAl Viro  * @m: the mount on which to take a write
2968366025eSDave Hansen  *
297eb04c282SJan Kara  * This tells the low-level filesystem that a write is about to be performed to
298eb04c282SJan Kara  * it, and makes sure that writes are allowed (mnt it read-write) before
299eb04c282SJan Kara  * returning success. This operation does not protect against filesystem being
300eb04c282SJan Kara  * frozen. When the write operation is finished, __mnt_drop_write() must be
301eb04c282SJan Kara  * called. This is effectively a refcount.
3028366025eSDave Hansen  */
303eb04c282SJan Kara int __mnt_want_write(struct vfsmount *m)
3048366025eSDave Hansen {
30583adc753SAl Viro 	struct mount *mnt = real_mount(m);
3063d733633SDave Hansen 	int ret = 0;
3073d733633SDave Hansen 
308d3ef3d73Snpiggin@suse.de 	preempt_disable();
309c6653a83SNick Piggin 	mnt_inc_writers(mnt);
310d3ef3d73Snpiggin@suse.de 	/*
311c6653a83SNick Piggin 	 * The store to mnt_inc_writers must be visible before we pass
312d3ef3d73Snpiggin@suse.de 	 * MNT_WRITE_HOLD loop below, so that the slowpath can see our
313d3ef3d73Snpiggin@suse.de 	 * incremented count after it has set MNT_WRITE_HOLD.
314d3ef3d73Snpiggin@suse.de 	 */
315d3ef3d73Snpiggin@suse.de 	smp_mb();
3161e75529eSMiao Xie 	while (ACCESS_ONCE(mnt->mnt.mnt_flags) & MNT_WRITE_HOLD)
317d3ef3d73Snpiggin@suse.de 		cpu_relax();
318d3ef3d73Snpiggin@suse.de 	/*
319d3ef3d73Snpiggin@suse.de 	 * After the slowpath clears MNT_WRITE_HOLD, mnt_is_readonly will
320d3ef3d73Snpiggin@suse.de 	 * be set to match its requirements. So we must not load that until
321d3ef3d73Snpiggin@suse.de 	 * MNT_WRITE_HOLD is cleared.
322d3ef3d73Snpiggin@suse.de 	 */
323d3ef3d73Snpiggin@suse.de 	smp_rmb();
3244ed5e82fSMiklos Szeredi 	if (mnt_is_readonly(m)) {
325c6653a83SNick Piggin 		mnt_dec_writers(mnt);
3263d733633SDave Hansen 		ret = -EROFS;
3273d733633SDave Hansen 	}
328d3ef3d73Snpiggin@suse.de 	preempt_enable();
329eb04c282SJan Kara 
330eb04c282SJan Kara 	return ret;
331eb04c282SJan Kara }
332eb04c282SJan Kara 
333eb04c282SJan Kara /**
334eb04c282SJan Kara  * mnt_want_write - get write access to a mount
335eb04c282SJan Kara  * @m: the mount on which to take a write
336eb04c282SJan Kara  *
337eb04c282SJan Kara  * This tells the low-level filesystem that a write is about to be performed to
338eb04c282SJan Kara  * it, and makes sure that writes are allowed (mount is read-write, filesystem
339eb04c282SJan Kara  * is not frozen) before returning success.  When the write operation is
340eb04c282SJan Kara  * finished, mnt_drop_write() must be called.  This is effectively a refcount.
341eb04c282SJan Kara  */
342eb04c282SJan Kara int mnt_want_write(struct vfsmount *m)
343eb04c282SJan Kara {
344eb04c282SJan Kara 	int ret;
345eb04c282SJan Kara 
346eb04c282SJan Kara 	sb_start_write(m->mnt_sb);
347eb04c282SJan Kara 	ret = __mnt_want_write(m);
348eb04c282SJan Kara 	if (ret)
349eb04c282SJan Kara 		sb_end_write(m->mnt_sb);
3503d733633SDave Hansen 	return ret;
3518366025eSDave Hansen }
3528366025eSDave Hansen EXPORT_SYMBOL_GPL(mnt_want_write);
3538366025eSDave Hansen 
3548366025eSDave Hansen /**
35596029c4eSnpiggin@suse.de  * mnt_clone_write - get write access to a mount
35696029c4eSnpiggin@suse.de  * @mnt: the mount on which to take a write
35796029c4eSnpiggin@suse.de  *
35896029c4eSnpiggin@suse.de  * This is effectively like mnt_want_write, except
35996029c4eSnpiggin@suse.de  * it must only be used to take an extra write reference
36096029c4eSnpiggin@suse.de  * on a mountpoint that we already know has a write reference
36196029c4eSnpiggin@suse.de  * on it. This allows some optimisation.
36296029c4eSnpiggin@suse.de  *
36396029c4eSnpiggin@suse.de  * After finished, mnt_drop_write must be called as usual to
36496029c4eSnpiggin@suse.de  * drop the reference.
36596029c4eSnpiggin@suse.de  */
36696029c4eSnpiggin@suse.de int mnt_clone_write(struct vfsmount *mnt)
36796029c4eSnpiggin@suse.de {
36896029c4eSnpiggin@suse.de 	/* superblock may be r/o */
36996029c4eSnpiggin@suse.de 	if (__mnt_is_readonly(mnt))
37096029c4eSnpiggin@suse.de 		return -EROFS;
37196029c4eSnpiggin@suse.de 	preempt_disable();
37283adc753SAl Viro 	mnt_inc_writers(real_mount(mnt));
37396029c4eSnpiggin@suse.de 	preempt_enable();
37496029c4eSnpiggin@suse.de 	return 0;
37596029c4eSnpiggin@suse.de }
37696029c4eSnpiggin@suse.de EXPORT_SYMBOL_GPL(mnt_clone_write);
37796029c4eSnpiggin@suse.de 
37896029c4eSnpiggin@suse.de /**
379eb04c282SJan Kara  * __mnt_want_write_file - get write access to a file's mount
380eb04c282SJan Kara  * @file: the file who's mount on which to take a write
381eb04c282SJan Kara  *
382eb04c282SJan Kara  * This is like __mnt_want_write, but it takes a file and can
383eb04c282SJan Kara  * do some optimisations if the file is open for write already
384eb04c282SJan Kara  */
385eb04c282SJan Kara int __mnt_want_write_file(struct file *file)
386eb04c282SJan Kara {
387496ad9aaSAl Viro 	struct inode *inode = file_inode(file);
388eb04c282SJan Kara 
389eb04c282SJan Kara 	if (!(file->f_mode & FMODE_WRITE) || special_file(inode->i_mode))
390eb04c282SJan Kara 		return __mnt_want_write(file->f_path.mnt);
391eb04c282SJan Kara 	else
392eb04c282SJan Kara 		return mnt_clone_write(file->f_path.mnt);
393eb04c282SJan Kara }
394eb04c282SJan Kara 
395eb04c282SJan Kara /**
39696029c4eSnpiggin@suse.de  * mnt_want_write_file - get write access to a file's mount
39796029c4eSnpiggin@suse.de  * @file: the file who's mount on which to take a write
39896029c4eSnpiggin@suse.de  *
39996029c4eSnpiggin@suse.de  * This is like mnt_want_write, but it takes a file and can
40096029c4eSnpiggin@suse.de  * do some optimisations if the file is open for write already
40196029c4eSnpiggin@suse.de  */
40296029c4eSnpiggin@suse.de int mnt_want_write_file(struct file *file)
40396029c4eSnpiggin@suse.de {
404eb04c282SJan Kara 	int ret;
405eb04c282SJan Kara 
406eb04c282SJan Kara 	sb_start_write(file->f_path.mnt->mnt_sb);
407eb04c282SJan Kara 	ret = __mnt_want_write_file(file);
408eb04c282SJan Kara 	if (ret)
409eb04c282SJan Kara 		sb_end_write(file->f_path.mnt->mnt_sb);
410eb04c282SJan Kara 	return ret;
41196029c4eSnpiggin@suse.de }
41296029c4eSnpiggin@suse.de EXPORT_SYMBOL_GPL(mnt_want_write_file);
41396029c4eSnpiggin@suse.de 
41496029c4eSnpiggin@suse.de /**
415eb04c282SJan Kara  * __mnt_drop_write - give up write access to a mount
4168366025eSDave Hansen  * @mnt: the mount on which to give up write access
4178366025eSDave Hansen  *
4188366025eSDave Hansen  * Tells the low-level filesystem that we are done
4198366025eSDave Hansen  * performing writes to it.  Must be matched with
420eb04c282SJan Kara  * __mnt_want_write() call above.
4218366025eSDave Hansen  */
422eb04c282SJan Kara void __mnt_drop_write(struct vfsmount *mnt)
4238366025eSDave Hansen {
424d3ef3d73Snpiggin@suse.de 	preempt_disable();
42583adc753SAl Viro 	mnt_dec_writers(real_mount(mnt));
426d3ef3d73Snpiggin@suse.de 	preempt_enable();
4278366025eSDave Hansen }
428eb04c282SJan Kara 
429eb04c282SJan Kara /**
430eb04c282SJan Kara  * mnt_drop_write - give up write access to a mount
431eb04c282SJan Kara  * @mnt: the mount on which to give up write access
432eb04c282SJan Kara  *
433eb04c282SJan Kara  * Tells the low-level filesystem that we are done performing writes to it and
434eb04c282SJan Kara  * also allows filesystem to be frozen again.  Must be matched with
435eb04c282SJan Kara  * mnt_want_write() call above.
436eb04c282SJan Kara  */
437eb04c282SJan Kara void mnt_drop_write(struct vfsmount *mnt)
438eb04c282SJan Kara {
439eb04c282SJan Kara 	__mnt_drop_write(mnt);
440eb04c282SJan Kara 	sb_end_write(mnt->mnt_sb);
441eb04c282SJan Kara }
4428366025eSDave Hansen EXPORT_SYMBOL_GPL(mnt_drop_write);
4438366025eSDave Hansen 
444eb04c282SJan Kara void __mnt_drop_write_file(struct file *file)
445eb04c282SJan Kara {
446eb04c282SJan Kara 	__mnt_drop_write(file->f_path.mnt);
447eb04c282SJan Kara }
448eb04c282SJan Kara 
4492a79f17eSAl Viro void mnt_drop_write_file(struct file *file)
4502a79f17eSAl Viro {
4512a79f17eSAl Viro 	mnt_drop_write(file->f_path.mnt);
4522a79f17eSAl Viro }
4532a79f17eSAl Viro EXPORT_SYMBOL(mnt_drop_write_file);
4542a79f17eSAl Viro 
45583adc753SAl Viro static int mnt_make_readonly(struct mount *mnt)
4568366025eSDave Hansen {
4573d733633SDave Hansen 	int ret = 0;
4583d733633SDave Hansen 
459719ea2fbSAl Viro 	lock_mount_hash();
46083adc753SAl Viro 	mnt->mnt.mnt_flags |= MNT_WRITE_HOLD;
461d3ef3d73Snpiggin@suse.de 	/*
462d3ef3d73Snpiggin@suse.de 	 * After storing MNT_WRITE_HOLD, we'll read the counters. This store
463d3ef3d73Snpiggin@suse.de 	 * should be visible before we do.
464d3ef3d73Snpiggin@suse.de 	 */
465d3ef3d73Snpiggin@suse.de 	smp_mb();
466d3ef3d73Snpiggin@suse.de 
467d3ef3d73Snpiggin@suse.de 	/*
468d3ef3d73Snpiggin@suse.de 	 * With writers on hold, if this value is zero, then there are
469d3ef3d73Snpiggin@suse.de 	 * definitely no active writers (although held writers may subsequently
470d3ef3d73Snpiggin@suse.de 	 * increment the count, they'll have to wait, and decrement it after
471d3ef3d73Snpiggin@suse.de 	 * seeing MNT_READONLY).
472d3ef3d73Snpiggin@suse.de 	 *
473d3ef3d73Snpiggin@suse.de 	 * It is OK to have counter incremented on one CPU and decremented on
474d3ef3d73Snpiggin@suse.de 	 * another: the sum will add up correctly. The danger would be when we
475d3ef3d73Snpiggin@suse.de 	 * sum up each counter, if we read a counter before it is incremented,
476d3ef3d73Snpiggin@suse.de 	 * but then read another CPU's count which it has been subsequently
477d3ef3d73Snpiggin@suse.de 	 * decremented from -- we would see more decrements than we should.
478d3ef3d73Snpiggin@suse.de 	 * MNT_WRITE_HOLD protects against this scenario, because
479d3ef3d73Snpiggin@suse.de 	 * mnt_want_write first increments count, then smp_mb, then spins on
480d3ef3d73Snpiggin@suse.de 	 * MNT_WRITE_HOLD, so it can't be decremented by another CPU while
481d3ef3d73Snpiggin@suse.de 	 * we're counting up here.
482d3ef3d73Snpiggin@suse.de 	 */
483c6653a83SNick Piggin 	if (mnt_get_writers(mnt) > 0)
484d3ef3d73Snpiggin@suse.de 		ret = -EBUSY;
485d3ef3d73Snpiggin@suse.de 	else
48683adc753SAl Viro 		mnt->mnt.mnt_flags |= MNT_READONLY;
487d3ef3d73Snpiggin@suse.de 	/*
488d3ef3d73Snpiggin@suse.de 	 * MNT_READONLY must become visible before ~MNT_WRITE_HOLD, so writers
489d3ef3d73Snpiggin@suse.de 	 * that become unheld will see MNT_READONLY.
490d3ef3d73Snpiggin@suse.de 	 */
491d3ef3d73Snpiggin@suse.de 	smp_wmb();
49283adc753SAl Viro 	mnt->mnt.mnt_flags &= ~MNT_WRITE_HOLD;
493719ea2fbSAl Viro 	unlock_mount_hash();
4943d733633SDave Hansen 	return ret;
4953d733633SDave Hansen }
4968366025eSDave Hansen 
49783adc753SAl Viro static void __mnt_unmake_readonly(struct mount *mnt)
4982e4b7fcdSDave Hansen {
499719ea2fbSAl Viro 	lock_mount_hash();
50083adc753SAl Viro 	mnt->mnt.mnt_flags &= ~MNT_READONLY;
501719ea2fbSAl Viro 	unlock_mount_hash();
5022e4b7fcdSDave Hansen }
5032e4b7fcdSDave Hansen 
5044ed5e82fSMiklos Szeredi int sb_prepare_remount_readonly(struct super_block *sb)
5054ed5e82fSMiklos Szeredi {
5064ed5e82fSMiklos Szeredi 	struct mount *mnt;
5074ed5e82fSMiklos Szeredi 	int err = 0;
5084ed5e82fSMiklos Szeredi 
5098e8b8796SMiklos Szeredi 	/* Racy optimization.  Recheck the counter under MNT_WRITE_HOLD */
5108e8b8796SMiklos Szeredi 	if (atomic_long_read(&sb->s_remove_count))
5118e8b8796SMiklos Szeredi 		return -EBUSY;
5128e8b8796SMiklos Szeredi 
513719ea2fbSAl Viro 	lock_mount_hash();
5144ed5e82fSMiklos Szeredi 	list_for_each_entry(mnt, &sb->s_mounts, mnt_instance) {
5154ed5e82fSMiklos Szeredi 		if (!(mnt->mnt.mnt_flags & MNT_READONLY)) {
5164ed5e82fSMiklos Szeredi 			mnt->mnt.mnt_flags |= MNT_WRITE_HOLD;
5174ed5e82fSMiklos Szeredi 			smp_mb();
5184ed5e82fSMiklos Szeredi 			if (mnt_get_writers(mnt) > 0) {
5194ed5e82fSMiklos Szeredi 				err = -EBUSY;
5204ed5e82fSMiklos Szeredi 				break;
5214ed5e82fSMiklos Szeredi 			}
5224ed5e82fSMiklos Szeredi 		}
5234ed5e82fSMiklos Szeredi 	}
5248e8b8796SMiklos Szeredi 	if (!err && atomic_long_read(&sb->s_remove_count))
5258e8b8796SMiklos Szeredi 		err = -EBUSY;
5268e8b8796SMiklos Szeredi 
5274ed5e82fSMiklos Szeredi 	if (!err) {
5284ed5e82fSMiklos Szeredi 		sb->s_readonly_remount = 1;
5294ed5e82fSMiklos Szeredi 		smp_wmb();
5304ed5e82fSMiklos Szeredi 	}
5314ed5e82fSMiklos Szeredi 	list_for_each_entry(mnt, &sb->s_mounts, mnt_instance) {
5324ed5e82fSMiklos Szeredi 		if (mnt->mnt.mnt_flags & MNT_WRITE_HOLD)
5334ed5e82fSMiklos Szeredi 			mnt->mnt.mnt_flags &= ~MNT_WRITE_HOLD;
5344ed5e82fSMiklos Szeredi 	}
535719ea2fbSAl Viro 	unlock_mount_hash();
5364ed5e82fSMiklos Szeredi 
5374ed5e82fSMiklos Szeredi 	return err;
5384ed5e82fSMiklos Szeredi }
5394ed5e82fSMiklos Szeredi 
540b105e270SAl Viro static void free_vfsmnt(struct mount *mnt)
5411da177e4SLinus Torvalds {
54252ba1621SAl Viro 	kfree(mnt->mnt_devname);
54373cd49ecSMiklos Szeredi 	mnt_free_id(mnt);
544d3ef3d73Snpiggin@suse.de #ifdef CONFIG_SMP
54568e8a9feSAl Viro 	free_percpu(mnt->mnt_pcp);
546d3ef3d73Snpiggin@suse.de #endif
547b105e270SAl Viro 	kmem_cache_free(mnt_cache, mnt);
5481da177e4SLinus Torvalds }
5491da177e4SLinus Torvalds 
5501da177e4SLinus Torvalds /*
551474279dcSAl Viro  * find the first mount at @dentry on vfsmount @mnt.
55299b7db7bSNick Piggin  * vfsmount_lock must be held for read or write.
5531da177e4SLinus Torvalds  */
554474279dcSAl Viro struct mount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry)
5551da177e4SLinus Torvalds {
5561da177e4SLinus Torvalds 	struct list_head *head = mount_hashtable + hash(mnt, dentry);
557474279dcSAl Viro 	struct mount *p;
5581da177e4SLinus Torvalds 
559474279dcSAl Viro 	list_for_each_entry(p, head, mnt_hash)
560474279dcSAl Viro 		if (&p->mnt_parent->mnt == mnt && p->mnt_mountpoint == dentry)
561474279dcSAl Viro 			return p;
562474279dcSAl Viro 	return NULL;
5631da177e4SLinus Torvalds }
564474279dcSAl Viro 
565474279dcSAl Viro /*
566474279dcSAl Viro  * find the last mount at @dentry on vfsmount @mnt.
567474279dcSAl Viro  * vfsmount_lock must be held for read or write.
568474279dcSAl Viro  */
569474279dcSAl Viro struct mount *__lookup_mnt_last(struct vfsmount *mnt, struct dentry *dentry)
570474279dcSAl Viro {
571474279dcSAl Viro 	struct list_head *head = mount_hashtable + hash(mnt, dentry);
572474279dcSAl Viro 	struct mount *p;
573474279dcSAl Viro 
574474279dcSAl Viro 	list_for_each_entry_reverse(p, head, mnt_hash)
575474279dcSAl Viro 		if (&p->mnt_parent->mnt == mnt && p->mnt_mountpoint == dentry)
576474279dcSAl Viro 			return p;
577474279dcSAl Viro 	return NULL;
5781da177e4SLinus Torvalds }
5791da177e4SLinus Torvalds 
580a05964f3SRam Pai /*
581f015f126SDavid Howells  * lookup_mnt - Return the first child mount mounted at path
582f015f126SDavid Howells  *
583f015f126SDavid Howells  * "First" means first mounted chronologically.  If you create the
584f015f126SDavid Howells  * following mounts:
585f015f126SDavid Howells  *
586f015f126SDavid Howells  * mount /dev/sda1 /mnt
587f015f126SDavid Howells  * mount /dev/sda2 /mnt
588f015f126SDavid Howells  * mount /dev/sda3 /mnt
589f015f126SDavid Howells  *
590f015f126SDavid Howells  * Then lookup_mnt() on the base /mnt dentry in the root mount will
591f015f126SDavid Howells  * return successively the root dentry and vfsmount of /dev/sda1, then
592f015f126SDavid Howells  * /dev/sda2, then /dev/sda3, then NULL.
593f015f126SDavid Howells  *
594f015f126SDavid Howells  * lookup_mnt takes a reference to the found vfsmount.
595a05964f3SRam Pai  */
5961c755af4SAl Viro struct vfsmount *lookup_mnt(struct path *path)
597a05964f3SRam Pai {
598c7105365SAl Viro 	struct mount *child_mnt;
59999b7db7bSNick Piggin 
600962830dfSAndi Kleen 	br_read_lock(&vfsmount_lock);
601474279dcSAl Viro 	child_mnt = __lookup_mnt(path->mnt, path->dentry);
602c7105365SAl Viro 	if (child_mnt) {
603c7105365SAl Viro 		mnt_add_count(child_mnt, 1);
604962830dfSAndi Kleen 		br_read_unlock(&vfsmount_lock);
605c7105365SAl Viro 		return &child_mnt->mnt;
606c7105365SAl Viro 	} else {
607962830dfSAndi Kleen 		br_read_unlock(&vfsmount_lock);
608c7105365SAl Viro 		return NULL;
609c7105365SAl Viro 	}
610a05964f3SRam Pai }
611a05964f3SRam Pai 
61284d17192SAl Viro static struct mountpoint *new_mountpoint(struct dentry *dentry)
61384d17192SAl Viro {
61484d17192SAl Viro 	struct list_head *chain = mountpoint_hashtable + hash(NULL, dentry);
61584d17192SAl Viro 	struct mountpoint *mp;
616eed81007SMiklos Szeredi 	int ret;
61784d17192SAl Viro 
61884d17192SAl Viro 	list_for_each_entry(mp, chain, m_hash) {
61984d17192SAl Viro 		if (mp->m_dentry == dentry) {
62084d17192SAl Viro 			/* might be worth a WARN_ON() */
62184d17192SAl Viro 			if (d_unlinked(dentry))
62284d17192SAl Viro 				return ERR_PTR(-ENOENT);
62384d17192SAl Viro 			mp->m_count++;
62484d17192SAl Viro 			return mp;
62584d17192SAl Viro 		}
62684d17192SAl Viro 	}
62784d17192SAl Viro 
62884d17192SAl Viro 	mp = kmalloc(sizeof(struct mountpoint), GFP_KERNEL);
62984d17192SAl Viro 	if (!mp)
63084d17192SAl Viro 		return ERR_PTR(-ENOMEM);
63184d17192SAl Viro 
632eed81007SMiklos Szeredi 	ret = d_set_mounted(dentry);
633eed81007SMiklos Szeredi 	if (ret) {
63484d17192SAl Viro 		kfree(mp);
635eed81007SMiklos Szeredi 		return ERR_PTR(ret);
63684d17192SAl Viro 	}
637eed81007SMiklos Szeredi 
63884d17192SAl Viro 	mp->m_dentry = dentry;
63984d17192SAl Viro 	mp->m_count = 1;
64084d17192SAl Viro 	list_add(&mp->m_hash, chain);
64184d17192SAl Viro 	return mp;
64284d17192SAl Viro }
64384d17192SAl Viro 
64484d17192SAl Viro static void put_mountpoint(struct mountpoint *mp)
64584d17192SAl Viro {
64684d17192SAl Viro 	if (!--mp->m_count) {
64784d17192SAl Viro 		struct dentry *dentry = mp->m_dentry;
64884d17192SAl Viro 		spin_lock(&dentry->d_lock);
64984d17192SAl Viro 		dentry->d_flags &= ~DCACHE_MOUNTED;
65084d17192SAl Viro 		spin_unlock(&dentry->d_lock);
65184d17192SAl Viro 		list_del(&mp->m_hash);
65284d17192SAl Viro 		kfree(mp);
65384d17192SAl Viro 	}
65484d17192SAl Viro }
65584d17192SAl Viro 
656143c8c91SAl Viro static inline int check_mnt(struct mount *mnt)
6571da177e4SLinus Torvalds {
6586b3286edSKirill Korotaev 	return mnt->mnt_ns == current->nsproxy->mnt_ns;
6591da177e4SLinus Torvalds }
6601da177e4SLinus Torvalds 
66199b7db7bSNick Piggin /*
66299b7db7bSNick Piggin  * vfsmount lock must be held for write
66399b7db7bSNick Piggin  */
6646b3286edSKirill Korotaev static void touch_mnt_namespace(struct mnt_namespace *ns)
6655addc5ddSAl Viro {
6665addc5ddSAl Viro 	if (ns) {
6675addc5ddSAl Viro 		ns->event = ++event;
6685addc5ddSAl Viro 		wake_up_interruptible(&ns->poll);
6695addc5ddSAl Viro 	}
6705addc5ddSAl Viro }
6715addc5ddSAl Viro 
67299b7db7bSNick Piggin /*
67399b7db7bSNick Piggin  * vfsmount lock must be held for write
67499b7db7bSNick Piggin  */
6756b3286edSKirill Korotaev static void __touch_mnt_namespace(struct mnt_namespace *ns)
6765addc5ddSAl Viro {
6775addc5ddSAl Viro 	if (ns && ns->event != event) {
6785addc5ddSAl Viro 		ns->event = event;
6795addc5ddSAl Viro 		wake_up_interruptible(&ns->poll);
6805addc5ddSAl Viro 	}
6815addc5ddSAl Viro }
6825addc5ddSAl Viro 
68399b7db7bSNick Piggin /*
68499b7db7bSNick Piggin  * vfsmount lock must be held for write
68599b7db7bSNick Piggin  */
686419148daSAl Viro static void detach_mnt(struct mount *mnt, struct path *old_path)
6871da177e4SLinus Torvalds {
688a73324daSAl Viro 	old_path->dentry = mnt->mnt_mountpoint;
6890714a533SAl Viro 	old_path->mnt = &mnt->mnt_parent->mnt;
6900714a533SAl Viro 	mnt->mnt_parent = mnt;
691a73324daSAl Viro 	mnt->mnt_mountpoint = mnt->mnt.mnt_root;
6926b41d536SAl Viro 	list_del_init(&mnt->mnt_child);
6931b8e5564SAl Viro 	list_del_init(&mnt->mnt_hash);
69484d17192SAl Viro 	put_mountpoint(mnt->mnt_mp);
69584d17192SAl Viro 	mnt->mnt_mp = NULL;
6961da177e4SLinus Torvalds }
6971da177e4SLinus Torvalds 
69899b7db7bSNick Piggin /*
69999b7db7bSNick Piggin  * vfsmount lock must be held for write
70099b7db7bSNick Piggin  */
70184d17192SAl Viro void mnt_set_mountpoint(struct mount *mnt,
70284d17192SAl Viro 			struct mountpoint *mp,
70344d964d6SAl Viro 			struct mount *child_mnt)
704b90fa9aeSRam Pai {
70584d17192SAl Viro 	mp->m_count++;
7063a2393d7SAl Viro 	mnt_add_count(mnt, 1);	/* essentially, that's mntget */
70784d17192SAl Viro 	child_mnt->mnt_mountpoint = dget(mp->m_dentry);
7083a2393d7SAl Viro 	child_mnt->mnt_parent = mnt;
70984d17192SAl Viro 	child_mnt->mnt_mp = mp;
710b90fa9aeSRam Pai }
711b90fa9aeSRam Pai 
71299b7db7bSNick Piggin /*
71399b7db7bSNick Piggin  * vfsmount lock must be held for write
71499b7db7bSNick Piggin  */
71584d17192SAl Viro static void attach_mnt(struct mount *mnt,
71684d17192SAl Viro 			struct mount *parent,
71784d17192SAl Viro 			struct mountpoint *mp)
7181da177e4SLinus Torvalds {
71984d17192SAl Viro 	mnt_set_mountpoint(parent, mp, mnt);
7201b8e5564SAl Viro 	list_add_tail(&mnt->mnt_hash, mount_hashtable +
72184d17192SAl Viro 			hash(&parent->mnt, mp->m_dentry));
72284d17192SAl Viro 	list_add_tail(&mnt->mnt_child, &parent->mnt_mounts);
723b90fa9aeSRam Pai }
724b90fa9aeSRam Pai 
725b90fa9aeSRam Pai /*
72699b7db7bSNick Piggin  * vfsmount lock must be held for write
727b90fa9aeSRam Pai  */
7284b2619a5SAl Viro static void commit_tree(struct mount *mnt)
729b90fa9aeSRam Pai {
7300714a533SAl Viro 	struct mount *parent = mnt->mnt_parent;
73183adc753SAl Viro 	struct mount *m;
732b90fa9aeSRam Pai 	LIST_HEAD(head);
733143c8c91SAl Viro 	struct mnt_namespace *n = parent->mnt_ns;
734b90fa9aeSRam Pai 
7350714a533SAl Viro 	BUG_ON(parent == mnt);
736b90fa9aeSRam Pai 
7371a4eeaf2SAl Viro 	list_add_tail(&head, &mnt->mnt_list);
738f7a99c5bSAl Viro 	list_for_each_entry(m, &head, mnt_list)
739143c8c91SAl Viro 		m->mnt_ns = n;
740f03c6599SAl Viro 
741b90fa9aeSRam Pai 	list_splice(&head, n->list.prev);
742b90fa9aeSRam Pai 
7431b8e5564SAl Viro 	list_add_tail(&mnt->mnt_hash, mount_hashtable +
744a73324daSAl Viro 				hash(&parent->mnt, mnt->mnt_mountpoint));
7456b41d536SAl Viro 	list_add_tail(&mnt->mnt_child, &parent->mnt_mounts);
7466b3286edSKirill Korotaev 	touch_mnt_namespace(n);
7471da177e4SLinus Torvalds }
7481da177e4SLinus Torvalds 
749909b0a88SAl Viro static struct mount *next_mnt(struct mount *p, struct mount *root)
7501da177e4SLinus Torvalds {
7516b41d536SAl Viro 	struct list_head *next = p->mnt_mounts.next;
7526b41d536SAl Viro 	if (next == &p->mnt_mounts) {
7531da177e4SLinus Torvalds 		while (1) {
754909b0a88SAl Viro 			if (p == root)
7551da177e4SLinus Torvalds 				return NULL;
7566b41d536SAl Viro 			next = p->mnt_child.next;
7576b41d536SAl Viro 			if (next != &p->mnt_parent->mnt_mounts)
7581da177e4SLinus Torvalds 				break;
7590714a533SAl Viro 			p = p->mnt_parent;
7601da177e4SLinus Torvalds 		}
7611da177e4SLinus Torvalds 	}
7626b41d536SAl Viro 	return list_entry(next, struct mount, mnt_child);
7631da177e4SLinus Torvalds }
7641da177e4SLinus Torvalds 
765315fc83eSAl Viro static struct mount *skip_mnt_tree(struct mount *p)
7669676f0c6SRam Pai {
7676b41d536SAl Viro 	struct list_head *prev = p->mnt_mounts.prev;
7686b41d536SAl Viro 	while (prev != &p->mnt_mounts) {
7696b41d536SAl Viro 		p = list_entry(prev, struct mount, mnt_child);
7706b41d536SAl Viro 		prev = p->mnt_mounts.prev;
7719676f0c6SRam Pai 	}
7729676f0c6SRam Pai 	return p;
7739676f0c6SRam Pai }
7749676f0c6SRam Pai 
7759d412a43SAl Viro struct vfsmount *
7769d412a43SAl Viro vfs_kern_mount(struct file_system_type *type, int flags, const char *name, void *data)
7779d412a43SAl Viro {
778b105e270SAl Viro 	struct mount *mnt;
7799d412a43SAl Viro 	struct dentry *root;
7809d412a43SAl Viro 
7819d412a43SAl Viro 	if (!type)
7829d412a43SAl Viro 		return ERR_PTR(-ENODEV);
7839d412a43SAl Viro 
7849d412a43SAl Viro 	mnt = alloc_vfsmnt(name);
7859d412a43SAl Viro 	if (!mnt)
7869d412a43SAl Viro 		return ERR_PTR(-ENOMEM);
7879d412a43SAl Viro 
7889d412a43SAl Viro 	if (flags & MS_KERNMOUNT)
789b105e270SAl Viro 		mnt->mnt.mnt_flags = MNT_INTERNAL;
7909d412a43SAl Viro 
7919d412a43SAl Viro 	root = mount_fs(type, flags, name, data);
7929d412a43SAl Viro 	if (IS_ERR(root)) {
7939d412a43SAl Viro 		free_vfsmnt(mnt);
7949d412a43SAl Viro 		return ERR_CAST(root);
7959d412a43SAl Viro 	}
7969d412a43SAl Viro 
797b105e270SAl Viro 	mnt->mnt.mnt_root = root;
798b105e270SAl Viro 	mnt->mnt.mnt_sb = root->d_sb;
799a73324daSAl Viro 	mnt->mnt_mountpoint = mnt->mnt.mnt_root;
8000714a533SAl Viro 	mnt->mnt_parent = mnt;
801719ea2fbSAl Viro 	lock_mount_hash();
80239f7c4dbSMiklos Szeredi 	list_add_tail(&mnt->mnt_instance, &root->d_sb->s_mounts);
803719ea2fbSAl Viro 	unlock_mount_hash();
804b105e270SAl Viro 	return &mnt->mnt;
8059d412a43SAl Viro }
8069d412a43SAl Viro EXPORT_SYMBOL_GPL(vfs_kern_mount);
8079d412a43SAl Viro 
80887129cc0SAl Viro static struct mount *clone_mnt(struct mount *old, struct dentry *root,
80936341f64SRam Pai 					int flag)
8101da177e4SLinus Torvalds {
81187129cc0SAl Viro 	struct super_block *sb = old->mnt.mnt_sb;
812be34d1a3SDavid Howells 	struct mount *mnt;
813be34d1a3SDavid Howells 	int err;
8141da177e4SLinus Torvalds 
815be34d1a3SDavid Howells 	mnt = alloc_vfsmnt(old->mnt_devname);
816be34d1a3SDavid Howells 	if (!mnt)
817be34d1a3SDavid Howells 		return ERR_PTR(-ENOMEM);
818be34d1a3SDavid Howells 
8197a472ef4SEric W. Biederman 	if (flag & (CL_SLAVE | CL_PRIVATE | CL_SHARED_TO_SLAVE))
82015169fe7SAl Viro 		mnt->mnt_group_id = 0; /* not a peer of original */
821719f5d7fSMiklos Szeredi 	else
82215169fe7SAl Viro 		mnt->mnt_group_id = old->mnt_group_id;
823719f5d7fSMiklos Szeredi 
82415169fe7SAl Viro 	if ((flag & CL_MAKE_SHARED) && !mnt->mnt_group_id) {
825be34d1a3SDavid Howells 		err = mnt_alloc_group_id(mnt);
826719f5d7fSMiklos Szeredi 		if (err)
827719f5d7fSMiklos Szeredi 			goto out_free;
828719f5d7fSMiklos Szeredi 	}
829719f5d7fSMiklos Szeredi 
83087129cc0SAl Viro 	mnt->mnt.mnt_flags = old->mnt.mnt_flags & ~MNT_WRITE_HOLD;
831132c94e3SEric W. Biederman 	/* Don't allow unprivileged users to change mount flags */
832132c94e3SEric W. Biederman 	if ((flag & CL_UNPRIVILEGED) && (mnt->mnt.mnt_flags & MNT_READONLY))
833132c94e3SEric W. Biederman 		mnt->mnt.mnt_flags |= MNT_LOCK_READONLY;
834132c94e3SEric W. Biederman 
8355ff9d8a6SEric W. Biederman 	/* Don't allow unprivileged users to reveal what is under a mount */
8365ff9d8a6SEric W. Biederman 	if ((flag & CL_UNPRIVILEGED) && list_empty(&old->mnt_expire))
8375ff9d8a6SEric W. Biederman 		mnt->mnt.mnt_flags |= MNT_LOCKED;
8385ff9d8a6SEric W. Biederman 
8391da177e4SLinus Torvalds 	atomic_inc(&sb->s_active);
840b105e270SAl Viro 	mnt->mnt.mnt_sb = sb;
841b105e270SAl Viro 	mnt->mnt.mnt_root = dget(root);
842a73324daSAl Viro 	mnt->mnt_mountpoint = mnt->mnt.mnt_root;
8430714a533SAl Viro 	mnt->mnt_parent = mnt;
844719ea2fbSAl Viro 	lock_mount_hash();
84539f7c4dbSMiklos Szeredi 	list_add_tail(&mnt->mnt_instance, &sb->s_mounts);
846719ea2fbSAl Viro 	unlock_mount_hash();
847b90fa9aeSRam Pai 
8487a472ef4SEric W. Biederman 	if ((flag & CL_SLAVE) ||
8497a472ef4SEric W. Biederman 	    ((flag & CL_SHARED_TO_SLAVE) && IS_MNT_SHARED(old))) {
8506776db3dSAl Viro 		list_add(&mnt->mnt_slave, &old->mnt_slave_list);
85132301920SAl Viro 		mnt->mnt_master = old;
852fc7be130SAl Viro 		CLEAR_MNT_SHARED(mnt);
8538aec0809SAl Viro 	} else if (!(flag & CL_PRIVATE)) {
854fc7be130SAl Viro 		if ((flag & CL_MAKE_SHARED) || IS_MNT_SHARED(old))
8556776db3dSAl Viro 			list_add(&mnt->mnt_share, &old->mnt_share);
856d10e8defSAl Viro 		if (IS_MNT_SLAVE(old))
8576776db3dSAl Viro 			list_add(&mnt->mnt_slave, &old->mnt_slave);
858d10e8defSAl Viro 		mnt->mnt_master = old->mnt_master;
8595afe0022SRam Pai 	}
860b90fa9aeSRam Pai 	if (flag & CL_MAKE_SHARED)
8610f0afb1dSAl Viro 		set_mnt_shared(mnt);
8621da177e4SLinus Torvalds 
8631da177e4SLinus Torvalds 	/* stick the duplicate mount on the same expiry list
8641da177e4SLinus Torvalds 	 * as the original if that was on one */
86536341f64SRam Pai 	if (flag & CL_EXPIRE) {
8666776db3dSAl Viro 		if (!list_empty(&old->mnt_expire))
8676776db3dSAl Viro 			list_add(&mnt->mnt_expire, &old->mnt_expire);
8681da177e4SLinus Torvalds 	}
869be34d1a3SDavid Howells 
870cb338d06SAl Viro 	return mnt;
871719f5d7fSMiklos Szeredi 
872719f5d7fSMiklos Szeredi  out_free:
873719f5d7fSMiklos Szeredi 	free_vfsmnt(mnt);
874be34d1a3SDavid Howells 	return ERR_PTR(err);
8751da177e4SLinus Torvalds }
8761da177e4SLinus Torvalds 
877900148dcSAl Viro static void mntput_no_expire(struct mount *mnt)
8787b7b1aceSAl Viro {
879b3e19d92SNick Piggin put_again:
880f03c6599SAl Viro #ifdef CONFIG_SMP
881962830dfSAndi Kleen 	br_read_lock(&vfsmount_lock);
882f7a99c5bSAl Viro 	if (likely(mnt->mnt_ns)) {
883f7a99c5bSAl Viro 		/* shouldn't be the last one */
884aa9c0e07SAl Viro 		mnt_add_count(mnt, -1);
885962830dfSAndi Kleen 		br_read_unlock(&vfsmount_lock);
88699b7db7bSNick Piggin 		return;
887b3e19d92SNick Piggin 	}
888962830dfSAndi Kleen 	br_read_unlock(&vfsmount_lock);
889b3e19d92SNick Piggin 
890719ea2fbSAl Viro 	lock_mount_hash();
891aa9c0e07SAl Viro 	mnt_add_count(mnt, -1);
892b3e19d92SNick Piggin 	if (mnt_get_count(mnt)) {
893719ea2fbSAl Viro 		unlock_mount_hash();
89499b7db7bSNick Piggin 		return;
89599b7db7bSNick Piggin 	}
896b3e19d92SNick Piggin #else
897aa9c0e07SAl Viro 	mnt_add_count(mnt, -1);
898b3e19d92SNick Piggin 	if (likely(mnt_get_count(mnt)))
899b3e19d92SNick Piggin 		return;
900719ea2fbSAl Viro 	lock_mount_hash();
901f03c6599SAl Viro #endif
902863d684fSAl Viro 	if (unlikely(mnt->mnt_pinned)) {
903863d684fSAl Viro 		mnt_add_count(mnt, mnt->mnt_pinned + 1);
904863d684fSAl Viro 		mnt->mnt_pinned = 0;
905719ea2fbSAl Viro 		unlock_mount_hash();
906900148dcSAl Viro 		acct_auto_close_mnt(&mnt->mnt);
907b3e19d92SNick Piggin 		goto put_again;
908b3e19d92SNick Piggin 	}
909962830dfSAndi Kleen 
91039f7c4dbSMiklos Szeredi 	list_del(&mnt->mnt_instance);
911719ea2fbSAl Viro 	unlock_mount_hash();
912649a795aSAl Viro 
913649a795aSAl Viro 	/*
914649a795aSAl Viro 	 * This probably indicates that somebody messed
915649a795aSAl Viro 	 * up a mnt_want/drop_write() pair.  If this
916649a795aSAl Viro 	 * happens, the filesystem was probably unable
917649a795aSAl Viro 	 * to make r/w->r/o transitions.
918649a795aSAl Viro 	 */
919649a795aSAl Viro 	/*
920649a795aSAl Viro 	 * The locking used to deal with mnt_count decrement provides barriers,
921649a795aSAl Viro 	 * so mnt_get_writers() below is safe.
922649a795aSAl Viro 	 */
923649a795aSAl Viro 	WARN_ON(mnt_get_writers(mnt));
924649a795aSAl Viro 	fsnotify_vfsmount_delete(&mnt->mnt);
925649a795aSAl Viro 	dput(mnt->mnt.mnt_root);
926649a795aSAl Viro 	deactivate_super(mnt->mnt.mnt_sb);
927649a795aSAl Viro 	free_vfsmnt(mnt);
928b3e19d92SNick Piggin }
929b3e19d92SNick Piggin 
930b3e19d92SNick Piggin void mntput(struct vfsmount *mnt)
931b3e19d92SNick Piggin {
932b3e19d92SNick Piggin 	if (mnt) {
933863d684fSAl Viro 		struct mount *m = real_mount(mnt);
934b3e19d92SNick Piggin 		/* avoid cacheline pingpong, hope gcc doesn't get "smart" */
935863d684fSAl Viro 		if (unlikely(m->mnt_expiry_mark))
936863d684fSAl Viro 			m->mnt_expiry_mark = 0;
937863d684fSAl Viro 		mntput_no_expire(m);
938b3e19d92SNick Piggin 	}
939b3e19d92SNick Piggin }
940b3e19d92SNick Piggin EXPORT_SYMBOL(mntput);
941b3e19d92SNick Piggin 
942b3e19d92SNick Piggin struct vfsmount *mntget(struct vfsmount *mnt)
943b3e19d92SNick Piggin {
944b3e19d92SNick Piggin 	if (mnt)
94583adc753SAl Viro 		mnt_add_count(real_mount(mnt), 1);
946b3e19d92SNick Piggin 	return mnt;
947b3e19d92SNick Piggin }
948b3e19d92SNick Piggin EXPORT_SYMBOL(mntget);
949b3e19d92SNick Piggin 
9507b7b1aceSAl Viro void mnt_pin(struct vfsmount *mnt)
9517b7b1aceSAl Viro {
952719ea2fbSAl Viro 	lock_mount_hash();
953863d684fSAl Viro 	real_mount(mnt)->mnt_pinned++;
954719ea2fbSAl Viro 	unlock_mount_hash();
9557b7b1aceSAl Viro }
9567b7b1aceSAl Viro EXPORT_SYMBOL(mnt_pin);
9577b7b1aceSAl Viro 
958863d684fSAl Viro void mnt_unpin(struct vfsmount *m)
9597b7b1aceSAl Viro {
960863d684fSAl Viro 	struct mount *mnt = real_mount(m);
961719ea2fbSAl Viro 	lock_mount_hash();
9627b7b1aceSAl Viro 	if (mnt->mnt_pinned) {
963863d684fSAl Viro 		mnt_add_count(mnt, 1);
9647b7b1aceSAl Viro 		mnt->mnt_pinned--;
9657b7b1aceSAl Viro 	}
966719ea2fbSAl Viro 	unlock_mount_hash();
9677b7b1aceSAl Viro }
9687b7b1aceSAl Viro EXPORT_SYMBOL(mnt_unpin);
9691da177e4SLinus Torvalds 
970b3b304a2SMiklos Szeredi static inline void mangle(struct seq_file *m, const char *s)
971b3b304a2SMiklos Szeredi {
972b3b304a2SMiklos Szeredi 	seq_escape(m, s, " \t\n\\");
973b3b304a2SMiklos Szeredi }
974b3b304a2SMiklos Szeredi 
975b3b304a2SMiklos Szeredi /*
976b3b304a2SMiklos Szeredi  * Simple .show_options callback for filesystems which don't want to
977b3b304a2SMiklos Szeredi  * implement more complex mount option showing.
978b3b304a2SMiklos Szeredi  *
979b3b304a2SMiklos Szeredi  * See also save_mount_options().
980b3b304a2SMiklos Szeredi  */
98134c80b1dSAl Viro int generic_show_options(struct seq_file *m, struct dentry *root)
982b3b304a2SMiklos Szeredi {
9832a32cebdSAl Viro 	const char *options;
9842a32cebdSAl Viro 
9852a32cebdSAl Viro 	rcu_read_lock();
98634c80b1dSAl Viro 	options = rcu_dereference(root->d_sb->s_options);
987b3b304a2SMiklos Szeredi 
988b3b304a2SMiklos Szeredi 	if (options != NULL && options[0]) {
989b3b304a2SMiklos Szeredi 		seq_putc(m, ',');
990b3b304a2SMiklos Szeredi 		mangle(m, options);
991b3b304a2SMiklos Szeredi 	}
9922a32cebdSAl Viro 	rcu_read_unlock();
993b3b304a2SMiklos Szeredi 
994b3b304a2SMiklos Szeredi 	return 0;
995b3b304a2SMiklos Szeredi }
996b3b304a2SMiklos Szeredi EXPORT_SYMBOL(generic_show_options);
997b3b304a2SMiklos Szeredi 
998b3b304a2SMiklos Szeredi /*
999b3b304a2SMiklos Szeredi  * If filesystem uses generic_show_options(), this function should be
1000b3b304a2SMiklos Szeredi  * called from the fill_super() callback.
1001b3b304a2SMiklos Szeredi  *
1002b3b304a2SMiklos Szeredi  * The .remount_fs callback usually needs to be handled in a special
1003b3b304a2SMiklos Szeredi  * way, to make sure, that previous options are not overwritten if the
1004b3b304a2SMiklos Szeredi  * remount fails.
1005b3b304a2SMiklos Szeredi  *
1006b3b304a2SMiklos Szeredi  * Also note, that if the filesystem's .remount_fs function doesn't
1007b3b304a2SMiklos Szeredi  * reset all options to their default value, but changes only newly
1008b3b304a2SMiklos Szeredi  * given options, then the displayed options will not reflect reality
1009b3b304a2SMiklos Szeredi  * any more.
1010b3b304a2SMiklos Szeredi  */
1011b3b304a2SMiklos Szeredi void save_mount_options(struct super_block *sb, char *options)
1012b3b304a2SMiklos Szeredi {
10132a32cebdSAl Viro 	BUG_ON(sb->s_options);
10142a32cebdSAl Viro 	rcu_assign_pointer(sb->s_options, kstrdup(options, GFP_KERNEL));
1015b3b304a2SMiklos Szeredi }
1016b3b304a2SMiklos Szeredi EXPORT_SYMBOL(save_mount_options);
1017b3b304a2SMiklos Szeredi 
10182a32cebdSAl Viro void replace_mount_options(struct super_block *sb, char *options)
10192a32cebdSAl Viro {
10202a32cebdSAl Viro 	char *old = sb->s_options;
10212a32cebdSAl Viro 	rcu_assign_pointer(sb->s_options, options);
10222a32cebdSAl Viro 	if (old) {
10232a32cebdSAl Viro 		synchronize_rcu();
10242a32cebdSAl Viro 		kfree(old);
10252a32cebdSAl Viro 	}
10262a32cebdSAl Viro }
10272a32cebdSAl Viro EXPORT_SYMBOL(replace_mount_options);
10282a32cebdSAl Viro 
1029a1a2c409SMiklos Szeredi #ifdef CONFIG_PROC_FS
10300226f492SAl Viro /* iterator; we want it to have access to namespace_sem, thus here... */
10311da177e4SLinus Torvalds static void *m_start(struct seq_file *m, loff_t *pos)
10321da177e4SLinus Torvalds {
10336ce6e24eSAl Viro 	struct proc_mounts *p = proc_mounts(m);
10341da177e4SLinus Torvalds 
1035390c6843SRam Pai 	down_read(&namespace_sem);
1036a1a2c409SMiklos Szeredi 	return seq_list_start(&p->ns->list, *pos);
10371da177e4SLinus Torvalds }
10381da177e4SLinus Torvalds 
10391da177e4SLinus Torvalds static void *m_next(struct seq_file *m, void *v, loff_t *pos)
10401da177e4SLinus Torvalds {
10416ce6e24eSAl Viro 	struct proc_mounts *p = proc_mounts(m);
1042b0765fb8SPavel Emelianov 
1043a1a2c409SMiklos Szeredi 	return seq_list_next(v, &p->ns->list, pos);
10441da177e4SLinus Torvalds }
10451da177e4SLinus Torvalds 
10461da177e4SLinus Torvalds static void m_stop(struct seq_file *m, void *v)
10471da177e4SLinus Torvalds {
1048390c6843SRam Pai 	up_read(&namespace_sem);
10491da177e4SLinus Torvalds }
10501da177e4SLinus Torvalds 
10510226f492SAl Viro static int m_show(struct seq_file *m, void *v)
10529f5596afSAl Viro {
10536ce6e24eSAl Viro 	struct proc_mounts *p = proc_mounts(m);
10541a4eeaf2SAl Viro 	struct mount *r = list_entry(v, struct mount, mnt_list);
10550226f492SAl Viro 	return p->show(m, &r->mnt);
10561da177e4SLinus Torvalds }
10571da177e4SLinus Torvalds 
1058a1a2c409SMiklos Szeredi const struct seq_operations mounts_op = {
10591da177e4SLinus Torvalds 	.start	= m_start,
10601da177e4SLinus Torvalds 	.next	= m_next,
10611da177e4SLinus Torvalds 	.stop	= m_stop,
10620226f492SAl Viro 	.show	= m_show,
1063b4629fe2SChuck Lever };
1064a1a2c409SMiklos Szeredi #endif  /* CONFIG_PROC_FS */
1065b4629fe2SChuck Lever 
10661da177e4SLinus Torvalds /**
10671da177e4SLinus Torvalds  * may_umount_tree - check if a mount tree is busy
10681da177e4SLinus Torvalds  * @mnt: root of mount tree
10691da177e4SLinus Torvalds  *
10701da177e4SLinus Torvalds  * This is called to check if a tree of mounts has any
10711da177e4SLinus Torvalds  * open files, pwds, chroots or sub mounts that are
10721da177e4SLinus Torvalds  * busy.
10731da177e4SLinus Torvalds  */
1074909b0a88SAl Viro int may_umount_tree(struct vfsmount *m)
10751da177e4SLinus Torvalds {
1076909b0a88SAl Viro 	struct mount *mnt = real_mount(m);
107736341f64SRam Pai 	int actual_refs = 0;
107836341f64SRam Pai 	int minimum_refs = 0;
1079315fc83eSAl Viro 	struct mount *p;
1080909b0a88SAl Viro 	BUG_ON(!m);
10811da177e4SLinus Torvalds 
1082b3e19d92SNick Piggin 	/* write lock needed for mnt_get_count */
1083719ea2fbSAl Viro 	lock_mount_hash();
1084909b0a88SAl Viro 	for (p = mnt; p; p = next_mnt(p, mnt)) {
108583adc753SAl Viro 		actual_refs += mnt_get_count(p);
10861da177e4SLinus Torvalds 		minimum_refs += 2;
10871da177e4SLinus Torvalds 	}
1088719ea2fbSAl Viro 	unlock_mount_hash();
10891da177e4SLinus Torvalds 
10901da177e4SLinus Torvalds 	if (actual_refs > minimum_refs)
10911da177e4SLinus Torvalds 		return 0;
1092e3474a8eSIan Kent 
1093e3474a8eSIan Kent 	return 1;
10941da177e4SLinus Torvalds }
10951da177e4SLinus Torvalds 
10961da177e4SLinus Torvalds EXPORT_SYMBOL(may_umount_tree);
10971da177e4SLinus Torvalds 
10981da177e4SLinus Torvalds /**
10991da177e4SLinus Torvalds  * may_umount - check if a mount point is busy
11001da177e4SLinus Torvalds  * @mnt: root of mount
11011da177e4SLinus Torvalds  *
11021da177e4SLinus Torvalds  * This is called to check if a mount point has any
11031da177e4SLinus Torvalds  * open files, pwds, chroots or sub mounts. If the
11041da177e4SLinus Torvalds  * mount has sub mounts this will return busy
11051da177e4SLinus Torvalds  * regardless of whether the sub mounts are busy.
11061da177e4SLinus Torvalds  *
11071da177e4SLinus Torvalds  * Doesn't take quota and stuff into account. IOW, in some cases it will
11081da177e4SLinus Torvalds  * give false negatives. The main reason why it's here is that we need
11091da177e4SLinus Torvalds  * a non-destructive way to look for easily umountable filesystems.
11101da177e4SLinus Torvalds  */
11111da177e4SLinus Torvalds int may_umount(struct vfsmount *mnt)
11121da177e4SLinus Torvalds {
1113e3474a8eSIan Kent 	int ret = 1;
11148ad08d8aSAl Viro 	down_read(&namespace_sem);
1115719ea2fbSAl Viro 	lock_mount_hash();
11161ab59738SAl Viro 	if (propagate_mount_busy(real_mount(mnt), 2))
1117e3474a8eSIan Kent 		ret = 0;
1118719ea2fbSAl Viro 	unlock_mount_hash();
11198ad08d8aSAl Viro 	up_read(&namespace_sem);
1120a05964f3SRam Pai 	return ret;
11211da177e4SLinus Torvalds }
11221da177e4SLinus Torvalds 
11231da177e4SLinus Torvalds EXPORT_SYMBOL(may_umount);
11241da177e4SLinus Torvalds 
1125e3197d83SAl Viro static LIST_HEAD(unmounted);	/* protected by namespace_sem */
1126e3197d83SAl Viro 
112797216be0SAl Viro static void namespace_unlock(void)
11281da177e4SLinus Torvalds {
1129d5e50f74SAl Viro 	struct mount *mnt;
113097216be0SAl Viro 	LIST_HEAD(head);
113197216be0SAl Viro 
113297216be0SAl Viro 	if (likely(list_empty(&unmounted))) {
113397216be0SAl Viro 		up_write(&namespace_sem);
113497216be0SAl Viro 		return;
113597216be0SAl Viro 	}
113697216be0SAl Viro 
113797216be0SAl Viro 	list_splice_init(&unmounted, &head);
113897216be0SAl Viro 	up_write(&namespace_sem);
113997216be0SAl Viro 
114097216be0SAl Viro 	while (!list_empty(&head)) {
114197216be0SAl Viro 		mnt = list_first_entry(&head, struct mount, mnt_hash);
11421b8e5564SAl Viro 		list_del_init(&mnt->mnt_hash);
1143aba809cfSAl Viro 		if (mnt->mnt_ex_mountpoint.mnt)
1144aba809cfSAl Viro 			path_put(&mnt->mnt_ex_mountpoint);
1145d5e50f74SAl Viro 		mntput(&mnt->mnt);
114670fbcdf4SRam Pai 	}
114770fbcdf4SRam Pai }
114870fbcdf4SRam Pai 
114997216be0SAl Viro static inline void namespace_lock(void)
1150e3197d83SAl Viro {
115197216be0SAl Viro 	down_write(&namespace_sem);
1152e3197d83SAl Viro }
1153e3197d83SAl Viro 
115499b7db7bSNick Piggin /*
115599b7db7bSNick Piggin  * vfsmount lock must be held for write
115699b7db7bSNick Piggin  * namespace_sem must be held for write
115799b7db7bSNick Piggin  */
1158328e6d90SAl Viro void umount_tree(struct mount *mnt, int propagate)
115970fbcdf4SRam Pai {
11607b8a53fdSAl Viro 	LIST_HEAD(tmp_list);
1161315fc83eSAl Viro 	struct mount *p;
116270fbcdf4SRam Pai 
1163909b0a88SAl Viro 	for (p = mnt; p; p = next_mnt(p, mnt))
11641b8e5564SAl Viro 		list_move(&p->mnt_hash, &tmp_list);
116570fbcdf4SRam Pai 
1166a05964f3SRam Pai 	if (propagate)
11677b8a53fdSAl Viro 		propagate_umount(&tmp_list);
1168a05964f3SRam Pai 
11691b8e5564SAl Viro 	list_for_each_entry(p, &tmp_list, mnt_hash) {
11706776db3dSAl Viro 		list_del_init(&p->mnt_expire);
11711a4eeaf2SAl Viro 		list_del_init(&p->mnt_list);
1172143c8c91SAl Viro 		__touch_mnt_namespace(p->mnt_ns);
117363d37a84SAl Viro 		p->mnt_ns = NULL;
11746b41d536SAl Viro 		list_del_init(&p->mnt_child);
1175676da58dSAl Viro 		if (mnt_has_parent(p)) {
117684d17192SAl Viro 			put_mountpoint(p->mnt_mp);
1177aba809cfSAl Viro 			/* move the reference to mountpoint into ->mnt_ex_mountpoint */
1178aba809cfSAl Viro 			p->mnt_ex_mountpoint.dentry = p->mnt_mountpoint;
1179aba809cfSAl Viro 			p->mnt_ex_mountpoint.mnt = &p->mnt_parent->mnt;
1180aba809cfSAl Viro 			p->mnt_mountpoint = p->mnt.mnt_root;
1181aba809cfSAl Viro 			p->mnt_parent = p;
118284d17192SAl Viro 			p->mnt_mp = NULL;
11837c4b93d8SAl Viro 		}
11840f0afb1dSAl Viro 		change_mnt_propagation(p, MS_PRIVATE);
11851da177e4SLinus Torvalds 	}
1186328e6d90SAl Viro 	list_splice(&tmp_list, &unmounted);
11871da177e4SLinus Torvalds }
11881da177e4SLinus Torvalds 
1189b54b9be7SAl Viro static void shrink_submounts(struct mount *mnt);
1190c35038beSAl Viro 
11911ab59738SAl Viro static int do_umount(struct mount *mnt, int flags)
11921da177e4SLinus Torvalds {
11931ab59738SAl Viro 	struct super_block *sb = mnt->mnt.mnt_sb;
11941da177e4SLinus Torvalds 	int retval;
11951da177e4SLinus Torvalds 
11961ab59738SAl Viro 	retval = security_sb_umount(&mnt->mnt, flags);
11971da177e4SLinus Torvalds 	if (retval)
11981da177e4SLinus Torvalds 		return retval;
11991da177e4SLinus Torvalds 
12001da177e4SLinus Torvalds 	/*
12011da177e4SLinus Torvalds 	 * Allow userspace to request a mountpoint be expired rather than
12021da177e4SLinus Torvalds 	 * unmounting unconditionally. Unmount only happens if:
12031da177e4SLinus Torvalds 	 *  (1) the mark is already set (the mark is cleared by mntput())
12041da177e4SLinus Torvalds 	 *  (2) the usage count == 1 [parent vfsmount] + 1 [sys_umount]
12051da177e4SLinus Torvalds 	 */
12061da177e4SLinus Torvalds 	if (flags & MNT_EXPIRE) {
12071ab59738SAl Viro 		if (&mnt->mnt == current->fs->root.mnt ||
12081da177e4SLinus Torvalds 		    flags & (MNT_FORCE | MNT_DETACH))
12091da177e4SLinus Torvalds 			return -EINVAL;
12101da177e4SLinus Torvalds 
1211b3e19d92SNick Piggin 		/*
1212b3e19d92SNick Piggin 		 * probably don't strictly need the lock here if we examined
1213b3e19d92SNick Piggin 		 * all race cases, but it's a slowpath.
1214b3e19d92SNick Piggin 		 */
1215719ea2fbSAl Viro 		lock_mount_hash();
121683adc753SAl Viro 		if (mnt_get_count(mnt) != 2) {
1217719ea2fbSAl Viro 			unlock_mount_hash();
12181da177e4SLinus Torvalds 			return -EBUSY;
1219b3e19d92SNick Piggin 		}
1220719ea2fbSAl Viro 		unlock_mount_hash();
12211da177e4SLinus Torvalds 
1222863d684fSAl Viro 		if (!xchg(&mnt->mnt_expiry_mark, 1))
12231da177e4SLinus Torvalds 			return -EAGAIN;
12241da177e4SLinus Torvalds 	}
12251da177e4SLinus Torvalds 
12261da177e4SLinus Torvalds 	/*
12271da177e4SLinus Torvalds 	 * If we may have to abort operations to get out of this
12281da177e4SLinus Torvalds 	 * mount, and they will themselves hold resources we must
12291da177e4SLinus Torvalds 	 * allow the fs to do things. In the Unix tradition of
12301da177e4SLinus Torvalds 	 * 'Gee thats tricky lets do it in userspace' the umount_begin
12311da177e4SLinus Torvalds 	 * might fail to complete on the first run through as other tasks
12321da177e4SLinus Torvalds 	 * must return, and the like. Thats for the mount program to worry
12331da177e4SLinus Torvalds 	 * about for the moment.
12341da177e4SLinus Torvalds 	 */
12351da177e4SLinus Torvalds 
123642faad99SAl Viro 	if (flags & MNT_FORCE && sb->s_op->umount_begin) {
123742faad99SAl Viro 		sb->s_op->umount_begin(sb);
123842faad99SAl Viro 	}
12391da177e4SLinus Torvalds 
12401da177e4SLinus Torvalds 	/*
12411da177e4SLinus Torvalds 	 * No sense to grab the lock for this test, but test itself looks
12421da177e4SLinus Torvalds 	 * somewhat bogus. Suggestions for better replacement?
12431da177e4SLinus Torvalds 	 * Ho-hum... In principle, we might treat that as umount + switch
12441da177e4SLinus Torvalds 	 * to rootfs. GC would eventually take care of the old vfsmount.
12451da177e4SLinus Torvalds 	 * Actually it makes sense, especially if rootfs would contain a
12461da177e4SLinus Torvalds 	 * /reboot - static binary that would close all descriptors and
12471da177e4SLinus Torvalds 	 * call reboot(9). Then init(8) could umount root and exec /reboot.
12481da177e4SLinus Torvalds 	 */
12491ab59738SAl Viro 	if (&mnt->mnt == current->fs->root.mnt && !(flags & MNT_DETACH)) {
12501da177e4SLinus Torvalds 		/*
12511da177e4SLinus Torvalds 		 * Special case for "unmounting" root ...
12521da177e4SLinus Torvalds 		 * we just try to remount it readonly.
12531da177e4SLinus Torvalds 		 */
12541da177e4SLinus Torvalds 		down_write(&sb->s_umount);
12554aa98cf7SAl Viro 		if (!(sb->s_flags & MS_RDONLY))
12561da177e4SLinus Torvalds 			retval = do_remount_sb(sb, MS_RDONLY, NULL, 0);
12571da177e4SLinus Torvalds 		up_write(&sb->s_umount);
12581da177e4SLinus Torvalds 		return retval;
12591da177e4SLinus Torvalds 	}
12601da177e4SLinus Torvalds 
126197216be0SAl Viro 	namespace_lock();
1262719ea2fbSAl Viro 	lock_mount_hash();
12635addc5ddSAl Viro 	event++;
12641da177e4SLinus Torvalds 
1265c35038beSAl Viro 	if (!(flags & MNT_DETACH))
1266b54b9be7SAl Viro 		shrink_submounts(mnt);
1267c35038beSAl Viro 
12681da177e4SLinus Torvalds 	retval = -EBUSY;
1269a05964f3SRam Pai 	if (flags & MNT_DETACH || !propagate_mount_busy(mnt, 2)) {
12701a4eeaf2SAl Viro 		if (!list_empty(&mnt->mnt_list))
1271328e6d90SAl Viro 			umount_tree(mnt, 1);
12721da177e4SLinus Torvalds 		retval = 0;
12731da177e4SLinus Torvalds 	}
1274719ea2fbSAl Viro 	unlock_mount_hash();
1275e3197d83SAl Viro 	namespace_unlock();
12761da177e4SLinus Torvalds 	return retval;
12771da177e4SLinus Torvalds }
12781da177e4SLinus Torvalds 
12791da177e4SLinus Torvalds /*
12809b40bc90SAl Viro  * Is the caller allowed to modify his namespace?
12819b40bc90SAl Viro  */
12829b40bc90SAl Viro static inline bool may_mount(void)
12839b40bc90SAl Viro {
12849b40bc90SAl Viro 	return ns_capable(current->nsproxy->mnt_ns->user_ns, CAP_SYS_ADMIN);
12859b40bc90SAl Viro }
12869b40bc90SAl Viro 
12879b40bc90SAl Viro /*
12881da177e4SLinus Torvalds  * Now umount can handle mount points as well as block devices.
12891da177e4SLinus Torvalds  * This is important for filesystems which use unnamed block devices.
12901da177e4SLinus Torvalds  *
12911da177e4SLinus Torvalds  * We now support a flag for forced unmount like the other 'big iron'
12921da177e4SLinus Torvalds  * unixes. Our API is identical to OSF/1 to avoid making a mess of AMD
12931da177e4SLinus Torvalds  */
12941da177e4SLinus Torvalds 
1295bdc480e3SHeiko Carstens SYSCALL_DEFINE2(umount, char __user *, name, int, flags)
12961da177e4SLinus Torvalds {
12972d8f3038SAl Viro 	struct path path;
1298900148dcSAl Viro 	struct mount *mnt;
12991da177e4SLinus Torvalds 	int retval;
1300db1f05bbSMiklos Szeredi 	int lookup_flags = 0;
13011da177e4SLinus Torvalds 
1302db1f05bbSMiklos Szeredi 	if (flags & ~(MNT_FORCE | MNT_DETACH | MNT_EXPIRE | UMOUNT_NOFOLLOW))
1303db1f05bbSMiklos Szeredi 		return -EINVAL;
1304db1f05bbSMiklos Szeredi 
13059b40bc90SAl Viro 	if (!may_mount())
13069b40bc90SAl Viro 		return -EPERM;
13079b40bc90SAl Viro 
1308db1f05bbSMiklos Szeredi 	if (!(flags & UMOUNT_NOFOLLOW))
1309db1f05bbSMiklos Szeredi 		lookup_flags |= LOOKUP_FOLLOW;
1310db1f05bbSMiklos Szeredi 
1311197df04cSAl Viro 	retval = user_path_mountpoint_at(AT_FDCWD, name, lookup_flags, &path);
13121da177e4SLinus Torvalds 	if (retval)
13131da177e4SLinus Torvalds 		goto out;
1314900148dcSAl Viro 	mnt = real_mount(path.mnt);
13151da177e4SLinus Torvalds 	retval = -EINVAL;
13162d8f3038SAl Viro 	if (path.dentry != path.mnt->mnt_root)
13171da177e4SLinus Torvalds 		goto dput_and_out;
1318143c8c91SAl Viro 	if (!check_mnt(mnt))
13191da177e4SLinus Torvalds 		goto dput_and_out;
13205ff9d8a6SEric W. Biederman 	if (mnt->mnt.mnt_flags & MNT_LOCKED)
13215ff9d8a6SEric W. Biederman 		goto dput_and_out;
13221da177e4SLinus Torvalds 
1323900148dcSAl Viro 	retval = do_umount(mnt, flags);
13241da177e4SLinus Torvalds dput_and_out:
1325429731b1SJan Blunck 	/* we mustn't call path_put() as that would clear mnt_expiry_mark */
13262d8f3038SAl Viro 	dput(path.dentry);
1327900148dcSAl Viro 	mntput_no_expire(mnt);
13281da177e4SLinus Torvalds out:
13291da177e4SLinus Torvalds 	return retval;
13301da177e4SLinus Torvalds }
13311da177e4SLinus Torvalds 
13321da177e4SLinus Torvalds #ifdef __ARCH_WANT_SYS_OLDUMOUNT
13331da177e4SLinus Torvalds 
13341da177e4SLinus Torvalds /*
13351da177e4SLinus Torvalds  *	The 2.0 compatible umount. No flags.
13361da177e4SLinus Torvalds  */
1337bdc480e3SHeiko Carstens SYSCALL_DEFINE1(oldumount, char __user *, name)
13381da177e4SLinus Torvalds {
13391da177e4SLinus Torvalds 	return sys_umount(name, 0);
13401da177e4SLinus Torvalds }
13411da177e4SLinus Torvalds 
13421da177e4SLinus Torvalds #endif
13431da177e4SLinus Torvalds 
13444ce5d2b1SEric W. Biederman static bool is_mnt_ns_file(struct dentry *dentry)
13458823c079SEric W. Biederman {
13464ce5d2b1SEric W. Biederman 	/* Is this a proxy for a mount namespace? */
13474ce5d2b1SEric W. Biederman 	struct inode *inode = dentry->d_inode;
13480bb80f24SDavid Howells 	struct proc_ns *ei;
13498823c079SEric W. Biederman 
13508823c079SEric W. Biederman 	if (!proc_ns_inode(inode))
13518823c079SEric W. Biederman 		return false;
13528823c079SEric W. Biederman 
13530bb80f24SDavid Howells 	ei = get_proc_ns(inode);
13548823c079SEric W. Biederman 	if (ei->ns_ops != &mntns_operations)
13558823c079SEric W. Biederman 		return false;
13568823c079SEric W. Biederman 
13574ce5d2b1SEric W. Biederman 	return true;
13584ce5d2b1SEric W. Biederman }
13594ce5d2b1SEric W. Biederman 
13604ce5d2b1SEric W. Biederman static bool mnt_ns_loop(struct dentry *dentry)
13614ce5d2b1SEric W. Biederman {
13624ce5d2b1SEric W. Biederman 	/* Could bind mounting the mount namespace inode cause a
13634ce5d2b1SEric W. Biederman 	 * mount namespace loop?
13644ce5d2b1SEric W. Biederman 	 */
13654ce5d2b1SEric W. Biederman 	struct mnt_namespace *mnt_ns;
13664ce5d2b1SEric W. Biederman 	if (!is_mnt_ns_file(dentry))
13674ce5d2b1SEric W. Biederman 		return false;
13684ce5d2b1SEric W. Biederman 
13694ce5d2b1SEric W. Biederman 	mnt_ns = get_proc_ns(dentry->d_inode)->ns;
13708823c079SEric W. Biederman 	return current->nsproxy->mnt_ns->seq >= mnt_ns->seq;
13718823c079SEric W. Biederman }
13728823c079SEric W. Biederman 
137387129cc0SAl Viro struct mount *copy_tree(struct mount *mnt, struct dentry *dentry,
137436341f64SRam Pai 					int flag)
13751da177e4SLinus Torvalds {
137684d17192SAl Viro 	struct mount *res, *p, *q, *r, *parent;
13771da177e4SLinus Torvalds 
13784ce5d2b1SEric W. Biederman 	if (!(flag & CL_COPY_UNBINDABLE) && IS_MNT_UNBINDABLE(mnt))
13794ce5d2b1SEric W. Biederman 		return ERR_PTR(-EINVAL);
13804ce5d2b1SEric W. Biederman 
13814ce5d2b1SEric W. Biederman 	if (!(flag & CL_COPY_MNT_NS_FILE) && is_mnt_ns_file(dentry))
1382be34d1a3SDavid Howells 		return ERR_PTR(-EINVAL);
13839676f0c6SRam Pai 
138436341f64SRam Pai 	res = q = clone_mnt(mnt, dentry, flag);
1385be34d1a3SDavid Howells 	if (IS_ERR(q))
1386be34d1a3SDavid Howells 		return q;
1387be34d1a3SDavid Howells 
13885ff9d8a6SEric W. Biederman 	q->mnt.mnt_flags &= ~MNT_LOCKED;
1389a73324daSAl Viro 	q->mnt_mountpoint = mnt->mnt_mountpoint;
13901da177e4SLinus Torvalds 
13911da177e4SLinus Torvalds 	p = mnt;
13926b41d536SAl Viro 	list_for_each_entry(r, &mnt->mnt_mounts, mnt_child) {
1393315fc83eSAl Viro 		struct mount *s;
13947ec02ef1SJan Blunck 		if (!is_subdir(r->mnt_mountpoint, dentry))
13951da177e4SLinus Torvalds 			continue;
13961da177e4SLinus Torvalds 
1397909b0a88SAl Viro 		for (s = r; s; s = next_mnt(s, r)) {
13984ce5d2b1SEric W. Biederman 			if (!(flag & CL_COPY_UNBINDABLE) &&
13994ce5d2b1SEric W. Biederman 			    IS_MNT_UNBINDABLE(s)) {
14004ce5d2b1SEric W. Biederman 				s = skip_mnt_tree(s);
14014ce5d2b1SEric W. Biederman 				continue;
14024ce5d2b1SEric W. Biederman 			}
14034ce5d2b1SEric W. Biederman 			if (!(flag & CL_COPY_MNT_NS_FILE) &&
14044ce5d2b1SEric W. Biederman 			    is_mnt_ns_file(s->mnt.mnt_root)) {
14059676f0c6SRam Pai 				s = skip_mnt_tree(s);
14069676f0c6SRam Pai 				continue;
14079676f0c6SRam Pai 			}
14080714a533SAl Viro 			while (p != s->mnt_parent) {
14090714a533SAl Viro 				p = p->mnt_parent;
14100714a533SAl Viro 				q = q->mnt_parent;
14111da177e4SLinus Torvalds 			}
141287129cc0SAl Viro 			p = s;
141384d17192SAl Viro 			parent = q;
141487129cc0SAl Viro 			q = clone_mnt(p, p->mnt.mnt_root, flag);
1415be34d1a3SDavid Howells 			if (IS_ERR(q))
1416be34d1a3SDavid Howells 				goto out;
1417719ea2fbSAl Viro 			lock_mount_hash();
14181a4eeaf2SAl Viro 			list_add_tail(&q->mnt_list, &res->mnt_list);
141984d17192SAl Viro 			attach_mnt(q, parent, p->mnt_mp);
1420719ea2fbSAl Viro 			unlock_mount_hash();
14211da177e4SLinus Torvalds 		}
14221da177e4SLinus Torvalds 	}
14231da177e4SLinus Torvalds 	return res;
1424be34d1a3SDavid Howells out:
14251da177e4SLinus Torvalds 	if (res) {
1426719ea2fbSAl Viro 		lock_mount_hash();
1427328e6d90SAl Viro 		umount_tree(res, 0);
1428719ea2fbSAl Viro 		unlock_mount_hash();
14291da177e4SLinus Torvalds 	}
1430be34d1a3SDavid Howells 	return q;
14311da177e4SLinus Torvalds }
14321da177e4SLinus Torvalds 
1433be34d1a3SDavid Howells /* Caller should check returned pointer for errors */
1434be34d1a3SDavid Howells 
1435589ff870SAl Viro struct vfsmount *collect_mounts(struct path *path)
14368aec0809SAl Viro {
1437cb338d06SAl Viro 	struct mount *tree;
143897216be0SAl Viro 	namespace_lock();
143987129cc0SAl Viro 	tree = copy_tree(real_mount(path->mnt), path->dentry,
144087129cc0SAl Viro 			 CL_COPY_ALL | CL_PRIVATE);
1441328e6d90SAl Viro 	namespace_unlock();
1442be34d1a3SDavid Howells 	if (IS_ERR(tree))
144352e220d3SDan Carpenter 		return ERR_CAST(tree);
1444be34d1a3SDavid Howells 	return &tree->mnt;
14458aec0809SAl Viro }
14468aec0809SAl Viro 
14478aec0809SAl Viro void drop_collected_mounts(struct vfsmount *mnt)
14488aec0809SAl Viro {
144997216be0SAl Viro 	namespace_lock();
1450719ea2fbSAl Viro 	lock_mount_hash();
1451328e6d90SAl Viro 	umount_tree(real_mount(mnt), 0);
1452719ea2fbSAl Viro 	unlock_mount_hash();
14533ab6abeeSAl Viro 	namespace_unlock();
14548aec0809SAl Viro }
14558aec0809SAl Viro 
14561f707137SAl Viro int iterate_mounts(int (*f)(struct vfsmount *, void *), void *arg,
14571f707137SAl Viro 		   struct vfsmount *root)
14581f707137SAl Viro {
14591a4eeaf2SAl Viro 	struct mount *mnt;
14601f707137SAl Viro 	int res = f(root, arg);
14611f707137SAl Viro 	if (res)
14621f707137SAl Viro 		return res;
14631a4eeaf2SAl Viro 	list_for_each_entry(mnt, &real_mount(root)->mnt_list, mnt_list) {
14641a4eeaf2SAl Viro 		res = f(&mnt->mnt, arg);
14651f707137SAl Viro 		if (res)
14661f707137SAl Viro 			return res;
14671f707137SAl Viro 	}
14681f707137SAl Viro 	return 0;
14691f707137SAl Viro }
14701f707137SAl Viro 
14714b8b21f4SAl Viro static void cleanup_group_ids(struct mount *mnt, struct mount *end)
1472719f5d7fSMiklos Szeredi {
1473315fc83eSAl Viro 	struct mount *p;
1474719f5d7fSMiklos Szeredi 
1475909b0a88SAl Viro 	for (p = mnt; p != end; p = next_mnt(p, mnt)) {
1476fc7be130SAl Viro 		if (p->mnt_group_id && !IS_MNT_SHARED(p))
14774b8b21f4SAl Viro 			mnt_release_group_id(p);
1478719f5d7fSMiklos Szeredi 	}
1479719f5d7fSMiklos Szeredi }
1480719f5d7fSMiklos Szeredi 
14814b8b21f4SAl Viro static int invent_group_ids(struct mount *mnt, bool recurse)
1482719f5d7fSMiklos Szeredi {
1483315fc83eSAl Viro 	struct mount *p;
1484719f5d7fSMiklos Szeredi 
1485909b0a88SAl Viro 	for (p = mnt; p; p = recurse ? next_mnt(p, mnt) : NULL) {
1486fc7be130SAl Viro 		if (!p->mnt_group_id && !IS_MNT_SHARED(p)) {
14874b8b21f4SAl Viro 			int err = mnt_alloc_group_id(p);
1488719f5d7fSMiklos Szeredi 			if (err) {
14894b8b21f4SAl Viro 				cleanup_group_ids(mnt, p);
1490719f5d7fSMiklos Szeredi 				return err;
1491719f5d7fSMiklos Szeredi 			}
1492719f5d7fSMiklos Szeredi 		}
1493719f5d7fSMiklos Szeredi 	}
1494719f5d7fSMiklos Szeredi 
1495719f5d7fSMiklos Szeredi 	return 0;
1496719f5d7fSMiklos Szeredi }
1497719f5d7fSMiklos Szeredi 
1498b90fa9aeSRam Pai /*
1499b90fa9aeSRam Pai  *  @source_mnt : mount tree to be attached
1500b90fa9aeSRam Pai  *  @nd         : place the mount tree @source_mnt is attached
150121444403SRam Pai  *  @parent_nd  : if non-null, detach the source_mnt from its parent and
150221444403SRam Pai  *  		   store the parent mount and mountpoint dentry.
150321444403SRam Pai  *  		   (done when source_mnt is moved)
1504b90fa9aeSRam Pai  *
1505b90fa9aeSRam Pai  *  NOTE: in the table below explains the semantics when a source mount
1506b90fa9aeSRam Pai  *  of a given type is attached to a destination mount of a given type.
15079676f0c6SRam Pai  * ---------------------------------------------------------------------------
1508b90fa9aeSRam Pai  * |         BIND MOUNT OPERATION                                            |
15099676f0c6SRam Pai  * |**************************************************************************
15109676f0c6SRam Pai  * | source-->| shared        |       private  |       slave    | unbindable |
15119676f0c6SRam Pai  * | dest     |               |                |                |            |
15129676f0c6SRam Pai  * |   |      |               |                |                |            |
15139676f0c6SRam Pai  * |   v      |               |                |                |            |
15149676f0c6SRam Pai  * |**************************************************************************
15159676f0c6SRam Pai  * |  shared  | shared (++)   |     shared (+) |     shared(+++)|  invalid   |
15165afe0022SRam Pai  * |          |               |                |                |            |
15179676f0c6SRam Pai  * |non-shared| shared (+)    |      private   |      slave (*) |  invalid   |
15189676f0c6SRam Pai  * ***************************************************************************
1519b90fa9aeSRam Pai  * A bind operation clones the source mount and mounts the clone on the
1520b90fa9aeSRam Pai  * destination mount.
1521b90fa9aeSRam Pai  *
1522b90fa9aeSRam Pai  * (++)  the cloned mount is propagated to all the mounts in the propagation
1523b90fa9aeSRam Pai  * 	 tree of the destination mount and the cloned mount is added to
1524b90fa9aeSRam Pai  * 	 the peer group of the source mount.
1525b90fa9aeSRam Pai  * (+)   the cloned mount is created under the destination mount and is marked
1526b90fa9aeSRam Pai  *       as shared. The cloned mount is added to the peer group of the source
1527b90fa9aeSRam Pai  *       mount.
15285afe0022SRam Pai  * (+++) the mount is propagated to all the mounts in the propagation tree
15295afe0022SRam Pai  *       of the destination mount and the cloned mount is made slave
15305afe0022SRam Pai  *       of the same master as that of the source mount. The cloned mount
15315afe0022SRam Pai  *       is marked as 'shared and slave'.
15325afe0022SRam Pai  * (*)   the cloned mount is made a slave of the same master as that of the
15335afe0022SRam Pai  * 	 source mount.
15345afe0022SRam Pai  *
15359676f0c6SRam Pai  * ---------------------------------------------------------------------------
153621444403SRam Pai  * |         		MOVE MOUNT OPERATION                                 |
15379676f0c6SRam Pai  * |**************************************************************************
15389676f0c6SRam Pai  * | source-->| shared        |       private  |       slave    | unbindable |
15399676f0c6SRam Pai  * | dest     |               |                |                |            |
15409676f0c6SRam Pai  * |   |      |               |                |                |            |
15419676f0c6SRam Pai  * |   v      |               |                |                |            |
15429676f0c6SRam Pai  * |**************************************************************************
15439676f0c6SRam Pai  * |  shared  | shared (+)    |     shared (+) |    shared(+++) |  invalid   |
15445afe0022SRam Pai  * |          |               |                |                |            |
15459676f0c6SRam Pai  * |non-shared| shared (+*)   |      private   |    slave (*)   | unbindable |
15469676f0c6SRam Pai  * ***************************************************************************
15475afe0022SRam Pai  *
15485afe0022SRam Pai  * (+)  the mount is moved to the destination. And is then propagated to
15495afe0022SRam Pai  * 	all the mounts in the propagation tree of the destination mount.
155021444403SRam Pai  * (+*)  the mount is moved to the destination.
15515afe0022SRam Pai  * (+++)  the mount is moved to the destination and is then propagated to
15525afe0022SRam Pai  * 	all the mounts belonging to the destination mount's propagation tree.
15535afe0022SRam Pai  * 	the mount is marked as 'shared and slave'.
15545afe0022SRam Pai  * (*)	the mount continues to be a slave at the new location.
1555b90fa9aeSRam Pai  *
1556b90fa9aeSRam Pai  * if the source mount is a tree, the operations explained above is
1557b90fa9aeSRam Pai  * applied to each mount in the tree.
1558b90fa9aeSRam Pai  * Must be called without spinlocks held, since this function can sleep
1559b90fa9aeSRam Pai  * in allocations.
1560b90fa9aeSRam Pai  */
15610fb54e50SAl Viro static int attach_recursive_mnt(struct mount *source_mnt,
156284d17192SAl Viro 			struct mount *dest_mnt,
156384d17192SAl Viro 			struct mountpoint *dest_mp,
156484d17192SAl Viro 			struct path *parent_path)
1565b90fa9aeSRam Pai {
1566b90fa9aeSRam Pai 	LIST_HEAD(tree_list);
1567315fc83eSAl Viro 	struct mount *child, *p;
1568719f5d7fSMiklos Szeredi 	int err;
1569b90fa9aeSRam Pai 
1570fc7be130SAl Viro 	if (IS_MNT_SHARED(dest_mnt)) {
15710fb54e50SAl Viro 		err = invent_group_ids(source_mnt, true);
1572719f5d7fSMiklos Szeredi 		if (err)
1573719f5d7fSMiklos Szeredi 			goto out;
1574719f5d7fSMiklos Szeredi 	}
157584d17192SAl Viro 	err = propagate_mnt(dest_mnt, dest_mp, source_mnt, &tree_list);
1576719f5d7fSMiklos Szeredi 	if (err)
1577719f5d7fSMiklos Szeredi 		goto out_cleanup_ids;
1578b90fa9aeSRam Pai 
1579719ea2fbSAl Viro 	lock_mount_hash();
1580df1a1ad2SAl Viro 
1581fc7be130SAl Viro 	if (IS_MNT_SHARED(dest_mnt)) {
1582909b0a88SAl Viro 		for (p = source_mnt; p; p = next_mnt(p, source_mnt))
15830f0afb1dSAl Viro 			set_mnt_shared(p);
1584b90fa9aeSRam Pai 	}
15851a390689SAl Viro 	if (parent_path) {
15860fb54e50SAl Viro 		detach_mnt(source_mnt, parent_path);
158784d17192SAl Viro 		attach_mnt(source_mnt, dest_mnt, dest_mp);
1588143c8c91SAl Viro 		touch_mnt_namespace(source_mnt->mnt_ns);
158921444403SRam Pai 	} else {
159084d17192SAl Viro 		mnt_set_mountpoint(dest_mnt, dest_mp, source_mnt);
15910fb54e50SAl Viro 		commit_tree(source_mnt);
159221444403SRam Pai 	}
1593b90fa9aeSRam Pai 
15941b8e5564SAl Viro 	list_for_each_entry_safe(child, p, &tree_list, mnt_hash) {
15951b8e5564SAl Viro 		list_del_init(&child->mnt_hash);
15964b2619a5SAl Viro 		commit_tree(child);
1597b90fa9aeSRam Pai 	}
1598719ea2fbSAl Viro 	unlock_mount_hash();
159999b7db7bSNick Piggin 
1600b90fa9aeSRam Pai 	return 0;
1601719f5d7fSMiklos Szeredi 
1602719f5d7fSMiklos Szeredi  out_cleanup_ids:
1603fc7be130SAl Viro 	if (IS_MNT_SHARED(dest_mnt))
16040fb54e50SAl Viro 		cleanup_group_ids(source_mnt, NULL);
1605719f5d7fSMiklos Szeredi  out:
1606719f5d7fSMiklos Szeredi 	return err;
1607b90fa9aeSRam Pai }
1608b90fa9aeSRam Pai 
160984d17192SAl Viro static struct mountpoint *lock_mount(struct path *path)
1610b12cea91SAl Viro {
1611b12cea91SAl Viro 	struct vfsmount *mnt;
161284d17192SAl Viro 	struct dentry *dentry = path->dentry;
1613b12cea91SAl Viro retry:
161484d17192SAl Viro 	mutex_lock(&dentry->d_inode->i_mutex);
161584d17192SAl Viro 	if (unlikely(cant_mount(dentry))) {
161684d17192SAl Viro 		mutex_unlock(&dentry->d_inode->i_mutex);
161784d17192SAl Viro 		return ERR_PTR(-ENOENT);
1618b12cea91SAl Viro 	}
161997216be0SAl Viro 	namespace_lock();
1620b12cea91SAl Viro 	mnt = lookup_mnt(path);
162184d17192SAl Viro 	if (likely(!mnt)) {
162284d17192SAl Viro 		struct mountpoint *mp = new_mountpoint(dentry);
162384d17192SAl Viro 		if (IS_ERR(mp)) {
162497216be0SAl Viro 			namespace_unlock();
162584d17192SAl Viro 			mutex_unlock(&dentry->d_inode->i_mutex);
162684d17192SAl Viro 			return mp;
162784d17192SAl Viro 		}
162884d17192SAl Viro 		return mp;
162984d17192SAl Viro 	}
163097216be0SAl Viro 	namespace_unlock();
1631b12cea91SAl Viro 	mutex_unlock(&path->dentry->d_inode->i_mutex);
1632b12cea91SAl Viro 	path_put(path);
1633b12cea91SAl Viro 	path->mnt = mnt;
163484d17192SAl Viro 	dentry = path->dentry = dget(mnt->mnt_root);
1635b12cea91SAl Viro 	goto retry;
1636b12cea91SAl Viro }
1637b12cea91SAl Viro 
163884d17192SAl Viro static void unlock_mount(struct mountpoint *where)
1639b12cea91SAl Viro {
164084d17192SAl Viro 	struct dentry *dentry = where->m_dentry;
164184d17192SAl Viro 	put_mountpoint(where);
1642328e6d90SAl Viro 	namespace_unlock();
164384d17192SAl Viro 	mutex_unlock(&dentry->d_inode->i_mutex);
1644b12cea91SAl Viro }
1645b12cea91SAl Viro 
164684d17192SAl Viro static int graft_tree(struct mount *mnt, struct mount *p, struct mountpoint *mp)
16471da177e4SLinus Torvalds {
164895bc5f25SAl Viro 	if (mnt->mnt.mnt_sb->s_flags & MS_NOUSER)
16491da177e4SLinus Torvalds 		return -EINVAL;
16501da177e4SLinus Torvalds 
165184d17192SAl Viro 	if (S_ISDIR(mp->m_dentry->d_inode->i_mode) !=
165295bc5f25SAl Viro 	      S_ISDIR(mnt->mnt.mnt_root->d_inode->i_mode))
16531da177e4SLinus Torvalds 		return -ENOTDIR;
16541da177e4SLinus Torvalds 
165584d17192SAl Viro 	return attach_recursive_mnt(mnt, p, mp, NULL);
16561da177e4SLinus Torvalds }
16571da177e4SLinus Torvalds 
16581da177e4SLinus Torvalds /*
16597a2e8a8fSValerie Aurora  * Sanity check the flags to change_mnt_propagation.
16607a2e8a8fSValerie Aurora  */
16617a2e8a8fSValerie Aurora 
16627a2e8a8fSValerie Aurora static int flags_to_propagation_type(int flags)
16637a2e8a8fSValerie Aurora {
16647c6e984dSRoman Borisov 	int type = flags & ~(MS_REC | MS_SILENT);
16657a2e8a8fSValerie Aurora 
16667a2e8a8fSValerie Aurora 	/* Fail if any non-propagation flags are set */
16677a2e8a8fSValerie Aurora 	if (type & ~(MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
16687a2e8a8fSValerie Aurora 		return 0;
16697a2e8a8fSValerie Aurora 	/* Only one propagation flag should be set */
16707a2e8a8fSValerie Aurora 	if (!is_power_of_2(type))
16717a2e8a8fSValerie Aurora 		return 0;
16727a2e8a8fSValerie Aurora 	return type;
16737a2e8a8fSValerie Aurora }
16747a2e8a8fSValerie Aurora 
16757a2e8a8fSValerie Aurora /*
167607b20889SRam Pai  * recursively change the type of the mountpoint.
167707b20889SRam Pai  */
16780a0d8a46SAl Viro static int do_change_type(struct path *path, int flag)
167907b20889SRam Pai {
1680315fc83eSAl Viro 	struct mount *m;
16814b8b21f4SAl Viro 	struct mount *mnt = real_mount(path->mnt);
168207b20889SRam Pai 	int recurse = flag & MS_REC;
16837a2e8a8fSValerie Aurora 	int type;
1684719f5d7fSMiklos Szeredi 	int err = 0;
168507b20889SRam Pai 
16862d92ab3cSAl Viro 	if (path->dentry != path->mnt->mnt_root)
168707b20889SRam Pai 		return -EINVAL;
168807b20889SRam Pai 
16897a2e8a8fSValerie Aurora 	type = flags_to_propagation_type(flag);
16907a2e8a8fSValerie Aurora 	if (!type)
16917a2e8a8fSValerie Aurora 		return -EINVAL;
16927a2e8a8fSValerie Aurora 
169397216be0SAl Viro 	namespace_lock();
1694719f5d7fSMiklos Szeredi 	if (type == MS_SHARED) {
1695719f5d7fSMiklos Szeredi 		err = invent_group_ids(mnt, recurse);
1696719f5d7fSMiklos Szeredi 		if (err)
1697719f5d7fSMiklos Szeredi 			goto out_unlock;
1698719f5d7fSMiklos Szeredi 	}
1699719f5d7fSMiklos Szeredi 
1700719ea2fbSAl Viro 	lock_mount_hash();
1701909b0a88SAl Viro 	for (m = mnt; m; m = (recurse ? next_mnt(m, mnt) : NULL))
17020f0afb1dSAl Viro 		change_mnt_propagation(m, type);
1703719ea2fbSAl Viro 	unlock_mount_hash();
1704719f5d7fSMiklos Szeredi 
1705719f5d7fSMiklos Szeredi  out_unlock:
170697216be0SAl Viro 	namespace_unlock();
1707719f5d7fSMiklos Szeredi 	return err;
170807b20889SRam Pai }
170907b20889SRam Pai 
17105ff9d8a6SEric W. Biederman static bool has_locked_children(struct mount *mnt, struct dentry *dentry)
17115ff9d8a6SEric W. Biederman {
17125ff9d8a6SEric W. Biederman 	struct mount *child;
17135ff9d8a6SEric W. Biederman 	list_for_each_entry(child, &mnt->mnt_mounts, mnt_child) {
17145ff9d8a6SEric W. Biederman 		if (!is_subdir(child->mnt_mountpoint, dentry))
17155ff9d8a6SEric W. Biederman 			continue;
17165ff9d8a6SEric W. Biederman 
17175ff9d8a6SEric W. Biederman 		if (child->mnt.mnt_flags & MNT_LOCKED)
17185ff9d8a6SEric W. Biederman 			return true;
17195ff9d8a6SEric W. Biederman 	}
17205ff9d8a6SEric W. Biederman 	return false;
17215ff9d8a6SEric W. Biederman }
17225ff9d8a6SEric W. Biederman 
172307b20889SRam Pai /*
17241da177e4SLinus Torvalds  * do loopback mount.
17251da177e4SLinus Torvalds  */
1726808d4e3cSAl Viro static int do_loopback(struct path *path, const char *old_name,
17272dafe1c4SEric Sandeen 				int recurse)
17281da177e4SLinus Torvalds {
17292d92ab3cSAl Viro 	struct path old_path;
173084d17192SAl Viro 	struct mount *mnt = NULL, *old, *parent;
173184d17192SAl Viro 	struct mountpoint *mp;
173257eccb83SAl Viro 	int err;
17331da177e4SLinus Torvalds 	if (!old_name || !*old_name)
17341da177e4SLinus Torvalds 		return -EINVAL;
1735815d405cSTrond Myklebust 	err = kern_path(old_name, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &old_path);
17361da177e4SLinus Torvalds 	if (err)
17371da177e4SLinus Torvalds 		return err;
17381da177e4SLinus Torvalds 
17398823c079SEric W. Biederman 	err = -EINVAL;
17404ce5d2b1SEric W. Biederman 	if (mnt_ns_loop(old_path.dentry))
17418823c079SEric W. Biederman 		goto out;
17428823c079SEric W. Biederman 
174384d17192SAl Viro 	mp = lock_mount(path);
174484d17192SAl Viro 	err = PTR_ERR(mp);
174584d17192SAl Viro 	if (IS_ERR(mp))
17469676f0c6SRam Pai 		goto out;
17479676f0c6SRam Pai 
174887129cc0SAl Viro 	old = real_mount(old_path.mnt);
174984d17192SAl Viro 	parent = real_mount(path->mnt);
175087129cc0SAl Viro 
1751b12cea91SAl Viro 	err = -EINVAL;
1752fc7be130SAl Viro 	if (IS_MNT_UNBINDABLE(old))
1753b12cea91SAl Viro 		goto out2;
1754b12cea91SAl Viro 
175584d17192SAl Viro 	if (!check_mnt(parent) || !check_mnt(old))
1756b12cea91SAl Viro 		goto out2;
1757ccd48bc7SAl Viro 
17585ff9d8a6SEric W. Biederman 	if (!recurse && has_locked_children(old, old_path.dentry))
17595ff9d8a6SEric W. Biederman 		goto out2;
17605ff9d8a6SEric W. Biederman 
17611da177e4SLinus Torvalds 	if (recurse)
17624ce5d2b1SEric W. Biederman 		mnt = copy_tree(old, old_path.dentry, CL_COPY_MNT_NS_FILE);
17631da177e4SLinus Torvalds 	else
176487129cc0SAl Viro 		mnt = clone_mnt(old, old_path.dentry, 0);
17651da177e4SLinus Torvalds 
1766be34d1a3SDavid Howells 	if (IS_ERR(mnt)) {
1767be34d1a3SDavid Howells 		err = PTR_ERR(mnt);
1768e9c5d8a5SAndrey Vagin 		goto out2;
1769be34d1a3SDavid Howells 	}
1770ccd48bc7SAl Viro 
17715ff9d8a6SEric W. Biederman 	mnt->mnt.mnt_flags &= ~MNT_LOCKED;
17725ff9d8a6SEric W. Biederman 
177384d17192SAl Viro 	err = graft_tree(mnt, parent, mp);
17741da177e4SLinus Torvalds 	if (err) {
1775719ea2fbSAl Viro 		lock_mount_hash();
1776328e6d90SAl Viro 		umount_tree(mnt, 0);
1777719ea2fbSAl Viro 		unlock_mount_hash();
17785b83d2c5SRam Pai 	}
1779b12cea91SAl Viro out2:
178084d17192SAl Viro 	unlock_mount(mp);
1781ccd48bc7SAl Viro out:
17822d92ab3cSAl Viro 	path_put(&old_path);
17831da177e4SLinus Torvalds 	return err;
17841da177e4SLinus Torvalds }
17851da177e4SLinus Torvalds 
17862e4b7fcdSDave Hansen static int change_mount_flags(struct vfsmount *mnt, int ms_flags)
17872e4b7fcdSDave Hansen {
17882e4b7fcdSDave Hansen 	int error = 0;
17892e4b7fcdSDave Hansen 	int readonly_request = 0;
17902e4b7fcdSDave Hansen 
17912e4b7fcdSDave Hansen 	if (ms_flags & MS_RDONLY)
17922e4b7fcdSDave Hansen 		readonly_request = 1;
17932e4b7fcdSDave Hansen 	if (readonly_request == __mnt_is_readonly(mnt))
17942e4b7fcdSDave Hansen 		return 0;
17952e4b7fcdSDave Hansen 
179690563b19SEric W. Biederman 	if (mnt->mnt_flags & MNT_LOCK_READONLY)
179790563b19SEric W. Biederman 		return -EPERM;
179890563b19SEric W. Biederman 
17992e4b7fcdSDave Hansen 	if (readonly_request)
180083adc753SAl Viro 		error = mnt_make_readonly(real_mount(mnt));
18012e4b7fcdSDave Hansen 	else
180283adc753SAl Viro 		__mnt_unmake_readonly(real_mount(mnt));
18032e4b7fcdSDave Hansen 	return error;
18042e4b7fcdSDave Hansen }
18052e4b7fcdSDave Hansen 
18061da177e4SLinus Torvalds /*
18071da177e4SLinus Torvalds  * change filesystem flags. dir should be a physical root of filesystem.
18081da177e4SLinus Torvalds  * If you've mounted a non-root directory somewhere and want to do remount
18091da177e4SLinus Torvalds  * on it - tough luck.
18101da177e4SLinus Torvalds  */
18110a0d8a46SAl Viro static int do_remount(struct path *path, int flags, int mnt_flags,
18121da177e4SLinus Torvalds 		      void *data)
18131da177e4SLinus Torvalds {
18141da177e4SLinus Torvalds 	int err;
18152d92ab3cSAl Viro 	struct super_block *sb = path->mnt->mnt_sb;
1816143c8c91SAl Viro 	struct mount *mnt = real_mount(path->mnt);
18171da177e4SLinus Torvalds 
1818143c8c91SAl Viro 	if (!check_mnt(mnt))
18191da177e4SLinus Torvalds 		return -EINVAL;
18201da177e4SLinus Torvalds 
18212d92ab3cSAl Viro 	if (path->dentry != path->mnt->mnt_root)
18221da177e4SLinus Torvalds 		return -EINVAL;
18231da177e4SLinus Torvalds 
1824ff36fe2cSEric Paris 	err = security_sb_remount(sb, data);
1825ff36fe2cSEric Paris 	if (err)
1826ff36fe2cSEric Paris 		return err;
1827ff36fe2cSEric Paris 
18281da177e4SLinus Torvalds 	down_write(&sb->s_umount);
18292e4b7fcdSDave Hansen 	if (flags & MS_BIND)
18302d92ab3cSAl Viro 		err = change_mount_flags(path->mnt, flags);
183157eccb83SAl Viro 	else if (!capable(CAP_SYS_ADMIN))
183257eccb83SAl Viro 		err = -EPERM;
18334aa98cf7SAl Viro 	else
18341da177e4SLinus Torvalds 		err = do_remount_sb(sb, flags, data, 0);
18357b43a79fSAl Viro 	if (!err) {
1836719ea2fbSAl Viro 		lock_mount_hash();
1837143c8c91SAl Viro 		mnt_flags |= mnt->mnt.mnt_flags & MNT_PROPAGATION_MASK;
1838143c8c91SAl Viro 		mnt->mnt.mnt_flags = mnt_flags;
1839143c8c91SAl Viro 		touch_mnt_namespace(mnt->mnt_ns);
1840719ea2fbSAl Viro 		unlock_mount_hash();
18410e55a7ccSDan Williams 	}
18426339dab8SAl Viro 	up_write(&sb->s_umount);
18431da177e4SLinus Torvalds 	return err;
18441da177e4SLinus Torvalds }
18451da177e4SLinus Torvalds 
1846cbbe362cSAl Viro static inline int tree_contains_unbindable(struct mount *mnt)
18479676f0c6SRam Pai {
1848315fc83eSAl Viro 	struct mount *p;
1849909b0a88SAl Viro 	for (p = mnt; p; p = next_mnt(p, mnt)) {
1850fc7be130SAl Viro 		if (IS_MNT_UNBINDABLE(p))
18519676f0c6SRam Pai 			return 1;
18529676f0c6SRam Pai 	}
18539676f0c6SRam Pai 	return 0;
18549676f0c6SRam Pai }
18559676f0c6SRam Pai 
1856808d4e3cSAl Viro static int do_move_mount(struct path *path, const char *old_name)
18571da177e4SLinus Torvalds {
18582d92ab3cSAl Viro 	struct path old_path, parent_path;
1859676da58dSAl Viro 	struct mount *p;
18600fb54e50SAl Viro 	struct mount *old;
186184d17192SAl Viro 	struct mountpoint *mp;
186257eccb83SAl Viro 	int err;
18631da177e4SLinus Torvalds 	if (!old_name || !*old_name)
18641da177e4SLinus Torvalds 		return -EINVAL;
18652d92ab3cSAl Viro 	err = kern_path(old_name, LOOKUP_FOLLOW, &old_path);
18661da177e4SLinus Torvalds 	if (err)
18671da177e4SLinus Torvalds 		return err;
18681da177e4SLinus Torvalds 
186984d17192SAl Viro 	mp = lock_mount(path);
187084d17192SAl Viro 	err = PTR_ERR(mp);
187184d17192SAl Viro 	if (IS_ERR(mp))
1872cc53ce53SDavid Howells 		goto out;
1873cc53ce53SDavid Howells 
1874143c8c91SAl Viro 	old = real_mount(old_path.mnt);
1875fc7be130SAl Viro 	p = real_mount(path->mnt);
1876143c8c91SAl Viro 
18771da177e4SLinus Torvalds 	err = -EINVAL;
1878fc7be130SAl Viro 	if (!check_mnt(p) || !check_mnt(old))
18791da177e4SLinus Torvalds 		goto out1;
18801da177e4SLinus Torvalds 
18815ff9d8a6SEric W. Biederman 	if (old->mnt.mnt_flags & MNT_LOCKED)
18825ff9d8a6SEric W. Biederman 		goto out1;
18835ff9d8a6SEric W. Biederman 
18841da177e4SLinus Torvalds 	err = -EINVAL;
18852d92ab3cSAl Viro 	if (old_path.dentry != old_path.mnt->mnt_root)
188621444403SRam Pai 		goto out1;
18871da177e4SLinus Torvalds 
1888676da58dSAl Viro 	if (!mnt_has_parent(old))
188921444403SRam Pai 		goto out1;
18901da177e4SLinus Torvalds 
18912d92ab3cSAl Viro 	if (S_ISDIR(path->dentry->d_inode->i_mode) !=
18922d92ab3cSAl Viro 	      S_ISDIR(old_path.dentry->d_inode->i_mode))
189321444403SRam Pai 		goto out1;
189421444403SRam Pai 	/*
189521444403SRam Pai 	 * Don't move a mount residing in a shared parent.
189621444403SRam Pai 	 */
1897fc7be130SAl Viro 	if (IS_MNT_SHARED(old->mnt_parent))
189821444403SRam Pai 		goto out1;
18999676f0c6SRam Pai 	/*
19009676f0c6SRam Pai 	 * Don't move a mount tree containing unbindable mounts to a destination
19019676f0c6SRam Pai 	 * mount which is shared.
19029676f0c6SRam Pai 	 */
1903fc7be130SAl Viro 	if (IS_MNT_SHARED(p) && tree_contains_unbindable(old))
19049676f0c6SRam Pai 		goto out1;
19051da177e4SLinus Torvalds 	err = -ELOOP;
1906fc7be130SAl Viro 	for (; mnt_has_parent(p); p = p->mnt_parent)
1907676da58dSAl Viro 		if (p == old)
190821444403SRam Pai 			goto out1;
19091da177e4SLinus Torvalds 
191084d17192SAl Viro 	err = attach_recursive_mnt(old, real_mount(path->mnt), mp, &parent_path);
19114ac91378SJan Blunck 	if (err)
191221444403SRam Pai 		goto out1;
19131da177e4SLinus Torvalds 
19141da177e4SLinus Torvalds 	/* if the mount is moved, it should no longer be expire
19151da177e4SLinus Torvalds 	 * automatically */
19166776db3dSAl Viro 	list_del_init(&old->mnt_expire);
19171da177e4SLinus Torvalds out1:
191884d17192SAl Viro 	unlock_mount(mp);
19191da177e4SLinus Torvalds out:
19201da177e4SLinus Torvalds 	if (!err)
19211a390689SAl Viro 		path_put(&parent_path);
19222d92ab3cSAl Viro 	path_put(&old_path);
19231da177e4SLinus Torvalds 	return err;
19241da177e4SLinus Torvalds }
19251da177e4SLinus Torvalds 
19269d412a43SAl Viro static struct vfsmount *fs_set_subtype(struct vfsmount *mnt, const char *fstype)
19279d412a43SAl Viro {
19289d412a43SAl Viro 	int err;
19299d412a43SAl Viro 	const char *subtype = strchr(fstype, '.');
19309d412a43SAl Viro 	if (subtype) {
19319d412a43SAl Viro 		subtype++;
19329d412a43SAl Viro 		err = -EINVAL;
19339d412a43SAl Viro 		if (!subtype[0])
19349d412a43SAl Viro 			goto err;
19359d412a43SAl Viro 	} else
19369d412a43SAl Viro 		subtype = "";
19379d412a43SAl Viro 
19389d412a43SAl Viro 	mnt->mnt_sb->s_subtype = kstrdup(subtype, GFP_KERNEL);
19399d412a43SAl Viro 	err = -ENOMEM;
19409d412a43SAl Viro 	if (!mnt->mnt_sb->s_subtype)
19419d412a43SAl Viro 		goto err;
19429d412a43SAl Viro 	return mnt;
19439d412a43SAl Viro 
19449d412a43SAl Viro  err:
19459d412a43SAl Viro 	mntput(mnt);
19469d412a43SAl Viro 	return ERR_PTR(err);
19479d412a43SAl Viro }
19489d412a43SAl Viro 
19499d412a43SAl Viro /*
19509d412a43SAl Viro  * add a mount into a namespace's mount tree
19519d412a43SAl Viro  */
195295bc5f25SAl Viro static int do_add_mount(struct mount *newmnt, struct path *path, int mnt_flags)
19539d412a43SAl Viro {
195484d17192SAl Viro 	struct mountpoint *mp;
195584d17192SAl Viro 	struct mount *parent;
19569d412a43SAl Viro 	int err;
19579d412a43SAl Viro 
19589d412a43SAl Viro 	mnt_flags &= ~(MNT_SHARED | MNT_WRITE_HOLD | MNT_INTERNAL);
19599d412a43SAl Viro 
196084d17192SAl Viro 	mp = lock_mount(path);
196184d17192SAl Viro 	if (IS_ERR(mp))
196284d17192SAl Viro 		return PTR_ERR(mp);
19639d412a43SAl Viro 
196484d17192SAl Viro 	parent = real_mount(path->mnt);
19659d412a43SAl Viro 	err = -EINVAL;
196684d17192SAl Viro 	if (unlikely(!check_mnt(parent))) {
1967156cacb1SAl Viro 		/* that's acceptable only for automounts done in private ns */
1968156cacb1SAl Viro 		if (!(mnt_flags & MNT_SHRINKABLE))
19699d412a43SAl Viro 			goto unlock;
1970156cacb1SAl Viro 		/* ... and for those we'd better have mountpoint still alive */
197184d17192SAl Viro 		if (!parent->mnt_ns)
1972156cacb1SAl Viro 			goto unlock;
1973156cacb1SAl Viro 	}
19749d412a43SAl Viro 
19759d412a43SAl Viro 	/* Refuse the same filesystem on the same mount point */
19769d412a43SAl Viro 	err = -EBUSY;
197795bc5f25SAl Viro 	if (path->mnt->mnt_sb == newmnt->mnt.mnt_sb &&
19789d412a43SAl Viro 	    path->mnt->mnt_root == path->dentry)
19799d412a43SAl Viro 		goto unlock;
19809d412a43SAl Viro 
19819d412a43SAl Viro 	err = -EINVAL;
198295bc5f25SAl Viro 	if (S_ISLNK(newmnt->mnt.mnt_root->d_inode->i_mode))
19839d412a43SAl Viro 		goto unlock;
19849d412a43SAl Viro 
198595bc5f25SAl Viro 	newmnt->mnt.mnt_flags = mnt_flags;
198684d17192SAl Viro 	err = graft_tree(newmnt, parent, mp);
19879d412a43SAl Viro 
19889d412a43SAl Viro unlock:
198984d17192SAl Viro 	unlock_mount(mp);
19909d412a43SAl Viro 	return err;
19919d412a43SAl Viro }
1992b1e75df4SAl Viro 
19931da177e4SLinus Torvalds /*
19941da177e4SLinus Torvalds  * create a new mount for userspace and request it to be added into the
19951da177e4SLinus Torvalds  * namespace's tree
19961da177e4SLinus Torvalds  */
19970c55cfc4SEric W. Biederman static int do_new_mount(struct path *path, const char *fstype, int flags,
1998808d4e3cSAl Viro 			int mnt_flags, const char *name, void *data)
19991da177e4SLinus Torvalds {
20000c55cfc4SEric W. Biederman 	struct file_system_type *type;
20019b40bc90SAl Viro 	struct user_namespace *user_ns = current->nsproxy->mnt_ns->user_ns;
20021da177e4SLinus Torvalds 	struct vfsmount *mnt;
200315f9a3f3SAl Viro 	int err;
20041da177e4SLinus Torvalds 
20050c55cfc4SEric W. Biederman 	if (!fstype)
20061da177e4SLinus Torvalds 		return -EINVAL;
20071da177e4SLinus Torvalds 
20080c55cfc4SEric W. Biederman 	type = get_fs_type(fstype);
20090c55cfc4SEric W. Biederman 	if (!type)
20100c55cfc4SEric W. Biederman 		return -ENODEV;
20110c55cfc4SEric W. Biederman 
20120c55cfc4SEric W. Biederman 	if (user_ns != &init_user_ns) {
20130c55cfc4SEric W. Biederman 		if (!(type->fs_flags & FS_USERNS_MOUNT)) {
20140c55cfc4SEric W. Biederman 			put_filesystem(type);
20150c55cfc4SEric W. Biederman 			return -EPERM;
20160c55cfc4SEric W. Biederman 		}
20170c55cfc4SEric W. Biederman 		/* Only in special cases allow devices from mounts
20180c55cfc4SEric W. Biederman 		 * created outside the initial user namespace.
20190c55cfc4SEric W. Biederman 		 */
20200c55cfc4SEric W. Biederman 		if (!(type->fs_flags & FS_USERNS_DEV_MOUNT)) {
20210c55cfc4SEric W. Biederman 			flags |= MS_NODEV;
20220c55cfc4SEric W. Biederman 			mnt_flags |= MNT_NODEV;
20230c55cfc4SEric W. Biederman 		}
20240c55cfc4SEric W. Biederman 	}
20250c55cfc4SEric W. Biederman 
20260c55cfc4SEric W. Biederman 	mnt = vfs_kern_mount(type, flags, name, data);
20270c55cfc4SEric W. Biederman 	if (!IS_ERR(mnt) && (type->fs_flags & FS_HAS_SUBTYPE) &&
20280c55cfc4SEric W. Biederman 	    !mnt->mnt_sb->s_subtype)
20290c55cfc4SEric W. Biederman 		mnt = fs_set_subtype(mnt, fstype);
20300c55cfc4SEric W. Biederman 
20310c55cfc4SEric W. Biederman 	put_filesystem(type);
20321da177e4SLinus Torvalds 	if (IS_ERR(mnt))
20331da177e4SLinus Torvalds 		return PTR_ERR(mnt);
20341da177e4SLinus Torvalds 
203595bc5f25SAl Viro 	err = do_add_mount(real_mount(mnt), path, mnt_flags);
203615f9a3f3SAl Viro 	if (err)
203715f9a3f3SAl Viro 		mntput(mnt);
203815f9a3f3SAl Viro 	return err;
20391da177e4SLinus Torvalds }
20401da177e4SLinus Torvalds 
204119a167afSAl Viro int finish_automount(struct vfsmount *m, struct path *path)
204219a167afSAl Viro {
20436776db3dSAl Viro 	struct mount *mnt = real_mount(m);
204419a167afSAl Viro 	int err;
204519a167afSAl Viro 	/* The new mount record should have at least 2 refs to prevent it being
204619a167afSAl Viro 	 * expired before we get a chance to add it
204719a167afSAl Viro 	 */
20486776db3dSAl Viro 	BUG_ON(mnt_get_count(mnt) < 2);
204919a167afSAl Viro 
205019a167afSAl Viro 	if (m->mnt_sb == path->mnt->mnt_sb &&
205119a167afSAl Viro 	    m->mnt_root == path->dentry) {
2052b1e75df4SAl Viro 		err = -ELOOP;
2053b1e75df4SAl Viro 		goto fail;
205419a167afSAl Viro 	}
205519a167afSAl Viro 
205695bc5f25SAl Viro 	err = do_add_mount(mnt, path, path->mnt->mnt_flags | MNT_SHRINKABLE);
2057b1e75df4SAl Viro 	if (!err)
2058b1e75df4SAl Viro 		return 0;
2059b1e75df4SAl Viro fail:
2060b1e75df4SAl Viro 	/* remove m from any expiration list it may be on */
20616776db3dSAl Viro 	if (!list_empty(&mnt->mnt_expire)) {
206297216be0SAl Viro 		namespace_lock();
20636776db3dSAl Viro 		list_del_init(&mnt->mnt_expire);
206497216be0SAl Viro 		namespace_unlock();
206519a167afSAl Viro 	}
2066b1e75df4SAl Viro 	mntput(m);
2067b1e75df4SAl Viro 	mntput(m);
206819a167afSAl Viro 	return err;
206919a167afSAl Viro }
207019a167afSAl Viro 
2071ea5b778aSDavid Howells /**
2072ea5b778aSDavid Howells  * mnt_set_expiry - Put a mount on an expiration list
2073ea5b778aSDavid Howells  * @mnt: The mount to list.
2074ea5b778aSDavid Howells  * @expiry_list: The list to add the mount to.
2075ea5b778aSDavid Howells  */
2076ea5b778aSDavid Howells void mnt_set_expiry(struct vfsmount *mnt, struct list_head *expiry_list)
2077ea5b778aSDavid Howells {
207897216be0SAl Viro 	namespace_lock();
2079ea5b778aSDavid Howells 
20806776db3dSAl Viro 	list_add_tail(&real_mount(mnt)->mnt_expire, expiry_list);
2081ea5b778aSDavid Howells 
208297216be0SAl Viro 	namespace_unlock();
2083ea5b778aSDavid Howells }
2084ea5b778aSDavid Howells EXPORT_SYMBOL(mnt_set_expiry);
2085ea5b778aSDavid Howells 
2086ea5b778aSDavid Howells /*
20871da177e4SLinus Torvalds  * process a list of expirable mountpoints with the intent of discarding any
20881da177e4SLinus Torvalds  * mountpoints that aren't in use and haven't been touched since last we came
20891da177e4SLinus Torvalds  * here
20901da177e4SLinus Torvalds  */
20911da177e4SLinus Torvalds void mark_mounts_for_expiry(struct list_head *mounts)
20921da177e4SLinus Torvalds {
2093761d5c38SAl Viro 	struct mount *mnt, *next;
20941da177e4SLinus Torvalds 	LIST_HEAD(graveyard);
20951da177e4SLinus Torvalds 
20961da177e4SLinus Torvalds 	if (list_empty(mounts))
20971da177e4SLinus Torvalds 		return;
20981da177e4SLinus Torvalds 
209997216be0SAl Viro 	namespace_lock();
2100719ea2fbSAl Viro 	lock_mount_hash();
21011da177e4SLinus Torvalds 
21021da177e4SLinus Torvalds 	/* extract from the expiration list every vfsmount that matches the
21031da177e4SLinus Torvalds 	 * following criteria:
21041da177e4SLinus Torvalds 	 * - only referenced by its parent vfsmount
21051da177e4SLinus Torvalds 	 * - still marked for expiry (marked on the last call here; marks are
21061da177e4SLinus Torvalds 	 *   cleared by mntput())
21071da177e4SLinus Torvalds 	 */
21086776db3dSAl Viro 	list_for_each_entry_safe(mnt, next, mounts, mnt_expire) {
2109863d684fSAl Viro 		if (!xchg(&mnt->mnt_expiry_mark, 1) ||
21101ab59738SAl Viro 			propagate_mount_busy(mnt, 1))
21111da177e4SLinus Torvalds 			continue;
21126776db3dSAl Viro 		list_move(&mnt->mnt_expire, &graveyard);
21131da177e4SLinus Torvalds 	}
2114bcc5c7d2SAl Viro 	while (!list_empty(&graveyard)) {
21156776db3dSAl Viro 		mnt = list_first_entry(&graveyard, struct mount, mnt_expire);
2116143c8c91SAl Viro 		touch_mnt_namespace(mnt->mnt_ns);
2117328e6d90SAl Viro 		umount_tree(mnt, 1);
2118bcc5c7d2SAl Viro 	}
2119719ea2fbSAl Viro 	unlock_mount_hash();
21203ab6abeeSAl Viro 	namespace_unlock();
21211da177e4SLinus Torvalds }
21221da177e4SLinus Torvalds 
21231da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(mark_mounts_for_expiry);
21241da177e4SLinus Torvalds 
21251da177e4SLinus Torvalds /*
21265528f911STrond Myklebust  * Ripoff of 'select_parent()'
21275528f911STrond Myklebust  *
21285528f911STrond Myklebust  * search the list of submounts for a given mountpoint, and move any
21295528f911STrond Myklebust  * shrinkable submounts to the 'graveyard' list.
21305528f911STrond Myklebust  */
2131692afc31SAl Viro static int select_submounts(struct mount *parent, struct list_head *graveyard)
21325528f911STrond Myklebust {
2133692afc31SAl Viro 	struct mount *this_parent = parent;
21345528f911STrond Myklebust 	struct list_head *next;
21355528f911STrond Myklebust 	int found = 0;
21365528f911STrond Myklebust 
21375528f911STrond Myklebust repeat:
21386b41d536SAl Viro 	next = this_parent->mnt_mounts.next;
21395528f911STrond Myklebust resume:
21406b41d536SAl Viro 	while (next != &this_parent->mnt_mounts) {
21415528f911STrond Myklebust 		struct list_head *tmp = next;
21426b41d536SAl Viro 		struct mount *mnt = list_entry(tmp, struct mount, mnt_child);
21435528f911STrond Myklebust 
21445528f911STrond Myklebust 		next = tmp->next;
2145692afc31SAl Viro 		if (!(mnt->mnt.mnt_flags & MNT_SHRINKABLE))
21465528f911STrond Myklebust 			continue;
21475528f911STrond Myklebust 		/*
21485528f911STrond Myklebust 		 * Descend a level if the d_mounts list is non-empty.
21495528f911STrond Myklebust 		 */
21506b41d536SAl Viro 		if (!list_empty(&mnt->mnt_mounts)) {
21515528f911STrond Myklebust 			this_parent = mnt;
21525528f911STrond Myklebust 			goto repeat;
21535528f911STrond Myklebust 		}
21545528f911STrond Myklebust 
21551ab59738SAl Viro 		if (!propagate_mount_busy(mnt, 1)) {
21566776db3dSAl Viro 			list_move_tail(&mnt->mnt_expire, graveyard);
21575528f911STrond Myklebust 			found++;
21585528f911STrond Myklebust 		}
21595528f911STrond Myklebust 	}
21605528f911STrond Myklebust 	/*
21615528f911STrond Myklebust 	 * All done at this level ... ascend and resume the search
21625528f911STrond Myklebust 	 */
21635528f911STrond Myklebust 	if (this_parent != parent) {
21646b41d536SAl Viro 		next = this_parent->mnt_child.next;
21650714a533SAl Viro 		this_parent = this_parent->mnt_parent;
21665528f911STrond Myklebust 		goto resume;
21675528f911STrond Myklebust 	}
21685528f911STrond Myklebust 	return found;
21695528f911STrond Myklebust }
21705528f911STrond Myklebust 
21715528f911STrond Myklebust /*
21725528f911STrond Myklebust  * process a list of expirable mountpoints with the intent of discarding any
21735528f911STrond Myklebust  * submounts of a specific parent mountpoint
217499b7db7bSNick Piggin  *
217599b7db7bSNick Piggin  * vfsmount_lock must be held for write
21765528f911STrond Myklebust  */
2177b54b9be7SAl Viro static void shrink_submounts(struct mount *mnt)
21785528f911STrond Myklebust {
21795528f911STrond Myklebust 	LIST_HEAD(graveyard);
2180761d5c38SAl Viro 	struct mount *m;
21815528f911STrond Myklebust 
21825528f911STrond Myklebust 	/* extract submounts of 'mountpoint' from the expiration list */
2183c35038beSAl Viro 	while (select_submounts(mnt, &graveyard)) {
2184bcc5c7d2SAl Viro 		while (!list_empty(&graveyard)) {
2185761d5c38SAl Viro 			m = list_first_entry(&graveyard, struct mount,
21866776db3dSAl Viro 						mnt_expire);
2187143c8c91SAl Viro 			touch_mnt_namespace(m->mnt_ns);
2188328e6d90SAl Viro 			umount_tree(m, 1);
2189bcc5c7d2SAl Viro 		}
2190bcc5c7d2SAl Viro 	}
21915528f911STrond Myklebust }
21925528f911STrond Myklebust 
21935528f911STrond Myklebust /*
21941da177e4SLinus Torvalds  * Some copy_from_user() implementations do not return the exact number of
21951da177e4SLinus Torvalds  * bytes remaining to copy on a fault.  But copy_mount_options() requires that.
21961da177e4SLinus Torvalds  * Note that this function differs from copy_from_user() in that it will oops
21971da177e4SLinus Torvalds  * on bad values of `to', rather than returning a short copy.
21981da177e4SLinus Torvalds  */
2199b58fed8bSRam Pai static long exact_copy_from_user(void *to, const void __user * from,
2200b58fed8bSRam Pai 				 unsigned long n)
22011da177e4SLinus Torvalds {
22021da177e4SLinus Torvalds 	char *t = to;
22031da177e4SLinus Torvalds 	const char __user *f = from;
22041da177e4SLinus Torvalds 	char c;
22051da177e4SLinus Torvalds 
22061da177e4SLinus Torvalds 	if (!access_ok(VERIFY_READ, from, n))
22071da177e4SLinus Torvalds 		return n;
22081da177e4SLinus Torvalds 
22091da177e4SLinus Torvalds 	while (n) {
22101da177e4SLinus Torvalds 		if (__get_user(c, f)) {
22111da177e4SLinus Torvalds 			memset(t, 0, n);
22121da177e4SLinus Torvalds 			break;
22131da177e4SLinus Torvalds 		}
22141da177e4SLinus Torvalds 		*t++ = c;
22151da177e4SLinus Torvalds 		f++;
22161da177e4SLinus Torvalds 		n--;
22171da177e4SLinus Torvalds 	}
22181da177e4SLinus Torvalds 	return n;
22191da177e4SLinus Torvalds }
22201da177e4SLinus Torvalds 
22211da177e4SLinus Torvalds int copy_mount_options(const void __user * data, unsigned long *where)
22221da177e4SLinus Torvalds {
22231da177e4SLinus Torvalds 	int i;
22241da177e4SLinus Torvalds 	unsigned long page;
22251da177e4SLinus Torvalds 	unsigned long size;
22261da177e4SLinus Torvalds 
22271da177e4SLinus Torvalds 	*where = 0;
22281da177e4SLinus Torvalds 	if (!data)
22291da177e4SLinus Torvalds 		return 0;
22301da177e4SLinus Torvalds 
22311da177e4SLinus Torvalds 	if (!(page = __get_free_page(GFP_KERNEL)))
22321da177e4SLinus Torvalds 		return -ENOMEM;
22331da177e4SLinus Torvalds 
22341da177e4SLinus Torvalds 	/* We only care that *some* data at the address the user
22351da177e4SLinus Torvalds 	 * gave us is valid.  Just in case, we'll zero
22361da177e4SLinus Torvalds 	 * the remainder of the page.
22371da177e4SLinus Torvalds 	 */
22381da177e4SLinus Torvalds 	/* copy_from_user cannot cross TASK_SIZE ! */
22391da177e4SLinus Torvalds 	size = TASK_SIZE - (unsigned long)data;
22401da177e4SLinus Torvalds 	if (size > PAGE_SIZE)
22411da177e4SLinus Torvalds 		size = PAGE_SIZE;
22421da177e4SLinus Torvalds 
22431da177e4SLinus Torvalds 	i = size - exact_copy_from_user((void *)page, data, size);
22441da177e4SLinus Torvalds 	if (!i) {
22451da177e4SLinus Torvalds 		free_page(page);
22461da177e4SLinus Torvalds 		return -EFAULT;
22471da177e4SLinus Torvalds 	}
22481da177e4SLinus Torvalds 	if (i != PAGE_SIZE)
22491da177e4SLinus Torvalds 		memset((char *)page + i, 0, PAGE_SIZE - i);
22501da177e4SLinus Torvalds 	*where = page;
22511da177e4SLinus Torvalds 	return 0;
22521da177e4SLinus Torvalds }
22531da177e4SLinus Torvalds 
2254eca6f534SVegard Nossum int copy_mount_string(const void __user *data, char **where)
2255eca6f534SVegard Nossum {
2256eca6f534SVegard Nossum 	char *tmp;
2257eca6f534SVegard Nossum 
2258eca6f534SVegard Nossum 	if (!data) {
2259eca6f534SVegard Nossum 		*where = NULL;
2260eca6f534SVegard Nossum 		return 0;
2261eca6f534SVegard Nossum 	}
2262eca6f534SVegard Nossum 
2263eca6f534SVegard Nossum 	tmp = strndup_user(data, PAGE_SIZE);
2264eca6f534SVegard Nossum 	if (IS_ERR(tmp))
2265eca6f534SVegard Nossum 		return PTR_ERR(tmp);
2266eca6f534SVegard Nossum 
2267eca6f534SVegard Nossum 	*where = tmp;
2268eca6f534SVegard Nossum 	return 0;
2269eca6f534SVegard Nossum }
2270eca6f534SVegard Nossum 
22711da177e4SLinus Torvalds /*
22721da177e4SLinus Torvalds  * Flags is a 32-bit value that allows up to 31 non-fs dependent flags to
22731da177e4SLinus Torvalds  * be given to the mount() call (ie: read-only, no-dev, no-suid etc).
22741da177e4SLinus Torvalds  *
22751da177e4SLinus Torvalds  * data is a (void *) that can point to any structure up to
22761da177e4SLinus Torvalds  * PAGE_SIZE-1 bytes, which can contain arbitrary fs-dependent
22771da177e4SLinus Torvalds  * information (or be NULL).
22781da177e4SLinus Torvalds  *
22791da177e4SLinus Torvalds  * Pre-0.97 versions of mount() didn't have a flags word.
22801da177e4SLinus Torvalds  * When the flags word was introduced its top half was required
22811da177e4SLinus Torvalds  * to have the magic value 0xC0ED, and this remained so until 2.4.0-test9.
22821da177e4SLinus Torvalds  * Therefore, if this magic number is present, it carries no information
22831da177e4SLinus Torvalds  * and must be discarded.
22841da177e4SLinus Torvalds  */
2285808d4e3cSAl Viro long do_mount(const char *dev_name, const char *dir_name,
2286808d4e3cSAl Viro 		const char *type_page, unsigned long flags, void *data_page)
22871da177e4SLinus Torvalds {
22882d92ab3cSAl Viro 	struct path path;
22891da177e4SLinus Torvalds 	int retval = 0;
22901da177e4SLinus Torvalds 	int mnt_flags = 0;
22911da177e4SLinus Torvalds 
22921da177e4SLinus Torvalds 	/* Discard magic */
22931da177e4SLinus Torvalds 	if ((flags & MS_MGC_MSK) == MS_MGC_VAL)
22941da177e4SLinus Torvalds 		flags &= ~MS_MGC_MSK;
22951da177e4SLinus Torvalds 
22961da177e4SLinus Torvalds 	/* Basic sanity checks */
22971da177e4SLinus Torvalds 
22981da177e4SLinus Torvalds 	if (!dir_name || !*dir_name || !memchr(dir_name, 0, PAGE_SIZE))
22991da177e4SLinus Torvalds 		return -EINVAL;
23001da177e4SLinus Torvalds 
23011da177e4SLinus Torvalds 	if (data_page)
23021da177e4SLinus Torvalds 		((char *)data_page)[PAGE_SIZE - 1] = 0;
23031da177e4SLinus Torvalds 
2304a27ab9f2STetsuo Handa 	/* ... and get the mountpoint */
2305a27ab9f2STetsuo Handa 	retval = kern_path(dir_name, LOOKUP_FOLLOW, &path);
2306a27ab9f2STetsuo Handa 	if (retval)
2307a27ab9f2STetsuo Handa 		return retval;
2308a27ab9f2STetsuo Handa 
2309a27ab9f2STetsuo Handa 	retval = security_sb_mount(dev_name, &path,
2310a27ab9f2STetsuo Handa 				   type_page, flags, data_page);
23110d5cadb8SAl Viro 	if (!retval && !may_mount())
23120d5cadb8SAl Viro 		retval = -EPERM;
2313a27ab9f2STetsuo Handa 	if (retval)
2314a27ab9f2STetsuo Handa 		goto dput_out;
2315a27ab9f2STetsuo Handa 
2316613cbe3dSAndi Kleen 	/* Default to relatime unless overriden */
2317613cbe3dSAndi Kleen 	if (!(flags & MS_NOATIME))
23180a1c01c9SMatthew Garrett 		mnt_flags |= MNT_RELATIME;
23190a1c01c9SMatthew Garrett 
23201da177e4SLinus Torvalds 	/* Separate the per-mountpoint flags */
23211da177e4SLinus Torvalds 	if (flags & MS_NOSUID)
23221da177e4SLinus Torvalds 		mnt_flags |= MNT_NOSUID;
23231da177e4SLinus Torvalds 	if (flags & MS_NODEV)
23241da177e4SLinus Torvalds 		mnt_flags |= MNT_NODEV;
23251da177e4SLinus Torvalds 	if (flags & MS_NOEXEC)
23261da177e4SLinus Torvalds 		mnt_flags |= MNT_NOEXEC;
2327fc33a7bbSChristoph Hellwig 	if (flags & MS_NOATIME)
2328fc33a7bbSChristoph Hellwig 		mnt_flags |= MNT_NOATIME;
2329fc33a7bbSChristoph Hellwig 	if (flags & MS_NODIRATIME)
2330fc33a7bbSChristoph Hellwig 		mnt_flags |= MNT_NODIRATIME;
2331d0adde57SMatthew Garrett 	if (flags & MS_STRICTATIME)
2332d0adde57SMatthew Garrett 		mnt_flags &= ~(MNT_RELATIME | MNT_NOATIME);
23332e4b7fcdSDave Hansen 	if (flags & MS_RDONLY)
23342e4b7fcdSDave Hansen 		mnt_flags |= MNT_READONLY;
2335fc33a7bbSChristoph Hellwig 
23367a4dec53SAl Viro 	flags &= ~(MS_NOSUID | MS_NOEXEC | MS_NODEV | MS_ACTIVE | MS_BORN |
2337d0adde57SMatthew Garrett 		   MS_NOATIME | MS_NODIRATIME | MS_RELATIME| MS_KERNMOUNT |
2338d0adde57SMatthew Garrett 		   MS_STRICTATIME);
23391da177e4SLinus Torvalds 
23401da177e4SLinus Torvalds 	if (flags & MS_REMOUNT)
23412d92ab3cSAl Viro 		retval = do_remount(&path, flags & ~MS_REMOUNT, mnt_flags,
23421da177e4SLinus Torvalds 				    data_page);
23431da177e4SLinus Torvalds 	else if (flags & MS_BIND)
23442d92ab3cSAl Viro 		retval = do_loopback(&path, dev_name, flags & MS_REC);
23459676f0c6SRam Pai 	else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
23462d92ab3cSAl Viro 		retval = do_change_type(&path, flags);
23471da177e4SLinus Torvalds 	else if (flags & MS_MOVE)
23482d92ab3cSAl Viro 		retval = do_move_mount(&path, dev_name);
23491da177e4SLinus Torvalds 	else
23502d92ab3cSAl Viro 		retval = do_new_mount(&path, type_page, flags, mnt_flags,
23511da177e4SLinus Torvalds 				      dev_name, data_page);
23521da177e4SLinus Torvalds dput_out:
23532d92ab3cSAl Viro 	path_put(&path);
23541da177e4SLinus Torvalds 	return retval;
23551da177e4SLinus Torvalds }
23561da177e4SLinus Torvalds 
2357771b1371SEric W. Biederman static void free_mnt_ns(struct mnt_namespace *ns)
2358771b1371SEric W. Biederman {
235998f842e6SEric W. Biederman 	proc_free_inum(ns->proc_inum);
2360771b1371SEric W. Biederman 	put_user_ns(ns->user_ns);
2361771b1371SEric W. Biederman 	kfree(ns);
2362771b1371SEric W. Biederman }
2363771b1371SEric W. Biederman 
23648823c079SEric W. Biederman /*
23658823c079SEric W. Biederman  * Assign a sequence number so we can detect when we attempt to bind
23668823c079SEric W. Biederman  * mount a reference to an older mount namespace into the current
23678823c079SEric W. Biederman  * mount namespace, preventing reference counting loops.  A 64bit
23688823c079SEric W. Biederman  * number incrementing at 10Ghz will take 12,427 years to wrap which
23698823c079SEric W. Biederman  * is effectively never, so we can ignore the possibility.
23708823c079SEric W. Biederman  */
23718823c079SEric W. Biederman static atomic64_t mnt_ns_seq = ATOMIC64_INIT(1);
23728823c079SEric W. Biederman 
2373771b1371SEric W. Biederman static struct mnt_namespace *alloc_mnt_ns(struct user_namespace *user_ns)
2374cf8d2c11STrond Myklebust {
2375cf8d2c11STrond Myklebust 	struct mnt_namespace *new_ns;
237698f842e6SEric W. Biederman 	int ret;
2377cf8d2c11STrond Myklebust 
2378cf8d2c11STrond Myklebust 	new_ns = kmalloc(sizeof(struct mnt_namespace), GFP_KERNEL);
2379cf8d2c11STrond Myklebust 	if (!new_ns)
2380cf8d2c11STrond Myklebust 		return ERR_PTR(-ENOMEM);
238198f842e6SEric W. Biederman 	ret = proc_alloc_inum(&new_ns->proc_inum);
238298f842e6SEric W. Biederman 	if (ret) {
238398f842e6SEric W. Biederman 		kfree(new_ns);
238498f842e6SEric W. Biederman 		return ERR_PTR(ret);
238598f842e6SEric W. Biederman 	}
23868823c079SEric W. Biederman 	new_ns->seq = atomic64_add_return(1, &mnt_ns_seq);
2387cf8d2c11STrond Myklebust 	atomic_set(&new_ns->count, 1);
2388cf8d2c11STrond Myklebust 	new_ns->root = NULL;
2389cf8d2c11STrond Myklebust 	INIT_LIST_HEAD(&new_ns->list);
2390cf8d2c11STrond Myklebust 	init_waitqueue_head(&new_ns->poll);
2391cf8d2c11STrond Myklebust 	new_ns->event = 0;
2392771b1371SEric W. Biederman 	new_ns->user_ns = get_user_ns(user_ns);
2393cf8d2c11STrond Myklebust 	return new_ns;
2394cf8d2c11STrond Myklebust }
2395cf8d2c11STrond Myklebust 
23969559f689SAl Viro struct mnt_namespace *copy_mnt_ns(unsigned long flags, struct mnt_namespace *ns,
23979559f689SAl Viro 		struct user_namespace *user_ns, struct fs_struct *new_fs)
23981da177e4SLinus Torvalds {
23996b3286edSKirill Korotaev 	struct mnt_namespace *new_ns;
24007f2da1e7SAl Viro 	struct vfsmount *rootmnt = NULL, *pwdmnt = NULL;
2401315fc83eSAl Viro 	struct mount *p, *q;
24029559f689SAl Viro 	struct mount *old;
2403cb338d06SAl Viro 	struct mount *new;
24047a472ef4SEric W. Biederman 	int copy_flags;
24051da177e4SLinus Torvalds 
24069559f689SAl Viro 	BUG_ON(!ns);
24079559f689SAl Viro 
24089559f689SAl Viro 	if (likely(!(flags & CLONE_NEWNS))) {
24099559f689SAl Viro 		get_mnt_ns(ns);
24109559f689SAl Viro 		return ns;
24119559f689SAl Viro 	}
24129559f689SAl Viro 
24139559f689SAl Viro 	old = ns->root;
24149559f689SAl Viro 
2415771b1371SEric W. Biederman 	new_ns = alloc_mnt_ns(user_ns);
2416cf8d2c11STrond Myklebust 	if (IS_ERR(new_ns))
2417cf8d2c11STrond Myklebust 		return new_ns;
24181da177e4SLinus Torvalds 
241997216be0SAl Viro 	namespace_lock();
24201da177e4SLinus Torvalds 	/* First pass: copy the tree topology */
24214ce5d2b1SEric W. Biederman 	copy_flags = CL_COPY_UNBINDABLE | CL_EXPIRE;
24229559f689SAl Viro 	if (user_ns != ns->user_ns)
2423132c94e3SEric W. Biederman 		copy_flags |= CL_SHARED_TO_SLAVE | CL_UNPRIVILEGED;
24247a472ef4SEric W. Biederman 	new = copy_tree(old, old->mnt.mnt_root, copy_flags);
2425be34d1a3SDavid Howells 	if (IS_ERR(new)) {
2426328e6d90SAl Viro 		namespace_unlock();
2427771b1371SEric W. Biederman 		free_mnt_ns(new_ns);
2428be34d1a3SDavid Howells 		return ERR_CAST(new);
24291da177e4SLinus Torvalds 	}
2430be08d6d2SAl Viro 	new_ns->root = new;
24311a4eeaf2SAl Viro 	list_add_tail(&new_ns->list, &new->mnt_list);
24321da177e4SLinus Torvalds 
24331da177e4SLinus Torvalds 	/*
24341da177e4SLinus Torvalds 	 * Second pass: switch the tsk->fs->* elements and mark new vfsmounts
24351da177e4SLinus Torvalds 	 * as belonging to new namespace.  We have already acquired a private
24361da177e4SLinus Torvalds 	 * fs_struct, so tsk->fs->lock is not needed.
24371da177e4SLinus Torvalds 	 */
2438909b0a88SAl Viro 	p = old;
2439cb338d06SAl Viro 	q = new;
24401da177e4SLinus Torvalds 	while (p) {
2441143c8c91SAl Viro 		q->mnt_ns = new_ns;
24429559f689SAl Viro 		if (new_fs) {
24439559f689SAl Viro 			if (&p->mnt == new_fs->root.mnt) {
24449559f689SAl Viro 				new_fs->root.mnt = mntget(&q->mnt);
2445315fc83eSAl Viro 				rootmnt = &p->mnt;
24461da177e4SLinus Torvalds 			}
24479559f689SAl Viro 			if (&p->mnt == new_fs->pwd.mnt) {
24489559f689SAl Viro 				new_fs->pwd.mnt = mntget(&q->mnt);
2449315fc83eSAl Viro 				pwdmnt = &p->mnt;
24501da177e4SLinus Torvalds 			}
24511da177e4SLinus Torvalds 		}
2452909b0a88SAl Viro 		p = next_mnt(p, old);
2453909b0a88SAl Viro 		q = next_mnt(q, new);
24544ce5d2b1SEric W. Biederman 		if (!q)
24554ce5d2b1SEric W. Biederman 			break;
24564ce5d2b1SEric W. Biederman 		while (p->mnt.mnt_root != q->mnt.mnt_root)
24574ce5d2b1SEric W. Biederman 			p = next_mnt(p, old);
24581da177e4SLinus Torvalds 	}
2459328e6d90SAl Viro 	namespace_unlock();
24601da177e4SLinus Torvalds 
24611da177e4SLinus Torvalds 	if (rootmnt)
2462f03c6599SAl Viro 		mntput(rootmnt);
24631da177e4SLinus Torvalds 	if (pwdmnt)
2464f03c6599SAl Viro 		mntput(pwdmnt);
24651da177e4SLinus Torvalds 
2466741a2951SJANAK DESAI 	return new_ns;
2467741a2951SJANAK DESAI }
2468741a2951SJANAK DESAI 
2469cf8d2c11STrond Myklebust /**
2470cf8d2c11STrond Myklebust  * create_mnt_ns - creates a private namespace and adds a root filesystem
2471cf8d2c11STrond Myklebust  * @mnt: pointer to the new root filesystem mountpoint
2472cf8d2c11STrond Myklebust  */
24731a4eeaf2SAl Viro static struct mnt_namespace *create_mnt_ns(struct vfsmount *m)
2474cf8d2c11STrond Myklebust {
2475771b1371SEric W. Biederman 	struct mnt_namespace *new_ns = alloc_mnt_ns(&init_user_ns);
2476cf8d2c11STrond Myklebust 	if (!IS_ERR(new_ns)) {
24771a4eeaf2SAl Viro 		struct mount *mnt = real_mount(m);
24781a4eeaf2SAl Viro 		mnt->mnt_ns = new_ns;
2479be08d6d2SAl Viro 		new_ns->root = mnt;
2480b1983cd8SAl Viro 		list_add(&mnt->mnt_list, &new_ns->list);
2481c1334495SAl Viro 	} else {
24821a4eeaf2SAl Viro 		mntput(m);
2483cf8d2c11STrond Myklebust 	}
2484cf8d2c11STrond Myklebust 	return new_ns;
2485cf8d2c11STrond Myklebust }
2486cf8d2c11STrond Myklebust 
2487ea441d11SAl Viro struct dentry *mount_subtree(struct vfsmount *mnt, const char *name)
2488ea441d11SAl Viro {
2489ea441d11SAl Viro 	struct mnt_namespace *ns;
2490d31da0f0SAl Viro 	struct super_block *s;
2491ea441d11SAl Viro 	struct path path;
2492ea441d11SAl Viro 	int err;
2493ea441d11SAl Viro 
2494ea441d11SAl Viro 	ns = create_mnt_ns(mnt);
2495ea441d11SAl Viro 	if (IS_ERR(ns))
2496ea441d11SAl Viro 		return ERR_CAST(ns);
2497ea441d11SAl Viro 
2498ea441d11SAl Viro 	err = vfs_path_lookup(mnt->mnt_root, mnt,
2499ea441d11SAl Viro 			name, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &path);
2500ea441d11SAl Viro 
2501ea441d11SAl Viro 	put_mnt_ns(ns);
2502ea441d11SAl Viro 
2503ea441d11SAl Viro 	if (err)
2504ea441d11SAl Viro 		return ERR_PTR(err);
2505ea441d11SAl Viro 
2506ea441d11SAl Viro 	/* trade a vfsmount reference for active sb one */
2507d31da0f0SAl Viro 	s = path.mnt->mnt_sb;
2508d31da0f0SAl Viro 	atomic_inc(&s->s_active);
2509ea441d11SAl Viro 	mntput(path.mnt);
2510ea441d11SAl Viro 	/* lock the sucker */
2511d31da0f0SAl Viro 	down_write(&s->s_umount);
2512ea441d11SAl Viro 	/* ... and return the root of (sub)tree on it */
2513ea441d11SAl Viro 	return path.dentry;
2514ea441d11SAl Viro }
2515ea441d11SAl Viro EXPORT_SYMBOL(mount_subtree);
2516ea441d11SAl Viro 
2517bdc480e3SHeiko Carstens SYSCALL_DEFINE5(mount, char __user *, dev_name, char __user *, dir_name,
2518bdc480e3SHeiko Carstens 		char __user *, type, unsigned long, flags, void __user *, data)
25191da177e4SLinus Torvalds {
2520eca6f534SVegard Nossum 	int ret;
2521eca6f534SVegard Nossum 	char *kernel_type;
252291a27b2aSJeff Layton 	struct filename *kernel_dir;
2523eca6f534SVegard Nossum 	char *kernel_dev;
25241da177e4SLinus Torvalds 	unsigned long data_page;
25251da177e4SLinus Torvalds 
2526eca6f534SVegard Nossum 	ret = copy_mount_string(type, &kernel_type);
2527eca6f534SVegard Nossum 	if (ret < 0)
2528eca6f534SVegard Nossum 		goto out_type;
25291da177e4SLinus Torvalds 
2530eca6f534SVegard Nossum 	kernel_dir = getname(dir_name);
2531eca6f534SVegard Nossum 	if (IS_ERR(kernel_dir)) {
2532eca6f534SVegard Nossum 		ret = PTR_ERR(kernel_dir);
2533eca6f534SVegard Nossum 		goto out_dir;
2534eca6f534SVegard Nossum 	}
25351da177e4SLinus Torvalds 
2536eca6f534SVegard Nossum 	ret = copy_mount_string(dev_name, &kernel_dev);
2537eca6f534SVegard Nossum 	if (ret < 0)
2538eca6f534SVegard Nossum 		goto out_dev;
25391da177e4SLinus Torvalds 
2540eca6f534SVegard Nossum 	ret = copy_mount_options(data, &data_page);
2541eca6f534SVegard Nossum 	if (ret < 0)
2542eca6f534SVegard Nossum 		goto out_data;
25431da177e4SLinus Torvalds 
254491a27b2aSJeff Layton 	ret = do_mount(kernel_dev, kernel_dir->name, kernel_type, flags,
2545eca6f534SVegard Nossum 		(void *) data_page);
2546eca6f534SVegard Nossum 
25471da177e4SLinus Torvalds 	free_page(data_page);
2548eca6f534SVegard Nossum out_data:
2549eca6f534SVegard Nossum 	kfree(kernel_dev);
2550eca6f534SVegard Nossum out_dev:
2551eca6f534SVegard Nossum 	putname(kernel_dir);
2552eca6f534SVegard Nossum out_dir:
2553eca6f534SVegard Nossum 	kfree(kernel_type);
2554eca6f534SVegard Nossum out_type:
2555eca6f534SVegard Nossum 	return ret;
25561da177e4SLinus Torvalds }
25571da177e4SLinus Torvalds 
25581da177e4SLinus Torvalds /*
2559afac7cbaSAl Viro  * Return true if path is reachable from root
2560afac7cbaSAl Viro  *
2561afac7cbaSAl Viro  * namespace_sem or vfsmount_lock is held
2562afac7cbaSAl Viro  */
2563643822b4SAl Viro bool is_path_reachable(struct mount *mnt, struct dentry *dentry,
2564afac7cbaSAl Viro 			 const struct path *root)
2565afac7cbaSAl Viro {
2566643822b4SAl Viro 	while (&mnt->mnt != root->mnt && mnt_has_parent(mnt)) {
2567a73324daSAl Viro 		dentry = mnt->mnt_mountpoint;
25680714a533SAl Viro 		mnt = mnt->mnt_parent;
2569afac7cbaSAl Viro 	}
2570643822b4SAl Viro 	return &mnt->mnt == root->mnt && is_subdir(dentry, root->dentry);
2571afac7cbaSAl Viro }
2572afac7cbaSAl Viro 
2573afac7cbaSAl Viro int path_is_under(struct path *path1, struct path *path2)
2574afac7cbaSAl Viro {
2575afac7cbaSAl Viro 	int res;
2576962830dfSAndi Kleen 	br_read_lock(&vfsmount_lock);
2577643822b4SAl Viro 	res = is_path_reachable(real_mount(path1->mnt), path1->dentry, path2);
2578962830dfSAndi Kleen 	br_read_unlock(&vfsmount_lock);
2579afac7cbaSAl Viro 	return res;
2580afac7cbaSAl Viro }
2581afac7cbaSAl Viro EXPORT_SYMBOL(path_is_under);
2582afac7cbaSAl Viro 
2583afac7cbaSAl Viro /*
25841da177e4SLinus Torvalds  * pivot_root Semantics:
25851da177e4SLinus Torvalds  * Moves the root file system of the current process to the directory put_old,
25861da177e4SLinus Torvalds  * makes new_root as the new root file system of the current process, and sets
25871da177e4SLinus Torvalds  * root/cwd of all processes which had them on the current root to new_root.
25881da177e4SLinus Torvalds  *
25891da177e4SLinus Torvalds  * Restrictions:
25901da177e4SLinus Torvalds  * The new_root and put_old must be directories, and  must not be on the
25911da177e4SLinus Torvalds  * same file  system as the current process root. The put_old  must  be
25921da177e4SLinus Torvalds  * underneath new_root,  i.e. adding a non-zero number of /.. to the string
25931da177e4SLinus Torvalds  * pointed to by put_old must yield the same directory as new_root. No other
25941da177e4SLinus Torvalds  * file system may be mounted on put_old. After all, new_root is a mountpoint.
25951da177e4SLinus Torvalds  *
25964a0d11faSNeil Brown  * Also, the current root cannot be on the 'rootfs' (initial ramfs) filesystem.
25974a0d11faSNeil Brown  * See Documentation/filesystems/ramfs-rootfs-initramfs.txt for alternatives
25984a0d11faSNeil Brown  * in this situation.
25994a0d11faSNeil Brown  *
26001da177e4SLinus Torvalds  * Notes:
26011da177e4SLinus Torvalds  *  - we don't move root/cwd if they are not at the root (reason: if something
26021da177e4SLinus Torvalds  *    cared enough to change them, it's probably wrong to force them elsewhere)
26031da177e4SLinus Torvalds  *  - it's okay to pick a root that isn't the root of a file system, e.g.
26041da177e4SLinus Torvalds  *    /nfs/my_root where /nfs is the mount point. It must be a mountpoint,
26051da177e4SLinus Torvalds  *    though, so you may need to say mount --bind /nfs/my_root /nfs/my_root
26061da177e4SLinus Torvalds  *    first.
26071da177e4SLinus Torvalds  */
26083480b257SHeiko Carstens SYSCALL_DEFINE2(pivot_root, const char __user *, new_root,
26093480b257SHeiko Carstens 		const char __user *, put_old)
26101da177e4SLinus Torvalds {
26112d8f3038SAl Viro 	struct path new, old, parent_path, root_parent, root;
261284d17192SAl Viro 	struct mount *new_mnt, *root_mnt, *old_mnt;
261384d17192SAl Viro 	struct mountpoint *old_mp, *root_mp;
26141da177e4SLinus Torvalds 	int error;
26151da177e4SLinus Torvalds 
26169b40bc90SAl Viro 	if (!may_mount())
26171da177e4SLinus Torvalds 		return -EPERM;
26181da177e4SLinus Torvalds 
26192d8f3038SAl Viro 	error = user_path_dir(new_root, &new);
26201da177e4SLinus Torvalds 	if (error)
26211da177e4SLinus Torvalds 		goto out0;
26221da177e4SLinus Torvalds 
26232d8f3038SAl Viro 	error = user_path_dir(put_old, &old);
26241da177e4SLinus Torvalds 	if (error)
26251da177e4SLinus Torvalds 		goto out1;
26261da177e4SLinus Torvalds 
26272d8f3038SAl Viro 	error = security_sb_pivotroot(&old, &new);
2628b12cea91SAl Viro 	if (error)
2629b12cea91SAl Viro 		goto out2;
26301da177e4SLinus Torvalds 
2631f7ad3c6bSMiklos Szeredi 	get_fs_root(current->fs, &root);
263284d17192SAl Viro 	old_mp = lock_mount(&old);
263384d17192SAl Viro 	error = PTR_ERR(old_mp);
263484d17192SAl Viro 	if (IS_ERR(old_mp))
2635b12cea91SAl Viro 		goto out3;
2636b12cea91SAl Viro 
26371da177e4SLinus Torvalds 	error = -EINVAL;
2638419148daSAl Viro 	new_mnt = real_mount(new.mnt);
2639419148daSAl Viro 	root_mnt = real_mount(root.mnt);
264084d17192SAl Viro 	old_mnt = real_mount(old.mnt);
264184d17192SAl Viro 	if (IS_MNT_SHARED(old_mnt) ||
2642fc7be130SAl Viro 		IS_MNT_SHARED(new_mnt->mnt_parent) ||
2643fc7be130SAl Viro 		IS_MNT_SHARED(root_mnt->mnt_parent))
2644b12cea91SAl Viro 		goto out4;
2645143c8c91SAl Viro 	if (!check_mnt(root_mnt) || !check_mnt(new_mnt))
2646b12cea91SAl Viro 		goto out4;
26475ff9d8a6SEric W. Biederman 	if (new_mnt->mnt.mnt_flags & MNT_LOCKED)
26485ff9d8a6SEric W. Biederman 		goto out4;
26491da177e4SLinus Torvalds 	error = -ENOENT;
2650f3da392eSAlexey Dobriyan 	if (d_unlinked(new.dentry))
2651b12cea91SAl Viro 		goto out4;
26521da177e4SLinus Torvalds 	error = -EBUSY;
265384d17192SAl Viro 	if (new_mnt == root_mnt || old_mnt == root_mnt)
2654b12cea91SAl Viro 		goto out4; /* loop, on the same file system  */
26551da177e4SLinus Torvalds 	error = -EINVAL;
26568c3ee42eSAl Viro 	if (root.mnt->mnt_root != root.dentry)
2657b12cea91SAl Viro 		goto out4; /* not a mountpoint */
2658676da58dSAl Viro 	if (!mnt_has_parent(root_mnt))
2659b12cea91SAl Viro 		goto out4; /* not attached */
266084d17192SAl Viro 	root_mp = root_mnt->mnt_mp;
26612d8f3038SAl Viro 	if (new.mnt->mnt_root != new.dentry)
2662b12cea91SAl Viro 		goto out4; /* not a mountpoint */
2663676da58dSAl Viro 	if (!mnt_has_parent(new_mnt))
2664b12cea91SAl Viro 		goto out4; /* not attached */
26654ac91378SJan Blunck 	/* make sure we can reach put_old from new_root */
266684d17192SAl Viro 	if (!is_path_reachable(old_mnt, old.dentry, &new))
2667b12cea91SAl Viro 		goto out4;
266884d17192SAl Viro 	root_mp->m_count++; /* pin it so it won't go away */
2669719ea2fbSAl Viro 	lock_mount_hash();
2670419148daSAl Viro 	detach_mnt(new_mnt, &parent_path);
2671419148daSAl Viro 	detach_mnt(root_mnt, &root_parent);
26725ff9d8a6SEric W. Biederman 	if (root_mnt->mnt.mnt_flags & MNT_LOCKED) {
26735ff9d8a6SEric W. Biederman 		new_mnt->mnt.mnt_flags |= MNT_LOCKED;
26745ff9d8a6SEric W. Biederman 		root_mnt->mnt.mnt_flags &= ~MNT_LOCKED;
26755ff9d8a6SEric W. Biederman 	}
26764ac91378SJan Blunck 	/* mount old root on put_old */
267784d17192SAl Viro 	attach_mnt(root_mnt, old_mnt, old_mp);
26784ac91378SJan Blunck 	/* mount new_root on / */
267984d17192SAl Viro 	attach_mnt(new_mnt, real_mount(root_parent.mnt), root_mp);
26806b3286edSKirill Korotaev 	touch_mnt_namespace(current->nsproxy->mnt_ns);
2681719ea2fbSAl Viro 	unlock_mount_hash();
26822d8f3038SAl Viro 	chroot_fs_refs(&root, &new);
268384d17192SAl Viro 	put_mountpoint(root_mp);
26841da177e4SLinus Torvalds 	error = 0;
2685b12cea91SAl Viro out4:
268684d17192SAl Viro 	unlock_mount(old_mp);
2687b12cea91SAl Viro 	if (!error) {
26881a390689SAl Viro 		path_put(&root_parent);
26891a390689SAl Viro 		path_put(&parent_path);
2690b12cea91SAl Viro 	}
2691b12cea91SAl Viro out3:
26928c3ee42eSAl Viro 	path_put(&root);
2693b12cea91SAl Viro out2:
26942d8f3038SAl Viro 	path_put(&old);
26951da177e4SLinus Torvalds out1:
26962d8f3038SAl Viro 	path_put(&new);
26971da177e4SLinus Torvalds out0:
26981da177e4SLinus Torvalds 	return error;
26991da177e4SLinus Torvalds }
27001da177e4SLinus Torvalds 
27011da177e4SLinus Torvalds static void __init init_mount_tree(void)
27021da177e4SLinus Torvalds {
27031da177e4SLinus Torvalds 	struct vfsmount *mnt;
27046b3286edSKirill Korotaev 	struct mnt_namespace *ns;
2705ac748a09SJan Blunck 	struct path root;
27060c55cfc4SEric W. Biederman 	struct file_system_type *type;
27071da177e4SLinus Torvalds 
27080c55cfc4SEric W. Biederman 	type = get_fs_type("rootfs");
27090c55cfc4SEric W. Biederman 	if (!type)
27100c55cfc4SEric W. Biederman 		panic("Can't find rootfs type");
27110c55cfc4SEric W. Biederman 	mnt = vfs_kern_mount(type, 0, "rootfs", NULL);
27120c55cfc4SEric W. Biederman 	put_filesystem(type);
27131da177e4SLinus Torvalds 	if (IS_ERR(mnt))
27141da177e4SLinus Torvalds 		panic("Can't create rootfs");
2715b3e19d92SNick Piggin 
27163b22edc5STrond Myklebust 	ns = create_mnt_ns(mnt);
27173b22edc5STrond Myklebust 	if (IS_ERR(ns))
27181da177e4SLinus Torvalds 		panic("Can't allocate initial namespace");
27191da177e4SLinus Torvalds 
27206b3286edSKirill Korotaev 	init_task.nsproxy->mnt_ns = ns;
27216b3286edSKirill Korotaev 	get_mnt_ns(ns);
27221da177e4SLinus Torvalds 
2723be08d6d2SAl Viro 	root.mnt = mnt;
2724be08d6d2SAl Viro 	root.dentry = mnt->mnt_root;
2725ac748a09SJan Blunck 
2726ac748a09SJan Blunck 	set_fs_pwd(current->fs, &root);
2727ac748a09SJan Blunck 	set_fs_root(current->fs, &root);
27281da177e4SLinus Torvalds }
27291da177e4SLinus Torvalds 
273074bf17cfSDenis Cheng void __init mnt_init(void)
27311da177e4SLinus Torvalds {
273213f14b4dSEric Dumazet 	unsigned u;
273315a67dd8SRandy Dunlap 	int err;
27341da177e4SLinus Torvalds 
27357d6fec45SAl Viro 	mnt_cache = kmem_cache_create("mnt_cache", sizeof(struct mount),
273620c2df83SPaul Mundt 			0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
27371da177e4SLinus Torvalds 
2738b58fed8bSRam Pai 	mount_hashtable = (struct list_head *)__get_free_page(GFP_ATOMIC);
273984d17192SAl Viro 	mountpoint_hashtable = (struct list_head *)__get_free_page(GFP_ATOMIC);
27401da177e4SLinus Torvalds 
274184d17192SAl Viro 	if (!mount_hashtable || !mountpoint_hashtable)
27421da177e4SLinus Torvalds 		panic("Failed to allocate mount hash table\n");
27431da177e4SLinus Torvalds 
274480cdc6daSMandeep Singh Baines 	printk(KERN_INFO "Mount-cache hash table entries: %lu\n", HASH_SIZE);
27451da177e4SLinus Torvalds 
274613f14b4dSEric Dumazet 	for (u = 0; u < HASH_SIZE; u++)
274713f14b4dSEric Dumazet 		INIT_LIST_HEAD(&mount_hashtable[u]);
274884d17192SAl Viro 	for (u = 0; u < HASH_SIZE; u++)
274984d17192SAl Viro 		INIT_LIST_HEAD(&mountpoint_hashtable[u]);
27501da177e4SLinus Torvalds 
2751962830dfSAndi Kleen 	br_lock_init(&vfsmount_lock);
275299b7db7bSNick Piggin 
275315a67dd8SRandy Dunlap 	err = sysfs_init();
275415a67dd8SRandy Dunlap 	if (err)
275515a67dd8SRandy Dunlap 		printk(KERN_WARNING "%s: sysfs_init error: %d\n",
27568e24eea7SHarvey Harrison 			__func__, err);
275700d26666SGreg Kroah-Hartman 	fs_kobj = kobject_create_and_add("fs", NULL);
275800d26666SGreg Kroah-Hartman 	if (!fs_kobj)
27598e24eea7SHarvey Harrison 		printk(KERN_WARNING "%s: kobj create error\n", __func__);
27601da177e4SLinus Torvalds 	init_rootfs();
27611da177e4SLinus Torvalds 	init_mount_tree();
27621da177e4SLinus Torvalds }
27631da177e4SLinus Torvalds 
2764616511d0STrond Myklebust void put_mnt_ns(struct mnt_namespace *ns)
27651da177e4SLinus Torvalds {
2766d498b25aSAl Viro 	if (!atomic_dec_and_test(&ns->count))
2767616511d0STrond Myklebust 		return;
27687b00ed6fSAl Viro 	drop_collected_mounts(&ns->root->mnt);
2769771b1371SEric W. Biederman 	free_mnt_ns(ns);
27701da177e4SLinus Torvalds }
27719d412a43SAl Viro 
27729d412a43SAl Viro struct vfsmount *kern_mount_data(struct file_system_type *type, void *data)
27739d412a43SAl Viro {
2774423e0ab0STim Chen 	struct vfsmount *mnt;
2775423e0ab0STim Chen 	mnt = vfs_kern_mount(type, MS_KERNMOUNT, type->name, data);
2776423e0ab0STim Chen 	if (!IS_ERR(mnt)) {
2777423e0ab0STim Chen 		/*
2778423e0ab0STim Chen 		 * it is a longterm mount, don't release mnt until
2779423e0ab0STim Chen 		 * we unmount before file sys is unregistered
2780423e0ab0STim Chen 		*/
2781f7a99c5bSAl Viro 		real_mount(mnt)->mnt_ns = MNT_NS_INTERNAL;
2782423e0ab0STim Chen 	}
2783423e0ab0STim Chen 	return mnt;
27849d412a43SAl Viro }
27859d412a43SAl Viro EXPORT_SYMBOL_GPL(kern_mount_data);
2786423e0ab0STim Chen 
2787423e0ab0STim Chen void kern_unmount(struct vfsmount *mnt)
2788423e0ab0STim Chen {
2789423e0ab0STim Chen 	/* release long term mount so mount point can be released */
2790423e0ab0STim Chen 	if (!IS_ERR_OR_NULL(mnt)) {
2791719ea2fbSAl Viro 		lock_mount_hash();
2792f7a99c5bSAl Viro 		real_mount(mnt)->mnt_ns = NULL;
2793719ea2fbSAl Viro 		unlock_mount_hash();
2794423e0ab0STim Chen 		mntput(mnt);
2795423e0ab0STim Chen 	}
2796423e0ab0STim Chen }
2797423e0ab0STim Chen EXPORT_SYMBOL(kern_unmount);
279802125a82SAl Viro 
279902125a82SAl Viro bool our_mnt(struct vfsmount *mnt)
280002125a82SAl Viro {
2801143c8c91SAl Viro 	return check_mnt(real_mount(mnt));
280202125a82SAl Viro }
28038823c079SEric W. Biederman 
28043151527eSEric W. Biederman bool current_chrooted(void)
28053151527eSEric W. Biederman {
28063151527eSEric W. Biederman 	/* Does the current process have a non-standard root */
28073151527eSEric W. Biederman 	struct path ns_root;
28083151527eSEric W. Biederman 	struct path fs_root;
28093151527eSEric W. Biederman 	bool chrooted;
28103151527eSEric W. Biederman 
28113151527eSEric W. Biederman 	/* Find the namespace root */
28123151527eSEric W. Biederman 	ns_root.mnt = &current->nsproxy->mnt_ns->root->mnt;
28133151527eSEric W. Biederman 	ns_root.dentry = ns_root.mnt->mnt_root;
28143151527eSEric W. Biederman 	path_get(&ns_root);
28153151527eSEric W. Biederman 	while (d_mountpoint(ns_root.dentry) && follow_down_one(&ns_root))
28163151527eSEric W. Biederman 		;
28173151527eSEric W. Biederman 
28183151527eSEric W. Biederman 	get_fs_root(current->fs, &fs_root);
28193151527eSEric W. Biederman 
28203151527eSEric W. Biederman 	chrooted = !path_equal(&fs_root, &ns_root);
28213151527eSEric W. Biederman 
28223151527eSEric W. Biederman 	path_put(&fs_root);
28233151527eSEric W. Biederman 	path_put(&ns_root);
28243151527eSEric W. Biederman 
28253151527eSEric W. Biederman 	return chrooted;
28263151527eSEric W. Biederman }
28273151527eSEric W. Biederman 
2828e51db735SEric W. Biederman bool fs_fully_visible(struct file_system_type *type)
282987a8ebd6SEric W. Biederman {
283087a8ebd6SEric W. Biederman 	struct mnt_namespace *ns = current->nsproxy->mnt_ns;
283187a8ebd6SEric W. Biederman 	struct mount *mnt;
2832e51db735SEric W. Biederman 	bool visible = false;
283387a8ebd6SEric W. Biederman 
2834e51db735SEric W. Biederman 	if (unlikely(!ns))
2835e51db735SEric W. Biederman 		return false;
2836e51db735SEric W. Biederman 
283744bb4385SAl Viro 	down_read(&namespace_sem);
283887a8ebd6SEric W. Biederman 	list_for_each_entry(mnt, &ns->list, mnt_list) {
2839e51db735SEric W. Biederman 		struct mount *child;
2840e51db735SEric W. Biederman 		if (mnt->mnt.mnt_sb->s_type != type)
2841e51db735SEric W. Biederman 			continue;
2842e51db735SEric W. Biederman 
2843e51db735SEric W. Biederman 		/* This mount is not fully visible if there are any child mounts
2844e51db735SEric W. Biederman 		 * that cover anything except for empty directories.
2845e51db735SEric W. Biederman 		 */
2846e51db735SEric W. Biederman 		list_for_each_entry(child, &mnt->mnt_mounts, mnt_child) {
2847e51db735SEric W. Biederman 			struct inode *inode = child->mnt_mountpoint->d_inode;
2848e51db735SEric W. Biederman 			if (!S_ISDIR(inode->i_mode))
2849e51db735SEric W. Biederman 				goto next;
2850e51db735SEric W. Biederman 			if (inode->i_nlink != 2)
2851e51db735SEric W. Biederman 				goto next;
285287a8ebd6SEric W. Biederman 		}
2853e51db735SEric W. Biederman 		visible = true;
2854e51db735SEric W. Biederman 		goto found;
2855e51db735SEric W. Biederman 	next:	;
285687a8ebd6SEric W. Biederman 	}
2857e51db735SEric W. Biederman found:
285844bb4385SAl Viro 	up_read(&namespace_sem);
2859e51db735SEric W. Biederman 	return visible;
286087a8ebd6SEric W. Biederman }
286187a8ebd6SEric W. Biederman 
28628823c079SEric W. Biederman static void *mntns_get(struct task_struct *task)
28638823c079SEric W. Biederman {
28648823c079SEric W. Biederman 	struct mnt_namespace *ns = NULL;
28658823c079SEric W. Biederman 	struct nsproxy *nsproxy;
28668823c079SEric W. Biederman 
28678823c079SEric W. Biederman 	rcu_read_lock();
28688823c079SEric W. Biederman 	nsproxy = task_nsproxy(task);
28698823c079SEric W. Biederman 	if (nsproxy) {
28708823c079SEric W. Biederman 		ns = nsproxy->mnt_ns;
28718823c079SEric W. Biederman 		get_mnt_ns(ns);
28728823c079SEric W. Biederman 	}
28738823c079SEric W. Biederman 	rcu_read_unlock();
28748823c079SEric W. Biederman 
28758823c079SEric W. Biederman 	return ns;
28768823c079SEric W. Biederman }
28778823c079SEric W. Biederman 
28788823c079SEric W. Biederman static void mntns_put(void *ns)
28798823c079SEric W. Biederman {
28808823c079SEric W. Biederman 	put_mnt_ns(ns);
28818823c079SEric W. Biederman }
28828823c079SEric W. Biederman 
28838823c079SEric W. Biederman static int mntns_install(struct nsproxy *nsproxy, void *ns)
28848823c079SEric W. Biederman {
28858823c079SEric W. Biederman 	struct fs_struct *fs = current->fs;
28868823c079SEric W. Biederman 	struct mnt_namespace *mnt_ns = ns;
28878823c079SEric W. Biederman 	struct path root;
28888823c079SEric W. Biederman 
28890c55cfc4SEric W. Biederman 	if (!ns_capable(mnt_ns->user_ns, CAP_SYS_ADMIN) ||
2890c7b96acfSEric W. Biederman 	    !ns_capable(current_user_ns(), CAP_SYS_CHROOT) ||
2891c7b96acfSEric W. Biederman 	    !ns_capable(current_user_ns(), CAP_SYS_ADMIN))
2892ae11e0f1SZhao Hongjiang 		return -EPERM;
28938823c079SEric W. Biederman 
28948823c079SEric W. Biederman 	if (fs->users != 1)
28958823c079SEric W. Biederman 		return -EINVAL;
28968823c079SEric W. Biederman 
28978823c079SEric W. Biederman 	get_mnt_ns(mnt_ns);
28988823c079SEric W. Biederman 	put_mnt_ns(nsproxy->mnt_ns);
28998823c079SEric W. Biederman 	nsproxy->mnt_ns = mnt_ns;
29008823c079SEric W. Biederman 
29018823c079SEric W. Biederman 	/* Find the root */
29028823c079SEric W. Biederman 	root.mnt    = &mnt_ns->root->mnt;
29038823c079SEric W. Biederman 	root.dentry = mnt_ns->root->mnt.mnt_root;
29048823c079SEric W. Biederman 	path_get(&root);
29058823c079SEric W. Biederman 	while(d_mountpoint(root.dentry) && follow_down_one(&root))
29068823c079SEric W. Biederman 		;
29078823c079SEric W. Biederman 
29088823c079SEric W. Biederman 	/* Update the pwd and root */
29098823c079SEric W. Biederman 	set_fs_pwd(fs, &root);
29108823c079SEric W. Biederman 	set_fs_root(fs, &root);
29118823c079SEric W. Biederman 
29128823c079SEric W. Biederman 	path_put(&root);
29138823c079SEric W. Biederman 	return 0;
29148823c079SEric W. Biederman }
29158823c079SEric W. Biederman 
291698f842e6SEric W. Biederman static unsigned int mntns_inum(void *ns)
291798f842e6SEric W. Biederman {
291898f842e6SEric W. Biederman 	struct mnt_namespace *mnt_ns = ns;
291998f842e6SEric W. Biederman 	return mnt_ns->proc_inum;
292098f842e6SEric W. Biederman }
292198f842e6SEric W. Biederman 
29228823c079SEric W. Biederman const struct proc_ns_operations mntns_operations = {
29238823c079SEric W. Biederman 	.name		= "mnt",
29248823c079SEric W. Biederman 	.type		= CLONE_NEWNS,
29258823c079SEric W. Biederman 	.get		= mntns_get,
29268823c079SEric W. Biederman 	.put		= mntns_put,
29278823c079SEric W. Biederman 	.install	= mntns_install,
292898f842e6SEric W. Biederman 	.inum		= mntns_inum,
29298823c079SEric W. Biederman };
2930