xref: /openbmc/linux/fs/namespace.c (revision 771b1371)
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 */
20d10577a8SAl Viro #include <linux/ramfs.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>
248823c079SEric W. Biederman #include <linux/proc_fs.h>
2507b20889SRam Pai #include "pnode.h"
26948730b0SAdrian Bunk #include "internal.h"
271da177e4SLinus Torvalds 
2813f14b4dSEric Dumazet #define HASH_SHIFT ilog2(PAGE_SIZE / sizeof(struct list_head))
2913f14b4dSEric Dumazet #define HASH_SIZE (1UL << HASH_SHIFT)
3013f14b4dSEric Dumazet 
315addc5ddSAl Viro static int event;
3273cd49ecSMiklos Szeredi static DEFINE_IDA(mnt_id_ida);
33719f5d7fSMiklos Szeredi static DEFINE_IDA(mnt_group_ida);
3499b7db7bSNick Piggin static DEFINE_SPINLOCK(mnt_id_lock);
35f21f6220SAl Viro static int mnt_id_start = 0;
36f21f6220SAl Viro static int mnt_group_start = 1;
375addc5ddSAl Viro 
38fa3536ccSEric Dumazet static struct list_head *mount_hashtable __read_mostly;
39e18b890bSChristoph Lameter static struct kmem_cache *mnt_cache __read_mostly;
40390c6843SRam Pai static struct rw_semaphore namespace_sem;
411da177e4SLinus Torvalds 
42f87fd4c2SMiklos Szeredi /* /sys/fs */
4300d26666SGreg Kroah-Hartman struct kobject *fs_kobj;
4400d26666SGreg Kroah-Hartman EXPORT_SYMBOL_GPL(fs_kobj);
45f87fd4c2SMiklos Szeredi 
4699b7db7bSNick Piggin /*
4799b7db7bSNick Piggin  * vfsmount lock may be taken for read to prevent changes to the
4899b7db7bSNick Piggin  * vfsmount hash, ie. during mountpoint lookups or walking back
4999b7db7bSNick Piggin  * up the tree.
5099b7db7bSNick Piggin  *
5199b7db7bSNick Piggin  * It should be taken for write in all cases where the vfsmount
5299b7db7bSNick Piggin  * tree or hash is modified or when a vfsmount structure is modified.
5399b7db7bSNick Piggin  */
5499b7db7bSNick Piggin DEFINE_BRLOCK(vfsmount_lock);
5599b7db7bSNick Piggin 
561da177e4SLinus Torvalds static inline unsigned long hash(struct vfsmount *mnt, struct dentry *dentry)
571da177e4SLinus Torvalds {
581da177e4SLinus Torvalds 	unsigned long tmp = ((unsigned long)mnt / L1_CACHE_BYTES);
591da177e4SLinus Torvalds 	tmp += ((unsigned long)dentry / L1_CACHE_BYTES);
6013f14b4dSEric Dumazet 	tmp = tmp + (tmp >> HASH_SHIFT);
6113f14b4dSEric Dumazet 	return tmp & (HASH_SIZE - 1);
621da177e4SLinus Torvalds }
631da177e4SLinus Torvalds 
643d733633SDave Hansen #define MNT_WRITER_UNDERFLOW_LIMIT -(1<<16)
653d733633SDave Hansen 
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();
31683adc753SAl Viro 	while (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 {
387eb04c282SJan Kara 	struct inode *inode = file->f_dentry->d_inode;
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 
459962830dfSAndi Kleen 	br_write_lock(&vfsmount_lock);
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;
493962830dfSAndi Kleen 	br_write_unlock(&vfsmount_lock);
4943d733633SDave Hansen 	return ret;
4953d733633SDave Hansen }
4968366025eSDave Hansen 
49783adc753SAl Viro static void __mnt_unmake_readonly(struct mount *mnt)
4982e4b7fcdSDave Hansen {
499962830dfSAndi Kleen 	br_write_lock(&vfsmount_lock);
50083adc753SAl Viro 	mnt->mnt.mnt_flags &= ~MNT_READONLY;
501962830dfSAndi Kleen 	br_write_unlock(&vfsmount_lock);
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 
513962830dfSAndi Kleen 	br_write_lock(&vfsmount_lock);
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 	}
535962830dfSAndi Kleen 	br_write_unlock(&vfsmount_lock);
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 /*
551a05964f3SRam Pai  * find the first or last mount at @dentry on vfsmount @mnt depending on
552a05964f3SRam Pai  * @dir. If @dir is set return the first mount else return the last mount.
55399b7db7bSNick Piggin  * vfsmount_lock must be held for read or write.
5541da177e4SLinus Torvalds  */
555c7105365SAl Viro struct mount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry,
556a05964f3SRam Pai 			      int dir)
5571da177e4SLinus Torvalds {
5581da177e4SLinus Torvalds 	struct list_head *head = mount_hashtable + hash(mnt, dentry);
5591da177e4SLinus Torvalds 	struct list_head *tmp = head;
560c7105365SAl Viro 	struct mount *p, *found = NULL;
5611da177e4SLinus Torvalds 
5621da177e4SLinus Torvalds 	for (;;) {
563a05964f3SRam Pai 		tmp = dir ? tmp->next : tmp->prev;
5641da177e4SLinus Torvalds 		p = NULL;
5651da177e4SLinus Torvalds 		if (tmp == head)
5661da177e4SLinus Torvalds 			break;
5671b8e5564SAl Viro 		p = list_entry(tmp, struct mount, mnt_hash);
568a73324daSAl Viro 		if (&p->mnt_parent->mnt == mnt && p->mnt_mountpoint == dentry) {
569a05964f3SRam Pai 			found = p;
5701da177e4SLinus Torvalds 			break;
5711da177e4SLinus Torvalds 		}
5721da177e4SLinus Torvalds 	}
5731da177e4SLinus Torvalds 	return found;
5741da177e4SLinus Torvalds }
5751da177e4SLinus Torvalds 
576a05964f3SRam Pai /*
577f015f126SDavid Howells  * lookup_mnt - Return the first child mount mounted at path
578f015f126SDavid Howells  *
579f015f126SDavid Howells  * "First" means first mounted chronologically.  If you create the
580f015f126SDavid Howells  * following mounts:
581f015f126SDavid Howells  *
582f015f126SDavid Howells  * mount /dev/sda1 /mnt
583f015f126SDavid Howells  * mount /dev/sda2 /mnt
584f015f126SDavid Howells  * mount /dev/sda3 /mnt
585f015f126SDavid Howells  *
586f015f126SDavid Howells  * Then lookup_mnt() on the base /mnt dentry in the root mount will
587f015f126SDavid Howells  * return successively the root dentry and vfsmount of /dev/sda1, then
588f015f126SDavid Howells  * /dev/sda2, then /dev/sda3, then NULL.
589f015f126SDavid Howells  *
590f015f126SDavid Howells  * lookup_mnt takes a reference to the found vfsmount.
591a05964f3SRam Pai  */
5921c755af4SAl Viro struct vfsmount *lookup_mnt(struct path *path)
593a05964f3SRam Pai {
594c7105365SAl Viro 	struct mount *child_mnt;
59599b7db7bSNick Piggin 
596962830dfSAndi Kleen 	br_read_lock(&vfsmount_lock);
597c7105365SAl Viro 	child_mnt = __lookup_mnt(path->mnt, path->dentry, 1);
598c7105365SAl Viro 	if (child_mnt) {
599c7105365SAl Viro 		mnt_add_count(child_mnt, 1);
600962830dfSAndi Kleen 		br_read_unlock(&vfsmount_lock);
601c7105365SAl Viro 		return &child_mnt->mnt;
602c7105365SAl Viro 	} else {
603962830dfSAndi Kleen 		br_read_unlock(&vfsmount_lock);
604c7105365SAl Viro 		return NULL;
605c7105365SAl Viro 	}
606a05964f3SRam Pai }
607a05964f3SRam Pai 
608143c8c91SAl Viro static inline int check_mnt(struct mount *mnt)
6091da177e4SLinus Torvalds {
6106b3286edSKirill Korotaev 	return mnt->mnt_ns == current->nsproxy->mnt_ns;
6111da177e4SLinus Torvalds }
6121da177e4SLinus Torvalds 
61399b7db7bSNick Piggin /*
61499b7db7bSNick Piggin  * vfsmount lock must be held for write
61599b7db7bSNick Piggin  */
6166b3286edSKirill Korotaev static void touch_mnt_namespace(struct mnt_namespace *ns)
6175addc5ddSAl Viro {
6185addc5ddSAl Viro 	if (ns) {
6195addc5ddSAl Viro 		ns->event = ++event;
6205addc5ddSAl Viro 		wake_up_interruptible(&ns->poll);
6215addc5ddSAl Viro 	}
6225addc5ddSAl Viro }
6235addc5ddSAl Viro 
62499b7db7bSNick Piggin /*
62599b7db7bSNick Piggin  * vfsmount lock must be held for write
62699b7db7bSNick Piggin  */
6276b3286edSKirill Korotaev static void __touch_mnt_namespace(struct mnt_namespace *ns)
6285addc5ddSAl Viro {
6295addc5ddSAl Viro 	if (ns && ns->event != event) {
6305addc5ddSAl Viro 		ns->event = event;
6315addc5ddSAl Viro 		wake_up_interruptible(&ns->poll);
6325addc5ddSAl Viro 	}
6335addc5ddSAl Viro }
6345addc5ddSAl Viro 
63599b7db7bSNick Piggin /*
6365f57cbccSNick Piggin  * Clear dentry's mounted state if it has no remaining mounts.
6375f57cbccSNick Piggin  * vfsmount_lock must be held for write.
6385f57cbccSNick Piggin  */
639aa0a4cf0SAl Viro static void dentry_reset_mounted(struct dentry *dentry)
6405f57cbccSNick Piggin {
6415f57cbccSNick Piggin 	unsigned u;
6425f57cbccSNick Piggin 
6435f57cbccSNick Piggin 	for (u = 0; u < HASH_SIZE; u++) {
644d5e50f74SAl Viro 		struct mount *p;
6455f57cbccSNick Piggin 
6461b8e5564SAl Viro 		list_for_each_entry(p, &mount_hashtable[u], mnt_hash) {
647a73324daSAl Viro 			if (p->mnt_mountpoint == dentry)
6485f57cbccSNick Piggin 				return;
6495f57cbccSNick Piggin 		}
6505f57cbccSNick Piggin 	}
6515f57cbccSNick Piggin 	spin_lock(&dentry->d_lock);
6525f57cbccSNick Piggin 	dentry->d_flags &= ~DCACHE_MOUNTED;
6535f57cbccSNick Piggin 	spin_unlock(&dentry->d_lock);
6545f57cbccSNick Piggin }
6555f57cbccSNick Piggin 
6565f57cbccSNick Piggin /*
65799b7db7bSNick Piggin  * vfsmount lock must be held for write
65899b7db7bSNick Piggin  */
659419148daSAl Viro static void detach_mnt(struct mount *mnt, struct path *old_path)
6601da177e4SLinus Torvalds {
661a73324daSAl Viro 	old_path->dentry = mnt->mnt_mountpoint;
6620714a533SAl Viro 	old_path->mnt = &mnt->mnt_parent->mnt;
6630714a533SAl Viro 	mnt->mnt_parent = mnt;
664a73324daSAl Viro 	mnt->mnt_mountpoint = mnt->mnt.mnt_root;
6656b41d536SAl Viro 	list_del_init(&mnt->mnt_child);
6661b8e5564SAl Viro 	list_del_init(&mnt->mnt_hash);
667aa0a4cf0SAl Viro 	dentry_reset_mounted(old_path->dentry);
6681da177e4SLinus Torvalds }
6691da177e4SLinus Torvalds 
67099b7db7bSNick Piggin /*
67199b7db7bSNick Piggin  * vfsmount lock must be held for write
67299b7db7bSNick Piggin  */
67314cf1fa8SAl Viro void mnt_set_mountpoint(struct mount *mnt, struct dentry *dentry,
67444d964d6SAl Viro 			struct mount *child_mnt)
675b90fa9aeSRam Pai {
6763a2393d7SAl Viro 	mnt_add_count(mnt, 1);	/* essentially, that's mntget */
677a73324daSAl Viro 	child_mnt->mnt_mountpoint = dget(dentry);
6783a2393d7SAl Viro 	child_mnt->mnt_parent = mnt;
6795f57cbccSNick Piggin 	spin_lock(&dentry->d_lock);
6805f57cbccSNick Piggin 	dentry->d_flags |= DCACHE_MOUNTED;
6815f57cbccSNick Piggin 	spin_unlock(&dentry->d_lock);
682b90fa9aeSRam Pai }
683b90fa9aeSRam Pai 
68499b7db7bSNick Piggin /*
68599b7db7bSNick Piggin  * vfsmount lock must be held for write
68699b7db7bSNick Piggin  */
687419148daSAl Viro static void attach_mnt(struct mount *mnt, struct path *path)
6881da177e4SLinus Torvalds {
68914cf1fa8SAl Viro 	mnt_set_mountpoint(real_mount(path->mnt), path->dentry, mnt);
6901b8e5564SAl Viro 	list_add_tail(&mnt->mnt_hash, mount_hashtable +
6911a390689SAl Viro 			hash(path->mnt, path->dentry));
6926b41d536SAl Viro 	list_add_tail(&mnt->mnt_child, &real_mount(path->mnt)->mnt_mounts);
693b90fa9aeSRam Pai }
694b90fa9aeSRam Pai 
695b90fa9aeSRam Pai /*
69699b7db7bSNick Piggin  * vfsmount lock must be held for write
697b90fa9aeSRam Pai  */
6984b2619a5SAl Viro static void commit_tree(struct mount *mnt)
699b90fa9aeSRam Pai {
7000714a533SAl Viro 	struct mount *parent = mnt->mnt_parent;
70183adc753SAl Viro 	struct mount *m;
702b90fa9aeSRam Pai 	LIST_HEAD(head);
703143c8c91SAl Viro 	struct mnt_namespace *n = parent->mnt_ns;
704b90fa9aeSRam Pai 
7050714a533SAl Viro 	BUG_ON(parent == mnt);
706b90fa9aeSRam Pai 
7071a4eeaf2SAl Viro 	list_add_tail(&head, &mnt->mnt_list);
708f7a99c5bSAl Viro 	list_for_each_entry(m, &head, mnt_list)
709143c8c91SAl Viro 		m->mnt_ns = n;
710f03c6599SAl Viro 
711b90fa9aeSRam Pai 	list_splice(&head, n->list.prev);
712b90fa9aeSRam Pai 
7131b8e5564SAl Viro 	list_add_tail(&mnt->mnt_hash, mount_hashtable +
714a73324daSAl Viro 				hash(&parent->mnt, mnt->mnt_mountpoint));
7156b41d536SAl Viro 	list_add_tail(&mnt->mnt_child, &parent->mnt_mounts);
7166b3286edSKirill Korotaev 	touch_mnt_namespace(n);
7171da177e4SLinus Torvalds }
7181da177e4SLinus Torvalds 
719909b0a88SAl Viro static struct mount *next_mnt(struct mount *p, struct mount *root)
7201da177e4SLinus Torvalds {
7216b41d536SAl Viro 	struct list_head *next = p->mnt_mounts.next;
7226b41d536SAl Viro 	if (next == &p->mnt_mounts) {
7231da177e4SLinus Torvalds 		while (1) {
724909b0a88SAl Viro 			if (p == root)
7251da177e4SLinus Torvalds 				return NULL;
7266b41d536SAl Viro 			next = p->mnt_child.next;
7276b41d536SAl Viro 			if (next != &p->mnt_parent->mnt_mounts)
7281da177e4SLinus Torvalds 				break;
7290714a533SAl Viro 			p = p->mnt_parent;
7301da177e4SLinus Torvalds 		}
7311da177e4SLinus Torvalds 	}
7326b41d536SAl Viro 	return list_entry(next, struct mount, mnt_child);
7331da177e4SLinus Torvalds }
7341da177e4SLinus Torvalds 
735315fc83eSAl Viro static struct mount *skip_mnt_tree(struct mount *p)
7369676f0c6SRam Pai {
7376b41d536SAl Viro 	struct list_head *prev = p->mnt_mounts.prev;
7386b41d536SAl Viro 	while (prev != &p->mnt_mounts) {
7396b41d536SAl Viro 		p = list_entry(prev, struct mount, mnt_child);
7406b41d536SAl Viro 		prev = p->mnt_mounts.prev;
7419676f0c6SRam Pai 	}
7429676f0c6SRam Pai 	return p;
7439676f0c6SRam Pai }
7449676f0c6SRam Pai 
7459d412a43SAl Viro struct vfsmount *
7469d412a43SAl Viro vfs_kern_mount(struct file_system_type *type, int flags, const char *name, void *data)
7479d412a43SAl Viro {
748b105e270SAl Viro 	struct mount *mnt;
7499d412a43SAl Viro 	struct dentry *root;
7509d412a43SAl Viro 
7519d412a43SAl Viro 	if (!type)
7529d412a43SAl Viro 		return ERR_PTR(-ENODEV);
7539d412a43SAl Viro 
7549d412a43SAl Viro 	mnt = alloc_vfsmnt(name);
7559d412a43SAl Viro 	if (!mnt)
7569d412a43SAl Viro 		return ERR_PTR(-ENOMEM);
7579d412a43SAl Viro 
7589d412a43SAl Viro 	if (flags & MS_KERNMOUNT)
759b105e270SAl Viro 		mnt->mnt.mnt_flags = MNT_INTERNAL;
7609d412a43SAl Viro 
7619d412a43SAl Viro 	root = mount_fs(type, flags, name, data);
7629d412a43SAl Viro 	if (IS_ERR(root)) {
7639d412a43SAl Viro 		free_vfsmnt(mnt);
7649d412a43SAl Viro 		return ERR_CAST(root);
7659d412a43SAl Viro 	}
7669d412a43SAl Viro 
767b105e270SAl Viro 	mnt->mnt.mnt_root = root;
768b105e270SAl Viro 	mnt->mnt.mnt_sb = root->d_sb;
769a73324daSAl Viro 	mnt->mnt_mountpoint = mnt->mnt.mnt_root;
7700714a533SAl Viro 	mnt->mnt_parent = mnt;
771962830dfSAndi Kleen 	br_write_lock(&vfsmount_lock);
77239f7c4dbSMiklos Szeredi 	list_add_tail(&mnt->mnt_instance, &root->d_sb->s_mounts);
773962830dfSAndi Kleen 	br_write_unlock(&vfsmount_lock);
774b105e270SAl Viro 	return &mnt->mnt;
7759d412a43SAl Viro }
7769d412a43SAl Viro EXPORT_SYMBOL_GPL(vfs_kern_mount);
7779d412a43SAl Viro 
77887129cc0SAl Viro static struct mount *clone_mnt(struct mount *old, struct dentry *root,
77936341f64SRam Pai 					int flag)
7801da177e4SLinus Torvalds {
78187129cc0SAl Viro 	struct super_block *sb = old->mnt.mnt_sb;
782be34d1a3SDavid Howells 	struct mount *mnt;
783be34d1a3SDavid Howells 	int err;
7841da177e4SLinus Torvalds 
785be34d1a3SDavid Howells 	mnt = alloc_vfsmnt(old->mnt_devname);
786be34d1a3SDavid Howells 	if (!mnt)
787be34d1a3SDavid Howells 		return ERR_PTR(-ENOMEM);
788be34d1a3SDavid Howells 
789719f5d7fSMiklos Szeredi 	if (flag & (CL_SLAVE | CL_PRIVATE))
79015169fe7SAl Viro 		mnt->mnt_group_id = 0; /* not a peer of original */
791719f5d7fSMiklos Szeredi 	else
79215169fe7SAl Viro 		mnt->mnt_group_id = old->mnt_group_id;
793719f5d7fSMiklos Szeredi 
79415169fe7SAl Viro 	if ((flag & CL_MAKE_SHARED) && !mnt->mnt_group_id) {
795be34d1a3SDavid Howells 		err = mnt_alloc_group_id(mnt);
796719f5d7fSMiklos Szeredi 		if (err)
797719f5d7fSMiklos Szeredi 			goto out_free;
798719f5d7fSMiklos Szeredi 	}
799719f5d7fSMiklos Szeredi 
80087129cc0SAl Viro 	mnt->mnt.mnt_flags = old->mnt.mnt_flags & ~MNT_WRITE_HOLD;
8011da177e4SLinus Torvalds 	atomic_inc(&sb->s_active);
802b105e270SAl Viro 	mnt->mnt.mnt_sb = sb;
803b105e270SAl Viro 	mnt->mnt.mnt_root = dget(root);
804a73324daSAl Viro 	mnt->mnt_mountpoint = mnt->mnt.mnt_root;
8050714a533SAl Viro 	mnt->mnt_parent = mnt;
806962830dfSAndi Kleen 	br_write_lock(&vfsmount_lock);
80739f7c4dbSMiklos Szeredi 	list_add_tail(&mnt->mnt_instance, &sb->s_mounts);
808962830dfSAndi Kleen 	br_write_unlock(&vfsmount_lock);
809b90fa9aeSRam Pai 
8105afe0022SRam Pai 	if (flag & CL_SLAVE) {
8116776db3dSAl Viro 		list_add(&mnt->mnt_slave, &old->mnt_slave_list);
81232301920SAl Viro 		mnt->mnt_master = old;
813fc7be130SAl Viro 		CLEAR_MNT_SHARED(mnt);
8148aec0809SAl Viro 	} else if (!(flag & CL_PRIVATE)) {
815fc7be130SAl Viro 		if ((flag & CL_MAKE_SHARED) || IS_MNT_SHARED(old))
8166776db3dSAl Viro 			list_add(&mnt->mnt_share, &old->mnt_share);
817d10e8defSAl Viro 		if (IS_MNT_SLAVE(old))
8186776db3dSAl Viro 			list_add(&mnt->mnt_slave, &old->mnt_slave);
819d10e8defSAl Viro 		mnt->mnt_master = old->mnt_master;
8205afe0022SRam Pai 	}
821b90fa9aeSRam Pai 	if (flag & CL_MAKE_SHARED)
8220f0afb1dSAl Viro 		set_mnt_shared(mnt);
8231da177e4SLinus Torvalds 
8241da177e4SLinus Torvalds 	/* stick the duplicate mount on the same expiry list
8251da177e4SLinus Torvalds 	 * as the original if that was on one */
82636341f64SRam Pai 	if (flag & CL_EXPIRE) {
8276776db3dSAl Viro 		if (!list_empty(&old->mnt_expire))
8286776db3dSAl Viro 			list_add(&mnt->mnt_expire, &old->mnt_expire);
8291da177e4SLinus Torvalds 	}
830be34d1a3SDavid Howells 
831cb338d06SAl Viro 	return mnt;
832719f5d7fSMiklos Szeredi 
833719f5d7fSMiklos Szeredi  out_free:
834719f5d7fSMiklos Szeredi 	free_vfsmnt(mnt);
835be34d1a3SDavid Howells 	return ERR_PTR(err);
8361da177e4SLinus Torvalds }
8371da177e4SLinus Torvalds 
83883adc753SAl Viro static inline void mntfree(struct mount *mnt)
8391da177e4SLinus Torvalds {
84083adc753SAl Viro 	struct vfsmount *m = &mnt->mnt;
84183adc753SAl Viro 	struct super_block *sb = m->mnt_sb;
842b3e19d92SNick Piggin 
8433d733633SDave Hansen 	/*
8443d733633SDave Hansen 	 * This probably indicates that somebody messed
8453d733633SDave Hansen 	 * up a mnt_want/drop_write() pair.  If this
8463d733633SDave Hansen 	 * happens, the filesystem was probably unable
8473d733633SDave Hansen 	 * to make r/w->r/o transitions.
8483d733633SDave Hansen 	 */
849d3ef3d73Snpiggin@suse.de 	/*
850b3e19d92SNick Piggin 	 * The locking used to deal with mnt_count decrement provides barriers,
851b3e19d92SNick Piggin 	 * so mnt_get_writers() below is safe.
852d3ef3d73Snpiggin@suse.de 	 */
853c6653a83SNick Piggin 	WARN_ON(mnt_get_writers(mnt));
85483adc753SAl Viro 	fsnotify_vfsmount_delete(m);
85583adc753SAl Viro 	dput(m->mnt_root);
85683adc753SAl Viro 	free_vfsmnt(mnt);
8571da177e4SLinus Torvalds 	deactivate_super(sb);
8581da177e4SLinus Torvalds }
8591da177e4SLinus Torvalds 
860900148dcSAl Viro static void mntput_no_expire(struct mount *mnt)
8617b7b1aceSAl Viro {
862b3e19d92SNick Piggin put_again:
863f03c6599SAl Viro #ifdef CONFIG_SMP
864962830dfSAndi Kleen 	br_read_lock(&vfsmount_lock);
865f7a99c5bSAl Viro 	if (likely(mnt->mnt_ns)) {
866f7a99c5bSAl Viro 		/* shouldn't be the last one */
867aa9c0e07SAl Viro 		mnt_add_count(mnt, -1);
868962830dfSAndi Kleen 		br_read_unlock(&vfsmount_lock);
86999b7db7bSNick Piggin 		return;
870b3e19d92SNick Piggin 	}
871962830dfSAndi Kleen 	br_read_unlock(&vfsmount_lock);
872b3e19d92SNick Piggin 
873962830dfSAndi Kleen 	br_write_lock(&vfsmount_lock);
874aa9c0e07SAl Viro 	mnt_add_count(mnt, -1);
875b3e19d92SNick Piggin 	if (mnt_get_count(mnt)) {
876962830dfSAndi Kleen 		br_write_unlock(&vfsmount_lock);
87799b7db7bSNick Piggin 		return;
87899b7db7bSNick Piggin 	}
879b3e19d92SNick Piggin #else
880aa9c0e07SAl Viro 	mnt_add_count(mnt, -1);
881b3e19d92SNick Piggin 	if (likely(mnt_get_count(mnt)))
882b3e19d92SNick Piggin 		return;
883962830dfSAndi Kleen 	br_write_lock(&vfsmount_lock);
884f03c6599SAl Viro #endif
885863d684fSAl Viro 	if (unlikely(mnt->mnt_pinned)) {
886863d684fSAl Viro 		mnt_add_count(mnt, mnt->mnt_pinned + 1);
887863d684fSAl Viro 		mnt->mnt_pinned = 0;
888962830dfSAndi Kleen 		br_write_unlock(&vfsmount_lock);
889900148dcSAl Viro 		acct_auto_close_mnt(&mnt->mnt);
890b3e19d92SNick Piggin 		goto put_again;
891b3e19d92SNick Piggin 	}
892962830dfSAndi Kleen 
89339f7c4dbSMiklos Szeredi 	list_del(&mnt->mnt_instance);
894962830dfSAndi Kleen 	br_write_unlock(&vfsmount_lock);
895b3e19d92SNick Piggin 	mntfree(mnt);
896b3e19d92SNick Piggin }
897b3e19d92SNick Piggin 
898b3e19d92SNick Piggin void mntput(struct vfsmount *mnt)
899b3e19d92SNick Piggin {
900b3e19d92SNick Piggin 	if (mnt) {
901863d684fSAl Viro 		struct mount *m = real_mount(mnt);
902b3e19d92SNick Piggin 		/* avoid cacheline pingpong, hope gcc doesn't get "smart" */
903863d684fSAl Viro 		if (unlikely(m->mnt_expiry_mark))
904863d684fSAl Viro 			m->mnt_expiry_mark = 0;
905863d684fSAl Viro 		mntput_no_expire(m);
906b3e19d92SNick Piggin 	}
907b3e19d92SNick Piggin }
908b3e19d92SNick Piggin EXPORT_SYMBOL(mntput);
909b3e19d92SNick Piggin 
910b3e19d92SNick Piggin struct vfsmount *mntget(struct vfsmount *mnt)
911b3e19d92SNick Piggin {
912b3e19d92SNick Piggin 	if (mnt)
91383adc753SAl Viro 		mnt_add_count(real_mount(mnt), 1);
914b3e19d92SNick Piggin 	return mnt;
915b3e19d92SNick Piggin }
916b3e19d92SNick Piggin EXPORT_SYMBOL(mntget);
917b3e19d92SNick Piggin 
9187b7b1aceSAl Viro void mnt_pin(struct vfsmount *mnt)
9197b7b1aceSAl Viro {
920962830dfSAndi Kleen 	br_write_lock(&vfsmount_lock);
921863d684fSAl Viro 	real_mount(mnt)->mnt_pinned++;
922962830dfSAndi Kleen 	br_write_unlock(&vfsmount_lock);
9237b7b1aceSAl Viro }
9247b7b1aceSAl Viro EXPORT_SYMBOL(mnt_pin);
9257b7b1aceSAl Viro 
926863d684fSAl Viro void mnt_unpin(struct vfsmount *m)
9277b7b1aceSAl Viro {
928863d684fSAl Viro 	struct mount *mnt = real_mount(m);
929962830dfSAndi Kleen 	br_write_lock(&vfsmount_lock);
9307b7b1aceSAl Viro 	if (mnt->mnt_pinned) {
931863d684fSAl Viro 		mnt_add_count(mnt, 1);
9327b7b1aceSAl Viro 		mnt->mnt_pinned--;
9337b7b1aceSAl Viro 	}
934962830dfSAndi Kleen 	br_write_unlock(&vfsmount_lock);
9357b7b1aceSAl Viro }
9367b7b1aceSAl Viro EXPORT_SYMBOL(mnt_unpin);
9371da177e4SLinus Torvalds 
938b3b304a2SMiklos Szeredi static inline void mangle(struct seq_file *m, const char *s)
939b3b304a2SMiklos Szeredi {
940b3b304a2SMiklos Szeredi 	seq_escape(m, s, " \t\n\\");
941b3b304a2SMiklos Szeredi }
942b3b304a2SMiklos Szeredi 
943b3b304a2SMiklos Szeredi /*
944b3b304a2SMiklos Szeredi  * Simple .show_options callback for filesystems which don't want to
945b3b304a2SMiklos Szeredi  * implement more complex mount option showing.
946b3b304a2SMiklos Szeredi  *
947b3b304a2SMiklos Szeredi  * See also save_mount_options().
948b3b304a2SMiklos Szeredi  */
94934c80b1dSAl Viro int generic_show_options(struct seq_file *m, struct dentry *root)
950b3b304a2SMiklos Szeredi {
9512a32cebdSAl Viro 	const char *options;
9522a32cebdSAl Viro 
9532a32cebdSAl Viro 	rcu_read_lock();
95434c80b1dSAl Viro 	options = rcu_dereference(root->d_sb->s_options);
955b3b304a2SMiklos Szeredi 
956b3b304a2SMiklos Szeredi 	if (options != NULL && options[0]) {
957b3b304a2SMiklos Szeredi 		seq_putc(m, ',');
958b3b304a2SMiklos Szeredi 		mangle(m, options);
959b3b304a2SMiklos Szeredi 	}
9602a32cebdSAl Viro 	rcu_read_unlock();
961b3b304a2SMiklos Szeredi 
962b3b304a2SMiklos Szeredi 	return 0;
963b3b304a2SMiklos Szeredi }
964b3b304a2SMiklos Szeredi EXPORT_SYMBOL(generic_show_options);
965b3b304a2SMiklos Szeredi 
966b3b304a2SMiklos Szeredi /*
967b3b304a2SMiklos Szeredi  * If filesystem uses generic_show_options(), this function should be
968b3b304a2SMiklos Szeredi  * called from the fill_super() callback.
969b3b304a2SMiklos Szeredi  *
970b3b304a2SMiklos Szeredi  * The .remount_fs callback usually needs to be handled in a special
971b3b304a2SMiklos Szeredi  * way, to make sure, that previous options are not overwritten if the
972b3b304a2SMiklos Szeredi  * remount fails.
973b3b304a2SMiklos Szeredi  *
974b3b304a2SMiklos Szeredi  * Also note, that if the filesystem's .remount_fs function doesn't
975b3b304a2SMiklos Szeredi  * reset all options to their default value, but changes only newly
976b3b304a2SMiklos Szeredi  * given options, then the displayed options will not reflect reality
977b3b304a2SMiklos Szeredi  * any more.
978b3b304a2SMiklos Szeredi  */
979b3b304a2SMiklos Szeredi void save_mount_options(struct super_block *sb, char *options)
980b3b304a2SMiklos Szeredi {
9812a32cebdSAl Viro 	BUG_ON(sb->s_options);
9822a32cebdSAl Viro 	rcu_assign_pointer(sb->s_options, kstrdup(options, GFP_KERNEL));
983b3b304a2SMiklos Szeredi }
984b3b304a2SMiklos Szeredi EXPORT_SYMBOL(save_mount_options);
985b3b304a2SMiklos Szeredi 
9862a32cebdSAl Viro void replace_mount_options(struct super_block *sb, char *options)
9872a32cebdSAl Viro {
9882a32cebdSAl Viro 	char *old = sb->s_options;
9892a32cebdSAl Viro 	rcu_assign_pointer(sb->s_options, options);
9902a32cebdSAl Viro 	if (old) {
9912a32cebdSAl Viro 		synchronize_rcu();
9922a32cebdSAl Viro 		kfree(old);
9932a32cebdSAl Viro 	}
9942a32cebdSAl Viro }
9952a32cebdSAl Viro EXPORT_SYMBOL(replace_mount_options);
9962a32cebdSAl Viro 
997a1a2c409SMiklos Szeredi #ifdef CONFIG_PROC_FS
9980226f492SAl Viro /* iterator; we want it to have access to namespace_sem, thus here... */
9991da177e4SLinus Torvalds static void *m_start(struct seq_file *m, loff_t *pos)
10001da177e4SLinus Torvalds {
10016ce6e24eSAl Viro 	struct proc_mounts *p = proc_mounts(m);
10021da177e4SLinus Torvalds 
1003390c6843SRam Pai 	down_read(&namespace_sem);
1004a1a2c409SMiklos Szeredi 	return seq_list_start(&p->ns->list, *pos);
10051da177e4SLinus Torvalds }
10061da177e4SLinus Torvalds 
10071da177e4SLinus Torvalds static void *m_next(struct seq_file *m, void *v, loff_t *pos)
10081da177e4SLinus Torvalds {
10096ce6e24eSAl Viro 	struct proc_mounts *p = proc_mounts(m);
1010b0765fb8SPavel Emelianov 
1011a1a2c409SMiklos Szeredi 	return seq_list_next(v, &p->ns->list, pos);
10121da177e4SLinus Torvalds }
10131da177e4SLinus Torvalds 
10141da177e4SLinus Torvalds static void m_stop(struct seq_file *m, void *v)
10151da177e4SLinus Torvalds {
1016390c6843SRam Pai 	up_read(&namespace_sem);
10171da177e4SLinus Torvalds }
10181da177e4SLinus Torvalds 
10190226f492SAl Viro static int m_show(struct seq_file *m, void *v)
10209f5596afSAl Viro {
10216ce6e24eSAl Viro 	struct proc_mounts *p = proc_mounts(m);
10221a4eeaf2SAl Viro 	struct mount *r = list_entry(v, struct mount, mnt_list);
10230226f492SAl Viro 	return p->show(m, &r->mnt);
10241da177e4SLinus Torvalds }
10251da177e4SLinus Torvalds 
1026a1a2c409SMiklos Szeredi const struct seq_operations mounts_op = {
10271da177e4SLinus Torvalds 	.start	= m_start,
10281da177e4SLinus Torvalds 	.next	= m_next,
10291da177e4SLinus Torvalds 	.stop	= m_stop,
10300226f492SAl Viro 	.show	= m_show,
1031b4629fe2SChuck Lever };
1032a1a2c409SMiklos Szeredi #endif  /* CONFIG_PROC_FS */
1033b4629fe2SChuck Lever 
10341da177e4SLinus Torvalds /**
10351da177e4SLinus Torvalds  * may_umount_tree - check if a mount tree is busy
10361da177e4SLinus Torvalds  * @mnt: root of mount tree
10371da177e4SLinus Torvalds  *
10381da177e4SLinus Torvalds  * This is called to check if a tree of mounts has any
10391da177e4SLinus Torvalds  * open files, pwds, chroots or sub mounts that are
10401da177e4SLinus Torvalds  * busy.
10411da177e4SLinus Torvalds  */
1042909b0a88SAl Viro int may_umount_tree(struct vfsmount *m)
10431da177e4SLinus Torvalds {
1044909b0a88SAl Viro 	struct mount *mnt = real_mount(m);
104536341f64SRam Pai 	int actual_refs = 0;
104636341f64SRam Pai 	int minimum_refs = 0;
1047315fc83eSAl Viro 	struct mount *p;
1048909b0a88SAl Viro 	BUG_ON(!m);
10491da177e4SLinus Torvalds 
1050b3e19d92SNick Piggin 	/* write lock needed for mnt_get_count */
1051962830dfSAndi Kleen 	br_write_lock(&vfsmount_lock);
1052909b0a88SAl Viro 	for (p = mnt; p; p = next_mnt(p, mnt)) {
105383adc753SAl Viro 		actual_refs += mnt_get_count(p);
10541da177e4SLinus Torvalds 		minimum_refs += 2;
10551da177e4SLinus Torvalds 	}
1056962830dfSAndi Kleen 	br_write_unlock(&vfsmount_lock);
10571da177e4SLinus Torvalds 
10581da177e4SLinus Torvalds 	if (actual_refs > minimum_refs)
10591da177e4SLinus Torvalds 		return 0;
1060e3474a8eSIan Kent 
1061e3474a8eSIan Kent 	return 1;
10621da177e4SLinus Torvalds }
10631da177e4SLinus Torvalds 
10641da177e4SLinus Torvalds EXPORT_SYMBOL(may_umount_tree);
10651da177e4SLinus Torvalds 
10661da177e4SLinus Torvalds /**
10671da177e4SLinus Torvalds  * may_umount - check if a mount point is busy
10681da177e4SLinus Torvalds  * @mnt: root of mount
10691da177e4SLinus Torvalds  *
10701da177e4SLinus Torvalds  * This is called to check if a mount point has any
10711da177e4SLinus Torvalds  * open files, pwds, chroots or sub mounts. If the
10721da177e4SLinus Torvalds  * mount has sub mounts this will return busy
10731da177e4SLinus Torvalds  * regardless of whether the sub mounts are busy.
10741da177e4SLinus Torvalds  *
10751da177e4SLinus Torvalds  * Doesn't take quota and stuff into account. IOW, in some cases it will
10761da177e4SLinus Torvalds  * give false negatives. The main reason why it's here is that we need
10771da177e4SLinus Torvalds  * a non-destructive way to look for easily umountable filesystems.
10781da177e4SLinus Torvalds  */
10791da177e4SLinus Torvalds int may_umount(struct vfsmount *mnt)
10801da177e4SLinus Torvalds {
1081e3474a8eSIan Kent 	int ret = 1;
10828ad08d8aSAl Viro 	down_read(&namespace_sem);
1083962830dfSAndi Kleen 	br_write_lock(&vfsmount_lock);
10841ab59738SAl Viro 	if (propagate_mount_busy(real_mount(mnt), 2))
1085e3474a8eSIan Kent 		ret = 0;
1086962830dfSAndi Kleen 	br_write_unlock(&vfsmount_lock);
10878ad08d8aSAl Viro 	up_read(&namespace_sem);
1088a05964f3SRam Pai 	return ret;
10891da177e4SLinus Torvalds }
10901da177e4SLinus Torvalds 
10911da177e4SLinus Torvalds EXPORT_SYMBOL(may_umount);
10921da177e4SLinus Torvalds 
1093b90fa9aeSRam Pai void release_mounts(struct list_head *head)
10941da177e4SLinus Torvalds {
1095d5e50f74SAl Viro 	struct mount *mnt;
109670fbcdf4SRam Pai 	while (!list_empty(head)) {
10971b8e5564SAl Viro 		mnt = list_first_entry(head, struct mount, mnt_hash);
10981b8e5564SAl Viro 		list_del_init(&mnt->mnt_hash);
1099676da58dSAl Viro 		if (mnt_has_parent(mnt)) {
110070fbcdf4SRam Pai 			struct dentry *dentry;
1101863d684fSAl Viro 			struct mount *m;
110299b7db7bSNick Piggin 
1103962830dfSAndi Kleen 			br_write_lock(&vfsmount_lock);
1104a73324daSAl Viro 			dentry = mnt->mnt_mountpoint;
1105863d684fSAl Viro 			m = mnt->mnt_parent;
1106a73324daSAl Viro 			mnt->mnt_mountpoint = mnt->mnt.mnt_root;
11070714a533SAl Viro 			mnt->mnt_parent = mnt;
11087c4b93d8SAl Viro 			m->mnt_ghosts--;
1109962830dfSAndi Kleen 			br_write_unlock(&vfsmount_lock);
111070fbcdf4SRam Pai 			dput(dentry);
1111863d684fSAl Viro 			mntput(&m->mnt);
11121da177e4SLinus Torvalds 		}
1113d5e50f74SAl Viro 		mntput(&mnt->mnt);
111470fbcdf4SRam Pai 	}
111570fbcdf4SRam Pai }
111670fbcdf4SRam Pai 
111799b7db7bSNick Piggin /*
111899b7db7bSNick Piggin  * vfsmount lock must be held for write
111999b7db7bSNick Piggin  * namespace_sem must be held for write
112099b7db7bSNick Piggin  */
1121761d5c38SAl Viro void umount_tree(struct mount *mnt, int propagate, struct list_head *kill)
112270fbcdf4SRam Pai {
11237b8a53fdSAl Viro 	LIST_HEAD(tmp_list);
1124315fc83eSAl Viro 	struct mount *p;
112570fbcdf4SRam Pai 
1126909b0a88SAl Viro 	for (p = mnt; p; p = next_mnt(p, mnt))
11271b8e5564SAl Viro 		list_move(&p->mnt_hash, &tmp_list);
112870fbcdf4SRam Pai 
1129a05964f3SRam Pai 	if (propagate)
11307b8a53fdSAl Viro 		propagate_umount(&tmp_list);
1131a05964f3SRam Pai 
11321b8e5564SAl Viro 	list_for_each_entry(p, &tmp_list, mnt_hash) {
11336776db3dSAl Viro 		list_del_init(&p->mnt_expire);
11341a4eeaf2SAl Viro 		list_del_init(&p->mnt_list);
1135143c8c91SAl Viro 		__touch_mnt_namespace(p->mnt_ns);
113663d37a84SAl Viro 		p->mnt_ns = NULL;
11376b41d536SAl Viro 		list_del_init(&p->mnt_child);
1138676da58dSAl Viro 		if (mnt_has_parent(p)) {
1139863d684fSAl Viro 			p->mnt_parent->mnt_ghosts++;
1140a73324daSAl Viro 			dentry_reset_mounted(p->mnt_mountpoint);
11417c4b93d8SAl Viro 		}
11420f0afb1dSAl Viro 		change_mnt_propagation(p, MS_PRIVATE);
11431da177e4SLinus Torvalds 	}
11447b8a53fdSAl Viro 	list_splice(&tmp_list, kill);
11451da177e4SLinus Torvalds }
11461da177e4SLinus Torvalds 
1147692afc31SAl Viro static void shrink_submounts(struct mount *mnt, struct list_head *umounts);
1148c35038beSAl Viro 
11491ab59738SAl Viro static int do_umount(struct mount *mnt, int flags)
11501da177e4SLinus Torvalds {
11511ab59738SAl Viro 	struct super_block *sb = mnt->mnt.mnt_sb;
11521da177e4SLinus Torvalds 	int retval;
115370fbcdf4SRam Pai 	LIST_HEAD(umount_list);
11541da177e4SLinus Torvalds 
11551ab59738SAl Viro 	retval = security_sb_umount(&mnt->mnt, flags);
11561da177e4SLinus Torvalds 	if (retval)
11571da177e4SLinus Torvalds 		return retval;
11581da177e4SLinus Torvalds 
11591da177e4SLinus Torvalds 	/*
11601da177e4SLinus Torvalds 	 * Allow userspace to request a mountpoint be expired rather than
11611da177e4SLinus Torvalds 	 * unmounting unconditionally. Unmount only happens if:
11621da177e4SLinus Torvalds 	 *  (1) the mark is already set (the mark is cleared by mntput())
11631da177e4SLinus Torvalds 	 *  (2) the usage count == 1 [parent vfsmount] + 1 [sys_umount]
11641da177e4SLinus Torvalds 	 */
11651da177e4SLinus Torvalds 	if (flags & MNT_EXPIRE) {
11661ab59738SAl Viro 		if (&mnt->mnt == current->fs->root.mnt ||
11671da177e4SLinus Torvalds 		    flags & (MNT_FORCE | MNT_DETACH))
11681da177e4SLinus Torvalds 			return -EINVAL;
11691da177e4SLinus Torvalds 
1170b3e19d92SNick Piggin 		/*
1171b3e19d92SNick Piggin 		 * probably don't strictly need the lock here if we examined
1172b3e19d92SNick Piggin 		 * all race cases, but it's a slowpath.
1173b3e19d92SNick Piggin 		 */
1174962830dfSAndi Kleen 		br_write_lock(&vfsmount_lock);
117583adc753SAl Viro 		if (mnt_get_count(mnt) != 2) {
1176962830dfSAndi Kleen 			br_write_unlock(&vfsmount_lock);
11771da177e4SLinus Torvalds 			return -EBUSY;
1178b3e19d92SNick Piggin 		}
1179962830dfSAndi Kleen 		br_write_unlock(&vfsmount_lock);
11801da177e4SLinus Torvalds 
1181863d684fSAl Viro 		if (!xchg(&mnt->mnt_expiry_mark, 1))
11821da177e4SLinus Torvalds 			return -EAGAIN;
11831da177e4SLinus Torvalds 	}
11841da177e4SLinus Torvalds 
11851da177e4SLinus Torvalds 	/*
11861da177e4SLinus Torvalds 	 * If we may have to abort operations to get out of this
11871da177e4SLinus Torvalds 	 * mount, and they will themselves hold resources we must
11881da177e4SLinus Torvalds 	 * allow the fs to do things. In the Unix tradition of
11891da177e4SLinus Torvalds 	 * 'Gee thats tricky lets do it in userspace' the umount_begin
11901da177e4SLinus Torvalds 	 * might fail to complete on the first run through as other tasks
11911da177e4SLinus Torvalds 	 * must return, and the like. Thats for the mount program to worry
11921da177e4SLinus Torvalds 	 * about for the moment.
11931da177e4SLinus Torvalds 	 */
11941da177e4SLinus Torvalds 
119542faad99SAl Viro 	if (flags & MNT_FORCE && sb->s_op->umount_begin) {
119642faad99SAl Viro 		sb->s_op->umount_begin(sb);
119742faad99SAl Viro 	}
11981da177e4SLinus Torvalds 
11991da177e4SLinus Torvalds 	/*
12001da177e4SLinus Torvalds 	 * No sense to grab the lock for this test, but test itself looks
12011da177e4SLinus Torvalds 	 * somewhat bogus. Suggestions for better replacement?
12021da177e4SLinus Torvalds 	 * Ho-hum... In principle, we might treat that as umount + switch
12031da177e4SLinus Torvalds 	 * to rootfs. GC would eventually take care of the old vfsmount.
12041da177e4SLinus Torvalds 	 * Actually it makes sense, especially if rootfs would contain a
12051da177e4SLinus Torvalds 	 * /reboot - static binary that would close all descriptors and
12061da177e4SLinus Torvalds 	 * call reboot(9). Then init(8) could umount root and exec /reboot.
12071da177e4SLinus Torvalds 	 */
12081ab59738SAl Viro 	if (&mnt->mnt == current->fs->root.mnt && !(flags & MNT_DETACH)) {
12091da177e4SLinus Torvalds 		/*
12101da177e4SLinus Torvalds 		 * Special case for "unmounting" root ...
12111da177e4SLinus Torvalds 		 * we just try to remount it readonly.
12121da177e4SLinus Torvalds 		 */
12131da177e4SLinus Torvalds 		down_write(&sb->s_umount);
12144aa98cf7SAl Viro 		if (!(sb->s_flags & MS_RDONLY))
12151da177e4SLinus Torvalds 			retval = do_remount_sb(sb, MS_RDONLY, NULL, 0);
12161da177e4SLinus Torvalds 		up_write(&sb->s_umount);
12171da177e4SLinus Torvalds 		return retval;
12181da177e4SLinus Torvalds 	}
12191da177e4SLinus Torvalds 
1220390c6843SRam Pai 	down_write(&namespace_sem);
1221962830dfSAndi Kleen 	br_write_lock(&vfsmount_lock);
12225addc5ddSAl Viro 	event++;
12231da177e4SLinus Torvalds 
1224c35038beSAl Viro 	if (!(flags & MNT_DETACH))
12251ab59738SAl Viro 		shrink_submounts(mnt, &umount_list);
1226c35038beSAl Viro 
12271da177e4SLinus Torvalds 	retval = -EBUSY;
1228a05964f3SRam Pai 	if (flags & MNT_DETACH || !propagate_mount_busy(mnt, 2)) {
12291a4eeaf2SAl Viro 		if (!list_empty(&mnt->mnt_list))
12301ab59738SAl Viro 			umount_tree(mnt, 1, &umount_list);
12311da177e4SLinus Torvalds 		retval = 0;
12321da177e4SLinus Torvalds 	}
1233962830dfSAndi Kleen 	br_write_unlock(&vfsmount_lock);
1234390c6843SRam Pai 	up_write(&namespace_sem);
123570fbcdf4SRam Pai 	release_mounts(&umount_list);
12361da177e4SLinus Torvalds 	return retval;
12371da177e4SLinus Torvalds }
12381da177e4SLinus Torvalds 
12391da177e4SLinus Torvalds /*
12401da177e4SLinus Torvalds  * Now umount can handle mount points as well as block devices.
12411da177e4SLinus Torvalds  * This is important for filesystems which use unnamed block devices.
12421da177e4SLinus Torvalds  *
12431da177e4SLinus Torvalds  * We now support a flag for forced unmount like the other 'big iron'
12441da177e4SLinus Torvalds  * unixes. Our API is identical to OSF/1 to avoid making a mess of AMD
12451da177e4SLinus Torvalds  */
12461da177e4SLinus Torvalds 
1247bdc480e3SHeiko Carstens SYSCALL_DEFINE2(umount, char __user *, name, int, flags)
12481da177e4SLinus Torvalds {
12492d8f3038SAl Viro 	struct path path;
1250900148dcSAl Viro 	struct mount *mnt;
12511da177e4SLinus Torvalds 	int retval;
1252db1f05bbSMiklos Szeredi 	int lookup_flags = 0;
12531da177e4SLinus Torvalds 
1254db1f05bbSMiklos Szeredi 	if (flags & ~(MNT_FORCE | MNT_DETACH | MNT_EXPIRE | UMOUNT_NOFOLLOW))
1255db1f05bbSMiklos Szeredi 		return -EINVAL;
1256db1f05bbSMiklos Szeredi 
1257db1f05bbSMiklos Szeredi 	if (!(flags & UMOUNT_NOFOLLOW))
1258db1f05bbSMiklos Szeredi 		lookup_flags |= LOOKUP_FOLLOW;
1259db1f05bbSMiklos Szeredi 
1260db1f05bbSMiklos Szeredi 	retval = user_path_at(AT_FDCWD, name, lookup_flags, &path);
12611da177e4SLinus Torvalds 	if (retval)
12621da177e4SLinus Torvalds 		goto out;
1263900148dcSAl Viro 	mnt = real_mount(path.mnt);
12641da177e4SLinus Torvalds 	retval = -EINVAL;
12652d8f3038SAl Viro 	if (path.dentry != path.mnt->mnt_root)
12661da177e4SLinus Torvalds 		goto dput_and_out;
1267143c8c91SAl Viro 	if (!check_mnt(mnt))
12681da177e4SLinus Torvalds 		goto dput_and_out;
12691da177e4SLinus Torvalds 
12701da177e4SLinus Torvalds 	retval = -EPERM;
12711da177e4SLinus Torvalds 	if (!capable(CAP_SYS_ADMIN))
12721da177e4SLinus Torvalds 		goto dput_and_out;
12731da177e4SLinus Torvalds 
1274900148dcSAl Viro 	retval = do_umount(mnt, flags);
12751da177e4SLinus Torvalds dput_and_out:
1276429731b1SJan Blunck 	/* we mustn't call path_put() as that would clear mnt_expiry_mark */
12772d8f3038SAl Viro 	dput(path.dentry);
1278900148dcSAl Viro 	mntput_no_expire(mnt);
12791da177e4SLinus Torvalds out:
12801da177e4SLinus Torvalds 	return retval;
12811da177e4SLinus Torvalds }
12821da177e4SLinus Torvalds 
12831da177e4SLinus Torvalds #ifdef __ARCH_WANT_SYS_OLDUMOUNT
12841da177e4SLinus Torvalds 
12851da177e4SLinus Torvalds /*
12861da177e4SLinus Torvalds  *	The 2.0 compatible umount. No flags.
12871da177e4SLinus Torvalds  */
1288bdc480e3SHeiko Carstens SYSCALL_DEFINE1(oldumount, char __user *, name)
12891da177e4SLinus Torvalds {
12901da177e4SLinus Torvalds 	return sys_umount(name, 0);
12911da177e4SLinus Torvalds }
12921da177e4SLinus Torvalds 
12931da177e4SLinus Torvalds #endif
12941da177e4SLinus Torvalds 
12952d92ab3cSAl Viro static int mount_is_safe(struct path *path)
12961da177e4SLinus Torvalds {
12971da177e4SLinus Torvalds 	if (capable(CAP_SYS_ADMIN))
12981da177e4SLinus Torvalds 		return 0;
12991da177e4SLinus Torvalds 	return -EPERM;
13001da177e4SLinus Torvalds #ifdef notyet
13012d92ab3cSAl Viro 	if (S_ISLNK(path->dentry->d_inode->i_mode))
13021da177e4SLinus Torvalds 		return -EPERM;
13032d92ab3cSAl Viro 	if (path->dentry->d_inode->i_mode & S_ISVTX) {
1304da9592edSDavid Howells 		if (current_uid() != path->dentry->d_inode->i_uid)
13051da177e4SLinus Torvalds 			return -EPERM;
13061da177e4SLinus Torvalds 	}
13072d92ab3cSAl Viro 	if (inode_permission(path->dentry->d_inode, MAY_WRITE))
13081da177e4SLinus Torvalds 		return -EPERM;
13091da177e4SLinus Torvalds 	return 0;
13101da177e4SLinus Torvalds #endif
13111da177e4SLinus Torvalds }
13121da177e4SLinus Torvalds 
13138823c079SEric W. Biederman static bool mnt_ns_loop(struct path *path)
13148823c079SEric W. Biederman {
13158823c079SEric W. Biederman 	/* Could bind mounting the mount namespace inode cause a
13168823c079SEric W. Biederman 	 * mount namespace loop?
13178823c079SEric W. Biederman 	 */
13188823c079SEric W. Biederman 	struct inode *inode = path->dentry->d_inode;
13198823c079SEric W. Biederman 	struct proc_inode *ei;
13208823c079SEric W. Biederman 	struct mnt_namespace *mnt_ns;
13218823c079SEric W. Biederman 
13228823c079SEric W. Biederman 	if (!proc_ns_inode(inode))
13238823c079SEric W. Biederman 		return false;
13248823c079SEric W. Biederman 
13258823c079SEric W. Biederman 	ei = PROC_I(inode);
13268823c079SEric W. Biederman 	if (ei->ns_ops != &mntns_operations)
13278823c079SEric W. Biederman 		return false;
13288823c079SEric W. Biederman 
13298823c079SEric W. Biederman 	mnt_ns = ei->ns;
13308823c079SEric W. Biederman 	return current->nsproxy->mnt_ns->seq >= mnt_ns->seq;
13318823c079SEric W. Biederman }
13328823c079SEric W. Biederman 
133387129cc0SAl Viro struct mount *copy_tree(struct mount *mnt, struct dentry *dentry,
133436341f64SRam Pai 					int flag)
13351da177e4SLinus Torvalds {
1336a73324daSAl Viro 	struct mount *res, *p, *q, *r;
13371a390689SAl Viro 	struct path path;
13381da177e4SLinus Torvalds 
1339fc7be130SAl Viro 	if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(mnt))
1340be34d1a3SDavid Howells 		return ERR_PTR(-EINVAL);
13419676f0c6SRam Pai 
134236341f64SRam Pai 	res = q = clone_mnt(mnt, dentry, flag);
1343be34d1a3SDavid Howells 	if (IS_ERR(q))
1344be34d1a3SDavid Howells 		return q;
1345be34d1a3SDavid Howells 
1346a73324daSAl Viro 	q->mnt_mountpoint = mnt->mnt_mountpoint;
13471da177e4SLinus Torvalds 
13481da177e4SLinus Torvalds 	p = mnt;
13496b41d536SAl Viro 	list_for_each_entry(r, &mnt->mnt_mounts, mnt_child) {
1350315fc83eSAl Viro 		struct mount *s;
13517ec02ef1SJan Blunck 		if (!is_subdir(r->mnt_mountpoint, dentry))
13521da177e4SLinus Torvalds 			continue;
13531da177e4SLinus Torvalds 
1354909b0a88SAl Viro 		for (s = r; s; s = next_mnt(s, r)) {
1355fc7be130SAl Viro 			if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(s)) {
13569676f0c6SRam Pai 				s = skip_mnt_tree(s);
13579676f0c6SRam Pai 				continue;
13589676f0c6SRam Pai 			}
13590714a533SAl Viro 			while (p != s->mnt_parent) {
13600714a533SAl Viro 				p = p->mnt_parent;
13610714a533SAl Viro 				q = q->mnt_parent;
13621da177e4SLinus Torvalds 			}
136387129cc0SAl Viro 			p = s;
1364cb338d06SAl Viro 			path.mnt = &q->mnt;
1365a73324daSAl Viro 			path.dentry = p->mnt_mountpoint;
136687129cc0SAl Viro 			q = clone_mnt(p, p->mnt.mnt_root, flag);
1367be34d1a3SDavid Howells 			if (IS_ERR(q))
1368be34d1a3SDavid Howells 				goto out;
1369962830dfSAndi Kleen 			br_write_lock(&vfsmount_lock);
13701a4eeaf2SAl Viro 			list_add_tail(&q->mnt_list, &res->mnt_list);
1371cb338d06SAl Viro 			attach_mnt(q, &path);
1372962830dfSAndi Kleen 			br_write_unlock(&vfsmount_lock);
13731da177e4SLinus Torvalds 		}
13741da177e4SLinus Torvalds 	}
13751da177e4SLinus Torvalds 	return res;
1376be34d1a3SDavid Howells out:
13771da177e4SLinus Torvalds 	if (res) {
137870fbcdf4SRam Pai 		LIST_HEAD(umount_list);
1379962830dfSAndi Kleen 		br_write_lock(&vfsmount_lock);
1380761d5c38SAl Viro 		umount_tree(res, 0, &umount_list);
1381962830dfSAndi Kleen 		br_write_unlock(&vfsmount_lock);
138270fbcdf4SRam Pai 		release_mounts(&umount_list);
13831da177e4SLinus Torvalds 	}
1384be34d1a3SDavid Howells 	return q;
13851da177e4SLinus Torvalds }
13861da177e4SLinus Torvalds 
1387be34d1a3SDavid Howells /* Caller should check returned pointer for errors */
1388be34d1a3SDavid Howells 
1389589ff870SAl Viro struct vfsmount *collect_mounts(struct path *path)
13908aec0809SAl Viro {
1391cb338d06SAl Viro 	struct mount *tree;
13921a60a280SAl Viro 	down_write(&namespace_sem);
139387129cc0SAl Viro 	tree = copy_tree(real_mount(path->mnt), path->dentry,
139487129cc0SAl Viro 			 CL_COPY_ALL | CL_PRIVATE);
13951a60a280SAl Viro 	up_write(&namespace_sem);
1396be34d1a3SDavid Howells 	if (IS_ERR(tree))
1397be34d1a3SDavid Howells 		return NULL;
1398be34d1a3SDavid Howells 	return &tree->mnt;
13998aec0809SAl Viro }
14008aec0809SAl Viro 
14018aec0809SAl Viro void drop_collected_mounts(struct vfsmount *mnt)
14028aec0809SAl Viro {
14038aec0809SAl Viro 	LIST_HEAD(umount_list);
14041a60a280SAl Viro 	down_write(&namespace_sem);
1405962830dfSAndi Kleen 	br_write_lock(&vfsmount_lock);
1406761d5c38SAl Viro 	umount_tree(real_mount(mnt), 0, &umount_list);
1407962830dfSAndi Kleen 	br_write_unlock(&vfsmount_lock);
14081a60a280SAl Viro 	up_write(&namespace_sem);
14098aec0809SAl Viro 	release_mounts(&umount_list);
14108aec0809SAl Viro }
14118aec0809SAl Viro 
14121f707137SAl Viro int iterate_mounts(int (*f)(struct vfsmount *, void *), void *arg,
14131f707137SAl Viro 		   struct vfsmount *root)
14141f707137SAl Viro {
14151a4eeaf2SAl Viro 	struct mount *mnt;
14161f707137SAl Viro 	int res = f(root, arg);
14171f707137SAl Viro 	if (res)
14181f707137SAl Viro 		return res;
14191a4eeaf2SAl Viro 	list_for_each_entry(mnt, &real_mount(root)->mnt_list, mnt_list) {
14201a4eeaf2SAl Viro 		res = f(&mnt->mnt, arg);
14211f707137SAl Viro 		if (res)
14221f707137SAl Viro 			return res;
14231f707137SAl Viro 	}
14241f707137SAl Viro 	return 0;
14251f707137SAl Viro }
14261f707137SAl Viro 
14274b8b21f4SAl Viro static void cleanup_group_ids(struct mount *mnt, struct mount *end)
1428719f5d7fSMiklos Szeredi {
1429315fc83eSAl Viro 	struct mount *p;
1430719f5d7fSMiklos Szeredi 
1431909b0a88SAl Viro 	for (p = mnt; p != end; p = next_mnt(p, mnt)) {
1432fc7be130SAl Viro 		if (p->mnt_group_id && !IS_MNT_SHARED(p))
14334b8b21f4SAl Viro 			mnt_release_group_id(p);
1434719f5d7fSMiklos Szeredi 	}
1435719f5d7fSMiklos Szeredi }
1436719f5d7fSMiklos Szeredi 
14374b8b21f4SAl Viro static int invent_group_ids(struct mount *mnt, bool recurse)
1438719f5d7fSMiklos Szeredi {
1439315fc83eSAl Viro 	struct mount *p;
1440719f5d7fSMiklos Szeredi 
1441909b0a88SAl Viro 	for (p = mnt; p; p = recurse ? next_mnt(p, mnt) : NULL) {
1442fc7be130SAl Viro 		if (!p->mnt_group_id && !IS_MNT_SHARED(p)) {
14434b8b21f4SAl Viro 			int err = mnt_alloc_group_id(p);
1444719f5d7fSMiklos Szeredi 			if (err) {
14454b8b21f4SAl Viro 				cleanup_group_ids(mnt, p);
1446719f5d7fSMiklos Szeredi 				return err;
1447719f5d7fSMiklos Szeredi 			}
1448719f5d7fSMiklos Szeredi 		}
1449719f5d7fSMiklos Szeredi 	}
1450719f5d7fSMiklos Szeredi 
1451719f5d7fSMiklos Szeredi 	return 0;
1452719f5d7fSMiklos Szeredi }
1453719f5d7fSMiklos Szeredi 
1454b90fa9aeSRam Pai /*
1455b90fa9aeSRam Pai  *  @source_mnt : mount tree to be attached
1456b90fa9aeSRam Pai  *  @nd         : place the mount tree @source_mnt is attached
145721444403SRam Pai  *  @parent_nd  : if non-null, detach the source_mnt from its parent and
145821444403SRam Pai  *  		   store the parent mount and mountpoint dentry.
145921444403SRam Pai  *  		   (done when source_mnt is moved)
1460b90fa9aeSRam Pai  *
1461b90fa9aeSRam Pai  *  NOTE: in the table below explains the semantics when a source mount
1462b90fa9aeSRam Pai  *  of a given type is attached to a destination mount of a given type.
14639676f0c6SRam Pai  * ---------------------------------------------------------------------------
1464b90fa9aeSRam Pai  * |         BIND MOUNT OPERATION                                            |
14659676f0c6SRam Pai  * |**************************************************************************
14669676f0c6SRam Pai  * | source-->| shared        |       private  |       slave    | unbindable |
14679676f0c6SRam Pai  * | dest     |               |                |                |            |
14689676f0c6SRam Pai  * |   |      |               |                |                |            |
14699676f0c6SRam Pai  * |   v      |               |                |                |            |
14709676f0c6SRam Pai  * |**************************************************************************
14719676f0c6SRam Pai  * |  shared  | shared (++)   |     shared (+) |     shared(+++)|  invalid   |
14725afe0022SRam Pai  * |          |               |                |                |            |
14739676f0c6SRam Pai  * |non-shared| shared (+)    |      private   |      slave (*) |  invalid   |
14749676f0c6SRam Pai  * ***************************************************************************
1475b90fa9aeSRam Pai  * A bind operation clones the source mount and mounts the clone on the
1476b90fa9aeSRam Pai  * destination mount.
1477b90fa9aeSRam Pai  *
1478b90fa9aeSRam Pai  * (++)  the cloned mount is propagated to all the mounts in the propagation
1479b90fa9aeSRam Pai  * 	 tree of the destination mount and the cloned mount is added to
1480b90fa9aeSRam Pai  * 	 the peer group of the source mount.
1481b90fa9aeSRam Pai  * (+)   the cloned mount is created under the destination mount and is marked
1482b90fa9aeSRam Pai  *       as shared. The cloned mount is added to the peer group of the source
1483b90fa9aeSRam Pai  *       mount.
14845afe0022SRam Pai  * (+++) the mount is propagated to all the mounts in the propagation tree
14855afe0022SRam Pai  *       of the destination mount and the cloned mount is made slave
14865afe0022SRam Pai  *       of the same master as that of the source mount. The cloned mount
14875afe0022SRam Pai  *       is marked as 'shared and slave'.
14885afe0022SRam Pai  * (*)   the cloned mount is made a slave of the same master as that of the
14895afe0022SRam Pai  * 	 source mount.
14905afe0022SRam Pai  *
14919676f0c6SRam Pai  * ---------------------------------------------------------------------------
149221444403SRam Pai  * |         		MOVE MOUNT OPERATION                                 |
14939676f0c6SRam Pai  * |**************************************************************************
14949676f0c6SRam Pai  * | source-->| shared        |       private  |       slave    | unbindable |
14959676f0c6SRam Pai  * | dest     |               |                |                |            |
14969676f0c6SRam Pai  * |   |      |               |                |                |            |
14979676f0c6SRam Pai  * |   v      |               |                |                |            |
14989676f0c6SRam Pai  * |**************************************************************************
14999676f0c6SRam Pai  * |  shared  | shared (+)    |     shared (+) |    shared(+++) |  invalid   |
15005afe0022SRam Pai  * |          |               |                |                |            |
15019676f0c6SRam Pai  * |non-shared| shared (+*)   |      private   |    slave (*)   | unbindable |
15029676f0c6SRam Pai  * ***************************************************************************
15035afe0022SRam Pai  *
15045afe0022SRam Pai  * (+)  the mount is moved to the destination. And is then propagated to
15055afe0022SRam Pai  * 	all the mounts in the propagation tree of the destination mount.
150621444403SRam Pai  * (+*)  the mount is moved to the destination.
15075afe0022SRam Pai  * (+++)  the mount is moved to the destination and is then propagated to
15085afe0022SRam Pai  * 	all the mounts belonging to the destination mount's propagation tree.
15095afe0022SRam Pai  * 	the mount is marked as 'shared and slave'.
15105afe0022SRam Pai  * (*)	the mount continues to be a slave at the new location.
1511b90fa9aeSRam Pai  *
1512b90fa9aeSRam Pai  * if the source mount is a tree, the operations explained above is
1513b90fa9aeSRam Pai  * applied to each mount in the tree.
1514b90fa9aeSRam Pai  * Must be called without spinlocks held, since this function can sleep
1515b90fa9aeSRam Pai  * in allocations.
1516b90fa9aeSRam Pai  */
15170fb54e50SAl Viro static int attach_recursive_mnt(struct mount *source_mnt,
15181a390689SAl Viro 			struct path *path, struct path *parent_path)
1519b90fa9aeSRam Pai {
1520b90fa9aeSRam Pai 	LIST_HEAD(tree_list);
1521a8d56d8eSAl Viro 	struct mount *dest_mnt = real_mount(path->mnt);
15221a390689SAl Viro 	struct dentry *dest_dentry = path->dentry;
1523315fc83eSAl Viro 	struct mount *child, *p;
1524719f5d7fSMiklos Szeredi 	int err;
1525b90fa9aeSRam Pai 
1526fc7be130SAl Viro 	if (IS_MNT_SHARED(dest_mnt)) {
15270fb54e50SAl Viro 		err = invent_group_ids(source_mnt, true);
1528719f5d7fSMiklos Szeredi 		if (err)
1529719f5d7fSMiklos Szeredi 			goto out;
1530719f5d7fSMiklos Szeredi 	}
1531a8d56d8eSAl Viro 	err = propagate_mnt(dest_mnt, dest_dentry, source_mnt, &tree_list);
1532719f5d7fSMiklos Szeredi 	if (err)
1533719f5d7fSMiklos Szeredi 		goto out_cleanup_ids;
1534b90fa9aeSRam Pai 
1535962830dfSAndi Kleen 	br_write_lock(&vfsmount_lock);
1536df1a1ad2SAl Viro 
1537fc7be130SAl Viro 	if (IS_MNT_SHARED(dest_mnt)) {
1538909b0a88SAl Viro 		for (p = source_mnt; p; p = next_mnt(p, source_mnt))
15390f0afb1dSAl Viro 			set_mnt_shared(p);
1540b90fa9aeSRam Pai 	}
15411a390689SAl Viro 	if (parent_path) {
15420fb54e50SAl Viro 		detach_mnt(source_mnt, parent_path);
15430fb54e50SAl Viro 		attach_mnt(source_mnt, path);
1544143c8c91SAl Viro 		touch_mnt_namespace(source_mnt->mnt_ns);
154521444403SRam Pai 	} else {
154614cf1fa8SAl Viro 		mnt_set_mountpoint(dest_mnt, dest_dentry, source_mnt);
15470fb54e50SAl Viro 		commit_tree(source_mnt);
154821444403SRam Pai 	}
1549b90fa9aeSRam Pai 
15501b8e5564SAl Viro 	list_for_each_entry_safe(child, p, &tree_list, mnt_hash) {
15511b8e5564SAl Viro 		list_del_init(&child->mnt_hash);
15524b2619a5SAl Viro 		commit_tree(child);
1553b90fa9aeSRam Pai 	}
1554962830dfSAndi Kleen 	br_write_unlock(&vfsmount_lock);
155599b7db7bSNick Piggin 
1556b90fa9aeSRam Pai 	return 0;
1557719f5d7fSMiklos Szeredi 
1558719f5d7fSMiklos Szeredi  out_cleanup_ids:
1559fc7be130SAl Viro 	if (IS_MNT_SHARED(dest_mnt))
15600fb54e50SAl Viro 		cleanup_group_ids(source_mnt, NULL);
1561719f5d7fSMiklos Szeredi  out:
1562719f5d7fSMiklos Szeredi 	return err;
1563b90fa9aeSRam Pai }
1564b90fa9aeSRam Pai 
1565b12cea91SAl Viro static int lock_mount(struct path *path)
1566b12cea91SAl Viro {
1567b12cea91SAl Viro 	struct vfsmount *mnt;
1568b12cea91SAl Viro retry:
1569b12cea91SAl Viro 	mutex_lock(&path->dentry->d_inode->i_mutex);
1570b12cea91SAl Viro 	if (unlikely(cant_mount(path->dentry))) {
1571b12cea91SAl Viro 		mutex_unlock(&path->dentry->d_inode->i_mutex);
1572b12cea91SAl Viro 		return -ENOENT;
1573b12cea91SAl Viro 	}
1574b12cea91SAl Viro 	down_write(&namespace_sem);
1575b12cea91SAl Viro 	mnt = lookup_mnt(path);
1576b12cea91SAl Viro 	if (likely(!mnt))
1577b12cea91SAl Viro 		return 0;
1578b12cea91SAl Viro 	up_write(&namespace_sem);
1579b12cea91SAl Viro 	mutex_unlock(&path->dentry->d_inode->i_mutex);
1580b12cea91SAl Viro 	path_put(path);
1581b12cea91SAl Viro 	path->mnt = mnt;
1582b12cea91SAl Viro 	path->dentry = dget(mnt->mnt_root);
1583b12cea91SAl Viro 	goto retry;
1584b12cea91SAl Viro }
1585b12cea91SAl Viro 
1586b12cea91SAl Viro static void unlock_mount(struct path *path)
1587b12cea91SAl Viro {
1588b12cea91SAl Viro 	up_write(&namespace_sem);
1589b12cea91SAl Viro 	mutex_unlock(&path->dentry->d_inode->i_mutex);
1590b12cea91SAl Viro }
1591b12cea91SAl Viro 
159295bc5f25SAl Viro static int graft_tree(struct mount *mnt, struct path *path)
15931da177e4SLinus Torvalds {
159495bc5f25SAl Viro 	if (mnt->mnt.mnt_sb->s_flags & MS_NOUSER)
15951da177e4SLinus Torvalds 		return -EINVAL;
15961da177e4SLinus Torvalds 
15978c3ee42eSAl Viro 	if (S_ISDIR(path->dentry->d_inode->i_mode) !=
159895bc5f25SAl Viro 	      S_ISDIR(mnt->mnt.mnt_root->d_inode->i_mode))
15991da177e4SLinus Torvalds 		return -ENOTDIR;
16001da177e4SLinus Torvalds 
1601b12cea91SAl Viro 	if (d_unlinked(path->dentry))
1602b12cea91SAl Viro 		return -ENOENT;
16031da177e4SLinus Torvalds 
160495bc5f25SAl Viro 	return attach_recursive_mnt(mnt, path, NULL);
16051da177e4SLinus Torvalds }
16061da177e4SLinus Torvalds 
16071da177e4SLinus Torvalds /*
16087a2e8a8fSValerie Aurora  * Sanity check the flags to change_mnt_propagation.
16097a2e8a8fSValerie Aurora  */
16107a2e8a8fSValerie Aurora 
16117a2e8a8fSValerie Aurora static int flags_to_propagation_type(int flags)
16127a2e8a8fSValerie Aurora {
16137c6e984dSRoman Borisov 	int type = flags & ~(MS_REC | MS_SILENT);
16147a2e8a8fSValerie Aurora 
16157a2e8a8fSValerie Aurora 	/* Fail if any non-propagation flags are set */
16167a2e8a8fSValerie Aurora 	if (type & ~(MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
16177a2e8a8fSValerie Aurora 		return 0;
16187a2e8a8fSValerie Aurora 	/* Only one propagation flag should be set */
16197a2e8a8fSValerie Aurora 	if (!is_power_of_2(type))
16207a2e8a8fSValerie Aurora 		return 0;
16217a2e8a8fSValerie Aurora 	return type;
16227a2e8a8fSValerie Aurora }
16237a2e8a8fSValerie Aurora 
16247a2e8a8fSValerie Aurora /*
162507b20889SRam Pai  * recursively change the type of the mountpoint.
162607b20889SRam Pai  */
16270a0d8a46SAl Viro static int do_change_type(struct path *path, int flag)
162807b20889SRam Pai {
1629315fc83eSAl Viro 	struct mount *m;
16304b8b21f4SAl Viro 	struct mount *mnt = real_mount(path->mnt);
163107b20889SRam Pai 	int recurse = flag & MS_REC;
16327a2e8a8fSValerie Aurora 	int type;
1633719f5d7fSMiklos Szeredi 	int err = 0;
163407b20889SRam Pai 
1635ee6f9582SMiklos Szeredi 	if (!capable(CAP_SYS_ADMIN))
1636ee6f9582SMiklos Szeredi 		return -EPERM;
1637ee6f9582SMiklos Szeredi 
16382d92ab3cSAl Viro 	if (path->dentry != path->mnt->mnt_root)
163907b20889SRam Pai 		return -EINVAL;
164007b20889SRam Pai 
16417a2e8a8fSValerie Aurora 	type = flags_to_propagation_type(flag);
16427a2e8a8fSValerie Aurora 	if (!type)
16437a2e8a8fSValerie Aurora 		return -EINVAL;
16447a2e8a8fSValerie Aurora 
164507b20889SRam Pai 	down_write(&namespace_sem);
1646719f5d7fSMiklos Szeredi 	if (type == MS_SHARED) {
1647719f5d7fSMiklos Szeredi 		err = invent_group_ids(mnt, recurse);
1648719f5d7fSMiklos Szeredi 		if (err)
1649719f5d7fSMiklos Szeredi 			goto out_unlock;
1650719f5d7fSMiklos Szeredi 	}
1651719f5d7fSMiklos Szeredi 
1652962830dfSAndi Kleen 	br_write_lock(&vfsmount_lock);
1653909b0a88SAl Viro 	for (m = mnt; m; m = (recurse ? next_mnt(m, mnt) : NULL))
16540f0afb1dSAl Viro 		change_mnt_propagation(m, type);
1655962830dfSAndi Kleen 	br_write_unlock(&vfsmount_lock);
1656719f5d7fSMiklos Szeredi 
1657719f5d7fSMiklos Szeredi  out_unlock:
165807b20889SRam Pai 	up_write(&namespace_sem);
1659719f5d7fSMiklos Szeredi 	return err;
166007b20889SRam Pai }
166107b20889SRam Pai 
166207b20889SRam Pai /*
16631da177e4SLinus Torvalds  * do loopback mount.
16641da177e4SLinus Torvalds  */
1665808d4e3cSAl Viro static int do_loopback(struct path *path, const char *old_name,
16662dafe1c4SEric Sandeen 				int recurse)
16671da177e4SLinus Torvalds {
1668b12cea91SAl Viro 	LIST_HEAD(umount_list);
16692d92ab3cSAl Viro 	struct path old_path;
167087129cc0SAl Viro 	struct mount *mnt = NULL, *old;
16712d92ab3cSAl Viro 	int err = mount_is_safe(path);
16721da177e4SLinus Torvalds 	if (err)
16731da177e4SLinus Torvalds 		return err;
16741da177e4SLinus Torvalds 	if (!old_name || !*old_name)
16751da177e4SLinus Torvalds 		return -EINVAL;
1676815d405cSTrond Myklebust 	err = kern_path(old_name, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &old_path);
16771da177e4SLinus Torvalds 	if (err)
16781da177e4SLinus Torvalds 		return err;
16791da177e4SLinus Torvalds 
16808823c079SEric W. Biederman 	err = -EINVAL;
16818823c079SEric W. Biederman 	if (mnt_ns_loop(&old_path))
16828823c079SEric W. Biederman 		goto out;
16838823c079SEric W. Biederman 
1684b12cea91SAl Viro 	err = lock_mount(path);
1685b12cea91SAl Viro 	if (err)
16869676f0c6SRam Pai 		goto out;
16879676f0c6SRam Pai 
168887129cc0SAl Viro 	old = real_mount(old_path.mnt);
168987129cc0SAl Viro 
1690b12cea91SAl Viro 	err = -EINVAL;
1691fc7be130SAl Viro 	if (IS_MNT_UNBINDABLE(old))
1692b12cea91SAl Viro 		goto out2;
1693b12cea91SAl Viro 
1694143c8c91SAl Viro 	if (!check_mnt(real_mount(path->mnt)) || !check_mnt(old))
1695b12cea91SAl Viro 		goto out2;
1696ccd48bc7SAl Viro 
16971da177e4SLinus Torvalds 	if (recurse)
169887129cc0SAl Viro 		mnt = copy_tree(old, old_path.dentry, 0);
16991da177e4SLinus Torvalds 	else
170087129cc0SAl Viro 		mnt = clone_mnt(old, old_path.dentry, 0);
17011da177e4SLinus Torvalds 
1702be34d1a3SDavid Howells 	if (IS_ERR(mnt)) {
1703be34d1a3SDavid Howells 		err = PTR_ERR(mnt);
1704be34d1a3SDavid Howells 		goto out;
1705be34d1a3SDavid Howells 	}
1706ccd48bc7SAl Viro 
170795bc5f25SAl Viro 	err = graft_tree(mnt, path);
17081da177e4SLinus Torvalds 	if (err) {
1709962830dfSAndi Kleen 		br_write_lock(&vfsmount_lock);
1710761d5c38SAl Viro 		umount_tree(mnt, 0, &umount_list);
1711962830dfSAndi Kleen 		br_write_unlock(&vfsmount_lock);
17125b83d2c5SRam Pai 	}
1713b12cea91SAl Viro out2:
1714b12cea91SAl Viro 	unlock_mount(path);
1715b12cea91SAl Viro 	release_mounts(&umount_list);
1716ccd48bc7SAl Viro out:
17172d92ab3cSAl Viro 	path_put(&old_path);
17181da177e4SLinus Torvalds 	return err;
17191da177e4SLinus Torvalds }
17201da177e4SLinus Torvalds 
17212e4b7fcdSDave Hansen static int change_mount_flags(struct vfsmount *mnt, int ms_flags)
17222e4b7fcdSDave Hansen {
17232e4b7fcdSDave Hansen 	int error = 0;
17242e4b7fcdSDave Hansen 	int readonly_request = 0;
17252e4b7fcdSDave Hansen 
17262e4b7fcdSDave Hansen 	if (ms_flags & MS_RDONLY)
17272e4b7fcdSDave Hansen 		readonly_request = 1;
17282e4b7fcdSDave Hansen 	if (readonly_request == __mnt_is_readonly(mnt))
17292e4b7fcdSDave Hansen 		return 0;
17302e4b7fcdSDave Hansen 
17312e4b7fcdSDave Hansen 	if (readonly_request)
173283adc753SAl Viro 		error = mnt_make_readonly(real_mount(mnt));
17332e4b7fcdSDave Hansen 	else
173483adc753SAl Viro 		__mnt_unmake_readonly(real_mount(mnt));
17352e4b7fcdSDave Hansen 	return error;
17362e4b7fcdSDave Hansen }
17372e4b7fcdSDave Hansen 
17381da177e4SLinus Torvalds /*
17391da177e4SLinus Torvalds  * change filesystem flags. dir should be a physical root of filesystem.
17401da177e4SLinus Torvalds  * If you've mounted a non-root directory somewhere and want to do remount
17411da177e4SLinus Torvalds  * on it - tough luck.
17421da177e4SLinus Torvalds  */
17430a0d8a46SAl Viro static int do_remount(struct path *path, int flags, int mnt_flags,
17441da177e4SLinus Torvalds 		      void *data)
17451da177e4SLinus Torvalds {
17461da177e4SLinus Torvalds 	int err;
17472d92ab3cSAl Viro 	struct super_block *sb = path->mnt->mnt_sb;
1748143c8c91SAl Viro 	struct mount *mnt = real_mount(path->mnt);
17491da177e4SLinus Torvalds 
17501da177e4SLinus Torvalds 	if (!capable(CAP_SYS_ADMIN))
17511da177e4SLinus Torvalds 		return -EPERM;
17521da177e4SLinus Torvalds 
1753143c8c91SAl Viro 	if (!check_mnt(mnt))
17541da177e4SLinus Torvalds 		return -EINVAL;
17551da177e4SLinus Torvalds 
17562d92ab3cSAl Viro 	if (path->dentry != path->mnt->mnt_root)
17571da177e4SLinus Torvalds 		return -EINVAL;
17581da177e4SLinus Torvalds 
1759ff36fe2cSEric Paris 	err = security_sb_remount(sb, data);
1760ff36fe2cSEric Paris 	if (err)
1761ff36fe2cSEric Paris 		return err;
1762ff36fe2cSEric Paris 
17631da177e4SLinus Torvalds 	down_write(&sb->s_umount);
17642e4b7fcdSDave Hansen 	if (flags & MS_BIND)
17652d92ab3cSAl Viro 		err = change_mount_flags(path->mnt, flags);
17664aa98cf7SAl Viro 	else
17671da177e4SLinus Torvalds 		err = do_remount_sb(sb, flags, data, 0);
17687b43a79fSAl Viro 	if (!err) {
1769962830dfSAndi Kleen 		br_write_lock(&vfsmount_lock);
1770143c8c91SAl Viro 		mnt_flags |= mnt->mnt.mnt_flags & MNT_PROPAGATION_MASK;
1771143c8c91SAl Viro 		mnt->mnt.mnt_flags = mnt_flags;
1772962830dfSAndi Kleen 		br_write_unlock(&vfsmount_lock);
17737b43a79fSAl Viro 	}
17741da177e4SLinus Torvalds 	up_write(&sb->s_umount);
17750e55a7ccSDan Williams 	if (!err) {
1776962830dfSAndi Kleen 		br_write_lock(&vfsmount_lock);
1777143c8c91SAl Viro 		touch_mnt_namespace(mnt->mnt_ns);
1778962830dfSAndi Kleen 		br_write_unlock(&vfsmount_lock);
17790e55a7ccSDan Williams 	}
17801da177e4SLinus Torvalds 	return err;
17811da177e4SLinus Torvalds }
17821da177e4SLinus Torvalds 
1783cbbe362cSAl Viro static inline int tree_contains_unbindable(struct mount *mnt)
17849676f0c6SRam Pai {
1785315fc83eSAl Viro 	struct mount *p;
1786909b0a88SAl Viro 	for (p = mnt; p; p = next_mnt(p, mnt)) {
1787fc7be130SAl Viro 		if (IS_MNT_UNBINDABLE(p))
17889676f0c6SRam Pai 			return 1;
17899676f0c6SRam Pai 	}
17909676f0c6SRam Pai 	return 0;
17919676f0c6SRam Pai }
17929676f0c6SRam Pai 
1793808d4e3cSAl Viro static int do_move_mount(struct path *path, const char *old_name)
17941da177e4SLinus Torvalds {
17952d92ab3cSAl Viro 	struct path old_path, parent_path;
1796676da58dSAl Viro 	struct mount *p;
17970fb54e50SAl Viro 	struct mount *old;
17981da177e4SLinus Torvalds 	int err = 0;
17991da177e4SLinus Torvalds 	if (!capable(CAP_SYS_ADMIN))
18001da177e4SLinus Torvalds 		return -EPERM;
18011da177e4SLinus Torvalds 	if (!old_name || !*old_name)
18021da177e4SLinus Torvalds 		return -EINVAL;
18032d92ab3cSAl Viro 	err = kern_path(old_name, LOOKUP_FOLLOW, &old_path);
18041da177e4SLinus Torvalds 	if (err)
18051da177e4SLinus Torvalds 		return err;
18061da177e4SLinus Torvalds 
1807b12cea91SAl Viro 	err = lock_mount(path);
1808cc53ce53SDavid Howells 	if (err < 0)
1809cc53ce53SDavid Howells 		goto out;
1810cc53ce53SDavid Howells 
1811143c8c91SAl Viro 	old = real_mount(old_path.mnt);
1812fc7be130SAl Viro 	p = real_mount(path->mnt);
1813143c8c91SAl Viro 
18141da177e4SLinus Torvalds 	err = -EINVAL;
1815fc7be130SAl Viro 	if (!check_mnt(p) || !check_mnt(old))
18161da177e4SLinus Torvalds 		goto out1;
18171da177e4SLinus Torvalds 
1818f3da392eSAlexey Dobriyan 	if (d_unlinked(path->dentry))
181921444403SRam Pai 		goto out1;
18201da177e4SLinus Torvalds 
18211da177e4SLinus Torvalds 	err = -EINVAL;
18222d92ab3cSAl Viro 	if (old_path.dentry != old_path.mnt->mnt_root)
182321444403SRam Pai 		goto out1;
18241da177e4SLinus Torvalds 
1825676da58dSAl Viro 	if (!mnt_has_parent(old))
182621444403SRam Pai 		goto out1;
18271da177e4SLinus Torvalds 
18282d92ab3cSAl Viro 	if (S_ISDIR(path->dentry->d_inode->i_mode) !=
18292d92ab3cSAl Viro 	      S_ISDIR(old_path.dentry->d_inode->i_mode))
183021444403SRam Pai 		goto out1;
183121444403SRam Pai 	/*
183221444403SRam Pai 	 * Don't move a mount residing in a shared parent.
183321444403SRam Pai 	 */
1834fc7be130SAl Viro 	if (IS_MNT_SHARED(old->mnt_parent))
183521444403SRam Pai 		goto out1;
18369676f0c6SRam Pai 	/*
18379676f0c6SRam Pai 	 * Don't move a mount tree containing unbindable mounts to a destination
18389676f0c6SRam Pai 	 * mount which is shared.
18399676f0c6SRam Pai 	 */
1840fc7be130SAl Viro 	if (IS_MNT_SHARED(p) && tree_contains_unbindable(old))
18419676f0c6SRam Pai 		goto out1;
18421da177e4SLinus Torvalds 	err = -ELOOP;
1843fc7be130SAl Viro 	for (; mnt_has_parent(p); p = p->mnt_parent)
1844676da58dSAl Viro 		if (p == old)
184521444403SRam Pai 			goto out1;
18461da177e4SLinus Torvalds 
18470fb54e50SAl Viro 	err = attach_recursive_mnt(old, path, &parent_path);
18484ac91378SJan Blunck 	if (err)
184921444403SRam Pai 		goto out1;
18501da177e4SLinus Torvalds 
18511da177e4SLinus Torvalds 	/* if the mount is moved, it should no longer be expire
18521da177e4SLinus Torvalds 	 * automatically */
18536776db3dSAl Viro 	list_del_init(&old->mnt_expire);
18541da177e4SLinus Torvalds out1:
1855b12cea91SAl Viro 	unlock_mount(path);
18561da177e4SLinus Torvalds out:
18571da177e4SLinus Torvalds 	if (!err)
18581a390689SAl Viro 		path_put(&parent_path);
18592d92ab3cSAl Viro 	path_put(&old_path);
18601da177e4SLinus Torvalds 	return err;
18611da177e4SLinus Torvalds }
18621da177e4SLinus Torvalds 
18639d412a43SAl Viro static struct vfsmount *fs_set_subtype(struct vfsmount *mnt, const char *fstype)
18649d412a43SAl Viro {
18659d412a43SAl Viro 	int err;
18669d412a43SAl Viro 	const char *subtype = strchr(fstype, '.');
18679d412a43SAl Viro 	if (subtype) {
18689d412a43SAl Viro 		subtype++;
18699d412a43SAl Viro 		err = -EINVAL;
18709d412a43SAl Viro 		if (!subtype[0])
18719d412a43SAl Viro 			goto err;
18729d412a43SAl Viro 	} else
18739d412a43SAl Viro 		subtype = "";
18749d412a43SAl Viro 
18759d412a43SAl Viro 	mnt->mnt_sb->s_subtype = kstrdup(subtype, GFP_KERNEL);
18769d412a43SAl Viro 	err = -ENOMEM;
18779d412a43SAl Viro 	if (!mnt->mnt_sb->s_subtype)
18789d412a43SAl Viro 		goto err;
18799d412a43SAl Viro 	return mnt;
18809d412a43SAl Viro 
18819d412a43SAl Viro  err:
18829d412a43SAl Viro 	mntput(mnt);
18839d412a43SAl Viro 	return ERR_PTR(err);
18849d412a43SAl Viro }
18859d412a43SAl Viro 
188679e801a9SAl Viro static struct vfsmount *
18879d412a43SAl Viro do_kern_mount(const char *fstype, int flags, const char *name, void *data)
18889d412a43SAl Viro {
18899d412a43SAl Viro 	struct file_system_type *type = get_fs_type(fstype);
18909d412a43SAl Viro 	struct vfsmount *mnt;
18919d412a43SAl Viro 	if (!type)
18929d412a43SAl Viro 		return ERR_PTR(-ENODEV);
18939d412a43SAl Viro 	mnt = vfs_kern_mount(type, flags, name, data);
18949d412a43SAl Viro 	if (!IS_ERR(mnt) && (type->fs_flags & FS_HAS_SUBTYPE) &&
18959d412a43SAl Viro 	    !mnt->mnt_sb->s_subtype)
18969d412a43SAl Viro 		mnt = fs_set_subtype(mnt, fstype);
18979d412a43SAl Viro 	put_filesystem(type);
18989d412a43SAl Viro 	return mnt;
18999d412a43SAl Viro }
19009d412a43SAl Viro 
19019d412a43SAl Viro /*
19029d412a43SAl Viro  * add a mount into a namespace's mount tree
19039d412a43SAl Viro  */
190495bc5f25SAl Viro static int do_add_mount(struct mount *newmnt, struct path *path, int mnt_flags)
19059d412a43SAl Viro {
19069d412a43SAl Viro 	int err;
19079d412a43SAl Viro 
19089d412a43SAl Viro 	mnt_flags &= ~(MNT_SHARED | MNT_WRITE_HOLD | MNT_INTERNAL);
19099d412a43SAl Viro 
1910b12cea91SAl Viro 	err = lock_mount(path);
1911b12cea91SAl Viro 	if (err)
1912b12cea91SAl Viro 		return err;
19139d412a43SAl Viro 
19149d412a43SAl Viro 	err = -EINVAL;
1915156cacb1SAl Viro 	if (unlikely(!check_mnt(real_mount(path->mnt)))) {
1916156cacb1SAl Viro 		/* that's acceptable only for automounts done in private ns */
1917156cacb1SAl Viro 		if (!(mnt_flags & MNT_SHRINKABLE))
19189d412a43SAl Viro 			goto unlock;
1919156cacb1SAl Viro 		/* ... and for those we'd better have mountpoint still alive */
1920156cacb1SAl Viro 		if (!real_mount(path->mnt)->mnt_ns)
1921156cacb1SAl Viro 			goto unlock;
1922156cacb1SAl Viro 	}
19239d412a43SAl Viro 
19249d412a43SAl Viro 	/* Refuse the same filesystem on the same mount point */
19259d412a43SAl Viro 	err = -EBUSY;
192695bc5f25SAl Viro 	if (path->mnt->mnt_sb == newmnt->mnt.mnt_sb &&
19279d412a43SAl Viro 	    path->mnt->mnt_root == path->dentry)
19289d412a43SAl Viro 		goto unlock;
19299d412a43SAl Viro 
19309d412a43SAl Viro 	err = -EINVAL;
193195bc5f25SAl Viro 	if (S_ISLNK(newmnt->mnt.mnt_root->d_inode->i_mode))
19329d412a43SAl Viro 		goto unlock;
19339d412a43SAl Viro 
193495bc5f25SAl Viro 	newmnt->mnt.mnt_flags = mnt_flags;
19359d412a43SAl Viro 	err = graft_tree(newmnt, path);
19369d412a43SAl Viro 
19379d412a43SAl Viro unlock:
1938b12cea91SAl Viro 	unlock_mount(path);
19399d412a43SAl Viro 	return err;
19409d412a43SAl Viro }
1941b1e75df4SAl Viro 
19421da177e4SLinus Torvalds /*
19431da177e4SLinus Torvalds  * create a new mount for userspace and request it to be added into the
19441da177e4SLinus Torvalds  * namespace's tree
19451da177e4SLinus Torvalds  */
1946808d4e3cSAl Viro static int do_new_mount(struct path *path, const char *type, int flags,
1947808d4e3cSAl Viro 			int mnt_flags, const char *name, void *data)
19481da177e4SLinus Torvalds {
19491da177e4SLinus Torvalds 	struct vfsmount *mnt;
195015f9a3f3SAl Viro 	int err;
19511da177e4SLinus Torvalds 
1952eca6f534SVegard Nossum 	if (!type)
19531da177e4SLinus Torvalds 		return -EINVAL;
19541da177e4SLinus Torvalds 
19551da177e4SLinus Torvalds 	/* we need capabilities... */
19561da177e4SLinus Torvalds 	if (!capable(CAP_SYS_ADMIN))
19571da177e4SLinus Torvalds 		return -EPERM;
19581da177e4SLinus Torvalds 
19591da177e4SLinus Torvalds 	mnt = do_kern_mount(type, flags, name, data);
19601da177e4SLinus Torvalds 	if (IS_ERR(mnt))
19611da177e4SLinus Torvalds 		return PTR_ERR(mnt);
19621da177e4SLinus Torvalds 
196395bc5f25SAl Viro 	err = do_add_mount(real_mount(mnt), path, mnt_flags);
196415f9a3f3SAl Viro 	if (err)
196515f9a3f3SAl Viro 		mntput(mnt);
196615f9a3f3SAl Viro 	return err;
19671da177e4SLinus Torvalds }
19681da177e4SLinus Torvalds 
196919a167afSAl Viro int finish_automount(struct vfsmount *m, struct path *path)
197019a167afSAl Viro {
19716776db3dSAl Viro 	struct mount *mnt = real_mount(m);
197219a167afSAl Viro 	int err;
197319a167afSAl Viro 	/* The new mount record should have at least 2 refs to prevent it being
197419a167afSAl Viro 	 * expired before we get a chance to add it
197519a167afSAl Viro 	 */
19766776db3dSAl Viro 	BUG_ON(mnt_get_count(mnt) < 2);
197719a167afSAl Viro 
197819a167afSAl Viro 	if (m->mnt_sb == path->mnt->mnt_sb &&
197919a167afSAl Viro 	    m->mnt_root == path->dentry) {
1980b1e75df4SAl Viro 		err = -ELOOP;
1981b1e75df4SAl Viro 		goto fail;
198219a167afSAl Viro 	}
198319a167afSAl Viro 
198495bc5f25SAl Viro 	err = do_add_mount(mnt, path, path->mnt->mnt_flags | MNT_SHRINKABLE);
1985b1e75df4SAl Viro 	if (!err)
1986b1e75df4SAl Viro 		return 0;
1987b1e75df4SAl Viro fail:
1988b1e75df4SAl Viro 	/* remove m from any expiration list it may be on */
19896776db3dSAl Viro 	if (!list_empty(&mnt->mnt_expire)) {
1990b1e75df4SAl Viro 		down_write(&namespace_sem);
1991962830dfSAndi Kleen 		br_write_lock(&vfsmount_lock);
19926776db3dSAl Viro 		list_del_init(&mnt->mnt_expire);
1993962830dfSAndi Kleen 		br_write_unlock(&vfsmount_lock);
1994b1e75df4SAl Viro 		up_write(&namespace_sem);
199519a167afSAl Viro 	}
1996b1e75df4SAl Viro 	mntput(m);
1997b1e75df4SAl Viro 	mntput(m);
199819a167afSAl Viro 	return err;
199919a167afSAl Viro }
200019a167afSAl Viro 
2001ea5b778aSDavid Howells /**
2002ea5b778aSDavid Howells  * mnt_set_expiry - Put a mount on an expiration list
2003ea5b778aSDavid Howells  * @mnt: The mount to list.
2004ea5b778aSDavid Howells  * @expiry_list: The list to add the mount to.
2005ea5b778aSDavid Howells  */
2006ea5b778aSDavid Howells void mnt_set_expiry(struct vfsmount *mnt, struct list_head *expiry_list)
2007ea5b778aSDavid Howells {
2008ea5b778aSDavid Howells 	down_write(&namespace_sem);
2009962830dfSAndi Kleen 	br_write_lock(&vfsmount_lock);
2010ea5b778aSDavid Howells 
20116776db3dSAl Viro 	list_add_tail(&real_mount(mnt)->mnt_expire, expiry_list);
2012ea5b778aSDavid Howells 
2013962830dfSAndi Kleen 	br_write_unlock(&vfsmount_lock);
2014ea5b778aSDavid Howells 	up_write(&namespace_sem);
2015ea5b778aSDavid Howells }
2016ea5b778aSDavid Howells EXPORT_SYMBOL(mnt_set_expiry);
2017ea5b778aSDavid Howells 
2018ea5b778aSDavid Howells /*
20191da177e4SLinus Torvalds  * process a list of expirable mountpoints with the intent of discarding any
20201da177e4SLinus Torvalds  * mountpoints that aren't in use and haven't been touched since last we came
20211da177e4SLinus Torvalds  * here
20221da177e4SLinus Torvalds  */
20231da177e4SLinus Torvalds void mark_mounts_for_expiry(struct list_head *mounts)
20241da177e4SLinus Torvalds {
2025761d5c38SAl Viro 	struct mount *mnt, *next;
20261da177e4SLinus Torvalds 	LIST_HEAD(graveyard);
2027bcc5c7d2SAl Viro 	LIST_HEAD(umounts);
20281da177e4SLinus Torvalds 
20291da177e4SLinus Torvalds 	if (list_empty(mounts))
20301da177e4SLinus Torvalds 		return;
20311da177e4SLinus Torvalds 
2032bcc5c7d2SAl Viro 	down_write(&namespace_sem);
2033962830dfSAndi Kleen 	br_write_lock(&vfsmount_lock);
20341da177e4SLinus Torvalds 
20351da177e4SLinus Torvalds 	/* extract from the expiration list every vfsmount that matches the
20361da177e4SLinus Torvalds 	 * following criteria:
20371da177e4SLinus Torvalds 	 * - only referenced by its parent vfsmount
20381da177e4SLinus Torvalds 	 * - still marked for expiry (marked on the last call here; marks are
20391da177e4SLinus Torvalds 	 *   cleared by mntput())
20401da177e4SLinus Torvalds 	 */
20416776db3dSAl Viro 	list_for_each_entry_safe(mnt, next, mounts, mnt_expire) {
2042863d684fSAl Viro 		if (!xchg(&mnt->mnt_expiry_mark, 1) ||
20431ab59738SAl Viro 			propagate_mount_busy(mnt, 1))
20441da177e4SLinus Torvalds 			continue;
20456776db3dSAl Viro 		list_move(&mnt->mnt_expire, &graveyard);
20461da177e4SLinus Torvalds 	}
2047bcc5c7d2SAl Viro 	while (!list_empty(&graveyard)) {
20486776db3dSAl Viro 		mnt = list_first_entry(&graveyard, struct mount, mnt_expire);
2049143c8c91SAl Viro 		touch_mnt_namespace(mnt->mnt_ns);
2050bcc5c7d2SAl Viro 		umount_tree(mnt, 1, &umounts);
2051bcc5c7d2SAl Viro 	}
2052962830dfSAndi Kleen 	br_write_unlock(&vfsmount_lock);
2053bcc5c7d2SAl Viro 	up_write(&namespace_sem);
2054bcc5c7d2SAl Viro 
2055bcc5c7d2SAl Viro 	release_mounts(&umounts);
20561da177e4SLinus Torvalds }
20571da177e4SLinus Torvalds 
20581da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(mark_mounts_for_expiry);
20591da177e4SLinus Torvalds 
20601da177e4SLinus Torvalds /*
20615528f911STrond Myklebust  * Ripoff of 'select_parent()'
20625528f911STrond Myklebust  *
20635528f911STrond Myklebust  * search the list of submounts for a given mountpoint, and move any
20645528f911STrond Myklebust  * shrinkable submounts to the 'graveyard' list.
20655528f911STrond Myklebust  */
2066692afc31SAl Viro static int select_submounts(struct mount *parent, struct list_head *graveyard)
20675528f911STrond Myklebust {
2068692afc31SAl Viro 	struct mount *this_parent = parent;
20695528f911STrond Myklebust 	struct list_head *next;
20705528f911STrond Myklebust 	int found = 0;
20715528f911STrond Myklebust 
20725528f911STrond Myklebust repeat:
20736b41d536SAl Viro 	next = this_parent->mnt_mounts.next;
20745528f911STrond Myklebust resume:
20756b41d536SAl Viro 	while (next != &this_parent->mnt_mounts) {
20765528f911STrond Myklebust 		struct list_head *tmp = next;
20776b41d536SAl Viro 		struct mount *mnt = list_entry(tmp, struct mount, mnt_child);
20785528f911STrond Myklebust 
20795528f911STrond Myklebust 		next = tmp->next;
2080692afc31SAl Viro 		if (!(mnt->mnt.mnt_flags & MNT_SHRINKABLE))
20815528f911STrond Myklebust 			continue;
20825528f911STrond Myklebust 		/*
20835528f911STrond Myklebust 		 * Descend a level if the d_mounts list is non-empty.
20845528f911STrond Myklebust 		 */
20856b41d536SAl Viro 		if (!list_empty(&mnt->mnt_mounts)) {
20865528f911STrond Myklebust 			this_parent = mnt;
20875528f911STrond Myklebust 			goto repeat;
20885528f911STrond Myklebust 		}
20895528f911STrond Myklebust 
20901ab59738SAl Viro 		if (!propagate_mount_busy(mnt, 1)) {
20916776db3dSAl Viro 			list_move_tail(&mnt->mnt_expire, graveyard);
20925528f911STrond Myklebust 			found++;
20935528f911STrond Myklebust 		}
20945528f911STrond Myklebust 	}
20955528f911STrond Myklebust 	/*
20965528f911STrond Myklebust 	 * All done at this level ... ascend and resume the search
20975528f911STrond Myklebust 	 */
20985528f911STrond Myklebust 	if (this_parent != parent) {
20996b41d536SAl Viro 		next = this_parent->mnt_child.next;
21000714a533SAl Viro 		this_parent = this_parent->mnt_parent;
21015528f911STrond Myklebust 		goto resume;
21025528f911STrond Myklebust 	}
21035528f911STrond Myklebust 	return found;
21045528f911STrond Myklebust }
21055528f911STrond Myklebust 
21065528f911STrond Myklebust /*
21075528f911STrond Myklebust  * process a list of expirable mountpoints with the intent of discarding any
21085528f911STrond Myklebust  * submounts of a specific parent mountpoint
210999b7db7bSNick Piggin  *
211099b7db7bSNick Piggin  * vfsmount_lock must be held for write
21115528f911STrond Myklebust  */
2112692afc31SAl Viro static void shrink_submounts(struct mount *mnt, struct list_head *umounts)
21135528f911STrond Myklebust {
21145528f911STrond Myklebust 	LIST_HEAD(graveyard);
2115761d5c38SAl Viro 	struct mount *m;
21165528f911STrond Myklebust 
21175528f911STrond Myklebust 	/* extract submounts of 'mountpoint' from the expiration list */
2118c35038beSAl Viro 	while (select_submounts(mnt, &graveyard)) {
2119bcc5c7d2SAl Viro 		while (!list_empty(&graveyard)) {
2120761d5c38SAl Viro 			m = list_first_entry(&graveyard, struct mount,
21216776db3dSAl Viro 						mnt_expire);
2122143c8c91SAl Viro 			touch_mnt_namespace(m->mnt_ns);
2123afef80b3SEric W. Biederman 			umount_tree(m, 1, umounts);
2124bcc5c7d2SAl Viro 		}
2125bcc5c7d2SAl Viro 	}
21265528f911STrond Myklebust }
21275528f911STrond Myklebust 
21285528f911STrond Myklebust /*
21291da177e4SLinus Torvalds  * Some copy_from_user() implementations do not return the exact number of
21301da177e4SLinus Torvalds  * bytes remaining to copy on a fault.  But copy_mount_options() requires that.
21311da177e4SLinus Torvalds  * Note that this function differs from copy_from_user() in that it will oops
21321da177e4SLinus Torvalds  * on bad values of `to', rather than returning a short copy.
21331da177e4SLinus Torvalds  */
2134b58fed8bSRam Pai static long exact_copy_from_user(void *to, const void __user * from,
2135b58fed8bSRam Pai 				 unsigned long n)
21361da177e4SLinus Torvalds {
21371da177e4SLinus Torvalds 	char *t = to;
21381da177e4SLinus Torvalds 	const char __user *f = from;
21391da177e4SLinus Torvalds 	char c;
21401da177e4SLinus Torvalds 
21411da177e4SLinus Torvalds 	if (!access_ok(VERIFY_READ, from, n))
21421da177e4SLinus Torvalds 		return n;
21431da177e4SLinus Torvalds 
21441da177e4SLinus Torvalds 	while (n) {
21451da177e4SLinus Torvalds 		if (__get_user(c, f)) {
21461da177e4SLinus Torvalds 			memset(t, 0, n);
21471da177e4SLinus Torvalds 			break;
21481da177e4SLinus Torvalds 		}
21491da177e4SLinus Torvalds 		*t++ = c;
21501da177e4SLinus Torvalds 		f++;
21511da177e4SLinus Torvalds 		n--;
21521da177e4SLinus Torvalds 	}
21531da177e4SLinus Torvalds 	return n;
21541da177e4SLinus Torvalds }
21551da177e4SLinus Torvalds 
21561da177e4SLinus Torvalds int copy_mount_options(const void __user * data, unsigned long *where)
21571da177e4SLinus Torvalds {
21581da177e4SLinus Torvalds 	int i;
21591da177e4SLinus Torvalds 	unsigned long page;
21601da177e4SLinus Torvalds 	unsigned long size;
21611da177e4SLinus Torvalds 
21621da177e4SLinus Torvalds 	*where = 0;
21631da177e4SLinus Torvalds 	if (!data)
21641da177e4SLinus Torvalds 		return 0;
21651da177e4SLinus Torvalds 
21661da177e4SLinus Torvalds 	if (!(page = __get_free_page(GFP_KERNEL)))
21671da177e4SLinus Torvalds 		return -ENOMEM;
21681da177e4SLinus Torvalds 
21691da177e4SLinus Torvalds 	/* We only care that *some* data at the address the user
21701da177e4SLinus Torvalds 	 * gave us is valid.  Just in case, we'll zero
21711da177e4SLinus Torvalds 	 * the remainder of the page.
21721da177e4SLinus Torvalds 	 */
21731da177e4SLinus Torvalds 	/* copy_from_user cannot cross TASK_SIZE ! */
21741da177e4SLinus Torvalds 	size = TASK_SIZE - (unsigned long)data;
21751da177e4SLinus Torvalds 	if (size > PAGE_SIZE)
21761da177e4SLinus Torvalds 		size = PAGE_SIZE;
21771da177e4SLinus Torvalds 
21781da177e4SLinus Torvalds 	i = size - exact_copy_from_user((void *)page, data, size);
21791da177e4SLinus Torvalds 	if (!i) {
21801da177e4SLinus Torvalds 		free_page(page);
21811da177e4SLinus Torvalds 		return -EFAULT;
21821da177e4SLinus Torvalds 	}
21831da177e4SLinus Torvalds 	if (i != PAGE_SIZE)
21841da177e4SLinus Torvalds 		memset((char *)page + i, 0, PAGE_SIZE - i);
21851da177e4SLinus Torvalds 	*where = page;
21861da177e4SLinus Torvalds 	return 0;
21871da177e4SLinus Torvalds }
21881da177e4SLinus Torvalds 
2189eca6f534SVegard Nossum int copy_mount_string(const void __user *data, char **where)
2190eca6f534SVegard Nossum {
2191eca6f534SVegard Nossum 	char *tmp;
2192eca6f534SVegard Nossum 
2193eca6f534SVegard Nossum 	if (!data) {
2194eca6f534SVegard Nossum 		*where = NULL;
2195eca6f534SVegard Nossum 		return 0;
2196eca6f534SVegard Nossum 	}
2197eca6f534SVegard Nossum 
2198eca6f534SVegard Nossum 	tmp = strndup_user(data, PAGE_SIZE);
2199eca6f534SVegard Nossum 	if (IS_ERR(tmp))
2200eca6f534SVegard Nossum 		return PTR_ERR(tmp);
2201eca6f534SVegard Nossum 
2202eca6f534SVegard Nossum 	*where = tmp;
2203eca6f534SVegard Nossum 	return 0;
2204eca6f534SVegard Nossum }
2205eca6f534SVegard Nossum 
22061da177e4SLinus Torvalds /*
22071da177e4SLinus Torvalds  * Flags is a 32-bit value that allows up to 31 non-fs dependent flags to
22081da177e4SLinus Torvalds  * be given to the mount() call (ie: read-only, no-dev, no-suid etc).
22091da177e4SLinus Torvalds  *
22101da177e4SLinus Torvalds  * data is a (void *) that can point to any structure up to
22111da177e4SLinus Torvalds  * PAGE_SIZE-1 bytes, which can contain arbitrary fs-dependent
22121da177e4SLinus Torvalds  * information (or be NULL).
22131da177e4SLinus Torvalds  *
22141da177e4SLinus Torvalds  * Pre-0.97 versions of mount() didn't have a flags word.
22151da177e4SLinus Torvalds  * When the flags word was introduced its top half was required
22161da177e4SLinus Torvalds  * to have the magic value 0xC0ED, and this remained so until 2.4.0-test9.
22171da177e4SLinus Torvalds  * Therefore, if this magic number is present, it carries no information
22181da177e4SLinus Torvalds  * and must be discarded.
22191da177e4SLinus Torvalds  */
2220808d4e3cSAl Viro long do_mount(const char *dev_name, const char *dir_name,
2221808d4e3cSAl Viro 		const char *type_page, unsigned long flags, void *data_page)
22221da177e4SLinus Torvalds {
22232d92ab3cSAl Viro 	struct path path;
22241da177e4SLinus Torvalds 	int retval = 0;
22251da177e4SLinus Torvalds 	int mnt_flags = 0;
22261da177e4SLinus Torvalds 
22271da177e4SLinus Torvalds 	/* Discard magic */
22281da177e4SLinus Torvalds 	if ((flags & MS_MGC_MSK) == MS_MGC_VAL)
22291da177e4SLinus Torvalds 		flags &= ~MS_MGC_MSK;
22301da177e4SLinus Torvalds 
22311da177e4SLinus Torvalds 	/* Basic sanity checks */
22321da177e4SLinus Torvalds 
22331da177e4SLinus Torvalds 	if (!dir_name || !*dir_name || !memchr(dir_name, 0, PAGE_SIZE))
22341da177e4SLinus Torvalds 		return -EINVAL;
22351da177e4SLinus Torvalds 
22361da177e4SLinus Torvalds 	if (data_page)
22371da177e4SLinus Torvalds 		((char *)data_page)[PAGE_SIZE - 1] = 0;
22381da177e4SLinus Torvalds 
2239a27ab9f2STetsuo Handa 	/* ... and get the mountpoint */
2240a27ab9f2STetsuo Handa 	retval = kern_path(dir_name, LOOKUP_FOLLOW, &path);
2241a27ab9f2STetsuo Handa 	if (retval)
2242a27ab9f2STetsuo Handa 		return retval;
2243a27ab9f2STetsuo Handa 
2244a27ab9f2STetsuo Handa 	retval = security_sb_mount(dev_name, &path,
2245a27ab9f2STetsuo Handa 				   type_page, flags, data_page);
2246a27ab9f2STetsuo Handa 	if (retval)
2247a27ab9f2STetsuo Handa 		goto dput_out;
2248a27ab9f2STetsuo Handa 
2249613cbe3dSAndi Kleen 	/* Default to relatime unless overriden */
2250613cbe3dSAndi Kleen 	if (!(flags & MS_NOATIME))
22510a1c01c9SMatthew Garrett 		mnt_flags |= MNT_RELATIME;
22520a1c01c9SMatthew Garrett 
22531da177e4SLinus Torvalds 	/* Separate the per-mountpoint flags */
22541da177e4SLinus Torvalds 	if (flags & MS_NOSUID)
22551da177e4SLinus Torvalds 		mnt_flags |= MNT_NOSUID;
22561da177e4SLinus Torvalds 	if (flags & MS_NODEV)
22571da177e4SLinus Torvalds 		mnt_flags |= MNT_NODEV;
22581da177e4SLinus Torvalds 	if (flags & MS_NOEXEC)
22591da177e4SLinus Torvalds 		mnt_flags |= MNT_NOEXEC;
2260fc33a7bbSChristoph Hellwig 	if (flags & MS_NOATIME)
2261fc33a7bbSChristoph Hellwig 		mnt_flags |= MNT_NOATIME;
2262fc33a7bbSChristoph Hellwig 	if (flags & MS_NODIRATIME)
2263fc33a7bbSChristoph Hellwig 		mnt_flags |= MNT_NODIRATIME;
2264d0adde57SMatthew Garrett 	if (flags & MS_STRICTATIME)
2265d0adde57SMatthew Garrett 		mnt_flags &= ~(MNT_RELATIME | MNT_NOATIME);
22662e4b7fcdSDave Hansen 	if (flags & MS_RDONLY)
22672e4b7fcdSDave Hansen 		mnt_flags |= MNT_READONLY;
2268fc33a7bbSChristoph Hellwig 
22697a4dec53SAl Viro 	flags &= ~(MS_NOSUID | MS_NOEXEC | MS_NODEV | MS_ACTIVE | MS_BORN |
2270d0adde57SMatthew Garrett 		   MS_NOATIME | MS_NODIRATIME | MS_RELATIME| MS_KERNMOUNT |
2271d0adde57SMatthew Garrett 		   MS_STRICTATIME);
22721da177e4SLinus Torvalds 
22731da177e4SLinus Torvalds 	if (flags & MS_REMOUNT)
22742d92ab3cSAl Viro 		retval = do_remount(&path, flags & ~MS_REMOUNT, mnt_flags,
22751da177e4SLinus Torvalds 				    data_page);
22761da177e4SLinus Torvalds 	else if (flags & MS_BIND)
22772d92ab3cSAl Viro 		retval = do_loopback(&path, dev_name, flags & MS_REC);
22789676f0c6SRam Pai 	else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
22792d92ab3cSAl Viro 		retval = do_change_type(&path, flags);
22801da177e4SLinus Torvalds 	else if (flags & MS_MOVE)
22812d92ab3cSAl Viro 		retval = do_move_mount(&path, dev_name);
22821da177e4SLinus Torvalds 	else
22832d92ab3cSAl Viro 		retval = do_new_mount(&path, type_page, flags, mnt_flags,
22841da177e4SLinus Torvalds 				      dev_name, data_page);
22851da177e4SLinus Torvalds dput_out:
22862d92ab3cSAl Viro 	path_put(&path);
22871da177e4SLinus Torvalds 	return retval;
22881da177e4SLinus Torvalds }
22891da177e4SLinus Torvalds 
2290771b1371SEric W. Biederman static void free_mnt_ns(struct mnt_namespace *ns)
2291771b1371SEric W. Biederman {
2292771b1371SEric W. Biederman 	put_user_ns(ns->user_ns);
2293771b1371SEric W. Biederman 	kfree(ns);
2294771b1371SEric W. Biederman }
2295771b1371SEric W. Biederman 
22968823c079SEric W. Biederman /*
22978823c079SEric W. Biederman  * Assign a sequence number so we can detect when we attempt to bind
22988823c079SEric W. Biederman  * mount a reference to an older mount namespace into the current
22998823c079SEric W. Biederman  * mount namespace, preventing reference counting loops.  A 64bit
23008823c079SEric W. Biederman  * number incrementing at 10Ghz will take 12,427 years to wrap which
23018823c079SEric W. Biederman  * is effectively never, so we can ignore the possibility.
23028823c079SEric W. Biederman  */
23038823c079SEric W. Biederman static atomic64_t mnt_ns_seq = ATOMIC64_INIT(1);
23048823c079SEric W. Biederman 
2305771b1371SEric W. Biederman static struct mnt_namespace *alloc_mnt_ns(struct user_namespace *user_ns)
2306cf8d2c11STrond Myklebust {
2307cf8d2c11STrond Myklebust 	struct mnt_namespace *new_ns;
2308cf8d2c11STrond Myklebust 
2309cf8d2c11STrond Myklebust 	new_ns = kmalloc(sizeof(struct mnt_namespace), GFP_KERNEL);
2310cf8d2c11STrond Myklebust 	if (!new_ns)
2311cf8d2c11STrond Myklebust 		return ERR_PTR(-ENOMEM);
23128823c079SEric W. Biederman 	new_ns->seq = atomic64_add_return(1, &mnt_ns_seq);
2313cf8d2c11STrond Myklebust 	atomic_set(&new_ns->count, 1);
2314cf8d2c11STrond Myklebust 	new_ns->root = NULL;
2315cf8d2c11STrond Myklebust 	INIT_LIST_HEAD(&new_ns->list);
2316cf8d2c11STrond Myklebust 	init_waitqueue_head(&new_ns->poll);
2317cf8d2c11STrond Myklebust 	new_ns->event = 0;
2318771b1371SEric W. Biederman 	new_ns->user_ns = get_user_ns(user_ns);
2319cf8d2c11STrond Myklebust 	return new_ns;
2320cf8d2c11STrond Myklebust }
2321cf8d2c11STrond Myklebust 
2322741a2951SJANAK DESAI /*
2323741a2951SJANAK DESAI  * Allocate a new namespace structure and populate it with contents
2324741a2951SJANAK DESAI  * copied from the namespace of the passed in task structure.
2325741a2951SJANAK DESAI  */
2326e3222c4eSBadari Pulavarty static struct mnt_namespace *dup_mnt_ns(struct mnt_namespace *mnt_ns,
2327771b1371SEric W. Biederman 		struct user_namespace *user_ns, struct fs_struct *fs)
23281da177e4SLinus Torvalds {
23296b3286edSKirill Korotaev 	struct mnt_namespace *new_ns;
23307f2da1e7SAl Viro 	struct vfsmount *rootmnt = NULL, *pwdmnt = NULL;
2331315fc83eSAl Viro 	struct mount *p, *q;
2332be08d6d2SAl Viro 	struct mount *old = mnt_ns->root;
2333cb338d06SAl Viro 	struct mount *new;
23341da177e4SLinus Torvalds 
2335771b1371SEric W. Biederman 	new_ns = alloc_mnt_ns(user_ns);
2336cf8d2c11STrond Myklebust 	if (IS_ERR(new_ns))
2337cf8d2c11STrond Myklebust 		return new_ns;
23381da177e4SLinus Torvalds 
2339390c6843SRam Pai 	down_write(&namespace_sem);
23401da177e4SLinus Torvalds 	/* First pass: copy the tree topology */
2341909b0a88SAl Viro 	new = copy_tree(old, old->mnt.mnt_root, CL_COPY_ALL | CL_EXPIRE);
2342be34d1a3SDavid Howells 	if (IS_ERR(new)) {
2343390c6843SRam Pai 		up_write(&namespace_sem);
2344771b1371SEric W. Biederman 		free_mnt_ns(new_ns);
2345be34d1a3SDavid Howells 		return ERR_CAST(new);
23461da177e4SLinus Torvalds 	}
2347be08d6d2SAl Viro 	new_ns->root = new;
2348962830dfSAndi Kleen 	br_write_lock(&vfsmount_lock);
23491a4eeaf2SAl Viro 	list_add_tail(&new_ns->list, &new->mnt_list);
2350962830dfSAndi Kleen 	br_write_unlock(&vfsmount_lock);
23511da177e4SLinus Torvalds 
23521da177e4SLinus Torvalds 	/*
23531da177e4SLinus Torvalds 	 * Second pass: switch the tsk->fs->* elements and mark new vfsmounts
23541da177e4SLinus Torvalds 	 * as belonging to new namespace.  We have already acquired a private
23551da177e4SLinus Torvalds 	 * fs_struct, so tsk->fs->lock is not needed.
23561da177e4SLinus Torvalds 	 */
2357909b0a88SAl Viro 	p = old;
2358cb338d06SAl Viro 	q = new;
23591da177e4SLinus Torvalds 	while (p) {
2360143c8c91SAl Viro 		q->mnt_ns = new_ns;
23611da177e4SLinus Torvalds 		if (fs) {
2362315fc83eSAl Viro 			if (&p->mnt == fs->root.mnt) {
2363315fc83eSAl Viro 				fs->root.mnt = mntget(&q->mnt);
2364315fc83eSAl Viro 				rootmnt = &p->mnt;
23651da177e4SLinus Torvalds 			}
2366315fc83eSAl Viro 			if (&p->mnt == fs->pwd.mnt) {
2367315fc83eSAl Viro 				fs->pwd.mnt = mntget(&q->mnt);
2368315fc83eSAl Viro 				pwdmnt = &p->mnt;
23691da177e4SLinus Torvalds 			}
23701da177e4SLinus Torvalds 		}
2371909b0a88SAl Viro 		p = next_mnt(p, old);
2372909b0a88SAl Viro 		q = next_mnt(q, new);
23731da177e4SLinus Torvalds 	}
2374390c6843SRam Pai 	up_write(&namespace_sem);
23751da177e4SLinus Torvalds 
23761da177e4SLinus Torvalds 	if (rootmnt)
2377f03c6599SAl Viro 		mntput(rootmnt);
23781da177e4SLinus Torvalds 	if (pwdmnt)
2379f03c6599SAl Viro 		mntput(pwdmnt);
23801da177e4SLinus Torvalds 
2381741a2951SJANAK DESAI 	return new_ns;
2382741a2951SJANAK DESAI }
2383741a2951SJANAK DESAI 
2384213dd266SEric W. Biederman struct mnt_namespace *copy_mnt_ns(unsigned long flags, struct mnt_namespace *ns,
2385771b1371SEric W. Biederman 		struct user_namespace *user_ns, struct fs_struct *new_fs)
2386741a2951SJANAK DESAI {
23876b3286edSKirill Korotaev 	struct mnt_namespace *new_ns;
2388741a2951SJANAK DESAI 
2389e3222c4eSBadari Pulavarty 	BUG_ON(!ns);
23906b3286edSKirill Korotaev 	get_mnt_ns(ns);
2391741a2951SJANAK DESAI 
2392741a2951SJANAK DESAI 	if (!(flags & CLONE_NEWNS))
2393e3222c4eSBadari Pulavarty 		return ns;
2394741a2951SJANAK DESAI 
2395771b1371SEric W. Biederman 	new_ns = dup_mnt_ns(ns, user_ns, new_fs);
2396741a2951SJANAK DESAI 
23976b3286edSKirill Korotaev 	put_mnt_ns(ns);
2398e3222c4eSBadari Pulavarty 	return new_ns;
23991da177e4SLinus Torvalds }
24001da177e4SLinus Torvalds 
2401cf8d2c11STrond Myklebust /**
2402cf8d2c11STrond Myklebust  * create_mnt_ns - creates a private namespace and adds a root filesystem
2403cf8d2c11STrond Myklebust  * @mnt: pointer to the new root filesystem mountpoint
2404cf8d2c11STrond Myklebust  */
24051a4eeaf2SAl Viro static struct mnt_namespace *create_mnt_ns(struct vfsmount *m)
2406cf8d2c11STrond Myklebust {
2407771b1371SEric W. Biederman 	struct mnt_namespace *new_ns = alloc_mnt_ns(&init_user_ns);
2408cf8d2c11STrond Myklebust 	if (!IS_ERR(new_ns)) {
24091a4eeaf2SAl Viro 		struct mount *mnt = real_mount(m);
24101a4eeaf2SAl Viro 		mnt->mnt_ns = new_ns;
2411be08d6d2SAl Viro 		new_ns->root = mnt;
24121a4eeaf2SAl Viro 		list_add(&new_ns->list, &mnt->mnt_list);
2413c1334495SAl Viro 	} else {
24141a4eeaf2SAl Viro 		mntput(m);
2415cf8d2c11STrond Myklebust 	}
2416cf8d2c11STrond Myklebust 	return new_ns;
2417cf8d2c11STrond Myklebust }
2418cf8d2c11STrond Myklebust 
2419ea441d11SAl Viro struct dentry *mount_subtree(struct vfsmount *mnt, const char *name)
2420ea441d11SAl Viro {
2421ea441d11SAl Viro 	struct mnt_namespace *ns;
2422d31da0f0SAl Viro 	struct super_block *s;
2423ea441d11SAl Viro 	struct path path;
2424ea441d11SAl Viro 	int err;
2425ea441d11SAl Viro 
2426ea441d11SAl Viro 	ns = create_mnt_ns(mnt);
2427ea441d11SAl Viro 	if (IS_ERR(ns))
2428ea441d11SAl Viro 		return ERR_CAST(ns);
2429ea441d11SAl Viro 
2430ea441d11SAl Viro 	err = vfs_path_lookup(mnt->mnt_root, mnt,
2431ea441d11SAl Viro 			name, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &path);
2432ea441d11SAl Viro 
2433ea441d11SAl Viro 	put_mnt_ns(ns);
2434ea441d11SAl Viro 
2435ea441d11SAl Viro 	if (err)
2436ea441d11SAl Viro 		return ERR_PTR(err);
2437ea441d11SAl Viro 
2438ea441d11SAl Viro 	/* trade a vfsmount reference for active sb one */
2439d31da0f0SAl Viro 	s = path.mnt->mnt_sb;
2440d31da0f0SAl Viro 	atomic_inc(&s->s_active);
2441ea441d11SAl Viro 	mntput(path.mnt);
2442ea441d11SAl Viro 	/* lock the sucker */
2443d31da0f0SAl Viro 	down_write(&s->s_umount);
2444ea441d11SAl Viro 	/* ... and return the root of (sub)tree on it */
2445ea441d11SAl Viro 	return path.dentry;
2446ea441d11SAl Viro }
2447ea441d11SAl Viro EXPORT_SYMBOL(mount_subtree);
2448ea441d11SAl Viro 
2449bdc480e3SHeiko Carstens SYSCALL_DEFINE5(mount, char __user *, dev_name, char __user *, dir_name,
2450bdc480e3SHeiko Carstens 		char __user *, type, unsigned long, flags, void __user *, data)
24511da177e4SLinus Torvalds {
2452eca6f534SVegard Nossum 	int ret;
2453eca6f534SVegard Nossum 	char *kernel_type;
245491a27b2aSJeff Layton 	struct filename *kernel_dir;
2455eca6f534SVegard Nossum 	char *kernel_dev;
24561da177e4SLinus Torvalds 	unsigned long data_page;
24571da177e4SLinus Torvalds 
2458eca6f534SVegard Nossum 	ret = copy_mount_string(type, &kernel_type);
2459eca6f534SVegard Nossum 	if (ret < 0)
2460eca6f534SVegard Nossum 		goto out_type;
24611da177e4SLinus Torvalds 
2462eca6f534SVegard Nossum 	kernel_dir = getname(dir_name);
2463eca6f534SVegard Nossum 	if (IS_ERR(kernel_dir)) {
2464eca6f534SVegard Nossum 		ret = PTR_ERR(kernel_dir);
2465eca6f534SVegard Nossum 		goto out_dir;
2466eca6f534SVegard Nossum 	}
24671da177e4SLinus Torvalds 
2468eca6f534SVegard Nossum 	ret = copy_mount_string(dev_name, &kernel_dev);
2469eca6f534SVegard Nossum 	if (ret < 0)
2470eca6f534SVegard Nossum 		goto out_dev;
24711da177e4SLinus Torvalds 
2472eca6f534SVegard Nossum 	ret = copy_mount_options(data, &data_page);
2473eca6f534SVegard Nossum 	if (ret < 0)
2474eca6f534SVegard Nossum 		goto out_data;
24751da177e4SLinus Torvalds 
247691a27b2aSJeff Layton 	ret = do_mount(kernel_dev, kernel_dir->name, kernel_type, flags,
2477eca6f534SVegard Nossum 		(void *) data_page);
2478eca6f534SVegard Nossum 
24791da177e4SLinus Torvalds 	free_page(data_page);
2480eca6f534SVegard Nossum out_data:
2481eca6f534SVegard Nossum 	kfree(kernel_dev);
2482eca6f534SVegard Nossum out_dev:
2483eca6f534SVegard Nossum 	putname(kernel_dir);
2484eca6f534SVegard Nossum out_dir:
2485eca6f534SVegard Nossum 	kfree(kernel_type);
2486eca6f534SVegard Nossum out_type:
2487eca6f534SVegard Nossum 	return ret;
24881da177e4SLinus Torvalds }
24891da177e4SLinus Torvalds 
24901da177e4SLinus Torvalds /*
2491afac7cbaSAl Viro  * Return true if path is reachable from root
2492afac7cbaSAl Viro  *
2493afac7cbaSAl Viro  * namespace_sem or vfsmount_lock is held
2494afac7cbaSAl Viro  */
2495643822b4SAl Viro bool is_path_reachable(struct mount *mnt, struct dentry *dentry,
2496afac7cbaSAl Viro 			 const struct path *root)
2497afac7cbaSAl Viro {
2498643822b4SAl Viro 	while (&mnt->mnt != root->mnt && mnt_has_parent(mnt)) {
2499a73324daSAl Viro 		dentry = mnt->mnt_mountpoint;
25000714a533SAl Viro 		mnt = mnt->mnt_parent;
2501afac7cbaSAl Viro 	}
2502643822b4SAl Viro 	return &mnt->mnt == root->mnt && is_subdir(dentry, root->dentry);
2503afac7cbaSAl Viro }
2504afac7cbaSAl Viro 
2505afac7cbaSAl Viro int path_is_under(struct path *path1, struct path *path2)
2506afac7cbaSAl Viro {
2507afac7cbaSAl Viro 	int res;
2508962830dfSAndi Kleen 	br_read_lock(&vfsmount_lock);
2509643822b4SAl Viro 	res = is_path_reachable(real_mount(path1->mnt), path1->dentry, path2);
2510962830dfSAndi Kleen 	br_read_unlock(&vfsmount_lock);
2511afac7cbaSAl Viro 	return res;
2512afac7cbaSAl Viro }
2513afac7cbaSAl Viro EXPORT_SYMBOL(path_is_under);
2514afac7cbaSAl Viro 
2515afac7cbaSAl Viro /*
25161da177e4SLinus Torvalds  * pivot_root Semantics:
25171da177e4SLinus Torvalds  * Moves the root file system of the current process to the directory put_old,
25181da177e4SLinus Torvalds  * makes new_root as the new root file system of the current process, and sets
25191da177e4SLinus Torvalds  * root/cwd of all processes which had them on the current root to new_root.
25201da177e4SLinus Torvalds  *
25211da177e4SLinus Torvalds  * Restrictions:
25221da177e4SLinus Torvalds  * The new_root and put_old must be directories, and  must not be on the
25231da177e4SLinus Torvalds  * same file  system as the current process root. The put_old  must  be
25241da177e4SLinus Torvalds  * underneath new_root,  i.e. adding a non-zero number of /.. to the string
25251da177e4SLinus Torvalds  * pointed to by put_old must yield the same directory as new_root. No other
25261da177e4SLinus Torvalds  * file system may be mounted on put_old. After all, new_root is a mountpoint.
25271da177e4SLinus Torvalds  *
25284a0d11faSNeil Brown  * Also, the current root cannot be on the 'rootfs' (initial ramfs) filesystem.
25294a0d11faSNeil Brown  * See Documentation/filesystems/ramfs-rootfs-initramfs.txt for alternatives
25304a0d11faSNeil Brown  * in this situation.
25314a0d11faSNeil Brown  *
25321da177e4SLinus Torvalds  * Notes:
25331da177e4SLinus Torvalds  *  - we don't move root/cwd if they are not at the root (reason: if something
25341da177e4SLinus Torvalds  *    cared enough to change them, it's probably wrong to force them elsewhere)
25351da177e4SLinus Torvalds  *  - it's okay to pick a root that isn't the root of a file system, e.g.
25361da177e4SLinus Torvalds  *    /nfs/my_root where /nfs is the mount point. It must be a mountpoint,
25371da177e4SLinus Torvalds  *    though, so you may need to say mount --bind /nfs/my_root /nfs/my_root
25381da177e4SLinus Torvalds  *    first.
25391da177e4SLinus Torvalds  */
25403480b257SHeiko Carstens SYSCALL_DEFINE2(pivot_root, const char __user *, new_root,
25413480b257SHeiko Carstens 		const char __user *, put_old)
25421da177e4SLinus Torvalds {
25432d8f3038SAl Viro 	struct path new, old, parent_path, root_parent, root;
2544419148daSAl Viro 	struct mount *new_mnt, *root_mnt;
25451da177e4SLinus Torvalds 	int error;
25461da177e4SLinus Torvalds 
25471da177e4SLinus Torvalds 	if (!capable(CAP_SYS_ADMIN))
25481da177e4SLinus Torvalds 		return -EPERM;
25491da177e4SLinus Torvalds 
25502d8f3038SAl Viro 	error = user_path_dir(new_root, &new);
25511da177e4SLinus Torvalds 	if (error)
25521da177e4SLinus Torvalds 		goto out0;
25531da177e4SLinus Torvalds 
25542d8f3038SAl Viro 	error = user_path_dir(put_old, &old);
25551da177e4SLinus Torvalds 	if (error)
25561da177e4SLinus Torvalds 		goto out1;
25571da177e4SLinus Torvalds 
25582d8f3038SAl Viro 	error = security_sb_pivotroot(&old, &new);
2559b12cea91SAl Viro 	if (error)
2560b12cea91SAl Viro 		goto out2;
25611da177e4SLinus Torvalds 
2562f7ad3c6bSMiklos Szeredi 	get_fs_root(current->fs, &root);
2563b12cea91SAl Viro 	error = lock_mount(&old);
2564b12cea91SAl Viro 	if (error)
2565b12cea91SAl Viro 		goto out3;
2566b12cea91SAl Viro 
25671da177e4SLinus Torvalds 	error = -EINVAL;
2568419148daSAl Viro 	new_mnt = real_mount(new.mnt);
2569419148daSAl Viro 	root_mnt = real_mount(root.mnt);
2570fc7be130SAl Viro 	if (IS_MNT_SHARED(real_mount(old.mnt)) ||
2571fc7be130SAl Viro 		IS_MNT_SHARED(new_mnt->mnt_parent) ||
2572fc7be130SAl Viro 		IS_MNT_SHARED(root_mnt->mnt_parent))
2573b12cea91SAl Viro 		goto out4;
2574143c8c91SAl Viro 	if (!check_mnt(root_mnt) || !check_mnt(new_mnt))
2575b12cea91SAl Viro 		goto out4;
25761da177e4SLinus Torvalds 	error = -ENOENT;
2577f3da392eSAlexey Dobriyan 	if (d_unlinked(new.dentry))
2578b12cea91SAl Viro 		goto out4;
2579f3da392eSAlexey Dobriyan 	if (d_unlinked(old.dentry))
2580b12cea91SAl Viro 		goto out4;
25811da177e4SLinus Torvalds 	error = -EBUSY;
25822d8f3038SAl Viro 	if (new.mnt == root.mnt ||
25832d8f3038SAl Viro 	    old.mnt == root.mnt)
2584b12cea91SAl Viro 		goto out4; /* loop, on the same file system  */
25851da177e4SLinus Torvalds 	error = -EINVAL;
25868c3ee42eSAl Viro 	if (root.mnt->mnt_root != root.dentry)
2587b12cea91SAl Viro 		goto out4; /* not a mountpoint */
2588676da58dSAl Viro 	if (!mnt_has_parent(root_mnt))
2589b12cea91SAl Viro 		goto out4; /* not attached */
25902d8f3038SAl Viro 	if (new.mnt->mnt_root != new.dentry)
2591b12cea91SAl Viro 		goto out4; /* not a mountpoint */
2592676da58dSAl Viro 	if (!mnt_has_parent(new_mnt))
2593b12cea91SAl Viro 		goto out4; /* not attached */
25944ac91378SJan Blunck 	/* make sure we can reach put_old from new_root */
2595643822b4SAl Viro 	if (!is_path_reachable(real_mount(old.mnt), old.dentry, &new))
2596b12cea91SAl Viro 		goto out4;
2597962830dfSAndi Kleen 	br_write_lock(&vfsmount_lock);
2598419148daSAl Viro 	detach_mnt(new_mnt, &parent_path);
2599419148daSAl Viro 	detach_mnt(root_mnt, &root_parent);
26004ac91378SJan Blunck 	/* mount old root on put_old */
2601419148daSAl Viro 	attach_mnt(root_mnt, &old);
26024ac91378SJan Blunck 	/* mount new_root on / */
2603419148daSAl Viro 	attach_mnt(new_mnt, &root_parent);
26046b3286edSKirill Korotaev 	touch_mnt_namespace(current->nsproxy->mnt_ns);
2605962830dfSAndi Kleen 	br_write_unlock(&vfsmount_lock);
26062d8f3038SAl Viro 	chroot_fs_refs(&root, &new);
26071da177e4SLinus Torvalds 	error = 0;
2608b12cea91SAl Viro out4:
2609b12cea91SAl Viro 	unlock_mount(&old);
2610b12cea91SAl Viro 	if (!error) {
26111a390689SAl Viro 		path_put(&root_parent);
26121a390689SAl Viro 		path_put(&parent_path);
2613b12cea91SAl Viro 	}
2614b12cea91SAl Viro out3:
26158c3ee42eSAl Viro 	path_put(&root);
2616b12cea91SAl Viro out2:
26172d8f3038SAl Viro 	path_put(&old);
26181da177e4SLinus Torvalds out1:
26192d8f3038SAl Viro 	path_put(&new);
26201da177e4SLinus Torvalds out0:
26211da177e4SLinus Torvalds 	return error;
26221da177e4SLinus Torvalds }
26231da177e4SLinus Torvalds 
26241da177e4SLinus Torvalds static void __init init_mount_tree(void)
26251da177e4SLinus Torvalds {
26261da177e4SLinus Torvalds 	struct vfsmount *mnt;
26276b3286edSKirill Korotaev 	struct mnt_namespace *ns;
2628ac748a09SJan Blunck 	struct path root;
26291da177e4SLinus Torvalds 
26301da177e4SLinus Torvalds 	mnt = do_kern_mount("rootfs", 0, "rootfs", NULL);
26311da177e4SLinus Torvalds 	if (IS_ERR(mnt))
26321da177e4SLinus Torvalds 		panic("Can't create rootfs");
2633b3e19d92SNick Piggin 
26343b22edc5STrond Myklebust 	ns = create_mnt_ns(mnt);
26353b22edc5STrond Myklebust 	if (IS_ERR(ns))
26361da177e4SLinus Torvalds 		panic("Can't allocate initial namespace");
26371da177e4SLinus Torvalds 
26386b3286edSKirill Korotaev 	init_task.nsproxy->mnt_ns = ns;
26396b3286edSKirill Korotaev 	get_mnt_ns(ns);
26401da177e4SLinus Torvalds 
2641be08d6d2SAl Viro 	root.mnt = mnt;
2642be08d6d2SAl Viro 	root.dentry = mnt->mnt_root;
2643ac748a09SJan Blunck 
2644ac748a09SJan Blunck 	set_fs_pwd(current->fs, &root);
2645ac748a09SJan Blunck 	set_fs_root(current->fs, &root);
26461da177e4SLinus Torvalds }
26471da177e4SLinus Torvalds 
264874bf17cfSDenis Cheng void __init mnt_init(void)
26491da177e4SLinus Torvalds {
265013f14b4dSEric Dumazet 	unsigned u;
265115a67dd8SRandy Dunlap 	int err;
26521da177e4SLinus Torvalds 
2653390c6843SRam Pai 	init_rwsem(&namespace_sem);
2654390c6843SRam Pai 
26557d6fec45SAl Viro 	mnt_cache = kmem_cache_create("mnt_cache", sizeof(struct mount),
265620c2df83SPaul Mundt 			0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
26571da177e4SLinus Torvalds 
2658b58fed8bSRam Pai 	mount_hashtable = (struct list_head *)__get_free_page(GFP_ATOMIC);
26591da177e4SLinus Torvalds 
26601da177e4SLinus Torvalds 	if (!mount_hashtable)
26611da177e4SLinus Torvalds 		panic("Failed to allocate mount hash table\n");
26621da177e4SLinus Torvalds 
266380cdc6daSMandeep Singh Baines 	printk(KERN_INFO "Mount-cache hash table entries: %lu\n", HASH_SIZE);
26641da177e4SLinus Torvalds 
266513f14b4dSEric Dumazet 	for (u = 0; u < HASH_SIZE; u++)
266613f14b4dSEric Dumazet 		INIT_LIST_HEAD(&mount_hashtable[u]);
26671da177e4SLinus Torvalds 
2668962830dfSAndi Kleen 	br_lock_init(&vfsmount_lock);
266999b7db7bSNick Piggin 
267015a67dd8SRandy Dunlap 	err = sysfs_init();
267115a67dd8SRandy Dunlap 	if (err)
267215a67dd8SRandy Dunlap 		printk(KERN_WARNING "%s: sysfs_init error: %d\n",
26738e24eea7SHarvey Harrison 			__func__, err);
267400d26666SGreg Kroah-Hartman 	fs_kobj = kobject_create_and_add("fs", NULL);
267500d26666SGreg Kroah-Hartman 	if (!fs_kobj)
26768e24eea7SHarvey Harrison 		printk(KERN_WARNING "%s: kobj create error\n", __func__);
26771da177e4SLinus Torvalds 	init_rootfs();
26781da177e4SLinus Torvalds 	init_mount_tree();
26791da177e4SLinus Torvalds }
26801da177e4SLinus Torvalds 
2681616511d0STrond Myklebust void put_mnt_ns(struct mnt_namespace *ns)
26821da177e4SLinus Torvalds {
268370fbcdf4SRam Pai 	LIST_HEAD(umount_list);
2684616511d0STrond Myklebust 
2685d498b25aSAl Viro 	if (!atomic_dec_and_test(&ns->count))
2686616511d0STrond Myklebust 		return;
2687390c6843SRam Pai 	down_write(&namespace_sem);
2688962830dfSAndi Kleen 	br_write_lock(&vfsmount_lock);
2689be08d6d2SAl Viro 	umount_tree(ns->root, 0, &umount_list);
2690962830dfSAndi Kleen 	br_write_unlock(&vfsmount_lock);
2691390c6843SRam Pai 	up_write(&namespace_sem);
269270fbcdf4SRam Pai 	release_mounts(&umount_list);
2693771b1371SEric W. Biederman 	free_mnt_ns(ns);
26941da177e4SLinus Torvalds }
26959d412a43SAl Viro 
26969d412a43SAl Viro struct vfsmount *kern_mount_data(struct file_system_type *type, void *data)
26979d412a43SAl Viro {
2698423e0ab0STim Chen 	struct vfsmount *mnt;
2699423e0ab0STim Chen 	mnt = vfs_kern_mount(type, MS_KERNMOUNT, type->name, data);
2700423e0ab0STim Chen 	if (!IS_ERR(mnt)) {
2701423e0ab0STim Chen 		/*
2702423e0ab0STim Chen 		 * it is a longterm mount, don't release mnt until
2703423e0ab0STim Chen 		 * we unmount before file sys is unregistered
2704423e0ab0STim Chen 		*/
2705f7a99c5bSAl Viro 		real_mount(mnt)->mnt_ns = MNT_NS_INTERNAL;
2706423e0ab0STim Chen 	}
2707423e0ab0STim Chen 	return mnt;
27089d412a43SAl Viro }
27099d412a43SAl Viro EXPORT_SYMBOL_GPL(kern_mount_data);
2710423e0ab0STim Chen 
2711423e0ab0STim Chen void kern_unmount(struct vfsmount *mnt)
2712423e0ab0STim Chen {
2713423e0ab0STim Chen 	/* release long term mount so mount point can be released */
2714423e0ab0STim Chen 	if (!IS_ERR_OR_NULL(mnt)) {
2715f7a99c5bSAl Viro 		br_write_lock(&vfsmount_lock);
2716f7a99c5bSAl Viro 		real_mount(mnt)->mnt_ns = NULL;
2717f7a99c5bSAl Viro 		br_write_unlock(&vfsmount_lock);
2718423e0ab0STim Chen 		mntput(mnt);
2719423e0ab0STim Chen 	}
2720423e0ab0STim Chen }
2721423e0ab0STim Chen EXPORT_SYMBOL(kern_unmount);
272202125a82SAl Viro 
272302125a82SAl Viro bool our_mnt(struct vfsmount *mnt)
272402125a82SAl Viro {
2725143c8c91SAl Viro 	return check_mnt(real_mount(mnt));
272602125a82SAl Viro }
27278823c079SEric W. Biederman 
27288823c079SEric W. Biederman static void *mntns_get(struct task_struct *task)
27298823c079SEric W. Biederman {
27308823c079SEric W. Biederman 	struct mnt_namespace *ns = NULL;
27318823c079SEric W. Biederman 	struct nsproxy *nsproxy;
27328823c079SEric W. Biederman 
27338823c079SEric W. Biederman 	rcu_read_lock();
27348823c079SEric W. Biederman 	nsproxy = task_nsproxy(task);
27358823c079SEric W. Biederman 	if (nsproxy) {
27368823c079SEric W. Biederman 		ns = nsproxy->mnt_ns;
27378823c079SEric W. Biederman 		get_mnt_ns(ns);
27388823c079SEric W. Biederman 	}
27398823c079SEric W. Biederman 	rcu_read_unlock();
27408823c079SEric W. Biederman 
27418823c079SEric W. Biederman 	return ns;
27428823c079SEric W. Biederman }
27438823c079SEric W. Biederman 
27448823c079SEric W. Biederman static void mntns_put(void *ns)
27458823c079SEric W. Biederman {
27468823c079SEric W. Biederman 	put_mnt_ns(ns);
27478823c079SEric W. Biederman }
27488823c079SEric W. Biederman 
27498823c079SEric W. Biederman static int mntns_install(struct nsproxy *nsproxy, void *ns)
27508823c079SEric W. Biederman {
27518823c079SEric W. Biederman 	struct fs_struct *fs = current->fs;
27528823c079SEric W. Biederman 	struct mnt_namespace *mnt_ns = ns;
27538823c079SEric W. Biederman 	struct path root;
27548823c079SEric W. Biederman 
27558823c079SEric W. Biederman 	if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_CHROOT))
27568823c079SEric W. Biederman 		return -EINVAL;
27578823c079SEric W. Biederman 
27588823c079SEric W. Biederman 	if (fs->users != 1)
27598823c079SEric W. Biederman 		return -EINVAL;
27608823c079SEric W. Biederman 
27618823c079SEric W. Biederman 	get_mnt_ns(mnt_ns);
27628823c079SEric W. Biederman 	put_mnt_ns(nsproxy->mnt_ns);
27638823c079SEric W. Biederman 	nsproxy->mnt_ns = mnt_ns;
27648823c079SEric W. Biederman 
27658823c079SEric W. Biederman 	/* Find the root */
27668823c079SEric W. Biederman 	root.mnt    = &mnt_ns->root->mnt;
27678823c079SEric W. Biederman 	root.dentry = mnt_ns->root->mnt.mnt_root;
27688823c079SEric W. Biederman 	path_get(&root);
27698823c079SEric W. Biederman 	while(d_mountpoint(root.dentry) && follow_down_one(&root))
27708823c079SEric W. Biederman 		;
27718823c079SEric W. Biederman 
27728823c079SEric W. Biederman 	/* Update the pwd and root */
27738823c079SEric W. Biederman 	set_fs_pwd(fs, &root);
27748823c079SEric W. Biederman 	set_fs_root(fs, &root);
27758823c079SEric W. Biederman 
27768823c079SEric W. Biederman 	path_put(&root);
27778823c079SEric W. Biederman 	return 0;
27788823c079SEric W. Biederman }
27798823c079SEric W. Biederman 
27808823c079SEric W. Biederman const struct proc_ns_operations mntns_operations = {
27818823c079SEric W. Biederman 	.name		= "mnt",
27828823c079SEric W. Biederman 	.type		= CLONE_NEWNS,
27838823c079SEric W. Biederman 	.get		= mntns_get,
27848823c079SEric W. Biederman 	.put		= mntns_put,
27858823c079SEric W. Biederman 	.install	= mntns_install,
27868823c079SEric W. Biederman };
2787