xref: /openbmc/linux/fs/namespace.c (revision 0714a533)
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>
121da177e4SLinus Torvalds #include <linux/slab.h>
131da177e4SLinus Torvalds #include <linux/sched.h>
1499b7db7bSNick Piggin #include <linux/spinlock.h>
1599b7db7bSNick Piggin #include <linux/percpu.h>
161da177e4SLinus Torvalds #include <linux/init.h>
1715a67dd8SRandy Dunlap #include <linux/kernel.h>
181da177e4SLinus Torvalds #include <linux/acct.h>
1916f7e0feSRandy Dunlap #include <linux/capability.h>
203d733633SDave Hansen #include <linux/cpumask.h>
211da177e4SLinus Torvalds #include <linux/module.h>
22f20a9eadSAndrew Morton #include <linux/sysfs.h>
231da177e4SLinus Torvalds #include <linux/seq_file.h>
246b3286edSKirill Korotaev #include <linux/mnt_namespace.h>
251da177e4SLinus Torvalds #include <linux/namei.h>
26b43f3cbdSAlexey Dobriyan #include <linux/nsproxy.h>
271da177e4SLinus Torvalds #include <linux/security.h>
281da177e4SLinus Torvalds #include <linux/mount.h>
2907f3f05cSDavid Howells #include <linux/ramfs.h>
3013f14b4dSEric Dumazet #include <linux/log2.h>
3173cd49ecSMiklos Szeredi #include <linux/idr.h>
325ad4e53bSAl Viro #include <linux/fs_struct.h>
332504c5d6SAndreas Gruenbacher #include <linux/fsnotify.h>
341da177e4SLinus Torvalds #include <asm/uaccess.h>
351da177e4SLinus Torvalds #include <asm/unistd.h>
3607b20889SRam Pai #include "pnode.h"
37948730b0SAdrian Bunk #include "internal.h"
381da177e4SLinus Torvalds 
3913f14b4dSEric Dumazet #define HASH_SHIFT ilog2(PAGE_SIZE / sizeof(struct list_head))
4013f14b4dSEric Dumazet #define HASH_SIZE (1UL << HASH_SHIFT)
4113f14b4dSEric Dumazet 
425addc5ddSAl Viro static int event;
4373cd49ecSMiklos Szeredi static DEFINE_IDA(mnt_id_ida);
44719f5d7fSMiklos Szeredi static DEFINE_IDA(mnt_group_ida);
4599b7db7bSNick Piggin static DEFINE_SPINLOCK(mnt_id_lock);
46f21f6220SAl Viro static int mnt_id_start = 0;
47f21f6220SAl Viro static int mnt_group_start = 1;
485addc5ddSAl Viro 
49fa3536ccSEric Dumazet static struct list_head *mount_hashtable __read_mostly;
50e18b890bSChristoph Lameter static struct kmem_cache *mnt_cache __read_mostly;
51390c6843SRam Pai static struct rw_semaphore namespace_sem;
521da177e4SLinus Torvalds 
53f87fd4c2SMiklos Szeredi /* /sys/fs */
5400d26666SGreg Kroah-Hartman struct kobject *fs_kobj;
5500d26666SGreg Kroah-Hartman EXPORT_SYMBOL_GPL(fs_kobj);
56f87fd4c2SMiklos Szeredi 
5799b7db7bSNick Piggin /*
5899b7db7bSNick Piggin  * vfsmount lock may be taken for read to prevent changes to the
5999b7db7bSNick Piggin  * vfsmount hash, ie. during mountpoint lookups or walking back
6099b7db7bSNick Piggin  * up the tree.
6199b7db7bSNick Piggin  *
6299b7db7bSNick Piggin  * It should be taken for write in all cases where the vfsmount
6399b7db7bSNick Piggin  * tree or hash is modified or when a vfsmount structure is modified.
6499b7db7bSNick Piggin  */
6599b7db7bSNick Piggin DEFINE_BRLOCK(vfsmount_lock);
6699b7db7bSNick Piggin 
671da177e4SLinus Torvalds static inline unsigned long hash(struct vfsmount *mnt, struct dentry *dentry)
681da177e4SLinus Torvalds {
691da177e4SLinus Torvalds 	unsigned long tmp = ((unsigned long)mnt / L1_CACHE_BYTES);
701da177e4SLinus Torvalds 	tmp += ((unsigned long)dentry / L1_CACHE_BYTES);
7113f14b4dSEric Dumazet 	tmp = tmp + (tmp >> HASH_SHIFT);
7213f14b4dSEric Dumazet 	return tmp & (HASH_SIZE - 1);
731da177e4SLinus Torvalds }
741da177e4SLinus Torvalds 
753d733633SDave Hansen #define MNT_WRITER_UNDERFLOW_LIMIT -(1<<16)
763d733633SDave Hansen 
7799b7db7bSNick Piggin /*
7899b7db7bSNick Piggin  * allocation is serialized by namespace_sem, but we need the spinlock to
7999b7db7bSNick Piggin  * serialize with freeing.
8099b7db7bSNick Piggin  */
81b105e270SAl Viro static int mnt_alloc_id(struct mount *mnt)
8273cd49ecSMiklos Szeredi {
8373cd49ecSMiklos Szeredi 	int res;
8473cd49ecSMiklos Szeredi 
8573cd49ecSMiklos Szeredi retry:
8673cd49ecSMiklos Szeredi 	ida_pre_get(&mnt_id_ida, GFP_KERNEL);
8799b7db7bSNick Piggin 	spin_lock(&mnt_id_lock);
88b105e270SAl Viro 	res = ida_get_new_above(&mnt_id_ida, mnt_id_start, &mnt->mnt.mnt_id);
89f21f6220SAl Viro 	if (!res)
90b105e270SAl Viro 		mnt_id_start = mnt->mnt.mnt_id + 1;
9199b7db7bSNick Piggin 	spin_unlock(&mnt_id_lock);
9273cd49ecSMiklos Szeredi 	if (res == -EAGAIN)
9373cd49ecSMiklos Szeredi 		goto retry;
9473cd49ecSMiklos Szeredi 
9573cd49ecSMiklos Szeredi 	return res;
9673cd49ecSMiklos Szeredi }
9773cd49ecSMiklos Szeredi 
98b105e270SAl Viro static void mnt_free_id(struct mount *mnt)
9973cd49ecSMiklos Szeredi {
100b105e270SAl Viro 	int id = mnt->mnt.mnt_id;
10199b7db7bSNick Piggin 	spin_lock(&mnt_id_lock);
102f21f6220SAl Viro 	ida_remove(&mnt_id_ida, id);
103f21f6220SAl Viro 	if (mnt_id_start > id)
104f21f6220SAl Viro 		mnt_id_start = id;
10599b7db7bSNick Piggin 	spin_unlock(&mnt_id_lock);
10673cd49ecSMiklos Szeredi }
10773cd49ecSMiklos Szeredi 
108719f5d7fSMiklos Szeredi /*
109719f5d7fSMiklos Szeredi  * Allocate a new peer group ID
110719f5d7fSMiklos Szeredi  *
111719f5d7fSMiklos Szeredi  * mnt_group_ida is protected by namespace_sem
112719f5d7fSMiklos Szeredi  */
1134b8b21f4SAl Viro static int mnt_alloc_group_id(struct mount *mnt)
114719f5d7fSMiklos Szeredi {
115f21f6220SAl Viro 	int res;
116f21f6220SAl Viro 
117719f5d7fSMiklos Szeredi 	if (!ida_pre_get(&mnt_group_ida, GFP_KERNEL))
118719f5d7fSMiklos Szeredi 		return -ENOMEM;
119719f5d7fSMiklos Szeredi 
120f21f6220SAl Viro 	res = ida_get_new_above(&mnt_group_ida,
121f21f6220SAl Viro 				mnt_group_start,
1224b8b21f4SAl Viro 				&mnt->mnt.mnt_group_id);
123f21f6220SAl Viro 	if (!res)
1244b8b21f4SAl Viro 		mnt_group_start = mnt->mnt.mnt_group_id + 1;
125f21f6220SAl Viro 
126f21f6220SAl Viro 	return res;
127719f5d7fSMiklos Szeredi }
128719f5d7fSMiklos Szeredi 
129719f5d7fSMiklos Szeredi /*
130719f5d7fSMiklos Szeredi  * Release a peer group ID
131719f5d7fSMiklos Szeredi  */
1324b8b21f4SAl Viro void mnt_release_group_id(struct mount *mnt)
133719f5d7fSMiklos Szeredi {
1344b8b21f4SAl Viro 	int id = mnt->mnt.mnt_group_id;
135f21f6220SAl Viro 	ida_remove(&mnt_group_ida, id);
136f21f6220SAl Viro 	if (mnt_group_start > id)
137f21f6220SAl Viro 		mnt_group_start = id;
1384b8b21f4SAl Viro 	mnt->mnt.mnt_group_id = 0;
139719f5d7fSMiklos Szeredi }
140719f5d7fSMiklos Szeredi 
141b3e19d92SNick Piggin /*
142b3e19d92SNick Piggin  * vfsmount lock must be held for read
143b3e19d92SNick Piggin  */
144b3e19d92SNick Piggin static inline void mnt_add_count(struct vfsmount *mnt, int n)
145b3e19d92SNick Piggin {
146b3e19d92SNick Piggin #ifdef CONFIG_SMP
147b3e19d92SNick Piggin 	this_cpu_add(mnt->mnt_pcp->mnt_count, n);
148b3e19d92SNick Piggin #else
149b3e19d92SNick Piggin 	preempt_disable();
150b3e19d92SNick Piggin 	mnt->mnt_count += n;
151b3e19d92SNick Piggin 	preempt_enable();
152b3e19d92SNick Piggin #endif
153b3e19d92SNick Piggin }
154b3e19d92SNick Piggin 
155b3e19d92SNick Piggin /*
156b3e19d92SNick Piggin  * vfsmount lock must be held for write
157b3e19d92SNick Piggin  */
158b3e19d92SNick Piggin unsigned int mnt_get_count(struct vfsmount *mnt)
159b3e19d92SNick Piggin {
160b3e19d92SNick Piggin #ifdef CONFIG_SMP
161f03c6599SAl Viro 	unsigned int count = 0;
162b3e19d92SNick Piggin 	int cpu;
163b3e19d92SNick Piggin 
164b3e19d92SNick Piggin 	for_each_possible_cpu(cpu) {
165b3e19d92SNick Piggin 		count += per_cpu_ptr(mnt->mnt_pcp, cpu)->mnt_count;
166b3e19d92SNick Piggin 	}
167b3e19d92SNick Piggin 
168b3e19d92SNick Piggin 	return count;
169b3e19d92SNick Piggin #else
170b3e19d92SNick Piggin 	return mnt->mnt_count;
171b3e19d92SNick Piggin #endif
172b3e19d92SNick Piggin }
173b3e19d92SNick Piggin 
174b105e270SAl Viro static struct mount *alloc_vfsmnt(const char *name)
1751da177e4SLinus Torvalds {
1767d6fec45SAl Viro 	struct mount *p = kmem_cache_zalloc(mnt_cache, GFP_KERNEL);
1777d6fec45SAl Viro 	if (p) {
1787d6fec45SAl Viro 		struct vfsmount *mnt = &p->mnt;
17973cd49ecSMiklos Szeredi 		int err;
18073cd49ecSMiklos Szeredi 
181b105e270SAl Viro 		err = mnt_alloc_id(p);
18288b38782SLi Zefan 		if (err)
18388b38782SLi Zefan 			goto out_free_cache;
18488b38782SLi Zefan 
18588b38782SLi Zefan 		if (name) {
18688b38782SLi Zefan 			mnt->mnt_devname = kstrdup(name, GFP_KERNEL);
18788b38782SLi Zefan 			if (!mnt->mnt_devname)
18888b38782SLi Zefan 				goto out_free_id;
18973cd49ecSMiklos Szeredi 		}
19073cd49ecSMiklos Szeredi 
191b3e19d92SNick Piggin #ifdef CONFIG_SMP
192b3e19d92SNick Piggin 		mnt->mnt_pcp = alloc_percpu(struct mnt_pcp);
193b3e19d92SNick Piggin 		if (!mnt->mnt_pcp)
194b3e19d92SNick Piggin 			goto out_free_devname;
195b3e19d92SNick Piggin 
196f03c6599SAl Viro 		this_cpu_add(mnt->mnt_pcp->mnt_count, 1);
197b3e19d92SNick Piggin #else
198b3e19d92SNick Piggin 		mnt->mnt_count = 1;
199b3e19d92SNick Piggin 		mnt->mnt_writers = 0;
200b3e19d92SNick Piggin #endif
201b3e19d92SNick Piggin 
2021b8e5564SAl Viro 		INIT_LIST_HEAD(&p->mnt_hash);
2031da177e4SLinus Torvalds 		INIT_LIST_HEAD(&mnt->mnt_child);
2041da177e4SLinus Torvalds 		INIT_LIST_HEAD(&mnt->mnt_mounts);
2051da177e4SLinus Torvalds 		INIT_LIST_HEAD(&mnt->mnt_list);
20655e700b9SMiklos Szeredi 		INIT_LIST_HEAD(&mnt->mnt_expire);
20703e06e68SRam Pai 		INIT_LIST_HEAD(&mnt->mnt_share);
208a58b0eb8SRam Pai 		INIT_LIST_HEAD(&mnt->mnt_slave_list);
209a58b0eb8SRam Pai 		INIT_LIST_HEAD(&mnt->mnt_slave);
2102504c5d6SAndreas Gruenbacher #ifdef CONFIG_FSNOTIFY
2112504c5d6SAndreas Gruenbacher 		INIT_HLIST_HEAD(&mnt->mnt_fsnotify_marks);
2122504c5d6SAndreas Gruenbacher #endif
2131da177e4SLinus Torvalds 	}
214b105e270SAl Viro 	return p;
21588b38782SLi Zefan 
216d3ef3d73Snpiggin@suse.de #ifdef CONFIG_SMP
217d3ef3d73Snpiggin@suse.de out_free_devname:
2187d6fec45SAl Viro 	kfree(p->mnt.mnt_devname);
219d3ef3d73Snpiggin@suse.de #endif
22088b38782SLi Zefan out_free_id:
221b105e270SAl Viro 	mnt_free_id(p);
22288b38782SLi Zefan out_free_cache:
2237d6fec45SAl Viro 	kmem_cache_free(mnt_cache, p);
22488b38782SLi Zefan 	return NULL;
2251da177e4SLinus Torvalds }
2261da177e4SLinus Torvalds 
2278366025eSDave Hansen /*
2288366025eSDave Hansen  * Most r/o checks on a fs are for operations that take
2298366025eSDave Hansen  * discrete amounts of time, like a write() or unlink().
2308366025eSDave Hansen  * We must keep track of when those operations start
2318366025eSDave Hansen  * (for permission checks) and when they end, so that
2328366025eSDave Hansen  * we can determine when writes are able to occur to
2338366025eSDave Hansen  * a filesystem.
2348366025eSDave Hansen  */
2353d733633SDave Hansen /*
2363d733633SDave Hansen  * __mnt_is_readonly: check whether a mount is read-only
2373d733633SDave Hansen  * @mnt: the mount to check for its write status
2383d733633SDave Hansen  *
2393d733633SDave Hansen  * This shouldn't be used directly ouside of the VFS.
2403d733633SDave Hansen  * It does not guarantee that the filesystem will stay
2413d733633SDave Hansen  * r/w, just that it is right *now*.  This can not and
2423d733633SDave Hansen  * should not be used in place of IS_RDONLY(inode).
2433d733633SDave Hansen  * mnt_want/drop_write() will _keep_ the filesystem
2443d733633SDave Hansen  * r/w.
2453d733633SDave Hansen  */
2463d733633SDave Hansen int __mnt_is_readonly(struct vfsmount *mnt)
2473d733633SDave Hansen {
2482e4b7fcdSDave Hansen 	if (mnt->mnt_flags & MNT_READONLY)
2492e4b7fcdSDave Hansen 		return 1;
2502e4b7fcdSDave Hansen 	if (mnt->mnt_sb->s_flags & MS_RDONLY)
2512e4b7fcdSDave Hansen 		return 1;
2522e4b7fcdSDave Hansen 	return 0;
2533d733633SDave Hansen }
2543d733633SDave Hansen EXPORT_SYMBOL_GPL(__mnt_is_readonly);
2553d733633SDave Hansen 
256c6653a83SNick Piggin static inline void mnt_inc_writers(struct vfsmount *mnt)
2573d733633SDave Hansen {
258d3ef3d73Snpiggin@suse.de #ifdef CONFIG_SMP
259b3e19d92SNick Piggin 	this_cpu_inc(mnt->mnt_pcp->mnt_writers);
260d3ef3d73Snpiggin@suse.de #else
261d3ef3d73Snpiggin@suse.de 	mnt->mnt_writers++;
262d3ef3d73Snpiggin@suse.de #endif
2633d733633SDave Hansen }
2643d733633SDave Hansen 
265c6653a83SNick Piggin static inline void mnt_dec_writers(struct vfsmount *mnt)
2663d733633SDave Hansen {
267d3ef3d73Snpiggin@suse.de #ifdef CONFIG_SMP
268b3e19d92SNick Piggin 	this_cpu_dec(mnt->mnt_pcp->mnt_writers);
269d3ef3d73Snpiggin@suse.de #else
270d3ef3d73Snpiggin@suse.de 	mnt->mnt_writers--;
271d3ef3d73Snpiggin@suse.de #endif
272d3ef3d73Snpiggin@suse.de }
273d3ef3d73Snpiggin@suse.de 
274c6653a83SNick Piggin static unsigned int mnt_get_writers(struct vfsmount *mnt)
275d3ef3d73Snpiggin@suse.de {
276d3ef3d73Snpiggin@suse.de #ifdef CONFIG_SMP
277d3ef3d73Snpiggin@suse.de 	unsigned int count = 0;
2783d733633SDave Hansen 	int cpu;
2793d733633SDave Hansen 
2803d733633SDave Hansen 	for_each_possible_cpu(cpu) {
281b3e19d92SNick Piggin 		count += per_cpu_ptr(mnt->mnt_pcp, cpu)->mnt_writers;
2823d733633SDave Hansen 	}
2833d733633SDave Hansen 
284d3ef3d73Snpiggin@suse.de 	return count;
285d3ef3d73Snpiggin@suse.de #else
286d3ef3d73Snpiggin@suse.de 	return mnt->mnt_writers;
287d3ef3d73Snpiggin@suse.de #endif
2883d733633SDave Hansen }
2893d733633SDave Hansen 
2903d733633SDave Hansen /*
2913d733633SDave Hansen  * Most r/o checks on a fs are for operations that take
2923d733633SDave Hansen  * discrete amounts of time, like a write() or unlink().
2933d733633SDave Hansen  * We must keep track of when those operations start
2943d733633SDave Hansen  * (for permission checks) and when they end, so that
2953d733633SDave Hansen  * we can determine when writes are able to occur to
2963d733633SDave Hansen  * a filesystem.
2973d733633SDave Hansen  */
2988366025eSDave Hansen /**
2998366025eSDave Hansen  * mnt_want_write - get write access to a mount
3008366025eSDave Hansen  * @mnt: the mount on which to take a write
3018366025eSDave Hansen  *
3028366025eSDave Hansen  * This tells the low-level filesystem that a write is
3038366025eSDave Hansen  * about to be performed to it, and makes sure that
3048366025eSDave Hansen  * writes are allowed before returning success.  When
3058366025eSDave Hansen  * the write operation is finished, mnt_drop_write()
3068366025eSDave Hansen  * must be called.  This is effectively a refcount.
3078366025eSDave Hansen  */
3088366025eSDave Hansen int mnt_want_write(struct vfsmount *mnt)
3098366025eSDave Hansen {
3103d733633SDave Hansen 	int ret = 0;
3113d733633SDave Hansen 
312d3ef3d73Snpiggin@suse.de 	preempt_disable();
313c6653a83SNick Piggin 	mnt_inc_writers(mnt);
314d3ef3d73Snpiggin@suse.de 	/*
315c6653a83SNick Piggin 	 * The store to mnt_inc_writers must be visible before we pass
316d3ef3d73Snpiggin@suse.de 	 * MNT_WRITE_HOLD loop below, so that the slowpath can see our
317d3ef3d73Snpiggin@suse.de 	 * incremented count after it has set MNT_WRITE_HOLD.
318d3ef3d73Snpiggin@suse.de 	 */
319d3ef3d73Snpiggin@suse.de 	smp_mb();
320d3ef3d73Snpiggin@suse.de 	while (mnt->mnt_flags & MNT_WRITE_HOLD)
321d3ef3d73Snpiggin@suse.de 		cpu_relax();
322d3ef3d73Snpiggin@suse.de 	/*
323d3ef3d73Snpiggin@suse.de 	 * After the slowpath clears MNT_WRITE_HOLD, mnt_is_readonly will
324d3ef3d73Snpiggin@suse.de 	 * be set to match its requirements. So we must not load that until
325d3ef3d73Snpiggin@suse.de 	 * MNT_WRITE_HOLD is cleared.
326d3ef3d73Snpiggin@suse.de 	 */
327d3ef3d73Snpiggin@suse.de 	smp_rmb();
3283d733633SDave Hansen 	if (__mnt_is_readonly(mnt)) {
329c6653a83SNick Piggin 		mnt_dec_writers(mnt);
3303d733633SDave Hansen 		ret = -EROFS;
3313d733633SDave Hansen 		goto out;
3323d733633SDave Hansen 	}
3333d733633SDave Hansen out:
334d3ef3d73Snpiggin@suse.de 	preempt_enable();
3353d733633SDave Hansen 	return ret;
3368366025eSDave Hansen }
3378366025eSDave Hansen EXPORT_SYMBOL_GPL(mnt_want_write);
3388366025eSDave Hansen 
3398366025eSDave Hansen /**
34096029c4eSnpiggin@suse.de  * mnt_clone_write - get write access to a mount
34196029c4eSnpiggin@suse.de  * @mnt: the mount on which to take a write
34296029c4eSnpiggin@suse.de  *
34396029c4eSnpiggin@suse.de  * This is effectively like mnt_want_write, except
34496029c4eSnpiggin@suse.de  * it must only be used to take an extra write reference
34596029c4eSnpiggin@suse.de  * on a mountpoint that we already know has a write reference
34696029c4eSnpiggin@suse.de  * on it. This allows some optimisation.
34796029c4eSnpiggin@suse.de  *
34896029c4eSnpiggin@suse.de  * After finished, mnt_drop_write must be called as usual to
34996029c4eSnpiggin@suse.de  * drop the reference.
35096029c4eSnpiggin@suse.de  */
35196029c4eSnpiggin@suse.de int mnt_clone_write(struct vfsmount *mnt)
35296029c4eSnpiggin@suse.de {
35396029c4eSnpiggin@suse.de 	/* superblock may be r/o */
35496029c4eSnpiggin@suse.de 	if (__mnt_is_readonly(mnt))
35596029c4eSnpiggin@suse.de 		return -EROFS;
35696029c4eSnpiggin@suse.de 	preempt_disable();
357c6653a83SNick Piggin 	mnt_inc_writers(mnt);
35896029c4eSnpiggin@suse.de 	preempt_enable();
35996029c4eSnpiggin@suse.de 	return 0;
36096029c4eSnpiggin@suse.de }
36196029c4eSnpiggin@suse.de EXPORT_SYMBOL_GPL(mnt_clone_write);
36296029c4eSnpiggin@suse.de 
36396029c4eSnpiggin@suse.de /**
36496029c4eSnpiggin@suse.de  * mnt_want_write_file - get write access to a file's mount
36596029c4eSnpiggin@suse.de  * @file: the file who's mount on which to take a write
36696029c4eSnpiggin@suse.de  *
36796029c4eSnpiggin@suse.de  * This is like mnt_want_write, but it takes a file and can
36896029c4eSnpiggin@suse.de  * do some optimisations if the file is open for write already
36996029c4eSnpiggin@suse.de  */
37096029c4eSnpiggin@suse.de int mnt_want_write_file(struct file *file)
37196029c4eSnpiggin@suse.de {
3722d8dd38aSOGAWA Hirofumi 	struct inode *inode = file->f_dentry->d_inode;
3732d8dd38aSOGAWA Hirofumi 	if (!(file->f_mode & FMODE_WRITE) || special_file(inode->i_mode))
37496029c4eSnpiggin@suse.de 		return mnt_want_write(file->f_path.mnt);
37596029c4eSnpiggin@suse.de 	else
37696029c4eSnpiggin@suse.de 		return mnt_clone_write(file->f_path.mnt);
37796029c4eSnpiggin@suse.de }
37896029c4eSnpiggin@suse.de EXPORT_SYMBOL_GPL(mnt_want_write_file);
37996029c4eSnpiggin@suse.de 
38096029c4eSnpiggin@suse.de /**
3818366025eSDave Hansen  * mnt_drop_write - give up write access to a mount
3828366025eSDave Hansen  * @mnt: the mount on which to give up write access
3838366025eSDave Hansen  *
3848366025eSDave Hansen  * Tells the low-level filesystem that we are done
3858366025eSDave Hansen  * performing writes to it.  Must be matched with
3868366025eSDave Hansen  * mnt_want_write() call above.
3878366025eSDave Hansen  */
3888366025eSDave Hansen void mnt_drop_write(struct vfsmount *mnt)
3898366025eSDave Hansen {
390d3ef3d73Snpiggin@suse.de 	preempt_disable();
391c6653a83SNick Piggin 	mnt_dec_writers(mnt);
392d3ef3d73Snpiggin@suse.de 	preempt_enable();
3938366025eSDave Hansen }
3948366025eSDave Hansen EXPORT_SYMBOL_GPL(mnt_drop_write);
3958366025eSDave Hansen 
3962a79f17eSAl Viro void mnt_drop_write_file(struct file *file)
3972a79f17eSAl Viro {
3982a79f17eSAl Viro 	mnt_drop_write(file->f_path.mnt);
3992a79f17eSAl Viro }
4002a79f17eSAl Viro EXPORT_SYMBOL(mnt_drop_write_file);
4012a79f17eSAl Viro 
4022e4b7fcdSDave Hansen static int mnt_make_readonly(struct vfsmount *mnt)
4038366025eSDave Hansen {
4043d733633SDave Hansen 	int ret = 0;
4053d733633SDave Hansen 
40699b7db7bSNick Piggin 	br_write_lock(vfsmount_lock);
407d3ef3d73Snpiggin@suse.de 	mnt->mnt_flags |= MNT_WRITE_HOLD;
408d3ef3d73Snpiggin@suse.de 	/*
409d3ef3d73Snpiggin@suse.de 	 * After storing MNT_WRITE_HOLD, we'll read the counters. This store
410d3ef3d73Snpiggin@suse.de 	 * should be visible before we do.
411d3ef3d73Snpiggin@suse.de 	 */
412d3ef3d73Snpiggin@suse.de 	smp_mb();
413d3ef3d73Snpiggin@suse.de 
414d3ef3d73Snpiggin@suse.de 	/*
415d3ef3d73Snpiggin@suse.de 	 * With writers on hold, if this value is zero, then there are
416d3ef3d73Snpiggin@suse.de 	 * definitely no active writers (although held writers may subsequently
417d3ef3d73Snpiggin@suse.de 	 * increment the count, they'll have to wait, and decrement it after
418d3ef3d73Snpiggin@suse.de 	 * seeing MNT_READONLY).
419d3ef3d73Snpiggin@suse.de 	 *
420d3ef3d73Snpiggin@suse.de 	 * It is OK to have counter incremented on one CPU and decremented on
421d3ef3d73Snpiggin@suse.de 	 * another: the sum will add up correctly. The danger would be when we
422d3ef3d73Snpiggin@suse.de 	 * sum up each counter, if we read a counter before it is incremented,
423d3ef3d73Snpiggin@suse.de 	 * but then read another CPU's count which it has been subsequently
424d3ef3d73Snpiggin@suse.de 	 * decremented from -- we would see more decrements than we should.
425d3ef3d73Snpiggin@suse.de 	 * MNT_WRITE_HOLD protects against this scenario, because
426d3ef3d73Snpiggin@suse.de 	 * mnt_want_write first increments count, then smp_mb, then spins on
427d3ef3d73Snpiggin@suse.de 	 * MNT_WRITE_HOLD, so it can't be decremented by another CPU while
428d3ef3d73Snpiggin@suse.de 	 * we're counting up here.
429d3ef3d73Snpiggin@suse.de 	 */
430c6653a83SNick Piggin 	if (mnt_get_writers(mnt) > 0)
431d3ef3d73Snpiggin@suse.de 		ret = -EBUSY;
432d3ef3d73Snpiggin@suse.de 	else
4332e4b7fcdSDave Hansen 		mnt->mnt_flags |= MNT_READONLY;
434d3ef3d73Snpiggin@suse.de 	/*
435d3ef3d73Snpiggin@suse.de 	 * MNT_READONLY must become visible before ~MNT_WRITE_HOLD, so writers
436d3ef3d73Snpiggin@suse.de 	 * that become unheld will see MNT_READONLY.
437d3ef3d73Snpiggin@suse.de 	 */
438d3ef3d73Snpiggin@suse.de 	smp_wmb();
439d3ef3d73Snpiggin@suse.de 	mnt->mnt_flags &= ~MNT_WRITE_HOLD;
44099b7db7bSNick Piggin 	br_write_unlock(vfsmount_lock);
4413d733633SDave Hansen 	return ret;
4423d733633SDave Hansen }
4438366025eSDave Hansen 
4442e4b7fcdSDave Hansen static void __mnt_unmake_readonly(struct vfsmount *mnt)
4452e4b7fcdSDave Hansen {
44699b7db7bSNick Piggin 	br_write_lock(vfsmount_lock);
4472e4b7fcdSDave Hansen 	mnt->mnt_flags &= ~MNT_READONLY;
44899b7db7bSNick Piggin 	br_write_unlock(vfsmount_lock);
4492e4b7fcdSDave Hansen }
4502e4b7fcdSDave Hansen 
451b105e270SAl Viro static void free_vfsmnt(struct mount *mnt)
4521da177e4SLinus Torvalds {
453b105e270SAl Viro 	kfree(mnt->mnt.mnt_devname);
45473cd49ecSMiklos Szeredi 	mnt_free_id(mnt);
455d3ef3d73Snpiggin@suse.de #ifdef CONFIG_SMP
456b105e270SAl Viro 	free_percpu(mnt->mnt.mnt_pcp);
457d3ef3d73Snpiggin@suse.de #endif
458b105e270SAl Viro 	kmem_cache_free(mnt_cache, mnt);
4591da177e4SLinus Torvalds }
4601da177e4SLinus Torvalds 
4611da177e4SLinus Torvalds /*
462a05964f3SRam Pai  * find the first or last mount at @dentry on vfsmount @mnt depending on
463a05964f3SRam Pai  * @dir. If @dir is set return the first mount else return the last mount.
46499b7db7bSNick Piggin  * vfsmount_lock must be held for read or write.
4651da177e4SLinus Torvalds  */
466c7105365SAl Viro struct mount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry,
467a05964f3SRam Pai 			      int dir)
4681da177e4SLinus Torvalds {
4691da177e4SLinus Torvalds 	struct list_head *head = mount_hashtable + hash(mnt, dentry);
4701da177e4SLinus Torvalds 	struct list_head *tmp = head;
471c7105365SAl Viro 	struct mount *p, *found = NULL;
4721da177e4SLinus Torvalds 
4731da177e4SLinus Torvalds 	for (;;) {
474a05964f3SRam Pai 		tmp = dir ? tmp->next : tmp->prev;
4751da177e4SLinus Torvalds 		p = NULL;
4761da177e4SLinus Torvalds 		if (tmp == head)
4771da177e4SLinus Torvalds 			break;
4781b8e5564SAl Viro 		p = list_entry(tmp, struct mount, mnt_hash);
4790714a533SAl Viro 		if (&p->mnt_parent->mnt == mnt && p->mnt.mnt_mountpoint == dentry) {
480a05964f3SRam Pai 			found = p;
4811da177e4SLinus Torvalds 			break;
4821da177e4SLinus Torvalds 		}
4831da177e4SLinus Torvalds 	}
4841da177e4SLinus Torvalds 	return found;
4851da177e4SLinus Torvalds }
4861da177e4SLinus Torvalds 
487a05964f3SRam Pai /*
488a05964f3SRam Pai  * lookup_mnt increments the ref count before returning
489a05964f3SRam Pai  * the vfsmount struct.
490a05964f3SRam Pai  */
4911c755af4SAl Viro struct vfsmount *lookup_mnt(struct path *path)
492a05964f3SRam Pai {
493c7105365SAl Viro 	struct mount *child_mnt;
49499b7db7bSNick Piggin 
49599b7db7bSNick Piggin 	br_read_lock(vfsmount_lock);
496c7105365SAl Viro 	child_mnt = __lookup_mnt(path->mnt, path->dentry, 1);
497c7105365SAl Viro 	if (child_mnt) {
498c7105365SAl Viro 		mnt_add_count(child_mnt, 1);
49999b7db7bSNick Piggin 		br_read_unlock(vfsmount_lock);
500c7105365SAl Viro 		return &child_mnt->mnt;
501c7105365SAl Viro 	} else {
502c7105365SAl Viro 		br_read_unlock(vfsmount_lock);
503c7105365SAl Viro 		return NULL;
504c7105365SAl Viro 	}
505a05964f3SRam Pai }
506a05964f3SRam Pai 
5071da177e4SLinus Torvalds static inline int check_mnt(struct vfsmount *mnt)
5081da177e4SLinus Torvalds {
5096b3286edSKirill Korotaev 	return mnt->mnt_ns == current->nsproxy->mnt_ns;
5101da177e4SLinus Torvalds }
5111da177e4SLinus Torvalds 
51299b7db7bSNick Piggin /*
51399b7db7bSNick Piggin  * vfsmount lock must be held for write
51499b7db7bSNick Piggin  */
5156b3286edSKirill Korotaev static void touch_mnt_namespace(struct mnt_namespace *ns)
5165addc5ddSAl Viro {
5175addc5ddSAl Viro 	if (ns) {
5185addc5ddSAl Viro 		ns->event = ++event;
5195addc5ddSAl Viro 		wake_up_interruptible(&ns->poll);
5205addc5ddSAl Viro 	}
5215addc5ddSAl Viro }
5225addc5ddSAl Viro 
52399b7db7bSNick Piggin /*
52499b7db7bSNick Piggin  * vfsmount lock must be held for write
52599b7db7bSNick Piggin  */
5266b3286edSKirill Korotaev static void __touch_mnt_namespace(struct mnt_namespace *ns)
5275addc5ddSAl Viro {
5285addc5ddSAl Viro 	if (ns && ns->event != event) {
5295addc5ddSAl Viro 		ns->event = event;
5305addc5ddSAl Viro 		wake_up_interruptible(&ns->poll);
5315addc5ddSAl Viro 	}
5325addc5ddSAl Viro }
5335addc5ddSAl Viro 
53499b7db7bSNick Piggin /*
5355f57cbccSNick Piggin  * Clear dentry's mounted state if it has no remaining mounts.
5365f57cbccSNick Piggin  * vfsmount_lock must be held for write.
5375f57cbccSNick Piggin  */
538aa0a4cf0SAl Viro static void dentry_reset_mounted(struct dentry *dentry)
5395f57cbccSNick Piggin {
5405f57cbccSNick Piggin 	unsigned u;
5415f57cbccSNick Piggin 
5425f57cbccSNick Piggin 	for (u = 0; u < HASH_SIZE; u++) {
543d5e50f74SAl Viro 		struct mount *p;
5445f57cbccSNick Piggin 
5451b8e5564SAl Viro 		list_for_each_entry(p, &mount_hashtable[u], mnt_hash) {
546d5e50f74SAl Viro 			if (p->mnt.mnt_mountpoint == dentry)
5475f57cbccSNick Piggin 				return;
5485f57cbccSNick Piggin 		}
5495f57cbccSNick Piggin 	}
5505f57cbccSNick Piggin 	spin_lock(&dentry->d_lock);
5515f57cbccSNick Piggin 	dentry->d_flags &= ~DCACHE_MOUNTED;
5525f57cbccSNick Piggin 	spin_unlock(&dentry->d_lock);
5535f57cbccSNick Piggin }
5545f57cbccSNick Piggin 
5555f57cbccSNick Piggin /*
55699b7db7bSNick Piggin  * vfsmount lock must be held for write
55799b7db7bSNick Piggin  */
558419148daSAl Viro static void detach_mnt(struct mount *mnt, struct path *old_path)
5591da177e4SLinus Torvalds {
560419148daSAl Viro 	old_path->dentry = mnt->mnt.mnt_mountpoint;
5610714a533SAl Viro 	old_path->mnt = &mnt->mnt_parent->mnt;
5620714a533SAl Viro 	mnt->mnt_parent = mnt;
563419148daSAl Viro 	mnt->mnt.mnt_mountpoint = mnt->mnt.mnt_root;
564419148daSAl Viro 	list_del_init(&mnt->mnt.mnt_child);
5651b8e5564SAl Viro 	list_del_init(&mnt->mnt_hash);
566aa0a4cf0SAl Viro 	dentry_reset_mounted(old_path->dentry);
5671da177e4SLinus Torvalds }
5681da177e4SLinus Torvalds 
56999b7db7bSNick Piggin /*
57099b7db7bSNick Piggin  * vfsmount lock must be held for write
57199b7db7bSNick Piggin  */
572b90fa9aeSRam Pai void mnt_set_mountpoint(struct vfsmount *mnt, struct dentry *dentry,
57344d964d6SAl Viro 			struct mount *child_mnt)
574b90fa9aeSRam Pai {
5750714a533SAl Viro 	child_mnt->mnt_parent = real_mount(mntget(mnt));
57644d964d6SAl Viro 	child_mnt->mnt.mnt_mountpoint = dget(dentry);
5775f57cbccSNick Piggin 	spin_lock(&dentry->d_lock);
5785f57cbccSNick Piggin 	dentry->d_flags |= DCACHE_MOUNTED;
5795f57cbccSNick Piggin 	spin_unlock(&dentry->d_lock);
580b90fa9aeSRam Pai }
581b90fa9aeSRam Pai 
58299b7db7bSNick Piggin /*
58399b7db7bSNick Piggin  * vfsmount lock must be held for write
58499b7db7bSNick Piggin  */
585419148daSAl Viro static void attach_mnt(struct mount *mnt, struct path *path)
5861da177e4SLinus Torvalds {
58744d964d6SAl Viro 	mnt_set_mountpoint(path->mnt, path->dentry, mnt);
5881b8e5564SAl Viro 	list_add_tail(&mnt->mnt_hash, mount_hashtable +
5891a390689SAl Viro 			hash(path->mnt, path->dentry));
590419148daSAl Viro 	list_add_tail(&mnt->mnt.mnt_child, &path->mnt->mnt_mounts);
591b90fa9aeSRam Pai }
592b90fa9aeSRam Pai 
5937e3d0eb0SAl Viro static inline void __mnt_make_longterm(struct vfsmount *mnt)
5947e3d0eb0SAl Viro {
5957e3d0eb0SAl Viro #ifdef CONFIG_SMP
5967e3d0eb0SAl Viro 	atomic_inc(&mnt->mnt_longterm);
5977e3d0eb0SAl Viro #endif
5987e3d0eb0SAl Viro }
5997e3d0eb0SAl Viro 
6007e3d0eb0SAl Viro /* needs vfsmount lock for write */
6017e3d0eb0SAl Viro static inline void __mnt_make_shortterm(struct vfsmount *mnt)
6027e3d0eb0SAl Viro {
6037e3d0eb0SAl Viro #ifdef CONFIG_SMP
6047e3d0eb0SAl Viro 	atomic_dec(&mnt->mnt_longterm);
6057e3d0eb0SAl Viro #endif
6067e3d0eb0SAl Viro }
6077e3d0eb0SAl Viro 
608b90fa9aeSRam Pai /*
60999b7db7bSNick Piggin  * vfsmount lock must be held for write
610b90fa9aeSRam Pai  */
6114b2619a5SAl Viro static void commit_tree(struct mount *mnt)
612b90fa9aeSRam Pai {
6130714a533SAl Viro 	struct mount *parent = mnt->mnt_parent;
614b90fa9aeSRam Pai 	struct vfsmount *m;
615b90fa9aeSRam Pai 	LIST_HEAD(head);
6160714a533SAl Viro 	struct mnt_namespace *n = parent->mnt.mnt_ns;
617b90fa9aeSRam Pai 
6180714a533SAl Viro 	BUG_ON(parent == mnt);
619b90fa9aeSRam Pai 
6204b2619a5SAl Viro 	list_add_tail(&head, &mnt->mnt.mnt_list);
621f03c6599SAl Viro 	list_for_each_entry(m, &head, mnt_list) {
6226b3286edSKirill Korotaev 		m->mnt_ns = n;
6237e3d0eb0SAl Viro 		__mnt_make_longterm(m);
624f03c6599SAl Viro 	}
625f03c6599SAl Viro 
626b90fa9aeSRam Pai 	list_splice(&head, n->list.prev);
627b90fa9aeSRam Pai 
6281b8e5564SAl Viro 	list_add_tail(&mnt->mnt_hash, mount_hashtable +
6290714a533SAl Viro 				hash(&parent->mnt, mnt->mnt.mnt_mountpoint));
6300714a533SAl Viro 	list_add_tail(&mnt->mnt.mnt_child, &parent->mnt.mnt_mounts);
6316b3286edSKirill Korotaev 	touch_mnt_namespace(n);
6321da177e4SLinus Torvalds }
6331da177e4SLinus Torvalds 
634315fc83eSAl Viro static struct mount *next_mnt(struct mount *p, struct vfsmount *root)
6351da177e4SLinus Torvalds {
636315fc83eSAl Viro 	struct list_head *next = p->mnt.mnt_mounts.next;
637315fc83eSAl Viro 	if (next == &p->mnt.mnt_mounts) {
6381da177e4SLinus Torvalds 		while (1) {
639315fc83eSAl Viro 			if (&p->mnt == root)
6401da177e4SLinus Torvalds 				return NULL;
641315fc83eSAl Viro 			next = p->mnt.mnt_child.next;
6420714a533SAl Viro 			if (next != &p->mnt_parent->mnt.mnt_mounts)
6431da177e4SLinus Torvalds 				break;
6440714a533SAl Viro 			p = p->mnt_parent;
6451da177e4SLinus Torvalds 		}
6461da177e4SLinus Torvalds 	}
647315fc83eSAl Viro 	return list_entry(next, struct mount, mnt.mnt_child);
6481da177e4SLinus Torvalds }
6491da177e4SLinus Torvalds 
650315fc83eSAl Viro static struct mount *skip_mnt_tree(struct mount *p)
6519676f0c6SRam Pai {
652315fc83eSAl Viro 	struct list_head *prev = p->mnt.mnt_mounts.prev;
653315fc83eSAl Viro 	while (prev != &p->mnt.mnt_mounts) {
654315fc83eSAl Viro 		p = list_entry(prev, struct mount, mnt.mnt_child);
655315fc83eSAl Viro 		prev = p->mnt.mnt_mounts.prev;
6569676f0c6SRam Pai 	}
6579676f0c6SRam Pai 	return p;
6589676f0c6SRam Pai }
6599676f0c6SRam Pai 
6609d412a43SAl Viro struct vfsmount *
6619d412a43SAl Viro vfs_kern_mount(struct file_system_type *type, int flags, const char *name, void *data)
6629d412a43SAl Viro {
663b105e270SAl Viro 	struct mount *mnt;
6649d412a43SAl Viro 	struct dentry *root;
6659d412a43SAl Viro 
6669d412a43SAl Viro 	if (!type)
6679d412a43SAl Viro 		return ERR_PTR(-ENODEV);
6689d412a43SAl Viro 
6699d412a43SAl Viro 	mnt = alloc_vfsmnt(name);
6709d412a43SAl Viro 	if (!mnt)
6719d412a43SAl Viro 		return ERR_PTR(-ENOMEM);
6729d412a43SAl Viro 
6739d412a43SAl Viro 	if (flags & MS_KERNMOUNT)
674b105e270SAl Viro 		mnt->mnt.mnt_flags = MNT_INTERNAL;
6759d412a43SAl Viro 
6769d412a43SAl Viro 	root = mount_fs(type, flags, name, data);
6779d412a43SAl Viro 	if (IS_ERR(root)) {
6789d412a43SAl Viro 		free_vfsmnt(mnt);
6799d412a43SAl Viro 		return ERR_CAST(root);
6809d412a43SAl Viro 	}
6819d412a43SAl Viro 
682b105e270SAl Viro 	mnt->mnt.mnt_root = root;
683b105e270SAl Viro 	mnt->mnt.mnt_sb = root->d_sb;
684b105e270SAl Viro 	mnt->mnt.mnt_mountpoint = mnt->mnt.mnt_root;
6850714a533SAl Viro 	mnt->mnt_parent = mnt;
686b105e270SAl Viro 	return &mnt->mnt;
6879d412a43SAl Viro }
6889d412a43SAl Viro EXPORT_SYMBOL_GPL(vfs_kern_mount);
6899d412a43SAl Viro 
69087129cc0SAl Viro static struct mount *clone_mnt(struct mount *old, struct dentry *root,
69136341f64SRam Pai 					int flag)
6921da177e4SLinus Torvalds {
69387129cc0SAl Viro 	struct super_block *sb = old->mnt.mnt_sb;
69487129cc0SAl Viro 	struct mount *mnt = alloc_vfsmnt(old->mnt.mnt_devname);
6951da177e4SLinus Torvalds 
6961da177e4SLinus Torvalds 	if (mnt) {
697719f5d7fSMiklos Szeredi 		if (flag & (CL_SLAVE | CL_PRIVATE))
698b105e270SAl Viro 			mnt->mnt.mnt_group_id = 0; /* not a peer of original */
699719f5d7fSMiklos Szeredi 		else
70087129cc0SAl Viro 			mnt->mnt.mnt_group_id = old->mnt.mnt_group_id;
701719f5d7fSMiklos Szeredi 
702b105e270SAl Viro 		if ((flag & CL_MAKE_SHARED) && !mnt->mnt.mnt_group_id) {
703b105e270SAl Viro 			int err = mnt_alloc_group_id(mnt);
704719f5d7fSMiklos Szeredi 			if (err)
705719f5d7fSMiklos Szeredi 				goto out_free;
706719f5d7fSMiklos Szeredi 		}
707719f5d7fSMiklos Szeredi 
70887129cc0SAl Viro 		mnt->mnt.mnt_flags = old->mnt.mnt_flags & ~MNT_WRITE_HOLD;
7091da177e4SLinus Torvalds 		atomic_inc(&sb->s_active);
710b105e270SAl Viro 		mnt->mnt.mnt_sb = sb;
711b105e270SAl Viro 		mnt->mnt.mnt_root = dget(root);
712b105e270SAl Viro 		mnt->mnt.mnt_mountpoint = mnt->mnt.mnt_root;
7130714a533SAl Viro 		mnt->mnt_parent = mnt;
714b90fa9aeSRam Pai 
7155afe0022SRam Pai 		if (flag & CL_SLAVE) {
71687129cc0SAl Viro 			list_add(&mnt->mnt.mnt_slave, &old->mnt.mnt_slave_list);
71787129cc0SAl Viro 			mnt->mnt.mnt_master = &old->mnt;
718b105e270SAl Viro 			CLEAR_MNT_SHARED(&mnt->mnt);
7198aec0809SAl Viro 		} else if (!(flag & CL_PRIVATE)) {
72087129cc0SAl Viro 			if ((flag & CL_MAKE_SHARED) || IS_MNT_SHARED(&old->mnt))
72187129cc0SAl Viro 				list_add(&mnt->mnt.mnt_share, &old->mnt.mnt_share);
72287129cc0SAl Viro 			if (IS_MNT_SLAVE(&old->mnt))
72387129cc0SAl Viro 				list_add(&mnt->mnt.mnt_slave, &old->mnt.mnt_slave);
72487129cc0SAl Viro 			mnt->mnt.mnt_master = old->mnt.mnt_master;
7255afe0022SRam Pai 		}
726b90fa9aeSRam Pai 		if (flag & CL_MAKE_SHARED)
7270f0afb1dSAl Viro 			set_mnt_shared(mnt);
7281da177e4SLinus Torvalds 
7291da177e4SLinus Torvalds 		/* stick the duplicate mount on the same expiry list
7301da177e4SLinus Torvalds 		 * as the original if that was on one */
73136341f64SRam Pai 		if (flag & CL_EXPIRE) {
73287129cc0SAl Viro 			if (!list_empty(&old->mnt.mnt_expire))
73387129cc0SAl Viro 				list_add(&mnt->mnt.mnt_expire, &old->mnt.mnt_expire);
7341da177e4SLinus Torvalds 		}
73536341f64SRam Pai 	}
736cb338d06SAl Viro 	return mnt;
737719f5d7fSMiklos Szeredi 
738719f5d7fSMiklos Szeredi  out_free:
739719f5d7fSMiklos Szeredi 	free_vfsmnt(mnt);
740719f5d7fSMiklos Szeredi 	return NULL;
7411da177e4SLinus Torvalds }
7421da177e4SLinus Torvalds 
743b3e19d92SNick Piggin static inline void mntfree(struct vfsmount *mnt)
7441da177e4SLinus Torvalds {
7451da177e4SLinus Torvalds 	struct super_block *sb = mnt->mnt_sb;
746b3e19d92SNick Piggin 
7473d733633SDave Hansen 	/*
7483d733633SDave Hansen 	 * This probably indicates that somebody messed
7493d733633SDave Hansen 	 * up a mnt_want/drop_write() pair.  If this
7503d733633SDave Hansen 	 * happens, the filesystem was probably unable
7513d733633SDave Hansen 	 * to make r/w->r/o transitions.
7523d733633SDave Hansen 	 */
753d3ef3d73Snpiggin@suse.de 	/*
754b3e19d92SNick Piggin 	 * The locking used to deal with mnt_count decrement provides barriers,
755b3e19d92SNick Piggin 	 * so mnt_get_writers() below is safe.
756d3ef3d73Snpiggin@suse.de 	 */
757c6653a83SNick Piggin 	WARN_ON(mnt_get_writers(mnt));
758ca9c726eSAndreas Gruenbacher 	fsnotify_vfsmount_delete(mnt);
7591da177e4SLinus Torvalds 	dput(mnt->mnt_root);
760b105e270SAl Viro 	free_vfsmnt(real_mount(mnt));
7611da177e4SLinus Torvalds 	deactivate_super(sb);
7621da177e4SLinus Torvalds }
7631da177e4SLinus Torvalds 
764f03c6599SAl Viro static void mntput_no_expire(struct vfsmount *mnt)
7657b7b1aceSAl Viro {
766b3e19d92SNick Piggin put_again:
767f03c6599SAl Viro #ifdef CONFIG_SMP
768b3e19d92SNick Piggin 	br_read_lock(vfsmount_lock);
769f03c6599SAl Viro 	if (likely(atomic_read(&mnt->mnt_longterm))) {
770aa9c0e07SAl Viro 		mnt_add_count(mnt, -1);
771b3e19d92SNick Piggin 		br_read_unlock(vfsmount_lock);
77299b7db7bSNick Piggin 		return;
773b3e19d92SNick Piggin 	}
774b3e19d92SNick Piggin 	br_read_unlock(vfsmount_lock);
775b3e19d92SNick Piggin 
77699b7db7bSNick Piggin 	br_write_lock(vfsmount_lock);
777aa9c0e07SAl Viro 	mnt_add_count(mnt, -1);
778b3e19d92SNick Piggin 	if (mnt_get_count(mnt)) {
77999b7db7bSNick Piggin 		br_write_unlock(vfsmount_lock);
78099b7db7bSNick Piggin 		return;
78199b7db7bSNick Piggin 	}
782b3e19d92SNick Piggin #else
783aa9c0e07SAl Viro 	mnt_add_count(mnt, -1);
784b3e19d92SNick Piggin 	if (likely(mnt_get_count(mnt)))
785b3e19d92SNick Piggin 		return;
786b3e19d92SNick Piggin 	br_write_lock(vfsmount_lock);
787f03c6599SAl Viro #endif
788b3e19d92SNick Piggin 	if (unlikely(mnt->mnt_pinned)) {
789b3e19d92SNick Piggin 		mnt_add_count(mnt, mnt->mnt_pinned + 1);
790b3e19d92SNick Piggin 		mnt->mnt_pinned = 0;
791b3e19d92SNick Piggin 		br_write_unlock(vfsmount_lock);
792b3e19d92SNick Piggin 		acct_auto_close_mnt(mnt);
793b3e19d92SNick Piggin 		goto put_again;
794b3e19d92SNick Piggin 	}
795b3e19d92SNick Piggin 	br_write_unlock(vfsmount_lock);
796b3e19d92SNick Piggin 	mntfree(mnt);
797b3e19d92SNick Piggin }
798b3e19d92SNick Piggin 
799b3e19d92SNick Piggin void mntput(struct vfsmount *mnt)
800b3e19d92SNick Piggin {
801b3e19d92SNick Piggin 	if (mnt) {
802b3e19d92SNick Piggin 		/* avoid cacheline pingpong, hope gcc doesn't get "smart" */
803b3e19d92SNick Piggin 		if (unlikely(mnt->mnt_expiry_mark))
804b3e19d92SNick Piggin 			mnt->mnt_expiry_mark = 0;
805f03c6599SAl Viro 		mntput_no_expire(mnt);
806b3e19d92SNick Piggin 	}
807b3e19d92SNick Piggin }
808b3e19d92SNick Piggin EXPORT_SYMBOL(mntput);
809b3e19d92SNick Piggin 
810b3e19d92SNick Piggin struct vfsmount *mntget(struct vfsmount *mnt)
811b3e19d92SNick Piggin {
812b3e19d92SNick Piggin 	if (mnt)
813aa9c0e07SAl Viro 		mnt_add_count(mnt, 1);
814b3e19d92SNick Piggin 	return mnt;
815b3e19d92SNick Piggin }
816b3e19d92SNick Piggin EXPORT_SYMBOL(mntget);
817b3e19d92SNick Piggin 
8187b7b1aceSAl Viro void mnt_pin(struct vfsmount *mnt)
8197b7b1aceSAl Viro {
82099b7db7bSNick Piggin 	br_write_lock(vfsmount_lock);
8217b7b1aceSAl Viro 	mnt->mnt_pinned++;
82299b7db7bSNick Piggin 	br_write_unlock(vfsmount_lock);
8237b7b1aceSAl Viro }
8247b7b1aceSAl Viro EXPORT_SYMBOL(mnt_pin);
8257b7b1aceSAl Viro 
8267b7b1aceSAl Viro void mnt_unpin(struct vfsmount *mnt)
8277b7b1aceSAl Viro {
82899b7db7bSNick Piggin 	br_write_lock(vfsmount_lock);
8297b7b1aceSAl Viro 	if (mnt->mnt_pinned) {
830aa9c0e07SAl Viro 		mnt_add_count(mnt, 1);
8317b7b1aceSAl Viro 		mnt->mnt_pinned--;
8327b7b1aceSAl Viro 	}
83399b7db7bSNick Piggin 	br_write_unlock(vfsmount_lock);
8347b7b1aceSAl Viro }
8357b7b1aceSAl Viro EXPORT_SYMBOL(mnt_unpin);
8361da177e4SLinus Torvalds 
837b3b304a2SMiklos Szeredi static inline void mangle(struct seq_file *m, const char *s)
838b3b304a2SMiklos Szeredi {
839b3b304a2SMiklos Szeredi 	seq_escape(m, s, " \t\n\\");
840b3b304a2SMiklos Szeredi }
841b3b304a2SMiklos Szeredi 
842b3b304a2SMiklos Szeredi /*
843b3b304a2SMiklos Szeredi  * Simple .show_options callback for filesystems which don't want to
844b3b304a2SMiklos Szeredi  * implement more complex mount option showing.
845b3b304a2SMiklos Szeredi  *
846b3b304a2SMiklos Szeredi  * See also save_mount_options().
847b3b304a2SMiklos Szeredi  */
848b3b304a2SMiklos Szeredi int generic_show_options(struct seq_file *m, struct vfsmount *mnt)
849b3b304a2SMiklos Szeredi {
8502a32cebdSAl Viro 	const char *options;
8512a32cebdSAl Viro 
8522a32cebdSAl Viro 	rcu_read_lock();
8532a32cebdSAl Viro 	options = rcu_dereference(mnt->mnt_sb->s_options);
854b3b304a2SMiklos Szeredi 
855b3b304a2SMiklos Szeredi 	if (options != NULL && options[0]) {
856b3b304a2SMiklos Szeredi 		seq_putc(m, ',');
857b3b304a2SMiklos Szeredi 		mangle(m, options);
858b3b304a2SMiklos Szeredi 	}
8592a32cebdSAl Viro 	rcu_read_unlock();
860b3b304a2SMiklos Szeredi 
861b3b304a2SMiklos Szeredi 	return 0;
862b3b304a2SMiklos Szeredi }
863b3b304a2SMiklos Szeredi EXPORT_SYMBOL(generic_show_options);
864b3b304a2SMiklos Szeredi 
865b3b304a2SMiklos Szeredi /*
866b3b304a2SMiklos Szeredi  * If filesystem uses generic_show_options(), this function should be
867b3b304a2SMiklos Szeredi  * called from the fill_super() callback.
868b3b304a2SMiklos Szeredi  *
869b3b304a2SMiklos Szeredi  * The .remount_fs callback usually needs to be handled in a special
870b3b304a2SMiklos Szeredi  * way, to make sure, that previous options are not overwritten if the
871b3b304a2SMiklos Szeredi  * remount fails.
872b3b304a2SMiklos Szeredi  *
873b3b304a2SMiklos Szeredi  * Also note, that if the filesystem's .remount_fs function doesn't
874b3b304a2SMiklos Szeredi  * reset all options to their default value, but changes only newly
875b3b304a2SMiklos Szeredi  * given options, then the displayed options will not reflect reality
876b3b304a2SMiklos Szeredi  * any more.
877b3b304a2SMiklos Szeredi  */
878b3b304a2SMiklos Szeredi void save_mount_options(struct super_block *sb, char *options)
879b3b304a2SMiklos Szeredi {
8802a32cebdSAl Viro 	BUG_ON(sb->s_options);
8812a32cebdSAl Viro 	rcu_assign_pointer(sb->s_options, kstrdup(options, GFP_KERNEL));
882b3b304a2SMiklos Szeredi }
883b3b304a2SMiklos Szeredi EXPORT_SYMBOL(save_mount_options);
884b3b304a2SMiklos Szeredi 
8852a32cebdSAl Viro void replace_mount_options(struct super_block *sb, char *options)
8862a32cebdSAl Viro {
8872a32cebdSAl Viro 	char *old = sb->s_options;
8882a32cebdSAl Viro 	rcu_assign_pointer(sb->s_options, options);
8892a32cebdSAl Viro 	if (old) {
8902a32cebdSAl Viro 		synchronize_rcu();
8912a32cebdSAl Viro 		kfree(old);
8922a32cebdSAl Viro 	}
8932a32cebdSAl Viro }
8942a32cebdSAl Viro EXPORT_SYMBOL(replace_mount_options);
8952a32cebdSAl Viro 
896a1a2c409SMiklos Szeredi #ifdef CONFIG_PROC_FS
8971da177e4SLinus Torvalds /* iterator */
8981da177e4SLinus Torvalds static void *m_start(struct seq_file *m, loff_t *pos)
8991da177e4SLinus Torvalds {
900a1a2c409SMiklos Szeredi 	struct proc_mounts *p = m->private;
9011da177e4SLinus Torvalds 
902390c6843SRam Pai 	down_read(&namespace_sem);
903a1a2c409SMiklos Szeredi 	return seq_list_start(&p->ns->list, *pos);
9041da177e4SLinus Torvalds }
9051da177e4SLinus Torvalds 
9061da177e4SLinus Torvalds static void *m_next(struct seq_file *m, void *v, loff_t *pos)
9071da177e4SLinus Torvalds {
908a1a2c409SMiklos Szeredi 	struct proc_mounts *p = m->private;
909b0765fb8SPavel Emelianov 
910a1a2c409SMiklos Szeredi 	return seq_list_next(v, &p->ns->list, pos);
9111da177e4SLinus Torvalds }
9121da177e4SLinus Torvalds 
9131da177e4SLinus Torvalds static void m_stop(struct seq_file *m, void *v)
9141da177e4SLinus Torvalds {
915390c6843SRam Pai 	up_read(&namespace_sem);
9161da177e4SLinus Torvalds }
9171da177e4SLinus Torvalds 
9189f5596afSAl Viro int mnt_had_events(struct proc_mounts *p)
9199f5596afSAl Viro {
9209f5596afSAl Viro 	struct mnt_namespace *ns = p->ns;
9219f5596afSAl Viro 	int res = 0;
9229f5596afSAl Viro 
92399b7db7bSNick Piggin 	br_read_lock(vfsmount_lock);
924f1514638SKay Sievers 	if (p->m.poll_event != ns->event) {
925f1514638SKay Sievers 		p->m.poll_event = ns->event;
9269f5596afSAl Viro 		res = 1;
9279f5596afSAl Viro 	}
92899b7db7bSNick Piggin 	br_read_unlock(vfsmount_lock);
9299f5596afSAl Viro 
9309f5596afSAl Viro 	return res;
9319f5596afSAl Viro }
9329f5596afSAl Viro 
9332d4d4864SRam Pai struct proc_fs_info {
9341da177e4SLinus Torvalds 	int flag;
9352d4d4864SRam Pai 	const char *str;
9362d4d4864SRam Pai };
9372d4d4864SRam Pai 
9382069f457SEric Paris static int show_sb_opts(struct seq_file *m, struct super_block *sb)
9392d4d4864SRam Pai {
9402d4d4864SRam Pai 	static const struct proc_fs_info fs_info[] = {
9411da177e4SLinus Torvalds 		{ MS_SYNCHRONOUS, ",sync" },
9421da177e4SLinus Torvalds 		{ MS_DIRSYNC, ",dirsync" },
9431da177e4SLinus Torvalds 		{ MS_MANDLOCK, ",mand" },
9441da177e4SLinus Torvalds 		{ 0, NULL }
9451da177e4SLinus Torvalds 	};
9462d4d4864SRam Pai 	const struct proc_fs_info *fs_infop;
9472d4d4864SRam Pai 
9482d4d4864SRam Pai 	for (fs_infop = fs_info; fs_infop->flag; fs_infop++) {
9492d4d4864SRam Pai 		if (sb->s_flags & fs_infop->flag)
9502d4d4864SRam Pai 			seq_puts(m, fs_infop->str);
9512d4d4864SRam Pai 	}
9522069f457SEric Paris 
9532069f457SEric Paris 	return security_sb_show_options(m, sb);
9542d4d4864SRam Pai }
9552d4d4864SRam Pai 
9562d4d4864SRam Pai static void show_mnt_opts(struct seq_file *m, struct vfsmount *mnt)
9572d4d4864SRam Pai {
9582d4d4864SRam Pai 	static const struct proc_fs_info mnt_info[] = {
9591da177e4SLinus Torvalds 		{ MNT_NOSUID, ",nosuid" },
9601da177e4SLinus Torvalds 		{ MNT_NODEV, ",nodev" },
9611da177e4SLinus Torvalds 		{ MNT_NOEXEC, ",noexec" },
962fc33a7bbSChristoph Hellwig 		{ MNT_NOATIME, ",noatime" },
963fc33a7bbSChristoph Hellwig 		{ MNT_NODIRATIME, ",nodiratime" },
96447ae32d6SValerie Henson 		{ MNT_RELATIME, ",relatime" },
9651da177e4SLinus Torvalds 		{ 0, NULL }
9661da177e4SLinus Torvalds 	};
9672d4d4864SRam Pai 	const struct proc_fs_info *fs_infop;
9682d4d4864SRam Pai 
9692d4d4864SRam Pai 	for (fs_infop = mnt_info; fs_infop->flag; fs_infop++) {
9702d4d4864SRam Pai 		if (mnt->mnt_flags & fs_infop->flag)
9712d4d4864SRam Pai 			seq_puts(m, fs_infop->str);
9722d4d4864SRam Pai 	}
9732d4d4864SRam Pai }
9742d4d4864SRam Pai 
9752d4d4864SRam Pai static void show_type(struct seq_file *m, struct super_block *sb)
9762d4d4864SRam Pai {
9772d4d4864SRam Pai 	mangle(m, sb->s_type->name);
9782d4d4864SRam Pai 	if (sb->s_subtype && sb->s_subtype[0]) {
9792d4d4864SRam Pai 		seq_putc(m, '.');
9802d4d4864SRam Pai 		mangle(m, sb->s_subtype);
9812d4d4864SRam Pai 	}
9822d4d4864SRam Pai }
9832d4d4864SRam Pai 
9842d4d4864SRam Pai static int show_vfsmnt(struct seq_file *m, void *v)
9852d4d4864SRam Pai {
9862d4d4864SRam Pai 	struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
9872d4d4864SRam Pai 	int err = 0;
988c32c2f63SJan Blunck 	struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
9891da177e4SLinus Torvalds 
990c7f404b4SAl Viro 	if (mnt->mnt_sb->s_op->show_devname) {
991c7f404b4SAl Viro 		err = mnt->mnt_sb->s_op->show_devname(m, mnt);
992c7f404b4SAl Viro 		if (err)
993c7f404b4SAl Viro 			goto out;
994c7f404b4SAl Viro 	} else {
9951da177e4SLinus Torvalds 		mangle(m, mnt->mnt_devname ? mnt->mnt_devname : "none");
996c7f404b4SAl Viro 	}
9971da177e4SLinus Torvalds 	seq_putc(m, ' ');
998c32c2f63SJan Blunck 	seq_path(m, &mnt_path, " \t\n\\");
9991da177e4SLinus Torvalds 	seq_putc(m, ' ');
10002d4d4864SRam Pai 	show_type(m, mnt->mnt_sb);
10012e4b7fcdSDave Hansen 	seq_puts(m, __mnt_is_readonly(mnt) ? " ro" : " rw");
10022069f457SEric Paris 	err = show_sb_opts(m, mnt->mnt_sb);
10032069f457SEric Paris 	if (err)
10042069f457SEric Paris 		goto out;
10052d4d4864SRam Pai 	show_mnt_opts(m, mnt);
10061da177e4SLinus Torvalds 	if (mnt->mnt_sb->s_op->show_options)
10071da177e4SLinus Torvalds 		err = mnt->mnt_sb->s_op->show_options(m, mnt);
10081da177e4SLinus Torvalds 	seq_puts(m, " 0 0\n");
10092069f457SEric Paris out:
10101da177e4SLinus Torvalds 	return err;
10111da177e4SLinus Torvalds }
10121da177e4SLinus Torvalds 
1013a1a2c409SMiklos Szeredi const struct seq_operations mounts_op = {
10141da177e4SLinus Torvalds 	.start	= m_start,
10151da177e4SLinus Torvalds 	.next	= m_next,
10161da177e4SLinus Torvalds 	.stop	= m_stop,
10171da177e4SLinus Torvalds 	.show	= show_vfsmnt
10181da177e4SLinus Torvalds };
10191da177e4SLinus Torvalds 
10202d4d4864SRam Pai static int show_mountinfo(struct seq_file *m, void *v)
10212d4d4864SRam Pai {
10222d4d4864SRam Pai 	struct proc_mounts *p = m->private;
10232d4d4864SRam Pai 	struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
10243376f34fSAl Viro 	struct mount *r = real_mount(mnt);
10252d4d4864SRam Pai 	struct super_block *sb = mnt->mnt_sb;
10262d4d4864SRam Pai 	struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
10272d4d4864SRam Pai 	struct path root = p->root;
10282d4d4864SRam Pai 	int err = 0;
10292d4d4864SRam Pai 
10300714a533SAl Viro 	seq_printf(m, "%i %i %u:%u ", mnt->mnt_id, r->mnt_parent->mnt.mnt_id,
10312d4d4864SRam Pai 		   MAJOR(sb->s_dev), MINOR(sb->s_dev));
1032c7f404b4SAl Viro 	if (sb->s_op->show_path)
1033c7f404b4SAl Viro 		err = sb->s_op->show_path(m, mnt);
1034c7f404b4SAl Viro 	else
10352d4d4864SRam Pai 		seq_dentry(m, mnt->mnt_root, " \t\n\\");
1036c7f404b4SAl Viro 	if (err)
1037c7f404b4SAl Viro 		goto out;
10382d4d4864SRam Pai 	seq_putc(m, ' ');
103902125a82SAl Viro 
104002125a82SAl Viro 	/* mountpoints outside of chroot jail will give SEQ_SKIP on this */
104102125a82SAl Viro 	err = seq_path_root(m, &mnt_path, &root, " \t\n\\");
104202125a82SAl Viro 	if (err)
104302125a82SAl Viro 		goto out;
104402125a82SAl Viro 
10452d4d4864SRam Pai 	seq_puts(m, mnt->mnt_flags & MNT_READONLY ? " ro" : " rw");
10462d4d4864SRam Pai 	show_mnt_opts(m, mnt);
10472d4d4864SRam Pai 
10482d4d4864SRam Pai 	/* Tagged fields ("foo:X" or "bar") */
10492d4d4864SRam Pai 	if (IS_MNT_SHARED(mnt))
10502d4d4864SRam Pai 		seq_printf(m, " shared:%i", mnt->mnt_group_id);
105197e7e0f7SMiklos Szeredi 	if (IS_MNT_SLAVE(mnt)) {
105297e7e0f7SMiklos Szeredi 		int master = mnt->mnt_master->mnt_group_id;
105397e7e0f7SMiklos Szeredi 		int dom = get_dominating_id(mnt, &p->root);
105497e7e0f7SMiklos Szeredi 		seq_printf(m, " master:%i", master);
105597e7e0f7SMiklos Szeredi 		if (dom && dom != master)
105697e7e0f7SMiklos Szeredi 			seq_printf(m, " propagate_from:%i", dom);
105797e7e0f7SMiklos Szeredi 	}
10582d4d4864SRam Pai 	if (IS_MNT_UNBINDABLE(mnt))
10592d4d4864SRam Pai 		seq_puts(m, " unbindable");
10602d4d4864SRam Pai 
10612d4d4864SRam Pai 	/* Filesystem specific data */
10622d4d4864SRam Pai 	seq_puts(m, " - ");
10632d4d4864SRam Pai 	show_type(m, sb);
10642d4d4864SRam Pai 	seq_putc(m, ' ');
1065c7f404b4SAl Viro 	if (sb->s_op->show_devname)
1066c7f404b4SAl Viro 		err = sb->s_op->show_devname(m, mnt);
1067c7f404b4SAl Viro 	else
10682d4d4864SRam Pai 		mangle(m, mnt->mnt_devname ? mnt->mnt_devname : "none");
1069c7f404b4SAl Viro 	if (err)
1070c7f404b4SAl Viro 		goto out;
10712d4d4864SRam Pai 	seq_puts(m, sb->s_flags & MS_RDONLY ? " ro" : " rw");
10722069f457SEric Paris 	err = show_sb_opts(m, sb);
10732069f457SEric Paris 	if (err)
10742069f457SEric Paris 		goto out;
10752d4d4864SRam Pai 	if (sb->s_op->show_options)
10762d4d4864SRam Pai 		err = sb->s_op->show_options(m, mnt);
10772d4d4864SRam Pai 	seq_putc(m, '\n');
10782069f457SEric Paris out:
10792d4d4864SRam Pai 	return err;
10802d4d4864SRam Pai }
10812d4d4864SRam Pai 
10822d4d4864SRam Pai const struct seq_operations mountinfo_op = {
10832d4d4864SRam Pai 	.start	= m_start,
10842d4d4864SRam Pai 	.next	= m_next,
10852d4d4864SRam Pai 	.stop	= m_stop,
10862d4d4864SRam Pai 	.show	= show_mountinfo,
10872d4d4864SRam Pai };
10882d4d4864SRam Pai 
1089b4629fe2SChuck Lever static int show_vfsstat(struct seq_file *m, void *v)
1090b4629fe2SChuck Lever {
1091b0765fb8SPavel Emelianov 	struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
1092c32c2f63SJan Blunck 	struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
1093b4629fe2SChuck Lever 	int err = 0;
1094b4629fe2SChuck Lever 
1095b4629fe2SChuck Lever 	/* device */
1096c7f404b4SAl Viro 	if (mnt->mnt_sb->s_op->show_devname) {
1097a877ee03SBryan Schumaker 		seq_puts(m, "device ");
1098c7f404b4SAl Viro 		err = mnt->mnt_sb->s_op->show_devname(m, mnt);
1099c7f404b4SAl Viro 	} else {
1100b4629fe2SChuck Lever 		if (mnt->mnt_devname) {
1101b4629fe2SChuck Lever 			seq_puts(m, "device ");
1102b4629fe2SChuck Lever 			mangle(m, mnt->mnt_devname);
1103b4629fe2SChuck Lever 		} else
1104b4629fe2SChuck Lever 			seq_puts(m, "no device");
1105c7f404b4SAl Viro 	}
1106b4629fe2SChuck Lever 
1107b4629fe2SChuck Lever 	/* mount point */
1108b4629fe2SChuck Lever 	seq_puts(m, " mounted on ");
1109c32c2f63SJan Blunck 	seq_path(m, &mnt_path, " \t\n\\");
1110b4629fe2SChuck Lever 	seq_putc(m, ' ');
1111b4629fe2SChuck Lever 
1112b4629fe2SChuck Lever 	/* file system type */
1113b4629fe2SChuck Lever 	seq_puts(m, "with fstype ");
11142d4d4864SRam Pai 	show_type(m, mnt->mnt_sb);
1115b4629fe2SChuck Lever 
1116b4629fe2SChuck Lever 	/* optional statistics */
1117b4629fe2SChuck Lever 	if (mnt->mnt_sb->s_op->show_stats) {
1118b4629fe2SChuck Lever 		seq_putc(m, ' ');
1119c7f404b4SAl Viro 		if (!err)
1120b4629fe2SChuck Lever 			err = mnt->mnt_sb->s_op->show_stats(m, mnt);
1121b4629fe2SChuck Lever 	}
1122b4629fe2SChuck Lever 
1123b4629fe2SChuck Lever 	seq_putc(m, '\n');
1124b4629fe2SChuck Lever 	return err;
1125b4629fe2SChuck Lever }
1126b4629fe2SChuck Lever 
1127a1a2c409SMiklos Szeredi const struct seq_operations mountstats_op = {
1128b4629fe2SChuck Lever 	.start	= m_start,
1129b4629fe2SChuck Lever 	.next	= m_next,
1130b4629fe2SChuck Lever 	.stop	= m_stop,
1131b4629fe2SChuck Lever 	.show	= show_vfsstat,
1132b4629fe2SChuck Lever };
1133a1a2c409SMiklos Szeredi #endif  /* CONFIG_PROC_FS */
1134b4629fe2SChuck Lever 
11351da177e4SLinus Torvalds /**
11361da177e4SLinus Torvalds  * may_umount_tree - check if a mount tree is busy
11371da177e4SLinus Torvalds  * @mnt: root of mount tree
11381da177e4SLinus Torvalds  *
11391da177e4SLinus Torvalds  * This is called to check if a tree of mounts has any
11401da177e4SLinus Torvalds  * open files, pwds, chroots or sub mounts that are
11411da177e4SLinus Torvalds  * busy.
11421da177e4SLinus Torvalds  */
11431da177e4SLinus Torvalds int may_umount_tree(struct vfsmount *mnt)
11441da177e4SLinus Torvalds {
114536341f64SRam Pai 	int actual_refs = 0;
114636341f64SRam Pai 	int minimum_refs = 0;
1147315fc83eSAl Viro 	struct mount *p;
1148315fc83eSAl Viro 	BUG_ON(!mnt);
11491da177e4SLinus Torvalds 
1150b3e19d92SNick Piggin 	/* write lock needed for mnt_get_count */
1151b3e19d92SNick Piggin 	br_write_lock(vfsmount_lock);
1152315fc83eSAl Viro 	for (p = real_mount(mnt); p; p = next_mnt(p, mnt)) {
1153315fc83eSAl Viro 		actual_refs += mnt_get_count(&p->mnt);
11541da177e4SLinus Torvalds 		minimum_refs += 2;
11551da177e4SLinus Torvalds 	}
1156b3e19d92SNick Piggin 	br_write_unlock(vfsmount_lock);
11571da177e4SLinus Torvalds 
11581da177e4SLinus Torvalds 	if (actual_refs > minimum_refs)
11591da177e4SLinus Torvalds 		return 0;
1160e3474a8eSIan Kent 
1161e3474a8eSIan Kent 	return 1;
11621da177e4SLinus Torvalds }
11631da177e4SLinus Torvalds 
11641da177e4SLinus Torvalds EXPORT_SYMBOL(may_umount_tree);
11651da177e4SLinus Torvalds 
11661da177e4SLinus Torvalds /**
11671da177e4SLinus Torvalds  * may_umount - check if a mount point is busy
11681da177e4SLinus Torvalds  * @mnt: root of mount
11691da177e4SLinus Torvalds  *
11701da177e4SLinus Torvalds  * This is called to check if a mount point has any
11711da177e4SLinus Torvalds  * open files, pwds, chroots or sub mounts. If the
11721da177e4SLinus Torvalds  * mount has sub mounts this will return busy
11731da177e4SLinus Torvalds  * regardless of whether the sub mounts are busy.
11741da177e4SLinus Torvalds  *
11751da177e4SLinus Torvalds  * Doesn't take quota and stuff into account. IOW, in some cases it will
11761da177e4SLinus Torvalds  * give false negatives. The main reason why it's here is that we need
11771da177e4SLinus Torvalds  * a non-destructive way to look for easily umountable filesystems.
11781da177e4SLinus Torvalds  */
11791da177e4SLinus Torvalds int may_umount(struct vfsmount *mnt)
11801da177e4SLinus Torvalds {
1181e3474a8eSIan Kent 	int ret = 1;
11828ad08d8aSAl Viro 	down_read(&namespace_sem);
1183b3e19d92SNick Piggin 	br_write_lock(vfsmount_lock);
11841ab59738SAl Viro 	if (propagate_mount_busy(real_mount(mnt), 2))
1185e3474a8eSIan Kent 		ret = 0;
1186b3e19d92SNick Piggin 	br_write_unlock(vfsmount_lock);
11878ad08d8aSAl Viro 	up_read(&namespace_sem);
1188a05964f3SRam Pai 	return ret;
11891da177e4SLinus Torvalds }
11901da177e4SLinus Torvalds 
11911da177e4SLinus Torvalds EXPORT_SYMBOL(may_umount);
11921da177e4SLinus Torvalds 
1193b90fa9aeSRam Pai void release_mounts(struct list_head *head)
11941da177e4SLinus Torvalds {
1195d5e50f74SAl Viro 	struct mount *mnt;
119670fbcdf4SRam Pai 	while (!list_empty(head)) {
11971b8e5564SAl Viro 		mnt = list_first_entry(head, struct mount, mnt_hash);
11981b8e5564SAl Viro 		list_del_init(&mnt->mnt_hash);
1199676da58dSAl Viro 		if (mnt_has_parent(mnt)) {
120070fbcdf4SRam Pai 			struct dentry *dentry;
120170fbcdf4SRam Pai 			struct vfsmount *m;
120299b7db7bSNick Piggin 
120399b7db7bSNick Piggin 			br_write_lock(vfsmount_lock);
1204d5e50f74SAl Viro 			dentry = mnt->mnt.mnt_mountpoint;
12050714a533SAl Viro 			m = &mnt->mnt_parent->mnt;
1206d5e50f74SAl Viro 			mnt->mnt.mnt_mountpoint = mnt->mnt.mnt_root;
12070714a533SAl Viro 			mnt->mnt_parent = mnt;
12087c4b93d8SAl Viro 			m->mnt_ghosts--;
120999b7db7bSNick Piggin 			br_write_unlock(vfsmount_lock);
121070fbcdf4SRam Pai 			dput(dentry);
121170fbcdf4SRam Pai 			mntput(m);
12121da177e4SLinus Torvalds 		}
1213d5e50f74SAl Viro 		mntput(&mnt->mnt);
121470fbcdf4SRam Pai 	}
121570fbcdf4SRam Pai }
121670fbcdf4SRam Pai 
121799b7db7bSNick Piggin /*
121899b7db7bSNick Piggin  * vfsmount lock must be held for write
121999b7db7bSNick Piggin  * namespace_sem must be held for write
122099b7db7bSNick Piggin  */
1221761d5c38SAl Viro void umount_tree(struct mount *mnt, int propagate, struct list_head *kill)
122270fbcdf4SRam Pai {
12237b8a53fdSAl Viro 	LIST_HEAD(tmp_list);
1224315fc83eSAl Viro 	struct mount *p;
122570fbcdf4SRam Pai 
1226761d5c38SAl Viro 	for (p = mnt; p; p = next_mnt(p, &mnt->mnt))
12271b8e5564SAl Viro 		list_move(&p->mnt_hash, &tmp_list);
122870fbcdf4SRam Pai 
1229a05964f3SRam Pai 	if (propagate)
12307b8a53fdSAl Viro 		propagate_umount(&tmp_list);
1231a05964f3SRam Pai 
12321b8e5564SAl Viro 	list_for_each_entry(p, &tmp_list, mnt_hash) {
1233315fc83eSAl Viro 		list_del_init(&p->mnt.mnt_expire);
1234315fc83eSAl Viro 		list_del_init(&p->mnt.mnt_list);
1235315fc83eSAl Viro 		__touch_mnt_namespace(p->mnt.mnt_ns);
1236315fc83eSAl Viro 		p->mnt.mnt_ns = NULL;
1237315fc83eSAl Viro 		__mnt_make_shortterm(&p->mnt);
1238315fc83eSAl Viro 		list_del_init(&p->mnt.mnt_child);
1239676da58dSAl Viro 		if (mnt_has_parent(p)) {
12400714a533SAl Viro 			p->mnt_parent->mnt.mnt_ghosts++;
1241315fc83eSAl Viro 			dentry_reset_mounted(p->mnt.mnt_mountpoint);
12427c4b93d8SAl Viro 		}
12430f0afb1dSAl Viro 		change_mnt_propagation(p, MS_PRIVATE);
12441da177e4SLinus Torvalds 	}
12457b8a53fdSAl Viro 	list_splice(&tmp_list, kill);
12461da177e4SLinus Torvalds }
12471da177e4SLinus Torvalds 
1248692afc31SAl Viro static void shrink_submounts(struct mount *mnt, struct list_head *umounts);
1249c35038beSAl Viro 
12501ab59738SAl Viro static int do_umount(struct mount *mnt, int flags)
12511da177e4SLinus Torvalds {
12521ab59738SAl Viro 	struct super_block *sb = mnt->mnt.mnt_sb;
12531da177e4SLinus Torvalds 	int retval;
125470fbcdf4SRam Pai 	LIST_HEAD(umount_list);
12551da177e4SLinus Torvalds 
12561ab59738SAl Viro 	retval = security_sb_umount(&mnt->mnt, flags);
12571da177e4SLinus Torvalds 	if (retval)
12581da177e4SLinus Torvalds 		return retval;
12591da177e4SLinus Torvalds 
12601da177e4SLinus Torvalds 	/*
12611da177e4SLinus Torvalds 	 * Allow userspace to request a mountpoint be expired rather than
12621da177e4SLinus Torvalds 	 * unmounting unconditionally. Unmount only happens if:
12631da177e4SLinus Torvalds 	 *  (1) the mark is already set (the mark is cleared by mntput())
12641da177e4SLinus Torvalds 	 *  (2) the usage count == 1 [parent vfsmount] + 1 [sys_umount]
12651da177e4SLinus Torvalds 	 */
12661da177e4SLinus Torvalds 	if (flags & MNT_EXPIRE) {
12671ab59738SAl Viro 		if (&mnt->mnt == current->fs->root.mnt ||
12681da177e4SLinus Torvalds 		    flags & (MNT_FORCE | MNT_DETACH))
12691da177e4SLinus Torvalds 			return -EINVAL;
12701da177e4SLinus Torvalds 
1271b3e19d92SNick Piggin 		/*
1272b3e19d92SNick Piggin 		 * probably don't strictly need the lock here if we examined
1273b3e19d92SNick Piggin 		 * all race cases, but it's a slowpath.
1274b3e19d92SNick Piggin 		 */
1275b3e19d92SNick Piggin 		br_write_lock(vfsmount_lock);
12761ab59738SAl Viro 		if (mnt_get_count(&mnt->mnt) != 2) {
1277bf9faa2aSJ. R. Okajima 			br_write_unlock(vfsmount_lock);
12781da177e4SLinus Torvalds 			return -EBUSY;
1279b3e19d92SNick Piggin 		}
1280b3e19d92SNick Piggin 		br_write_unlock(vfsmount_lock);
12811da177e4SLinus Torvalds 
12821ab59738SAl Viro 		if (!xchg(&mnt->mnt.mnt_expiry_mark, 1))
12831da177e4SLinus Torvalds 			return -EAGAIN;
12841da177e4SLinus Torvalds 	}
12851da177e4SLinus Torvalds 
12861da177e4SLinus Torvalds 	/*
12871da177e4SLinus Torvalds 	 * If we may have to abort operations to get out of this
12881da177e4SLinus Torvalds 	 * mount, and they will themselves hold resources we must
12891da177e4SLinus Torvalds 	 * allow the fs to do things. In the Unix tradition of
12901da177e4SLinus Torvalds 	 * 'Gee thats tricky lets do it in userspace' the umount_begin
12911da177e4SLinus Torvalds 	 * might fail to complete on the first run through as other tasks
12921da177e4SLinus Torvalds 	 * must return, and the like. Thats for the mount program to worry
12931da177e4SLinus Torvalds 	 * about for the moment.
12941da177e4SLinus Torvalds 	 */
12951da177e4SLinus Torvalds 
129642faad99SAl Viro 	if (flags & MNT_FORCE && sb->s_op->umount_begin) {
129742faad99SAl Viro 		sb->s_op->umount_begin(sb);
129842faad99SAl Viro 	}
12991da177e4SLinus Torvalds 
13001da177e4SLinus Torvalds 	/*
13011da177e4SLinus Torvalds 	 * No sense to grab the lock for this test, but test itself looks
13021da177e4SLinus Torvalds 	 * somewhat bogus. Suggestions for better replacement?
13031da177e4SLinus Torvalds 	 * Ho-hum... In principle, we might treat that as umount + switch
13041da177e4SLinus Torvalds 	 * to rootfs. GC would eventually take care of the old vfsmount.
13051da177e4SLinus Torvalds 	 * Actually it makes sense, especially if rootfs would contain a
13061da177e4SLinus Torvalds 	 * /reboot - static binary that would close all descriptors and
13071da177e4SLinus Torvalds 	 * call reboot(9). Then init(8) could umount root and exec /reboot.
13081da177e4SLinus Torvalds 	 */
13091ab59738SAl Viro 	if (&mnt->mnt == current->fs->root.mnt && !(flags & MNT_DETACH)) {
13101da177e4SLinus Torvalds 		/*
13111da177e4SLinus Torvalds 		 * Special case for "unmounting" root ...
13121da177e4SLinus Torvalds 		 * we just try to remount it readonly.
13131da177e4SLinus Torvalds 		 */
13141da177e4SLinus Torvalds 		down_write(&sb->s_umount);
13154aa98cf7SAl Viro 		if (!(sb->s_flags & MS_RDONLY))
13161da177e4SLinus Torvalds 			retval = do_remount_sb(sb, MS_RDONLY, NULL, 0);
13171da177e4SLinus Torvalds 		up_write(&sb->s_umount);
13181da177e4SLinus Torvalds 		return retval;
13191da177e4SLinus Torvalds 	}
13201da177e4SLinus Torvalds 
1321390c6843SRam Pai 	down_write(&namespace_sem);
132299b7db7bSNick Piggin 	br_write_lock(vfsmount_lock);
13235addc5ddSAl Viro 	event++;
13241da177e4SLinus Torvalds 
1325c35038beSAl Viro 	if (!(flags & MNT_DETACH))
13261ab59738SAl Viro 		shrink_submounts(mnt, &umount_list);
1327c35038beSAl Viro 
13281da177e4SLinus Torvalds 	retval = -EBUSY;
1329a05964f3SRam Pai 	if (flags & MNT_DETACH || !propagate_mount_busy(mnt, 2)) {
13301ab59738SAl Viro 		if (!list_empty(&mnt->mnt.mnt_list))
13311ab59738SAl Viro 			umount_tree(mnt, 1, &umount_list);
13321da177e4SLinus Torvalds 		retval = 0;
13331da177e4SLinus Torvalds 	}
133499b7db7bSNick Piggin 	br_write_unlock(vfsmount_lock);
1335390c6843SRam Pai 	up_write(&namespace_sem);
133670fbcdf4SRam Pai 	release_mounts(&umount_list);
13371da177e4SLinus Torvalds 	return retval;
13381da177e4SLinus Torvalds }
13391da177e4SLinus Torvalds 
13401da177e4SLinus Torvalds /*
13411da177e4SLinus Torvalds  * Now umount can handle mount points as well as block devices.
13421da177e4SLinus Torvalds  * This is important for filesystems which use unnamed block devices.
13431da177e4SLinus Torvalds  *
13441da177e4SLinus Torvalds  * We now support a flag for forced unmount like the other 'big iron'
13451da177e4SLinus Torvalds  * unixes. Our API is identical to OSF/1 to avoid making a mess of AMD
13461da177e4SLinus Torvalds  */
13471da177e4SLinus Torvalds 
1348bdc480e3SHeiko Carstens SYSCALL_DEFINE2(umount, char __user *, name, int, flags)
13491da177e4SLinus Torvalds {
13502d8f3038SAl Viro 	struct path path;
13511da177e4SLinus Torvalds 	int retval;
1352db1f05bbSMiklos Szeredi 	int lookup_flags = 0;
13531da177e4SLinus Torvalds 
1354db1f05bbSMiklos Szeredi 	if (flags & ~(MNT_FORCE | MNT_DETACH | MNT_EXPIRE | UMOUNT_NOFOLLOW))
1355db1f05bbSMiklos Szeredi 		return -EINVAL;
1356db1f05bbSMiklos Szeredi 
1357db1f05bbSMiklos Szeredi 	if (!(flags & UMOUNT_NOFOLLOW))
1358db1f05bbSMiklos Szeredi 		lookup_flags |= LOOKUP_FOLLOW;
1359db1f05bbSMiklos Szeredi 
1360db1f05bbSMiklos Szeredi 	retval = user_path_at(AT_FDCWD, name, lookup_flags, &path);
13611da177e4SLinus Torvalds 	if (retval)
13621da177e4SLinus Torvalds 		goto out;
13631da177e4SLinus Torvalds 	retval = -EINVAL;
13642d8f3038SAl Viro 	if (path.dentry != path.mnt->mnt_root)
13651da177e4SLinus Torvalds 		goto dput_and_out;
13662d8f3038SAl Viro 	if (!check_mnt(path.mnt))
13671da177e4SLinus Torvalds 		goto dput_and_out;
13681da177e4SLinus Torvalds 
13691da177e4SLinus Torvalds 	retval = -EPERM;
13701da177e4SLinus Torvalds 	if (!capable(CAP_SYS_ADMIN))
13711da177e4SLinus Torvalds 		goto dput_and_out;
13721da177e4SLinus Torvalds 
13731ab59738SAl Viro 	retval = do_umount(real_mount(path.mnt), flags);
13741da177e4SLinus Torvalds dput_and_out:
1375429731b1SJan Blunck 	/* we mustn't call path_put() as that would clear mnt_expiry_mark */
13762d8f3038SAl Viro 	dput(path.dentry);
13772d8f3038SAl Viro 	mntput_no_expire(path.mnt);
13781da177e4SLinus Torvalds out:
13791da177e4SLinus Torvalds 	return retval;
13801da177e4SLinus Torvalds }
13811da177e4SLinus Torvalds 
13821da177e4SLinus Torvalds #ifdef __ARCH_WANT_SYS_OLDUMOUNT
13831da177e4SLinus Torvalds 
13841da177e4SLinus Torvalds /*
13851da177e4SLinus Torvalds  *	The 2.0 compatible umount. No flags.
13861da177e4SLinus Torvalds  */
1387bdc480e3SHeiko Carstens SYSCALL_DEFINE1(oldumount, char __user *, name)
13881da177e4SLinus Torvalds {
13891da177e4SLinus Torvalds 	return sys_umount(name, 0);
13901da177e4SLinus Torvalds }
13911da177e4SLinus Torvalds 
13921da177e4SLinus Torvalds #endif
13931da177e4SLinus Torvalds 
13942d92ab3cSAl Viro static int mount_is_safe(struct path *path)
13951da177e4SLinus Torvalds {
13961da177e4SLinus Torvalds 	if (capable(CAP_SYS_ADMIN))
13971da177e4SLinus Torvalds 		return 0;
13981da177e4SLinus Torvalds 	return -EPERM;
13991da177e4SLinus Torvalds #ifdef notyet
14002d92ab3cSAl Viro 	if (S_ISLNK(path->dentry->d_inode->i_mode))
14011da177e4SLinus Torvalds 		return -EPERM;
14022d92ab3cSAl Viro 	if (path->dentry->d_inode->i_mode & S_ISVTX) {
1403da9592edSDavid Howells 		if (current_uid() != path->dentry->d_inode->i_uid)
14041da177e4SLinus Torvalds 			return -EPERM;
14051da177e4SLinus Torvalds 	}
14062d92ab3cSAl Viro 	if (inode_permission(path->dentry->d_inode, MAY_WRITE))
14071da177e4SLinus Torvalds 		return -EPERM;
14081da177e4SLinus Torvalds 	return 0;
14091da177e4SLinus Torvalds #endif
14101da177e4SLinus Torvalds }
14111da177e4SLinus Torvalds 
141287129cc0SAl Viro struct mount *copy_tree(struct mount *mnt, struct dentry *dentry,
141336341f64SRam Pai 					int flag)
14141da177e4SLinus Torvalds {
141587129cc0SAl Viro 	struct mount *res, *p, *q;
141687129cc0SAl Viro 	struct vfsmount *r;
14171a390689SAl Viro 	struct path path;
14181da177e4SLinus Torvalds 
141987129cc0SAl Viro 	if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(&mnt->mnt))
14209676f0c6SRam Pai 		return NULL;
14219676f0c6SRam Pai 
142236341f64SRam Pai 	res = q = clone_mnt(mnt, dentry, flag);
14231da177e4SLinus Torvalds 	if (!q)
14241da177e4SLinus Torvalds 		goto Enomem;
142587129cc0SAl Viro 	q->mnt.mnt_mountpoint = mnt->mnt.mnt_mountpoint;
14261da177e4SLinus Torvalds 
14271da177e4SLinus Torvalds 	p = mnt;
142887129cc0SAl Viro 	list_for_each_entry(r, &mnt->mnt.mnt_mounts, mnt_child) {
1429315fc83eSAl Viro 		struct mount *s;
14307ec02ef1SJan Blunck 		if (!is_subdir(r->mnt_mountpoint, dentry))
14311da177e4SLinus Torvalds 			continue;
14321da177e4SLinus Torvalds 
1433315fc83eSAl Viro 		for (s = real_mount(r); s; s = next_mnt(s, r)) {
1434315fc83eSAl Viro 			if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(&s->mnt)) {
14359676f0c6SRam Pai 				s = skip_mnt_tree(s);
14369676f0c6SRam Pai 				continue;
14379676f0c6SRam Pai 			}
14380714a533SAl Viro 			while (p != s->mnt_parent) {
14390714a533SAl Viro 				p = p->mnt_parent;
14400714a533SAl Viro 				q = q->mnt_parent;
14411da177e4SLinus Torvalds 			}
144287129cc0SAl Viro 			p = s;
1443cb338d06SAl Viro 			path.mnt = &q->mnt;
144487129cc0SAl Viro 			path.dentry = p->mnt.mnt_mountpoint;
144587129cc0SAl Viro 			q = clone_mnt(p, p->mnt.mnt_root, flag);
14461da177e4SLinus Torvalds 			if (!q)
14471da177e4SLinus Torvalds 				goto Enomem;
144899b7db7bSNick Piggin 			br_write_lock(vfsmount_lock);
1449cb338d06SAl Viro 			list_add_tail(&q->mnt.mnt_list, &res->mnt.mnt_list);
1450cb338d06SAl Viro 			attach_mnt(q, &path);
145199b7db7bSNick Piggin 			br_write_unlock(vfsmount_lock);
14521da177e4SLinus Torvalds 		}
14531da177e4SLinus Torvalds 	}
14541da177e4SLinus Torvalds 	return res;
14551da177e4SLinus Torvalds Enomem:
14561da177e4SLinus Torvalds 	if (res) {
145770fbcdf4SRam Pai 		LIST_HEAD(umount_list);
145899b7db7bSNick Piggin 		br_write_lock(vfsmount_lock);
1459761d5c38SAl Viro 		umount_tree(res, 0, &umount_list);
146099b7db7bSNick Piggin 		br_write_unlock(vfsmount_lock);
146170fbcdf4SRam Pai 		release_mounts(&umount_list);
14621da177e4SLinus Torvalds 	}
14631da177e4SLinus Torvalds 	return NULL;
14641da177e4SLinus Torvalds }
14651da177e4SLinus Torvalds 
1466589ff870SAl Viro struct vfsmount *collect_mounts(struct path *path)
14678aec0809SAl Viro {
1468cb338d06SAl Viro 	struct mount *tree;
14691a60a280SAl Viro 	down_write(&namespace_sem);
147087129cc0SAl Viro 	tree = copy_tree(real_mount(path->mnt), path->dentry,
147187129cc0SAl Viro 			 CL_COPY_ALL | CL_PRIVATE);
14721a60a280SAl Viro 	up_write(&namespace_sem);
1473cb338d06SAl Viro 	return tree ? &tree->mnt : NULL;
14748aec0809SAl Viro }
14758aec0809SAl Viro 
14768aec0809SAl Viro void drop_collected_mounts(struct vfsmount *mnt)
14778aec0809SAl Viro {
14788aec0809SAl Viro 	LIST_HEAD(umount_list);
14791a60a280SAl Viro 	down_write(&namespace_sem);
148099b7db7bSNick Piggin 	br_write_lock(vfsmount_lock);
1481761d5c38SAl Viro 	umount_tree(real_mount(mnt), 0, &umount_list);
148299b7db7bSNick Piggin 	br_write_unlock(vfsmount_lock);
14831a60a280SAl Viro 	up_write(&namespace_sem);
14848aec0809SAl Viro 	release_mounts(&umount_list);
14858aec0809SAl Viro }
14868aec0809SAl Viro 
14871f707137SAl Viro int iterate_mounts(int (*f)(struct vfsmount *, void *), void *arg,
14881f707137SAl Viro 		   struct vfsmount *root)
14891f707137SAl Viro {
14901f707137SAl Viro 	struct vfsmount *mnt;
14911f707137SAl Viro 	int res = f(root, arg);
14921f707137SAl Viro 	if (res)
14931f707137SAl Viro 		return res;
14941f707137SAl Viro 	list_for_each_entry(mnt, &root->mnt_list, mnt_list) {
14951f707137SAl Viro 		res = f(mnt, arg);
14961f707137SAl Viro 		if (res)
14971f707137SAl Viro 			return res;
14981f707137SAl Viro 	}
14991f707137SAl Viro 	return 0;
15001f707137SAl Viro }
15011f707137SAl Viro 
15024b8b21f4SAl Viro static void cleanup_group_ids(struct mount *mnt, struct mount *end)
1503719f5d7fSMiklos Szeredi {
1504315fc83eSAl Viro 	struct mount *p;
1505719f5d7fSMiklos Szeredi 
15064b8b21f4SAl Viro 	for (p = mnt; p != end; p = next_mnt(p, &mnt->mnt)) {
1507315fc83eSAl Viro 		if (p->mnt.mnt_group_id && !IS_MNT_SHARED(&p->mnt))
15084b8b21f4SAl Viro 			mnt_release_group_id(p);
1509719f5d7fSMiklos Szeredi 	}
1510719f5d7fSMiklos Szeredi }
1511719f5d7fSMiklos Szeredi 
15124b8b21f4SAl Viro static int invent_group_ids(struct mount *mnt, bool recurse)
1513719f5d7fSMiklos Szeredi {
1514315fc83eSAl Viro 	struct mount *p;
1515719f5d7fSMiklos Szeredi 
15164b8b21f4SAl Viro 	for (p = mnt; p; p = recurse ? next_mnt(p, &mnt->mnt) : NULL) {
1517315fc83eSAl Viro 		if (!p->mnt.mnt_group_id && !IS_MNT_SHARED(&p->mnt)) {
15184b8b21f4SAl Viro 			int err = mnt_alloc_group_id(p);
1519719f5d7fSMiklos Szeredi 			if (err) {
15204b8b21f4SAl Viro 				cleanup_group_ids(mnt, p);
1521719f5d7fSMiklos Szeredi 				return err;
1522719f5d7fSMiklos Szeredi 			}
1523719f5d7fSMiklos Szeredi 		}
1524719f5d7fSMiklos Szeredi 	}
1525719f5d7fSMiklos Szeredi 
1526719f5d7fSMiklos Szeredi 	return 0;
1527719f5d7fSMiklos Szeredi }
1528719f5d7fSMiklos Szeredi 
1529b90fa9aeSRam Pai /*
1530b90fa9aeSRam Pai  *  @source_mnt : mount tree to be attached
1531b90fa9aeSRam Pai  *  @nd         : place the mount tree @source_mnt is attached
153221444403SRam Pai  *  @parent_nd  : if non-null, detach the source_mnt from its parent and
153321444403SRam Pai  *  		   store the parent mount and mountpoint dentry.
153421444403SRam Pai  *  		   (done when source_mnt is moved)
1535b90fa9aeSRam Pai  *
1536b90fa9aeSRam Pai  *  NOTE: in the table below explains the semantics when a source mount
1537b90fa9aeSRam Pai  *  of a given type is attached to a destination mount of a given type.
15389676f0c6SRam Pai  * ---------------------------------------------------------------------------
1539b90fa9aeSRam Pai  * |         BIND MOUNT OPERATION                                            |
15409676f0c6SRam Pai  * |**************************************************************************
15419676f0c6SRam Pai  * | source-->| shared        |       private  |       slave    | unbindable |
15429676f0c6SRam Pai  * | dest     |               |                |                |            |
15439676f0c6SRam Pai  * |   |      |               |                |                |            |
15449676f0c6SRam Pai  * |   v      |               |                |                |            |
15459676f0c6SRam Pai  * |**************************************************************************
15469676f0c6SRam Pai  * |  shared  | shared (++)   |     shared (+) |     shared(+++)|  invalid   |
15475afe0022SRam Pai  * |          |               |                |                |            |
15489676f0c6SRam Pai  * |non-shared| shared (+)    |      private   |      slave (*) |  invalid   |
15499676f0c6SRam Pai  * ***************************************************************************
1550b90fa9aeSRam Pai  * A bind operation clones the source mount and mounts the clone on the
1551b90fa9aeSRam Pai  * destination mount.
1552b90fa9aeSRam Pai  *
1553b90fa9aeSRam Pai  * (++)  the cloned mount is propagated to all the mounts in the propagation
1554b90fa9aeSRam Pai  * 	 tree of the destination mount and the cloned mount is added to
1555b90fa9aeSRam Pai  * 	 the peer group of the source mount.
1556b90fa9aeSRam Pai  * (+)   the cloned mount is created under the destination mount and is marked
1557b90fa9aeSRam Pai  *       as shared. The cloned mount is added to the peer group of the source
1558b90fa9aeSRam Pai  *       mount.
15595afe0022SRam Pai  * (+++) the mount is propagated to all the mounts in the propagation tree
15605afe0022SRam Pai  *       of the destination mount and the cloned mount is made slave
15615afe0022SRam Pai  *       of the same master as that of the source mount. The cloned mount
15625afe0022SRam Pai  *       is marked as 'shared and slave'.
15635afe0022SRam Pai  * (*)   the cloned mount is made a slave of the same master as that of the
15645afe0022SRam Pai  * 	 source mount.
15655afe0022SRam Pai  *
15669676f0c6SRam Pai  * ---------------------------------------------------------------------------
156721444403SRam Pai  * |         		MOVE MOUNT OPERATION                                 |
15689676f0c6SRam Pai  * |**************************************************************************
15699676f0c6SRam Pai  * | source-->| shared        |       private  |       slave    | unbindable |
15709676f0c6SRam Pai  * | dest     |               |                |                |            |
15719676f0c6SRam Pai  * |   |      |               |                |                |            |
15729676f0c6SRam Pai  * |   v      |               |                |                |            |
15739676f0c6SRam Pai  * |**************************************************************************
15749676f0c6SRam Pai  * |  shared  | shared (+)    |     shared (+) |    shared(+++) |  invalid   |
15755afe0022SRam Pai  * |          |               |                |                |            |
15769676f0c6SRam Pai  * |non-shared| shared (+*)   |      private   |    slave (*)   | unbindable |
15779676f0c6SRam Pai  * ***************************************************************************
15785afe0022SRam Pai  *
15795afe0022SRam Pai  * (+)  the mount is moved to the destination. And is then propagated to
15805afe0022SRam Pai  * 	all the mounts in the propagation tree of the destination mount.
158121444403SRam Pai  * (+*)  the mount is moved to the destination.
15825afe0022SRam Pai  * (+++)  the mount is moved to the destination and is then propagated to
15835afe0022SRam Pai  * 	all the mounts belonging to the destination mount's propagation tree.
15845afe0022SRam Pai  * 	the mount is marked as 'shared and slave'.
15855afe0022SRam Pai  * (*)	the mount continues to be a slave at the new location.
1586b90fa9aeSRam Pai  *
1587b90fa9aeSRam Pai  * if the source mount is a tree, the operations explained above is
1588b90fa9aeSRam Pai  * applied to each mount in the tree.
1589b90fa9aeSRam Pai  * Must be called without spinlocks held, since this function can sleep
1590b90fa9aeSRam Pai  * in allocations.
1591b90fa9aeSRam Pai  */
15920fb54e50SAl Viro static int attach_recursive_mnt(struct mount *source_mnt,
15931a390689SAl Viro 			struct path *path, struct path *parent_path)
1594b90fa9aeSRam Pai {
1595b90fa9aeSRam Pai 	LIST_HEAD(tree_list);
15961a390689SAl Viro 	struct vfsmount *dest_mnt = path->mnt;
15971a390689SAl Viro 	struct dentry *dest_dentry = path->dentry;
1598315fc83eSAl Viro 	struct mount *child, *p;
1599719f5d7fSMiklos Szeredi 	int err;
1600b90fa9aeSRam Pai 
1601719f5d7fSMiklos Szeredi 	if (IS_MNT_SHARED(dest_mnt)) {
16020fb54e50SAl Viro 		err = invent_group_ids(source_mnt, true);
1603719f5d7fSMiklos Szeredi 		if (err)
1604719f5d7fSMiklos Szeredi 			goto out;
1605719f5d7fSMiklos Szeredi 	}
16060fb54e50SAl Viro 	err = propagate_mnt(dest_mnt, dest_dentry, &source_mnt->mnt, &tree_list);
1607719f5d7fSMiklos Szeredi 	if (err)
1608719f5d7fSMiklos Szeredi 		goto out_cleanup_ids;
1609b90fa9aeSRam Pai 
161099b7db7bSNick Piggin 	br_write_lock(vfsmount_lock);
1611df1a1ad2SAl Viro 
1612b90fa9aeSRam Pai 	if (IS_MNT_SHARED(dest_mnt)) {
16130fb54e50SAl Viro 		for (p = source_mnt; p; p = next_mnt(p, &source_mnt->mnt))
16140f0afb1dSAl Viro 			set_mnt_shared(p);
1615b90fa9aeSRam Pai 	}
16161a390689SAl Viro 	if (parent_path) {
16170fb54e50SAl Viro 		detach_mnt(source_mnt, parent_path);
16180fb54e50SAl Viro 		attach_mnt(source_mnt, path);
1619e5d67f07SAl Viro 		touch_mnt_namespace(parent_path->mnt->mnt_ns);
162021444403SRam Pai 	} else {
162144d964d6SAl Viro 		mnt_set_mountpoint(dest_mnt, dest_dentry, source_mnt);
16220fb54e50SAl Viro 		commit_tree(source_mnt);
162321444403SRam Pai 	}
1624b90fa9aeSRam Pai 
16251b8e5564SAl Viro 	list_for_each_entry_safe(child, p, &tree_list, mnt_hash) {
16261b8e5564SAl Viro 		list_del_init(&child->mnt_hash);
16274b2619a5SAl Viro 		commit_tree(child);
1628b90fa9aeSRam Pai 	}
162999b7db7bSNick Piggin 	br_write_unlock(vfsmount_lock);
163099b7db7bSNick Piggin 
1631b90fa9aeSRam Pai 	return 0;
1632719f5d7fSMiklos Szeredi 
1633719f5d7fSMiklos Szeredi  out_cleanup_ids:
1634719f5d7fSMiklos Szeredi 	if (IS_MNT_SHARED(dest_mnt))
16350fb54e50SAl Viro 		cleanup_group_ids(source_mnt, NULL);
1636719f5d7fSMiklos Szeredi  out:
1637719f5d7fSMiklos Szeredi 	return err;
1638b90fa9aeSRam Pai }
1639b90fa9aeSRam Pai 
1640b12cea91SAl Viro static int lock_mount(struct path *path)
1641b12cea91SAl Viro {
1642b12cea91SAl Viro 	struct vfsmount *mnt;
1643b12cea91SAl Viro retry:
1644b12cea91SAl Viro 	mutex_lock(&path->dentry->d_inode->i_mutex);
1645b12cea91SAl Viro 	if (unlikely(cant_mount(path->dentry))) {
1646b12cea91SAl Viro 		mutex_unlock(&path->dentry->d_inode->i_mutex);
1647b12cea91SAl Viro 		return -ENOENT;
1648b12cea91SAl Viro 	}
1649b12cea91SAl Viro 	down_write(&namespace_sem);
1650b12cea91SAl Viro 	mnt = lookup_mnt(path);
1651b12cea91SAl Viro 	if (likely(!mnt))
1652b12cea91SAl Viro 		return 0;
1653b12cea91SAl Viro 	up_write(&namespace_sem);
1654b12cea91SAl Viro 	mutex_unlock(&path->dentry->d_inode->i_mutex);
1655b12cea91SAl Viro 	path_put(path);
1656b12cea91SAl Viro 	path->mnt = mnt;
1657b12cea91SAl Viro 	path->dentry = dget(mnt->mnt_root);
1658b12cea91SAl Viro 	goto retry;
1659b12cea91SAl Viro }
1660b12cea91SAl Viro 
1661b12cea91SAl Viro static void unlock_mount(struct path *path)
1662b12cea91SAl Viro {
1663b12cea91SAl Viro 	up_write(&namespace_sem);
1664b12cea91SAl Viro 	mutex_unlock(&path->dentry->d_inode->i_mutex);
1665b12cea91SAl Viro }
1666b12cea91SAl Viro 
16678c3ee42eSAl Viro static int graft_tree(struct vfsmount *mnt, struct path *path)
16681da177e4SLinus Torvalds {
16691da177e4SLinus Torvalds 	if (mnt->mnt_sb->s_flags & MS_NOUSER)
16701da177e4SLinus Torvalds 		return -EINVAL;
16711da177e4SLinus Torvalds 
16728c3ee42eSAl Viro 	if (S_ISDIR(path->dentry->d_inode->i_mode) !=
16731da177e4SLinus Torvalds 	      S_ISDIR(mnt->mnt_root->d_inode->i_mode))
16741da177e4SLinus Torvalds 		return -ENOTDIR;
16751da177e4SLinus Torvalds 
1676b12cea91SAl Viro 	if (d_unlinked(path->dentry))
1677b12cea91SAl Viro 		return -ENOENT;
16781da177e4SLinus Torvalds 
16790fb54e50SAl Viro 	return attach_recursive_mnt(real_mount(mnt), path, NULL);
16801da177e4SLinus Torvalds }
16811da177e4SLinus Torvalds 
16821da177e4SLinus Torvalds /*
16837a2e8a8fSValerie Aurora  * Sanity check the flags to change_mnt_propagation.
16847a2e8a8fSValerie Aurora  */
16857a2e8a8fSValerie Aurora 
16867a2e8a8fSValerie Aurora static int flags_to_propagation_type(int flags)
16877a2e8a8fSValerie Aurora {
16887c6e984dSRoman Borisov 	int type = flags & ~(MS_REC | MS_SILENT);
16897a2e8a8fSValerie Aurora 
16907a2e8a8fSValerie Aurora 	/* Fail if any non-propagation flags are set */
16917a2e8a8fSValerie Aurora 	if (type & ~(MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
16927a2e8a8fSValerie Aurora 		return 0;
16937a2e8a8fSValerie Aurora 	/* Only one propagation flag should be set */
16947a2e8a8fSValerie Aurora 	if (!is_power_of_2(type))
16957a2e8a8fSValerie Aurora 		return 0;
16967a2e8a8fSValerie Aurora 	return type;
16977a2e8a8fSValerie Aurora }
16987a2e8a8fSValerie Aurora 
16997a2e8a8fSValerie Aurora /*
170007b20889SRam Pai  * recursively change the type of the mountpoint.
170107b20889SRam Pai  */
17020a0d8a46SAl Viro static int do_change_type(struct path *path, int flag)
170307b20889SRam Pai {
1704315fc83eSAl Viro 	struct mount *m;
17054b8b21f4SAl Viro 	struct mount *mnt = real_mount(path->mnt);
170607b20889SRam Pai 	int recurse = flag & MS_REC;
17077a2e8a8fSValerie Aurora 	int type;
1708719f5d7fSMiklos Szeredi 	int err = 0;
170907b20889SRam Pai 
1710ee6f9582SMiklos Szeredi 	if (!capable(CAP_SYS_ADMIN))
1711ee6f9582SMiklos Szeredi 		return -EPERM;
1712ee6f9582SMiklos Szeredi 
17132d92ab3cSAl Viro 	if (path->dentry != path->mnt->mnt_root)
171407b20889SRam Pai 		return -EINVAL;
171507b20889SRam Pai 
17167a2e8a8fSValerie Aurora 	type = flags_to_propagation_type(flag);
17177a2e8a8fSValerie Aurora 	if (!type)
17187a2e8a8fSValerie Aurora 		return -EINVAL;
17197a2e8a8fSValerie Aurora 
172007b20889SRam Pai 	down_write(&namespace_sem);
1721719f5d7fSMiklos Szeredi 	if (type == MS_SHARED) {
1722719f5d7fSMiklos Szeredi 		err = invent_group_ids(mnt, recurse);
1723719f5d7fSMiklos Szeredi 		if (err)
1724719f5d7fSMiklos Szeredi 			goto out_unlock;
1725719f5d7fSMiklos Szeredi 	}
1726719f5d7fSMiklos Szeredi 
172799b7db7bSNick Piggin 	br_write_lock(vfsmount_lock);
17284b8b21f4SAl Viro 	for (m = mnt; m; m = (recurse ? next_mnt(m, &mnt->mnt) : NULL))
17290f0afb1dSAl Viro 		change_mnt_propagation(m, type);
173099b7db7bSNick Piggin 	br_write_unlock(vfsmount_lock);
1731719f5d7fSMiklos Szeredi 
1732719f5d7fSMiklos Szeredi  out_unlock:
173307b20889SRam Pai 	up_write(&namespace_sem);
1734719f5d7fSMiklos Szeredi 	return err;
173507b20889SRam Pai }
173607b20889SRam Pai 
173707b20889SRam Pai /*
17381da177e4SLinus Torvalds  * do loopback mount.
17391da177e4SLinus Torvalds  */
17400a0d8a46SAl Viro static int do_loopback(struct path *path, char *old_name,
17412dafe1c4SEric Sandeen 				int recurse)
17421da177e4SLinus Torvalds {
1743b12cea91SAl Viro 	LIST_HEAD(umount_list);
17442d92ab3cSAl Viro 	struct path old_path;
174587129cc0SAl Viro 	struct mount *mnt = NULL, *old;
17462d92ab3cSAl Viro 	int err = mount_is_safe(path);
17471da177e4SLinus Torvalds 	if (err)
17481da177e4SLinus Torvalds 		return err;
17491da177e4SLinus Torvalds 	if (!old_name || !*old_name)
17501da177e4SLinus Torvalds 		return -EINVAL;
1751815d405cSTrond Myklebust 	err = kern_path(old_name, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &old_path);
17521da177e4SLinus Torvalds 	if (err)
17531da177e4SLinus Torvalds 		return err;
17541da177e4SLinus Torvalds 
1755b12cea91SAl Viro 	err = lock_mount(path);
1756b12cea91SAl Viro 	if (err)
17579676f0c6SRam Pai 		goto out;
17589676f0c6SRam Pai 
175987129cc0SAl Viro 	old = real_mount(old_path.mnt);
176087129cc0SAl Viro 
1761b12cea91SAl Viro 	err = -EINVAL;
1762b12cea91SAl Viro 	if (IS_MNT_UNBINDABLE(old_path.mnt))
1763b12cea91SAl Viro 		goto out2;
1764b12cea91SAl Viro 
17652d92ab3cSAl Viro 	if (!check_mnt(path->mnt) || !check_mnt(old_path.mnt))
1766b12cea91SAl Viro 		goto out2;
1767ccd48bc7SAl Viro 
17681da177e4SLinus Torvalds 	err = -ENOMEM;
17691da177e4SLinus Torvalds 	if (recurse)
177087129cc0SAl Viro 		mnt = copy_tree(old, old_path.dentry, 0);
17711da177e4SLinus Torvalds 	else
177287129cc0SAl Viro 		mnt = clone_mnt(old, old_path.dentry, 0);
17731da177e4SLinus Torvalds 
1774ccd48bc7SAl Viro 	if (!mnt)
1775b12cea91SAl Viro 		goto out2;
1776ccd48bc7SAl Viro 
1777cb338d06SAl Viro 	err = graft_tree(&mnt->mnt, path);
17781da177e4SLinus Torvalds 	if (err) {
177999b7db7bSNick Piggin 		br_write_lock(vfsmount_lock);
1780761d5c38SAl Viro 		umount_tree(mnt, 0, &umount_list);
178199b7db7bSNick Piggin 		br_write_unlock(vfsmount_lock);
17825b83d2c5SRam Pai 	}
1783b12cea91SAl Viro out2:
1784b12cea91SAl Viro 	unlock_mount(path);
1785b12cea91SAl Viro 	release_mounts(&umount_list);
1786ccd48bc7SAl Viro out:
17872d92ab3cSAl Viro 	path_put(&old_path);
17881da177e4SLinus Torvalds 	return err;
17891da177e4SLinus Torvalds }
17901da177e4SLinus Torvalds 
17912e4b7fcdSDave Hansen static int change_mount_flags(struct vfsmount *mnt, int ms_flags)
17922e4b7fcdSDave Hansen {
17932e4b7fcdSDave Hansen 	int error = 0;
17942e4b7fcdSDave Hansen 	int readonly_request = 0;
17952e4b7fcdSDave Hansen 
17962e4b7fcdSDave Hansen 	if (ms_flags & MS_RDONLY)
17972e4b7fcdSDave Hansen 		readonly_request = 1;
17982e4b7fcdSDave Hansen 	if (readonly_request == __mnt_is_readonly(mnt))
17992e4b7fcdSDave Hansen 		return 0;
18002e4b7fcdSDave Hansen 
18012e4b7fcdSDave Hansen 	if (readonly_request)
18022e4b7fcdSDave Hansen 		error = mnt_make_readonly(mnt);
18032e4b7fcdSDave Hansen 	else
18042e4b7fcdSDave Hansen 		__mnt_unmake_readonly(mnt);
18052e4b7fcdSDave Hansen 	return error;
18062e4b7fcdSDave Hansen }
18072e4b7fcdSDave Hansen 
18081da177e4SLinus Torvalds /*
18091da177e4SLinus Torvalds  * change filesystem flags. dir should be a physical root of filesystem.
18101da177e4SLinus Torvalds  * If you've mounted a non-root directory somewhere and want to do remount
18111da177e4SLinus Torvalds  * on it - tough luck.
18121da177e4SLinus Torvalds  */
18130a0d8a46SAl Viro static int do_remount(struct path *path, int flags, int mnt_flags,
18141da177e4SLinus Torvalds 		      void *data)
18151da177e4SLinus Torvalds {
18161da177e4SLinus Torvalds 	int err;
18172d92ab3cSAl Viro 	struct super_block *sb = path->mnt->mnt_sb;
18181da177e4SLinus Torvalds 
18191da177e4SLinus Torvalds 	if (!capable(CAP_SYS_ADMIN))
18201da177e4SLinus Torvalds 		return -EPERM;
18211da177e4SLinus Torvalds 
18222d92ab3cSAl Viro 	if (!check_mnt(path->mnt))
18231da177e4SLinus Torvalds 		return -EINVAL;
18241da177e4SLinus Torvalds 
18252d92ab3cSAl Viro 	if (path->dentry != path->mnt->mnt_root)
18261da177e4SLinus Torvalds 		return -EINVAL;
18271da177e4SLinus Torvalds 
1828ff36fe2cSEric Paris 	err = security_sb_remount(sb, data);
1829ff36fe2cSEric Paris 	if (err)
1830ff36fe2cSEric Paris 		return err;
1831ff36fe2cSEric Paris 
18321da177e4SLinus Torvalds 	down_write(&sb->s_umount);
18332e4b7fcdSDave Hansen 	if (flags & MS_BIND)
18342d92ab3cSAl Viro 		err = change_mount_flags(path->mnt, flags);
18354aa98cf7SAl Viro 	else
18361da177e4SLinus Torvalds 		err = do_remount_sb(sb, flags, data, 0);
18377b43a79fSAl Viro 	if (!err) {
183899b7db7bSNick Piggin 		br_write_lock(vfsmount_lock);
1839495d6c9cSValerie Aurora 		mnt_flags |= path->mnt->mnt_flags & MNT_PROPAGATION_MASK;
18402d92ab3cSAl Viro 		path->mnt->mnt_flags = mnt_flags;
184199b7db7bSNick Piggin 		br_write_unlock(vfsmount_lock);
18427b43a79fSAl Viro 	}
18431da177e4SLinus Torvalds 	up_write(&sb->s_umount);
18440e55a7ccSDan Williams 	if (!err) {
184599b7db7bSNick Piggin 		br_write_lock(vfsmount_lock);
18460e55a7ccSDan Williams 		touch_mnt_namespace(path->mnt->mnt_ns);
184799b7db7bSNick Piggin 		br_write_unlock(vfsmount_lock);
18480e55a7ccSDan Williams 	}
18491da177e4SLinus Torvalds 	return err;
18501da177e4SLinus Torvalds }
18511da177e4SLinus Torvalds 
1852cbbe362cSAl Viro static inline int tree_contains_unbindable(struct mount *mnt)
18539676f0c6SRam Pai {
1854315fc83eSAl Viro 	struct mount *p;
1855cbbe362cSAl Viro 	for (p = mnt; p; p = next_mnt(p, &mnt->mnt)) {
1856315fc83eSAl Viro 		if (IS_MNT_UNBINDABLE(&p->mnt))
18579676f0c6SRam Pai 			return 1;
18589676f0c6SRam Pai 	}
18599676f0c6SRam Pai 	return 0;
18609676f0c6SRam Pai }
18619676f0c6SRam Pai 
18620a0d8a46SAl Viro static int do_move_mount(struct path *path, char *old_name)
18631da177e4SLinus Torvalds {
18642d92ab3cSAl Viro 	struct path old_path, parent_path;
1865676da58dSAl Viro 	struct mount *p;
18660fb54e50SAl Viro 	struct mount *old;
18671da177e4SLinus Torvalds 	int err = 0;
18681da177e4SLinus Torvalds 	if (!capable(CAP_SYS_ADMIN))
18691da177e4SLinus Torvalds 		return -EPERM;
18701da177e4SLinus Torvalds 	if (!old_name || !*old_name)
18711da177e4SLinus Torvalds 		return -EINVAL;
18722d92ab3cSAl Viro 	err = kern_path(old_name, LOOKUP_FOLLOW, &old_path);
18731da177e4SLinus Torvalds 	if (err)
18741da177e4SLinus Torvalds 		return err;
18751da177e4SLinus Torvalds 
1876b12cea91SAl Viro 	err = lock_mount(path);
1877cc53ce53SDavid Howells 	if (err < 0)
1878cc53ce53SDavid Howells 		goto out;
1879cc53ce53SDavid Howells 
18801da177e4SLinus Torvalds 	err = -EINVAL;
18812d92ab3cSAl Viro 	if (!check_mnt(path->mnt) || !check_mnt(old_path.mnt))
18821da177e4SLinus Torvalds 		goto out1;
18831da177e4SLinus Torvalds 
1884f3da392eSAlexey Dobriyan 	if (d_unlinked(path->dentry))
188521444403SRam Pai 		goto out1;
18861da177e4SLinus Torvalds 
18871da177e4SLinus Torvalds 	err = -EINVAL;
18882d92ab3cSAl Viro 	if (old_path.dentry != old_path.mnt->mnt_root)
188921444403SRam Pai 		goto out1;
18901da177e4SLinus Torvalds 
18910fb54e50SAl Viro 	old = real_mount(old_path.mnt);
18920fb54e50SAl Viro 
1893676da58dSAl Viro 	if (!mnt_has_parent(old))
189421444403SRam Pai 		goto out1;
18951da177e4SLinus Torvalds 
18962d92ab3cSAl Viro 	if (S_ISDIR(path->dentry->d_inode->i_mode) !=
18972d92ab3cSAl Viro 	      S_ISDIR(old_path.dentry->d_inode->i_mode))
189821444403SRam Pai 		goto out1;
189921444403SRam Pai 	/*
190021444403SRam Pai 	 * Don't move a mount residing in a shared parent.
190121444403SRam Pai 	 */
19020714a533SAl Viro 	if (IS_MNT_SHARED(&old->mnt_parent->mnt))
190321444403SRam Pai 		goto out1;
19049676f0c6SRam Pai 	/*
19059676f0c6SRam Pai 	 * Don't move a mount tree containing unbindable mounts to a destination
19069676f0c6SRam Pai 	 * mount which is shared.
19079676f0c6SRam Pai 	 */
19082d92ab3cSAl Viro 	if (IS_MNT_SHARED(path->mnt) &&
1909cbbe362cSAl Viro 	    tree_contains_unbindable(old))
19109676f0c6SRam Pai 		goto out1;
19111da177e4SLinus Torvalds 	err = -ELOOP;
19120714a533SAl Viro 	for (p = real_mount(path->mnt); mnt_has_parent(p); p = p->mnt_parent)
1913676da58dSAl Viro 		if (p == old)
191421444403SRam Pai 			goto out1;
19151da177e4SLinus Torvalds 
19160fb54e50SAl Viro 	err = attach_recursive_mnt(old, path, &parent_path);
19174ac91378SJan Blunck 	if (err)
191821444403SRam Pai 		goto out1;
19191da177e4SLinus Torvalds 
19201da177e4SLinus Torvalds 	/* if the mount is moved, it should no longer be expire
19211da177e4SLinus Torvalds 	 * automatically */
19222d92ab3cSAl Viro 	list_del_init(&old_path.mnt->mnt_expire);
19231da177e4SLinus Torvalds out1:
1924b12cea91SAl Viro 	unlock_mount(path);
19251da177e4SLinus Torvalds out:
19261da177e4SLinus Torvalds 	if (!err)
19271a390689SAl Viro 		path_put(&parent_path);
19282d92ab3cSAl Viro 	path_put(&old_path);
19291da177e4SLinus Torvalds 	return err;
19301da177e4SLinus Torvalds }
19311da177e4SLinus Torvalds 
19329d412a43SAl Viro static struct vfsmount *fs_set_subtype(struct vfsmount *mnt, const char *fstype)
19339d412a43SAl Viro {
19349d412a43SAl Viro 	int err;
19359d412a43SAl Viro 	const char *subtype = strchr(fstype, '.');
19369d412a43SAl Viro 	if (subtype) {
19379d412a43SAl Viro 		subtype++;
19389d412a43SAl Viro 		err = -EINVAL;
19399d412a43SAl Viro 		if (!subtype[0])
19409d412a43SAl Viro 			goto err;
19419d412a43SAl Viro 	} else
19429d412a43SAl Viro 		subtype = "";
19439d412a43SAl Viro 
19449d412a43SAl Viro 	mnt->mnt_sb->s_subtype = kstrdup(subtype, GFP_KERNEL);
19459d412a43SAl Viro 	err = -ENOMEM;
19469d412a43SAl Viro 	if (!mnt->mnt_sb->s_subtype)
19479d412a43SAl Viro 		goto err;
19489d412a43SAl Viro 	return mnt;
19499d412a43SAl Viro 
19509d412a43SAl Viro  err:
19519d412a43SAl Viro 	mntput(mnt);
19529d412a43SAl Viro 	return ERR_PTR(err);
19539d412a43SAl Viro }
19549d412a43SAl Viro 
195579e801a9SAl Viro static struct vfsmount *
19569d412a43SAl Viro do_kern_mount(const char *fstype, int flags, const char *name, void *data)
19579d412a43SAl Viro {
19589d412a43SAl Viro 	struct file_system_type *type = get_fs_type(fstype);
19599d412a43SAl Viro 	struct vfsmount *mnt;
19609d412a43SAl Viro 	if (!type)
19619d412a43SAl Viro 		return ERR_PTR(-ENODEV);
19629d412a43SAl Viro 	mnt = vfs_kern_mount(type, flags, name, data);
19639d412a43SAl Viro 	if (!IS_ERR(mnt) && (type->fs_flags & FS_HAS_SUBTYPE) &&
19649d412a43SAl Viro 	    !mnt->mnt_sb->s_subtype)
19659d412a43SAl Viro 		mnt = fs_set_subtype(mnt, fstype);
19669d412a43SAl Viro 	put_filesystem(type);
19679d412a43SAl Viro 	return mnt;
19689d412a43SAl Viro }
19699d412a43SAl Viro 
19709d412a43SAl Viro /*
19719d412a43SAl Viro  * add a mount into a namespace's mount tree
19729d412a43SAl Viro  */
19739d412a43SAl Viro static int do_add_mount(struct vfsmount *newmnt, struct path *path, int mnt_flags)
19749d412a43SAl Viro {
19759d412a43SAl Viro 	int err;
19769d412a43SAl Viro 
19779d412a43SAl Viro 	mnt_flags &= ~(MNT_SHARED | MNT_WRITE_HOLD | MNT_INTERNAL);
19789d412a43SAl Viro 
1979b12cea91SAl Viro 	err = lock_mount(path);
1980b12cea91SAl Viro 	if (err)
1981b12cea91SAl Viro 		return err;
19829d412a43SAl Viro 
19839d412a43SAl Viro 	err = -EINVAL;
19849d412a43SAl Viro 	if (!(mnt_flags & MNT_SHRINKABLE) && !check_mnt(path->mnt))
19859d412a43SAl Viro 		goto unlock;
19869d412a43SAl Viro 
19879d412a43SAl Viro 	/* Refuse the same filesystem on the same mount point */
19889d412a43SAl Viro 	err = -EBUSY;
19899d412a43SAl Viro 	if (path->mnt->mnt_sb == newmnt->mnt_sb &&
19909d412a43SAl Viro 	    path->mnt->mnt_root == path->dentry)
19919d412a43SAl Viro 		goto unlock;
19929d412a43SAl Viro 
19939d412a43SAl Viro 	err = -EINVAL;
19949d412a43SAl Viro 	if (S_ISLNK(newmnt->mnt_root->d_inode->i_mode))
19959d412a43SAl Viro 		goto unlock;
19969d412a43SAl Viro 
19979d412a43SAl Viro 	newmnt->mnt_flags = mnt_flags;
19989d412a43SAl Viro 	err = graft_tree(newmnt, path);
19999d412a43SAl Viro 
20009d412a43SAl Viro unlock:
2001b12cea91SAl Viro 	unlock_mount(path);
20029d412a43SAl Viro 	return err;
20039d412a43SAl Viro }
2004b1e75df4SAl Viro 
20051da177e4SLinus Torvalds /*
20061da177e4SLinus Torvalds  * create a new mount for userspace and request it to be added into the
20071da177e4SLinus Torvalds  * namespace's tree
20081da177e4SLinus Torvalds  */
20090a0d8a46SAl Viro static int do_new_mount(struct path *path, char *type, int flags,
20101da177e4SLinus Torvalds 			int mnt_flags, char *name, void *data)
20111da177e4SLinus Torvalds {
20121da177e4SLinus Torvalds 	struct vfsmount *mnt;
201315f9a3f3SAl Viro 	int err;
20141da177e4SLinus Torvalds 
2015eca6f534SVegard Nossum 	if (!type)
20161da177e4SLinus Torvalds 		return -EINVAL;
20171da177e4SLinus Torvalds 
20181da177e4SLinus Torvalds 	/* we need capabilities... */
20191da177e4SLinus Torvalds 	if (!capable(CAP_SYS_ADMIN))
20201da177e4SLinus Torvalds 		return -EPERM;
20211da177e4SLinus Torvalds 
20221da177e4SLinus Torvalds 	mnt = do_kern_mount(type, flags, name, data);
20231da177e4SLinus Torvalds 	if (IS_ERR(mnt))
20241da177e4SLinus Torvalds 		return PTR_ERR(mnt);
20251da177e4SLinus Torvalds 
202615f9a3f3SAl Viro 	err = do_add_mount(mnt, path, mnt_flags);
202715f9a3f3SAl Viro 	if (err)
202815f9a3f3SAl Viro 		mntput(mnt);
202915f9a3f3SAl Viro 	return err;
20301da177e4SLinus Torvalds }
20311da177e4SLinus Torvalds 
203219a167afSAl Viro int finish_automount(struct vfsmount *m, struct path *path)
203319a167afSAl Viro {
203419a167afSAl Viro 	int err;
203519a167afSAl Viro 	/* The new mount record should have at least 2 refs to prevent it being
203619a167afSAl Viro 	 * expired before we get a chance to add it
203719a167afSAl Viro 	 */
203819a167afSAl Viro 	BUG_ON(mnt_get_count(m) < 2);
203919a167afSAl Viro 
204019a167afSAl Viro 	if (m->mnt_sb == path->mnt->mnt_sb &&
204119a167afSAl Viro 	    m->mnt_root == path->dentry) {
2042b1e75df4SAl Viro 		err = -ELOOP;
2043b1e75df4SAl Viro 		goto fail;
204419a167afSAl Viro 	}
204519a167afSAl Viro 
204619a167afSAl Viro 	err = do_add_mount(m, path, path->mnt->mnt_flags | MNT_SHRINKABLE);
2047b1e75df4SAl Viro 	if (!err)
2048b1e75df4SAl Viro 		return 0;
2049b1e75df4SAl Viro fail:
2050b1e75df4SAl Viro 	/* remove m from any expiration list it may be on */
2051b1e75df4SAl Viro 	if (!list_empty(&m->mnt_expire)) {
2052b1e75df4SAl Viro 		down_write(&namespace_sem);
2053b1e75df4SAl Viro 		br_write_lock(vfsmount_lock);
2054b1e75df4SAl Viro 		list_del_init(&m->mnt_expire);
2055b1e75df4SAl Viro 		br_write_unlock(vfsmount_lock);
2056b1e75df4SAl Viro 		up_write(&namespace_sem);
205719a167afSAl Viro 	}
2058b1e75df4SAl Viro 	mntput(m);
2059b1e75df4SAl Viro 	mntput(m);
206019a167afSAl Viro 	return err;
206119a167afSAl Viro }
206219a167afSAl Viro 
2063ea5b778aSDavid Howells /**
2064ea5b778aSDavid Howells  * mnt_set_expiry - Put a mount on an expiration list
2065ea5b778aSDavid Howells  * @mnt: The mount to list.
2066ea5b778aSDavid Howells  * @expiry_list: The list to add the mount to.
2067ea5b778aSDavid Howells  */
2068ea5b778aSDavid Howells void mnt_set_expiry(struct vfsmount *mnt, struct list_head *expiry_list)
2069ea5b778aSDavid Howells {
2070ea5b778aSDavid Howells 	down_write(&namespace_sem);
2071ea5b778aSDavid Howells 	br_write_lock(vfsmount_lock);
2072ea5b778aSDavid Howells 
2073ea5b778aSDavid Howells 	list_add_tail(&mnt->mnt_expire, expiry_list);
2074ea5b778aSDavid Howells 
2075ea5b778aSDavid Howells 	br_write_unlock(vfsmount_lock);
2076ea5b778aSDavid Howells 	up_write(&namespace_sem);
2077ea5b778aSDavid Howells }
2078ea5b778aSDavid Howells EXPORT_SYMBOL(mnt_set_expiry);
2079ea5b778aSDavid Howells 
2080ea5b778aSDavid Howells /*
20811da177e4SLinus Torvalds  * process a list of expirable mountpoints with the intent of discarding any
20821da177e4SLinus Torvalds  * mountpoints that aren't in use and haven't been touched since last we came
20831da177e4SLinus Torvalds  * here
20841da177e4SLinus Torvalds  */
20851da177e4SLinus Torvalds void mark_mounts_for_expiry(struct list_head *mounts)
20861da177e4SLinus Torvalds {
2087761d5c38SAl Viro 	struct mount *mnt, *next;
20881da177e4SLinus Torvalds 	LIST_HEAD(graveyard);
2089bcc5c7d2SAl Viro 	LIST_HEAD(umounts);
20901da177e4SLinus Torvalds 
20911da177e4SLinus Torvalds 	if (list_empty(mounts))
20921da177e4SLinus Torvalds 		return;
20931da177e4SLinus Torvalds 
2094bcc5c7d2SAl Viro 	down_write(&namespace_sem);
209599b7db7bSNick Piggin 	br_write_lock(vfsmount_lock);
20961da177e4SLinus Torvalds 
20971da177e4SLinus Torvalds 	/* extract from the expiration list every vfsmount that matches the
20981da177e4SLinus Torvalds 	 * following criteria:
20991da177e4SLinus Torvalds 	 * - only referenced by its parent vfsmount
21001da177e4SLinus Torvalds 	 * - still marked for expiry (marked on the last call here; marks are
21011da177e4SLinus Torvalds 	 *   cleared by mntput())
21021da177e4SLinus Torvalds 	 */
2103761d5c38SAl Viro 	list_for_each_entry_safe(mnt, next, mounts, mnt.mnt_expire) {
2104761d5c38SAl Viro 		if (!xchg(&mnt->mnt.mnt_expiry_mark, 1) ||
21051ab59738SAl Viro 			propagate_mount_busy(mnt, 1))
21061da177e4SLinus Torvalds 			continue;
2107761d5c38SAl Viro 		list_move(&mnt->mnt.mnt_expire, &graveyard);
21081da177e4SLinus Torvalds 	}
2109bcc5c7d2SAl Viro 	while (!list_empty(&graveyard)) {
2110761d5c38SAl Viro 		mnt = list_first_entry(&graveyard, struct mount, mnt.mnt_expire);
2111761d5c38SAl Viro 		touch_mnt_namespace(mnt->mnt.mnt_ns);
2112bcc5c7d2SAl Viro 		umount_tree(mnt, 1, &umounts);
2113bcc5c7d2SAl Viro 	}
211499b7db7bSNick Piggin 	br_write_unlock(vfsmount_lock);
2115bcc5c7d2SAl Viro 	up_write(&namespace_sem);
2116bcc5c7d2SAl Viro 
2117bcc5c7d2SAl Viro 	release_mounts(&umounts);
21181da177e4SLinus Torvalds }
21191da177e4SLinus Torvalds 
21201da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(mark_mounts_for_expiry);
21211da177e4SLinus Torvalds 
21221da177e4SLinus Torvalds /*
21235528f911STrond Myklebust  * Ripoff of 'select_parent()'
21245528f911STrond Myklebust  *
21255528f911STrond Myklebust  * search the list of submounts for a given mountpoint, and move any
21265528f911STrond Myklebust  * shrinkable submounts to the 'graveyard' list.
21275528f911STrond Myklebust  */
2128692afc31SAl Viro static int select_submounts(struct mount *parent, struct list_head *graveyard)
21295528f911STrond Myklebust {
2130692afc31SAl Viro 	struct mount *this_parent = parent;
21315528f911STrond Myklebust 	struct list_head *next;
21325528f911STrond Myklebust 	int found = 0;
21335528f911STrond Myklebust 
21345528f911STrond Myklebust repeat:
2135692afc31SAl Viro 	next = this_parent->mnt.mnt_mounts.next;
21365528f911STrond Myklebust resume:
2137692afc31SAl Viro 	while (next != &this_parent->mnt.mnt_mounts) {
21385528f911STrond Myklebust 		struct list_head *tmp = next;
2139692afc31SAl Viro 		struct mount *mnt = list_entry(tmp, struct mount, mnt.mnt_child);
21405528f911STrond Myklebust 
21415528f911STrond Myklebust 		next = tmp->next;
2142692afc31SAl Viro 		if (!(mnt->mnt.mnt_flags & MNT_SHRINKABLE))
21435528f911STrond Myklebust 			continue;
21445528f911STrond Myklebust 		/*
21455528f911STrond Myklebust 		 * Descend a level if the d_mounts list is non-empty.
21465528f911STrond Myklebust 		 */
2147692afc31SAl Viro 		if (!list_empty(&mnt->mnt.mnt_mounts)) {
21485528f911STrond Myklebust 			this_parent = mnt;
21495528f911STrond Myklebust 			goto repeat;
21505528f911STrond Myklebust 		}
21515528f911STrond Myklebust 
21521ab59738SAl Viro 		if (!propagate_mount_busy(mnt, 1)) {
2153692afc31SAl Viro 			list_move_tail(&mnt->mnt.mnt_expire, graveyard);
21545528f911STrond Myklebust 			found++;
21555528f911STrond Myklebust 		}
21565528f911STrond Myklebust 	}
21575528f911STrond Myklebust 	/*
21585528f911STrond Myklebust 	 * All done at this level ... ascend and resume the search
21595528f911STrond Myklebust 	 */
21605528f911STrond Myklebust 	if (this_parent != parent) {
2161692afc31SAl Viro 		next = this_parent->mnt.mnt_child.next;
21620714a533SAl Viro 		this_parent = this_parent->mnt_parent;
21635528f911STrond Myklebust 		goto resume;
21645528f911STrond Myklebust 	}
21655528f911STrond Myklebust 	return found;
21665528f911STrond Myklebust }
21675528f911STrond Myklebust 
21685528f911STrond Myklebust /*
21695528f911STrond Myklebust  * process a list of expirable mountpoints with the intent of discarding any
21705528f911STrond Myklebust  * submounts of a specific parent mountpoint
217199b7db7bSNick Piggin  *
217299b7db7bSNick Piggin  * vfsmount_lock must be held for write
21735528f911STrond Myklebust  */
2174692afc31SAl Viro static void shrink_submounts(struct mount *mnt, struct list_head *umounts)
21755528f911STrond Myklebust {
21765528f911STrond Myklebust 	LIST_HEAD(graveyard);
2177761d5c38SAl Viro 	struct mount *m;
21785528f911STrond Myklebust 
21795528f911STrond Myklebust 	/* extract submounts of 'mountpoint' from the expiration list */
2180c35038beSAl Viro 	while (select_submounts(mnt, &graveyard)) {
2181bcc5c7d2SAl Viro 		while (!list_empty(&graveyard)) {
2182761d5c38SAl Viro 			m = list_first_entry(&graveyard, struct mount,
2183761d5c38SAl Viro 						mnt.mnt_expire);
2184761d5c38SAl Viro 			touch_mnt_namespace(m->mnt.mnt_ns);
2185afef80b3SEric W. Biederman 			umount_tree(m, 1, umounts);
2186bcc5c7d2SAl Viro 		}
2187bcc5c7d2SAl Viro 	}
21885528f911STrond Myklebust }
21895528f911STrond Myklebust 
21905528f911STrond Myklebust /*
21911da177e4SLinus Torvalds  * Some copy_from_user() implementations do not return the exact number of
21921da177e4SLinus Torvalds  * bytes remaining to copy on a fault.  But copy_mount_options() requires that.
21931da177e4SLinus Torvalds  * Note that this function differs from copy_from_user() in that it will oops
21941da177e4SLinus Torvalds  * on bad values of `to', rather than returning a short copy.
21951da177e4SLinus Torvalds  */
2196b58fed8bSRam Pai static long exact_copy_from_user(void *to, const void __user * from,
2197b58fed8bSRam Pai 				 unsigned long n)
21981da177e4SLinus Torvalds {
21991da177e4SLinus Torvalds 	char *t = to;
22001da177e4SLinus Torvalds 	const char __user *f = from;
22011da177e4SLinus Torvalds 	char c;
22021da177e4SLinus Torvalds 
22031da177e4SLinus Torvalds 	if (!access_ok(VERIFY_READ, from, n))
22041da177e4SLinus Torvalds 		return n;
22051da177e4SLinus Torvalds 
22061da177e4SLinus Torvalds 	while (n) {
22071da177e4SLinus Torvalds 		if (__get_user(c, f)) {
22081da177e4SLinus Torvalds 			memset(t, 0, n);
22091da177e4SLinus Torvalds 			break;
22101da177e4SLinus Torvalds 		}
22111da177e4SLinus Torvalds 		*t++ = c;
22121da177e4SLinus Torvalds 		f++;
22131da177e4SLinus Torvalds 		n--;
22141da177e4SLinus Torvalds 	}
22151da177e4SLinus Torvalds 	return n;
22161da177e4SLinus Torvalds }
22171da177e4SLinus Torvalds 
22181da177e4SLinus Torvalds int copy_mount_options(const void __user * data, unsigned long *where)
22191da177e4SLinus Torvalds {
22201da177e4SLinus Torvalds 	int i;
22211da177e4SLinus Torvalds 	unsigned long page;
22221da177e4SLinus Torvalds 	unsigned long size;
22231da177e4SLinus Torvalds 
22241da177e4SLinus Torvalds 	*where = 0;
22251da177e4SLinus Torvalds 	if (!data)
22261da177e4SLinus Torvalds 		return 0;
22271da177e4SLinus Torvalds 
22281da177e4SLinus Torvalds 	if (!(page = __get_free_page(GFP_KERNEL)))
22291da177e4SLinus Torvalds 		return -ENOMEM;
22301da177e4SLinus Torvalds 
22311da177e4SLinus Torvalds 	/* We only care that *some* data at the address the user
22321da177e4SLinus Torvalds 	 * gave us is valid.  Just in case, we'll zero
22331da177e4SLinus Torvalds 	 * the remainder of the page.
22341da177e4SLinus Torvalds 	 */
22351da177e4SLinus Torvalds 	/* copy_from_user cannot cross TASK_SIZE ! */
22361da177e4SLinus Torvalds 	size = TASK_SIZE - (unsigned long)data;
22371da177e4SLinus Torvalds 	if (size > PAGE_SIZE)
22381da177e4SLinus Torvalds 		size = PAGE_SIZE;
22391da177e4SLinus Torvalds 
22401da177e4SLinus Torvalds 	i = size - exact_copy_from_user((void *)page, data, size);
22411da177e4SLinus Torvalds 	if (!i) {
22421da177e4SLinus Torvalds 		free_page(page);
22431da177e4SLinus Torvalds 		return -EFAULT;
22441da177e4SLinus Torvalds 	}
22451da177e4SLinus Torvalds 	if (i != PAGE_SIZE)
22461da177e4SLinus Torvalds 		memset((char *)page + i, 0, PAGE_SIZE - i);
22471da177e4SLinus Torvalds 	*where = page;
22481da177e4SLinus Torvalds 	return 0;
22491da177e4SLinus Torvalds }
22501da177e4SLinus Torvalds 
2251eca6f534SVegard Nossum int copy_mount_string(const void __user *data, char **where)
2252eca6f534SVegard Nossum {
2253eca6f534SVegard Nossum 	char *tmp;
2254eca6f534SVegard Nossum 
2255eca6f534SVegard Nossum 	if (!data) {
2256eca6f534SVegard Nossum 		*where = NULL;
2257eca6f534SVegard Nossum 		return 0;
2258eca6f534SVegard Nossum 	}
2259eca6f534SVegard Nossum 
2260eca6f534SVegard Nossum 	tmp = strndup_user(data, PAGE_SIZE);
2261eca6f534SVegard Nossum 	if (IS_ERR(tmp))
2262eca6f534SVegard Nossum 		return PTR_ERR(tmp);
2263eca6f534SVegard Nossum 
2264eca6f534SVegard Nossum 	*where = tmp;
2265eca6f534SVegard Nossum 	return 0;
2266eca6f534SVegard Nossum }
2267eca6f534SVegard Nossum 
22681da177e4SLinus Torvalds /*
22691da177e4SLinus Torvalds  * Flags is a 32-bit value that allows up to 31 non-fs dependent flags to
22701da177e4SLinus Torvalds  * be given to the mount() call (ie: read-only, no-dev, no-suid etc).
22711da177e4SLinus Torvalds  *
22721da177e4SLinus Torvalds  * data is a (void *) that can point to any structure up to
22731da177e4SLinus Torvalds  * PAGE_SIZE-1 bytes, which can contain arbitrary fs-dependent
22741da177e4SLinus Torvalds  * information (or be NULL).
22751da177e4SLinus Torvalds  *
22761da177e4SLinus Torvalds  * Pre-0.97 versions of mount() didn't have a flags word.
22771da177e4SLinus Torvalds  * When the flags word was introduced its top half was required
22781da177e4SLinus Torvalds  * to have the magic value 0xC0ED, and this remained so until 2.4.0-test9.
22791da177e4SLinus Torvalds  * Therefore, if this magic number is present, it carries no information
22801da177e4SLinus Torvalds  * and must be discarded.
22811da177e4SLinus Torvalds  */
22821da177e4SLinus Torvalds long do_mount(char *dev_name, char *dir_name, char *type_page,
22831da177e4SLinus Torvalds 		  unsigned long flags, void *data_page)
22841da177e4SLinus Torvalds {
22852d92ab3cSAl Viro 	struct path path;
22861da177e4SLinus Torvalds 	int retval = 0;
22871da177e4SLinus Torvalds 	int mnt_flags = 0;
22881da177e4SLinus Torvalds 
22891da177e4SLinus Torvalds 	/* Discard magic */
22901da177e4SLinus Torvalds 	if ((flags & MS_MGC_MSK) == MS_MGC_VAL)
22911da177e4SLinus Torvalds 		flags &= ~MS_MGC_MSK;
22921da177e4SLinus Torvalds 
22931da177e4SLinus Torvalds 	/* Basic sanity checks */
22941da177e4SLinus Torvalds 
22951da177e4SLinus Torvalds 	if (!dir_name || !*dir_name || !memchr(dir_name, 0, PAGE_SIZE))
22961da177e4SLinus Torvalds 		return -EINVAL;
22971da177e4SLinus Torvalds 
22981da177e4SLinus Torvalds 	if (data_page)
22991da177e4SLinus Torvalds 		((char *)data_page)[PAGE_SIZE - 1] = 0;
23001da177e4SLinus Torvalds 
2301a27ab9f2STetsuo Handa 	/* ... and get the mountpoint */
2302a27ab9f2STetsuo Handa 	retval = kern_path(dir_name, LOOKUP_FOLLOW, &path);
2303a27ab9f2STetsuo Handa 	if (retval)
2304a27ab9f2STetsuo Handa 		return retval;
2305a27ab9f2STetsuo Handa 
2306a27ab9f2STetsuo Handa 	retval = security_sb_mount(dev_name, &path,
2307a27ab9f2STetsuo Handa 				   type_page, flags, data_page);
2308a27ab9f2STetsuo Handa 	if (retval)
2309a27ab9f2STetsuo Handa 		goto dput_out;
2310a27ab9f2STetsuo Handa 
2311613cbe3dSAndi Kleen 	/* Default to relatime unless overriden */
2312613cbe3dSAndi Kleen 	if (!(flags & MS_NOATIME))
23130a1c01c9SMatthew Garrett 		mnt_flags |= MNT_RELATIME;
23140a1c01c9SMatthew Garrett 
23151da177e4SLinus Torvalds 	/* Separate the per-mountpoint flags */
23161da177e4SLinus Torvalds 	if (flags & MS_NOSUID)
23171da177e4SLinus Torvalds 		mnt_flags |= MNT_NOSUID;
23181da177e4SLinus Torvalds 	if (flags & MS_NODEV)
23191da177e4SLinus Torvalds 		mnt_flags |= MNT_NODEV;
23201da177e4SLinus Torvalds 	if (flags & MS_NOEXEC)
23211da177e4SLinus Torvalds 		mnt_flags |= MNT_NOEXEC;
2322fc33a7bbSChristoph Hellwig 	if (flags & MS_NOATIME)
2323fc33a7bbSChristoph Hellwig 		mnt_flags |= MNT_NOATIME;
2324fc33a7bbSChristoph Hellwig 	if (flags & MS_NODIRATIME)
2325fc33a7bbSChristoph Hellwig 		mnt_flags |= MNT_NODIRATIME;
2326d0adde57SMatthew Garrett 	if (flags & MS_STRICTATIME)
2327d0adde57SMatthew Garrett 		mnt_flags &= ~(MNT_RELATIME | MNT_NOATIME);
23282e4b7fcdSDave Hansen 	if (flags & MS_RDONLY)
23292e4b7fcdSDave Hansen 		mnt_flags |= MNT_READONLY;
2330fc33a7bbSChristoph Hellwig 
23317a4dec53SAl Viro 	flags &= ~(MS_NOSUID | MS_NOEXEC | MS_NODEV | MS_ACTIVE | MS_BORN |
2332d0adde57SMatthew Garrett 		   MS_NOATIME | MS_NODIRATIME | MS_RELATIME| MS_KERNMOUNT |
2333d0adde57SMatthew Garrett 		   MS_STRICTATIME);
23341da177e4SLinus Torvalds 
23351da177e4SLinus Torvalds 	if (flags & MS_REMOUNT)
23362d92ab3cSAl Viro 		retval = do_remount(&path, flags & ~MS_REMOUNT, mnt_flags,
23371da177e4SLinus Torvalds 				    data_page);
23381da177e4SLinus Torvalds 	else if (flags & MS_BIND)
23392d92ab3cSAl Viro 		retval = do_loopback(&path, dev_name, flags & MS_REC);
23409676f0c6SRam Pai 	else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
23412d92ab3cSAl Viro 		retval = do_change_type(&path, flags);
23421da177e4SLinus Torvalds 	else if (flags & MS_MOVE)
23432d92ab3cSAl Viro 		retval = do_move_mount(&path, dev_name);
23441da177e4SLinus Torvalds 	else
23452d92ab3cSAl Viro 		retval = do_new_mount(&path, type_page, flags, mnt_flags,
23461da177e4SLinus Torvalds 				      dev_name, data_page);
23471da177e4SLinus Torvalds dput_out:
23482d92ab3cSAl Viro 	path_put(&path);
23491da177e4SLinus Torvalds 	return retval;
23501da177e4SLinus Torvalds }
23511da177e4SLinus Torvalds 
2352cf8d2c11STrond Myklebust static struct mnt_namespace *alloc_mnt_ns(void)
2353cf8d2c11STrond Myklebust {
2354cf8d2c11STrond Myklebust 	struct mnt_namespace *new_ns;
2355cf8d2c11STrond Myklebust 
2356cf8d2c11STrond Myklebust 	new_ns = kmalloc(sizeof(struct mnt_namespace), GFP_KERNEL);
2357cf8d2c11STrond Myklebust 	if (!new_ns)
2358cf8d2c11STrond Myklebust 		return ERR_PTR(-ENOMEM);
2359cf8d2c11STrond Myklebust 	atomic_set(&new_ns->count, 1);
2360cf8d2c11STrond Myklebust 	new_ns->root = NULL;
2361cf8d2c11STrond Myklebust 	INIT_LIST_HEAD(&new_ns->list);
2362cf8d2c11STrond Myklebust 	init_waitqueue_head(&new_ns->poll);
2363cf8d2c11STrond Myklebust 	new_ns->event = 0;
2364cf8d2c11STrond Myklebust 	return new_ns;
2365cf8d2c11STrond Myklebust }
2366cf8d2c11STrond Myklebust 
2367f03c6599SAl Viro void mnt_make_longterm(struct vfsmount *mnt)
2368f03c6599SAl Viro {
23697e3d0eb0SAl Viro 	__mnt_make_longterm(mnt);
2370f03c6599SAl Viro }
2371f03c6599SAl Viro 
2372f03c6599SAl Viro void mnt_make_shortterm(struct vfsmount *mnt)
2373f03c6599SAl Viro {
23747e3d0eb0SAl Viro #ifdef CONFIG_SMP
2375f03c6599SAl Viro 	if (atomic_add_unless(&mnt->mnt_longterm, -1, 1))
2376f03c6599SAl Viro 		return;
2377f03c6599SAl Viro 	br_write_lock(vfsmount_lock);
2378f03c6599SAl Viro 	atomic_dec(&mnt->mnt_longterm);
2379f03c6599SAl Viro 	br_write_unlock(vfsmount_lock);
23807e3d0eb0SAl Viro #endif
2381f03c6599SAl Viro }
2382f03c6599SAl Viro 
2383741a2951SJANAK DESAI /*
2384741a2951SJANAK DESAI  * Allocate a new namespace structure and populate it with contents
2385741a2951SJANAK DESAI  * copied from the namespace of the passed in task structure.
2386741a2951SJANAK DESAI  */
2387e3222c4eSBadari Pulavarty static struct mnt_namespace *dup_mnt_ns(struct mnt_namespace *mnt_ns,
23886b3286edSKirill Korotaev 		struct fs_struct *fs)
23891da177e4SLinus Torvalds {
23906b3286edSKirill Korotaev 	struct mnt_namespace *new_ns;
23917f2da1e7SAl Viro 	struct vfsmount *rootmnt = NULL, *pwdmnt = NULL;
2392315fc83eSAl Viro 	struct mount *p, *q;
2393cb338d06SAl Viro 	struct mount *new;
23941da177e4SLinus Torvalds 
2395cf8d2c11STrond Myklebust 	new_ns = alloc_mnt_ns();
2396cf8d2c11STrond Myklebust 	if (IS_ERR(new_ns))
2397cf8d2c11STrond Myklebust 		return new_ns;
23981da177e4SLinus Torvalds 
2399390c6843SRam Pai 	down_write(&namespace_sem);
24001da177e4SLinus Torvalds 	/* First pass: copy the tree topology */
240187129cc0SAl Viro 	new = copy_tree(real_mount(mnt_ns->root), mnt_ns->root->mnt_root,
24029676f0c6SRam Pai 					CL_COPY_ALL | CL_EXPIRE);
2403cb338d06SAl Viro 	if (!new) {
2404390c6843SRam Pai 		up_write(&namespace_sem);
24051da177e4SLinus Torvalds 		kfree(new_ns);
24065cc4a034SJulia Lawall 		return ERR_PTR(-ENOMEM);
24071da177e4SLinus Torvalds 	}
2408cb338d06SAl Viro 	new_ns->root = &new->mnt;
240999b7db7bSNick Piggin 	br_write_lock(vfsmount_lock);
24101da177e4SLinus Torvalds 	list_add_tail(&new_ns->list, &new_ns->root->mnt_list);
241199b7db7bSNick Piggin 	br_write_unlock(vfsmount_lock);
24121da177e4SLinus Torvalds 
24131da177e4SLinus Torvalds 	/*
24141da177e4SLinus Torvalds 	 * Second pass: switch the tsk->fs->* elements and mark new vfsmounts
24151da177e4SLinus Torvalds 	 * as belonging to new namespace.  We have already acquired a private
24161da177e4SLinus Torvalds 	 * fs_struct, so tsk->fs->lock is not needed.
24171da177e4SLinus Torvalds 	 */
2418315fc83eSAl Viro 	p = real_mount(mnt_ns->root);
2419cb338d06SAl Viro 	q = new;
24201da177e4SLinus Torvalds 	while (p) {
2421315fc83eSAl Viro 		q->mnt.mnt_ns = new_ns;
2422315fc83eSAl Viro 		__mnt_make_longterm(&q->mnt);
24231da177e4SLinus Torvalds 		if (fs) {
2424315fc83eSAl Viro 			if (&p->mnt == fs->root.mnt) {
2425315fc83eSAl Viro 				fs->root.mnt = mntget(&q->mnt);
2426315fc83eSAl Viro 				__mnt_make_longterm(&q->mnt);
2427315fc83eSAl Viro 				mnt_make_shortterm(&p->mnt);
2428315fc83eSAl Viro 				rootmnt = &p->mnt;
24291da177e4SLinus Torvalds 			}
2430315fc83eSAl Viro 			if (&p->mnt == fs->pwd.mnt) {
2431315fc83eSAl Viro 				fs->pwd.mnt = mntget(&q->mnt);
2432315fc83eSAl Viro 				__mnt_make_longterm(&q->mnt);
2433315fc83eSAl Viro 				mnt_make_shortterm(&p->mnt);
2434315fc83eSAl Viro 				pwdmnt = &p->mnt;
24351da177e4SLinus Torvalds 			}
24361da177e4SLinus Torvalds 		}
24376b3286edSKirill Korotaev 		p = next_mnt(p, mnt_ns->root);
24381da177e4SLinus Torvalds 		q = next_mnt(q, new_ns->root);
24391da177e4SLinus Torvalds 	}
2440390c6843SRam Pai 	up_write(&namespace_sem);
24411da177e4SLinus Torvalds 
24421da177e4SLinus Torvalds 	if (rootmnt)
2443f03c6599SAl Viro 		mntput(rootmnt);
24441da177e4SLinus Torvalds 	if (pwdmnt)
2445f03c6599SAl Viro 		mntput(pwdmnt);
24461da177e4SLinus Torvalds 
2447741a2951SJANAK DESAI 	return new_ns;
2448741a2951SJANAK DESAI }
2449741a2951SJANAK DESAI 
2450213dd266SEric W. Biederman struct mnt_namespace *copy_mnt_ns(unsigned long flags, struct mnt_namespace *ns,
2451e3222c4eSBadari Pulavarty 		struct fs_struct *new_fs)
2452741a2951SJANAK DESAI {
24536b3286edSKirill Korotaev 	struct mnt_namespace *new_ns;
2454741a2951SJANAK DESAI 
2455e3222c4eSBadari Pulavarty 	BUG_ON(!ns);
24566b3286edSKirill Korotaev 	get_mnt_ns(ns);
2457741a2951SJANAK DESAI 
2458741a2951SJANAK DESAI 	if (!(flags & CLONE_NEWNS))
2459e3222c4eSBadari Pulavarty 		return ns;
2460741a2951SJANAK DESAI 
2461e3222c4eSBadari Pulavarty 	new_ns = dup_mnt_ns(ns, new_fs);
2462741a2951SJANAK DESAI 
24636b3286edSKirill Korotaev 	put_mnt_ns(ns);
2464e3222c4eSBadari Pulavarty 	return new_ns;
24651da177e4SLinus Torvalds }
24661da177e4SLinus Torvalds 
2467cf8d2c11STrond Myklebust /**
2468cf8d2c11STrond Myklebust  * create_mnt_ns - creates a private namespace and adds a root filesystem
2469cf8d2c11STrond Myklebust  * @mnt: pointer to the new root filesystem mountpoint
2470cf8d2c11STrond Myklebust  */
24716c449c8dSAl Viro static struct mnt_namespace *create_mnt_ns(struct vfsmount *mnt)
2472cf8d2c11STrond Myklebust {
2473cf8d2c11STrond Myklebust 	struct mnt_namespace *new_ns;
2474cf8d2c11STrond Myklebust 
2475cf8d2c11STrond Myklebust 	new_ns = alloc_mnt_ns();
2476cf8d2c11STrond Myklebust 	if (!IS_ERR(new_ns)) {
2477cf8d2c11STrond Myklebust 		mnt->mnt_ns = new_ns;
24787e3d0eb0SAl Viro 		__mnt_make_longterm(mnt);
2479cf8d2c11STrond Myklebust 		new_ns->root = mnt;
2480cf8d2c11STrond Myklebust 		list_add(&new_ns->list, &new_ns->root->mnt_list);
2481c1334495SAl Viro 	} else {
2482c1334495SAl Viro 		mntput(mnt);
2483cf8d2c11STrond Myklebust 	}
2484cf8d2c11STrond Myklebust 	return new_ns;
2485cf8d2c11STrond Myklebust }
2486cf8d2c11STrond Myklebust 
2487ea441d11SAl Viro struct dentry *mount_subtree(struct vfsmount *mnt, const char *name)
2488ea441d11SAl Viro {
2489ea441d11SAl Viro 	struct mnt_namespace *ns;
2490d31da0f0SAl Viro 	struct super_block *s;
2491ea441d11SAl Viro 	struct path path;
2492ea441d11SAl Viro 	int err;
2493ea441d11SAl Viro 
2494ea441d11SAl Viro 	ns = create_mnt_ns(mnt);
2495ea441d11SAl Viro 	if (IS_ERR(ns))
2496ea441d11SAl Viro 		return ERR_CAST(ns);
2497ea441d11SAl Viro 
2498ea441d11SAl Viro 	err = vfs_path_lookup(mnt->mnt_root, mnt,
2499ea441d11SAl Viro 			name, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &path);
2500ea441d11SAl Viro 
2501ea441d11SAl Viro 	put_mnt_ns(ns);
2502ea441d11SAl Viro 
2503ea441d11SAl Viro 	if (err)
2504ea441d11SAl Viro 		return ERR_PTR(err);
2505ea441d11SAl Viro 
2506ea441d11SAl Viro 	/* trade a vfsmount reference for active sb one */
2507d31da0f0SAl Viro 	s = path.mnt->mnt_sb;
2508d31da0f0SAl Viro 	atomic_inc(&s->s_active);
2509ea441d11SAl Viro 	mntput(path.mnt);
2510ea441d11SAl Viro 	/* lock the sucker */
2511d31da0f0SAl Viro 	down_write(&s->s_umount);
2512ea441d11SAl Viro 	/* ... and return the root of (sub)tree on it */
2513ea441d11SAl Viro 	return path.dentry;
2514ea441d11SAl Viro }
2515ea441d11SAl Viro EXPORT_SYMBOL(mount_subtree);
2516ea441d11SAl Viro 
2517bdc480e3SHeiko Carstens SYSCALL_DEFINE5(mount, char __user *, dev_name, char __user *, dir_name,
2518bdc480e3SHeiko Carstens 		char __user *, type, unsigned long, flags, void __user *, data)
25191da177e4SLinus Torvalds {
2520eca6f534SVegard Nossum 	int ret;
2521eca6f534SVegard Nossum 	char *kernel_type;
2522eca6f534SVegard Nossum 	char *kernel_dir;
2523eca6f534SVegard Nossum 	char *kernel_dev;
25241da177e4SLinus Torvalds 	unsigned long data_page;
25251da177e4SLinus Torvalds 
2526eca6f534SVegard Nossum 	ret = copy_mount_string(type, &kernel_type);
2527eca6f534SVegard Nossum 	if (ret < 0)
2528eca6f534SVegard Nossum 		goto out_type;
25291da177e4SLinus Torvalds 
2530eca6f534SVegard Nossum 	kernel_dir = getname(dir_name);
2531eca6f534SVegard Nossum 	if (IS_ERR(kernel_dir)) {
2532eca6f534SVegard Nossum 		ret = PTR_ERR(kernel_dir);
2533eca6f534SVegard Nossum 		goto out_dir;
2534eca6f534SVegard Nossum 	}
25351da177e4SLinus Torvalds 
2536eca6f534SVegard Nossum 	ret = copy_mount_string(dev_name, &kernel_dev);
2537eca6f534SVegard Nossum 	if (ret < 0)
2538eca6f534SVegard Nossum 		goto out_dev;
25391da177e4SLinus Torvalds 
2540eca6f534SVegard Nossum 	ret = copy_mount_options(data, &data_page);
2541eca6f534SVegard Nossum 	if (ret < 0)
2542eca6f534SVegard Nossum 		goto out_data;
25431da177e4SLinus Torvalds 
2544eca6f534SVegard Nossum 	ret = do_mount(kernel_dev, kernel_dir, kernel_type, flags,
2545eca6f534SVegard Nossum 		(void *) data_page);
2546eca6f534SVegard Nossum 
25471da177e4SLinus Torvalds 	free_page(data_page);
2548eca6f534SVegard Nossum out_data:
2549eca6f534SVegard Nossum 	kfree(kernel_dev);
2550eca6f534SVegard Nossum out_dev:
2551eca6f534SVegard Nossum 	putname(kernel_dir);
2552eca6f534SVegard Nossum out_dir:
2553eca6f534SVegard Nossum 	kfree(kernel_type);
2554eca6f534SVegard Nossum out_type:
2555eca6f534SVegard Nossum 	return ret;
25561da177e4SLinus Torvalds }
25571da177e4SLinus Torvalds 
25581da177e4SLinus Torvalds /*
2559afac7cbaSAl Viro  * Return true if path is reachable from root
2560afac7cbaSAl Viro  *
2561afac7cbaSAl Viro  * namespace_sem or vfsmount_lock is held
2562afac7cbaSAl Viro  */
2563643822b4SAl Viro bool is_path_reachable(struct mount *mnt, struct dentry *dentry,
2564afac7cbaSAl Viro 			 const struct path *root)
2565afac7cbaSAl Viro {
2566643822b4SAl Viro 	while (&mnt->mnt != root->mnt && mnt_has_parent(mnt)) {
2567643822b4SAl Viro 		dentry = mnt->mnt.mnt_mountpoint;
25680714a533SAl Viro 		mnt = mnt->mnt_parent;
2569afac7cbaSAl Viro 	}
2570643822b4SAl Viro 	return &mnt->mnt == root->mnt && is_subdir(dentry, root->dentry);
2571afac7cbaSAl Viro }
2572afac7cbaSAl Viro 
2573afac7cbaSAl Viro int path_is_under(struct path *path1, struct path *path2)
2574afac7cbaSAl Viro {
2575afac7cbaSAl Viro 	int res;
2576afac7cbaSAl Viro 	br_read_lock(vfsmount_lock);
2577643822b4SAl Viro 	res = is_path_reachable(real_mount(path1->mnt), path1->dentry, path2);
2578afac7cbaSAl Viro 	br_read_unlock(vfsmount_lock);
2579afac7cbaSAl Viro 	return res;
2580afac7cbaSAl Viro }
2581afac7cbaSAl Viro EXPORT_SYMBOL(path_is_under);
2582afac7cbaSAl Viro 
2583afac7cbaSAl Viro /*
25841da177e4SLinus Torvalds  * pivot_root Semantics:
25851da177e4SLinus Torvalds  * Moves the root file system of the current process to the directory put_old,
25861da177e4SLinus Torvalds  * makes new_root as the new root file system of the current process, and sets
25871da177e4SLinus Torvalds  * root/cwd of all processes which had them on the current root to new_root.
25881da177e4SLinus Torvalds  *
25891da177e4SLinus Torvalds  * Restrictions:
25901da177e4SLinus Torvalds  * The new_root and put_old must be directories, and  must not be on the
25911da177e4SLinus Torvalds  * same file  system as the current process root. The put_old  must  be
25921da177e4SLinus Torvalds  * underneath new_root,  i.e. adding a non-zero number of /.. to the string
25931da177e4SLinus Torvalds  * pointed to by put_old must yield the same directory as new_root. No other
25941da177e4SLinus Torvalds  * file system may be mounted on put_old. After all, new_root is a mountpoint.
25951da177e4SLinus Torvalds  *
25964a0d11faSNeil Brown  * Also, the current root cannot be on the 'rootfs' (initial ramfs) filesystem.
25974a0d11faSNeil Brown  * See Documentation/filesystems/ramfs-rootfs-initramfs.txt for alternatives
25984a0d11faSNeil Brown  * in this situation.
25994a0d11faSNeil Brown  *
26001da177e4SLinus Torvalds  * Notes:
26011da177e4SLinus Torvalds  *  - we don't move root/cwd if they are not at the root (reason: if something
26021da177e4SLinus Torvalds  *    cared enough to change them, it's probably wrong to force them elsewhere)
26031da177e4SLinus Torvalds  *  - it's okay to pick a root that isn't the root of a file system, e.g.
26041da177e4SLinus Torvalds  *    /nfs/my_root where /nfs is the mount point. It must be a mountpoint,
26051da177e4SLinus Torvalds  *    though, so you may need to say mount --bind /nfs/my_root /nfs/my_root
26061da177e4SLinus Torvalds  *    first.
26071da177e4SLinus Torvalds  */
26083480b257SHeiko Carstens SYSCALL_DEFINE2(pivot_root, const char __user *, new_root,
26093480b257SHeiko Carstens 		const char __user *, put_old)
26101da177e4SLinus Torvalds {
26112d8f3038SAl Viro 	struct path new, old, parent_path, root_parent, root;
2612419148daSAl Viro 	struct mount *new_mnt, *root_mnt;
26131da177e4SLinus Torvalds 	int error;
26141da177e4SLinus Torvalds 
26151da177e4SLinus Torvalds 	if (!capable(CAP_SYS_ADMIN))
26161da177e4SLinus Torvalds 		return -EPERM;
26171da177e4SLinus Torvalds 
26182d8f3038SAl Viro 	error = user_path_dir(new_root, &new);
26191da177e4SLinus Torvalds 	if (error)
26201da177e4SLinus Torvalds 		goto out0;
26211da177e4SLinus Torvalds 
26222d8f3038SAl Viro 	error = user_path_dir(put_old, &old);
26231da177e4SLinus Torvalds 	if (error)
26241da177e4SLinus Torvalds 		goto out1;
26251da177e4SLinus Torvalds 
26262d8f3038SAl Viro 	error = security_sb_pivotroot(&old, &new);
2627b12cea91SAl Viro 	if (error)
2628b12cea91SAl Viro 		goto out2;
26291da177e4SLinus Torvalds 
2630f7ad3c6bSMiklos Szeredi 	get_fs_root(current->fs, &root);
2631b12cea91SAl Viro 	error = lock_mount(&old);
2632b12cea91SAl Viro 	if (error)
2633b12cea91SAl Viro 		goto out3;
2634b12cea91SAl Viro 
26351da177e4SLinus Torvalds 	error = -EINVAL;
2636419148daSAl Viro 	new_mnt = real_mount(new.mnt);
2637419148daSAl Viro 	root_mnt = real_mount(root.mnt);
26382d8f3038SAl Viro 	if (IS_MNT_SHARED(old.mnt) ||
26390714a533SAl Viro 		IS_MNT_SHARED(&new_mnt->mnt_parent->mnt) ||
26400714a533SAl Viro 		IS_MNT_SHARED(&root_mnt->mnt_parent->mnt))
2641b12cea91SAl Viro 		goto out4;
264227cb1572SAl Viro 	if (!check_mnt(root.mnt) || !check_mnt(new.mnt))
2643b12cea91SAl Viro 		goto out4;
26441da177e4SLinus Torvalds 	error = -ENOENT;
2645f3da392eSAlexey Dobriyan 	if (d_unlinked(new.dentry))
2646b12cea91SAl Viro 		goto out4;
2647f3da392eSAlexey Dobriyan 	if (d_unlinked(old.dentry))
2648b12cea91SAl Viro 		goto out4;
26491da177e4SLinus Torvalds 	error = -EBUSY;
26502d8f3038SAl Viro 	if (new.mnt == root.mnt ||
26512d8f3038SAl Viro 	    old.mnt == root.mnt)
2652b12cea91SAl Viro 		goto out4; /* loop, on the same file system  */
26531da177e4SLinus Torvalds 	error = -EINVAL;
26548c3ee42eSAl Viro 	if (root.mnt->mnt_root != root.dentry)
2655b12cea91SAl Viro 		goto out4; /* not a mountpoint */
2656676da58dSAl Viro 	if (!mnt_has_parent(root_mnt))
2657b12cea91SAl Viro 		goto out4; /* not attached */
26582d8f3038SAl Viro 	if (new.mnt->mnt_root != new.dentry)
2659b12cea91SAl Viro 		goto out4; /* not a mountpoint */
2660676da58dSAl Viro 	if (!mnt_has_parent(new_mnt))
2661b12cea91SAl Viro 		goto out4; /* not attached */
26624ac91378SJan Blunck 	/* make sure we can reach put_old from new_root */
2663643822b4SAl Viro 	if (!is_path_reachable(real_mount(old.mnt), old.dentry, &new))
2664b12cea91SAl Viro 		goto out4;
266527cb1572SAl Viro 	br_write_lock(vfsmount_lock);
2666419148daSAl Viro 	detach_mnt(new_mnt, &parent_path);
2667419148daSAl Viro 	detach_mnt(root_mnt, &root_parent);
26684ac91378SJan Blunck 	/* mount old root on put_old */
2669419148daSAl Viro 	attach_mnt(root_mnt, &old);
26704ac91378SJan Blunck 	/* mount new_root on / */
2671419148daSAl Viro 	attach_mnt(new_mnt, &root_parent);
26726b3286edSKirill Korotaev 	touch_mnt_namespace(current->nsproxy->mnt_ns);
267399b7db7bSNick Piggin 	br_write_unlock(vfsmount_lock);
26742d8f3038SAl Viro 	chroot_fs_refs(&root, &new);
26751da177e4SLinus Torvalds 	error = 0;
2676b12cea91SAl Viro out4:
2677b12cea91SAl Viro 	unlock_mount(&old);
2678b12cea91SAl Viro 	if (!error) {
26791a390689SAl Viro 		path_put(&root_parent);
26801a390689SAl Viro 		path_put(&parent_path);
2681b12cea91SAl Viro 	}
2682b12cea91SAl Viro out3:
26838c3ee42eSAl Viro 	path_put(&root);
2684b12cea91SAl Viro out2:
26852d8f3038SAl Viro 	path_put(&old);
26861da177e4SLinus Torvalds out1:
26872d8f3038SAl Viro 	path_put(&new);
26881da177e4SLinus Torvalds out0:
26891da177e4SLinus Torvalds 	return error;
26901da177e4SLinus Torvalds }
26911da177e4SLinus Torvalds 
26921da177e4SLinus Torvalds static void __init init_mount_tree(void)
26931da177e4SLinus Torvalds {
26941da177e4SLinus Torvalds 	struct vfsmount *mnt;
26956b3286edSKirill Korotaev 	struct mnt_namespace *ns;
2696ac748a09SJan Blunck 	struct path root;
26971da177e4SLinus Torvalds 
26981da177e4SLinus Torvalds 	mnt = do_kern_mount("rootfs", 0, "rootfs", NULL);
26991da177e4SLinus Torvalds 	if (IS_ERR(mnt))
27001da177e4SLinus Torvalds 		panic("Can't create rootfs");
2701b3e19d92SNick Piggin 
27023b22edc5STrond Myklebust 	ns = create_mnt_ns(mnt);
27033b22edc5STrond Myklebust 	if (IS_ERR(ns))
27041da177e4SLinus Torvalds 		panic("Can't allocate initial namespace");
27051da177e4SLinus Torvalds 
27066b3286edSKirill Korotaev 	init_task.nsproxy->mnt_ns = ns;
27076b3286edSKirill Korotaev 	get_mnt_ns(ns);
27081da177e4SLinus Torvalds 
2709ac748a09SJan Blunck 	root.mnt = ns->root;
2710ac748a09SJan Blunck 	root.dentry = ns->root->mnt_root;
2711ac748a09SJan Blunck 
2712ac748a09SJan Blunck 	set_fs_pwd(current->fs, &root);
2713ac748a09SJan Blunck 	set_fs_root(current->fs, &root);
27141da177e4SLinus Torvalds }
27151da177e4SLinus Torvalds 
271674bf17cfSDenis Cheng void __init mnt_init(void)
27171da177e4SLinus Torvalds {
271813f14b4dSEric Dumazet 	unsigned u;
271915a67dd8SRandy Dunlap 	int err;
27201da177e4SLinus Torvalds 
2721390c6843SRam Pai 	init_rwsem(&namespace_sem);
2722390c6843SRam Pai 
27237d6fec45SAl Viro 	mnt_cache = kmem_cache_create("mnt_cache", sizeof(struct mount),
272420c2df83SPaul Mundt 			0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
27251da177e4SLinus Torvalds 
2726b58fed8bSRam Pai 	mount_hashtable = (struct list_head *)__get_free_page(GFP_ATOMIC);
27271da177e4SLinus Torvalds 
27281da177e4SLinus Torvalds 	if (!mount_hashtable)
27291da177e4SLinus Torvalds 		panic("Failed to allocate mount hash table\n");
27301da177e4SLinus Torvalds 
273180cdc6daSMandeep Singh Baines 	printk(KERN_INFO "Mount-cache hash table entries: %lu\n", HASH_SIZE);
27321da177e4SLinus Torvalds 
273313f14b4dSEric Dumazet 	for (u = 0; u < HASH_SIZE; u++)
273413f14b4dSEric Dumazet 		INIT_LIST_HEAD(&mount_hashtable[u]);
27351da177e4SLinus Torvalds 
273699b7db7bSNick Piggin 	br_lock_init(vfsmount_lock);
273799b7db7bSNick Piggin 
273815a67dd8SRandy Dunlap 	err = sysfs_init();
273915a67dd8SRandy Dunlap 	if (err)
274015a67dd8SRandy Dunlap 		printk(KERN_WARNING "%s: sysfs_init error: %d\n",
27418e24eea7SHarvey Harrison 			__func__, err);
274200d26666SGreg Kroah-Hartman 	fs_kobj = kobject_create_and_add("fs", NULL);
274300d26666SGreg Kroah-Hartman 	if (!fs_kobj)
27448e24eea7SHarvey Harrison 		printk(KERN_WARNING "%s: kobj create error\n", __func__);
27451da177e4SLinus Torvalds 	init_rootfs();
27461da177e4SLinus Torvalds 	init_mount_tree();
27471da177e4SLinus Torvalds }
27481da177e4SLinus Torvalds 
2749616511d0STrond Myklebust void put_mnt_ns(struct mnt_namespace *ns)
27501da177e4SLinus Torvalds {
275170fbcdf4SRam Pai 	LIST_HEAD(umount_list);
2752616511d0STrond Myklebust 
2753d498b25aSAl Viro 	if (!atomic_dec_and_test(&ns->count))
2754616511d0STrond Myklebust 		return;
2755390c6843SRam Pai 	down_write(&namespace_sem);
275699b7db7bSNick Piggin 	br_write_lock(vfsmount_lock);
2757761d5c38SAl Viro 	umount_tree(real_mount(ns->root), 0, &umount_list);
275899b7db7bSNick Piggin 	br_write_unlock(vfsmount_lock);
2759390c6843SRam Pai 	up_write(&namespace_sem);
276070fbcdf4SRam Pai 	release_mounts(&umount_list);
27616b3286edSKirill Korotaev 	kfree(ns);
27621da177e4SLinus Torvalds }
27639d412a43SAl Viro 
27649d412a43SAl Viro struct vfsmount *kern_mount_data(struct file_system_type *type, void *data)
27659d412a43SAl Viro {
2766423e0ab0STim Chen 	struct vfsmount *mnt;
2767423e0ab0STim Chen 	mnt = vfs_kern_mount(type, MS_KERNMOUNT, type->name, data);
2768423e0ab0STim Chen 	if (!IS_ERR(mnt)) {
2769423e0ab0STim Chen 		/*
2770423e0ab0STim Chen 		 * it is a longterm mount, don't release mnt until
2771423e0ab0STim Chen 		 * we unmount before file sys is unregistered
2772423e0ab0STim Chen 		*/
2773423e0ab0STim Chen 		mnt_make_longterm(mnt);
2774423e0ab0STim Chen 	}
2775423e0ab0STim Chen 	return mnt;
27769d412a43SAl Viro }
27779d412a43SAl Viro EXPORT_SYMBOL_GPL(kern_mount_data);
2778423e0ab0STim Chen 
2779423e0ab0STim Chen void kern_unmount(struct vfsmount *mnt)
2780423e0ab0STim Chen {
2781423e0ab0STim Chen 	/* release long term mount so mount point can be released */
2782423e0ab0STim Chen 	if (!IS_ERR_OR_NULL(mnt)) {
2783423e0ab0STim Chen 		mnt_make_shortterm(mnt);
2784423e0ab0STim Chen 		mntput(mnt);
2785423e0ab0STim Chen 	}
2786423e0ab0STim Chen }
2787423e0ab0STim Chen EXPORT_SYMBOL(kern_unmount);
278802125a82SAl Viro 
278902125a82SAl Viro bool our_mnt(struct vfsmount *mnt)
279002125a82SAl Viro {
279102125a82SAl Viro 	return check_mnt(mnt);
279202125a82SAl Viro }
2793