]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - fs/namespace.c
Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-zesty-kernel.git] / fs / namespace.c
CommitLineData
1da177e4
LT
1/*
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
1da177e4 11#include <linux/syscalls.h>
d10577a8 12#include <linux/export.h>
16f7e0fe 13#include <linux/capability.h>
6b3286ed 14#include <linux/mnt_namespace.h>
771b1371 15#include <linux/user_namespace.h>
1da177e4
LT
16#include <linux/namei.h>
17#include <linux/security.h>
73cd49ec 18#include <linux/idr.h>
d10577a8 19#include <linux/acct.h> /* acct_auto_close_mnt */
57f150a5 20#include <linux/init.h> /* init_rootfs */
d10577a8
AV
21#include <linux/fs_struct.h> /* get_fs_root et.al. */
22#include <linux/fsnotify.h> /* fsnotify_vfsmount_delete */
23#include <linux/uaccess.h>
0bb80f24 24#include <linux/proc_ns.h>
20b4fb48 25#include <linux/magic.h>
07b20889 26#include "pnode.h"
948730b0 27#include "internal.h"
1da177e4 28
13f14b4d
ED
29#define HASH_SHIFT ilog2(PAGE_SIZE / sizeof(struct list_head))
30#define HASH_SIZE (1UL << HASH_SHIFT)
31
5addc5dd 32static int event;
73cd49ec 33static DEFINE_IDA(mnt_id_ida);
719f5d7f 34static DEFINE_IDA(mnt_group_ida);
99b7db7b 35static DEFINE_SPINLOCK(mnt_id_lock);
f21f6220
AV
36static int mnt_id_start = 0;
37static int mnt_group_start = 1;
1da177e4 38
fa3536cc 39static struct list_head *mount_hashtable __read_mostly;
84d17192 40static struct list_head *mountpoint_hashtable __read_mostly;
e18b890b 41static struct kmem_cache *mnt_cache __read_mostly;
59aa0da8 42static DECLARE_RWSEM(namespace_sem);
1da177e4 43
f87fd4c2 44/* /sys/fs */
00d26666
GKH
45struct kobject *fs_kobj;
46EXPORT_SYMBOL_GPL(fs_kobj);
f87fd4c2 47
99b7db7b
NP
48/*
49 * vfsmount lock may be taken for read to prevent changes to the
50 * vfsmount hash, ie. during mountpoint lookups or walking back
51 * up the tree.
52 *
53 * It should be taken for write in all cases where the vfsmount
54 * tree or hash is modified or when a vfsmount structure is modified.
55 */
48a066e7 56__cacheline_aligned_in_smp DEFINE_SEQLOCK(mount_lock);
99b7db7b 57
1da177e4
LT
58static inline unsigned long hash(struct vfsmount *mnt, struct dentry *dentry)
59{
b58fed8b
RP
60 unsigned long tmp = ((unsigned long)mnt / L1_CACHE_BYTES);
61 tmp += ((unsigned long)dentry / L1_CACHE_BYTES);
13f14b4d
ED
62 tmp = tmp + (tmp >> HASH_SHIFT);
63 return tmp & (HASH_SIZE - 1);
1da177e4
LT
64}
65
99b7db7b
NP
66/*
67 * allocation is serialized by namespace_sem, but we need the spinlock to
68 * serialize with freeing.
69 */
b105e270 70static int mnt_alloc_id(struct mount *mnt)
73cd49ec
MS
71{
72 int res;
73
74retry:
75 ida_pre_get(&mnt_id_ida, GFP_KERNEL);
99b7db7b 76 spin_lock(&mnt_id_lock);
15169fe7 77 res = ida_get_new_above(&mnt_id_ida, mnt_id_start, &mnt->mnt_id);
f21f6220 78 if (!res)
15169fe7 79 mnt_id_start = mnt->mnt_id + 1;
99b7db7b 80 spin_unlock(&mnt_id_lock);
73cd49ec
MS
81 if (res == -EAGAIN)
82 goto retry;
83
84 return res;
85}
86
b105e270 87static void mnt_free_id(struct mount *mnt)
73cd49ec 88{
15169fe7 89 int id = mnt->mnt_id;
99b7db7b 90 spin_lock(&mnt_id_lock);
f21f6220
AV
91 ida_remove(&mnt_id_ida, id);
92 if (mnt_id_start > id)
93 mnt_id_start = id;
99b7db7b 94 spin_unlock(&mnt_id_lock);
73cd49ec
MS
95}
96
719f5d7f
MS
97/*
98 * Allocate a new peer group ID
99 *
100 * mnt_group_ida is protected by namespace_sem
101 */
4b8b21f4 102static int mnt_alloc_group_id(struct mount *mnt)
719f5d7f 103{
f21f6220
AV
104 int res;
105
719f5d7f
MS
106 if (!ida_pre_get(&mnt_group_ida, GFP_KERNEL))
107 return -ENOMEM;
108
f21f6220
AV
109 res = ida_get_new_above(&mnt_group_ida,
110 mnt_group_start,
15169fe7 111 &mnt->mnt_group_id);
f21f6220 112 if (!res)
15169fe7 113 mnt_group_start = mnt->mnt_group_id + 1;
f21f6220
AV
114
115 return res;
719f5d7f
MS
116}
117
118/*
119 * Release a peer group ID
120 */
4b8b21f4 121void mnt_release_group_id(struct mount *mnt)
719f5d7f 122{
15169fe7 123 int id = mnt->mnt_group_id;
f21f6220
AV
124 ida_remove(&mnt_group_ida, id);
125 if (mnt_group_start > id)
126 mnt_group_start = id;
15169fe7 127 mnt->mnt_group_id = 0;
719f5d7f
MS
128}
129
b3e19d92
NP
130/*
131 * vfsmount lock must be held for read
132 */
83adc753 133static inline void mnt_add_count(struct mount *mnt, int n)
b3e19d92
NP
134{
135#ifdef CONFIG_SMP
68e8a9fe 136 this_cpu_add(mnt->mnt_pcp->mnt_count, n);
b3e19d92
NP
137#else
138 preempt_disable();
68e8a9fe 139 mnt->mnt_count += n;
b3e19d92
NP
140 preempt_enable();
141#endif
142}
143
b3e19d92
NP
144/*
145 * vfsmount lock must be held for write
146 */
83adc753 147unsigned int mnt_get_count(struct mount *mnt)
b3e19d92
NP
148{
149#ifdef CONFIG_SMP
f03c6599 150 unsigned int count = 0;
b3e19d92
NP
151 int cpu;
152
153 for_each_possible_cpu(cpu) {
68e8a9fe 154 count += per_cpu_ptr(mnt->mnt_pcp, cpu)->mnt_count;
b3e19d92
NP
155 }
156
157 return count;
158#else
68e8a9fe 159 return mnt->mnt_count;
b3e19d92
NP
160#endif
161}
162
b105e270 163static struct mount *alloc_vfsmnt(const char *name)
1da177e4 164{
c63181e6
AV
165 struct mount *mnt = kmem_cache_zalloc(mnt_cache, GFP_KERNEL);
166 if (mnt) {
73cd49ec
MS
167 int err;
168
c63181e6 169 err = mnt_alloc_id(mnt);
88b38782
LZ
170 if (err)
171 goto out_free_cache;
172
173 if (name) {
c63181e6
AV
174 mnt->mnt_devname = kstrdup(name, GFP_KERNEL);
175 if (!mnt->mnt_devname)
88b38782 176 goto out_free_id;
73cd49ec
MS
177 }
178
b3e19d92 179#ifdef CONFIG_SMP
c63181e6
AV
180 mnt->mnt_pcp = alloc_percpu(struct mnt_pcp);
181 if (!mnt->mnt_pcp)
b3e19d92
NP
182 goto out_free_devname;
183
c63181e6 184 this_cpu_add(mnt->mnt_pcp->mnt_count, 1);
b3e19d92 185#else
c63181e6
AV
186 mnt->mnt_count = 1;
187 mnt->mnt_writers = 0;
b3e19d92
NP
188#endif
189
c63181e6
AV
190 INIT_LIST_HEAD(&mnt->mnt_hash);
191 INIT_LIST_HEAD(&mnt->mnt_child);
192 INIT_LIST_HEAD(&mnt->mnt_mounts);
193 INIT_LIST_HEAD(&mnt->mnt_list);
194 INIT_LIST_HEAD(&mnt->mnt_expire);
195 INIT_LIST_HEAD(&mnt->mnt_share);
196 INIT_LIST_HEAD(&mnt->mnt_slave_list);
197 INIT_LIST_HEAD(&mnt->mnt_slave);
2504c5d6
AG
198#ifdef CONFIG_FSNOTIFY
199 INIT_HLIST_HEAD(&mnt->mnt_fsnotify_marks);
d3ef3d73 200#endif
1da177e4 201 }
c63181e6 202 return mnt;
88b38782 203
d3ef3d73 204#ifdef CONFIG_SMP
205out_free_devname:
c63181e6 206 kfree(mnt->mnt_devname);
d3ef3d73 207#endif
88b38782 208out_free_id:
c63181e6 209 mnt_free_id(mnt);
88b38782 210out_free_cache:
c63181e6 211 kmem_cache_free(mnt_cache, mnt);
88b38782 212 return NULL;
1da177e4
LT
213}
214
3d733633
DH
215/*
216 * Most r/o checks on a fs are for operations that take
217 * discrete amounts of time, like a write() or unlink().
218 * We must keep track of when those operations start
219 * (for permission checks) and when they end, so that
220 * we can determine when writes are able to occur to
221 * a filesystem.
222 */
223/*
224 * __mnt_is_readonly: check whether a mount is read-only
225 * @mnt: the mount to check for its write status
226 *
227 * This shouldn't be used directly ouside of the VFS.
228 * It does not guarantee that the filesystem will stay
229 * r/w, just that it is right *now*. This can not and
230 * should not be used in place of IS_RDONLY(inode).
231 * mnt_want/drop_write() will _keep_ the filesystem
232 * r/w.
233 */
234int __mnt_is_readonly(struct vfsmount *mnt)
235{
2e4b7fcd
DH
236 if (mnt->mnt_flags & MNT_READONLY)
237 return 1;
238 if (mnt->mnt_sb->s_flags & MS_RDONLY)
239 return 1;
240 return 0;
3d733633
DH
241}
242EXPORT_SYMBOL_GPL(__mnt_is_readonly);
243
83adc753 244static inline void mnt_inc_writers(struct mount *mnt)
d3ef3d73 245{
246#ifdef CONFIG_SMP
68e8a9fe 247 this_cpu_inc(mnt->mnt_pcp->mnt_writers);
d3ef3d73 248#else
68e8a9fe 249 mnt->mnt_writers++;
d3ef3d73 250#endif
251}
3d733633 252
83adc753 253static inline void mnt_dec_writers(struct mount *mnt)
3d733633 254{
d3ef3d73 255#ifdef CONFIG_SMP
68e8a9fe 256 this_cpu_dec(mnt->mnt_pcp->mnt_writers);
d3ef3d73 257#else
68e8a9fe 258 mnt->mnt_writers--;
d3ef3d73 259#endif
3d733633 260}
3d733633 261
83adc753 262static unsigned int mnt_get_writers(struct mount *mnt)
3d733633 263{
d3ef3d73 264#ifdef CONFIG_SMP
265 unsigned int count = 0;
3d733633 266 int cpu;
3d733633
DH
267
268 for_each_possible_cpu(cpu) {
68e8a9fe 269 count += per_cpu_ptr(mnt->mnt_pcp, cpu)->mnt_writers;
3d733633 270 }
3d733633 271
d3ef3d73 272 return count;
273#else
274 return mnt->mnt_writers;
275#endif
3d733633
DH
276}
277
4ed5e82f
MS
278static int mnt_is_readonly(struct vfsmount *mnt)
279{
280 if (mnt->mnt_sb->s_readonly_remount)
281 return 1;
282 /* Order wrt setting s_flags/s_readonly_remount in do_remount() */
283 smp_rmb();
284 return __mnt_is_readonly(mnt);
285}
286
8366025e 287/*
eb04c282
JK
288 * Most r/o & frozen checks on a fs are for operations that take discrete
289 * amounts of time, like a write() or unlink(). We must keep track of when
290 * those operations start (for permission checks) and when they end, so that we
291 * can determine when writes are able to occur to a filesystem.
8366025e
DH
292 */
293/**
eb04c282 294 * __mnt_want_write - get write access to a mount without freeze protection
83adc753 295 * @m: the mount on which to take a write
8366025e 296 *
eb04c282
JK
297 * This tells the low-level filesystem that a write is about to be performed to
298 * it, and makes sure that writes are allowed (mnt it read-write) before
299 * returning success. This operation does not protect against filesystem being
300 * frozen. When the write operation is finished, __mnt_drop_write() must be
301 * called. This is effectively a refcount.
8366025e 302 */
eb04c282 303int __mnt_want_write(struct vfsmount *m)
8366025e 304{
83adc753 305 struct mount *mnt = real_mount(m);
3d733633 306 int ret = 0;
3d733633 307
d3ef3d73 308 preempt_disable();
c6653a83 309 mnt_inc_writers(mnt);
d3ef3d73 310 /*
c6653a83 311 * The store to mnt_inc_writers must be visible before we pass
d3ef3d73 312 * MNT_WRITE_HOLD loop below, so that the slowpath can see our
313 * incremented count after it has set MNT_WRITE_HOLD.
314 */
315 smp_mb();
1e75529e 316 while (ACCESS_ONCE(mnt->mnt.mnt_flags) & MNT_WRITE_HOLD)
d3ef3d73 317 cpu_relax();
318 /*
319 * After the slowpath clears MNT_WRITE_HOLD, mnt_is_readonly will
320 * be set to match its requirements. So we must not load that until
321 * MNT_WRITE_HOLD is cleared.
322 */
323 smp_rmb();
4ed5e82f 324 if (mnt_is_readonly(m)) {
c6653a83 325 mnt_dec_writers(mnt);
3d733633 326 ret = -EROFS;
3d733633 327 }
d3ef3d73 328 preempt_enable();
eb04c282
JK
329
330 return ret;
331}
332
333/**
334 * mnt_want_write - get write access to a mount
335 * @m: the mount on which to take a write
336 *
337 * This tells the low-level filesystem that a write is about to be performed to
338 * it, and makes sure that writes are allowed (mount is read-write, filesystem
339 * is not frozen) before returning success. When the write operation is
340 * finished, mnt_drop_write() must be called. This is effectively a refcount.
341 */
342int mnt_want_write(struct vfsmount *m)
343{
344 int ret;
345
346 sb_start_write(m->mnt_sb);
347 ret = __mnt_want_write(m);
348 if (ret)
349 sb_end_write(m->mnt_sb);
3d733633 350 return ret;
8366025e
DH
351}
352EXPORT_SYMBOL_GPL(mnt_want_write);
353
96029c4e 354/**
355 * mnt_clone_write - get write access to a mount
356 * @mnt: the mount on which to take a write
357 *
358 * This is effectively like mnt_want_write, except
359 * it must only be used to take an extra write reference
360 * on a mountpoint that we already know has a write reference
361 * on it. This allows some optimisation.
362 *
363 * After finished, mnt_drop_write must be called as usual to
364 * drop the reference.
365 */
366int mnt_clone_write(struct vfsmount *mnt)
367{
368 /* superblock may be r/o */
369 if (__mnt_is_readonly(mnt))
370 return -EROFS;
371 preempt_disable();
83adc753 372 mnt_inc_writers(real_mount(mnt));
96029c4e 373 preempt_enable();
374 return 0;
375}
376EXPORT_SYMBOL_GPL(mnt_clone_write);
377
378/**
eb04c282 379 * __mnt_want_write_file - get write access to a file's mount
96029c4e 380 * @file: the file who's mount on which to take a write
381 *
eb04c282 382 * This is like __mnt_want_write, but it takes a file and can
96029c4e 383 * do some optimisations if the file is open for write already
384 */
eb04c282 385int __mnt_want_write_file(struct file *file)
96029c4e 386{
496ad9aa 387 struct inode *inode = file_inode(file);
eb04c282 388
2d8dd38a 389 if (!(file->f_mode & FMODE_WRITE) || special_file(inode->i_mode))
eb04c282 390 return __mnt_want_write(file->f_path.mnt);
96029c4e 391 else
392 return mnt_clone_write(file->f_path.mnt);
393}
eb04c282
JK
394
395/**
396 * mnt_want_write_file - get write access to a file's mount
397 * @file: the file who's mount on which to take a write
398 *
399 * This is like mnt_want_write, but it takes a file and can
400 * do some optimisations if the file is open for write already
401 */
402int mnt_want_write_file(struct file *file)
403{
404 int ret;
405
406 sb_start_write(file->f_path.mnt->mnt_sb);
407 ret = __mnt_want_write_file(file);
408 if (ret)
409 sb_end_write(file->f_path.mnt->mnt_sb);
410 return ret;
411}
96029c4e 412EXPORT_SYMBOL_GPL(mnt_want_write_file);
413
8366025e 414/**
eb04c282 415 * __mnt_drop_write - give up write access to a mount
8366025e
DH
416 * @mnt: the mount on which to give up write access
417 *
418 * Tells the low-level filesystem that we are done
419 * performing writes to it. Must be matched with
eb04c282 420 * __mnt_want_write() call above.
8366025e 421 */
eb04c282 422void __mnt_drop_write(struct vfsmount *mnt)
8366025e 423{
d3ef3d73 424 preempt_disable();
83adc753 425 mnt_dec_writers(real_mount(mnt));
d3ef3d73 426 preempt_enable();
8366025e 427}
eb04c282
JK
428
429/**
430 * mnt_drop_write - give up write access to a mount
431 * @mnt: the mount on which to give up write access
432 *
433 * Tells the low-level filesystem that we are done performing writes to it and
434 * also allows filesystem to be frozen again. Must be matched with
435 * mnt_want_write() call above.
436 */
437void mnt_drop_write(struct vfsmount *mnt)
438{
439 __mnt_drop_write(mnt);
440 sb_end_write(mnt->mnt_sb);
441}
8366025e
DH
442EXPORT_SYMBOL_GPL(mnt_drop_write);
443
eb04c282
JK
444void __mnt_drop_write_file(struct file *file)
445{
446 __mnt_drop_write(file->f_path.mnt);
447}
448
2a79f17e
AV
449void mnt_drop_write_file(struct file *file)
450{
451 mnt_drop_write(file->f_path.mnt);
452}
453EXPORT_SYMBOL(mnt_drop_write_file);
454
83adc753 455static int mnt_make_readonly(struct mount *mnt)
8366025e 456{
3d733633
DH
457 int ret = 0;
458
719ea2fb 459 lock_mount_hash();
83adc753 460 mnt->mnt.mnt_flags |= MNT_WRITE_HOLD;
3d733633 461 /*
d3ef3d73 462 * After storing MNT_WRITE_HOLD, we'll read the counters. This store
463 * should be visible before we do.
3d733633 464 */
d3ef3d73 465 smp_mb();
466
3d733633 467 /*
d3ef3d73 468 * With writers on hold, if this value is zero, then there are
469 * definitely no active writers (although held writers may subsequently
470 * increment the count, they'll have to wait, and decrement it after
471 * seeing MNT_READONLY).
472 *
473 * It is OK to have counter incremented on one CPU and decremented on
474 * another: the sum will add up correctly. The danger would be when we
475 * sum up each counter, if we read a counter before it is incremented,
476 * but then read another CPU's count which it has been subsequently
477 * decremented from -- we would see more decrements than we should.
478 * MNT_WRITE_HOLD protects against this scenario, because
479 * mnt_want_write first increments count, then smp_mb, then spins on
480 * MNT_WRITE_HOLD, so it can't be decremented by another CPU while
481 * we're counting up here.
3d733633 482 */
c6653a83 483 if (mnt_get_writers(mnt) > 0)
d3ef3d73 484 ret = -EBUSY;
485 else
83adc753 486 mnt->mnt.mnt_flags |= MNT_READONLY;
d3ef3d73 487 /*
488 * MNT_READONLY must become visible before ~MNT_WRITE_HOLD, so writers
489 * that become unheld will see MNT_READONLY.
490 */
491 smp_wmb();
83adc753 492 mnt->mnt.mnt_flags &= ~MNT_WRITE_HOLD;
719ea2fb 493 unlock_mount_hash();
3d733633 494 return ret;
8366025e 495}
8366025e 496
83adc753 497static void __mnt_unmake_readonly(struct mount *mnt)
2e4b7fcd 498{
719ea2fb 499 lock_mount_hash();
83adc753 500 mnt->mnt.mnt_flags &= ~MNT_READONLY;
719ea2fb 501 unlock_mount_hash();
2e4b7fcd
DH
502}
503
4ed5e82f
MS
504int sb_prepare_remount_readonly(struct super_block *sb)
505{
506 struct mount *mnt;
507 int err = 0;
508
8e8b8796
MS
509 /* Racy optimization. Recheck the counter under MNT_WRITE_HOLD */
510 if (atomic_long_read(&sb->s_remove_count))
511 return -EBUSY;
512
719ea2fb 513 lock_mount_hash();
4ed5e82f
MS
514 list_for_each_entry(mnt, &sb->s_mounts, mnt_instance) {
515 if (!(mnt->mnt.mnt_flags & MNT_READONLY)) {
516 mnt->mnt.mnt_flags |= MNT_WRITE_HOLD;
517 smp_mb();
518 if (mnt_get_writers(mnt) > 0) {
519 err = -EBUSY;
520 break;
521 }
522 }
523 }
8e8b8796
MS
524 if (!err && atomic_long_read(&sb->s_remove_count))
525 err = -EBUSY;
526
4ed5e82f
MS
527 if (!err) {
528 sb->s_readonly_remount = 1;
529 smp_wmb();
530 }
531 list_for_each_entry(mnt, &sb->s_mounts, mnt_instance) {
532 if (mnt->mnt.mnt_flags & MNT_WRITE_HOLD)
533 mnt->mnt.mnt_flags &= ~MNT_WRITE_HOLD;
534 }
719ea2fb 535 unlock_mount_hash();
4ed5e82f
MS
536
537 return err;
538}
539
b105e270 540static void free_vfsmnt(struct mount *mnt)
1da177e4 541{
52ba1621 542 kfree(mnt->mnt_devname);
73cd49ec 543 mnt_free_id(mnt);
d3ef3d73 544#ifdef CONFIG_SMP
68e8a9fe 545 free_percpu(mnt->mnt_pcp);
d3ef3d73 546#endif
b105e270 547 kmem_cache_free(mnt_cache, mnt);
1da177e4
LT
548}
549
48a066e7
AV
550/* call under rcu_read_lock */
551bool legitimize_mnt(struct vfsmount *bastard, unsigned seq)
552{
553 struct mount *mnt;
554 if (read_seqretry(&mount_lock, seq))
555 return false;
556 if (bastard == NULL)
557 return true;
558 mnt = real_mount(bastard);
559 mnt_add_count(mnt, 1);
560 if (likely(!read_seqretry(&mount_lock, seq)))
561 return true;
562 if (bastard->mnt_flags & MNT_SYNC_UMOUNT) {
563 mnt_add_count(mnt, -1);
564 return false;
565 }
566 rcu_read_unlock();
567 mntput(bastard);
568 rcu_read_lock();
569 return false;
570}
571
1da177e4 572/*
474279dc 573 * find the first mount at @dentry on vfsmount @mnt.
48a066e7 574 * call under rcu_read_lock()
1da177e4 575 */
474279dc 576struct mount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry)
1da177e4 577{
b58fed8b 578 struct list_head *head = mount_hashtable + hash(mnt, dentry);
474279dc
AV
579 struct mount *p;
580
48a066e7 581 list_for_each_entry_rcu(p, head, mnt_hash)
474279dc
AV
582 if (&p->mnt_parent->mnt == mnt && p->mnt_mountpoint == dentry)
583 return p;
584 return NULL;
585}
586
587/*
588 * find the last mount at @dentry on vfsmount @mnt.
48a066e7 589 * mount_lock must be held.
474279dc
AV
590 */
591struct mount *__lookup_mnt_last(struct vfsmount *mnt, struct dentry *dentry)
592{
593 struct list_head *head = mount_hashtable + hash(mnt, dentry);
594 struct mount *p;
595
596 list_for_each_entry_reverse(p, head, mnt_hash)
597 if (&p->mnt_parent->mnt == mnt && p->mnt_mountpoint == dentry)
598 return p;
599 return NULL;
1da177e4
LT
600}
601
a05964f3 602/*
f015f126
DH
603 * lookup_mnt - Return the first child mount mounted at path
604 *
605 * "First" means first mounted chronologically. If you create the
606 * following mounts:
607 *
608 * mount /dev/sda1 /mnt
609 * mount /dev/sda2 /mnt
610 * mount /dev/sda3 /mnt
611 *
612 * Then lookup_mnt() on the base /mnt dentry in the root mount will
613 * return successively the root dentry and vfsmount of /dev/sda1, then
614 * /dev/sda2, then /dev/sda3, then NULL.
615 *
616 * lookup_mnt takes a reference to the found vfsmount.
a05964f3 617 */
1c755af4 618struct vfsmount *lookup_mnt(struct path *path)
a05964f3 619{
c7105365 620 struct mount *child_mnt;
48a066e7
AV
621 struct vfsmount *m;
622 unsigned seq;
99b7db7b 623
48a066e7
AV
624 rcu_read_lock();
625 do {
626 seq = read_seqbegin(&mount_lock);
627 child_mnt = __lookup_mnt(path->mnt, path->dentry);
628 m = child_mnt ? &child_mnt->mnt : NULL;
629 } while (!legitimize_mnt(m, seq));
630 rcu_read_unlock();
631 return m;
a05964f3
RP
632}
633
84d17192
AV
634static struct mountpoint *new_mountpoint(struct dentry *dentry)
635{
636 struct list_head *chain = mountpoint_hashtable + hash(NULL, dentry);
637 struct mountpoint *mp;
eed81007 638 int ret;
84d17192
AV
639
640 list_for_each_entry(mp, chain, m_hash) {
641 if (mp->m_dentry == dentry) {
642 /* might be worth a WARN_ON() */
643 if (d_unlinked(dentry))
644 return ERR_PTR(-ENOENT);
645 mp->m_count++;
646 return mp;
647 }
648 }
649
650 mp = kmalloc(sizeof(struct mountpoint), GFP_KERNEL);
651 if (!mp)
652 return ERR_PTR(-ENOMEM);
653
eed81007
MS
654 ret = d_set_mounted(dentry);
655 if (ret) {
84d17192 656 kfree(mp);
eed81007 657 return ERR_PTR(ret);
84d17192 658 }
eed81007 659
84d17192
AV
660 mp->m_dentry = dentry;
661 mp->m_count = 1;
662 list_add(&mp->m_hash, chain);
663 return mp;
664}
665
666static void put_mountpoint(struct mountpoint *mp)
667{
668 if (!--mp->m_count) {
669 struct dentry *dentry = mp->m_dentry;
670 spin_lock(&dentry->d_lock);
671 dentry->d_flags &= ~DCACHE_MOUNTED;
672 spin_unlock(&dentry->d_lock);
673 list_del(&mp->m_hash);
674 kfree(mp);
675 }
676}
677
143c8c91 678static inline int check_mnt(struct mount *mnt)
1da177e4 679{
6b3286ed 680 return mnt->mnt_ns == current->nsproxy->mnt_ns;
1da177e4
LT
681}
682
99b7db7b
NP
683/*
684 * vfsmount lock must be held for write
685 */
6b3286ed 686static void touch_mnt_namespace(struct mnt_namespace *ns)
5addc5dd
AV
687{
688 if (ns) {
689 ns->event = ++event;
690 wake_up_interruptible(&ns->poll);
691 }
692}
693
99b7db7b
NP
694/*
695 * vfsmount lock must be held for write
696 */
6b3286ed 697static void __touch_mnt_namespace(struct mnt_namespace *ns)
5addc5dd
AV
698{
699 if (ns && ns->event != event) {
700 ns->event = event;
701 wake_up_interruptible(&ns->poll);
702 }
703}
704
99b7db7b
NP
705/*
706 * vfsmount lock must be held for write
707 */
419148da
AV
708static void detach_mnt(struct mount *mnt, struct path *old_path)
709{
a73324da 710 old_path->dentry = mnt->mnt_mountpoint;
0714a533
AV
711 old_path->mnt = &mnt->mnt_parent->mnt;
712 mnt->mnt_parent = mnt;
a73324da 713 mnt->mnt_mountpoint = mnt->mnt.mnt_root;
6b41d536 714 list_del_init(&mnt->mnt_child);
1b8e5564 715 list_del_init(&mnt->mnt_hash);
84d17192
AV
716 put_mountpoint(mnt->mnt_mp);
717 mnt->mnt_mp = NULL;
1da177e4
LT
718}
719
99b7db7b
NP
720/*
721 * vfsmount lock must be held for write
722 */
84d17192
AV
723void mnt_set_mountpoint(struct mount *mnt,
724 struct mountpoint *mp,
44d964d6 725 struct mount *child_mnt)
b90fa9ae 726{
84d17192 727 mp->m_count++;
3a2393d7 728 mnt_add_count(mnt, 1); /* essentially, that's mntget */
84d17192 729 child_mnt->mnt_mountpoint = dget(mp->m_dentry);
3a2393d7 730 child_mnt->mnt_parent = mnt;
84d17192 731 child_mnt->mnt_mp = mp;
b90fa9ae
RP
732}
733
99b7db7b
NP
734/*
735 * vfsmount lock must be held for write
736 */
84d17192
AV
737static void attach_mnt(struct mount *mnt,
738 struct mount *parent,
739 struct mountpoint *mp)
1da177e4 740{
84d17192 741 mnt_set_mountpoint(parent, mp, mnt);
1b8e5564 742 list_add_tail(&mnt->mnt_hash, mount_hashtable +
84d17192
AV
743 hash(&parent->mnt, mp->m_dentry));
744 list_add_tail(&mnt->mnt_child, &parent->mnt_mounts);
b90fa9ae
RP
745}
746
747/*
99b7db7b 748 * vfsmount lock must be held for write
b90fa9ae 749 */
4b2619a5 750static void commit_tree(struct mount *mnt)
b90fa9ae 751{
0714a533 752 struct mount *parent = mnt->mnt_parent;
83adc753 753 struct mount *m;
b90fa9ae 754 LIST_HEAD(head);
143c8c91 755 struct mnt_namespace *n = parent->mnt_ns;
b90fa9ae 756
0714a533 757 BUG_ON(parent == mnt);
b90fa9ae 758
1a4eeaf2 759 list_add_tail(&head, &mnt->mnt_list);
f7a99c5b 760 list_for_each_entry(m, &head, mnt_list)
143c8c91 761 m->mnt_ns = n;
f03c6599 762
b90fa9ae
RP
763 list_splice(&head, n->list.prev);
764
1b8e5564 765 list_add_tail(&mnt->mnt_hash, mount_hashtable +
a73324da 766 hash(&parent->mnt, mnt->mnt_mountpoint));
6b41d536 767 list_add_tail(&mnt->mnt_child, &parent->mnt_mounts);
6b3286ed 768 touch_mnt_namespace(n);
1da177e4
LT
769}
770
909b0a88 771static struct mount *next_mnt(struct mount *p, struct mount *root)
1da177e4 772{
6b41d536
AV
773 struct list_head *next = p->mnt_mounts.next;
774 if (next == &p->mnt_mounts) {
1da177e4 775 while (1) {
909b0a88 776 if (p == root)
1da177e4 777 return NULL;
6b41d536
AV
778 next = p->mnt_child.next;
779 if (next != &p->mnt_parent->mnt_mounts)
1da177e4 780 break;
0714a533 781 p = p->mnt_parent;
1da177e4
LT
782 }
783 }
6b41d536 784 return list_entry(next, struct mount, mnt_child);
1da177e4
LT
785}
786
315fc83e 787static struct mount *skip_mnt_tree(struct mount *p)
9676f0c6 788{
6b41d536
AV
789 struct list_head *prev = p->mnt_mounts.prev;
790 while (prev != &p->mnt_mounts) {
791 p = list_entry(prev, struct mount, mnt_child);
792 prev = p->mnt_mounts.prev;
9676f0c6
RP
793 }
794 return p;
795}
796
9d412a43
AV
797struct vfsmount *
798vfs_kern_mount(struct file_system_type *type, int flags, const char *name, void *data)
799{
b105e270 800 struct mount *mnt;
9d412a43
AV
801 struct dentry *root;
802
803 if (!type)
804 return ERR_PTR(-ENODEV);
805
806 mnt = alloc_vfsmnt(name);
807 if (!mnt)
808 return ERR_PTR(-ENOMEM);
809
810 if (flags & MS_KERNMOUNT)
b105e270 811 mnt->mnt.mnt_flags = MNT_INTERNAL;
9d412a43
AV
812
813 root = mount_fs(type, flags, name, data);
814 if (IS_ERR(root)) {
815 free_vfsmnt(mnt);
816 return ERR_CAST(root);
817 }
818
b105e270
AV
819 mnt->mnt.mnt_root = root;
820 mnt->mnt.mnt_sb = root->d_sb;
a73324da 821 mnt->mnt_mountpoint = mnt->mnt.mnt_root;
0714a533 822 mnt->mnt_parent = mnt;
719ea2fb 823 lock_mount_hash();
39f7c4db 824 list_add_tail(&mnt->mnt_instance, &root->d_sb->s_mounts);
719ea2fb 825 unlock_mount_hash();
b105e270 826 return &mnt->mnt;
9d412a43
AV
827}
828EXPORT_SYMBOL_GPL(vfs_kern_mount);
829
87129cc0 830static struct mount *clone_mnt(struct mount *old, struct dentry *root,
36341f64 831 int flag)
1da177e4 832{
87129cc0 833 struct super_block *sb = old->mnt.mnt_sb;
be34d1a3
DH
834 struct mount *mnt;
835 int err;
1da177e4 836
be34d1a3
DH
837 mnt = alloc_vfsmnt(old->mnt_devname);
838 if (!mnt)
839 return ERR_PTR(-ENOMEM);
719f5d7f 840
7a472ef4 841 if (flag & (CL_SLAVE | CL_PRIVATE | CL_SHARED_TO_SLAVE))
be34d1a3
DH
842 mnt->mnt_group_id = 0; /* not a peer of original */
843 else
844 mnt->mnt_group_id = old->mnt_group_id;
b90fa9ae 845
be34d1a3
DH
846 if ((flag & CL_MAKE_SHARED) && !mnt->mnt_group_id) {
847 err = mnt_alloc_group_id(mnt);
848 if (err)
849 goto out_free;
1da177e4 850 }
be34d1a3
DH
851
852 mnt->mnt.mnt_flags = old->mnt.mnt_flags & ~MNT_WRITE_HOLD;
132c94e3
EB
853 /* Don't allow unprivileged users to change mount flags */
854 if ((flag & CL_UNPRIVILEGED) && (mnt->mnt.mnt_flags & MNT_READONLY))
855 mnt->mnt.mnt_flags |= MNT_LOCK_READONLY;
856
5ff9d8a6
EB
857 /* Don't allow unprivileged users to reveal what is under a mount */
858 if ((flag & CL_UNPRIVILEGED) && list_empty(&old->mnt_expire))
859 mnt->mnt.mnt_flags |= MNT_LOCKED;
860
be34d1a3
DH
861 atomic_inc(&sb->s_active);
862 mnt->mnt.mnt_sb = sb;
863 mnt->mnt.mnt_root = dget(root);
864 mnt->mnt_mountpoint = mnt->mnt.mnt_root;
865 mnt->mnt_parent = mnt;
719ea2fb 866 lock_mount_hash();
be34d1a3 867 list_add_tail(&mnt->mnt_instance, &sb->s_mounts);
719ea2fb 868 unlock_mount_hash();
be34d1a3 869
7a472ef4
EB
870 if ((flag & CL_SLAVE) ||
871 ((flag & CL_SHARED_TO_SLAVE) && IS_MNT_SHARED(old))) {
be34d1a3
DH
872 list_add(&mnt->mnt_slave, &old->mnt_slave_list);
873 mnt->mnt_master = old;
874 CLEAR_MNT_SHARED(mnt);
875 } else if (!(flag & CL_PRIVATE)) {
876 if ((flag & CL_MAKE_SHARED) || IS_MNT_SHARED(old))
877 list_add(&mnt->mnt_share, &old->mnt_share);
878 if (IS_MNT_SLAVE(old))
879 list_add(&mnt->mnt_slave, &old->mnt_slave);
880 mnt->mnt_master = old->mnt_master;
881 }
882 if (flag & CL_MAKE_SHARED)
883 set_mnt_shared(mnt);
884
885 /* stick the duplicate mount on the same expiry list
886 * as the original if that was on one */
887 if (flag & CL_EXPIRE) {
888 if (!list_empty(&old->mnt_expire))
889 list_add(&mnt->mnt_expire, &old->mnt_expire);
890 }
891
cb338d06 892 return mnt;
719f5d7f
MS
893
894 out_free:
895 free_vfsmnt(mnt);
be34d1a3 896 return ERR_PTR(err);
1da177e4
LT
897}
898
48a066e7
AV
899static void delayed_free(struct rcu_head *head)
900{
901 struct mount *mnt = container_of(head, struct mount, mnt_rcu);
902 kfree(mnt->mnt_devname);
903#ifdef CONFIG_SMP
904 free_percpu(mnt->mnt_pcp);
905#endif
906 kmem_cache_free(mnt_cache, mnt);
907}
908
900148dc 909static void mntput_no_expire(struct mount *mnt)
b3e19d92 910{
b3e19d92 911put_again:
48a066e7
AV
912 rcu_read_lock();
913 mnt_add_count(mnt, -1);
914 if (likely(mnt->mnt_ns)) { /* shouldn't be the last one */
915 rcu_read_unlock();
f03c6599 916 return;
b3e19d92 917 }
719ea2fb 918 lock_mount_hash();
b3e19d92 919 if (mnt_get_count(mnt)) {
48a066e7 920 rcu_read_unlock();
719ea2fb 921 unlock_mount_hash();
99b7db7b
NP
922 return;
923 }
863d684f
AV
924 if (unlikely(mnt->mnt_pinned)) {
925 mnt_add_count(mnt, mnt->mnt_pinned + 1);
926 mnt->mnt_pinned = 0;
48a066e7 927 rcu_read_unlock();
719ea2fb 928 unlock_mount_hash();
900148dc 929 acct_auto_close_mnt(&mnt->mnt);
b3e19d92 930 goto put_again;
7b7b1ace 931 }
48a066e7
AV
932 if (unlikely(mnt->mnt.mnt_flags & MNT_DOOMED)) {
933 rcu_read_unlock();
934 unlock_mount_hash();
935 return;
936 }
937 mnt->mnt.mnt_flags |= MNT_DOOMED;
938 rcu_read_unlock();
962830df 939
39f7c4db 940 list_del(&mnt->mnt_instance);
719ea2fb 941 unlock_mount_hash();
649a795a
AV
942
943 /*
944 * This probably indicates that somebody messed
945 * up a mnt_want/drop_write() pair. If this
946 * happens, the filesystem was probably unable
947 * to make r/w->r/o transitions.
948 */
949 /*
950 * The locking used to deal with mnt_count decrement provides barriers,
951 * so mnt_get_writers() below is safe.
952 */
953 WARN_ON(mnt_get_writers(mnt));
954 fsnotify_vfsmount_delete(&mnt->mnt);
955 dput(mnt->mnt.mnt_root);
956 deactivate_super(mnt->mnt.mnt_sb);
48a066e7
AV
957 mnt_free_id(mnt);
958 call_rcu(&mnt->mnt_rcu, delayed_free);
b3e19d92 959}
b3e19d92
NP
960
961void mntput(struct vfsmount *mnt)
962{
963 if (mnt) {
863d684f 964 struct mount *m = real_mount(mnt);
b3e19d92 965 /* avoid cacheline pingpong, hope gcc doesn't get "smart" */
863d684f
AV
966 if (unlikely(m->mnt_expiry_mark))
967 m->mnt_expiry_mark = 0;
968 mntput_no_expire(m);
b3e19d92
NP
969 }
970}
971EXPORT_SYMBOL(mntput);
972
973struct vfsmount *mntget(struct vfsmount *mnt)
974{
975 if (mnt)
83adc753 976 mnt_add_count(real_mount(mnt), 1);
b3e19d92
NP
977 return mnt;
978}
979EXPORT_SYMBOL(mntget);
980
7b7b1ace
AV
981void mnt_pin(struct vfsmount *mnt)
982{
719ea2fb 983 lock_mount_hash();
863d684f 984 real_mount(mnt)->mnt_pinned++;
719ea2fb 985 unlock_mount_hash();
7b7b1ace 986}
7b7b1ace
AV
987EXPORT_SYMBOL(mnt_pin);
988
863d684f 989void mnt_unpin(struct vfsmount *m)
7b7b1ace 990{
863d684f 991 struct mount *mnt = real_mount(m);
719ea2fb 992 lock_mount_hash();
7b7b1ace 993 if (mnt->mnt_pinned) {
863d684f 994 mnt_add_count(mnt, 1);
7b7b1ace
AV
995 mnt->mnt_pinned--;
996 }
719ea2fb 997 unlock_mount_hash();
7b7b1ace 998}
7b7b1ace 999EXPORT_SYMBOL(mnt_unpin);
1da177e4 1000
b3b304a2
MS
1001static inline void mangle(struct seq_file *m, const char *s)
1002{
1003 seq_escape(m, s, " \t\n\\");
1004}
1005
1006/*
1007 * Simple .show_options callback for filesystems which don't want to
1008 * implement more complex mount option showing.
1009 *
1010 * See also save_mount_options().
1011 */
34c80b1d 1012int generic_show_options(struct seq_file *m, struct dentry *root)
b3b304a2 1013{
2a32cebd
AV
1014 const char *options;
1015
1016 rcu_read_lock();
34c80b1d 1017 options = rcu_dereference(root->d_sb->s_options);
b3b304a2
MS
1018
1019 if (options != NULL && options[0]) {
1020 seq_putc(m, ',');
1021 mangle(m, options);
1022 }
2a32cebd 1023 rcu_read_unlock();
b3b304a2
MS
1024
1025 return 0;
1026}
1027EXPORT_SYMBOL(generic_show_options);
1028
1029/*
1030 * If filesystem uses generic_show_options(), this function should be
1031 * called from the fill_super() callback.
1032 *
1033 * The .remount_fs callback usually needs to be handled in a special
1034 * way, to make sure, that previous options are not overwritten if the
1035 * remount fails.
1036 *
1037 * Also note, that if the filesystem's .remount_fs function doesn't
1038 * reset all options to their default value, but changes only newly
1039 * given options, then the displayed options will not reflect reality
1040 * any more.
1041 */
1042void save_mount_options(struct super_block *sb, char *options)
1043{
2a32cebd
AV
1044 BUG_ON(sb->s_options);
1045 rcu_assign_pointer(sb->s_options, kstrdup(options, GFP_KERNEL));
b3b304a2
MS
1046}
1047EXPORT_SYMBOL(save_mount_options);
1048
2a32cebd
AV
1049void replace_mount_options(struct super_block *sb, char *options)
1050{
1051 char *old = sb->s_options;
1052 rcu_assign_pointer(sb->s_options, options);
1053 if (old) {
1054 synchronize_rcu();
1055 kfree(old);
1056 }
1057}
1058EXPORT_SYMBOL(replace_mount_options);
1059
a1a2c409 1060#ifdef CONFIG_PROC_FS
0226f492 1061/* iterator; we want it to have access to namespace_sem, thus here... */
1da177e4
LT
1062static void *m_start(struct seq_file *m, loff_t *pos)
1063{
6ce6e24e 1064 struct proc_mounts *p = proc_mounts(m);
1da177e4 1065
390c6843 1066 down_read(&namespace_sem);
a1a2c409 1067 return seq_list_start(&p->ns->list, *pos);
1da177e4
LT
1068}
1069
1070static void *m_next(struct seq_file *m, void *v, loff_t *pos)
1071{
6ce6e24e 1072 struct proc_mounts *p = proc_mounts(m);
b0765fb8 1073
a1a2c409 1074 return seq_list_next(v, &p->ns->list, pos);
1da177e4
LT
1075}
1076
1077static void m_stop(struct seq_file *m, void *v)
1078{
390c6843 1079 up_read(&namespace_sem);
1da177e4
LT
1080}
1081
0226f492 1082static int m_show(struct seq_file *m, void *v)
2d4d4864 1083{
6ce6e24e 1084 struct proc_mounts *p = proc_mounts(m);
1a4eeaf2 1085 struct mount *r = list_entry(v, struct mount, mnt_list);
0226f492 1086 return p->show(m, &r->mnt);
1da177e4
LT
1087}
1088
a1a2c409 1089const struct seq_operations mounts_op = {
1da177e4
LT
1090 .start = m_start,
1091 .next = m_next,
1092 .stop = m_stop,
0226f492 1093 .show = m_show,
b4629fe2 1094};
a1a2c409 1095#endif /* CONFIG_PROC_FS */
b4629fe2 1096
1da177e4
LT
1097/**
1098 * may_umount_tree - check if a mount tree is busy
1099 * @mnt: root of mount tree
1100 *
1101 * This is called to check if a tree of mounts has any
1102 * open files, pwds, chroots or sub mounts that are
1103 * busy.
1104 */
909b0a88 1105int may_umount_tree(struct vfsmount *m)
1da177e4 1106{
909b0a88 1107 struct mount *mnt = real_mount(m);
36341f64
RP
1108 int actual_refs = 0;
1109 int minimum_refs = 0;
315fc83e 1110 struct mount *p;
909b0a88 1111 BUG_ON(!m);
1da177e4 1112
b3e19d92 1113 /* write lock needed for mnt_get_count */
719ea2fb 1114 lock_mount_hash();
909b0a88 1115 for (p = mnt; p; p = next_mnt(p, mnt)) {
83adc753 1116 actual_refs += mnt_get_count(p);
1da177e4 1117 minimum_refs += 2;
1da177e4 1118 }
719ea2fb 1119 unlock_mount_hash();
1da177e4
LT
1120
1121 if (actual_refs > minimum_refs)
e3474a8e 1122 return 0;
1da177e4 1123
e3474a8e 1124 return 1;
1da177e4
LT
1125}
1126
1127EXPORT_SYMBOL(may_umount_tree);
1128
1129/**
1130 * may_umount - check if a mount point is busy
1131 * @mnt: root of mount
1132 *
1133 * This is called to check if a mount point has any
1134 * open files, pwds, chroots or sub mounts. If the
1135 * mount has sub mounts this will return busy
1136 * regardless of whether the sub mounts are busy.
1137 *
1138 * Doesn't take quota and stuff into account. IOW, in some cases it will
1139 * give false negatives. The main reason why it's here is that we need
1140 * a non-destructive way to look for easily umountable filesystems.
1141 */
1142int may_umount(struct vfsmount *mnt)
1143{
e3474a8e 1144 int ret = 1;
8ad08d8a 1145 down_read(&namespace_sem);
719ea2fb 1146 lock_mount_hash();
1ab59738 1147 if (propagate_mount_busy(real_mount(mnt), 2))
e3474a8e 1148 ret = 0;
719ea2fb 1149 unlock_mount_hash();
8ad08d8a 1150 up_read(&namespace_sem);
a05964f3 1151 return ret;
1da177e4
LT
1152}
1153
1154EXPORT_SYMBOL(may_umount);
1155
e3197d83
AV
1156static LIST_HEAD(unmounted); /* protected by namespace_sem */
1157
97216be0 1158static void namespace_unlock(void)
70fbcdf4 1159{
d5e50f74 1160 struct mount *mnt;
97216be0
AV
1161 LIST_HEAD(head);
1162
1163 if (likely(list_empty(&unmounted))) {
1164 up_write(&namespace_sem);
1165 return;
1166 }
1167
1168 list_splice_init(&unmounted, &head);
1169 up_write(&namespace_sem);
1170
48a066e7
AV
1171 synchronize_rcu();
1172
97216be0
AV
1173 while (!list_empty(&head)) {
1174 mnt = list_first_entry(&head, struct mount, mnt_hash);
1b8e5564 1175 list_del_init(&mnt->mnt_hash);
aba809cf
AV
1176 if (mnt->mnt_ex_mountpoint.mnt)
1177 path_put(&mnt->mnt_ex_mountpoint);
d5e50f74 1178 mntput(&mnt->mnt);
70fbcdf4
RP
1179 }
1180}
1181
97216be0 1182static inline void namespace_lock(void)
e3197d83 1183{
97216be0 1184 down_write(&namespace_sem);
e3197d83
AV
1185}
1186
99b7db7b 1187/*
48a066e7 1188 * mount_lock must be held
99b7db7b 1189 * namespace_sem must be held for write
48a066e7
AV
1190 * how = 0 => just this tree, don't propagate
1191 * how = 1 => propagate; we know that nobody else has reference to any victims
1192 * how = 2 => lazy umount
99b7db7b 1193 */
48a066e7 1194void umount_tree(struct mount *mnt, int how)
1da177e4 1195{
7b8a53fd 1196 LIST_HEAD(tmp_list);
315fc83e 1197 struct mount *p;
1da177e4 1198
909b0a88 1199 for (p = mnt; p; p = next_mnt(p, mnt))
1b8e5564 1200 list_move(&p->mnt_hash, &tmp_list);
1da177e4 1201
48a066e7 1202 if (how)
7b8a53fd 1203 propagate_umount(&tmp_list);
a05964f3 1204
1b8e5564 1205 list_for_each_entry(p, &tmp_list, mnt_hash) {
6776db3d 1206 list_del_init(&p->mnt_expire);
1a4eeaf2 1207 list_del_init(&p->mnt_list);
143c8c91
AV
1208 __touch_mnt_namespace(p->mnt_ns);
1209 p->mnt_ns = NULL;
48a066e7
AV
1210 if (how < 2)
1211 p->mnt.mnt_flags |= MNT_SYNC_UMOUNT;
6b41d536 1212 list_del_init(&p->mnt_child);
676da58d 1213 if (mnt_has_parent(p)) {
84d17192 1214 put_mountpoint(p->mnt_mp);
aba809cf
AV
1215 /* move the reference to mountpoint into ->mnt_ex_mountpoint */
1216 p->mnt_ex_mountpoint.dentry = p->mnt_mountpoint;
1217 p->mnt_ex_mountpoint.mnt = &p->mnt_parent->mnt;
1218 p->mnt_mountpoint = p->mnt.mnt_root;
1219 p->mnt_parent = p;
84d17192 1220 p->mnt_mp = NULL;
7c4b93d8 1221 }
0f0afb1d 1222 change_mnt_propagation(p, MS_PRIVATE);
1da177e4 1223 }
328e6d90 1224 list_splice(&tmp_list, &unmounted);
1da177e4
LT
1225}
1226
b54b9be7 1227static void shrink_submounts(struct mount *mnt);
c35038be 1228
1ab59738 1229static int do_umount(struct mount *mnt, int flags)
1da177e4 1230{
1ab59738 1231 struct super_block *sb = mnt->mnt.mnt_sb;
1da177e4
LT
1232 int retval;
1233
1ab59738 1234 retval = security_sb_umount(&mnt->mnt, flags);
1da177e4
LT
1235 if (retval)
1236 return retval;
1237
1238 /*
1239 * Allow userspace to request a mountpoint be expired rather than
1240 * unmounting unconditionally. Unmount only happens if:
1241 * (1) the mark is already set (the mark is cleared by mntput())
1242 * (2) the usage count == 1 [parent vfsmount] + 1 [sys_umount]
1243 */
1244 if (flags & MNT_EXPIRE) {
1ab59738 1245 if (&mnt->mnt == current->fs->root.mnt ||
1da177e4
LT
1246 flags & (MNT_FORCE | MNT_DETACH))
1247 return -EINVAL;
1248
b3e19d92
NP
1249 /*
1250 * probably don't strictly need the lock here if we examined
1251 * all race cases, but it's a slowpath.
1252 */
719ea2fb 1253 lock_mount_hash();
83adc753 1254 if (mnt_get_count(mnt) != 2) {
719ea2fb 1255 unlock_mount_hash();
1da177e4 1256 return -EBUSY;
b3e19d92 1257 }
719ea2fb 1258 unlock_mount_hash();
1da177e4 1259
863d684f 1260 if (!xchg(&mnt->mnt_expiry_mark, 1))
1da177e4
LT
1261 return -EAGAIN;
1262 }
1263
1264 /*
1265 * If we may have to abort operations to get out of this
1266 * mount, and they will themselves hold resources we must
1267 * allow the fs to do things. In the Unix tradition of
1268 * 'Gee thats tricky lets do it in userspace' the umount_begin
1269 * might fail to complete on the first run through as other tasks
1270 * must return, and the like. Thats for the mount program to worry
1271 * about for the moment.
1272 */
1273
42faad99 1274 if (flags & MNT_FORCE && sb->s_op->umount_begin) {
42faad99 1275 sb->s_op->umount_begin(sb);
42faad99 1276 }
1da177e4
LT
1277
1278 /*
1279 * No sense to grab the lock for this test, but test itself looks
1280 * somewhat bogus. Suggestions for better replacement?
1281 * Ho-hum... In principle, we might treat that as umount + switch
1282 * to rootfs. GC would eventually take care of the old vfsmount.
1283 * Actually it makes sense, especially if rootfs would contain a
1284 * /reboot - static binary that would close all descriptors and
1285 * call reboot(9). Then init(8) could umount root and exec /reboot.
1286 */
1ab59738 1287 if (&mnt->mnt == current->fs->root.mnt && !(flags & MNT_DETACH)) {
1da177e4
LT
1288 /*
1289 * Special case for "unmounting" root ...
1290 * we just try to remount it readonly.
1291 */
1292 down_write(&sb->s_umount);
4aa98cf7 1293 if (!(sb->s_flags & MS_RDONLY))
1da177e4 1294 retval = do_remount_sb(sb, MS_RDONLY, NULL, 0);
1da177e4
LT
1295 up_write(&sb->s_umount);
1296 return retval;
1297 }
1298
97216be0 1299 namespace_lock();
719ea2fb 1300 lock_mount_hash();
5addc5dd 1301 event++;
1da177e4 1302
48a066e7 1303 if (flags & MNT_DETACH) {
1a4eeaf2 1304 if (!list_empty(&mnt->mnt_list))
48a066e7 1305 umount_tree(mnt, 2);
1da177e4 1306 retval = 0;
48a066e7
AV
1307 } else {
1308 shrink_submounts(mnt);
1309 retval = -EBUSY;
1310 if (!propagate_mount_busy(mnt, 2)) {
1311 if (!list_empty(&mnt->mnt_list))
1312 umount_tree(mnt, 1);
1313 retval = 0;
1314 }
1da177e4 1315 }
719ea2fb 1316 unlock_mount_hash();
e3197d83 1317 namespace_unlock();
1da177e4
LT
1318 return retval;
1319}
1320
9b40bc90
AV
1321/*
1322 * Is the caller allowed to modify his namespace?
1323 */
1324static inline bool may_mount(void)
1325{
1326 return ns_capable(current->nsproxy->mnt_ns->user_ns, CAP_SYS_ADMIN);
1327}
1328
1da177e4
LT
1329/*
1330 * Now umount can handle mount points as well as block devices.
1331 * This is important for filesystems which use unnamed block devices.
1332 *
1333 * We now support a flag for forced unmount like the other 'big iron'
1334 * unixes. Our API is identical to OSF/1 to avoid making a mess of AMD
1335 */
1336
bdc480e3 1337SYSCALL_DEFINE2(umount, char __user *, name, int, flags)
1da177e4 1338{
2d8f3038 1339 struct path path;
900148dc 1340 struct mount *mnt;
1da177e4 1341 int retval;
db1f05bb 1342 int lookup_flags = 0;
1da177e4 1343
db1f05bb
MS
1344 if (flags & ~(MNT_FORCE | MNT_DETACH | MNT_EXPIRE | UMOUNT_NOFOLLOW))
1345 return -EINVAL;
1346
9b40bc90
AV
1347 if (!may_mount())
1348 return -EPERM;
1349
db1f05bb
MS
1350 if (!(flags & UMOUNT_NOFOLLOW))
1351 lookup_flags |= LOOKUP_FOLLOW;
1352
197df04c 1353 retval = user_path_mountpoint_at(AT_FDCWD, name, lookup_flags, &path);
1da177e4
LT
1354 if (retval)
1355 goto out;
900148dc 1356 mnt = real_mount(path.mnt);
1da177e4 1357 retval = -EINVAL;
2d8f3038 1358 if (path.dentry != path.mnt->mnt_root)
1da177e4 1359 goto dput_and_out;
143c8c91 1360 if (!check_mnt(mnt))
1da177e4 1361 goto dput_and_out;
5ff9d8a6
EB
1362 if (mnt->mnt.mnt_flags & MNT_LOCKED)
1363 goto dput_and_out;
1da177e4 1364
900148dc 1365 retval = do_umount(mnt, flags);
1da177e4 1366dput_and_out:
429731b1 1367 /* we mustn't call path_put() as that would clear mnt_expiry_mark */
2d8f3038 1368 dput(path.dentry);
900148dc 1369 mntput_no_expire(mnt);
1da177e4
LT
1370out:
1371 return retval;
1372}
1373
1374#ifdef __ARCH_WANT_SYS_OLDUMOUNT
1375
1376/*
b58fed8b 1377 * The 2.0 compatible umount. No flags.
1da177e4 1378 */
bdc480e3 1379SYSCALL_DEFINE1(oldumount, char __user *, name)
1da177e4 1380{
b58fed8b 1381 return sys_umount(name, 0);
1da177e4
LT
1382}
1383
1384#endif
1385
4ce5d2b1 1386static bool is_mnt_ns_file(struct dentry *dentry)
8823c079 1387{
4ce5d2b1
EB
1388 /* Is this a proxy for a mount namespace? */
1389 struct inode *inode = dentry->d_inode;
0bb80f24 1390 struct proc_ns *ei;
8823c079
EB
1391
1392 if (!proc_ns_inode(inode))
1393 return false;
1394
0bb80f24 1395 ei = get_proc_ns(inode);
8823c079
EB
1396 if (ei->ns_ops != &mntns_operations)
1397 return false;
1398
4ce5d2b1
EB
1399 return true;
1400}
1401
1402static bool mnt_ns_loop(struct dentry *dentry)
1403{
1404 /* Could bind mounting the mount namespace inode cause a
1405 * mount namespace loop?
1406 */
1407 struct mnt_namespace *mnt_ns;
1408 if (!is_mnt_ns_file(dentry))
1409 return false;
1410
1411 mnt_ns = get_proc_ns(dentry->d_inode)->ns;
8823c079
EB
1412 return current->nsproxy->mnt_ns->seq >= mnt_ns->seq;
1413}
1414
87129cc0 1415struct mount *copy_tree(struct mount *mnt, struct dentry *dentry,
36341f64 1416 int flag)
1da177e4 1417{
84d17192 1418 struct mount *res, *p, *q, *r, *parent;
1da177e4 1419
4ce5d2b1
EB
1420 if (!(flag & CL_COPY_UNBINDABLE) && IS_MNT_UNBINDABLE(mnt))
1421 return ERR_PTR(-EINVAL);
1422
1423 if (!(flag & CL_COPY_MNT_NS_FILE) && is_mnt_ns_file(dentry))
be34d1a3 1424 return ERR_PTR(-EINVAL);
9676f0c6 1425
36341f64 1426 res = q = clone_mnt(mnt, dentry, flag);
be34d1a3
DH
1427 if (IS_ERR(q))
1428 return q;
1429
5ff9d8a6 1430 q->mnt.mnt_flags &= ~MNT_LOCKED;
a73324da 1431 q->mnt_mountpoint = mnt->mnt_mountpoint;
1da177e4
LT
1432
1433 p = mnt;
6b41d536 1434 list_for_each_entry(r, &mnt->mnt_mounts, mnt_child) {
315fc83e 1435 struct mount *s;
7ec02ef1 1436 if (!is_subdir(r->mnt_mountpoint, dentry))
1da177e4
LT
1437 continue;
1438
909b0a88 1439 for (s = r; s; s = next_mnt(s, r)) {
4ce5d2b1
EB
1440 if (!(flag & CL_COPY_UNBINDABLE) &&
1441 IS_MNT_UNBINDABLE(s)) {
1442 s = skip_mnt_tree(s);
1443 continue;
1444 }
1445 if (!(flag & CL_COPY_MNT_NS_FILE) &&
1446 is_mnt_ns_file(s->mnt.mnt_root)) {
9676f0c6
RP
1447 s = skip_mnt_tree(s);
1448 continue;
1449 }
0714a533
AV
1450 while (p != s->mnt_parent) {
1451 p = p->mnt_parent;
1452 q = q->mnt_parent;
1da177e4 1453 }
87129cc0 1454 p = s;
84d17192 1455 parent = q;
87129cc0 1456 q = clone_mnt(p, p->mnt.mnt_root, flag);
be34d1a3
DH
1457 if (IS_ERR(q))
1458 goto out;
719ea2fb 1459 lock_mount_hash();
1a4eeaf2 1460 list_add_tail(&q->mnt_list, &res->mnt_list);
84d17192 1461 attach_mnt(q, parent, p->mnt_mp);
719ea2fb 1462 unlock_mount_hash();
1da177e4
LT
1463 }
1464 }
1465 return res;
be34d1a3 1466out:
1da177e4 1467 if (res) {
719ea2fb 1468 lock_mount_hash();
328e6d90 1469 umount_tree(res, 0);
719ea2fb 1470 unlock_mount_hash();
1da177e4 1471 }
be34d1a3 1472 return q;
1da177e4
LT
1473}
1474
be34d1a3
DH
1475/* Caller should check returned pointer for errors */
1476
589ff870 1477struct vfsmount *collect_mounts(struct path *path)
8aec0809 1478{
cb338d06 1479 struct mount *tree;
97216be0 1480 namespace_lock();
87129cc0
AV
1481 tree = copy_tree(real_mount(path->mnt), path->dentry,
1482 CL_COPY_ALL | CL_PRIVATE);
328e6d90 1483 namespace_unlock();
be34d1a3 1484 if (IS_ERR(tree))
52e220d3 1485 return ERR_CAST(tree);
be34d1a3 1486 return &tree->mnt;
8aec0809
AV
1487}
1488
1489void drop_collected_mounts(struct vfsmount *mnt)
1490{
97216be0 1491 namespace_lock();
719ea2fb 1492 lock_mount_hash();
328e6d90 1493 umount_tree(real_mount(mnt), 0);
719ea2fb 1494 unlock_mount_hash();
3ab6abee 1495 namespace_unlock();
8aec0809
AV
1496}
1497
1f707137
AV
1498int iterate_mounts(int (*f)(struct vfsmount *, void *), void *arg,
1499 struct vfsmount *root)
1500{
1a4eeaf2 1501 struct mount *mnt;
1f707137
AV
1502 int res = f(root, arg);
1503 if (res)
1504 return res;
1a4eeaf2
AV
1505 list_for_each_entry(mnt, &real_mount(root)->mnt_list, mnt_list) {
1506 res = f(&mnt->mnt, arg);
1f707137
AV
1507 if (res)
1508 return res;
1509 }
1510 return 0;
1511}
1512
4b8b21f4 1513static void cleanup_group_ids(struct mount *mnt, struct mount *end)
719f5d7f 1514{
315fc83e 1515 struct mount *p;
719f5d7f 1516
909b0a88 1517 for (p = mnt; p != end; p = next_mnt(p, mnt)) {
fc7be130 1518 if (p->mnt_group_id && !IS_MNT_SHARED(p))
4b8b21f4 1519 mnt_release_group_id(p);
719f5d7f
MS
1520 }
1521}
1522
4b8b21f4 1523static int invent_group_ids(struct mount *mnt, bool recurse)
719f5d7f 1524{
315fc83e 1525 struct mount *p;
719f5d7f 1526
909b0a88 1527 for (p = mnt; p; p = recurse ? next_mnt(p, mnt) : NULL) {
fc7be130 1528 if (!p->mnt_group_id && !IS_MNT_SHARED(p)) {
4b8b21f4 1529 int err = mnt_alloc_group_id(p);
719f5d7f 1530 if (err) {
4b8b21f4 1531 cleanup_group_ids(mnt, p);
719f5d7f
MS
1532 return err;
1533 }
1534 }
1535 }
1536
1537 return 0;
1538}
1539
b90fa9ae
RP
1540/*
1541 * @source_mnt : mount tree to be attached
21444403
RP
1542 * @nd : place the mount tree @source_mnt is attached
1543 * @parent_nd : if non-null, detach the source_mnt from its parent and
1544 * store the parent mount and mountpoint dentry.
1545 * (done when source_mnt is moved)
b90fa9ae
RP
1546 *
1547 * NOTE: in the table below explains the semantics when a source mount
1548 * of a given type is attached to a destination mount of a given type.
9676f0c6
RP
1549 * ---------------------------------------------------------------------------
1550 * | BIND MOUNT OPERATION |
1551 * |**************************************************************************
1552 * | source-->| shared | private | slave | unbindable |
1553 * | dest | | | | |
1554 * | | | | | | |
1555 * | v | | | | |
1556 * |**************************************************************************
1557 * | shared | shared (++) | shared (+) | shared(+++)| invalid |
1558 * | | | | | |
1559 * |non-shared| shared (+) | private | slave (*) | invalid |
1560 * ***************************************************************************
b90fa9ae
RP
1561 * A bind operation clones the source mount and mounts the clone on the
1562 * destination mount.
1563 *
1564 * (++) the cloned mount is propagated to all the mounts in the propagation
1565 * tree of the destination mount and the cloned mount is added to
1566 * the peer group of the source mount.
1567 * (+) the cloned mount is created under the destination mount and is marked
1568 * as shared. The cloned mount is added to the peer group of the source
1569 * mount.
5afe0022
RP
1570 * (+++) the mount is propagated to all the mounts in the propagation tree
1571 * of the destination mount and the cloned mount is made slave
1572 * of the same master as that of the source mount. The cloned mount
1573 * is marked as 'shared and slave'.
1574 * (*) the cloned mount is made a slave of the same master as that of the
1575 * source mount.
1576 *
9676f0c6
RP
1577 * ---------------------------------------------------------------------------
1578 * | MOVE MOUNT OPERATION |
1579 * |**************************************************************************
1580 * | source-->| shared | private | slave | unbindable |
1581 * | dest | | | | |
1582 * | | | | | | |
1583 * | v | | | | |
1584 * |**************************************************************************
1585 * | shared | shared (+) | shared (+) | shared(+++) | invalid |
1586 * | | | | | |
1587 * |non-shared| shared (+*) | private | slave (*) | unbindable |
1588 * ***************************************************************************
5afe0022
RP
1589 *
1590 * (+) the mount is moved to the destination. And is then propagated to
1591 * all the mounts in the propagation tree of the destination mount.
21444403 1592 * (+*) the mount is moved to the destination.
5afe0022
RP
1593 * (+++) the mount is moved to the destination and is then propagated to
1594 * all the mounts belonging to the destination mount's propagation tree.
1595 * the mount is marked as 'shared and slave'.
1596 * (*) the mount continues to be a slave at the new location.
b90fa9ae
RP
1597 *
1598 * if the source mount is a tree, the operations explained above is
1599 * applied to each mount in the tree.
1600 * Must be called without spinlocks held, since this function can sleep
1601 * in allocations.
1602 */
0fb54e50 1603static int attach_recursive_mnt(struct mount *source_mnt,
84d17192
AV
1604 struct mount *dest_mnt,
1605 struct mountpoint *dest_mp,
1606 struct path *parent_path)
b90fa9ae
RP
1607{
1608 LIST_HEAD(tree_list);
315fc83e 1609 struct mount *child, *p;
719f5d7f 1610 int err;
b90fa9ae 1611
fc7be130 1612 if (IS_MNT_SHARED(dest_mnt)) {
0fb54e50 1613 err = invent_group_ids(source_mnt, true);
719f5d7f
MS
1614 if (err)
1615 goto out;
1616 }
84d17192 1617 err = propagate_mnt(dest_mnt, dest_mp, source_mnt, &tree_list);
719f5d7f
MS
1618 if (err)
1619 goto out_cleanup_ids;
b90fa9ae 1620
719ea2fb 1621 lock_mount_hash();
df1a1ad2 1622
fc7be130 1623 if (IS_MNT_SHARED(dest_mnt)) {
909b0a88 1624 for (p = source_mnt; p; p = next_mnt(p, source_mnt))
0f0afb1d 1625 set_mnt_shared(p);
b90fa9ae 1626 }
1a390689 1627 if (parent_path) {
0fb54e50 1628 detach_mnt(source_mnt, parent_path);
84d17192 1629 attach_mnt(source_mnt, dest_mnt, dest_mp);
143c8c91 1630 touch_mnt_namespace(source_mnt->mnt_ns);
21444403 1631 } else {
84d17192 1632 mnt_set_mountpoint(dest_mnt, dest_mp, source_mnt);
0fb54e50 1633 commit_tree(source_mnt);
21444403 1634 }
b90fa9ae 1635
1b8e5564
AV
1636 list_for_each_entry_safe(child, p, &tree_list, mnt_hash) {
1637 list_del_init(&child->mnt_hash);
4b2619a5 1638 commit_tree(child);
b90fa9ae 1639 }
719ea2fb 1640 unlock_mount_hash();
99b7db7b 1641
b90fa9ae 1642 return 0;
719f5d7f
MS
1643
1644 out_cleanup_ids:
fc7be130 1645 if (IS_MNT_SHARED(dest_mnt))
0fb54e50 1646 cleanup_group_ids(source_mnt, NULL);
719f5d7f
MS
1647 out:
1648 return err;
b90fa9ae
RP
1649}
1650
84d17192 1651static struct mountpoint *lock_mount(struct path *path)
b12cea91
AV
1652{
1653 struct vfsmount *mnt;
84d17192 1654 struct dentry *dentry = path->dentry;
b12cea91 1655retry:
84d17192
AV
1656 mutex_lock(&dentry->d_inode->i_mutex);
1657 if (unlikely(cant_mount(dentry))) {
1658 mutex_unlock(&dentry->d_inode->i_mutex);
1659 return ERR_PTR(-ENOENT);
b12cea91 1660 }
97216be0 1661 namespace_lock();
b12cea91 1662 mnt = lookup_mnt(path);
84d17192
AV
1663 if (likely(!mnt)) {
1664 struct mountpoint *mp = new_mountpoint(dentry);
1665 if (IS_ERR(mp)) {
97216be0 1666 namespace_unlock();
84d17192
AV
1667 mutex_unlock(&dentry->d_inode->i_mutex);
1668 return mp;
1669 }
1670 return mp;
1671 }
97216be0 1672 namespace_unlock();
b12cea91
AV
1673 mutex_unlock(&path->dentry->d_inode->i_mutex);
1674 path_put(path);
1675 path->mnt = mnt;
84d17192 1676 dentry = path->dentry = dget(mnt->mnt_root);
b12cea91
AV
1677 goto retry;
1678}
1679
84d17192 1680static void unlock_mount(struct mountpoint *where)
b12cea91 1681{
84d17192
AV
1682 struct dentry *dentry = where->m_dentry;
1683 put_mountpoint(where);
328e6d90 1684 namespace_unlock();
84d17192 1685 mutex_unlock(&dentry->d_inode->i_mutex);
b12cea91
AV
1686}
1687
84d17192 1688static int graft_tree(struct mount *mnt, struct mount *p, struct mountpoint *mp)
1da177e4 1689{
95bc5f25 1690 if (mnt->mnt.mnt_sb->s_flags & MS_NOUSER)
1da177e4
LT
1691 return -EINVAL;
1692
84d17192 1693 if (S_ISDIR(mp->m_dentry->d_inode->i_mode) !=
95bc5f25 1694 S_ISDIR(mnt->mnt.mnt_root->d_inode->i_mode))
1da177e4
LT
1695 return -ENOTDIR;
1696
84d17192 1697 return attach_recursive_mnt(mnt, p, mp, NULL);
1da177e4
LT
1698}
1699
7a2e8a8f
VA
1700/*
1701 * Sanity check the flags to change_mnt_propagation.
1702 */
1703
1704static int flags_to_propagation_type(int flags)
1705{
7c6e984d 1706 int type = flags & ~(MS_REC | MS_SILENT);
7a2e8a8f
VA
1707
1708 /* Fail if any non-propagation flags are set */
1709 if (type & ~(MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
1710 return 0;
1711 /* Only one propagation flag should be set */
1712 if (!is_power_of_2(type))
1713 return 0;
1714 return type;
1715}
1716
07b20889
RP
1717/*
1718 * recursively change the type of the mountpoint.
1719 */
0a0d8a46 1720static int do_change_type(struct path *path, int flag)
07b20889 1721{
315fc83e 1722 struct mount *m;
4b8b21f4 1723 struct mount *mnt = real_mount(path->mnt);
07b20889 1724 int recurse = flag & MS_REC;
7a2e8a8f 1725 int type;
719f5d7f 1726 int err = 0;
07b20889 1727
2d92ab3c 1728 if (path->dentry != path->mnt->mnt_root)
07b20889
RP
1729 return -EINVAL;
1730
7a2e8a8f
VA
1731 type = flags_to_propagation_type(flag);
1732 if (!type)
1733 return -EINVAL;
1734
97216be0 1735 namespace_lock();
719f5d7f
MS
1736 if (type == MS_SHARED) {
1737 err = invent_group_ids(mnt, recurse);
1738 if (err)
1739 goto out_unlock;
1740 }
1741
719ea2fb 1742 lock_mount_hash();
909b0a88 1743 for (m = mnt; m; m = (recurse ? next_mnt(m, mnt) : NULL))
0f0afb1d 1744 change_mnt_propagation(m, type);
719ea2fb 1745 unlock_mount_hash();
719f5d7f
MS
1746
1747 out_unlock:
97216be0 1748 namespace_unlock();
719f5d7f 1749 return err;
07b20889
RP
1750}
1751
5ff9d8a6
EB
1752static bool has_locked_children(struct mount *mnt, struct dentry *dentry)
1753{
1754 struct mount *child;
1755 list_for_each_entry(child, &mnt->mnt_mounts, mnt_child) {
1756 if (!is_subdir(child->mnt_mountpoint, dentry))
1757 continue;
1758
1759 if (child->mnt.mnt_flags & MNT_LOCKED)
1760 return true;
1761 }
1762 return false;
1763}
1764
1da177e4
LT
1765/*
1766 * do loopback mount.
1767 */
808d4e3c 1768static int do_loopback(struct path *path, const char *old_name,
2dafe1c4 1769 int recurse)
1da177e4 1770{
2d92ab3c 1771 struct path old_path;
84d17192
AV
1772 struct mount *mnt = NULL, *old, *parent;
1773 struct mountpoint *mp;
57eccb83 1774 int err;
1da177e4
LT
1775 if (!old_name || !*old_name)
1776 return -EINVAL;
815d405c 1777 err = kern_path(old_name, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &old_path);
1da177e4
LT
1778 if (err)
1779 return err;
1780
8823c079 1781 err = -EINVAL;
4ce5d2b1 1782 if (mnt_ns_loop(old_path.dentry))
8823c079
EB
1783 goto out;
1784
84d17192
AV
1785 mp = lock_mount(path);
1786 err = PTR_ERR(mp);
1787 if (IS_ERR(mp))
b12cea91
AV
1788 goto out;
1789
87129cc0 1790 old = real_mount(old_path.mnt);
84d17192 1791 parent = real_mount(path->mnt);
87129cc0 1792
1da177e4 1793 err = -EINVAL;
fc7be130 1794 if (IS_MNT_UNBINDABLE(old))
b12cea91 1795 goto out2;
9676f0c6 1796
84d17192 1797 if (!check_mnt(parent) || !check_mnt(old))
b12cea91 1798 goto out2;
1da177e4 1799
5ff9d8a6
EB
1800 if (!recurse && has_locked_children(old, old_path.dentry))
1801 goto out2;
1802
ccd48bc7 1803 if (recurse)
4ce5d2b1 1804 mnt = copy_tree(old, old_path.dentry, CL_COPY_MNT_NS_FILE);
ccd48bc7 1805 else
87129cc0 1806 mnt = clone_mnt(old, old_path.dentry, 0);
ccd48bc7 1807
be34d1a3
DH
1808 if (IS_ERR(mnt)) {
1809 err = PTR_ERR(mnt);
e9c5d8a5 1810 goto out2;
be34d1a3 1811 }
ccd48bc7 1812
5ff9d8a6
EB
1813 mnt->mnt.mnt_flags &= ~MNT_LOCKED;
1814
84d17192 1815 err = graft_tree(mnt, parent, mp);
ccd48bc7 1816 if (err) {
719ea2fb 1817 lock_mount_hash();
328e6d90 1818 umount_tree(mnt, 0);
719ea2fb 1819 unlock_mount_hash();
5b83d2c5 1820 }
b12cea91 1821out2:
84d17192 1822 unlock_mount(mp);
ccd48bc7 1823out:
2d92ab3c 1824 path_put(&old_path);
1da177e4
LT
1825 return err;
1826}
1827
2e4b7fcd
DH
1828static int change_mount_flags(struct vfsmount *mnt, int ms_flags)
1829{
1830 int error = 0;
1831 int readonly_request = 0;
1832
1833 if (ms_flags & MS_RDONLY)
1834 readonly_request = 1;
1835 if (readonly_request == __mnt_is_readonly(mnt))
1836 return 0;
1837
90563b19
EB
1838 if (mnt->mnt_flags & MNT_LOCK_READONLY)
1839 return -EPERM;
1840
2e4b7fcd 1841 if (readonly_request)
83adc753 1842 error = mnt_make_readonly(real_mount(mnt));
2e4b7fcd 1843 else
83adc753 1844 __mnt_unmake_readonly(real_mount(mnt));
2e4b7fcd
DH
1845 return error;
1846}
1847
1da177e4
LT
1848/*
1849 * change filesystem flags. dir should be a physical root of filesystem.
1850 * If you've mounted a non-root directory somewhere and want to do remount
1851 * on it - tough luck.
1852 */
0a0d8a46 1853static int do_remount(struct path *path, int flags, int mnt_flags,
1da177e4
LT
1854 void *data)
1855{
1856 int err;
2d92ab3c 1857 struct super_block *sb = path->mnt->mnt_sb;
143c8c91 1858 struct mount *mnt = real_mount(path->mnt);
1da177e4 1859
143c8c91 1860 if (!check_mnt(mnt))
1da177e4
LT
1861 return -EINVAL;
1862
2d92ab3c 1863 if (path->dentry != path->mnt->mnt_root)
1da177e4
LT
1864 return -EINVAL;
1865
ff36fe2c
EP
1866 err = security_sb_remount(sb, data);
1867 if (err)
1868 return err;
1869
1da177e4 1870 down_write(&sb->s_umount);
2e4b7fcd 1871 if (flags & MS_BIND)
2d92ab3c 1872 err = change_mount_flags(path->mnt, flags);
57eccb83
AV
1873 else if (!capable(CAP_SYS_ADMIN))
1874 err = -EPERM;
4aa98cf7 1875 else
2e4b7fcd 1876 err = do_remount_sb(sb, flags, data, 0);
7b43a79f 1877 if (!err) {
719ea2fb 1878 lock_mount_hash();
143c8c91
AV
1879 mnt_flags |= mnt->mnt.mnt_flags & MNT_PROPAGATION_MASK;
1880 mnt->mnt.mnt_flags = mnt_flags;
143c8c91 1881 touch_mnt_namespace(mnt->mnt_ns);
719ea2fb 1882 unlock_mount_hash();
0e55a7cc 1883 }
6339dab8 1884 up_write(&sb->s_umount);
1da177e4
LT
1885 return err;
1886}
1887
cbbe362c 1888static inline int tree_contains_unbindable(struct mount *mnt)
9676f0c6 1889{
315fc83e 1890 struct mount *p;
909b0a88 1891 for (p = mnt; p; p = next_mnt(p, mnt)) {
fc7be130 1892 if (IS_MNT_UNBINDABLE(p))
9676f0c6
RP
1893 return 1;
1894 }
1895 return 0;
1896}
1897
808d4e3c 1898static int do_move_mount(struct path *path, const char *old_name)
1da177e4 1899{
2d92ab3c 1900 struct path old_path, parent_path;
676da58d 1901 struct mount *p;
0fb54e50 1902 struct mount *old;
84d17192 1903 struct mountpoint *mp;
57eccb83 1904 int err;
1da177e4
LT
1905 if (!old_name || !*old_name)
1906 return -EINVAL;
2d92ab3c 1907 err = kern_path(old_name, LOOKUP_FOLLOW, &old_path);
1da177e4
LT
1908 if (err)
1909 return err;
1910
84d17192
AV
1911 mp = lock_mount(path);
1912 err = PTR_ERR(mp);
1913 if (IS_ERR(mp))
cc53ce53
DH
1914 goto out;
1915
143c8c91 1916 old = real_mount(old_path.mnt);
fc7be130 1917 p = real_mount(path->mnt);
143c8c91 1918
1da177e4 1919 err = -EINVAL;
fc7be130 1920 if (!check_mnt(p) || !check_mnt(old))
1da177e4
LT
1921 goto out1;
1922
5ff9d8a6
EB
1923 if (old->mnt.mnt_flags & MNT_LOCKED)
1924 goto out1;
1925
1da177e4 1926 err = -EINVAL;
2d92ab3c 1927 if (old_path.dentry != old_path.mnt->mnt_root)
21444403 1928 goto out1;
1da177e4 1929
676da58d 1930 if (!mnt_has_parent(old))
21444403 1931 goto out1;
1da177e4 1932
2d92ab3c
AV
1933 if (S_ISDIR(path->dentry->d_inode->i_mode) !=
1934 S_ISDIR(old_path.dentry->d_inode->i_mode))
21444403
RP
1935 goto out1;
1936 /*
1937 * Don't move a mount residing in a shared parent.
1938 */
fc7be130 1939 if (IS_MNT_SHARED(old->mnt_parent))
21444403 1940 goto out1;
9676f0c6
RP
1941 /*
1942 * Don't move a mount tree containing unbindable mounts to a destination
1943 * mount which is shared.
1944 */
fc7be130 1945 if (IS_MNT_SHARED(p) && tree_contains_unbindable(old))
9676f0c6 1946 goto out1;
1da177e4 1947 err = -ELOOP;
fc7be130 1948 for (; mnt_has_parent(p); p = p->mnt_parent)
676da58d 1949 if (p == old)
21444403 1950 goto out1;
1da177e4 1951
84d17192 1952 err = attach_recursive_mnt(old, real_mount(path->mnt), mp, &parent_path);
4ac91378 1953 if (err)
21444403 1954 goto out1;
1da177e4
LT
1955
1956 /* if the mount is moved, it should no longer be expire
1957 * automatically */
6776db3d 1958 list_del_init(&old->mnt_expire);
1da177e4 1959out1:
84d17192 1960 unlock_mount(mp);
1da177e4 1961out:
1da177e4 1962 if (!err)
1a390689 1963 path_put(&parent_path);
2d92ab3c 1964 path_put(&old_path);
1da177e4
LT
1965 return err;
1966}
1967
9d412a43
AV
1968static struct vfsmount *fs_set_subtype(struct vfsmount *mnt, const char *fstype)
1969{
1970 int err;
1971 const char *subtype = strchr(fstype, '.');
1972 if (subtype) {
1973 subtype++;
1974 err = -EINVAL;
1975 if (!subtype[0])
1976 goto err;
1977 } else
1978 subtype = "";
1979
1980 mnt->mnt_sb->s_subtype = kstrdup(subtype, GFP_KERNEL);
1981 err = -ENOMEM;
1982 if (!mnt->mnt_sb->s_subtype)
1983 goto err;
1984 return mnt;
1985
1986 err:
1987 mntput(mnt);
1988 return ERR_PTR(err);
1989}
1990
9d412a43
AV
1991/*
1992 * add a mount into a namespace's mount tree
1993 */
95bc5f25 1994static int do_add_mount(struct mount *newmnt, struct path *path, int mnt_flags)
9d412a43 1995{
84d17192
AV
1996 struct mountpoint *mp;
1997 struct mount *parent;
9d412a43
AV
1998 int err;
1999
48a066e7 2000 mnt_flags &= ~(MNT_SHARED | MNT_WRITE_HOLD | MNT_INTERNAL | MNT_DOOMED | MNT_SYNC_UMOUNT);
9d412a43 2001
84d17192
AV
2002 mp = lock_mount(path);
2003 if (IS_ERR(mp))
2004 return PTR_ERR(mp);
9d412a43 2005
84d17192 2006 parent = real_mount(path->mnt);
9d412a43 2007 err = -EINVAL;
84d17192 2008 if (unlikely(!check_mnt(parent))) {
156cacb1
AV
2009 /* that's acceptable only for automounts done in private ns */
2010 if (!(mnt_flags & MNT_SHRINKABLE))
2011 goto unlock;
2012 /* ... and for those we'd better have mountpoint still alive */
84d17192 2013 if (!parent->mnt_ns)
156cacb1
AV
2014 goto unlock;
2015 }
9d412a43
AV
2016
2017 /* Refuse the same filesystem on the same mount point */
2018 err = -EBUSY;
95bc5f25 2019 if (path->mnt->mnt_sb == newmnt->mnt.mnt_sb &&
9d412a43
AV
2020 path->mnt->mnt_root == path->dentry)
2021 goto unlock;
2022
2023 err = -EINVAL;
95bc5f25 2024 if (S_ISLNK(newmnt->mnt.mnt_root->d_inode->i_mode))
9d412a43
AV
2025 goto unlock;
2026
95bc5f25 2027 newmnt->mnt.mnt_flags = mnt_flags;
84d17192 2028 err = graft_tree(newmnt, parent, mp);
9d412a43
AV
2029
2030unlock:
84d17192 2031 unlock_mount(mp);
9d412a43
AV
2032 return err;
2033}
b1e75df4 2034
1da177e4
LT
2035/*
2036 * create a new mount for userspace and request it to be added into the
2037 * namespace's tree
2038 */
0c55cfc4 2039static int do_new_mount(struct path *path, const char *fstype, int flags,
808d4e3c 2040 int mnt_flags, const char *name, void *data)
1da177e4 2041{
0c55cfc4 2042 struct file_system_type *type;
9b40bc90 2043 struct user_namespace *user_ns = current->nsproxy->mnt_ns->user_ns;
1da177e4 2044 struct vfsmount *mnt;
15f9a3f3 2045 int err;
1da177e4 2046
0c55cfc4 2047 if (!fstype)
1da177e4
LT
2048 return -EINVAL;
2049
0c55cfc4
EB
2050 type = get_fs_type(fstype);
2051 if (!type)
2052 return -ENODEV;
2053
2054 if (user_ns != &init_user_ns) {
2055 if (!(type->fs_flags & FS_USERNS_MOUNT)) {
2056 put_filesystem(type);
2057 return -EPERM;
2058 }
2059 /* Only in special cases allow devices from mounts
2060 * created outside the initial user namespace.
2061 */
2062 if (!(type->fs_flags & FS_USERNS_DEV_MOUNT)) {
2063 flags |= MS_NODEV;
2064 mnt_flags |= MNT_NODEV;
2065 }
2066 }
2067
2068 mnt = vfs_kern_mount(type, flags, name, data);
2069 if (!IS_ERR(mnt) && (type->fs_flags & FS_HAS_SUBTYPE) &&
2070 !mnt->mnt_sb->s_subtype)
2071 mnt = fs_set_subtype(mnt, fstype);
2072
2073 put_filesystem(type);
1da177e4
LT
2074 if (IS_ERR(mnt))
2075 return PTR_ERR(mnt);
2076
95bc5f25 2077 err = do_add_mount(real_mount(mnt), path, mnt_flags);
15f9a3f3
AV
2078 if (err)
2079 mntput(mnt);
2080 return err;
1da177e4
LT
2081}
2082
19a167af
AV
2083int finish_automount(struct vfsmount *m, struct path *path)
2084{
6776db3d 2085 struct mount *mnt = real_mount(m);
19a167af
AV
2086 int err;
2087 /* The new mount record should have at least 2 refs to prevent it being
2088 * expired before we get a chance to add it
2089 */
6776db3d 2090 BUG_ON(mnt_get_count(mnt) < 2);
19a167af
AV
2091
2092 if (m->mnt_sb == path->mnt->mnt_sb &&
2093 m->mnt_root == path->dentry) {
b1e75df4
AV
2094 err = -ELOOP;
2095 goto fail;
19a167af
AV
2096 }
2097
95bc5f25 2098 err = do_add_mount(mnt, path, path->mnt->mnt_flags | MNT_SHRINKABLE);
b1e75df4
AV
2099 if (!err)
2100 return 0;
2101fail:
2102 /* remove m from any expiration list it may be on */
6776db3d 2103 if (!list_empty(&mnt->mnt_expire)) {
97216be0 2104 namespace_lock();
6776db3d 2105 list_del_init(&mnt->mnt_expire);
97216be0 2106 namespace_unlock();
19a167af 2107 }
b1e75df4
AV
2108 mntput(m);
2109 mntput(m);
19a167af
AV
2110 return err;
2111}
2112
ea5b778a
DH
2113/**
2114 * mnt_set_expiry - Put a mount on an expiration list
2115 * @mnt: The mount to list.
2116 * @expiry_list: The list to add the mount to.
2117 */
2118void mnt_set_expiry(struct vfsmount *mnt, struct list_head *expiry_list)
2119{
97216be0 2120 namespace_lock();
ea5b778a 2121
6776db3d 2122 list_add_tail(&real_mount(mnt)->mnt_expire, expiry_list);
ea5b778a 2123
97216be0 2124 namespace_unlock();
ea5b778a
DH
2125}
2126EXPORT_SYMBOL(mnt_set_expiry);
2127
1da177e4
LT
2128/*
2129 * process a list of expirable mountpoints with the intent of discarding any
2130 * mountpoints that aren't in use and haven't been touched since last we came
2131 * here
2132 */
2133void mark_mounts_for_expiry(struct list_head *mounts)
2134{
761d5c38 2135 struct mount *mnt, *next;
1da177e4
LT
2136 LIST_HEAD(graveyard);
2137
2138 if (list_empty(mounts))
2139 return;
2140
97216be0 2141 namespace_lock();
719ea2fb 2142 lock_mount_hash();
1da177e4
LT
2143
2144 /* extract from the expiration list every vfsmount that matches the
2145 * following criteria:
2146 * - only referenced by its parent vfsmount
2147 * - still marked for expiry (marked on the last call here; marks are
2148 * cleared by mntput())
2149 */
6776db3d 2150 list_for_each_entry_safe(mnt, next, mounts, mnt_expire) {
863d684f 2151 if (!xchg(&mnt->mnt_expiry_mark, 1) ||
1ab59738 2152 propagate_mount_busy(mnt, 1))
1da177e4 2153 continue;
6776db3d 2154 list_move(&mnt->mnt_expire, &graveyard);
1da177e4 2155 }
bcc5c7d2 2156 while (!list_empty(&graveyard)) {
6776db3d 2157 mnt = list_first_entry(&graveyard, struct mount, mnt_expire);
143c8c91 2158 touch_mnt_namespace(mnt->mnt_ns);
328e6d90 2159 umount_tree(mnt, 1);
bcc5c7d2 2160 }
719ea2fb 2161 unlock_mount_hash();
3ab6abee 2162 namespace_unlock();
5528f911
TM
2163}
2164
2165EXPORT_SYMBOL_GPL(mark_mounts_for_expiry);
2166
2167/*
2168 * Ripoff of 'select_parent()'
2169 *
2170 * search the list of submounts for a given mountpoint, and move any
2171 * shrinkable submounts to the 'graveyard' list.
2172 */
692afc31 2173static int select_submounts(struct mount *parent, struct list_head *graveyard)
5528f911 2174{
692afc31 2175 struct mount *this_parent = parent;
5528f911
TM
2176 struct list_head *next;
2177 int found = 0;
2178
2179repeat:
6b41d536 2180 next = this_parent->mnt_mounts.next;
5528f911 2181resume:
6b41d536 2182 while (next != &this_parent->mnt_mounts) {
5528f911 2183 struct list_head *tmp = next;
6b41d536 2184 struct mount *mnt = list_entry(tmp, struct mount, mnt_child);
5528f911
TM
2185
2186 next = tmp->next;
692afc31 2187 if (!(mnt->mnt.mnt_flags & MNT_SHRINKABLE))
1da177e4 2188 continue;
5528f911
TM
2189 /*
2190 * Descend a level if the d_mounts list is non-empty.
2191 */
6b41d536 2192 if (!list_empty(&mnt->mnt_mounts)) {
5528f911
TM
2193 this_parent = mnt;
2194 goto repeat;
2195 }
1da177e4 2196
1ab59738 2197 if (!propagate_mount_busy(mnt, 1)) {
6776db3d 2198 list_move_tail(&mnt->mnt_expire, graveyard);
5528f911
TM
2199 found++;
2200 }
1da177e4 2201 }
5528f911
TM
2202 /*
2203 * All done at this level ... ascend and resume the search
2204 */
2205 if (this_parent != parent) {
6b41d536 2206 next = this_parent->mnt_child.next;
0714a533 2207 this_parent = this_parent->mnt_parent;
5528f911
TM
2208 goto resume;
2209 }
2210 return found;
2211}
2212
2213/*
2214 * process a list of expirable mountpoints with the intent of discarding any
2215 * submounts of a specific parent mountpoint
99b7db7b 2216 *
48a066e7 2217 * mount_lock must be held for write
5528f911 2218 */
b54b9be7 2219static void shrink_submounts(struct mount *mnt)
5528f911
TM
2220{
2221 LIST_HEAD(graveyard);
761d5c38 2222 struct mount *m;
5528f911 2223
5528f911 2224 /* extract submounts of 'mountpoint' from the expiration list */
c35038be 2225 while (select_submounts(mnt, &graveyard)) {
bcc5c7d2 2226 while (!list_empty(&graveyard)) {
761d5c38 2227 m = list_first_entry(&graveyard, struct mount,
6776db3d 2228 mnt_expire);
143c8c91 2229 touch_mnt_namespace(m->mnt_ns);
328e6d90 2230 umount_tree(m, 1);
bcc5c7d2
AV
2231 }
2232 }
1da177e4
LT
2233}
2234
1da177e4
LT
2235/*
2236 * Some copy_from_user() implementations do not return the exact number of
2237 * bytes remaining to copy on a fault. But copy_mount_options() requires that.
2238 * Note that this function differs from copy_from_user() in that it will oops
2239 * on bad values of `to', rather than returning a short copy.
2240 */
b58fed8b
RP
2241static long exact_copy_from_user(void *to, const void __user * from,
2242 unsigned long n)
1da177e4
LT
2243{
2244 char *t = to;
2245 const char __user *f = from;
2246 char c;
2247
2248 if (!access_ok(VERIFY_READ, from, n))
2249 return n;
2250
2251 while (n) {
2252 if (__get_user(c, f)) {
2253 memset(t, 0, n);
2254 break;
2255 }
2256 *t++ = c;
2257 f++;
2258 n--;
2259 }
2260 return n;
2261}
2262
b58fed8b 2263int copy_mount_options(const void __user * data, unsigned long *where)
1da177e4
LT
2264{
2265 int i;
2266 unsigned long page;
2267 unsigned long size;
b58fed8b 2268
1da177e4
LT
2269 *where = 0;
2270 if (!data)
2271 return 0;
2272
2273 if (!(page = __get_free_page(GFP_KERNEL)))
2274 return -ENOMEM;
2275
2276 /* We only care that *some* data at the address the user
2277 * gave us is valid. Just in case, we'll zero
2278 * the remainder of the page.
2279 */
2280 /* copy_from_user cannot cross TASK_SIZE ! */
2281 size = TASK_SIZE - (unsigned long)data;
2282 if (size > PAGE_SIZE)
2283 size = PAGE_SIZE;
2284
2285 i = size - exact_copy_from_user((void *)page, data, size);
2286 if (!i) {
b58fed8b 2287 free_page(page);
1da177e4
LT
2288 return -EFAULT;
2289 }
2290 if (i != PAGE_SIZE)
2291 memset((char *)page + i, 0, PAGE_SIZE - i);
2292 *where = page;
2293 return 0;
2294}
2295
eca6f534
VN
2296int copy_mount_string(const void __user *data, char **where)
2297{
2298 char *tmp;
2299
2300 if (!data) {
2301 *where = NULL;
2302 return 0;
2303 }
2304
2305 tmp = strndup_user(data, PAGE_SIZE);
2306 if (IS_ERR(tmp))
2307 return PTR_ERR(tmp);
2308
2309 *where = tmp;
2310 return 0;
2311}
2312
1da177e4
LT
2313/*
2314 * Flags is a 32-bit value that allows up to 31 non-fs dependent flags to
2315 * be given to the mount() call (ie: read-only, no-dev, no-suid etc).
2316 *
2317 * data is a (void *) that can point to any structure up to
2318 * PAGE_SIZE-1 bytes, which can contain arbitrary fs-dependent
2319 * information (or be NULL).
2320 *
2321 * Pre-0.97 versions of mount() didn't have a flags word.
2322 * When the flags word was introduced its top half was required
2323 * to have the magic value 0xC0ED, and this remained so until 2.4.0-test9.
2324 * Therefore, if this magic number is present, it carries no information
2325 * and must be discarded.
2326 */
808d4e3c
AV
2327long do_mount(const char *dev_name, const char *dir_name,
2328 const char *type_page, unsigned long flags, void *data_page)
1da177e4 2329{
2d92ab3c 2330 struct path path;
1da177e4
LT
2331 int retval = 0;
2332 int mnt_flags = 0;
2333
2334 /* Discard magic */
2335 if ((flags & MS_MGC_MSK) == MS_MGC_VAL)
2336 flags &= ~MS_MGC_MSK;
2337
2338 /* Basic sanity checks */
2339
2340 if (!dir_name || !*dir_name || !memchr(dir_name, 0, PAGE_SIZE))
2341 return -EINVAL;
1da177e4
LT
2342
2343 if (data_page)
2344 ((char *)data_page)[PAGE_SIZE - 1] = 0;
2345
a27ab9f2
TH
2346 /* ... and get the mountpoint */
2347 retval = kern_path(dir_name, LOOKUP_FOLLOW, &path);
2348 if (retval)
2349 return retval;
2350
2351 retval = security_sb_mount(dev_name, &path,
2352 type_page, flags, data_page);
0d5cadb8
AV
2353 if (!retval && !may_mount())
2354 retval = -EPERM;
a27ab9f2
TH
2355 if (retval)
2356 goto dput_out;
2357
613cbe3d
AK
2358 /* Default to relatime unless overriden */
2359 if (!(flags & MS_NOATIME))
2360 mnt_flags |= MNT_RELATIME;
0a1c01c9 2361
1da177e4
LT
2362 /* Separate the per-mountpoint flags */
2363 if (flags & MS_NOSUID)
2364 mnt_flags |= MNT_NOSUID;
2365 if (flags & MS_NODEV)
2366 mnt_flags |= MNT_NODEV;
2367 if (flags & MS_NOEXEC)
2368 mnt_flags |= MNT_NOEXEC;
fc33a7bb
CH
2369 if (flags & MS_NOATIME)
2370 mnt_flags |= MNT_NOATIME;
2371 if (flags & MS_NODIRATIME)
2372 mnt_flags |= MNT_NODIRATIME;
d0adde57
MG
2373 if (flags & MS_STRICTATIME)
2374 mnt_flags &= ~(MNT_RELATIME | MNT_NOATIME);
2e4b7fcd
DH
2375 if (flags & MS_RDONLY)
2376 mnt_flags |= MNT_READONLY;
fc33a7bb 2377
7a4dec53 2378 flags &= ~(MS_NOSUID | MS_NOEXEC | MS_NODEV | MS_ACTIVE | MS_BORN |
d0adde57
MG
2379 MS_NOATIME | MS_NODIRATIME | MS_RELATIME| MS_KERNMOUNT |
2380 MS_STRICTATIME);
1da177e4 2381
1da177e4 2382 if (flags & MS_REMOUNT)
2d92ab3c 2383 retval = do_remount(&path, flags & ~MS_REMOUNT, mnt_flags,
1da177e4
LT
2384 data_page);
2385 else if (flags & MS_BIND)
2d92ab3c 2386 retval = do_loopback(&path, dev_name, flags & MS_REC);
9676f0c6 2387 else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
2d92ab3c 2388 retval = do_change_type(&path, flags);
1da177e4 2389 else if (flags & MS_MOVE)
2d92ab3c 2390 retval = do_move_mount(&path, dev_name);
1da177e4 2391 else
2d92ab3c 2392 retval = do_new_mount(&path, type_page, flags, mnt_flags,
1da177e4
LT
2393 dev_name, data_page);
2394dput_out:
2d92ab3c 2395 path_put(&path);
1da177e4
LT
2396 return retval;
2397}
2398
771b1371
EB
2399static void free_mnt_ns(struct mnt_namespace *ns)
2400{
98f842e6 2401 proc_free_inum(ns->proc_inum);
771b1371
EB
2402 put_user_ns(ns->user_ns);
2403 kfree(ns);
2404}
2405
8823c079
EB
2406/*
2407 * Assign a sequence number so we can detect when we attempt to bind
2408 * mount a reference to an older mount namespace into the current
2409 * mount namespace, preventing reference counting loops. A 64bit
2410 * number incrementing at 10Ghz will take 12,427 years to wrap which
2411 * is effectively never, so we can ignore the possibility.
2412 */
2413static atomic64_t mnt_ns_seq = ATOMIC64_INIT(1);
2414
771b1371 2415static struct mnt_namespace *alloc_mnt_ns(struct user_namespace *user_ns)
cf8d2c11
TM
2416{
2417 struct mnt_namespace *new_ns;
98f842e6 2418 int ret;
cf8d2c11
TM
2419
2420 new_ns = kmalloc(sizeof(struct mnt_namespace), GFP_KERNEL);
2421 if (!new_ns)
2422 return ERR_PTR(-ENOMEM);
98f842e6
EB
2423 ret = proc_alloc_inum(&new_ns->proc_inum);
2424 if (ret) {
2425 kfree(new_ns);
2426 return ERR_PTR(ret);
2427 }
8823c079 2428 new_ns->seq = atomic64_add_return(1, &mnt_ns_seq);
cf8d2c11
TM
2429 atomic_set(&new_ns->count, 1);
2430 new_ns->root = NULL;
2431 INIT_LIST_HEAD(&new_ns->list);
2432 init_waitqueue_head(&new_ns->poll);
2433 new_ns->event = 0;
771b1371 2434 new_ns->user_ns = get_user_ns(user_ns);
cf8d2c11
TM
2435 return new_ns;
2436}
2437
9559f689
AV
2438struct mnt_namespace *copy_mnt_ns(unsigned long flags, struct mnt_namespace *ns,
2439 struct user_namespace *user_ns, struct fs_struct *new_fs)
1da177e4 2440{
6b3286ed 2441 struct mnt_namespace *new_ns;
7f2da1e7 2442 struct vfsmount *rootmnt = NULL, *pwdmnt = NULL;
315fc83e 2443 struct mount *p, *q;
9559f689 2444 struct mount *old;
cb338d06 2445 struct mount *new;
7a472ef4 2446 int copy_flags;
1da177e4 2447
9559f689
AV
2448 BUG_ON(!ns);
2449
2450 if (likely(!(flags & CLONE_NEWNS))) {
2451 get_mnt_ns(ns);
2452 return ns;
2453 }
2454
2455 old = ns->root;
2456
771b1371 2457 new_ns = alloc_mnt_ns(user_ns);
cf8d2c11
TM
2458 if (IS_ERR(new_ns))
2459 return new_ns;
1da177e4 2460
97216be0 2461 namespace_lock();
1da177e4 2462 /* First pass: copy the tree topology */
4ce5d2b1 2463 copy_flags = CL_COPY_UNBINDABLE | CL_EXPIRE;
9559f689 2464 if (user_ns != ns->user_ns)
132c94e3 2465 copy_flags |= CL_SHARED_TO_SLAVE | CL_UNPRIVILEGED;
7a472ef4 2466 new = copy_tree(old, old->mnt.mnt_root, copy_flags);
be34d1a3 2467 if (IS_ERR(new)) {
328e6d90 2468 namespace_unlock();
771b1371 2469 free_mnt_ns(new_ns);
be34d1a3 2470 return ERR_CAST(new);
1da177e4 2471 }
be08d6d2 2472 new_ns->root = new;
1a4eeaf2 2473 list_add_tail(&new_ns->list, &new->mnt_list);
1da177e4
LT
2474
2475 /*
2476 * Second pass: switch the tsk->fs->* elements and mark new vfsmounts
2477 * as belonging to new namespace. We have already acquired a private
2478 * fs_struct, so tsk->fs->lock is not needed.
2479 */
909b0a88 2480 p = old;
cb338d06 2481 q = new;
1da177e4 2482 while (p) {
143c8c91 2483 q->mnt_ns = new_ns;
9559f689
AV
2484 if (new_fs) {
2485 if (&p->mnt == new_fs->root.mnt) {
2486 new_fs->root.mnt = mntget(&q->mnt);
315fc83e 2487 rootmnt = &p->mnt;
1da177e4 2488 }
9559f689
AV
2489 if (&p->mnt == new_fs->pwd.mnt) {
2490 new_fs->pwd.mnt = mntget(&q->mnt);
315fc83e 2491 pwdmnt = &p->mnt;
1da177e4 2492 }
1da177e4 2493 }
909b0a88
AV
2494 p = next_mnt(p, old);
2495 q = next_mnt(q, new);
4ce5d2b1
EB
2496 if (!q)
2497 break;
2498 while (p->mnt.mnt_root != q->mnt.mnt_root)
2499 p = next_mnt(p, old);
1da177e4 2500 }
328e6d90 2501 namespace_unlock();
1da177e4 2502
1da177e4 2503 if (rootmnt)
f03c6599 2504 mntput(rootmnt);
1da177e4 2505 if (pwdmnt)
f03c6599 2506 mntput(pwdmnt);
1da177e4 2507
741a2951 2508 return new_ns;
1da177e4
LT
2509}
2510
cf8d2c11
TM
2511/**
2512 * create_mnt_ns - creates a private namespace and adds a root filesystem
2513 * @mnt: pointer to the new root filesystem mountpoint
2514 */
1a4eeaf2 2515static struct mnt_namespace *create_mnt_ns(struct vfsmount *m)
cf8d2c11 2516{
771b1371 2517 struct mnt_namespace *new_ns = alloc_mnt_ns(&init_user_ns);
cf8d2c11 2518 if (!IS_ERR(new_ns)) {
1a4eeaf2
AV
2519 struct mount *mnt = real_mount(m);
2520 mnt->mnt_ns = new_ns;
be08d6d2 2521 new_ns->root = mnt;
b1983cd8 2522 list_add(&mnt->mnt_list, &new_ns->list);
c1334495 2523 } else {
1a4eeaf2 2524 mntput(m);
cf8d2c11
TM
2525 }
2526 return new_ns;
2527}
cf8d2c11 2528
ea441d11
AV
2529struct dentry *mount_subtree(struct vfsmount *mnt, const char *name)
2530{
2531 struct mnt_namespace *ns;
d31da0f0 2532 struct super_block *s;
ea441d11
AV
2533 struct path path;
2534 int err;
2535
2536 ns = create_mnt_ns(mnt);
2537 if (IS_ERR(ns))
2538 return ERR_CAST(ns);
2539
2540 err = vfs_path_lookup(mnt->mnt_root, mnt,
2541 name, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &path);
2542
2543 put_mnt_ns(ns);
2544
2545 if (err)
2546 return ERR_PTR(err);
2547
2548 /* trade a vfsmount reference for active sb one */
d31da0f0
AV
2549 s = path.mnt->mnt_sb;
2550 atomic_inc(&s->s_active);
ea441d11
AV
2551 mntput(path.mnt);
2552 /* lock the sucker */
d31da0f0 2553 down_write(&s->s_umount);
ea441d11
AV
2554 /* ... and return the root of (sub)tree on it */
2555 return path.dentry;
2556}
2557EXPORT_SYMBOL(mount_subtree);
2558
bdc480e3
HC
2559SYSCALL_DEFINE5(mount, char __user *, dev_name, char __user *, dir_name,
2560 char __user *, type, unsigned long, flags, void __user *, data)
1da177e4 2561{
eca6f534
VN
2562 int ret;
2563 char *kernel_type;
91a27b2a 2564 struct filename *kernel_dir;
eca6f534 2565 char *kernel_dev;
1da177e4 2566 unsigned long data_page;
1da177e4 2567
eca6f534
VN
2568 ret = copy_mount_string(type, &kernel_type);
2569 if (ret < 0)
2570 goto out_type;
1da177e4 2571
eca6f534
VN
2572 kernel_dir = getname(dir_name);
2573 if (IS_ERR(kernel_dir)) {
2574 ret = PTR_ERR(kernel_dir);
2575 goto out_dir;
2576 }
1da177e4 2577
eca6f534
VN
2578 ret = copy_mount_string(dev_name, &kernel_dev);
2579 if (ret < 0)
2580 goto out_dev;
1da177e4 2581
eca6f534
VN
2582 ret = copy_mount_options(data, &data_page);
2583 if (ret < 0)
2584 goto out_data;
1da177e4 2585
91a27b2a 2586 ret = do_mount(kernel_dev, kernel_dir->name, kernel_type, flags,
eca6f534 2587 (void *) data_page);
1da177e4 2588
eca6f534
VN
2589 free_page(data_page);
2590out_data:
2591 kfree(kernel_dev);
2592out_dev:
2593 putname(kernel_dir);
2594out_dir:
2595 kfree(kernel_type);
2596out_type:
2597 return ret;
1da177e4
LT
2598}
2599
afac7cba
AV
2600/*
2601 * Return true if path is reachable from root
2602 *
48a066e7 2603 * namespace_sem or mount_lock is held
afac7cba 2604 */
643822b4 2605bool is_path_reachable(struct mount *mnt, struct dentry *dentry,
afac7cba
AV
2606 const struct path *root)
2607{
643822b4 2608 while (&mnt->mnt != root->mnt && mnt_has_parent(mnt)) {
a73324da 2609 dentry = mnt->mnt_mountpoint;
0714a533 2610 mnt = mnt->mnt_parent;
afac7cba 2611 }
643822b4 2612 return &mnt->mnt == root->mnt && is_subdir(dentry, root->dentry);
afac7cba
AV
2613}
2614
2615int path_is_under(struct path *path1, struct path *path2)
2616{
2617 int res;
48a066e7 2618 read_seqlock_excl(&mount_lock);
643822b4 2619 res = is_path_reachable(real_mount(path1->mnt), path1->dentry, path2);
48a066e7 2620 read_sequnlock_excl(&mount_lock);
afac7cba
AV
2621 return res;
2622}
2623EXPORT_SYMBOL(path_is_under);
2624
1da177e4
LT
2625/*
2626 * pivot_root Semantics:
2627 * Moves the root file system of the current process to the directory put_old,
2628 * makes new_root as the new root file system of the current process, and sets
2629 * root/cwd of all processes which had them on the current root to new_root.
2630 *
2631 * Restrictions:
2632 * The new_root and put_old must be directories, and must not be on the
2633 * same file system as the current process root. The put_old must be
2634 * underneath new_root, i.e. adding a non-zero number of /.. to the string
2635 * pointed to by put_old must yield the same directory as new_root. No other
2636 * file system may be mounted on put_old. After all, new_root is a mountpoint.
2637 *
4a0d11fa
NB
2638 * Also, the current root cannot be on the 'rootfs' (initial ramfs) filesystem.
2639 * See Documentation/filesystems/ramfs-rootfs-initramfs.txt for alternatives
2640 * in this situation.
2641 *
1da177e4
LT
2642 * Notes:
2643 * - we don't move root/cwd if they are not at the root (reason: if something
2644 * cared enough to change them, it's probably wrong to force them elsewhere)
2645 * - it's okay to pick a root that isn't the root of a file system, e.g.
2646 * /nfs/my_root where /nfs is the mount point. It must be a mountpoint,
2647 * though, so you may need to say mount --bind /nfs/my_root /nfs/my_root
2648 * first.
2649 */
3480b257
HC
2650SYSCALL_DEFINE2(pivot_root, const char __user *, new_root,
2651 const char __user *, put_old)
1da177e4 2652{
2d8f3038 2653 struct path new, old, parent_path, root_parent, root;
84d17192
AV
2654 struct mount *new_mnt, *root_mnt, *old_mnt;
2655 struct mountpoint *old_mp, *root_mp;
1da177e4
LT
2656 int error;
2657
9b40bc90 2658 if (!may_mount())
1da177e4
LT
2659 return -EPERM;
2660
2d8f3038 2661 error = user_path_dir(new_root, &new);
1da177e4
LT
2662 if (error)
2663 goto out0;
1da177e4 2664
2d8f3038 2665 error = user_path_dir(put_old, &old);
1da177e4
LT
2666 if (error)
2667 goto out1;
2668
2d8f3038 2669 error = security_sb_pivotroot(&old, &new);
b12cea91
AV
2670 if (error)
2671 goto out2;
1da177e4 2672
f7ad3c6b 2673 get_fs_root(current->fs, &root);
84d17192
AV
2674 old_mp = lock_mount(&old);
2675 error = PTR_ERR(old_mp);
2676 if (IS_ERR(old_mp))
b12cea91
AV
2677 goto out3;
2678
1da177e4 2679 error = -EINVAL;
419148da
AV
2680 new_mnt = real_mount(new.mnt);
2681 root_mnt = real_mount(root.mnt);
84d17192
AV
2682 old_mnt = real_mount(old.mnt);
2683 if (IS_MNT_SHARED(old_mnt) ||
fc7be130
AV
2684 IS_MNT_SHARED(new_mnt->mnt_parent) ||
2685 IS_MNT_SHARED(root_mnt->mnt_parent))
b12cea91 2686 goto out4;
143c8c91 2687 if (!check_mnt(root_mnt) || !check_mnt(new_mnt))
b12cea91 2688 goto out4;
5ff9d8a6
EB
2689 if (new_mnt->mnt.mnt_flags & MNT_LOCKED)
2690 goto out4;
1da177e4 2691 error = -ENOENT;
f3da392e 2692 if (d_unlinked(new.dentry))
b12cea91 2693 goto out4;
1da177e4 2694 error = -EBUSY;
84d17192 2695 if (new_mnt == root_mnt || old_mnt == root_mnt)
b12cea91 2696 goto out4; /* loop, on the same file system */
1da177e4 2697 error = -EINVAL;
8c3ee42e 2698 if (root.mnt->mnt_root != root.dentry)
b12cea91 2699 goto out4; /* not a mountpoint */
676da58d 2700 if (!mnt_has_parent(root_mnt))
b12cea91 2701 goto out4; /* not attached */
84d17192 2702 root_mp = root_mnt->mnt_mp;
2d8f3038 2703 if (new.mnt->mnt_root != new.dentry)
b12cea91 2704 goto out4; /* not a mountpoint */
676da58d 2705 if (!mnt_has_parent(new_mnt))
b12cea91 2706 goto out4; /* not attached */
4ac91378 2707 /* make sure we can reach put_old from new_root */
84d17192 2708 if (!is_path_reachable(old_mnt, old.dentry, &new))
b12cea91 2709 goto out4;
84d17192 2710 root_mp->m_count++; /* pin it so it won't go away */
719ea2fb 2711 lock_mount_hash();
419148da
AV
2712 detach_mnt(new_mnt, &parent_path);
2713 detach_mnt(root_mnt, &root_parent);
5ff9d8a6
EB
2714 if (root_mnt->mnt.mnt_flags & MNT_LOCKED) {
2715 new_mnt->mnt.mnt_flags |= MNT_LOCKED;
2716 root_mnt->mnt.mnt_flags &= ~MNT_LOCKED;
2717 }
4ac91378 2718 /* mount old root on put_old */
84d17192 2719 attach_mnt(root_mnt, old_mnt, old_mp);
4ac91378 2720 /* mount new_root on / */
84d17192 2721 attach_mnt(new_mnt, real_mount(root_parent.mnt), root_mp);
6b3286ed 2722 touch_mnt_namespace(current->nsproxy->mnt_ns);
719ea2fb 2723 unlock_mount_hash();
2d8f3038 2724 chroot_fs_refs(&root, &new);
84d17192 2725 put_mountpoint(root_mp);
1da177e4 2726 error = 0;
b12cea91 2727out4:
84d17192 2728 unlock_mount(old_mp);
b12cea91
AV
2729 if (!error) {
2730 path_put(&root_parent);
2731 path_put(&parent_path);
2732 }
2733out3:
8c3ee42e 2734 path_put(&root);
b12cea91 2735out2:
2d8f3038 2736 path_put(&old);
1da177e4 2737out1:
2d8f3038 2738 path_put(&new);
1da177e4 2739out0:
1da177e4 2740 return error;
1da177e4
LT
2741}
2742
2743static void __init init_mount_tree(void)
2744{
2745 struct vfsmount *mnt;
6b3286ed 2746 struct mnt_namespace *ns;
ac748a09 2747 struct path root;
0c55cfc4 2748 struct file_system_type *type;
1da177e4 2749
0c55cfc4
EB
2750 type = get_fs_type("rootfs");
2751 if (!type)
2752 panic("Can't find rootfs type");
2753 mnt = vfs_kern_mount(type, 0, "rootfs", NULL);
2754 put_filesystem(type);
1da177e4
LT
2755 if (IS_ERR(mnt))
2756 panic("Can't create rootfs");
b3e19d92 2757
3b22edc5
TM
2758 ns = create_mnt_ns(mnt);
2759 if (IS_ERR(ns))
1da177e4 2760 panic("Can't allocate initial namespace");
6b3286ed
KK
2761
2762 init_task.nsproxy->mnt_ns = ns;
2763 get_mnt_ns(ns);
2764
be08d6d2
AV
2765 root.mnt = mnt;
2766 root.dentry = mnt->mnt_root;
ac748a09
JB
2767
2768 set_fs_pwd(current->fs, &root);
2769 set_fs_root(current->fs, &root);
1da177e4
LT
2770}
2771
74bf17cf 2772void __init mnt_init(void)
1da177e4 2773{
13f14b4d 2774 unsigned u;
15a67dd8 2775 int err;
1da177e4 2776
7d6fec45 2777 mnt_cache = kmem_cache_create("mnt_cache", sizeof(struct mount),
20c2df83 2778 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
1da177e4 2779
b58fed8b 2780 mount_hashtable = (struct list_head *)__get_free_page(GFP_ATOMIC);
84d17192 2781 mountpoint_hashtable = (struct list_head *)__get_free_page(GFP_ATOMIC);
1da177e4 2782
84d17192 2783 if (!mount_hashtable || !mountpoint_hashtable)
1da177e4
LT
2784 panic("Failed to allocate mount hash table\n");
2785
80cdc6da 2786 printk(KERN_INFO "Mount-cache hash table entries: %lu\n", HASH_SIZE);
13f14b4d
ED
2787
2788 for (u = 0; u < HASH_SIZE; u++)
2789 INIT_LIST_HEAD(&mount_hashtable[u]);
84d17192
AV
2790 for (u = 0; u < HASH_SIZE; u++)
2791 INIT_LIST_HEAD(&mountpoint_hashtable[u]);
1da177e4 2792
4b93dc9b
TH
2793 kernfs_init();
2794
15a67dd8
RD
2795 err = sysfs_init();
2796 if (err)
2797 printk(KERN_WARNING "%s: sysfs_init error: %d\n",
8e24eea7 2798 __func__, err);
00d26666
GKH
2799 fs_kobj = kobject_create_and_add("fs", NULL);
2800 if (!fs_kobj)
8e24eea7 2801 printk(KERN_WARNING "%s: kobj create error\n", __func__);
1da177e4
LT
2802 init_rootfs();
2803 init_mount_tree();
2804}
2805
616511d0 2806void put_mnt_ns(struct mnt_namespace *ns)
1da177e4 2807{
d498b25a 2808 if (!atomic_dec_and_test(&ns->count))
616511d0 2809 return;
7b00ed6f 2810 drop_collected_mounts(&ns->root->mnt);
771b1371 2811 free_mnt_ns(ns);
1da177e4 2812}
9d412a43
AV
2813
2814struct vfsmount *kern_mount_data(struct file_system_type *type, void *data)
2815{
423e0ab0
TC
2816 struct vfsmount *mnt;
2817 mnt = vfs_kern_mount(type, MS_KERNMOUNT, type->name, data);
2818 if (!IS_ERR(mnt)) {
2819 /*
2820 * it is a longterm mount, don't release mnt until
2821 * we unmount before file sys is unregistered
2822 */
f7a99c5b 2823 real_mount(mnt)->mnt_ns = MNT_NS_INTERNAL;
423e0ab0
TC
2824 }
2825 return mnt;
9d412a43
AV
2826}
2827EXPORT_SYMBOL_GPL(kern_mount_data);
423e0ab0
TC
2828
2829void kern_unmount(struct vfsmount *mnt)
2830{
2831 /* release long term mount so mount point can be released */
2832 if (!IS_ERR_OR_NULL(mnt)) {
f7a99c5b 2833 real_mount(mnt)->mnt_ns = NULL;
48a066e7 2834 synchronize_rcu(); /* yecchhh... */
423e0ab0
TC
2835 mntput(mnt);
2836 }
2837}
2838EXPORT_SYMBOL(kern_unmount);
02125a82
AV
2839
2840bool our_mnt(struct vfsmount *mnt)
2841{
143c8c91 2842 return check_mnt(real_mount(mnt));
02125a82 2843}
8823c079 2844
3151527e
EB
2845bool current_chrooted(void)
2846{
2847 /* Does the current process have a non-standard root */
2848 struct path ns_root;
2849 struct path fs_root;
2850 bool chrooted;
2851
2852 /* Find the namespace root */
2853 ns_root.mnt = &current->nsproxy->mnt_ns->root->mnt;
2854 ns_root.dentry = ns_root.mnt->mnt_root;
2855 path_get(&ns_root);
2856 while (d_mountpoint(ns_root.dentry) && follow_down_one(&ns_root))
2857 ;
2858
2859 get_fs_root(current->fs, &fs_root);
2860
2861 chrooted = !path_equal(&fs_root, &ns_root);
2862
2863 path_put(&fs_root);
2864 path_put(&ns_root);
2865
2866 return chrooted;
2867}
2868
e51db735 2869bool fs_fully_visible(struct file_system_type *type)
87a8ebd6
EB
2870{
2871 struct mnt_namespace *ns = current->nsproxy->mnt_ns;
2872 struct mount *mnt;
e51db735 2873 bool visible = false;
87a8ebd6 2874
e51db735
EB
2875 if (unlikely(!ns))
2876 return false;
2877
44bb4385 2878 down_read(&namespace_sem);
87a8ebd6 2879 list_for_each_entry(mnt, &ns->list, mnt_list) {
e51db735
EB
2880 struct mount *child;
2881 if (mnt->mnt.mnt_sb->s_type != type)
2882 continue;
2883
2884 /* This mount is not fully visible if there are any child mounts
2885 * that cover anything except for empty directories.
2886 */
2887 list_for_each_entry(child, &mnt->mnt_mounts, mnt_child) {
2888 struct inode *inode = child->mnt_mountpoint->d_inode;
2889 if (!S_ISDIR(inode->i_mode))
2890 goto next;
41301ae7 2891 if (inode->i_nlink > 2)
e51db735 2892 goto next;
87a8ebd6 2893 }
e51db735
EB
2894 visible = true;
2895 goto found;
2896 next: ;
87a8ebd6 2897 }
e51db735 2898found:
44bb4385 2899 up_read(&namespace_sem);
e51db735 2900 return visible;
87a8ebd6
EB
2901}
2902
8823c079
EB
2903static void *mntns_get(struct task_struct *task)
2904{
2905 struct mnt_namespace *ns = NULL;
2906 struct nsproxy *nsproxy;
2907
2908 rcu_read_lock();
2909 nsproxy = task_nsproxy(task);
2910 if (nsproxy) {
2911 ns = nsproxy->mnt_ns;
2912 get_mnt_ns(ns);
2913 }
2914 rcu_read_unlock();
2915
2916 return ns;
2917}
2918
2919static void mntns_put(void *ns)
2920{
2921 put_mnt_ns(ns);
2922}
2923
2924static int mntns_install(struct nsproxy *nsproxy, void *ns)
2925{
2926 struct fs_struct *fs = current->fs;
2927 struct mnt_namespace *mnt_ns = ns;
2928 struct path root;
2929
0c55cfc4 2930 if (!ns_capable(mnt_ns->user_ns, CAP_SYS_ADMIN) ||
c7b96acf
EB
2931 !ns_capable(current_user_ns(), CAP_SYS_CHROOT) ||
2932 !ns_capable(current_user_ns(), CAP_SYS_ADMIN))
ae11e0f1 2933 return -EPERM;
8823c079
EB
2934
2935 if (fs->users != 1)
2936 return -EINVAL;
2937
2938 get_mnt_ns(mnt_ns);
2939 put_mnt_ns(nsproxy->mnt_ns);
2940 nsproxy->mnt_ns = mnt_ns;
2941
2942 /* Find the root */
2943 root.mnt = &mnt_ns->root->mnt;
2944 root.dentry = mnt_ns->root->mnt.mnt_root;
2945 path_get(&root);
2946 while(d_mountpoint(root.dentry) && follow_down_one(&root))
2947 ;
2948
2949 /* Update the pwd and root */
2950 set_fs_pwd(fs, &root);
2951 set_fs_root(fs, &root);
2952
2953 path_put(&root);
2954 return 0;
2955}
2956
98f842e6
EB
2957static unsigned int mntns_inum(void *ns)
2958{
2959 struct mnt_namespace *mnt_ns = ns;
2960 return mnt_ns->proc_inum;
2961}
2962
8823c079
EB
2963const struct proc_ns_operations mntns_operations = {
2964 .name = "mnt",
2965 .type = CLONE_NEWNS,
2966 .get = mntns_get,
2967 .put = mntns_put,
2968 .install = mntns_install,
98f842e6 2969 .inum = mntns_inum,
8823c079 2970};