blob: d287e7e7464429c111d61d12eeb7195f1a1dfc74 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/namespace.c
3 *
4 * (C) Copyright Al Viro 2000, 2001
5 * Released under GPL v2.
6 *
7 * Based on code from fs/super.c, copyright Linus Torvalds and others.
8 * Heavily rewritten.
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/syscalls.h>
Al Virod10577a2011-12-07 13:06:11 -050012#include <linux/export.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080013#include <linux/capability.h>
Kirill Korotaev6b3286e2006-12-08 02:37:56 -080014#include <linux/mnt_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/namei.h>
16#include <linux/security.h>
Miklos Szeredi73cd49e2008-03-26 22:11:34 +010017#include <linux/idr.h>
Al Virod10577a2011-12-07 13:06:11 -050018#include <linux/acct.h> /* acct_auto_close_mnt */
19#include <linux/ramfs.h> /* init_rootfs */
20#include <linux/fs_struct.h> /* get_fs_root et.al. */
21#include <linux/fsnotify.h> /* fsnotify_vfsmount_delete */
22#include <linux/uaccess.h>
Eric W. Biederman8823c072010-03-07 18:49:36 -080023#include <linux/proc_fs.h>
Ram Pai07b20882005-11-07 17:19:07 -050024#include "pnode.h"
Adrian Bunk948730b2007-07-15 23:41:25 -070025#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Eric Dumazet13f14b42008-02-06 01:37:57 -080027#define HASH_SHIFT ilog2(PAGE_SIZE / sizeof(struct list_head))
28#define HASH_SIZE (1UL << HASH_SHIFT)
29
Al Viro5addc5d2005-11-07 17:15:49 -050030static int event;
Miklos Szeredi73cd49e2008-03-26 22:11:34 +010031static DEFINE_IDA(mnt_id_ida);
Miklos Szeredi719f5d72008-03-27 13:06:23 +010032static DEFINE_IDA(mnt_group_ida);
Nick Piggin99b7db72010-08-18 04:37:39 +100033static DEFINE_SPINLOCK(mnt_id_lock);
Al Virof21f6222009-06-24 03:12:00 -040034static int mnt_id_start = 0;
35static int mnt_group_start = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Eric Dumazetfa3536c2006-03-26 01:37:24 -080037static struct list_head *mount_hashtable __read_mostly;
Christoph Lametere18b8902006-12-06 20:33:20 -080038static struct kmem_cache *mnt_cache __read_mostly;
Ram Pai390c6842005-11-07 17:17:51 -050039static struct rw_semaphore namespace_sem;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Miklos Szeredif87fd4c2006-01-16 22:14:23 -080041/* /sys/fs */
Greg Kroah-Hartman00d26662007-10-29 14:17:23 -060042struct kobject *fs_kobj;
43EXPORT_SYMBOL_GPL(fs_kobj);
Miklos Szeredif87fd4c2006-01-16 22:14:23 -080044
Nick Piggin99b7db72010-08-18 04:37:39 +100045/*
46 * vfsmount lock may be taken for read to prevent changes to the
47 * vfsmount hash, ie. during mountpoint lookups or walking back
48 * up the tree.
49 *
50 * It should be taken for write in all cases where the vfsmount
51 * tree or hash is modified or when a vfsmount structure is modified.
52 */
53DEFINE_BRLOCK(vfsmount_lock);
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055static inline unsigned long hash(struct vfsmount *mnt, struct dentry *dentry)
56{
Ram Paib58fed82005-11-07 17:16:09 -050057 unsigned long tmp = ((unsigned long)mnt / L1_CACHE_BYTES);
58 tmp += ((unsigned long)dentry / L1_CACHE_BYTES);
Eric Dumazet13f14b42008-02-06 01:37:57 -080059 tmp = tmp + (tmp >> HASH_SHIFT);
60 return tmp & (HASH_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061}
62
Dave Hansen3d733632008-02-15 14:37:59 -080063#define MNT_WRITER_UNDERFLOW_LIMIT -(1<<16)
64
Nick Piggin99b7db72010-08-18 04:37:39 +100065/*
66 * allocation is serialized by namespace_sem, but we need the spinlock to
67 * serialize with freeing.
68 */
Al Virob105e272011-11-24 20:38:33 -050069static int mnt_alloc_id(struct mount *mnt)
Miklos Szeredi73cd49e2008-03-26 22:11:34 +010070{
71 int res;
72
73retry:
74 ida_pre_get(&mnt_id_ida, GFP_KERNEL);
Nick Piggin99b7db72010-08-18 04:37:39 +100075 spin_lock(&mnt_id_lock);
Al Viro15169fe2011-11-25 00:50:41 -050076 res = ida_get_new_above(&mnt_id_ida, mnt_id_start, &mnt->mnt_id);
Al Virof21f6222009-06-24 03:12:00 -040077 if (!res)
Al Viro15169fe2011-11-25 00:50:41 -050078 mnt_id_start = mnt->mnt_id + 1;
Nick Piggin99b7db72010-08-18 04:37:39 +100079 spin_unlock(&mnt_id_lock);
Miklos Szeredi73cd49e2008-03-26 22:11:34 +010080 if (res == -EAGAIN)
81 goto retry;
82
83 return res;
84}
85
Al Virob105e272011-11-24 20:38:33 -050086static void mnt_free_id(struct mount *mnt)
Miklos Szeredi73cd49e2008-03-26 22:11:34 +010087{
Al Viro15169fe2011-11-25 00:50:41 -050088 int id = mnt->mnt_id;
Nick Piggin99b7db72010-08-18 04:37:39 +100089 spin_lock(&mnt_id_lock);
Al Virof21f6222009-06-24 03:12:00 -040090 ida_remove(&mnt_id_ida, id);
91 if (mnt_id_start > id)
92 mnt_id_start = id;
Nick Piggin99b7db72010-08-18 04:37:39 +100093 spin_unlock(&mnt_id_lock);
Miklos Szeredi73cd49e2008-03-26 22:11:34 +010094}
95
Miklos Szeredi719f5d72008-03-27 13:06:23 +010096/*
97 * Allocate a new peer group ID
98 *
99 * mnt_group_ida is protected by namespace_sem
100 */
Al Viro4b8b21f2011-11-24 19:54:23 -0500101static int mnt_alloc_group_id(struct mount *mnt)
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100102{
Al Virof21f6222009-06-24 03:12:00 -0400103 int res;
104
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100105 if (!ida_pre_get(&mnt_group_ida, GFP_KERNEL))
106 return -ENOMEM;
107
Al Virof21f6222009-06-24 03:12:00 -0400108 res = ida_get_new_above(&mnt_group_ida,
109 mnt_group_start,
Al Viro15169fe2011-11-25 00:50:41 -0500110 &mnt->mnt_group_id);
Al Virof21f6222009-06-24 03:12:00 -0400111 if (!res)
Al Viro15169fe2011-11-25 00:50:41 -0500112 mnt_group_start = mnt->mnt_group_id + 1;
Al Virof21f6222009-06-24 03:12:00 -0400113
114 return res;
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100115}
116
117/*
118 * Release a peer group ID
119 */
Al Viro4b8b21f2011-11-24 19:54:23 -0500120void mnt_release_group_id(struct mount *mnt)
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100121{
Al Viro15169fe2011-11-25 00:50:41 -0500122 int id = mnt->mnt_group_id;
Al Virof21f6222009-06-24 03:12:00 -0400123 ida_remove(&mnt_group_ida, id);
124 if (mnt_group_start > id)
125 mnt_group_start = id;
Al Viro15169fe2011-11-25 00:50:41 -0500126 mnt->mnt_group_id = 0;
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100127}
128
Nick Pigginb3e19d92011-01-07 17:50:11 +1100129/*
130 * vfsmount lock must be held for read
131 */
Al Viro83adc752011-11-24 22:37:54 -0500132static inline void mnt_add_count(struct mount *mnt, int n)
Nick Pigginb3e19d92011-01-07 17:50:11 +1100133{
134#ifdef CONFIG_SMP
Al Viro68e8a9f2011-11-24 22:53:09 -0500135 this_cpu_add(mnt->mnt_pcp->mnt_count, n);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100136#else
137 preempt_disable();
Al Viro68e8a9f2011-11-24 22:53:09 -0500138 mnt->mnt_count += n;
Nick Pigginb3e19d92011-01-07 17:50:11 +1100139 preempt_enable();
140#endif
141}
142
Nick Pigginb3e19d92011-01-07 17:50:11 +1100143/*
144 * vfsmount lock must be held for write
145 */
Al Viro83adc752011-11-24 22:37:54 -0500146unsigned int mnt_get_count(struct mount *mnt)
Nick Pigginb3e19d92011-01-07 17:50:11 +1100147{
148#ifdef CONFIG_SMP
Al Virof03c6592011-01-14 22:30:21 -0500149 unsigned int count = 0;
Nick Pigginb3e19d92011-01-07 17:50:11 +1100150 int cpu;
151
152 for_each_possible_cpu(cpu) {
Al Viro68e8a9f2011-11-24 22:53:09 -0500153 count += per_cpu_ptr(mnt->mnt_pcp, cpu)->mnt_count;
Nick Pigginb3e19d92011-01-07 17:50:11 +1100154 }
155
156 return count;
157#else
Al Viro68e8a9f2011-11-24 22:53:09 -0500158 return mnt->mnt_count;
Nick Pigginb3e19d92011-01-07 17:50:11 +1100159#endif
160}
161
Al Virob105e272011-11-24 20:38:33 -0500162static struct mount *alloc_vfsmnt(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Al Viroc63181e2011-11-25 02:35:16 -0500164 struct mount *mnt = kmem_cache_zalloc(mnt_cache, GFP_KERNEL);
165 if (mnt) {
Miklos Szeredi73cd49e2008-03-26 22:11:34 +0100166 int err;
167
Al Viroc63181e2011-11-25 02:35:16 -0500168 err = mnt_alloc_id(mnt);
Li Zefan88b38782008-07-21 18:06:36 +0800169 if (err)
170 goto out_free_cache;
171
172 if (name) {
Al Viroc63181e2011-11-25 02:35:16 -0500173 mnt->mnt_devname = kstrdup(name, GFP_KERNEL);
174 if (!mnt->mnt_devname)
Li Zefan88b38782008-07-21 18:06:36 +0800175 goto out_free_id;
Miklos Szeredi73cd49e2008-03-26 22:11:34 +0100176 }
177
Nick Pigginb3e19d92011-01-07 17:50:11 +1100178#ifdef CONFIG_SMP
Al Viroc63181e2011-11-25 02:35:16 -0500179 mnt->mnt_pcp = alloc_percpu(struct mnt_pcp);
180 if (!mnt->mnt_pcp)
Nick Pigginb3e19d92011-01-07 17:50:11 +1100181 goto out_free_devname;
182
Al Viroc63181e2011-11-25 02:35:16 -0500183 this_cpu_add(mnt->mnt_pcp->mnt_count, 1);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100184#else
Al Viroc63181e2011-11-25 02:35:16 -0500185 mnt->mnt_count = 1;
186 mnt->mnt_writers = 0;
Nick Pigginb3e19d92011-01-07 17:50:11 +1100187#endif
188
Al Viroc63181e2011-11-25 02:35:16 -0500189 INIT_LIST_HEAD(&mnt->mnt_hash);
190 INIT_LIST_HEAD(&mnt->mnt_child);
191 INIT_LIST_HEAD(&mnt->mnt_mounts);
192 INIT_LIST_HEAD(&mnt->mnt_list);
193 INIT_LIST_HEAD(&mnt->mnt_expire);
194 INIT_LIST_HEAD(&mnt->mnt_share);
195 INIT_LIST_HEAD(&mnt->mnt_slave_list);
196 INIT_LIST_HEAD(&mnt->mnt_slave);
Andreas Gruenbacher2504c5d2009-12-17 21:24:27 -0500197#ifdef CONFIG_FSNOTIFY
198 INIT_HLIST_HEAD(&mnt->mnt_fsnotify_marks);
199#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
Al Viroc63181e2011-11-25 02:35:16 -0500201 return mnt;
Li Zefan88b38782008-07-21 18:06:36 +0800202
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000203#ifdef CONFIG_SMP
204out_free_devname:
Al Viroc63181e2011-11-25 02:35:16 -0500205 kfree(mnt->mnt_devname);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000206#endif
Li Zefan88b38782008-07-21 18:06:36 +0800207out_free_id:
Al Viroc63181e2011-11-25 02:35:16 -0500208 mnt_free_id(mnt);
Li Zefan88b38782008-07-21 18:06:36 +0800209out_free_cache:
Al Viroc63181e2011-11-25 02:35:16 -0500210 kmem_cache_free(mnt_cache, mnt);
Li Zefan88b38782008-07-21 18:06:36 +0800211 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
Dave Hansen83660252008-02-15 14:37:30 -0800214/*
215 * Most r/o checks on a fs are for operations that take
216 * discrete amounts of time, like a write() or unlink().
217 * We must keep track of when those operations start
218 * (for permission checks) and when they end, so that
219 * we can determine when writes are able to occur to
220 * a filesystem.
221 */
Dave Hansen3d733632008-02-15 14:37:59 -0800222/*
223 * __mnt_is_readonly: check whether a mount is read-only
224 * @mnt: the mount to check for its write status
225 *
226 * This shouldn't be used directly ouside of the VFS.
227 * It does not guarantee that the filesystem will stay
228 * r/w, just that it is right *now*. This can not and
229 * should not be used in place of IS_RDONLY(inode).
230 * mnt_want/drop_write() will _keep_ the filesystem
231 * r/w.
232 */
233int __mnt_is_readonly(struct vfsmount *mnt)
234{
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800235 if (mnt->mnt_flags & MNT_READONLY)
236 return 1;
237 if (mnt->mnt_sb->s_flags & MS_RDONLY)
238 return 1;
239 return 0;
Dave Hansen3d733632008-02-15 14:37:59 -0800240}
241EXPORT_SYMBOL_GPL(__mnt_is_readonly);
242
Al Viro83adc752011-11-24 22:37:54 -0500243static inline void mnt_inc_writers(struct mount *mnt)
Dave Hansen3d733632008-02-15 14:37:59 -0800244{
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000245#ifdef CONFIG_SMP
Al Viro68e8a9f2011-11-24 22:53:09 -0500246 this_cpu_inc(mnt->mnt_pcp->mnt_writers);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000247#else
Al Viro68e8a9f2011-11-24 22:53:09 -0500248 mnt->mnt_writers++;
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000249#endif
Dave Hansen3d733632008-02-15 14:37:59 -0800250}
Dave Hansen3d733632008-02-15 14:37:59 -0800251
Al Viro83adc752011-11-24 22:37:54 -0500252static inline void mnt_dec_writers(struct mount *mnt)
Dave Hansen3d733632008-02-15 14:37:59 -0800253{
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000254#ifdef CONFIG_SMP
Al Viro68e8a9f2011-11-24 22:53:09 -0500255 this_cpu_dec(mnt->mnt_pcp->mnt_writers);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000256#else
Al Viro68e8a9f2011-11-24 22:53:09 -0500257 mnt->mnt_writers--;
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000258#endif
259}
260
Al Viro83adc752011-11-24 22:37:54 -0500261static unsigned int mnt_get_writers(struct mount *mnt)
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000262{
263#ifdef CONFIG_SMP
264 unsigned int count = 0;
Dave Hansen3d733632008-02-15 14:37:59 -0800265 int cpu;
Dave Hansen3d733632008-02-15 14:37:59 -0800266
267 for_each_possible_cpu(cpu) {
Al Viro68e8a9f2011-11-24 22:53:09 -0500268 count += per_cpu_ptr(mnt->mnt_pcp, cpu)->mnt_writers;
Dave Hansen3d733632008-02-15 14:37:59 -0800269 }
Dave Hansen3d733632008-02-15 14:37:59 -0800270
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000271 return count;
272#else
273 return mnt->mnt_writers;
274#endif
Dave Hansen3d733632008-02-15 14:37:59 -0800275}
276
Miklos Szeredi4ed5e82f2011-11-21 12:11:31 +0100277static int mnt_is_readonly(struct vfsmount *mnt)
278{
279 if (mnt->mnt_sb->s_readonly_remount)
280 return 1;
281 /* Order wrt setting s_flags/s_readonly_remount in do_remount() */
282 smp_rmb();
283 return __mnt_is_readonly(mnt);
284}
285
Dave Hansen3d733632008-02-15 14:37:59 -0800286/*
Jan Karaeb04c282012-06-12 16:20:35 +0200287 * Most r/o & frozen checks on a fs are for operations that take discrete
288 * amounts of time, like a write() or unlink(). We must keep track of when
289 * those operations start (for permission checks) and when they end, so that we
290 * can determine when writes are able to occur to a filesystem.
Dave Hansen3d733632008-02-15 14:37:59 -0800291 */
Dave Hansen83660252008-02-15 14:37:30 -0800292/**
Jan Karaeb04c282012-06-12 16:20:35 +0200293 * __mnt_want_write - get write access to a mount without freeze protection
Al Viro83adc752011-11-24 22:37:54 -0500294 * @m: the mount on which to take a write
Dave Hansen83660252008-02-15 14:37:30 -0800295 *
Jan Karaeb04c282012-06-12 16:20:35 +0200296 * This tells the low-level filesystem that a write is about to be performed to
297 * it, and makes sure that writes are allowed (mnt it read-write) before
298 * returning success. This operation does not protect against filesystem being
299 * frozen. When the write operation is finished, __mnt_drop_write() must be
300 * called. This is effectively a refcount.
Dave Hansen83660252008-02-15 14:37:30 -0800301 */
Jan Karaeb04c282012-06-12 16:20:35 +0200302int __mnt_want_write(struct vfsmount *m)
Dave Hansen83660252008-02-15 14:37:30 -0800303{
Al Viro83adc752011-11-24 22:37:54 -0500304 struct mount *mnt = real_mount(m);
Dave Hansen3d733632008-02-15 14:37:59 -0800305 int ret = 0;
Dave Hansen3d733632008-02-15 14:37:59 -0800306
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000307 preempt_disable();
Nick Pigginc6653a82011-01-07 17:50:10 +1100308 mnt_inc_writers(mnt);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000309 /*
Nick Pigginc6653a82011-01-07 17:50:10 +1100310 * The store to mnt_inc_writers must be visible before we pass
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000311 * MNT_WRITE_HOLD loop below, so that the slowpath can see our
312 * incremented count after it has set MNT_WRITE_HOLD.
313 */
314 smp_mb();
Al Viro83adc752011-11-24 22:37:54 -0500315 while (mnt->mnt.mnt_flags & MNT_WRITE_HOLD)
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000316 cpu_relax();
317 /*
318 * After the slowpath clears MNT_WRITE_HOLD, mnt_is_readonly will
319 * be set to match its requirements. So we must not load that until
320 * MNT_WRITE_HOLD is cleared.
321 */
322 smp_rmb();
Miklos Szeredi4ed5e82f2011-11-21 12:11:31 +0100323 if (mnt_is_readonly(m)) {
Nick Pigginc6653a82011-01-07 17:50:10 +1100324 mnt_dec_writers(mnt);
Dave Hansen3d733632008-02-15 14:37:59 -0800325 ret = -EROFS;
Dave Hansen3d733632008-02-15 14:37:59 -0800326 }
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000327 preempt_enable();
Jan Karaeb04c282012-06-12 16:20:35 +0200328
329 return ret;
330}
331
332/**
333 * mnt_want_write - get write access to a mount
334 * @m: the mount on which to take a write
335 *
336 * This tells the low-level filesystem that a write is about to be performed to
337 * it, and makes sure that writes are allowed (mount is read-write, filesystem
338 * is not frozen) before returning success. When the write operation is
339 * finished, mnt_drop_write() must be called. This is effectively a refcount.
340 */
341int mnt_want_write(struct vfsmount *m)
342{
343 int ret;
344
345 sb_start_write(m->mnt_sb);
346 ret = __mnt_want_write(m);
347 if (ret)
348 sb_end_write(m->mnt_sb);
Dave Hansen3d733632008-02-15 14:37:59 -0800349 return ret;
Dave Hansen83660252008-02-15 14:37:30 -0800350}
351EXPORT_SYMBOL_GPL(mnt_want_write);
352
353/**
npiggin@suse.de96029c42009-04-26 20:25:55 +1000354 * mnt_clone_write - get write access to a mount
355 * @mnt: the mount on which to take a write
356 *
357 * This is effectively like mnt_want_write, except
358 * it must only be used to take an extra write reference
359 * on a mountpoint that we already know has a write reference
360 * on it. This allows some optimisation.
361 *
362 * After finished, mnt_drop_write must be called as usual to
363 * drop the reference.
364 */
365int mnt_clone_write(struct vfsmount *mnt)
366{
367 /* superblock may be r/o */
368 if (__mnt_is_readonly(mnt))
369 return -EROFS;
370 preempt_disable();
Al Viro83adc752011-11-24 22:37:54 -0500371 mnt_inc_writers(real_mount(mnt));
npiggin@suse.de96029c42009-04-26 20:25:55 +1000372 preempt_enable();
373 return 0;
374}
375EXPORT_SYMBOL_GPL(mnt_clone_write);
376
377/**
Jan Karaeb04c282012-06-12 16:20:35 +0200378 * __mnt_want_write_file - get write access to a file's mount
379 * @file: the file who's mount on which to take a write
380 *
381 * This is like __mnt_want_write, but it takes a file and can
382 * do some optimisations if the file is open for write already
383 */
384int __mnt_want_write_file(struct file *file)
385{
386 struct inode *inode = file->f_dentry->d_inode;
387
388 if (!(file->f_mode & FMODE_WRITE) || special_file(inode->i_mode))
389 return __mnt_want_write(file->f_path.mnt);
390 else
391 return mnt_clone_write(file->f_path.mnt);
392}
393
394/**
npiggin@suse.de96029c42009-04-26 20:25:55 +1000395 * mnt_want_write_file - get write access to a file's mount
396 * @file: the file who's mount on which to take a write
397 *
398 * This is like mnt_want_write, but it takes a file and can
399 * do some optimisations if the file is open for write already
400 */
401int mnt_want_write_file(struct file *file)
402{
Jan Karaeb04c282012-06-12 16:20:35 +0200403 int ret;
404
405 sb_start_write(file->f_path.mnt->mnt_sb);
406 ret = __mnt_want_write_file(file);
407 if (ret)
408 sb_end_write(file->f_path.mnt->mnt_sb);
409 return ret;
npiggin@suse.de96029c42009-04-26 20:25:55 +1000410}
411EXPORT_SYMBOL_GPL(mnt_want_write_file);
412
413/**
Jan Karaeb04c282012-06-12 16:20:35 +0200414 * __mnt_drop_write - give up write access to a mount
Dave Hansen83660252008-02-15 14:37:30 -0800415 * @mnt: the mount on which to give up write access
416 *
417 * Tells the low-level filesystem that we are done
418 * performing writes to it. Must be matched with
Jan Karaeb04c282012-06-12 16:20:35 +0200419 * __mnt_want_write() call above.
Dave Hansen83660252008-02-15 14:37:30 -0800420 */
Jan Karaeb04c282012-06-12 16:20:35 +0200421void __mnt_drop_write(struct vfsmount *mnt)
Dave Hansen83660252008-02-15 14:37:30 -0800422{
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000423 preempt_disable();
Al Viro83adc752011-11-24 22:37:54 -0500424 mnt_dec_writers(real_mount(mnt));
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000425 preempt_enable();
Dave Hansen83660252008-02-15 14:37:30 -0800426}
Jan Karaeb04c282012-06-12 16:20:35 +0200427
428/**
429 * mnt_drop_write - give up write access to a mount
430 * @mnt: the mount on which to give up write access
431 *
432 * Tells the low-level filesystem that we are done performing writes to it and
433 * also allows filesystem to be frozen again. Must be matched with
434 * mnt_want_write() call above.
435 */
436void mnt_drop_write(struct vfsmount *mnt)
437{
438 __mnt_drop_write(mnt);
439 sb_end_write(mnt->mnt_sb);
440}
Dave Hansen83660252008-02-15 14:37:30 -0800441EXPORT_SYMBOL_GPL(mnt_drop_write);
442
Jan Karaeb04c282012-06-12 16:20:35 +0200443void __mnt_drop_write_file(struct file *file)
444{
445 __mnt_drop_write(file->f_path.mnt);
446}
447
Al Viro2a79f172011-12-09 08:06:57 -0500448void mnt_drop_write_file(struct file *file)
449{
450 mnt_drop_write(file->f_path.mnt);
451}
452EXPORT_SYMBOL(mnt_drop_write_file);
453
Al Viro83adc752011-11-24 22:37:54 -0500454static int mnt_make_readonly(struct mount *mnt)
Dave Hansen83660252008-02-15 14:37:30 -0800455{
Dave Hansen3d733632008-02-15 14:37:59 -0800456 int ret = 0;
457
Andi Kleen962830d2012-05-08 13:32:02 +0930458 br_write_lock(&vfsmount_lock);
Al Viro83adc752011-11-24 22:37:54 -0500459 mnt->mnt.mnt_flags |= MNT_WRITE_HOLD;
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000460 /*
461 * After storing MNT_WRITE_HOLD, we'll read the counters. This store
462 * should be visible before we do.
463 */
464 smp_mb();
465
466 /*
467 * With writers on hold, if this value is zero, then there are
468 * definitely no active writers (although held writers may subsequently
469 * increment the count, they'll have to wait, and decrement it after
470 * seeing MNT_READONLY).
471 *
472 * It is OK to have counter incremented on one CPU and decremented on
473 * another: the sum will add up correctly. The danger would be when we
474 * sum up each counter, if we read a counter before it is incremented,
475 * but then read another CPU's count which it has been subsequently
476 * decremented from -- we would see more decrements than we should.
477 * MNT_WRITE_HOLD protects against this scenario, because
478 * mnt_want_write first increments count, then smp_mb, then spins on
479 * MNT_WRITE_HOLD, so it can't be decremented by another CPU while
480 * we're counting up here.
481 */
Nick Pigginc6653a82011-01-07 17:50:10 +1100482 if (mnt_get_writers(mnt) > 0)
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000483 ret = -EBUSY;
484 else
Al Viro83adc752011-11-24 22:37:54 -0500485 mnt->mnt.mnt_flags |= MNT_READONLY;
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000486 /*
487 * MNT_READONLY must become visible before ~MNT_WRITE_HOLD, so writers
488 * that become unheld will see MNT_READONLY.
489 */
490 smp_wmb();
Al Viro83adc752011-11-24 22:37:54 -0500491 mnt->mnt.mnt_flags &= ~MNT_WRITE_HOLD;
Andi Kleen962830d2012-05-08 13:32:02 +0930492 br_write_unlock(&vfsmount_lock);
Dave Hansen3d733632008-02-15 14:37:59 -0800493 return ret;
Dave Hansen83660252008-02-15 14:37:30 -0800494}
Dave Hansen83660252008-02-15 14:37:30 -0800495
Al Viro83adc752011-11-24 22:37:54 -0500496static void __mnt_unmake_readonly(struct mount *mnt)
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800497{
Andi Kleen962830d2012-05-08 13:32:02 +0930498 br_write_lock(&vfsmount_lock);
Al Viro83adc752011-11-24 22:37:54 -0500499 mnt->mnt.mnt_flags &= ~MNT_READONLY;
Andi Kleen962830d2012-05-08 13:32:02 +0930500 br_write_unlock(&vfsmount_lock);
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800501}
502
Miklos Szeredi4ed5e82f2011-11-21 12:11:31 +0100503int sb_prepare_remount_readonly(struct super_block *sb)
504{
505 struct mount *mnt;
506 int err = 0;
507
Miklos Szeredi8e8b8792011-11-21 12:11:33 +0100508 /* Racy optimization. Recheck the counter under MNT_WRITE_HOLD */
509 if (atomic_long_read(&sb->s_remove_count))
510 return -EBUSY;
511
Andi Kleen962830d2012-05-08 13:32:02 +0930512 br_write_lock(&vfsmount_lock);
Miklos Szeredi4ed5e82f2011-11-21 12:11:31 +0100513 list_for_each_entry(mnt, &sb->s_mounts, mnt_instance) {
514 if (!(mnt->mnt.mnt_flags & MNT_READONLY)) {
515 mnt->mnt.mnt_flags |= MNT_WRITE_HOLD;
516 smp_mb();
517 if (mnt_get_writers(mnt) > 0) {
518 err = -EBUSY;
519 break;
520 }
521 }
522 }
Miklos Szeredi8e8b8792011-11-21 12:11:33 +0100523 if (!err && atomic_long_read(&sb->s_remove_count))
524 err = -EBUSY;
525
Miklos Szeredi4ed5e82f2011-11-21 12:11:31 +0100526 if (!err) {
527 sb->s_readonly_remount = 1;
528 smp_wmb();
529 }
530 list_for_each_entry(mnt, &sb->s_mounts, mnt_instance) {
531 if (mnt->mnt.mnt_flags & MNT_WRITE_HOLD)
532 mnt->mnt.mnt_flags &= ~MNT_WRITE_HOLD;
533 }
Andi Kleen962830d2012-05-08 13:32:02 +0930534 br_write_unlock(&vfsmount_lock);
Miklos Szeredi4ed5e82f2011-11-21 12:11:31 +0100535
536 return err;
537}
538
Al Virob105e272011-11-24 20:38:33 -0500539static void free_vfsmnt(struct mount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
Al Viro52ba1622011-11-25 02:25:17 -0500541 kfree(mnt->mnt_devname);
Miklos Szeredi73cd49e2008-03-26 22:11:34 +0100542 mnt_free_id(mnt);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000543#ifdef CONFIG_SMP
Al Viro68e8a9f2011-11-24 22:53:09 -0500544 free_percpu(mnt->mnt_pcp);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000545#endif
Al Virob105e272011-11-24 20:38:33 -0500546 kmem_cache_free(mnt_cache, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
548
549/*
Ram Paia05964f2005-11-07 17:20:17 -0500550 * find the first or last mount at @dentry on vfsmount @mnt depending on
551 * @dir. If @dir is set return the first mount else return the last mount.
Nick Piggin99b7db72010-08-18 04:37:39 +1000552 * vfsmount_lock must be held for read or write.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 */
Al Viroc7105362011-11-24 18:22:03 -0500554struct mount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry,
Ram Paia05964f2005-11-07 17:20:17 -0500555 int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
Ram Paib58fed82005-11-07 17:16:09 -0500557 struct list_head *head = mount_hashtable + hash(mnt, dentry);
558 struct list_head *tmp = head;
Al Viroc7105362011-11-24 18:22:03 -0500559 struct mount *p, *found = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 for (;;) {
Ram Paia05964f2005-11-07 17:20:17 -0500562 tmp = dir ? tmp->next : tmp->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 p = NULL;
564 if (tmp == head)
565 break;
Al Viro1b8e5562011-11-24 21:01:32 -0500566 p = list_entry(tmp, struct mount, mnt_hash);
Al Viroa73324d2011-11-24 22:25:07 -0500567 if (&p->mnt_parent->mnt == mnt && p->mnt_mountpoint == dentry) {
Ram Paia05964f2005-11-07 17:20:17 -0500568 found = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 break;
570 }
571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 return found;
573}
574
Ram Paia05964f2005-11-07 17:20:17 -0500575/*
David Howellsf015f1262012-06-25 12:55:28 +0100576 * lookup_mnt - Return the first child mount mounted at path
577 *
578 * "First" means first mounted chronologically. If you create the
579 * following mounts:
580 *
581 * mount /dev/sda1 /mnt
582 * mount /dev/sda2 /mnt
583 * mount /dev/sda3 /mnt
584 *
585 * Then lookup_mnt() on the base /mnt dentry in the root mount will
586 * return successively the root dentry and vfsmount of /dev/sda1, then
587 * /dev/sda2, then /dev/sda3, then NULL.
588 *
589 * lookup_mnt takes a reference to the found vfsmount.
Ram Paia05964f2005-11-07 17:20:17 -0500590 */
Al Viro1c755af2009-04-18 14:06:57 -0400591struct vfsmount *lookup_mnt(struct path *path)
Ram Paia05964f2005-11-07 17:20:17 -0500592{
Al Viroc7105362011-11-24 18:22:03 -0500593 struct mount *child_mnt;
Nick Piggin99b7db72010-08-18 04:37:39 +1000594
Andi Kleen962830d2012-05-08 13:32:02 +0930595 br_read_lock(&vfsmount_lock);
Al Viroc7105362011-11-24 18:22:03 -0500596 child_mnt = __lookup_mnt(path->mnt, path->dentry, 1);
597 if (child_mnt) {
598 mnt_add_count(child_mnt, 1);
Andi Kleen962830d2012-05-08 13:32:02 +0930599 br_read_unlock(&vfsmount_lock);
Al Viroc7105362011-11-24 18:22:03 -0500600 return &child_mnt->mnt;
601 } else {
Andi Kleen962830d2012-05-08 13:32:02 +0930602 br_read_unlock(&vfsmount_lock);
Al Viroc7105362011-11-24 18:22:03 -0500603 return NULL;
604 }
Ram Paia05964f2005-11-07 17:20:17 -0500605}
606
Al Viro143c8c92011-11-25 00:46:35 -0500607static inline int check_mnt(struct mount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800609 return mnt->mnt_ns == current->nsproxy->mnt_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610}
611
Nick Piggin99b7db72010-08-18 04:37:39 +1000612/*
613 * vfsmount lock must be held for write
614 */
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800615static void touch_mnt_namespace(struct mnt_namespace *ns)
Al Viro5addc5d2005-11-07 17:15:49 -0500616{
617 if (ns) {
618 ns->event = ++event;
619 wake_up_interruptible(&ns->poll);
620 }
621}
622
Nick Piggin99b7db72010-08-18 04:37:39 +1000623/*
624 * vfsmount lock must be held for write
625 */
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800626static void __touch_mnt_namespace(struct mnt_namespace *ns)
Al Viro5addc5d2005-11-07 17:15:49 -0500627{
628 if (ns && ns->event != event) {
629 ns->event = event;
630 wake_up_interruptible(&ns->poll);
631 }
632}
633
Nick Piggin99b7db72010-08-18 04:37:39 +1000634/*
Nick Piggin5f57cbc2011-01-07 17:49:54 +1100635 * Clear dentry's mounted state if it has no remaining mounts.
636 * vfsmount_lock must be held for write.
637 */
Al Viroaa0a4cf2011-11-24 19:31:36 -0500638static void dentry_reset_mounted(struct dentry *dentry)
Nick Piggin5f57cbc2011-01-07 17:49:54 +1100639{
640 unsigned u;
641
642 for (u = 0; u < HASH_SIZE; u++) {
Al Virod5e50f72011-11-24 20:58:57 -0500643 struct mount *p;
Nick Piggin5f57cbc2011-01-07 17:49:54 +1100644
Al Viro1b8e5562011-11-24 21:01:32 -0500645 list_for_each_entry(p, &mount_hashtable[u], mnt_hash) {
Al Viroa73324d2011-11-24 22:25:07 -0500646 if (p->mnt_mountpoint == dentry)
Nick Piggin5f57cbc2011-01-07 17:49:54 +1100647 return;
648 }
649 }
650 spin_lock(&dentry->d_lock);
651 dentry->d_flags &= ~DCACHE_MOUNTED;
652 spin_unlock(&dentry->d_lock);
653}
654
655/*
Nick Piggin99b7db72010-08-18 04:37:39 +1000656 * vfsmount lock must be held for write
657 */
Al Viro419148d2011-11-24 19:41:16 -0500658static void detach_mnt(struct mount *mnt, struct path *old_path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
Al Viroa73324d2011-11-24 22:25:07 -0500660 old_path->dentry = mnt->mnt_mountpoint;
Al Viro0714a532011-11-24 22:19:58 -0500661 old_path->mnt = &mnt->mnt_parent->mnt;
662 mnt->mnt_parent = mnt;
Al Viroa73324d2011-11-24 22:25:07 -0500663 mnt->mnt_mountpoint = mnt->mnt.mnt_root;
Al Viro6b41d532011-11-24 23:24:33 -0500664 list_del_init(&mnt->mnt_child);
Al Viro1b8e5562011-11-24 21:01:32 -0500665 list_del_init(&mnt->mnt_hash);
Al Viroaa0a4cf2011-11-24 19:31:36 -0500666 dentry_reset_mounted(old_path->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
Nick Piggin99b7db72010-08-18 04:37:39 +1000669/*
670 * vfsmount lock must be held for write
671 */
Al Viro14cf1fa2011-11-25 00:01:17 -0500672void mnt_set_mountpoint(struct mount *mnt, struct dentry *dentry,
Al Viro44d964d62011-11-24 21:28:22 -0500673 struct mount *child_mnt)
Ram Paib90fa9a2005-11-07 17:19:50 -0500674{
Al Viro3a2393d2011-11-25 03:19:09 -0500675 mnt_add_count(mnt, 1); /* essentially, that's mntget */
Al Viroa73324d2011-11-24 22:25:07 -0500676 child_mnt->mnt_mountpoint = dget(dentry);
Al Viro3a2393d2011-11-25 03:19:09 -0500677 child_mnt->mnt_parent = mnt;
Nick Piggin5f57cbc2011-01-07 17:49:54 +1100678 spin_lock(&dentry->d_lock);
679 dentry->d_flags |= DCACHE_MOUNTED;
680 spin_unlock(&dentry->d_lock);
Ram Paib90fa9a2005-11-07 17:19:50 -0500681}
682
Nick Piggin99b7db72010-08-18 04:37:39 +1000683/*
684 * vfsmount lock must be held for write
685 */
Al Viro419148d2011-11-24 19:41:16 -0500686static void attach_mnt(struct mount *mnt, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
Al Viro14cf1fa2011-11-25 00:01:17 -0500688 mnt_set_mountpoint(real_mount(path->mnt), path->dentry, mnt);
Al Viro1b8e5562011-11-24 21:01:32 -0500689 list_add_tail(&mnt->mnt_hash, mount_hashtable +
Al Viro1a390682008-03-21 20:48:19 -0400690 hash(path->mnt, path->dentry));
Al Viro6b41d532011-11-24 23:24:33 -0500691 list_add_tail(&mnt->mnt_child, &real_mount(path->mnt)->mnt_mounts);
Ram Paib90fa9a2005-11-07 17:19:50 -0500692}
693
694/*
Nick Piggin99b7db72010-08-18 04:37:39 +1000695 * vfsmount lock must be held for write
Ram Paib90fa9a2005-11-07 17:19:50 -0500696 */
Al Viro4b2619a2011-11-24 19:47:15 -0500697static void commit_tree(struct mount *mnt)
Ram Paib90fa9a2005-11-07 17:19:50 -0500698{
Al Viro0714a532011-11-24 22:19:58 -0500699 struct mount *parent = mnt->mnt_parent;
Al Viro83adc752011-11-24 22:37:54 -0500700 struct mount *m;
Ram Paib90fa9a2005-11-07 17:19:50 -0500701 LIST_HEAD(head);
Al Viro143c8c92011-11-25 00:46:35 -0500702 struct mnt_namespace *n = parent->mnt_ns;
Ram Paib90fa9a2005-11-07 17:19:50 -0500703
Al Viro0714a532011-11-24 22:19:58 -0500704 BUG_ON(parent == mnt);
Ram Paib90fa9a2005-11-07 17:19:50 -0500705
Al Viro1a4eeaf2011-11-25 02:19:55 -0500706 list_add_tail(&head, &mnt->mnt_list);
Al Virof7a99c52012-06-09 00:59:08 -0400707 list_for_each_entry(m, &head, mnt_list)
Al Viro143c8c92011-11-25 00:46:35 -0500708 m->mnt_ns = n;
Al Virof03c6592011-01-14 22:30:21 -0500709
Ram Paib90fa9a2005-11-07 17:19:50 -0500710 list_splice(&head, n->list.prev);
711
Al Viro1b8e5562011-11-24 21:01:32 -0500712 list_add_tail(&mnt->mnt_hash, mount_hashtable +
Al Viroa73324d2011-11-24 22:25:07 -0500713 hash(&parent->mnt, mnt->mnt_mountpoint));
Al Viro6b41d532011-11-24 23:24:33 -0500714 list_add_tail(&mnt->mnt_child, &parent->mnt_mounts);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800715 touch_mnt_namespace(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716}
717
Al Viro909b0a82011-11-25 03:06:56 -0500718static struct mount *next_mnt(struct mount *p, struct mount *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Al Viro6b41d532011-11-24 23:24:33 -0500720 struct list_head *next = p->mnt_mounts.next;
721 if (next == &p->mnt_mounts) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 while (1) {
Al Viro909b0a82011-11-25 03:06:56 -0500723 if (p == root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 return NULL;
Al Viro6b41d532011-11-24 23:24:33 -0500725 next = p->mnt_child.next;
726 if (next != &p->mnt_parent->mnt_mounts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 break;
Al Viro0714a532011-11-24 22:19:58 -0500728 p = p->mnt_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
730 }
Al Viro6b41d532011-11-24 23:24:33 -0500731 return list_entry(next, struct mount, mnt_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
Al Viro315fc832011-11-24 18:57:30 -0500734static struct mount *skip_mnt_tree(struct mount *p)
Ram Pai9676f0c2005-11-07 17:21:20 -0500735{
Al Viro6b41d532011-11-24 23:24:33 -0500736 struct list_head *prev = p->mnt_mounts.prev;
737 while (prev != &p->mnt_mounts) {
738 p = list_entry(prev, struct mount, mnt_child);
739 prev = p->mnt_mounts.prev;
Ram Pai9676f0c2005-11-07 17:21:20 -0500740 }
741 return p;
742}
743
Al Viro9d412a42011-03-17 22:08:28 -0400744struct vfsmount *
745vfs_kern_mount(struct file_system_type *type, int flags, const char *name, void *data)
746{
Al Virob105e272011-11-24 20:38:33 -0500747 struct mount *mnt;
Al Viro9d412a42011-03-17 22:08:28 -0400748 struct dentry *root;
749
750 if (!type)
751 return ERR_PTR(-ENODEV);
752
753 mnt = alloc_vfsmnt(name);
754 if (!mnt)
755 return ERR_PTR(-ENOMEM);
756
757 if (flags & MS_KERNMOUNT)
Al Virob105e272011-11-24 20:38:33 -0500758 mnt->mnt.mnt_flags = MNT_INTERNAL;
Al Viro9d412a42011-03-17 22:08:28 -0400759
760 root = mount_fs(type, flags, name, data);
761 if (IS_ERR(root)) {
762 free_vfsmnt(mnt);
763 return ERR_CAST(root);
764 }
765
Al Virob105e272011-11-24 20:38:33 -0500766 mnt->mnt.mnt_root = root;
767 mnt->mnt.mnt_sb = root->d_sb;
Al Viroa73324d2011-11-24 22:25:07 -0500768 mnt->mnt_mountpoint = mnt->mnt.mnt_root;
Al Viro0714a532011-11-24 22:19:58 -0500769 mnt->mnt_parent = mnt;
Andi Kleen962830d2012-05-08 13:32:02 +0930770 br_write_lock(&vfsmount_lock);
Miklos Szeredi39f7c4d2011-11-21 12:11:30 +0100771 list_add_tail(&mnt->mnt_instance, &root->d_sb->s_mounts);
Andi Kleen962830d2012-05-08 13:32:02 +0930772 br_write_unlock(&vfsmount_lock);
Al Virob105e272011-11-24 20:38:33 -0500773 return &mnt->mnt;
Al Viro9d412a42011-03-17 22:08:28 -0400774}
775EXPORT_SYMBOL_GPL(vfs_kern_mount);
776
Al Viro87129cc2011-11-24 21:24:27 -0500777static struct mount *clone_mnt(struct mount *old, struct dentry *root,
Ram Pai36341f62005-11-07 17:17:22 -0500778 int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Al Viro87129cc2011-11-24 21:24:27 -0500780 struct super_block *sb = old->mnt.mnt_sb;
David Howellsbe34d1a2012-06-25 12:55:18 +0100781 struct mount *mnt;
782 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
David Howellsbe34d1a2012-06-25 12:55:18 +0100784 mnt = alloc_vfsmnt(old->mnt_devname);
785 if (!mnt)
786 return ERR_PTR(-ENOMEM);
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100787
David Howellsbe34d1a2012-06-25 12:55:18 +0100788 if (flag & (CL_SLAVE | CL_PRIVATE))
789 mnt->mnt_group_id = 0; /* not a peer of original */
790 else
791 mnt->mnt_group_id = old->mnt_group_id;
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100792
David Howellsbe34d1a2012-06-25 12:55:18 +0100793 if ((flag & CL_MAKE_SHARED) && !mnt->mnt_group_id) {
794 err = mnt_alloc_group_id(mnt);
795 if (err)
796 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
David Howellsbe34d1a2012-06-25 12:55:18 +0100798
799 mnt->mnt.mnt_flags = old->mnt.mnt_flags & ~MNT_WRITE_HOLD;
800 atomic_inc(&sb->s_active);
801 mnt->mnt.mnt_sb = sb;
802 mnt->mnt.mnt_root = dget(root);
803 mnt->mnt_mountpoint = mnt->mnt.mnt_root;
804 mnt->mnt_parent = mnt;
805 br_write_lock(&vfsmount_lock);
806 list_add_tail(&mnt->mnt_instance, &sb->s_mounts);
807 br_write_unlock(&vfsmount_lock);
808
809 if (flag & CL_SLAVE) {
810 list_add(&mnt->mnt_slave, &old->mnt_slave_list);
811 mnt->mnt_master = old;
812 CLEAR_MNT_SHARED(mnt);
813 } else if (!(flag & CL_PRIVATE)) {
814 if ((flag & CL_MAKE_SHARED) || IS_MNT_SHARED(old))
815 list_add(&mnt->mnt_share, &old->mnt_share);
816 if (IS_MNT_SLAVE(old))
817 list_add(&mnt->mnt_slave, &old->mnt_slave);
818 mnt->mnt_master = old->mnt_master;
819 }
820 if (flag & CL_MAKE_SHARED)
821 set_mnt_shared(mnt);
822
823 /* stick the duplicate mount on the same expiry list
824 * as the original if that was on one */
825 if (flag & CL_EXPIRE) {
826 if (!list_empty(&old->mnt_expire))
827 list_add(&mnt->mnt_expire, &old->mnt_expire);
828 }
829
Al Virocb338d02011-11-24 20:55:08 -0500830 return mnt;
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100831
832 out_free:
833 free_vfsmnt(mnt);
David Howellsbe34d1a2012-06-25 12:55:18 +0100834 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
836
Al Viro83adc752011-11-24 22:37:54 -0500837static inline void mntfree(struct mount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
Al Viro83adc752011-11-24 22:37:54 -0500839 struct vfsmount *m = &mnt->mnt;
840 struct super_block *sb = m->mnt_sb;
Nick Pigginb3e19d92011-01-07 17:50:11 +1100841
Dave Hansen3d733632008-02-15 14:37:59 -0800842 /*
Dave Hansen3d733632008-02-15 14:37:59 -0800843 * This probably indicates that somebody messed
844 * up a mnt_want/drop_write() pair. If this
845 * happens, the filesystem was probably unable
846 * to make r/w->r/o transitions.
847 */
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000848 /*
Nick Pigginb3e19d92011-01-07 17:50:11 +1100849 * The locking used to deal with mnt_count decrement provides barriers,
850 * so mnt_get_writers() below is safe.
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000851 */
Nick Pigginc6653a82011-01-07 17:50:10 +1100852 WARN_ON(mnt_get_writers(mnt));
Al Viro83adc752011-11-24 22:37:54 -0500853 fsnotify_vfsmount_delete(m);
854 dput(m->mnt_root);
855 free_vfsmnt(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 deactivate_super(sb);
857}
858
Al Viro900148d2011-11-25 00:33:11 -0500859static void mntput_no_expire(struct mount *mnt)
Al Viro7b7b1ac2005-11-07 17:13:39 -0500860{
Nick Pigginb3e19d92011-01-07 17:50:11 +1100861put_again:
Al Virof03c6592011-01-14 22:30:21 -0500862#ifdef CONFIG_SMP
Andi Kleen962830d2012-05-08 13:32:02 +0930863 br_read_lock(&vfsmount_lock);
Al Virof7a99c52012-06-09 00:59:08 -0400864 if (likely(mnt->mnt_ns)) {
865 /* shouldn't be the last one */
Al Viroaa9c0e02011-11-23 19:04:52 -0500866 mnt_add_count(mnt, -1);
Andi Kleen962830d2012-05-08 13:32:02 +0930867 br_read_unlock(&vfsmount_lock);
Al Virof03c6592011-01-14 22:30:21 -0500868 return;
Nick Pigginb3e19d92011-01-07 17:50:11 +1100869 }
Andi Kleen962830d2012-05-08 13:32:02 +0930870 br_read_unlock(&vfsmount_lock);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100871
Andi Kleen962830d2012-05-08 13:32:02 +0930872 br_write_lock(&vfsmount_lock);
Al Viroaa9c0e02011-11-23 19:04:52 -0500873 mnt_add_count(mnt, -1);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100874 if (mnt_get_count(mnt)) {
Andi Kleen962830d2012-05-08 13:32:02 +0930875 br_write_unlock(&vfsmount_lock);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100876 return;
877 }
Nick Pigginb3e19d92011-01-07 17:50:11 +1100878#else
Al Viroaa9c0e02011-11-23 19:04:52 -0500879 mnt_add_count(mnt, -1);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100880 if (likely(mnt_get_count(mnt)))
Nick Piggin99b7db72010-08-18 04:37:39 +1000881 return;
Andi Kleen962830d2012-05-08 13:32:02 +0930882 br_write_lock(&vfsmount_lock);
Al Virof03c6592011-01-14 22:30:21 -0500883#endif
Al Viro863d6842011-11-25 00:57:42 -0500884 if (unlikely(mnt->mnt_pinned)) {
885 mnt_add_count(mnt, mnt->mnt_pinned + 1);
886 mnt->mnt_pinned = 0;
Andi Kleen962830d2012-05-08 13:32:02 +0930887 br_write_unlock(&vfsmount_lock);
Al Viro900148d2011-11-25 00:33:11 -0500888 acct_auto_close_mnt(&mnt->mnt);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100889 goto put_again;
Al Viro7b7b1ac2005-11-07 17:13:39 -0500890 }
Andi Kleen962830d2012-05-08 13:32:02 +0930891
Miklos Szeredi39f7c4d2011-11-21 12:11:30 +0100892 list_del(&mnt->mnt_instance);
Andi Kleen962830d2012-05-08 13:32:02 +0930893 br_write_unlock(&vfsmount_lock);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100894 mntfree(mnt);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500895}
Nick Pigginb3e19d92011-01-07 17:50:11 +1100896
897void mntput(struct vfsmount *mnt)
898{
899 if (mnt) {
Al Viro863d6842011-11-25 00:57:42 -0500900 struct mount *m = real_mount(mnt);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100901 /* avoid cacheline pingpong, hope gcc doesn't get "smart" */
Al Viro863d6842011-11-25 00:57:42 -0500902 if (unlikely(m->mnt_expiry_mark))
903 m->mnt_expiry_mark = 0;
904 mntput_no_expire(m);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100905 }
906}
907EXPORT_SYMBOL(mntput);
908
909struct vfsmount *mntget(struct vfsmount *mnt)
910{
911 if (mnt)
Al Viro83adc752011-11-24 22:37:54 -0500912 mnt_add_count(real_mount(mnt), 1);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100913 return mnt;
914}
915EXPORT_SYMBOL(mntget);
916
Al Viro7b7b1ac2005-11-07 17:13:39 -0500917void mnt_pin(struct vfsmount *mnt)
918{
Andi Kleen962830d2012-05-08 13:32:02 +0930919 br_write_lock(&vfsmount_lock);
Al Viro863d6842011-11-25 00:57:42 -0500920 real_mount(mnt)->mnt_pinned++;
Andi Kleen962830d2012-05-08 13:32:02 +0930921 br_write_unlock(&vfsmount_lock);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500922}
Al Viro7b7b1ac2005-11-07 17:13:39 -0500923EXPORT_SYMBOL(mnt_pin);
924
Al Viro863d6842011-11-25 00:57:42 -0500925void mnt_unpin(struct vfsmount *m)
Al Viro7b7b1ac2005-11-07 17:13:39 -0500926{
Al Viro863d6842011-11-25 00:57:42 -0500927 struct mount *mnt = real_mount(m);
Andi Kleen962830d2012-05-08 13:32:02 +0930928 br_write_lock(&vfsmount_lock);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500929 if (mnt->mnt_pinned) {
Al Viro863d6842011-11-25 00:57:42 -0500930 mnt_add_count(mnt, 1);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500931 mnt->mnt_pinned--;
932 }
Andi Kleen962830d2012-05-08 13:32:02 +0930933 br_write_unlock(&vfsmount_lock);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500934}
Al Viro7b7b1ac2005-11-07 17:13:39 -0500935EXPORT_SYMBOL(mnt_unpin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800937static inline void mangle(struct seq_file *m, const char *s)
938{
939 seq_escape(m, s, " \t\n\\");
940}
941
942/*
943 * Simple .show_options callback for filesystems which don't want to
944 * implement more complex mount option showing.
945 *
946 * See also save_mount_options().
947 */
Al Viro34c80b12011-12-08 21:32:45 -0500948int generic_show_options(struct seq_file *m, struct dentry *root)
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800949{
Al Viro2a32ceb2009-05-08 16:05:57 -0400950 const char *options;
951
952 rcu_read_lock();
Al Viro34c80b12011-12-08 21:32:45 -0500953 options = rcu_dereference(root->d_sb->s_options);
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800954
955 if (options != NULL && options[0]) {
956 seq_putc(m, ',');
957 mangle(m, options);
958 }
Al Viro2a32ceb2009-05-08 16:05:57 -0400959 rcu_read_unlock();
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800960
961 return 0;
962}
963EXPORT_SYMBOL(generic_show_options);
964
965/*
966 * If filesystem uses generic_show_options(), this function should be
967 * called from the fill_super() callback.
968 *
969 * The .remount_fs callback usually needs to be handled in a special
970 * way, to make sure, that previous options are not overwritten if the
971 * remount fails.
972 *
973 * Also note, that if the filesystem's .remount_fs function doesn't
974 * reset all options to their default value, but changes only newly
975 * given options, then the displayed options will not reflect reality
976 * any more.
977 */
978void save_mount_options(struct super_block *sb, char *options)
979{
Al Viro2a32ceb2009-05-08 16:05:57 -0400980 BUG_ON(sb->s_options);
981 rcu_assign_pointer(sb->s_options, kstrdup(options, GFP_KERNEL));
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800982}
983EXPORT_SYMBOL(save_mount_options);
984
Al Viro2a32ceb2009-05-08 16:05:57 -0400985void replace_mount_options(struct super_block *sb, char *options)
986{
987 char *old = sb->s_options;
988 rcu_assign_pointer(sb->s_options, options);
989 if (old) {
990 synchronize_rcu();
991 kfree(old);
992 }
993}
994EXPORT_SYMBOL(replace_mount_options);
995
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100996#ifdef CONFIG_PROC_FS
Al Viro0226f492011-12-06 12:21:54 -0500997/* iterator; we want it to have access to namespace_sem, thus here... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998static void *m_start(struct seq_file *m, loff_t *pos)
999{
Al Viro6ce6e242012-06-09 01:16:59 -04001000 struct proc_mounts *p = proc_mounts(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Ram Pai390c6842005-11-07 17:17:51 -05001002 down_read(&namespace_sem);
Miklos Szeredia1a2c402008-03-27 13:06:24 +01001003 return seq_list_start(&p->ns->list, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004}
1005
1006static void *m_next(struct seq_file *m, void *v, loff_t *pos)
1007{
Al Viro6ce6e242012-06-09 01:16:59 -04001008 struct proc_mounts *p = proc_mounts(m);
Pavel Emelianovb0765fb2007-07-15 23:39:55 -07001009
Miklos Szeredia1a2c402008-03-27 13:06:24 +01001010 return seq_list_next(v, &p->ns->list, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011}
1012
1013static void m_stop(struct seq_file *m, void *v)
1014{
Ram Pai390c6842005-11-07 17:17:51 -05001015 up_read(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016}
1017
Al Viro0226f492011-12-06 12:21:54 -05001018static int m_show(struct seq_file *m, void *v)
Al Viro9f5596a2010-02-05 00:40:25 -05001019{
Al Viro6ce6e242012-06-09 01:16:59 -04001020 struct proc_mounts *p = proc_mounts(m);
Al Viro1a4eeaf2011-11-25 02:19:55 -05001021 struct mount *r = list_entry(v, struct mount, mnt_list);
Al Viro0226f492011-12-06 12:21:54 -05001022 return p->show(m, &r->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023}
1024
Miklos Szeredia1a2c402008-03-27 13:06:24 +01001025const struct seq_operations mounts_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 .start = m_start,
1027 .next = m_next,
1028 .stop = m_stop,
Al Viro0226f492011-12-06 12:21:54 -05001029 .show = m_show,
Chuck Leverb4629fe2006-03-20 13:44:12 -05001030};
Miklos Szeredia1a2c402008-03-27 13:06:24 +01001031#endif /* CONFIG_PROC_FS */
Chuck Leverb4629fe2006-03-20 13:44:12 -05001032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033/**
1034 * may_umount_tree - check if a mount tree is busy
1035 * @mnt: root of mount tree
1036 *
1037 * This is called to check if a tree of mounts has any
1038 * open files, pwds, chroots or sub mounts that are
1039 * busy.
1040 */
Al Viro909b0a82011-11-25 03:06:56 -05001041int may_umount_tree(struct vfsmount *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042{
Al Viro909b0a82011-11-25 03:06:56 -05001043 struct mount *mnt = real_mount(m);
Ram Pai36341f62005-11-07 17:17:22 -05001044 int actual_refs = 0;
1045 int minimum_refs = 0;
Al Viro315fc832011-11-24 18:57:30 -05001046 struct mount *p;
Al Viro909b0a82011-11-25 03:06:56 -05001047 BUG_ON(!m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Nick Pigginb3e19d92011-01-07 17:50:11 +11001049 /* write lock needed for mnt_get_count */
Andi Kleen962830d2012-05-08 13:32:02 +09301050 br_write_lock(&vfsmount_lock);
Al Viro909b0a82011-11-25 03:06:56 -05001051 for (p = mnt; p; p = next_mnt(p, mnt)) {
Al Viro83adc752011-11-24 22:37:54 -05001052 actual_refs += mnt_get_count(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 minimum_refs += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 }
Andi Kleen962830d2012-05-08 13:32:02 +09301055 br_write_unlock(&vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
1057 if (actual_refs > minimum_refs)
Ian Kente3474a82006-03-27 01:14:51 -08001058 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Ian Kente3474a82006-03-27 01:14:51 -08001060 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061}
1062
1063EXPORT_SYMBOL(may_umount_tree);
1064
1065/**
1066 * may_umount - check if a mount point is busy
1067 * @mnt: root of mount
1068 *
1069 * This is called to check if a mount point has any
1070 * open files, pwds, chroots or sub mounts. If the
1071 * mount has sub mounts this will return busy
1072 * regardless of whether the sub mounts are busy.
1073 *
1074 * Doesn't take quota and stuff into account. IOW, in some cases it will
1075 * give false negatives. The main reason why it's here is that we need
1076 * a non-destructive way to look for easily umountable filesystems.
1077 */
1078int may_umount(struct vfsmount *mnt)
1079{
Ian Kente3474a82006-03-27 01:14:51 -08001080 int ret = 1;
Al Viro8ad08d82010-01-16 12:56:08 -05001081 down_read(&namespace_sem);
Andi Kleen962830d2012-05-08 13:32:02 +09301082 br_write_lock(&vfsmount_lock);
Al Viro1ab59732011-11-24 21:35:16 -05001083 if (propagate_mount_busy(real_mount(mnt), 2))
Ian Kente3474a82006-03-27 01:14:51 -08001084 ret = 0;
Andi Kleen962830d2012-05-08 13:32:02 +09301085 br_write_unlock(&vfsmount_lock);
Al Viro8ad08d82010-01-16 12:56:08 -05001086 up_read(&namespace_sem);
Ram Paia05964f2005-11-07 17:20:17 -05001087 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088}
1089
1090EXPORT_SYMBOL(may_umount);
1091
Ram Paib90fa9a2005-11-07 17:19:50 -05001092void release_mounts(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093{
Al Virod5e50f72011-11-24 20:58:57 -05001094 struct mount *mnt;
Miklos Szeredibf066c72006-01-08 01:03:19 -08001095 while (!list_empty(head)) {
Al Viro1b8e5562011-11-24 21:01:32 -05001096 mnt = list_first_entry(head, struct mount, mnt_hash);
1097 list_del_init(&mnt->mnt_hash);
Al Viro676da582011-11-24 21:47:05 -05001098 if (mnt_has_parent(mnt)) {
Ram Pai70fbcdf2005-11-07 17:17:04 -05001099 struct dentry *dentry;
Al Viro863d6842011-11-25 00:57:42 -05001100 struct mount *m;
Nick Piggin99b7db72010-08-18 04:37:39 +10001101
Andi Kleen962830d2012-05-08 13:32:02 +09301102 br_write_lock(&vfsmount_lock);
Al Viroa73324d2011-11-24 22:25:07 -05001103 dentry = mnt->mnt_mountpoint;
Al Viro863d6842011-11-25 00:57:42 -05001104 m = mnt->mnt_parent;
Al Viroa73324d2011-11-24 22:25:07 -05001105 mnt->mnt_mountpoint = mnt->mnt.mnt_root;
Al Viro0714a532011-11-24 22:19:58 -05001106 mnt->mnt_parent = mnt;
Al Viro7c4b93d2008-03-21 23:59:49 -04001107 m->mnt_ghosts--;
Andi Kleen962830d2012-05-08 13:32:02 +09301108 br_write_unlock(&vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001109 dput(dentry);
Al Viro863d6842011-11-25 00:57:42 -05001110 mntput(&m->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 }
Al Virod5e50f72011-11-24 20:58:57 -05001112 mntput(&mnt->mnt);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001113 }
1114}
1115
Nick Piggin99b7db72010-08-18 04:37:39 +10001116/*
1117 * vfsmount lock must be held for write
1118 * namespace_sem must be held for write
1119 */
Al Viro761d5c32011-11-24 21:07:43 -05001120void umount_tree(struct mount *mnt, int propagate, struct list_head *kill)
Ram Pai70fbcdf2005-11-07 17:17:04 -05001121{
Al Viro7b8a53f2011-01-15 20:08:44 -05001122 LIST_HEAD(tmp_list);
Al Viro315fc832011-11-24 18:57:30 -05001123 struct mount *p;
Ram Pai70fbcdf2005-11-07 17:17:04 -05001124
Al Viro909b0a82011-11-25 03:06:56 -05001125 for (p = mnt; p; p = next_mnt(p, mnt))
Al Viro1b8e5562011-11-24 21:01:32 -05001126 list_move(&p->mnt_hash, &tmp_list);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001127
Ram Paia05964f2005-11-07 17:20:17 -05001128 if (propagate)
Al Viro7b8a53f2011-01-15 20:08:44 -05001129 propagate_umount(&tmp_list);
Ram Paia05964f2005-11-07 17:20:17 -05001130
Al Viro1b8e5562011-11-24 21:01:32 -05001131 list_for_each_entry(p, &tmp_list, mnt_hash) {
Al Viro6776db3d2011-11-25 00:22:05 -05001132 list_del_init(&p->mnt_expire);
Al Viro1a4eeaf2011-11-25 02:19:55 -05001133 list_del_init(&p->mnt_list);
Al Viro143c8c92011-11-25 00:46:35 -05001134 __touch_mnt_namespace(p->mnt_ns);
1135 p->mnt_ns = NULL;
Al Viro6b41d532011-11-24 23:24:33 -05001136 list_del_init(&p->mnt_child);
Al Viro676da582011-11-24 21:47:05 -05001137 if (mnt_has_parent(p)) {
Al Viro863d6842011-11-25 00:57:42 -05001138 p->mnt_parent->mnt_ghosts++;
Al Viroa73324d2011-11-24 22:25:07 -05001139 dentry_reset_mounted(p->mnt_mountpoint);
Al Viro7c4b93d2008-03-21 23:59:49 -04001140 }
Al Viro0f0afb12011-11-24 20:43:10 -05001141 change_mnt_propagation(p, MS_PRIVATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 }
Al Viro7b8a53f2011-01-15 20:08:44 -05001143 list_splice(&tmp_list, kill);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144}
1145
Al Viro692afc32011-11-24 21:15:14 -05001146static void shrink_submounts(struct mount *mnt, struct list_head *umounts);
Al Viroc35038b2008-03-22 00:46:23 -04001147
Al Viro1ab59732011-11-24 21:35:16 -05001148static int do_umount(struct mount *mnt, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149{
Al Viro1ab59732011-11-24 21:35:16 -05001150 struct super_block *sb = mnt->mnt.mnt_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 int retval;
Ram Pai70fbcdf2005-11-07 17:17:04 -05001152 LIST_HEAD(umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Al Viro1ab59732011-11-24 21:35:16 -05001154 retval = security_sb_umount(&mnt->mnt, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 if (retval)
1156 return retval;
1157
1158 /*
1159 * Allow userspace to request a mountpoint be expired rather than
1160 * unmounting unconditionally. Unmount only happens if:
1161 * (1) the mark is already set (the mark is cleared by mntput())
1162 * (2) the usage count == 1 [parent vfsmount] + 1 [sys_umount]
1163 */
1164 if (flags & MNT_EXPIRE) {
Al Viro1ab59732011-11-24 21:35:16 -05001165 if (&mnt->mnt == current->fs->root.mnt ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 flags & (MNT_FORCE | MNT_DETACH))
1167 return -EINVAL;
1168
Nick Pigginb3e19d92011-01-07 17:50:11 +11001169 /*
1170 * probably don't strictly need the lock here if we examined
1171 * all race cases, but it's a slowpath.
1172 */
Andi Kleen962830d2012-05-08 13:32:02 +09301173 br_write_lock(&vfsmount_lock);
Al Viro83adc752011-11-24 22:37:54 -05001174 if (mnt_get_count(mnt) != 2) {
Andi Kleen962830d2012-05-08 13:32:02 +09301175 br_write_unlock(&vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 return -EBUSY;
Nick Pigginb3e19d92011-01-07 17:50:11 +11001177 }
Andi Kleen962830d2012-05-08 13:32:02 +09301178 br_write_unlock(&vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Al Viro863d6842011-11-25 00:57:42 -05001180 if (!xchg(&mnt->mnt_expiry_mark, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 return -EAGAIN;
1182 }
1183
1184 /*
1185 * If we may have to abort operations to get out of this
1186 * mount, and they will themselves hold resources we must
1187 * allow the fs to do things. In the Unix tradition of
1188 * 'Gee thats tricky lets do it in userspace' the umount_begin
1189 * might fail to complete on the first run through as other tasks
1190 * must return, and the like. Thats for the mount program to worry
1191 * about for the moment.
1192 */
1193
Al Viro42faad92008-04-24 07:21:56 -04001194 if (flags & MNT_FORCE && sb->s_op->umount_begin) {
Al Viro42faad92008-04-24 07:21:56 -04001195 sb->s_op->umount_begin(sb);
Al Viro42faad92008-04-24 07:21:56 -04001196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
1198 /*
1199 * No sense to grab the lock for this test, but test itself looks
1200 * somewhat bogus. Suggestions for better replacement?
1201 * Ho-hum... In principle, we might treat that as umount + switch
1202 * to rootfs. GC would eventually take care of the old vfsmount.
1203 * Actually it makes sense, especially if rootfs would contain a
1204 * /reboot - static binary that would close all descriptors and
1205 * call reboot(9). Then init(8) could umount root and exec /reboot.
1206 */
Al Viro1ab59732011-11-24 21:35:16 -05001207 if (&mnt->mnt == current->fs->root.mnt && !(flags & MNT_DETACH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 /*
1209 * Special case for "unmounting" root ...
1210 * we just try to remount it readonly.
1211 */
1212 down_write(&sb->s_umount);
Al Viro4aa98cf2009-05-08 13:36:58 -04001213 if (!(sb->s_flags & MS_RDONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 retval = do_remount_sb(sb, MS_RDONLY, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 up_write(&sb->s_umount);
1216 return retval;
1217 }
1218
Ram Pai390c6842005-11-07 17:17:51 -05001219 down_write(&namespace_sem);
Andi Kleen962830d2012-05-08 13:32:02 +09301220 br_write_lock(&vfsmount_lock);
Al Viro5addc5d2005-11-07 17:15:49 -05001221 event++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Al Viroc35038b2008-03-22 00:46:23 -04001223 if (!(flags & MNT_DETACH))
Al Viro1ab59732011-11-24 21:35:16 -05001224 shrink_submounts(mnt, &umount_list);
Al Viroc35038b2008-03-22 00:46:23 -04001225
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 retval = -EBUSY;
Ram Paia05964f2005-11-07 17:20:17 -05001227 if (flags & MNT_DETACH || !propagate_mount_busy(mnt, 2)) {
Al Viro1a4eeaf2011-11-25 02:19:55 -05001228 if (!list_empty(&mnt->mnt_list))
Al Viro1ab59732011-11-24 21:35:16 -05001229 umount_tree(mnt, 1, &umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 retval = 0;
1231 }
Andi Kleen962830d2012-05-08 13:32:02 +09301232 br_write_unlock(&vfsmount_lock);
Ram Pai390c6842005-11-07 17:17:51 -05001233 up_write(&namespace_sem);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001234 release_mounts(&umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 return retval;
1236}
1237
1238/*
1239 * Now umount can handle mount points as well as block devices.
1240 * This is important for filesystems which use unnamed block devices.
1241 *
1242 * We now support a flag for forced unmount like the other 'big iron'
1243 * unixes. Our API is identical to OSF/1 to avoid making a mess of AMD
1244 */
1245
Heiko Carstensbdc480e2009-01-14 14:14:12 +01001246SYSCALL_DEFINE2(umount, char __user *, name, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
Al Viro2d8f3032008-07-22 09:59:21 -04001248 struct path path;
Al Viro900148d2011-11-25 00:33:11 -05001249 struct mount *mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 int retval;
Miklos Szeredidb1f05b2010-02-10 12:15:53 +01001251 int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Miklos Szeredidb1f05b2010-02-10 12:15:53 +01001253 if (flags & ~(MNT_FORCE | MNT_DETACH | MNT_EXPIRE | UMOUNT_NOFOLLOW))
1254 return -EINVAL;
1255
1256 if (!(flags & UMOUNT_NOFOLLOW))
1257 lookup_flags |= LOOKUP_FOLLOW;
1258
1259 retval = user_path_at(AT_FDCWD, name, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 if (retval)
1261 goto out;
Al Viro900148d2011-11-25 00:33:11 -05001262 mnt = real_mount(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 retval = -EINVAL;
Al Viro2d8f3032008-07-22 09:59:21 -04001264 if (path.dentry != path.mnt->mnt_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 goto dput_and_out;
Al Viro143c8c92011-11-25 00:46:35 -05001266 if (!check_mnt(mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 goto dput_and_out;
1268
1269 retval = -EPERM;
1270 if (!capable(CAP_SYS_ADMIN))
1271 goto dput_and_out;
1272
Al Viro900148d2011-11-25 00:33:11 -05001273 retval = do_umount(mnt, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274dput_and_out:
Jan Blunck429731b2008-02-14 19:34:31 -08001275 /* we mustn't call path_put() as that would clear mnt_expiry_mark */
Al Viro2d8f3032008-07-22 09:59:21 -04001276 dput(path.dentry);
Al Viro900148d2011-11-25 00:33:11 -05001277 mntput_no_expire(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278out:
1279 return retval;
1280}
1281
1282#ifdef __ARCH_WANT_SYS_OLDUMOUNT
1283
1284/*
Ram Paib58fed82005-11-07 17:16:09 -05001285 * The 2.0 compatible umount. No flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 */
Heiko Carstensbdc480e2009-01-14 14:14:12 +01001287SYSCALL_DEFINE1(oldumount, char __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288{
Ram Paib58fed82005-11-07 17:16:09 -05001289 return sys_umount(name, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290}
1291
1292#endif
1293
Al Viro2d92ab32008-08-02 00:51:11 -04001294static int mount_is_safe(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295{
1296 if (capable(CAP_SYS_ADMIN))
1297 return 0;
1298 return -EPERM;
1299#ifdef notyet
Al Viro2d92ab32008-08-02 00:51:11 -04001300 if (S_ISLNK(path->dentry->d_inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 return -EPERM;
Al Viro2d92ab32008-08-02 00:51:11 -04001302 if (path->dentry->d_inode->i_mode & S_ISVTX) {
David Howellsda9592e2008-11-14 10:39:05 +11001303 if (current_uid() != path->dentry->d_inode->i_uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 return -EPERM;
1305 }
Al Viro2d92ab32008-08-02 00:51:11 -04001306 if (inode_permission(path->dentry->d_inode, MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 return -EPERM;
1308 return 0;
1309#endif
1310}
1311
Eric W. Biederman8823c072010-03-07 18:49:36 -08001312static bool mnt_ns_loop(struct path *path)
1313{
1314 /* Could bind mounting the mount namespace inode cause a
1315 * mount namespace loop?
1316 */
1317 struct inode *inode = path->dentry->d_inode;
1318 struct proc_inode *ei;
1319 struct mnt_namespace *mnt_ns;
1320
1321 if (!proc_ns_inode(inode))
1322 return false;
1323
1324 ei = PROC_I(inode);
1325 if (ei->ns_ops != &mntns_operations)
1326 return false;
1327
1328 mnt_ns = ei->ns;
1329 return current->nsproxy->mnt_ns->seq >= mnt_ns->seq;
1330}
1331
Al Viro87129cc2011-11-24 21:24:27 -05001332struct mount *copy_tree(struct mount *mnt, struct dentry *dentry,
Ram Pai36341f62005-11-07 17:17:22 -05001333 int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
Al Viroa73324d2011-11-24 22:25:07 -05001335 struct mount *res, *p, *q, *r;
Al Viro1a390682008-03-21 20:48:19 -04001336 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Al Virofc7be132011-11-25 01:05:37 -05001338 if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(mnt))
David Howellsbe34d1a2012-06-25 12:55:18 +01001339 return ERR_PTR(-EINVAL);
Ram Pai9676f0c2005-11-07 17:21:20 -05001340
Ram Pai36341f62005-11-07 17:17:22 -05001341 res = q = clone_mnt(mnt, dentry, flag);
David Howellsbe34d1a2012-06-25 12:55:18 +01001342 if (IS_ERR(q))
1343 return q;
1344
Al Viroa73324d2011-11-24 22:25:07 -05001345 q->mnt_mountpoint = mnt->mnt_mountpoint;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 p = mnt;
Al Viro6b41d532011-11-24 23:24:33 -05001348 list_for_each_entry(r, &mnt->mnt_mounts, mnt_child) {
Al Viro315fc832011-11-24 18:57:30 -05001349 struct mount *s;
Jan Blunck7ec02ef2008-04-29 00:59:40 -07001350 if (!is_subdir(r->mnt_mountpoint, dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 continue;
1352
Al Viro909b0a82011-11-25 03:06:56 -05001353 for (s = r; s; s = next_mnt(s, r)) {
Al Virofc7be132011-11-25 01:05:37 -05001354 if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(s)) {
Ram Pai9676f0c2005-11-07 17:21:20 -05001355 s = skip_mnt_tree(s);
1356 continue;
1357 }
Al Viro0714a532011-11-24 22:19:58 -05001358 while (p != s->mnt_parent) {
1359 p = p->mnt_parent;
1360 q = q->mnt_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 }
Al Viro87129cc2011-11-24 21:24:27 -05001362 p = s;
Al Virocb338d02011-11-24 20:55:08 -05001363 path.mnt = &q->mnt;
Al Viroa73324d2011-11-24 22:25:07 -05001364 path.dentry = p->mnt_mountpoint;
Al Viro87129cc2011-11-24 21:24:27 -05001365 q = clone_mnt(p, p->mnt.mnt_root, flag);
David Howellsbe34d1a2012-06-25 12:55:18 +01001366 if (IS_ERR(q))
1367 goto out;
Andi Kleen962830d2012-05-08 13:32:02 +09301368 br_write_lock(&vfsmount_lock);
Al Viro1a4eeaf2011-11-25 02:19:55 -05001369 list_add_tail(&q->mnt_list, &res->mnt_list);
Al Virocb338d02011-11-24 20:55:08 -05001370 attach_mnt(q, &path);
Andi Kleen962830d2012-05-08 13:32:02 +09301371 br_write_unlock(&vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 }
1373 }
1374 return res;
David Howellsbe34d1a2012-06-25 12:55:18 +01001375out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 if (res) {
Ram Pai70fbcdf2005-11-07 17:17:04 -05001377 LIST_HEAD(umount_list);
Andi Kleen962830d2012-05-08 13:32:02 +09301378 br_write_lock(&vfsmount_lock);
Al Viro761d5c32011-11-24 21:07:43 -05001379 umount_tree(res, 0, &umount_list);
Andi Kleen962830d2012-05-08 13:32:02 +09301380 br_write_unlock(&vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001381 release_mounts(&umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 }
David Howellsbe34d1a2012-06-25 12:55:18 +01001383 return q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384}
1385
David Howellsbe34d1a2012-06-25 12:55:18 +01001386/* Caller should check returned pointer for errors */
1387
Al Viro589ff872009-04-18 03:28:19 -04001388struct vfsmount *collect_mounts(struct path *path)
Al Viro8aec0802007-06-07 12:20:32 -04001389{
Al Virocb338d02011-11-24 20:55:08 -05001390 struct mount *tree;
Al Viro1a60a282008-03-22 16:19:49 -04001391 down_write(&namespace_sem);
Al Viro87129cc2011-11-24 21:24:27 -05001392 tree = copy_tree(real_mount(path->mnt), path->dentry,
1393 CL_COPY_ALL | CL_PRIVATE);
Al Viro1a60a282008-03-22 16:19:49 -04001394 up_write(&namespace_sem);
David Howellsbe34d1a2012-06-25 12:55:18 +01001395 if (IS_ERR(tree))
1396 return NULL;
1397 return &tree->mnt;
Al Viro8aec0802007-06-07 12:20:32 -04001398}
1399
1400void drop_collected_mounts(struct vfsmount *mnt)
1401{
1402 LIST_HEAD(umount_list);
Al Viro1a60a282008-03-22 16:19:49 -04001403 down_write(&namespace_sem);
Andi Kleen962830d2012-05-08 13:32:02 +09301404 br_write_lock(&vfsmount_lock);
Al Viro761d5c32011-11-24 21:07:43 -05001405 umount_tree(real_mount(mnt), 0, &umount_list);
Andi Kleen962830d2012-05-08 13:32:02 +09301406 br_write_unlock(&vfsmount_lock);
Al Viro1a60a282008-03-22 16:19:49 -04001407 up_write(&namespace_sem);
Al Viro8aec0802007-06-07 12:20:32 -04001408 release_mounts(&umount_list);
1409}
1410
Al Viro1f707132010-01-30 22:51:25 -05001411int iterate_mounts(int (*f)(struct vfsmount *, void *), void *arg,
1412 struct vfsmount *root)
1413{
Al Viro1a4eeaf2011-11-25 02:19:55 -05001414 struct mount *mnt;
Al Viro1f707132010-01-30 22:51:25 -05001415 int res = f(root, arg);
1416 if (res)
1417 return res;
Al Viro1a4eeaf2011-11-25 02:19:55 -05001418 list_for_each_entry(mnt, &real_mount(root)->mnt_list, mnt_list) {
1419 res = f(&mnt->mnt, arg);
Al Viro1f707132010-01-30 22:51:25 -05001420 if (res)
1421 return res;
1422 }
1423 return 0;
1424}
1425
Al Viro4b8b21f2011-11-24 19:54:23 -05001426static void cleanup_group_ids(struct mount *mnt, struct mount *end)
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001427{
Al Viro315fc832011-11-24 18:57:30 -05001428 struct mount *p;
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001429
Al Viro909b0a82011-11-25 03:06:56 -05001430 for (p = mnt; p != end; p = next_mnt(p, mnt)) {
Al Virofc7be132011-11-25 01:05:37 -05001431 if (p->mnt_group_id && !IS_MNT_SHARED(p))
Al Viro4b8b21f2011-11-24 19:54:23 -05001432 mnt_release_group_id(p);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001433 }
1434}
1435
Al Viro4b8b21f2011-11-24 19:54:23 -05001436static int invent_group_ids(struct mount *mnt, bool recurse)
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001437{
Al Viro315fc832011-11-24 18:57:30 -05001438 struct mount *p;
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001439
Al Viro909b0a82011-11-25 03:06:56 -05001440 for (p = mnt; p; p = recurse ? next_mnt(p, mnt) : NULL) {
Al Virofc7be132011-11-25 01:05:37 -05001441 if (!p->mnt_group_id && !IS_MNT_SHARED(p)) {
Al Viro4b8b21f2011-11-24 19:54:23 -05001442 int err = mnt_alloc_group_id(p);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001443 if (err) {
Al Viro4b8b21f2011-11-24 19:54:23 -05001444 cleanup_group_ids(mnt, p);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001445 return err;
1446 }
1447 }
1448 }
1449
1450 return 0;
1451}
1452
Ram Paib90fa9a2005-11-07 17:19:50 -05001453/*
1454 * @source_mnt : mount tree to be attached
Ram Pai21444402005-11-07 17:20:03 -05001455 * @nd : place the mount tree @source_mnt is attached
1456 * @parent_nd : if non-null, detach the source_mnt from its parent and
1457 * store the parent mount and mountpoint dentry.
1458 * (done when source_mnt is moved)
Ram Paib90fa9a2005-11-07 17:19:50 -05001459 *
1460 * NOTE: in the table below explains the semantics when a source mount
1461 * of a given type is attached to a destination mount of a given type.
Ram Pai9676f0c2005-11-07 17:21:20 -05001462 * ---------------------------------------------------------------------------
1463 * | BIND MOUNT OPERATION |
1464 * |**************************************************************************
1465 * | source-->| shared | private | slave | unbindable |
1466 * | dest | | | | |
1467 * | | | | | | |
1468 * | v | | | | |
1469 * |**************************************************************************
1470 * | shared | shared (++) | shared (+) | shared(+++)| invalid |
1471 * | | | | | |
1472 * |non-shared| shared (+) | private | slave (*) | invalid |
1473 * ***************************************************************************
Ram Paib90fa9a2005-11-07 17:19:50 -05001474 * A bind operation clones the source mount and mounts the clone on the
1475 * destination mount.
1476 *
1477 * (++) the cloned mount is propagated to all the mounts in the propagation
1478 * tree of the destination mount and the cloned mount is added to
1479 * the peer group of the source mount.
1480 * (+) the cloned mount is created under the destination mount and is marked
1481 * as shared. The cloned mount is added to the peer group of the source
1482 * mount.
Ram Pai5afe0022005-11-07 17:21:01 -05001483 * (+++) the mount is propagated to all the mounts in the propagation tree
1484 * of the destination mount and the cloned mount is made slave
1485 * of the same master as that of the source mount. The cloned mount
1486 * is marked as 'shared and slave'.
1487 * (*) the cloned mount is made a slave of the same master as that of the
1488 * source mount.
1489 *
Ram Pai9676f0c2005-11-07 17:21:20 -05001490 * ---------------------------------------------------------------------------
1491 * | MOVE MOUNT OPERATION |
1492 * |**************************************************************************
1493 * | source-->| shared | private | slave | unbindable |
1494 * | dest | | | | |
1495 * | | | | | | |
1496 * | v | | | | |
1497 * |**************************************************************************
1498 * | shared | shared (+) | shared (+) | shared(+++) | invalid |
1499 * | | | | | |
1500 * |non-shared| shared (+*) | private | slave (*) | unbindable |
1501 * ***************************************************************************
Ram Pai5afe0022005-11-07 17:21:01 -05001502 *
1503 * (+) the mount is moved to the destination. And is then propagated to
1504 * all the mounts in the propagation tree of the destination mount.
Ram Pai21444402005-11-07 17:20:03 -05001505 * (+*) the mount is moved to the destination.
Ram Pai5afe0022005-11-07 17:21:01 -05001506 * (+++) the mount is moved to the destination and is then propagated to
1507 * all the mounts belonging to the destination mount's propagation tree.
1508 * the mount is marked as 'shared and slave'.
1509 * (*) the mount continues to be a slave at the new location.
Ram Paib90fa9a2005-11-07 17:19:50 -05001510 *
1511 * if the source mount is a tree, the operations explained above is
1512 * applied to each mount in the tree.
1513 * Must be called without spinlocks held, since this function can sleep
1514 * in allocations.
1515 */
Al Viro0fb54e52011-11-24 19:59:16 -05001516static int attach_recursive_mnt(struct mount *source_mnt,
Al Viro1a390682008-03-21 20:48:19 -04001517 struct path *path, struct path *parent_path)
Ram Paib90fa9a2005-11-07 17:19:50 -05001518{
1519 LIST_HEAD(tree_list);
Al Viroa8d56d82011-11-24 23:59:29 -05001520 struct mount *dest_mnt = real_mount(path->mnt);
Al Viro1a390682008-03-21 20:48:19 -04001521 struct dentry *dest_dentry = path->dentry;
Al Viro315fc832011-11-24 18:57:30 -05001522 struct mount *child, *p;
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001523 int err;
Ram Paib90fa9a2005-11-07 17:19:50 -05001524
Al Virofc7be132011-11-25 01:05:37 -05001525 if (IS_MNT_SHARED(dest_mnt)) {
Al Viro0fb54e52011-11-24 19:59:16 -05001526 err = invent_group_ids(source_mnt, true);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001527 if (err)
1528 goto out;
1529 }
Al Viroa8d56d82011-11-24 23:59:29 -05001530 err = propagate_mnt(dest_mnt, dest_dentry, source_mnt, &tree_list);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001531 if (err)
1532 goto out_cleanup_ids;
Ram Paib90fa9a2005-11-07 17:19:50 -05001533
Andi Kleen962830d2012-05-08 13:32:02 +09301534 br_write_lock(&vfsmount_lock);
Al Virodf1a1ad2010-01-16 12:57:40 -05001535
Al Virofc7be132011-11-25 01:05:37 -05001536 if (IS_MNT_SHARED(dest_mnt)) {
Al Viro909b0a82011-11-25 03:06:56 -05001537 for (p = source_mnt; p; p = next_mnt(p, source_mnt))
Al Viro0f0afb12011-11-24 20:43:10 -05001538 set_mnt_shared(p);
Ram Paib90fa9a2005-11-07 17:19:50 -05001539 }
Al Viro1a390682008-03-21 20:48:19 -04001540 if (parent_path) {
Al Viro0fb54e52011-11-24 19:59:16 -05001541 detach_mnt(source_mnt, parent_path);
1542 attach_mnt(source_mnt, path);
Al Viro143c8c92011-11-25 00:46:35 -05001543 touch_mnt_namespace(source_mnt->mnt_ns);
Ram Pai21444402005-11-07 17:20:03 -05001544 } else {
Al Viro14cf1fa2011-11-25 00:01:17 -05001545 mnt_set_mountpoint(dest_mnt, dest_dentry, source_mnt);
Al Viro0fb54e52011-11-24 19:59:16 -05001546 commit_tree(source_mnt);
Ram Pai21444402005-11-07 17:20:03 -05001547 }
Ram Paib90fa9a2005-11-07 17:19:50 -05001548
Al Viro1b8e5562011-11-24 21:01:32 -05001549 list_for_each_entry_safe(child, p, &tree_list, mnt_hash) {
1550 list_del_init(&child->mnt_hash);
Al Viro4b2619a2011-11-24 19:47:15 -05001551 commit_tree(child);
Ram Paib90fa9a2005-11-07 17:19:50 -05001552 }
Andi Kleen962830d2012-05-08 13:32:02 +09301553 br_write_unlock(&vfsmount_lock);
Nick Piggin99b7db72010-08-18 04:37:39 +10001554
Ram Paib90fa9a2005-11-07 17:19:50 -05001555 return 0;
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001556
1557 out_cleanup_ids:
Al Virofc7be132011-11-25 01:05:37 -05001558 if (IS_MNT_SHARED(dest_mnt))
Al Viro0fb54e52011-11-24 19:59:16 -05001559 cleanup_group_ids(source_mnt, NULL);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001560 out:
1561 return err;
Ram Paib90fa9a2005-11-07 17:19:50 -05001562}
1563
Al Virob12cea92011-03-18 08:55:38 -04001564static int lock_mount(struct path *path)
1565{
1566 struct vfsmount *mnt;
1567retry:
1568 mutex_lock(&path->dentry->d_inode->i_mutex);
1569 if (unlikely(cant_mount(path->dentry))) {
1570 mutex_unlock(&path->dentry->d_inode->i_mutex);
1571 return -ENOENT;
1572 }
1573 down_write(&namespace_sem);
1574 mnt = lookup_mnt(path);
1575 if (likely(!mnt))
1576 return 0;
1577 up_write(&namespace_sem);
1578 mutex_unlock(&path->dentry->d_inode->i_mutex);
1579 path_put(path);
1580 path->mnt = mnt;
1581 path->dentry = dget(mnt->mnt_root);
1582 goto retry;
1583}
1584
1585static void unlock_mount(struct path *path)
1586{
1587 up_write(&namespace_sem);
1588 mutex_unlock(&path->dentry->d_inode->i_mutex);
1589}
1590
Al Viro95bc5f22011-11-25 00:30:56 -05001591static int graft_tree(struct mount *mnt, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
Al Viro95bc5f22011-11-25 00:30:56 -05001593 if (mnt->mnt.mnt_sb->s_flags & MS_NOUSER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 return -EINVAL;
1595
Al Viro8c3ee422008-03-22 18:00:39 -04001596 if (S_ISDIR(path->dentry->d_inode->i_mode) !=
Al Viro95bc5f22011-11-25 00:30:56 -05001597 S_ISDIR(mnt->mnt.mnt_root->d_inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 return -ENOTDIR;
1599
Al Virob12cea92011-03-18 08:55:38 -04001600 if (d_unlinked(path->dentry))
1601 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Al Viro95bc5f22011-11-25 00:30:56 -05001603 return attach_recursive_mnt(mnt, path, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604}
1605
1606/*
Valerie Aurora7a2e8a82010-08-26 11:07:22 -07001607 * Sanity check the flags to change_mnt_propagation.
1608 */
1609
1610static int flags_to_propagation_type(int flags)
1611{
Roman Borisov7c6e9842011-05-25 16:26:48 -07001612 int type = flags & ~(MS_REC | MS_SILENT);
Valerie Aurora7a2e8a82010-08-26 11:07:22 -07001613
1614 /* Fail if any non-propagation flags are set */
1615 if (type & ~(MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
1616 return 0;
1617 /* Only one propagation flag should be set */
1618 if (!is_power_of_2(type))
1619 return 0;
1620 return type;
1621}
1622
1623/*
Ram Pai07b20882005-11-07 17:19:07 -05001624 * recursively change the type of the mountpoint.
1625 */
Al Viro0a0d8a42008-08-02 00:55:27 -04001626static int do_change_type(struct path *path, int flag)
Ram Pai07b20882005-11-07 17:19:07 -05001627{
Al Viro315fc832011-11-24 18:57:30 -05001628 struct mount *m;
Al Viro4b8b21f2011-11-24 19:54:23 -05001629 struct mount *mnt = real_mount(path->mnt);
Ram Pai07b20882005-11-07 17:19:07 -05001630 int recurse = flag & MS_REC;
Valerie Aurora7a2e8a82010-08-26 11:07:22 -07001631 int type;
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001632 int err = 0;
Ram Pai07b20882005-11-07 17:19:07 -05001633
Miklos Szerediee6f9582007-05-08 00:30:40 -07001634 if (!capable(CAP_SYS_ADMIN))
1635 return -EPERM;
1636
Al Viro2d92ab32008-08-02 00:51:11 -04001637 if (path->dentry != path->mnt->mnt_root)
Ram Pai07b20882005-11-07 17:19:07 -05001638 return -EINVAL;
1639
Valerie Aurora7a2e8a82010-08-26 11:07:22 -07001640 type = flags_to_propagation_type(flag);
1641 if (!type)
1642 return -EINVAL;
1643
Ram Pai07b20882005-11-07 17:19:07 -05001644 down_write(&namespace_sem);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001645 if (type == MS_SHARED) {
1646 err = invent_group_ids(mnt, recurse);
1647 if (err)
1648 goto out_unlock;
1649 }
1650
Andi Kleen962830d2012-05-08 13:32:02 +09301651 br_write_lock(&vfsmount_lock);
Al Viro909b0a82011-11-25 03:06:56 -05001652 for (m = mnt; m; m = (recurse ? next_mnt(m, mnt) : NULL))
Al Viro0f0afb12011-11-24 20:43:10 -05001653 change_mnt_propagation(m, type);
Andi Kleen962830d2012-05-08 13:32:02 +09301654 br_write_unlock(&vfsmount_lock);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001655
1656 out_unlock:
Ram Pai07b20882005-11-07 17:19:07 -05001657 up_write(&namespace_sem);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001658 return err;
Ram Pai07b20882005-11-07 17:19:07 -05001659}
1660
1661/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 * do loopback mount.
1663 */
Al Viro808d4e32012-10-11 11:42:01 -04001664static int do_loopback(struct path *path, const char *old_name,
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001665 int recurse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666{
Al Virob12cea92011-03-18 08:55:38 -04001667 LIST_HEAD(umount_list);
Al Viro2d92ab32008-08-02 00:51:11 -04001668 struct path old_path;
Al Viro87129cc2011-11-24 21:24:27 -05001669 struct mount *mnt = NULL, *old;
Al Viro2d92ab32008-08-02 00:51:11 -04001670 int err = mount_is_safe(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 if (err)
1672 return err;
1673 if (!old_name || !*old_name)
1674 return -EINVAL;
Trond Myklebust815d4052011-09-26 20:36:09 -04001675 err = kern_path(old_name, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 if (err)
1677 return err;
1678
Eric W. Biederman8823c072010-03-07 18:49:36 -08001679 err = -EINVAL;
1680 if (mnt_ns_loop(&old_path))
1681 goto out;
1682
Al Virob12cea92011-03-18 08:55:38 -04001683 err = lock_mount(path);
1684 if (err)
Jan Blunck4ac91372008-02-14 19:34:32 -08001685 goto out;
Ram Pai9676f0c2005-11-07 17:21:20 -05001686
Al Viro87129cc2011-11-24 21:24:27 -05001687 old = real_mount(old_path.mnt);
1688
Al Virob12cea92011-03-18 08:55:38 -04001689 err = -EINVAL;
Al Virofc7be132011-11-25 01:05:37 -05001690 if (IS_MNT_UNBINDABLE(old))
Al Virob12cea92011-03-18 08:55:38 -04001691 goto out2;
1692
Al Viro143c8c92011-11-25 00:46:35 -05001693 if (!check_mnt(real_mount(path->mnt)) || !check_mnt(old))
Al Virob12cea92011-03-18 08:55:38 -04001694 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Al Viroccd48bc2005-11-07 17:15:04 -05001696 if (recurse)
Al Viro87129cc2011-11-24 21:24:27 -05001697 mnt = copy_tree(old, old_path.dentry, 0);
Al Viroccd48bc2005-11-07 17:15:04 -05001698 else
Al Viro87129cc2011-11-24 21:24:27 -05001699 mnt = clone_mnt(old, old_path.dentry, 0);
Al Viroccd48bc2005-11-07 17:15:04 -05001700
David Howellsbe34d1a2012-06-25 12:55:18 +01001701 if (IS_ERR(mnt)) {
1702 err = PTR_ERR(mnt);
1703 goto out;
1704 }
Al Viroccd48bc2005-11-07 17:15:04 -05001705
Al Viro95bc5f22011-11-25 00:30:56 -05001706 err = graft_tree(mnt, path);
Al Viroccd48bc2005-11-07 17:15:04 -05001707 if (err) {
Andi Kleen962830d2012-05-08 13:32:02 +09301708 br_write_lock(&vfsmount_lock);
Al Viro761d5c32011-11-24 21:07:43 -05001709 umount_tree(mnt, 0, &umount_list);
Andi Kleen962830d2012-05-08 13:32:02 +09301710 br_write_unlock(&vfsmount_lock);
Ram Pai5b83d2c5c2005-11-07 17:16:29 -05001711 }
Al Virob12cea92011-03-18 08:55:38 -04001712out2:
1713 unlock_mount(path);
1714 release_mounts(&umount_list);
Al Viroccd48bc2005-11-07 17:15:04 -05001715out:
Al Viro2d92ab32008-08-02 00:51:11 -04001716 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 return err;
1718}
1719
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08001720static int change_mount_flags(struct vfsmount *mnt, int ms_flags)
1721{
1722 int error = 0;
1723 int readonly_request = 0;
1724
1725 if (ms_flags & MS_RDONLY)
1726 readonly_request = 1;
1727 if (readonly_request == __mnt_is_readonly(mnt))
1728 return 0;
1729
1730 if (readonly_request)
Al Viro83adc752011-11-24 22:37:54 -05001731 error = mnt_make_readonly(real_mount(mnt));
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08001732 else
Al Viro83adc752011-11-24 22:37:54 -05001733 __mnt_unmake_readonly(real_mount(mnt));
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08001734 return error;
1735}
1736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737/*
1738 * change filesystem flags. dir should be a physical root of filesystem.
1739 * If you've mounted a non-root directory somewhere and want to do remount
1740 * on it - tough luck.
1741 */
Al Viro0a0d8a42008-08-02 00:55:27 -04001742static int do_remount(struct path *path, int flags, int mnt_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 void *data)
1744{
1745 int err;
Al Viro2d92ab32008-08-02 00:51:11 -04001746 struct super_block *sb = path->mnt->mnt_sb;
Al Viro143c8c92011-11-25 00:46:35 -05001747 struct mount *mnt = real_mount(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
1749 if (!capable(CAP_SYS_ADMIN))
1750 return -EPERM;
1751
Al Viro143c8c92011-11-25 00:46:35 -05001752 if (!check_mnt(mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 return -EINVAL;
1754
Al Viro2d92ab32008-08-02 00:51:11 -04001755 if (path->dentry != path->mnt->mnt_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 return -EINVAL;
1757
Eric Parisff36fe22011-03-03 16:09:14 -05001758 err = security_sb_remount(sb, data);
1759 if (err)
1760 return err;
1761
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 down_write(&sb->s_umount);
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08001763 if (flags & MS_BIND)
Al Viro2d92ab32008-08-02 00:51:11 -04001764 err = change_mount_flags(path->mnt, flags);
Al Viro4aa98cf2009-05-08 13:36:58 -04001765 else
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08001766 err = do_remount_sb(sb, flags, data, 0);
Al Viro7b43a792010-01-16 13:01:26 -05001767 if (!err) {
Andi Kleen962830d2012-05-08 13:32:02 +09301768 br_write_lock(&vfsmount_lock);
Al Viro143c8c92011-11-25 00:46:35 -05001769 mnt_flags |= mnt->mnt.mnt_flags & MNT_PROPAGATION_MASK;
1770 mnt->mnt.mnt_flags = mnt_flags;
Andi Kleen962830d2012-05-08 13:32:02 +09301771 br_write_unlock(&vfsmount_lock);
Al Viro7b43a792010-01-16 13:01:26 -05001772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 up_write(&sb->s_umount);
Dan Williams0e55a7c2008-09-26 19:01:20 -07001774 if (!err) {
Andi Kleen962830d2012-05-08 13:32:02 +09301775 br_write_lock(&vfsmount_lock);
Al Viro143c8c92011-11-25 00:46:35 -05001776 touch_mnt_namespace(mnt->mnt_ns);
Andi Kleen962830d2012-05-08 13:32:02 +09301777 br_write_unlock(&vfsmount_lock);
Dan Williams0e55a7c2008-09-26 19:01:20 -07001778 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 return err;
1780}
1781
Al Virocbbe3622011-11-24 20:01:19 -05001782static inline int tree_contains_unbindable(struct mount *mnt)
Ram Pai9676f0c2005-11-07 17:21:20 -05001783{
Al Viro315fc832011-11-24 18:57:30 -05001784 struct mount *p;
Al Viro909b0a82011-11-25 03:06:56 -05001785 for (p = mnt; p; p = next_mnt(p, mnt)) {
Al Virofc7be132011-11-25 01:05:37 -05001786 if (IS_MNT_UNBINDABLE(p))
Ram Pai9676f0c2005-11-07 17:21:20 -05001787 return 1;
1788 }
1789 return 0;
1790}
1791
Al Viro808d4e32012-10-11 11:42:01 -04001792static int do_move_mount(struct path *path, const char *old_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793{
Al Viro2d92ab32008-08-02 00:51:11 -04001794 struct path old_path, parent_path;
Al Viro676da582011-11-24 21:47:05 -05001795 struct mount *p;
Al Viro0fb54e52011-11-24 19:59:16 -05001796 struct mount *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 int err = 0;
1798 if (!capable(CAP_SYS_ADMIN))
1799 return -EPERM;
1800 if (!old_name || !*old_name)
1801 return -EINVAL;
Al Viro2d92ab32008-08-02 00:51:11 -04001802 err = kern_path(old_name, LOOKUP_FOLLOW, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 if (err)
1804 return err;
1805
Al Virob12cea92011-03-18 08:55:38 -04001806 err = lock_mount(path);
David Howellscc53ce52011-01-14 18:45:26 +00001807 if (err < 0)
1808 goto out;
1809
Al Viro143c8c92011-11-25 00:46:35 -05001810 old = real_mount(old_path.mnt);
Al Virofc7be132011-11-25 01:05:37 -05001811 p = real_mount(path->mnt);
Al Viro143c8c92011-11-25 00:46:35 -05001812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 err = -EINVAL;
Al Virofc7be132011-11-25 01:05:37 -05001814 if (!check_mnt(p) || !check_mnt(old))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 goto out1;
1816
Alexey Dobriyanf3da3922009-05-04 03:32:03 +04001817 if (d_unlinked(path->dentry))
Ram Pai21444402005-11-07 17:20:03 -05001818 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
1820 err = -EINVAL;
Al Viro2d92ab32008-08-02 00:51:11 -04001821 if (old_path.dentry != old_path.mnt->mnt_root)
Ram Pai21444402005-11-07 17:20:03 -05001822 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
Al Viro676da582011-11-24 21:47:05 -05001824 if (!mnt_has_parent(old))
Ram Pai21444402005-11-07 17:20:03 -05001825 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Al Viro2d92ab32008-08-02 00:51:11 -04001827 if (S_ISDIR(path->dentry->d_inode->i_mode) !=
1828 S_ISDIR(old_path.dentry->d_inode->i_mode))
Ram Pai21444402005-11-07 17:20:03 -05001829 goto out1;
1830 /*
1831 * Don't move a mount residing in a shared parent.
1832 */
Al Virofc7be132011-11-25 01:05:37 -05001833 if (IS_MNT_SHARED(old->mnt_parent))
Ram Pai21444402005-11-07 17:20:03 -05001834 goto out1;
Ram Pai9676f0c2005-11-07 17:21:20 -05001835 /*
1836 * Don't move a mount tree containing unbindable mounts to a destination
1837 * mount which is shared.
1838 */
Al Virofc7be132011-11-25 01:05:37 -05001839 if (IS_MNT_SHARED(p) && tree_contains_unbindable(old))
Ram Pai9676f0c2005-11-07 17:21:20 -05001840 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 err = -ELOOP;
Al Virofc7be132011-11-25 01:05:37 -05001842 for (; mnt_has_parent(p); p = p->mnt_parent)
Al Viro676da582011-11-24 21:47:05 -05001843 if (p == old)
Ram Pai21444402005-11-07 17:20:03 -05001844 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Al Viro0fb54e52011-11-24 19:59:16 -05001846 err = attach_recursive_mnt(old, path, &parent_path);
Jan Blunck4ac91372008-02-14 19:34:32 -08001847 if (err)
Ram Pai21444402005-11-07 17:20:03 -05001848 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850 /* if the mount is moved, it should no longer be expire
1851 * automatically */
Al Viro6776db3d2011-11-25 00:22:05 -05001852 list_del_init(&old->mnt_expire);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853out1:
Al Virob12cea92011-03-18 08:55:38 -04001854 unlock_mount(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 if (!err)
Al Viro1a390682008-03-21 20:48:19 -04001857 path_put(&parent_path);
Al Viro2d92ab32008-08-02 00:51:11 -04001858 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 return err;
1860}
1861
Al Viro9d412a42011-03-17 22:08:28 -04001862static struct vfsmount *fs_set_subtype(struct vfsmount *mnt, const char *fstype)
1863{
1864 int err;
1865 const char *subtype = strchr(fstype, '.');
1866 if (subtype) {
1867 subtype++;
1868 err = -EINVAL;
1869 if (!subtype[0])
1870 goto err;
1871 } else
1872 subtype = "";
1873
1874 mnt->mnt_sb->s_subtype = kstrdup(subtype, GFP_KERNEL);
1875 err = -ENOMEM;
1876 if (!mnt->mnt_sb->s_subtype)
1877 goto err;
1878 return mnt;
1879
1880 err:
1881 mntput(mnt);
1882 return ERR_PTR(err);
1883}
1884
Al Viro79e801a2011-12-12 23:07:05 -05001885static struct vfsmount *
Al Viro9d412a42011-03-17 22:08:28 -04001886do_kern_mount(const char *fstype, int flags, const char *name, void *data)
1887{
1888 struct file_system_type *type = get_fs_type(fstype);
1889 struct vfsmount *mnt;
1890 if (!type)
1891 return ERR_PTR(-ENODEV);
1892 mnt = vfs_kern_mount(type, flags, name, data);
1893 if (!IS_ERR(mnt) && (type->fs_flags & FS_HAS_SUBTYPE) &&
1894 !mnt->mnt_sb->s_subtype)
1895 mnt = fs_set_subtype(mnt, fstype);
1896 put_filesystem(type);
1897 return mnt;
1898}
Al Viro9d412a42011-03-17 22:08:28 -04001899
1900/*
1901 * add a mount into a namespace's mount tree
1902 */
Al Viro95bc5f22011-11-25 00:30:56 -05001903static int do_add_mount(struct mount *newmnt, struct path *path, int mnt_flags)
Al Viro9d412a42011-03-17 22:08:28 -04001904{
1905 int err;
1906
1907 mnt_flags &= ~(MNT_SHARED | MNT_WRITE_HOLD | MNT_INTERNAL);
1908
Al Virob12cea92011-03-18 08:55:38 -04001909 err = lock_mount(path);
1910 if (err)
1911 return err;
Al Viro9d412a42011-03-17 22:08:28 -04001912
1913 err = -EINVAL;
Al Viro156cacb2012-09-21 08:19:02 -04001914 if (unlikely(!check_mnt(real_mount(path->mnt)))) {
1915 /* that's acceptable only for automounts done in private ns */
1916 if (!(mnt_flags & MNT_SHRINKABLE))
1917 goto unlock;
1918 /* ... and for those we'd better have mountpoint still alive */
1919 if (!real_mount(path->mnt)->mnt_ns)
1920 goto unlock;
1921 }
Al Viro9d412a42011-03-17 22:08:28 -04001922
1923 /* Refuse the same filesystem on the same mount point */
1924 err = -EBUSY;
Al Viro95bc5f22011-11-25 00:30:56 -05001925 if (path->mnt->mnt_sb == newmnt->mnt.mnt_sb &&
Al Viro9d412a42011-03-17 22:08:28 -04001926 path->mnt->mnt_root == path->dentry)
1927 goto unlock;
1928
1929 err = -EINVAL;
Al Viro95bc5f22011-11-25 00:30:56 -05001930 if (S_ISLNK(newmnt->mnt.mnt_root->d_inode->i_mode))
Al Viro9d412a42011-03-17 22:08:28 -04001931 goto unlock;
1932
Al Viro95bc5f22011-11-25 00:30:56 -05001933 newmnt->mnt.mnt_flags = mnt_flags;
Al Viro9d412a42011-03-17 22:08:28 -04001934 err = graft_tree(newmnt, path);
1935
1936unlock:
Al Virob12cea92011-03-18 08:55:38 -04001937 unlock_mount(path);
Al Viro9d412a42011-03-17 22:08:28 -04001938 return err;
1939}
Al Virob1e75df2011-01-17 01:47:59 -05001940
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941/*
1942 * create a new mount for userspace and request it to be added into the
1943 * namespace's tree
1944 */
Al Viro808d4e32012-10-11 11:42:01 -04001945static int do_new_mount(struct path *path, const char *type, int flags,
1946 int mnt_flags, const char *name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947{
1948 struct vfsmount *mnt;
Al Viro15f9a3f2011-01-17 01:41:58 -05001949 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
Vegard Nossumeca6f532009-09-18 13:05:45 -07001951 if (!type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 return -EINVAL;
1953
1954 /* we need capabilities... */
1955 if (!capable(CAP_SYS_ADMIN))
1956 return -EPERM;
1957
1958 mnt = do_kern_mount(type, flags, name, data);
1959 if (IS_ERR(mnt))
1960 return PTR_ERR(mnt);
1961
Al Viro95bc5f22011-11-25 00:30:56 -05001962 err = do_add_mount(real_mount(mnt), path, mnt_flags);
Al Viro15f9a3f2011-01-17 01:41:58 -05001963 if (err)
1964 mntput(mnt);
1965 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966}
1967
Al Viro19a167a2011-01-17 01:35:23 -05001968int finish_automount(struct vfsmount *m, struct path *path)
1969{
Al Viro6776db3d2011-11-25 00:22:05 -05001970 struct mount *mnt = real_mount(m);
Al Viro19a167a2011-01-17 01:35:23 -05001971 int err;
1972 /* The new mount record should have at least 2 refs to prevent it being
1973 * expired before we get a chance to add it
1974 */
Al Viro6776db3d2011-11-25 00:22:05 -05001975 BUG_ON(mnt_get_count(mnt) < 2);
Al Viro19a167a2011-01-17 01:35:23 -05001976
1977 if (m->mnt_sb == path->mnt->mnt_sb &&
1978 m->mnt_root == path->dentry) {
Al Virob1e75df2011-01-17 01:47:59 -05001979 err = -ELOOP;
1980 goto fail;
Al Viro19a167a2011-01-17 01:35:23 -05001981 }
1982
Al Viro95bc5f22011-11-25 00:30:56 -05001983 err = do_add_mount(mnt, path, path->mnt->mnt_flags | MNT_SHRINKABLE);
Al Virob1e75df2011-01-17 01:47:59 -05001984 if (!err)
1985 return 0;
1986fail:
1987 /* remove m from any expiration list it may be on */
Al Viro6776db3d2011-11-25 00:22:05 -05001988 if (!list_empty(&mnt->mnt_expire)) {
Al Virob1e75df2011-01-17 01:47:59 -05001989 down_write(&namespace_sem);
Andi Kleen962830d2012-05-08 13:32:02 +09301990 br_write_lock(&vfsmount_lock);
Al Viro6776db3d2011-11-25 00:22:05 -05001991 list_del_init(&mnt->mnt_expire);
Andi Kleen962830d2012-05-08 13:32:02 +09301992 br_write_unlock(&vfsmount_lock);
Al Virob1e75df2011-01-17 01:47:59 -05001993 up_write(&namespace_sem);
Al Viro19a167a2011-01-17 01:35:23 -05001994 }
Al Virob1e75df2011-01-17 01:47:59 -05001995 mntput(m);
1996 mntput(m);
Al Viro19a167a2011-01-17 01:35:23 -05001997 return err;
1998}
1999
David Howellsea5b7782011-01-14 19:10:03 +00002000/**
2001 * mnt_set_expiry - Put a mount on an expiration list
2002 * @mnt: The mount to list.
2003 * @expiry_list: The list to add the mount to.
2004 */
2005void mnt_set_expiry(struct vfsmount *mnt, struct list_head *expiry_list)
2006{
2007 down_write(&namespace_sem);
Andi Kleen962830d2012-05-08 13:32:02 +09302008 br_write_lock(&vfsmount_lock);
David Howellsea5b7782011-01-14 19:10:03 +00002009
Al Viro6776db3d2011-11-25 00:22:05 -05002010 list_add_tail(&real_mount(mnt)->mnt_expire, expiry_list);
David Howellsea5b7782011-01-14 19:10:03 +00002011
Andi Kleen962830d2012-05-08 13:32:02 +09302012 br_write_unlock(&vfsmount_lock);
David Howellsea5b7782011-01-14 19:10:03 +00002013 up_write(&namespace_sem);
2014}
2015EXPORT_SYMBOL(mnt_set_expiry);
2016
2017/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 * process a list of expirable mountpoints with the intent of discarding any
2019 * mountpoints that aren't in use and haven't been touched since last we came
2020 * here
2021 */
2022void mark_mounts_for_expiry(struct list_head *mounts)
2023{
Al Viro761d5c32011-11-24 21:07:43 -05002024 struct mount *mnt, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 LIST_HEAD(graveyard);
Al Virobcc5c7d2008-03-22 00:21:53 -04002026 LIST_HEAD(umounts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028 if (list_empty(mounts))
2029 return;
2030
Al Virobcc5c7d2008-03-22 00:21:53 -04002031 down_write(&namespace_sem);
Andi Kleen962830d2012-05-08 13:32:02 +09302032 br_write_lock(&vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
2034 /* extract from the expiration list every vfsmount that matches the
2035 * following criteria:
2036 * - only referenced by its parent vfsmount
2037 * - still marked for expiry (marked on the last call here; marks are
2038 * cleared by mntput())
2039 */
Al Viro6776db3d2011-11-25 00:22:05 -05002040 list_for_each_entry_safe(mnt, next, mounts, mnt_expire) {
Al Viro863d6842011-11-25 00:57:42 -05002041 if (!xchg(&mnt->mnt_expiry_mark, 1) ||
Al Viro1ab59732011-11-24 21:35:16 -05002042 propagate_mount_busy(mnt, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 continue;
Al Viro6776db3d2011-11-25 00:22:05 -05002044 list_move(&mnt->mnt_expire, &graveyard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 }
Al Virobcc5c7d2008-03-22 00:21:53 -04002046 while (!list_empty(&graveyard)) {
Al Viro6776db3d2011-11-25 00:22:05 -05002047 mnt = list_first_entry(&graveyard, struct mount, mnt_expire);
Al Viro143c8c92011-11-25 00:46:35 -05002048 touch_mnt_namespace(mnt->mnt_ns);
Al Virobcc5c7d2008-03-22 00:21:53 -04002049 umount_tree(mnt, 1, &umounts);
2050 }
Andi Kleen962830d2012-05-08 13:32:02 +09302051 br_write_unlock(&vfsmount_lock);
Al Virobcc5c7d2008-03-22 00:21:53 -04002052 up_write(&namespace_sem);
2053
2054 release_mounts(&umounts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055}
2056
2057EXPORT_SYMBOL_GPL(mark_mounts_for_expiry);
2058
2059/*
Trond Myklebust5528f9112006-06-09 09:34:17 -04002060 * Ripoff of 'select_parent()'
2061 *
2062 * search the list of submounts for a given mountpoint, and move any
2063 * shrinkable submounts to the 'graveyard' list.
2064 */
Al Viro692afc32011-11-24 21:15:14 -05002065static int select_submounts(struct mount *parent, struct list_head *graveyard)
Trond Myklebust5528f9112006-06-09 09:34:17 -04002066{
Al Viro692afc32011-11-24 21:15:14 -05002067 struct mount *this_parent = parent;
Trond Myklebust5528f9112006-06-09 09:34:17 -04002068 struct list_head *next;
2069 int found = 0;
2070
2071repeat:
Al Viro6b41d532011-11-24 23:24:33 -05002072 next = this_parent->mnt_mounts.next;
Trond Myklebust5528f9112006-06-09 09:34:17 -04002073resume:
Al Viro6b41d532011-11-24 23:24:33 -05002074 while (next != &this_parent->mnt_mounts) {
Trond Myklebust5528f9112006-06-09 09:34:17 -04002075 struct list_head *tmp = next;
Al Viro6b41d532011-11-24 23:24:33 -05002076 struct mount *mnt = list_entry(tmp, struct mount, mnt_child);
Trond Myklebust5528f9112006-06-09 09:34:17 -04002077
2078 next = tmp->next;
Al Viro692afc32011-11-24 21:15:14 -05002079 if (!(mnt->mnt.mnt_flags & MNT_SHRINKABLE))
Trond Myklebust5528f9112006-06-09 09:34:17 -04002080 continue;
2081 /*
2082 * Descend a level if the d_mounts list is non-empty.
2083 */
Al Viro6b41d532011-11-24 23:24:33 -05002084 if (!list_empty(&mnt->mnt_mounts)) {
Trond Myklebust5528f9112006-06-09 09:34:17 -04002085 this_parent = mnt;
2086 goto repeat;
2087 }
2088
Al Viro1ab59732011-11-24 21:35:16 -05002089 if (!propagate_mount_busy(mnt, 1)) {
Al Viro6776db3d2011-11-25 00:22:05 -05002090 list_move_tail(&mnt->mnt_expire, graveyard);
Trond Myklebust5528f9112006-06-09 09:34:17 -04002091 found++;
2092 }
2093 }
2094 /*
2095 * All done at this level ... ascend and resume the search
2096 */
2097 if (this_parent != parent) {
Al Viro6b41d532011-11-24 23:24:33 -05002098 next = this_parent->mnt_child.next;
Al Viro0714a532011-11-24 22:19:58 -05002099 this_parent = this_parent->mnt_parent;
Trond Myklebust5528f9112006-06-09 09:34:17 -04002100 goto resume;
2101 }
2102 return found;
2103}
2104
2105/*
2106 * process a list of expirable mountpoints with the intent of discarding any
2107 * submounts of a specific parent mountpoint
Nick Piggin99b7db72010-08-18 04:37:39 +10002108 *
2109 * vfsmount_lock must be held for write
Trond Myklebust5528f9112006-06-09 09:34:17 -04002110 */
Al Viro692afc32011-11-24 21:15:14 -05002111static void shrink_submounts(struct mount *mnt, struct list_head *umounts)
Trond Myklebust5528f9112006-06-09 09:34:17 -04002112{
2113 LIST_HEAD(graveyard);
Al Viro761d5c32011-11-24 21:07:43 -05002114 struct mount *m;
Trond Myklebust5528f9112006-06-09 09:34:17 -04002115
Trond Myklebust5528f9112006-06-09 09:34:17 -04002116 /* extract submounts of 'mountpoint' from the expiration list */
Al Viroc35038b2008-03-22 00:46:23 -04002117 while (select_submounts(mnt, &graveyard)) {
Al Virobcc5c7d2008-03-22 00:21:53 -04002118 while (!list_empty(&graveyard)) {
Al Viro761d5c32011-11-24 21:07:43 -05002119 m = list_first_entry(&graveyard, struct mount,
Al Viro6776db3d2011-11-25 00:22:05 -05002120 mnt_expire);
Al Viro143c8c92011-11-25 00:46:35 -05002121 touch_mnt_namespace(m->mnt_ns);
Eric W. Biedermanafef80b2008-11-12 13:26:54 -08002122 umount_tree(m, 1, umounts);
Al Virobcc5c7d2008-03-22 00:21:53 -04002123 }
2124 }
Trond Myklebust5528f9112006-06-09 09:34:17 -04002125}
2126
Trond Myklebust5528f9112006-06-09 09:34:17 -04002127/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 * Some copy_from_user() implementations do not return the exact number of
2129 * bytes remaining to copy on a fault. But copy_mount_options() requires that.
2130 * Note that this function differs from copy_from_user() in that it will oops
2131 * on bad values of `to', rather than returning a short copy.
2132 */
Ram Paib58fed82005-11-07 17:16:09 -05002133static long exact_copy_from_user(void *to, const void __user * from,
2134 unsigned long n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135{
2136 char *t = to;
2137 const char __user *f = from;
2138 char c;
2139
2140 if (!access_ok(VERIFY_READ, from, n))
2141 return n;
2142
2143 while (n) {
2144 if (__get_user(c, f)) {
2145 memset(t, 0, n);
2146 break;
2147 }
2148 *t++ = c;
2149 f++;
2150 n--;
2151 }
2152 return n;
2153}
2154
Ram Paib58fed82005-11-07 17:16:09 -05002155int copy_mount_options(const void __user * data, unsigned long *where)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156{
2157 int i;
2158 unsigned long page;
2159 unsigned long size;
Ram Paib58fed82005-11-07 17:16:09 -05002160
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 *where = 0;
2162 if (!data)
2163 return 0;
2164
2165 if (!(page = __get_free_page(GFP_KERNEL)))
2166 return -ENOMEM;
2167
2168 /* We only care that *some* data at the address the user
2169 * gave us is valid. Just in case, we'll zero
2170 * the remainder of the page.
2171 */
2172 /* copy_from_user cannot cross TASK_SIZE ! */
2173 size = TASK_SIZE - (unsigned long)data;
2174 if (size > PAGE_SIZE)
2175 size = PAGE_SIZE;
2176
2177 i = size - exact_copy_from_user((void *)page, data, size);
2178 if (!i) {
Ram Paib58fed82005-11-07 17:16:09 -05002179 free_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 return -EFAULT;
2181 }
2182 if (i != PAGE_SIZE)
2183 memset((char *)page + i, 0, PAGE_SIZE - i);
2184 *where = page;
2185 return 0;
2186}
2187
Vegard Nossumeca6f532009-09-18 13:05:45 -07002188int copy_mount_string(const void __user *data, char **where)
2189{
2190 char *tmp;
2191
2192 if (!data) {
2193 *where = NULL;
2194 return 0;
2195 }
2196
2197 tmp = strndup_user(data, PAGE_SIZE);
2198 if (IS_ERR(tmp))
2199 return PTR_ERR(tmp);
2200
2201 *where = tmp;
2202 return 0;
2203}
2204
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205/*
2206 * Flags is a 32-bit value that allows up to 31 non-fs dependent flags to
2207 * be given to the mount() call (ie: read-only, no-dev, no-suid etc).
2208 *
2209 * data is a (void *) that can point to any structure up to
2210 * PAGE_SIZE-1 bytes, which can contain arbitrary fs-dependent
2211 * information (or be NULL).
2212 *
2213 * Pre-0.97 versions of mount() didn't have a flags word.
2214 * When the flags word was introduced its top half was required
2215 * to have the magic value 0xC0ED, and this remained so until 2.4.0-test9.
2216 * Therefore, if this magic number is present, it carries no information
2217 * and must be discarded.
2218 */
Al Viro808d4e32012-10-11 11:42:01 -04002219long do_mount(const char *dev_name, const char *dir_name,
2220 const char *type_page, unsigned long flags, void *data_page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221{
Al Viro2d92ab32008-08-02 00:51:11 -04002222 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 int retval = 0;
2224 int mnt_flags = 0;
2225
2226 /* Discard magic */
2227 if ((flags & MS_MGC_MSK) == MS_MGC_VAL)
2228 flags &= ~MS_MGC_MSK;
2229
2230 /* Basic sanity checks */
2231
2232 if (!dir_name || !*dir_name || !memchr(dir_name, 0, PAGE_SIZE))
2233 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
2235 if (data_page)
2236 ((char *)data_page)[PAGE_SIZE - 1] = 0;
2237
Tetsuo Handaa27ab9f22009-10-04 21:49:49 +09002238 /* ... and get the mountpoint */
2239 retval = kern_path(dir_name, LOOKUP_FOLLOW, &path);
2240 if (retval)
2241 return retval;
2242
2243 retval = security_sb_mount(dev_name, &path,
2244 type_page, flags, data_page);
2245 if (retval)
2246 goto dput_out;
2247
Andi Kleen613cbe32009-04-19 18:40:43 +02002248 /* Default to relatime unless overriden */
2249 if (!(flags & MS_NOATIME))
2250 mnt_flags |= MNT_RELATIME;
Matthew Garrett0a1c01c2009-03-26 17:53:14 +00002251
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 /* Separate the per-mountpoint flags */
2253 if (flags & MS_NOSUID)
2254 mnt_flags |= MNT_NOSUID;
2255 if (flags & MS_NODEV)
2256 mnt_flags |= MNT_NODEV;
2257 if (flags & MS_NOEXEC)
2258 mnt_flags |= MNT_NOEXEC;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08002259 if (flags & MS_NOATIME)
2260 mnt_flags |= MNT_NOATIME;
2261 if (flags & MS_NODIRATIME)
2262 mnt_flags |= MNT_NODIRATIME;
Matthew Garrettd0adde52009-03-26 17:49:56 +00002263 if (flags & MS_STRICTATIME)
2264 mnt_flags &= ~(MNT_RELATIME | MNT_NOATIME);
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08002265 if (flags & MS_RDONLY)
2266 mnt_flags |= MNT_READONLY;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08002267
Al Viro7a4dec52010-08-09 12:05:43 -04002268 flags &= ~(MS_NOSUID | MS_NOEXEC | MS_NODEV | MS_ACTIVE | MS_BORN |
Matthew Garrettd0adde52009-03-26 17:49:56 +00002269 MS_NOATIME | MS_NODIRATIME | MS_RELATIME| MS_KERNMOUNT |
2270 MS_STRICTATIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 if (flags & MS_REMOUNT)
Al Viro2d92ab32008-08-02 00:51:11 -04002273 retval = do_remount(&path, flags & ~MS_REMOUNT, mnt_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 data_page);
2275 else if (flags & MS_BIND)
Al Viro2d92ab32008-08-02 00:51:11 -04002276 retval = do_loopback(&path, dev_name, flags & MS_REC);
Ram Pai9676f0c2005-11-07 17:21:20 -05002277 else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
Al Viro2d92ab32008-08-02 00:51:11 -04002278 retval = do_change_type(&path, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 else if (flags & MS_MOVE)
Al Viro2d92ab32008-08-02 00:51:11 -04002280 retval = do_move_mount(&path, dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 else
Al Viro2d92ab32008-08-02 00:51:11 -04002282 retval = do_new_mount(&path, type_page, flags, mnt_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 dev_name, data_page);
2284dput_out:
Al Viro2d92ab32008-08-02 00:51:11 -04002285 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 return retval;
2287}
2288
Eric W. Biederman8823c072010-03-07 18:49:36 -08002289/*
2290 * Assign a sequence number so we can detect when we attempt to bind
2291 * mount a reference to an older mount namespace into the current
2292 * mount namespace, preventing reference counting loops. A 64bit
2293 * number incrementing at 10Ghz will take 12,427 years to wrap which
2294 * is effectively never, so we can ignore the possibility.
2295 */
2296static atomic64_t mnt_ns_seq = ATOMIC64_INIT(1);
2297
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002298static struct mnt_namespace *alloc_mnt_ns(void)
2299{
2300 struct mnt_namespace *new_ns;
2301
2302 new_ns = kmalloc(sizeof(struct mnt_namespace), GFP_KERNEL);
2303 if (!new_ns)
2304 return ERR_PTR(-ENOMEM);
Eric W. Biederman8823c072010-03-07 18:49:36 -08002305 new_ns->seq = atomic64_add_return(1, &mnt_ns_seq);
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002306 atomic_set(&new_ns->count, 1);
2307 new_ns->root = NULL;
2308 INIT_LIST_HEAD(&new_ns->list);
2309 init_waitqueue_head(&new_ns->poll);
2310 new_ns->event = 0;
2311 return new_ns;
2312}
2313
JANAK DESAI741a2952006-02-07 12:59:00 -08002314/*
2315 * Allocate a new namespace structure and populate it with contents
2316 * copied from the namespace of the passed in task structure.
2317 */
Badari Pulavartye3222c42007-05-08 00:25:21 -07002318static struct mnt_namespace *dup_mnt_ns(struct mnt_namespace *mnt_ns,
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002319 struct fs_struct *fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002321 struct mnt_namespace *new_ns;
Al Viro7f2da1e2008-05-10 20:44:54 -04002322 struct vfsmount *rootmnt = NULL, *pwdmnt = NULL;
Al Viro315fc832011-11-24 18:57:30 -05002323 struct mount *p, *q;
Al Virobe08d6d2011-12-06 13:32:36 -05002324 struct mount *old = mnt_ns->root;
Al Virocb338d02011-11-24 20:55:08 -05002325 struct mount *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002327 new_ns = alloc_mnt_ns();
2328 if (IS_ERR(new_ns))
2329 return new_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
Ram Pai390c6842005-11-07 17:17:51 -05002331 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 /* First pass: copy the tree topology */
Al Viro909b0a82011-11-25 03:06:56 -05002333 new = copy_tree(old, old->mnt.mnt_root, CL_COPY_ALL | CL_EXPIRE);
David Howellsbe34d1a2012-06-25 12:55:18 +01002334 if (IS_ERR(new)) {
Ram Pai390c6842005-11-07 17:17:51 -05002335 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 kfree(new_ns);
David Howellsbe34d1a2012-06-25 12:55:18 +01002337 return ERR_CAST(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 }
Al Virobe08d6d2011-12-06 13:32:36 -05002339 new_ns->root = new;
Andi Kleen962830d2012-05-08 13:32:02 +09302340 br_write_lock(&vfsmount_lock);
Al Viro1a4eeaf2011-11-25 02:19:55 -05002341 list_add_tail(&new_ns->list, &new->mnt_list);
Andi Kleen962830d2012-05-08 13:32:02 +09302342 br_write_unlock(&vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
2344 /*
2345 * Second pass: switch the tsk->fs->* elements and mark new vfsmounts
2346 * as belonging to new namespace. We have already acquired a private
2347 * fs_struct, so tsk->fs->lock is not needed.
2348 */
Al Viro909b0a82011-11-25 03:06:56 -05002349 p = old;
Al Virocb338d02011-11-24 20:55:08 -05002350 q = new;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 while (p) {
Al Viro143c8c92011-11-25 00:46:35 -05002352 q->mnt_ns = new_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 if (fs) {
Al Viro315fc832011-11-24 18:57:30 -05002354 if (&p->mnt == fs->root.mnt) {
2355 fs->root.mnt = mntget(&q->mnt);
Al Viro315fc832011-11-24 18:57:30 -05002356 rootmnt = &p->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 }
Al Viro315fc832011-11-24 18:57:30 -05002358 if (&p->mnt == fs->pwd.mnt) {
2359 fs->pwd.mnt = mntget(&q->mnt);
Al Viro315fc832011-11-24 18:57:30 -05002360 pwdmnt = &p->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 }
Al Viro909b0a82011-11-25 03:06:56 -05002363 p = next_mnt(p, old);
2364 q = next_mnt(q, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 }
Ram Pai390c6842005-11-07 17:17:51 -05002366 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 if (rootmnt)
Al Virof03c6592011-01-14 22:30:21 -05002369 mntput(rootmnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 if (pwdmnt)
Al Virof03c6592011-01-14 22:30:21 -05002371 mntput(pwdmnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372
JANAK DESAI741a2952006-02-07 12:59:00 -08002373 return new_ns;
2374}
2375
Eric W. Biederman213dd262007-07-15 23:41:15 -07002376struct mnt_namespace *copy_mnt_ns(unsigned long flags, struct mnt_namespace *ns,
Badari Pulavartye3222c42007-05-08 00:25:21 -07002377 struct fs_struct *new_fs)
JANAK DESAI741a2952006-02-07 12:59:00 -08002378{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002379 struct mnt_namespace *new_ns;
JANAK DESAI741a2952006-02-07 12:59:00 -08002380
Badari Pulavartye3222c42007-05-08 00:25:21 -07002381 BUG_ON(!ns);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002382 get_mnt_ns(ns);
JANAK DESAI741a2952006-02-07 12:59:00 -08002383
2384 if (!(flags & CLONE_NEWNS))
Badari Pulavartye3222c42007-05-08 00:25:21 -07002385 return ns;
JANAK DESAI741a2952006-02-07 12:59:00 -08002386
Badari Pulavartye3222c42007-05-08 00:25:21 -07002387 new_ns = dup_mnt_ns(ns, new_fs);
JANAK DESAI741a2952006-02-07 12:59:00 -08002388
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002389 put_mnt_ns(ns);
Badari Pulavartye3222c42007-05-08 00:25:21 -07002390 return new_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391}
2392
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002393/**
2394 * create_mnt_ns - creates a private namespace and adds a root filesystem
2395 * @mnt: pointer to the new root filesystem mountpoint
2396 */
Al Viro1a4eeaf2011-11-25 02:19:55 -05002397static struct mnt_namespace *create_mnt_ns(struct vfsmount *m)
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002398{
Al Viro1a4eeaf2011-11-25 02:19:55 -05002399 struct mnt_namespace *new_ns = alloc_mnt_ns();
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002400 if (!IS_ERR(new_ns)) {
Al Viro1a4eeaf2011-11-25 02:19:55 -05002401 struct mount *mnt = real_mount(m);
2402 mnt->mnt_ns = new_ns;
Al Virobe08d6d2011-12-06 13:32:36 -05002403 new_ns->root = mnt;
Al Viro1a4eeaf2011-11-25 02:19:55 -05002404 list_add(&new_ns->list, &mnt->mnt_list);
Al Viroc1334492011-11-16 16:12:14 -05002405 } else {
Al Viro1a4eeaf2011-11-25 02:19:55 -05002406 mntput(m);
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002407 }
2408 return new_ns;
2409}
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002410
Al Viroea441d12011-11-16 21:43:59 -05002411struct dentry *mount_subtree(struct vfsmount *mnt, const char *name)
2412{
2413 struct mnt_namespace *ns;
Al Virod31da0f2011-11-22 12:31:21 -05002414 struct super_block *s;
Al Viroea441d12011-11-16 21:43:59 -05002415 struct path path;
2416 int err;
2417
2418 ns = create_mnt_ns(mnt);
2419 if (IS_ERR(ns))
2420 return ERR_CAST(ns);
2421
2422 err = vfs_path_lookup(mnt->mnt_root, mnt,
2423 name, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &path);
2424
2425 put_mnt_ns(ns);
2426
2427 if (err)
2428 return ERR_PTR(err);
2429
2430 /* trade a vfsmount reference for active sb one */
Al Virod31da0f2011-11-22 12:31:21 -05002431 s = path.mnt->mnt_sb;
2432 atomic_inc(&s->s_active);
Al Viroea441d12011-11-16 21:43:59 -05002433 mntput(path.mnt);
2434 /* lock the sucker */
Al Virod31da0f2011-11-22 12:31:21 -05002435 down_write(&s->s_umount);
Al Viroea441d12011-11-16 21:43:59 -05002436 /* ... and return the root of (sub)tree on it */
2437 return path.dentry;
2438}
2439EXPORT_SYMBOL(mount_subtree);
2440
Heiko Carstensbdc480e2009-01-14 14:14:12 +01002441SYSCALL_DEFINE5(mount, char __user *, dev_name, char __user *, dir_name,
2442 char __user *, type, unsigned long, flags, void __user *, data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443{
Vegard Nossumeca6f532009-09-18 13:05:45 -07002444 int ret;
2445 char *kernel_type;
Jeff Layton91a27b22012-10-10 15:25:28 -04002446 struct filename *kernel_dir;
Vegard Nossumeca6f532009-09-18 13:05:45 -07002447 char *kernel_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 unsigned long data_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
Vegard Nossumeca6f532009-09-18 13:05:45 -07002450 ret = copy_mount_string(type, &kernel_type);
2451 if (ret < 0)
2452 goto out_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
Vegard Nossumeca6f532009-09-18 13:05:45 -07002454 kernel_dir = getname(dir_name);
2455 if (IS_ERR(kernel_dir)) {
2456 ret = PTR_ERR(kernel_dir);
2457 goto out_dir;
2458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
Vegard Nossumeca6f532009-09-18 13:05:45 -07002460 ret = copy_mount_string(dev_name, &kernel_dev);
2461 if (ret < 0)
2462 goto out_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463
Vegard Nossumeca6f532009-09-18 13:05:45 -07002464 ret = copy_mount_options(data, &data_page);
2465 if (ret < 0)
2466 goto out_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
Jeff Layton91a27b22012-10-10 15:25:28 -04002468 ret = do_mount(kernel_dev, kernel_dir->name, kernel_type, flags,
Vegard Nossumeca6f532009-09-18 13:05:45 -07002469 (void *) data_page);
2470
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 free_page(data_page);
Vegard Nossumeca6f532009-09-18 13:05:45 -07002472out_data:
2473 kfree(kernel_dev);
2474out_dev:
2475 putname(kernel_dir);
2476out_dir:
2477 kfree(kernel_type);
2478out_type:
2479 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480}
2481
2482/*
Al Viroafac7cb2011-11-23 19:34:49 -05002483 * Return true if path is reachable from root
2484 *
2485 * namespace_sem or vfsmount_lock is held
2486 */
Al Viro643822b2011-11-24 22:00:28 -05002487bool is_path_reachable(struct mount *mnt, struct dentry *dentry,
Al Viroafac7cb2011-11-23 19:34:49 -05002488 const struct path *root)
2489{
Al Viro643822b2011-11-24 22:00:28 -05002490 while (&mnt->mnt != root->mnt && mnt_has_parent(mnt)) {
Al Viroa73324d2011-11-24 22:25:07 -05002491 dentry = mnt->mnt_mountpoint;
Al Viro0714a532011-11-24 22:19:58 -05002492 mnt = mnt->mnt_parent;
Al Viroafac7cb2011-11-23 19:34:49 -05002493 }
Al Viro643822b2011-11-24 22:00:28 -05002494 return &mnt->mnt == root->mnt && is_subdir(dentry, root->dentry);
Al Viroafac7cb2011-11-23 19:34:49 -05002495}
2496
2497int path_is_under(struct path *path1, struct path *path2)
2498{
2499 int res;
Andi Kleen962830d2012-05-08 13:32:02 +09302500 br_read_lock(&vfsmount_lock);
Al Viro643822b2011-11-24 22:00:28 -05002501 res = is_path_reachable(real_mount(path1->mnt), path1->dentry, path2);
Andi Kleen962830d2012-05-08 13:32:02 +09302502 br_read_unlock(&vfsmount_lock);
Al Viroafac7cb2011-11-23 19:34:49 -05002503 return res;
2504}
2505EXPORT_SYMBOL(path_is_under);
2506
2507/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 * pivot_root Semantics:
2509 * Moves the root file system of the current process to the directory put_old,
2510 * makes new_root as the new root file system of the current process, and sets
2511 * root/cwd of all processes which had them on the current root to new_root.
2512 *
2513 * Restrictions:
2514 * The new_root and put_old must be directories, and must not be on the
2515 * same file system as the current process root. The put_old must be
2516 * underneath new_root, i.e. adding a non-zero number of /.. to the string
2517 * pointed to by put_old must yield the same directory as new_root. No other
2518 * file system may be mounted on put_old. After all, new_root is a mountpoint.
2519 *
Neil Brown4a0d11f2006-01-08 01:03:18 -08002520 * Also, the current root cannot be on the 'rootfs' (initial ramfs) filesystem.
2521 * See Documentation/filesystems/ramfs-rootfs-initramfs.txt for alternatives
2522 * in this situation.
2523 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 * Notes:
2525 * - we don't move root/cwd if they are not at the root (reason: if something
2526 * cared enough to change them, it's probably wrong to force them elsewhere)
2527 * - it's okay to pick a root that isn't the root of a file system, e.g.
2528 * /nfs/my_root where /nfs is the mount point. It must be a mountpoint,
2529 * though, so you may need to say mount --bind /nfs/my_root /nfs/my_root
2530 * first.
2531 */
Heiko Carstens3480b252009-01-14 14:14:16 +01002532SYSCALL_DEFINE2(pivot_root, const char __user *, new_root,
2533 const char __user *, put_old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534{
Al Viro2d8f3032008-07-22 09:59:21 -04002535 struct path new, old, parent_path, root_parent, root;
Al Viro419148d2011-11-24 19:41:16 -05002536 struct mount *new_mnt, *root_mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 int error;
2538
2539 if (!capable(CAP_SYS_ADMIN))
2540 return -EPERM;
2541
Al Viro2d8f3032008-07-22 09:59:21 -04002542 error = user_path_dir(new_root, &new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 if (error)
2544 goto out0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
Al Viro2d8f3032008-07-22 09:59:21 -04002546 error = user_path_dir(put_old, &old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 if (error)
2548 goto out1;
2549
Al Viro2d8f3032008-07-22 09:59:21 -04002550 error = security_sb_pivotroot(&old, &new);
Al Virob12cea92011-03-18 08:55:38 -04002551 if (error)
2552 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
Miklos Szeredif7ad3c62010-08-10 11:41:36 +02002554 get_fs_root(current->fs, &root);
Al Virob12cea92011-03-18 08:55:38 -04002555 error = lock_mount(&old);
2556 if (error)
2557 goto out3;
2558
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 error = -EINVAL;
Al Viro419148d2011-11-24 19:41:16 -05002560 new_mnt = real_mount(new.mnt);
2561 root_mnt = real_mount(root.mnt);
Al Virofc7be132011-11-25 01:05:37 -05002562 if (IS_MNT_SHARED(real_mount(old.mnt)) ||
2563 IS_MNT_SHARED(new_mnt->mnt_parent) ||
2564 IS_MNT_SHARED(root_mnt->mnt_parent))
Al Virob12cea92011-03-18 08:55:38 -04002565 goto out4;
Al Viro143c8c92011-11-25 00:46:35 -05002566 if (!check_mnt(root_mnt) || !check_mnt(new_mnt))
Al Virob12cea92011-03-18 08:55:38 -04002567 goto out4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 error = -ENOENT;
Alexey Dobriyanf3da3922009-05-04 03:32:03 +04002569 if (d_unlinked(new.dentry))
Al Virob12cea92011-03-18 08:55:38 -04002570 goto out4;
Alexey Dobriyanf3da3922009-05-04 03:32:03 +04002571 if (d_unlinked(old.dentry))
Al Virob12cea92011-03-18 08:55:38 -04002572 goto out4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 error = -EBUSY;
Al Viro2d8f3032008-07-22 09:59:21 -04002574 if (new.mnt == root.mnt ||
2575 old.mnt == root.mnt)
Al Virob12cea92011-03-18 08:55:38 -04002576 goto out4; /* loop, on the same file system */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 error = -EINVAL;
Al Viro8c3ee422008-03-22 18:00:39 -04002578 if (root.mnt->mnt_root != root.dentry)
Al Virob12cea92011-03-18 08:55:38 -04002579 goto out4; /* not a mountpoint */
Al Viro676da582011-11-24 21:47:05 -05002580 if (!mnt_has_parent(root_mnt))
Al Virob12cea92011-03-18 08:55:38 -04002581 goto out4; /* not attached */
Al Viro2d8f3032008-07-22 09:59:21 -04002582 if (new.mnt->mnt_root != new.dentry)
Al Virob12cea92011-03-18 08:55:38 -04002583 goto out4; /* not a mountpoint */
Al Viro676da582011-11-24 21:47:05 -05002584 if (!mnt_has_parent(new_mnt))
Al Virob12cea92011-03-18 08:55:38 -04002585 goto out4; /* not attached */
Jan Blunck4ac91372008-02-14 19:34:32 -08002586 /* make sure we can reach put_old from new_root */
Al Viro643822b2011-11-24 22:00:28 -05002587 if (!is_path_reachable(real_mount(old.mnt), old.dentry, &new))
Al Virob12cea92011-03-18 08:55:38 -04002588 goto out4;
Andi Kleen962830d2012-05-08 13:32:02 +09302589 br_write_lock(&vfsmount_lock);
Al Viro419148d2011-11-24 19:41:16 -05002590 detach_mnt(new_mnt, &parent_path);
2591 detach_mnt(root_mnt, &root_parent);
Jan Blunck4ac91372008-02-14 19:34:32 -08002592 /* mount old root on put_old */
Al Viro419148d2011-11-24 19:41:16 -05002593 attach_mnt(root_mnt, &old);
Jan Blunck4ac91372008-02-14 19:34:32 -08002594 /* mount new_root on / */
Al Viro419148d2011-11-24 19:41:16 -05002595 attach_mnt(new_mnt, &root_parent);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002596 touch_mnt_namespace(current->nsproxy->mnt_ns);
Andi Kleen962830d2012-05-08 13:32:02 +09302597 br_write_unlock(&vfsmount_lock);
Al Viro2d8f3032008-07-22 09:59:21 -04002598 chroot_fs_refs(&root, &new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 error = 0;
Al Virob12cea92011-03-18 08:55:38 -04002600out4:
2601 unlock_mount(&old);
2602 if (!error) {
2603 path_put(&root_parent);
2604 path_put(&parent_path);
2605 }
2606out3:
Al Viro8c3ee422008-03-22 18:00:39 -04002607 path_put(&root);
Al Virob12cea92011-03-18 08:55:38 -04002608out2:
Al Viro2d8f3032008-07-22 09:59:21 -04002609 path_put(&old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610out1:
Al Viro2d8f3032008-07-22 09:59:21 -04002611 path_put(&new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612out0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614}
2615
2616static void __init init_mount_tree(void)
2617{
2618 struct vfsmount *mnt;
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002619 struct mnt_namespace *ns;
Jan Blunckac748a02008-02-14 19:34:39 -08002620 struct path root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621
2622 mnt = do_kern_mount("rootfs", 0, "rootfs", NULL);
2623 if (IS_ERR(mnt))
2624 panic("Can't create rootfs");
Nick Pigginb3e19d92011-01-07 17:50:11 +11002625
Trond Myklebust3b22edc2009-06-23 17:29:49 -04002626 ns = create_mnt_ns(mnt);
2627 if (IS_ERR(ns))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 panic("Can't allocate initial namespace");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002630 init_task.nsproxy->mnt_ns = ns;
2631 get_mnt_ns(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632
Al Virobe08d6d2011-12-06 13:32:36 -05002633 root.mnt = mnt;
2634 root.dentry = mnt->mnt_root;
Jan Blunckac748a02008-02-14 19:34:39 -08002635
2636 set_fs_pwd(current->fs, &root);
2637 set_fs_root(current->fs, &root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638}
2639
Denis Cheng74bf17c2007-10-16 23:26:30 -07002640void __init mnt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641{
Eric Dumazet13f14b42008-02-06 01:37:57 -08002642 unsigned u;
Randy Dunlap15a67dd2006-09-29 01:58:57 -07002643 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
Ram Pai390c6842005-11-07 17:17:51 -05002645 init_rwsem(&namespace_sem);
2646
Al Viro7d6fec42011-11-23 12:14:10 -05002647 mnt_cache = kmem_cache_create("mnt_cache", sizeof(struct mount),
Paul Mundt20c2df82007-07-20 10:11:58 +09002648 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649
Ram Paib58fed82005-11-07 17:16:09 -05002650 mount_hashtable = (struct list_head *)__get_free_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651
2652 if (!mount_hashtable)
2653 panic("Failed to allocate mount hash table\n");
2654
Mandeep Singh Baines80cdc6d2011-03-22 16:33:54 -07002655 printk(KERN_INFO "Mount-cache hash table entries: %lu\n", HASH_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
Eric Dumazet13f14b42008-02-06 01:37:57 -08002657 for (u = 0; u < HASH_SIZE; u++)
2658 INIT_LIST_HEAD(&mount_hashtable[u]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
Andi Kleen962830d2012-05-08 13:32:02 +09302660 br_lock_init(&vfsmount_lock);
Nick Piggin99b7db72010-08-18 04:37:39 +10002661
Randy Dunlap15a67dd2006-09-29 01:58:57 -07002662 err = sysfs_init();
2663 if (err)
2664 printk(KERN_WARNING "%s: sysfs_init error: %d\n",
Harvey Harrison8e24eea2008-04-30 00:55:09 -07002665 __func__, err);
Greg Kroah-Hartman00d26662007-10-29 14:17:23 -06002666 fs_kobj = kobject_create_and_add("fs", NULL);
2667 if (!fs_kobj)
Harvey Harrison8e24eea2008-04-30 00:55:09 -07002668 printk(KERN_WARNING "%s: kobj create error\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 init_rootfs();
2670 init_mount_tree();
2671}
2672
Trond Myklebust616511d2009-06-22 15:09:13 -04002673void put_mnt_ns(struct mnt_namespace *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674{
Ram Pai70fbcdf2005-11-07 17:17:04 -05002675 LIST_HEAD(umount_list);
Trond Myklebust616511d2009-06-22 15:09:13 -04002676
Al Virod498b252010-02-05 02:21:06 -05002677 if (!atomic_dec_and_test(&ns->count))
Trond Myklebust616511d2009-06-22 15:09:13 -04002678 return;
Ram Pai390c6842005-11-07 17:17:51 -05002679 down_write(&namespace_sem);
Andi Kleen962830d2012-05-08 13:32:02 +09302680 br_write_lock(&vfsmount_lock);
Al Virobe08d6d2011-12-06 13:32:36 -05002681 umount_tree(ns->root, 0, &umount_list);
Andi Kleen962830d2012-05-08 13:32:02 +09302682 br_write_unlock(&vfsmount_lock);
Ram Pai390c6842005-11-07 17:17:51 -05002683 up_write(&namespace_sem);
Ram Pai70fbcdf2005-11-07 17:17:04 -05002684 release_mounts(&umount_list);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002685 kfree(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686}
Al Viro9d412a42011-03-17 22:08:28 -04002687
2688struct vfsmount *kern_mount_data(struct file_system_type *type, void *data)
2689{
Tim Chen423e0ab2011-07-19 09:32:38 -07002690 struct vfsmount *mnt;
2691 mnt = vfs_kern_mount(type, MS_KERNMOUNT, type->name, data);
2692 if (!IS_ERR(mnt)) {
2693 /*
2694 * it is a longterm mount, don't release mnt until
2695 * we unmount before file sys is unregistered
2696 */
Al Virof7a99c52012-06-09 00:59:08 -04002697 real_mount(mnt)->mnt_ns = MNT_NS_INTERNAL;
Tim Chen423e0ab2011-07-19 09:32:38 -07002698 }
2699 return mnt;
Al Viro9d412a42011-03-17 22:08:28 -04002700}
2701EXPORT_SYMBOL_GPL(kern_mount_data);
Tim Chen423e0ab2011-07-19 09:32:38 -07002702
2703void kern_unmount(struct vfsmount *mnt)
2704{
2705 /* release long term mount so mount point can be released */
2706 if (!IS_ERR_OR_NULL(mnt)) {
Al Virof7a99c52012-06-09 00:59:08 -04002707 br_write_lock(&vfsmount_lock);
2708 real_mount(mnt)->mnt_ns = NULL;
2709 br_write_unlock(&vfsmount_lock);
Tim Chen423e0ab2011-07-19 09:32:38 -07002710 mntput(mnt);
2711 }
2712}
2713EXPORT_SYMBOL(kern_unmount);
Al Viro02125a82011-12-05 08:43:34 -05002714
2715bool our_mnt(struct vfsmount *mnt)
2716{
Al Viro143c8c92011-11-25 00:46:35 -05002717 return check_mnt(real_mount(mnt));
Al Viro02125a82011-12-05 08:43:34 -05002718}
Eric W. Biederman8823c072010-03-07 18:49:36 -08002719
2720static void *mntns_get(struct task_struct *task)
2721{
2722 struct mnt_namespace *ns = NULL;
2723 struct nsproxy *nsproxy;
2724
2725 rcu_read_lock();
2726 nsproxy = task_nsproxy(task);
2727 if (nsproxy) {
2728 ns = nsproxy->mnt_ns;
2729 get_mnt_ns(ns);
2730 }
2731 rcu_read_unlock();
2732
2733 return ns;
2734}
2735
2736static void mntns_put(void *ns)
2737{
2738 put_mnt_ns(ns);
2739}
2740
2741static int mntns_install(struct nsproxy *nsproxy, void *ns)
2742{
2743 struct fs_struct *fs = current->fs;
2744 struct mnt_namespace *mnt_ns = ns;
2745 struct path root;
2746
2747 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_CHROOT))
2748 return -EINVAL;
2749
2750 if (fs->users != 1)
2751 return -EINVAL;
2752
2753 get_mnt_ns(mnt_ns);
2754 put_mnt_ns(nsproxy->mnt_ns);
2755 nsproxy->mnt_ns = mnt_ns;
2756
2757 /* Find the root */
2758 root.mnt = &mnt_ns->root->mnt;
2759 root.dentry = mnt_ns->root->mnt.mnt_root;
2760 path_get(&root);
2761 while(d_mountpoint(root.dentry) && follow_down_one(&root))
2762 ;
2763
2764 /* Update the pwd and root */
2765 set_fs_pwd(fs, &root);
2766 set_fs_root(fs, &root);
2767
2768 path_put(&root);
2769 return 0;
2770}
2771
2772const struct proc_ns_operations mntns_operations = {
2773 .name = "mnt",
2774 .type = CLONE_NEWNS,
2775 .get = mntns_get,
2776 .put = mntns_put,
2777 .install = mntns_install,
2778};