]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/namespace.c
xps: Transmit Packet Steering
[net-next-2.6.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
LT
11#include <linux/syscalls.h>
12#include <linux/slab.h>
13#include <linux/sched.h>
99b7db7b
NP
14#include <linux/spinlock.h>
15#include <linux/percpu.h>
1da177e4
LT
16#include <linux/smp_lock.h>
17#include <linux/init.h>
15a67dd8 18#include <linux/kernel.h>
1da177e4 19#include <linux/acct.h>
16f7e0fe 20#include <linux/capability.h>
3d733633 21#include <linux/cpumask.h>
1da177e4 22#include <linux/module.h>
f20a9ead 23#include <linux/sysfs.h>
1da177e4 24#include <linux/seq_file.h>
6b3286ed 25#include <linux/mnt_namespace.h>
1da177e4 26#include <linux/namei.h>
b43f3cbd 27#include <linux/nsproxy.h>
1da177e4
LT
28#include <linux/security.h>
29#include <linux/mount.h>
07f3f05c 30#include <linux/ramfs.h>
13f14b4d 31#include <linux/log2.h>
73cd49ec 32#include <linux/idr.h>
5ad4e53b 33#include <linux/fs_struct.h>
2504c5d6 34#include <linux/fsnotify.h>
1da177e4
LT
35#include <asm/uaccess.h>
36#include <asm/unistd.h>
07b20889 37#include "pnode.h"
948730b0 38#include "internal.h"
1da177e4 39
13f14b4d
ED
40#define HASH_SHIFT ilog2(PAGE_SIZE / sizeof(struct list_head))
41#define HASH_SIZE (1UL << HASH_SHIFT)
42
5addc5dd 43static int event;
73cd49ec 44static DEFINE_IDA(mnt_id_ida);
719f5d7f 45static DEFINE_IDA(mnt_group_ida);
99b7db7b 46static DEFINE_SPINLOCK(mnt_id_lock);
f21f6220
AV
47static int mnt_id_start = 0;
48static int mnt_group_start = 1;
1da177e4 49
fa3536cc 50static struct list_head *mount_hashtable __read_mostly;
e18b890b 51static struct kmem_cache *mnt_cache __read_mostly;
390c6843 52static struct rw_semaphore namespace_sem;
1da177e4 53
f87fd4c2 54/* /sys/fs */
00d26666
GKH
55struct kobject *fs_kobj;
56EXPORT_SYMBOL_GPL(fs_kobj);
f87fd4c2 57
99b7db7b
NP
58/*
59 * vfsmount lock may be taken for read to prevent changes to the
60 * vfsmount hash, ie. during mountpoint lookups or walking back
61 * up the tree.
62 *
63 * It should be taken for write in all cases where the vfsmount
64 * tree or hash is modified or when a vfsmount structure is modified.
65 */
66DEFINE_BRLOCK(vfsmount_lock);
67
1da177e4
LT
68static inline unsigned long hash(struct vfsmount *mnt, struct dentry *dentry)
69{
b58fed8b
RP
70 unsigned long tmp = ((unsigned long)mnt / L1_CACHE_BYTES);
71 tmp += ((unsigned long)dentry / L1_CACHE_BYTES);
13f14b4d
ED
72 tmp = tmp + (tmp >> HASH_SHIFT);
73 return tmp & (HASH_SIZE - 1);
1da177e4
LT
74}
75
3d733633
DH
76#define MNT_WRITER_UNDERFLOW_LIMIT -(1<<16)
77
99b7db7b
NP
78/*
79 * allocation is serialized by namespace_sem, but we need the spinlock to
80 * serialize with freeing.
81 */
73cd49ec
MS
82static int mnt_alloc_id(struct vfsmount *mnt)
83{
84 int res;
85
86retry:
87 ida_pre_get(&mnt_id_ida, GFP_KERNEL);
99b7db7b 88 spin_lock(&mnt_id_lock);
f21f6220
AV
89 res = ida_get_new_above(&mnt_id_ida, mnt_id_start, &mnt->mnt_id);
90 if (!res)
91 mnt_id_start = mnt->mnt_id + 1;
99b7db7b 92 spin_unlock(&mnt_id_lock);
73cd49ec
MS
93 if (res == -EAGAIN)
94 goto retry;
95
96 return res;
97}
98
99static void mnt_free_id(struct vfsmount *mnt)
100{
f21f6220 101 int id = mnt->mnt_id;
99b7db7b 102 spin_lock(&mnt_id_lock);
f21f6220
AV
103 ida_remove(&mnt_id_ida, id);
104 if (mnt_id_start > id)
105 mnt_id_start = id;
99b7db7b 106 spin_unlock(&mnt_id_lock);
73cd49ec
MS
107}
108
719f5d7f
MS
109/*
110 * Allocate a new peer group ID
111 *
112 * mnt_group_ida is protected by namespace_sem
113 */
114static int mnt_alloc_group_id(struct vfsmount *mnt)
115{
f21f6220
AV
116 int res;
117
719f5d7f
MS
118 if (!ida_pre_get(&mnt_group_ida, GFP_KERNEL))
119 return -ENOMEM;
120
f21f6220
AV
121 res = ida_get_new_above(&mnt_group_ida,
122 mnt_group_start,
123 &mnt->mnt_group_id);
124 if (!res)
125 mnt_group_start = mnt->mnt_group_id + 1;
126
127 return res;
719f5d7f
MS
128}
129
130/*
131 * Release a peer group ID
132 */
133void mnt_release_group_id(struct vfsmount *mnt)
134{
f21f6220
AV
135 int id = mnt->mnt_group_id;
136 ida_remove(&mnt_group_ida, id);
137 if (mnt_group_start > id)
138 mnt_group_start = id;
719f5d7f
MS
139 mnt->mnt_group_id = 0;
140}
141
1da177e4
LT
142struct vfsmount *alloc_vfsmnt(const char *name)
143{
c3762229 144 struct vfsmount *mnt = kmem_cache_zalloc(mnt_cache, GFP_KERNEL);
1da177e4 145 if (mnt) {
73cd49ec
MS
146 int err;
147
148 err = mnt_alloc_id(mnt);
88b38782
LZ
149 if (err)
150 goto out_free_cache;
151
152 if (name) {
153 mnt->mnt_devname = kstrdup(name, GFP_KERNEL);
154 if (!mnt->mnt_devname)
155 goto out_free_id;
73cd49ec
MS
156 }
157
b58fed8b 158 atomic_set(&mnt->mnt_count, 1);
1da177e4
LT
159 INIT_LIST_HEAD(&mnt->mnt_hash);
160 INIT_LIST_HEAD(&mnt->mnt_child);
161 INIT_LIST_HEAD(&mnt->mnt_mounts);
162 INIT_LIST_HEAD(&mnt->mnt_list);
55e700b9 163 INIT_LIST_HEAD(&mnt->mnt_expire);
03e06e68 164 INIT_LIST_HEAD(&mnt->mnt_share);
a58b0eb8
RP
165 INIT_LIST_HEAD(&mnt->mnt_slave_list);
166 INIT_LIST_HEAD(&mnt->mnt_slave);
2504c5d6
AG
167#ifdef CONFIG_FSNOTIFY
168 INIT_HLIST_HEAD(&mnt->mnt_fsnotify_marks);
169#endif
d3ef3d73 170#ifdef CONFIG_SMP
171 mnt->mnt_writers = alloc_percpu(int);
172 if (!mnt->mnt_writers)
173 goto out_free_devname;
174#else
175 mnt->mnt_writers = 0;
176#endif
1da177e4
LT
177 }
178 return mnt;
88b38782 179
d3ef3d73 180#ifdef CONFIG_SMP
181out_free_devname:
182 kfree(mnt->mnt_devname);
183#endif
88b38782
LZ
184out_free_id:
185 mnt_free_id(mnt);
186out_free_cache:
187 kmem_cache_free(mnt_cache, mnt);
188 return NULL;
1da177e4
LT
189}
190
3d733633
DH
191/*
192 * Most r/o checks on a fs are for operations that take
193 * discrete amounts of time, like a write() or unlink().
194 * We must keep track of when those operations start
195 * (for permission checks) and when they end, so that
196 * we can determine when writes are able to occur to
197 * a filesystem.
198 */
199/*
200 * __mnt_is_readonly: check whether a mount is read-only
201 * @mnt: the mount to check for its write status
202 *
203 * This shouldn't be used directly ouside of the VFS.
204 * It does not guarantee that the filesystem will stay
205 * r/w, just that it is right *now*. This can not and
206 * should not be used in place of IS_RDONLY(inode).
207 * mnt_want/drop_write() will _keep_ the filesystem
208 * r/w.
209 */
210int __mnt_is_readonly(struct vfsmount *mnt)
211{
2e4b7fcd
DH
212 if (mnt->mnt_flags & MNT_READONLY)
213 return 1;
214 if (mnt->mnt_sb->s_flags & MS_RDONLY)
215 return 1;
216 return 0;
3d733633
DH
217}
218EXPORT_SYMBOL_GPL(__mnt_is_readonly);
219
d3ef3d73 220static inline void inc_mnt_writers(struct vfsmount *mnt)
221{
222#ifdef CONFIG_SMP
223 (*per_cpu_ptr(mnt->mnt_writers, smp_processor_id()))++;
224#else
225 mnt->mnt_writers++;
226#endif
227}
3d733633 228
d3ef3d73 229static inline void dec_mnt_writers(struct vfsmount *mnt)
3d733633 230{
d3ef3d73 231#ifdef CONFIG_SMP
232 (*per_cpu_ptr(mnt->mnt_writers, smp_processor_id()))--;
233#else
234 mnt->mnt_writers--;
235#endif
3d733633 236}
3d733633 237
d3ef3d73 238static unsigned int count_mnt_writers(struct vfsmount *mnt)
3d733633 239{
d3ef3d73 240#ifdef CONFIG_SMP
241 unsigned int count = 0;
3d733633 242 int cpu;
3d733633
DH
243
244 for_each_possible_cpu(cpu) {
d3ef3d73 245 count += *per_cpu_ptr(mnt->mnt_writers, cpu);
3d733633 246 }
3d733633 247
d3ef3d73 248 return count;
249#else
250 return mnt->mnt_writers;
251#endif
3d733633
DH
252}
253
8366025e
DH
254/*
255 * Most r/o checks on a fs are for operations that take
256 * discrete amounts of time, like a write() or unlink().
257 * We must keep track of when those operations start
258 * (for permission checks) and when they end, so that
259 * we can determine when writes are able to occur to
260 * a filesystem.
261 */
262/**
263 * mnt_want_write - get write access to a mount
264 * @mnt: the mount on which to take a write
265 *
266 * This tells the low-level filesystem that a write is
267 * about to be performed to it, and makes sure that
268 * writes are allowed before returning success. When
269 * the write operation is finished, mnt_drop_write()
270 * must be called. This is effectively a refcount.
271 */
272int mnt_want_write(struct vfsmount *mnt)
273{
3d733633 274 int ret = 0;
3d733633 275
d3ef3d73 276 preempt_disable();
277 inc_mnt_writers(mnt);
278 /*
279 * The store to inc_mnt_writers must be visible before we pass
280 * MNT_WRITE_HOLD loop below, so that the slowpath can see our
281 * incremented count after it has set MNT_WRITE_HOLD.
282 */
283 smp_mb();
284 while (mnt->mnt_flags & MNT_WRITE_HOLD)
285 cpu_relax();
286 /*
287 * After the slowpath clears MNT_WRITE_HOLD, mnt_is_readonly will
288 * be set to match its requirements. So we must not load that until
289 * MNT_WRITE_HOLD is cleared.
290 */
291 smp_rmb();
3d733633 292 if (__mnt_is_readonly(mnt)) {
d3ef3d73 293 dec_mnt_writers(mnt);
3d733633
DH
294 ret = -EROFS;
295 goto out;
296 }
3d733633 297out:
d3ef3d73 298 preempt_enable();
3d733633 299 return ret;
8366025e
DH
300}
301EXPORT_SYMBOL_GPL(mnt_want_write);
302
96029c4e 303/**
304 * mnt_clone_write - get write access to a mount
305 * @mnt: the mount on which to take a write
306 *
307 * This is effectively like mnt_want_write, except
308 * it must only be used to take an extra write reference
309 * on a mountpoint that we already know has a write reference
310 * on it. This allows some optimisation.
311 *
312 * After finished, mnt_drop_write must be called as usual to
313 * drop the reference.
314 */
315int mnt_clone_write(struct vfsmount *mnt)
316{
317 /* superblock may be r/o */
318 if (__mnt_is_readonly(mnt))
319 return -EROFS;
320 preempt_disable();
321 inc_mnt_writers(mnt);
322 preempt_enable();
323 return 0;
324}
325EXPORT_SYMBOL_GPL(mnt_clone_write);
326
327/**
328 * mnt_want_write_file - get write access to a file's mount
329 * @file: the file who's mount on which to take a write
330 *
331 * This is like mnt_want_write, but it takes a file and can
332 * do some optimisations if the file is open for write already
333 */
334int mnt_want_write_file(struct file *file)
335{
2d8dd38a
OH
336 struct inode *inode = file->f_dentry->d_inode;
337 if (!(file->f_mode & FMODE_WRITE) || special_file(inode->i_mode))
96029c4e 338 return mnt_want_write(file->f_path.mnt);
339 else
340 return mnt_clone_write(file->f_path.mnt);
341}
342EXPORT_SYMBOL_GPL(mnt_want_write_file);
343
8366025e
DH
344/**
345 * mnt_drop_write - give up write access to a mount
346 * @mnt: the mount on which to give up write access
347 *
348 * Tells the low-level filesystem that we are done
349 * performing writes to it. Must be matched with
350 * mnt_want_write() call above.
351 */
352void mnt_drop_write(struct vfsmount *mnt)
353{
d3ef3d73 354 preempt_disable();
355 dec_mnt_writers(mnt);
356 preempt_enable();
8366025e
DH
357}
358EXPORT_SYMBOL_GPL(mnt_drop_write);
359
2e4b7fcd 360static int mnt_make_readonly(struct vfsmount *mnt)
8366025e 361{
3d733633
DH
362 int ret = 0;
363
99b7db7b 364 br_write_lock(vfsmount_lock);
d3ef3d73 365 mnt->mnt_flags |= MNT_WRITE_HOLD;
3d733633 366 /*
d3ef3d73 367 * After storing MNT_WRITE_HOLD, we'll read the counters. This store
368 * should be visible before we do.
3d733633 369 */
d3ef3d73 370 smp_mb();
371
3d733633 372 /*
d3ef3d73 373 * With writers on hold, if this value is zero, then there are
374 * definitely no active writers (although held writers may subsequently
375 * increment the count, they'll have to wait, and decrement it after
376 * seeing MNT_READONLY).
377 *
378 * It is OK to have counter incremented on one CPU and decremented on
379 * another: the sum will add up correctly. The danger would be when we
380 * sum up each counter, if we read a counter before it is incremented,
381 * but then read another CPU's count which it has been subsequently
382 * decremented from -- we would see more decrements than we should.
383 * MNT_WRITE_HOLD protects against this scenario, because
384 * mnt_want_write first increments count, then smp_mb, then spins on
385 * MNT_WRITE_HOLD, so it can't be decremented by another CPU while
386 * we're counting up here.
3d733633 387 */
d3ef3d73 388 if (count_mnt_writers(mnt) > 0)
389 ret = -EBUSY;
390 else
2e4b7fcd 391 mnt->mnt_flags |= MNT_READONLY;
d3ef3d73 392 /*
393 * MNT_READONLY must become visible before ~MNT_WRITE_HOLD, so writers
394 * that become unheld will see MNT_READONLY.
395 */
396 smp_wmb();
397 mnt->mnt_flags &= ~MNT_WRITE_HOLD;
99b7db7b 398 br_write_unlock(vfsmount_lock);
3d733633 399 return ret;
8366025e 400}
8366025e 401
2e4b7fcd
DH
402static void __mnt_unmake_readonly(struct vfsmount *mnt)
403{
99b7db7b 404 br_write_lock(vfsmount_lock);
2e4b7fcd 405 mnt->mnt_flags &= ~MNT_READONLY;
99b7db7b 406 br_write_unlock(vfsmount_lock);
2e4b7fcd
DH
407}
408
a3ec947c 409void simple_set_mnt(struct vfsmount *mnt, struct super_block *sb)
454e2398
DH
410{
411 mnt->mnt_sb = sb;
412 mnt->mnt_root = dget(sb->s_root);
454e2398
DH
413}
414
415EXPORT_SYMBOL(simple_set_mnt);
416
1da177e4
LT
417void free_vfsmnt(struct vfsmount *mnt)
418{
419 kfree(mnt->mnt_devname);
73cd49ec 420 mnt_free_id(mnt);
d3ef3d73 421#ifdef CONFIG_SMP
422 free_percpu(mnt->mnt_writers);
423#endif
1da177e4
LT
424 kmem_cache_free(mnt_cache, mnt);
425}
426
427/*
a05964f3
RP
428 * find the first or last mount at @dentry on vfsmount @mnt depending on
429 * @dir. If @dir is set return the first mount else return the last mount.
99b7db7b 430 * vfsmount_lock must be held for read or write.
1da177e4 431 */
a05964f3
RP
432struct vfsmount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry,
433 int dir)
1da177e4 434{
b58fed8b
RP
435 struct list_head *head = mount_hashtable + hash(mnt, dentry);
436 struct list_head *tmp = head;
1da177e4
LT
437 struct vfsmount *p, *found = NULL;
438
1da177e4 439 for (;;) {
a05964f3 440 tmp = dir ? tmp->next : tmp->prev;
1da177e4
LT
441 p = NULL;
442 if (tmp == head)
443 break;
444 p = list_entry(tmp, struct vfsmount, mnt_hash);
445 if (p->mnt_parent == mnt && p->mnt_mountpoint == dentry) {
a05964f3 446 found = p;
1da177e4
LT
447 break;
448 }
449 }
1da177e4
LT
450 return found;
451}
452
a05964f3
RP
453/*
454 * lookup_mnt increments the ref count before returning
455 * the vfsmount struct.
456 */
1c755af4 457struct vfsmount *lookup_mnt(struct path *path)
a05964f3
RP
458{
459 struct vfsmount *child_mnt;
99b7db7b
NP
460
461 br_read_lock(vfsmount_lock);
1c755af4 462 if ((child_mnt = __lookup_mnt(path->mnt, path->dentry, 1)))
a05964f3 463 mntget(child_mnt);
99b7db7b 464 br_read_unlock(vfsmount_lock);
a05964f3
RP
465 return child_mnt;
466}
467
1da177e4
LT
468static inline int check_mnt(struct vfsmount *mnt)
469{
6b3286ed 470 return mnt->mnt_ns == current->nsproxy->mnt_ns;
1da177e4
LT
471}
472
99b7db7b
NP
473/*
474 * vfsmount lock must be held for write
475 */
6b3286ed 476static void touch_mnt_namespace(struct mnt_namespace *ns)
5addc5dd
AV
477{
478 if (ns) {
479 ns->event = ++event;
480 wake_up_interruptible(&ns->poll);
481 }
482}
483
99b7db7b
NP
484/*
485 * vfsmount lock must be held for write
486 */
6b3286ed 487static void __touch_mnt_namespace(struct mnt_namespace *ns)
5addc5dd
AV
488{
489 if (ns && ns->event != event) {
490 ns->event = event;
491 wake_up_interruptible(&ns->poll);
492 }
493}
494
99b7db7b
NP
495/*
496 * vfsmount lock must be held for write
497 */
1a390689 498static void detach_mnt(struct vfsmount *mnt, struct path *old_path)
1da177e4 499{
1a390689
AV
500 old_path->dentry = mnt->mnt_mountpoint;
501 old_path->mnt = mnt->mnt_parent;
1da177e4
LT
502 mnt->mnt_parent = mnt;
503 mnt->mnt_mountpoint = mnt->mnt_root;
504 list_del_init(&mnt->mnt_child);
505 list_del_init(&mnt->mnt_hash);
1a390689 506 old_path->dentry->d_mounted--;
1da177e4
LT
507}
508
99b7db7b
NP
509/*
510 * vfsmount lock must be held for write
511 */
b90fa9ae
RP
512void mnt_set_mountpoint(struct vfsmount *mnt, struct dentry *dentry,
513 struct vfsmount *child_mnt)
514{
515 child_mnt->mnt_parent = mntget(mnt);
516 child_mnt->mnt_mountpoint = dget(dentry);
517 dentry->d_mounted++;
518}
519
99b7db7b
NP
520/*
521 * vfsmount lock must be held for write
522 */
1a390689 523static void attach_mnt(struct vfsmount *mnt, struct path *path)
1da177e4 524{
1a390689 525 mnt_set_mountpoint(path->mnt, path->dentry, mnt);
b90fa9ae 526 list_add_tail(&mnt->mnt_hash, mount_hashtable +
1a390689
AV
527 hash(path->mnt, path->dentry));
528 list_add_tail(&mnt->mnt_child, &path->mnt->mnt_mounts);
b90fa9ae
RP
529}
530
531/*
99b7db7b 532 * vfsmount lock must be held for write
b90fa9ae
RP
533 */
534static void commit_tree(struct vfsmount *mnt)
535{
536 struct vfsmount *parent = mnt->mnt_parent;
537 struct vfsmount *m;
538 LIST_HEAD(head);
6b3286ed 539 struct mnt_namespace *n = parent->mnt_ns;
b90fa9ae
RP
540
541 BUG_ON(parent == mnt);
542
543 list_add_tail(&head, &mnt->mnt_list);
544 list_for_each_entry(m, &head, mnt_list)
6b3286ed 545 m->mnt_ns = n;
b90fa9ae
RP
546 list_splice(&head, n->list.prev);
547
548 list_add_tail(&mnt->mnt_hash, mount_hashtable +
549 hash(parent, mnt->mnt_mountpoint));
550 list_add_tail(&mnt->mnt_child, &parent->mnt_mounts);
6b3286ed 551 touch_mnt_namespace(n);
1da177e4
LT
552}
553
554static struct vfsmount *next_mnt(struct vfsmount *p, struct vfsmount *root)
555{
556 struct list_head *next = p->mnt_mounts.next;
557 if (next == &p->mnt_mounts) {
558 while (1) {
559 if (p == root)
560 return NULL;
561 next = p->mnt_child.next;
562 if (next != &p->mnt_parent->mnt_mounts)
563 break;
564 p = p->mnt_parent;
565 }
566 }
567 return list_entry(next, struct vfsmount, mnt_child);
568}
569
9676f0c6
RP
570static struct vfsmount *skip_mnt_tree(struct vfsmount *p)
571{
572 struct list_head *prev = p->mnt_mounts.prev;
573 while (prev != &p->mnt_mounts) {
574 p = list_entry(prev, struct vfsmount, mnt_child);
575 prev = p->mnt_mounts.prev;
576 }
577 return p;
578}
579
36341f64
RP
580static struct vfsmount *clone_mnt(struct vfsmount *old, struct dentry *root,
581 int flag)
1da177e4
LT
582{
583 struct super_block *sb = old->mnt_sb;
584 struct vfsmount *mnt = alloc_vfsmnt(old->mnt_devname);
585
586 if (mnt) {
719f5d7f
MS
587 if (flag & (CL_SLAVE | CL_PRIVATE))
588 mnt->mnt_group_id = 0; /* not a peer of original */
589 else
590 mnt->mnt_group_id = old->mnt_group_id;
591
592 if ((flag & CL_MAKE_SHARED) && !mnt->mnt_group_id) {
593 int err = mnt_alloc_group_id(mnt);
594 if (err)
595 goto out_free;
596 }
597
be1a16a0 598 mnt->mnt_flags = old->mnt_flags & ~MNT_WRITE_HOLD;
1da177e4
LT
599 atomic_inc(&sb->s_active);
600 mnt->mnt_sb = sb;
601 mnt->mnt_root = dget(root);
602 mnt->mnt_mountpoint = mnt->mnt_root;
603 mnt->mnt_parent = mnt;
b90fa9ae 604
5afe0022
RP
605 if (flag & CL_SLAVE) {
606 list_add(&mnt->mnt_slave, &old->mnt_slave_list);
607 mnt->mnt_master = old;
608 CLEAR_MNT_SHARED(mnt);
8aec0809 609 } else if (!(flag & CL_PRIVATE)) {
796a6b52 610 if ((flag & CL_MAKE_SHARED) || IS_MNT_SHARED(old))
5afe0022
RP
611 list_add(&mnt->mnt_share, &old->mnt_share);
612 if (IS_MNT_SLAVE(old))
613 list_add(&mnt->mnt_slave, &old->mnt_slave);
614 mnt->mnt_master = old->mnt_master;
615 }
b90fa9ae
RP
616 if (flag & CL_MAKE_SHARED)
617 set_mnt_shared(mnt);
1da177e4
LT
618
619 /* stick the duplicate mount on the same expiry list
620 * as the original if that was on one */
36341f64 621 if (flag & CL_EXPIRE) {
36341f64
RP
622 if (!list_empty(&old->mnt_expire))
623 list_add(&mnt->mnt_expire, &old->mnt_expire);
36341f64 624 }
1da177e4
LT
625 }
626 return mnt;
719f5d7f
MS
627
628 out_free:
629 free_vfsmnt(mnt);
630 return NULL;
1da177e4
LT
631}
632
7b7b1ace 633static inline void __mntput(struct vfsmount *mnt)
1da177e4
LT
634{
635 struct super_block *sb = mnt->mnt_sb;
3d733633
DH
636 /*
637 * This probably indicates that somebody messed
638 * up a mnt_want/drop_write() pair. If this
639 * happens, the filesystem was probably unable
640 * to make r/w->r/o transitions.
641 */
d3ef3d73 642 /*
643 * atomic_dec_and_lock() used to deal with ->mnt_count decrements
644 * provides barriers, so count_mnt_writers() below is safe. AV
645 */
646 WARN_ON(count_mnt_writers(mnt));
ca9c726e 647 fsnotify_vfsmount_delete(mnt);
1da177e4
LT
648 dput(mnt->mnt_root);
649 free_vfsmnt(mnt);
650 deactivate_super(sb);
651}
652
7b7b1ace
AV
653void mntput_no_expire(struct vfsmount *mnt)
654{
655repeat:
99b7db7b
NP
656 if (atomic_add_unless(&mnt->mnt_count, -1, 1))
657 return;
658 br_write_lock(vfsmount_lock);
659 if (!atomic_dec_and_test(&mnt->mnt_count)) {
660 br_write_unlock(vfsmount_lock);
661 return;
662 }
663 if (likely(!mnt->mnt_pinned)) {
664 br_write_unlock(vfsmount_lock);
665 __mntput(mnt);
666 return;
7b7b1ace 667 }
99b7db7b
NP
668 atomic_add(mnt->mnt_pinned + 1, &mnt->mnt_count);
669 mnt->mnt_pinned = 0;
670 br_write_unlock(vfsmount_lock);
671 acct_auto_close_mnt(mnt);
672 goto repeat;
7b7b1ace 673}
7b7b1ace
AV
674EXPORT_SYMBOL(mntput_no_expire);
675
676void mnt_pin(struct vfsmount *mnt)
677{
99b7db7b 678 br_write_lock(vfsmount_lock);
7b7b1ace 679 mnt->mnt_pinned++;
99b7db7b 680 br_write_unlock(vfsmount_lock);
7b7b1ace
AV
681}
682
683EXPORT_SYMBOL(mnt_pin);
684
685void mnt_unpin(struct vfsmount *mnt)
686{
99b7db7b 687 br_write_lock(vfsmount_lock);
7b7b1ace
AV
688 if (mnt->mnt_pinned) {
689 atomic_inc(&mnt->mnt_count);
690 mnt->mnt_pinned--;
691 }
99b7db7b 692 br_write_unlock(vfsmount_lock);
7b7b1ace
AV
693}
694
695EXPORT_SYMBOL(mnt_unpin);
1da177e4 696
b3b304a2
MS
697static inline void mangle(struct seq_file *m, const char *s)
698{
699 seq_escape(m, s, " \t\n\\");
700}
701
702/*
703 * Simple .show_options callback for filesystems which don't want to
704 * implement more complex mount option showing.
705 *
706 * See also save_mount_options().
707 */
708int generic_show_options(struct seq_file *m, struct vfsmount *mnt)
709{
2a32cebd
AV
710 const char *options;
711
712 rcu_read_lock();
713 options = rcu_dereference(mnt->mnt_sb->s_options);
b3b304a2
MS
714
715 if (options != NULL && options[0]) {
716 seq_putc(m, ',');
717 mangle(m, options);
718 }
2a32cebd 719 rcu_read_unlock();
b3b304a2
MS
720
721 return 0;
722}
723EXPORT_SYMBOL(generic_show_options);
724
725/*
726 * If filesystem uses generic_show_options(), this function should be
727 * called from the fill_super() callback.
728 *
729 * The .remount_fs callback usually needs to be handled in a special
730 * way, to make sure, that previous options are not overwritten if the
731 * remount fails.
732 *
733 * Also note, that if the filesystem's .remount_fs function doesn't
734 * reset all options to their default value, but changes only newly
735 * given options, then the displayed options will not reflect reality
736 * any more.
737 */
738void save_mount_options(struct super_block *sb, char *options)
739{
2a32cebd
AV
740 BUG_ON(sb->s_options);
741 rcu_assign_pointer(sb->s_options, kstrdup(options, GFP_KERNEL));
b3b304a2
MS
742}
743EXPORT_SYMBOL(save_mount_options);
744
2a32cebd
AV
745void replace_mount_options(struct super_block *sb, char *options)
746{
747 char *old = sb->s_options;
748 rcu_assign_pointer(sb->s_options, options);
749 if (old) {
750 synchronize_rcu();
751 kfree(old);
752 }
753}
754EXPORT_SYMBOL(replace_mount_options);
755
a1a2c409 756#ifdef CONFIG_PROC_FS
1da177e4
LT
757/* iterator */
758static void *m_start(struct seq_file *m, loff_t *pos)
759{
a1a2c409 760 struct proc_mounts *p = m->private;
1da177e4 761
390c6843 762 down_read(&namespace_sem);
a1a2c409 763 return seq_list_start(&p->ns->list, *pos);
1da177e4
LT
764}
765
766static void *m_next(struct seq_file *m, void *v, loff_t *pos)
767{
a1a2c409 768 struct proc_mounts *p = m->private;
b0765fb8 769
a1a2c409 770 return seq_list_next(v, &p->ns->list, pos);
1da177e4
LT
771}
772
773static void m_stop(struct seq_file *m, void *v)
774{
390c6843 775 up_read(&namespace_sem);
1da177e4
LT
776}
777
9f5596af
AV
778int mnt_had_events(struct proc_mounts *p)
779{
780 struct mnt_namespace *ns = p->ns;
781 int res = 0;
782
99b7db7b 783 br_read_lock(vfsmount_lock);
9f5596af
AV
784 if (p->event != ns->event) {
785 p->event = ns->event;
786 res = 1;
787 }
99b7db7b 788 br_read_unlock(vfsmount_lock);
9f5596af
AV
789
790 return res;
791}
792
2d4d4864
RP
793struct proc_fs_info {
794 int flag;
795 const char *str;
796};
797
2069f457 798static int show_sb_opts(struct seq_file *m, struct super_block *sb)
1da177e4 799{
2d4d4864 800 static const struct proc_fs_info fs_info[] = {
1da177e4
LT
801 { MS_SYNCHRONOUS, ",sync" },
802 { MS_DIRSYNC, ",dirsync" },
803 { MS_MANDLOCK, ",mand" },
1da177e4
LT
804 { 0, NULL }
805 };
2d4d4864
RP
806 const struct proc_fs_info *fs_infop;
807
808 for (fs_infop = fs_info; fs_infop->flag; fs_infop++) {
809 if (sb->s_flags & fs_infop->flag)
810 seq_puts(m, fs_infop->str);
811 }
2069f457
EP
812
813 return security_sb_show_options(m, sb);
2d4d4864
RP
814}
815
816static void show_mnt_opts(struct seq_file *m, struct vfsmount *mnt)
817{
818 static const struct proc_fs_info mnt_info[] = {
1da177e4
LT
819 { MNT_NOSUID, ",nosuid" },
820 { MNT_NODEV, ",nodev" },
821 { MNT_NOEXEC, ",noexec" },
fc33a7bb
CH
822 { MNT_NOATIME, ",noatime" },
823 { MNT_NODIRATIME, ",nodiratime" },
47ae32d6 824 { MNT_RELATIME, ",relatime" },
1da177e4
LT
825 { 0, NULL }
826 };
2d4d4864
RP
827 const struct proc_fs_info *fs_infop;
828
829 for (fs_infop = mnt_info; fs_infop->flag; fs_infop++) {
830 if (mnt->mnt_flags & fs_infop->flag)
831 seq_puts(m, fs_infop->str);
832 }
833}
834
835static void show_type(struct seq_file *m, struct super_block *sb)
836{
837 mangle(m, sb->s_type->name);
838 if (sb->s_subtype && sb->s_subtype[0]) {
839 seq_putc(m, '.');
840 mangle(m, sb->s_subtype);
841 }
842}
843
844static int show_vfsmnt(struct seq_file *m, void *v)
845{
846 struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
847 int err = 0;
c32c2f63 848 struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
1da177e4
LT
849
850 mangle(m, mnt->mnt_devname ? mnt->mnt_devname : "none");
851 seq_putc(m, ' ');
c32c2f63 852 seq_path(m, &mnt_path, " \t\n\\");
1da177e4 853 seq_putc(m, ' ');
2d4d4864 854 show_type(m, mnt->mnt_sb);
2e4b7fcd 855 seq_puts(m, __mnt_is_readonly(mnt) ? " ro" : " rw");
2069f457
EP
856 err = show_sb_opts(m, mnt->mnt_sb);
857 if (err)
858 goto out;
2d4d4864 859 show_mnt_opts(m, mnt);
1da177e4
LT
860 if (mnt->mnt_sb->s_op->show_options)
861 err = mnt->mnt_sb->s_op->show_options(m, mnt);
862 seq_puts(m, " 0 0\n");
2069f457 863out:
1da177e4
LT
864 return err;
865}
866
a1a2c409 867const struct seq_operations mounts_op = {
1da177e4
LT
868 .start = m_start,
869 .next = m_next,
870 .stop = m_stop,
871 .show = show_vfsmnt
872};
873
2d4d4864
RP
874static int show_mountinfo(struct seq_file *m, void *v)
875{
876 struct proc_mounts *p = m->private;
877 struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
878 struct super_block *sb = mnt->mnt_sb;
879 struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
880 struct path root = p->root;
881 int err = 0;
882
883 seq_printf(m, "%i %i %u:%u ", mnt->mnt_id, mnt->mnt_parent->mnt_id,
884 MAJOR(sb->s_dev), MINOR(sb->s_dev));
885 seq_dentry(m, mnt->mnt_root, " \t\n\\");
886 seq_putc(m, ' ');
887 seq_path_root(m, &mnt_path, &root, " \t\n\\");
888 if (root.mnt != p->root.mnt || root.dentry != p->root.dentry) {
889 /*
890 * Mountpoint is outside root, discard that one. Ugly,
891 * but less so than trying to do that in iterator in a
892 * race-free way (due to renames).
893 */
894 return SEQ_SKIP;
895 }
896 seq_puts(m, mnt->mnt_flags & MNT_READONLY ? " ro" : " rw");
897 show_mnt_opts(m, mnt);
898
899 /* Tagged fields ("foo:X" or "bar") */
900 if (IS_MNT_SHARED(mnt))
901 seq_printf(m, " shared:%i", mnt->mnt_group_id);
97e7e0f7
MS
902 if (IS_MNT_SLAVE(mnt)) {
903 int master = mnt->mnt_master->mnt_group_id;
904 int dom = get_dominating_id(mnt, &p->root);
905 seq_printf(m, " master:%i", master);
906 if (dom && dom != master)
907 seq_printf(m, " propagate_from:%i", dom);
908 }
2d4d4864
RP
909 if (IS_MNT_UNBINDABLE(mnt))
910 seq_puts(m, " unbindable");
911
912 /* Filesystem specific data */
913 seq_puts(m, " - ");
914 show_type(m, sb);
915 seq_putc(m, ' ');
916 mangle(m, mnt->mnt_devname ? mnt->mnt_devname : "none");
917 seq_puts(m, sb->s_flags & MS_RDONLY ? " ro" : " rw");
2069f457
EP
918 err = show_sb_opts(m, sb);
919 if (err)
920 goto out;
2d4d4864
RP
921 if (sb->s_op->show_options)
922 err = sb->s_op->show_options(m, mnt);
923 seq_putc(m, '\n');
2069f457 924out:
2d4d4864
RP
925 return err;
926}
927
928const struct seq_operations mountinfo_op = {
929 .start = m_start,
930 .next = m_next,
931 .stop = m_stop,
932 .show = show_mountinfo,
933};
934
b4629fe2
CL
935static int show_vfsstat(struct seq_file *m, void *v)
936{
b0765fb8 937 struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
c32c2f63 938 struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
b4629fe2
CL
939 int err = 0;
940
941 /* device */
942 if (mnt->mnt_devname) {
943 seq_puts(m, "device ");
944 mangle(m, mnt->mnt_devname);
945 } else
946 seq_puts(m, "no device");
947
948 /* mount point */
949 seq_puts(m, " mounted on ");
c32c2f63 950 seq_path(m, &mnt_path, " \t\n\\");
b4629fe2
CL
951 seq_putc(m, ' ');
952
953 /* file system type */
954 seq_puts(m, "with fstype ");
2d4d4864 955 show_type(m, mnt->mnt_sb);
b4629fe2
CL
956
957 /* optional statistics */
958 if (mnt->mnt_sb->s_op->show_stats) {
959 seq_putc(m, ' ');
960 err = mnt->mnt_sb->s_op->show_stats(m, mnt);
961 }
962
963 seq_putc(m, '\n');
964 return err;
965}
966
a1a2c409 967const struct seq_operations mountstats_op = {
b4629fe2
CL
968 .start = m_start,
969 .next = m_next,
970 .stop = m_stop,
971 .show = show_vfsstat,
972};
a1a2c409 973#endif /* CONFIG_PROC_FS */
b4629fe2 974
1da177e4
LT
975/**
976 * may_umount_tree - check if a mount tree is busy
977 * @mnt: root of mount tree
978 *
979 * This is called to check if a tree of mounts has any
980 * open files, pwds, chroots or sub mounts that are
981 * busy.
982 */
983int may_umount_tree(struct vfsmount *mnt)
984{
36341f64
RP
985 int actual_refs = 0;
986 int minimum_refs = 0;
987 struct vfsmount *p;
1da177e4 988
99b7db7b 989 br_read_lock(vfsmount_lock);
36341f64 990 for (p = mnt; p; p = next_mnt(p, mnt)) {
1da177e4
LT
991 actual_refs += atomic_read(&p->mnt_count);
992 minimum_refs += 2;
1da177e4 993 }
99b7db7b 994 br_read_unlock(vfsmount_lock);
1da177e4
LT
995
996 if (actual_refs > minimum_refs)
e3474a8e 997 return 0;
1da177e4 998
e3474a8e 999 return 1;
1da177e4
LT
1000}
1001
1002EXPORT_SYMBOL(may_umount_tree);
1003
1004/**
1005 * may_umount - check if a mount point is busy
1006 * @mnt: root of mount
1007 *
1008 * This is called to check if a mount point has any
1009 * open files, pwds, chroots or sub mounts. If the
1010 * mount has sub mounts this will return busy
1011 * regardless of whether the sub mounts are busy.
1012 *
1013 * Doesn't take quota and stuff into account. IOW, in some cases it will
1014 * give false negatives. The main reason why it's here is that we need
1015 * a non-destructive way to look for easily umountable filesystems.
1016 */
1017int may_umount(struct vfsmount *mnt)
1018{
e3474a8e 1019 int ret = 1;
8ad08d8a 1020 down_read(&namespace_sem);
99b7db7b 1021 br_read_lock(vfsmount_lock);
a05964f3 1022 if (propagate_mount_busy(mnt, 2))
e3474a8e 1023 ret = 0;
99b7db7b 1024 br_read_unlock(vfsmount_lock);
8ad08d8a 1025 up_read(&namespace_sem);
a05964f3 1026 return ret;
1da177e4
LT
1027}
1028
1029EXPORT_SYMBOL(may_umount);
1030
b90fa9ae 1031void release_mounts(struct list_head *head)
70fbcdf4
RP
1032{
1033 struct vfsmount *mnt;
bf066c7d 1034 while (!list_empty(head)) {
b5e61818 1035 mnt = list_first_entry(head, struct vfsmount, mnt_hash);
70fbcdf4
RP
1036 list_del_init(&mnt->mnt_hash);
1037 if (mnt->mnt_parent != mnt) {
1038 struct dentry *dentry;
1039 struct vfsmount *m;
99b7db7b
NP
1040
1041 br_write_lock(vfsmount_lock);
70fbcdf4
RP
1042 dentry = mnt->mnt_mountpoint;
1043 m = mnt->mnt_parent;
1044 mnt->mnt_mountpoint = mnt->mnt_root;
1045 mnt->mnt_parent = mnt;
7c4b93d8 1046 m->mnt_ghosts--;
99b7db7b 1047 br_write_unlock(vfsmount_lock);
70fbcdf4
RP
1048 dput(dentry);
1049 mntput(m);
1050 }
1051 mntput(mnt);
1052 }
1053}
1054
99b7db7b
NP
1055/*
1056 * vfsmount lock must be held for write
1057 * namespace_sem must be held for write
1058 */
a05964f3 1059void umount_tree(struct vfsmount *mnt, int propagate, struct list_head *kill)
1da177e4
LT
1060{
1061 struct vfsmount *p;
1da177e4 1062
1bfba4e8
AM
1063 for (p = mnt; p; p = next_mnt(p, mnt))
1064 list_move(&p->mnt_hash, kill);
1da177e4 1065
a05964f3
RP
1066 if (propagate)
1067 propagate_umount(kill);
1068
70fbcdf4
RP
1069 list_for_each_entry(p, kill, mnt_hash) {
1070 list_del_init(&p->mnt_expire);
1071 list_del_init(&p->mnt_list);
6b3286ed
KK
1072 __touch_mnt_namespace(p->mnt_ns);
1073 p->mnt_ns = NULL;
70fbcdf4 1074 list_del_init(&p->mnt_child);
7c4b93d8
AV
1075 if (p->mnt_parent != p) {
1076 p->mnt_parent->mnt_ghosts++;
f30ac319 1077 p->mnt_mountpoint->d_mounted--;
7c4b93d8 1078 }
a05964f3 1079 change_mnt_propagation(p, MS_PRIVATE);
1da177e4
LT
1080 }
1081}
1082
c35038be
AV
1083static void shrink_submounts(struct vfsmount *mnt, struct list_head *umounts);
1084
1da177e4
LT
1085static int do_umount(struct vfsmount *mnt, int flags)
1086{
b58fed8b 1087 struct super_block *sb = mnt->mnt_sb;
1da177e4 1088 int retval;
70fbcdf4 1089 LIST_HEAD(umount_list);
1da177e4
LT
1090
1091 retval = security_sb_umount(mnt, flags);
1092 if (retval)
1093 return retval;
1094
1095 /*
1096 * Allow userspace to request a mountpoint be expired rather than
1097 * unmounting unconditionally. Unmount only happens if:
1098 * (1) the mark is already set (the mark is cleared by mntput())
1099 * (2) the usage count == 1 [parent vfsmount] + 1 [sys_umount]
1100 */
1101 if (flags & MNT_EXPIRE) {
6ac08c39 1102 if (mnt == current->fs->root.mnt ||
1da177e4
LT
1103 flags & (MNT_FORCE | MNT_DETACH))
1104 return -EINVAL;
1105
1106 if (atomic_read(&mnt->mnt_count) != 2)
1107 return -EBUSY;
1108
1109 if (!xchg(&mnt->mnt_expiry_mark, 1))
1110 return -EAGAIN;
1111 }
1112
1113 /*
1114 * If we may have to abort operations to get out of this
1115 * mount, and they will themselves hold resources we must
1116 * allow the fs to do things. In the Unix tradition of
1117 * 'Gee thats tricky lets do it in userspace' the umount_begin
1118 * might fail to complete on the first run through as other tasks
1119 * must return, and the like. Thats for the mount program to worry
1120 * about for the moment.
1121 */
1122
42faad99 1123 if (flags & MNT_FORCE && sb->s_op->umount_begin) {
42faad99 1124 sb->s_op->umount_begin(sb);
42faad99 1125 }
1da177e4
LT
1126
1127 /*
1128 * No sense to grab the lock for this test, but test itself looks
1129 * somewhat bogus. Suggestions for better replacement?
1130 * Ho-hum... In principle, we might treat that as umount + switch
1131 * to rootfs. GC would eventually take care of the old vfsmount.
1132 * Actually it makes sense, especially if rootfs would contain a
1133 * /reboot - static binary that would close all descriptors and
1134 * call reboot(9). Then init(8) could umount root and exec /reboot.
1135 */
6ac08c39 1136 if (mnt == current->fs->root.mnt && !(flags & MNT_DETACH)) {
1da177e4
LT
1137 /*
1138 * Special case for "unmounting" root ...
1139 * we just try to remount it readonly.
1140 */
1141 down_write(&sb->s_umount);
4aa98cf7 1142 if (!(sb->s_flags & MS_RDONLY))
1da177e4 1143 retval = do_remount_sb(sb, MS_RDONLY, NULL, 0);
1da177e4
LT
1144 up_write(&sb->s_umount);
1145 return retval;
1146 }
1147
390c6843 1148 down_write(&namespace_sem);
99b7db7b 1149 br_write_lock(vfsmount_lock);
5addc5dd 1150 event++;
1da177e4 1151
c35038be
AV
1152 if (!(flags & MNT_DETACH))
1153 shrink_submounts(mnt, &umount_list);
1154
1da177e4 1155 retval = -EBUSY;
a05964f3 1156 if (flags & MNT_DETACH || !propagate_mount_busy(mnt, 2)) {
1da177e4 1157 if (!list_empty(&mnt->mnt_list))
a05964f3 1158 umount_tree(mnt, 1, &umount_list);
1da177e4
LT
1159 retval = 0;
1160 }
99b7db7b 1161 br_write_unlock(vfsmount_lock);
390c6843 1162 up_write(&namespace_sem);
70fbcdf4 1163 release_mounts(&umount_list);
1da177e4
LT
1164 return retval;
1165}
1166
1167/*
1168 * Now umount can handle mount points as well as block devices.
1169 * This is important for filesystems which use unnamed block devices.
1170 *
1171 * We now support a flag for forced unmount like the other 'big iron'
1172 * unixes. Our API is identical to OSF/1 to avoid making a mess of AMD
1173 */
1174
bdc480e3 1175SYSCALL_DEFINE2(umount, char __user *, name, int, flags)
1da177e4 1176{
2d8f3038 1177 struct path path;
1da177e4 1178 int retval;
db1f05bb 1179 int lookup_flags = 0;
1da177e4 1180
db1f05bb
MS
1181 if (flags & ~(MNT_FORCE | MNT_DETACH | MNT_EXPIRE | UMOUNT_NOFOLLOW))
1182 return -EINVAL;
1183
1184 if (!(flags & UMOUNT_NOFOLLOW))
1185 lookup_flags |= LOOKUP_FOLLOW;
1186
1187 retval = user_path_at(AT_FDCWD, name, lookup_flags, &path);
1da177e4
LT
1188 if (retval)
1189 goto out;
1190 retval = -EINVAL;
2d8f3038 1191 if (path.dentry != path.mnt->mnt_root)
1da177e4 1192 goto dput_and_out;
2d8f3038 1193 if (!check_mnt(path.mnt))
1da177e4
LT
1194 goto dput_and_out;
1195
1196 retval = -EPERM;
1197 if (!capable(CAP_SYS_ADMIN))
1198 goto dput_and_out;
1199
2d8f3038 1200 retval = do_umount(path.mnt, flags);
1da177e4 1201dput_and_out:
429731b1 1202 /* we mustn't call path_put() as that would clear mnt_expiry_mark */
2d8f3038
AV
1203 dput(path.dentry);
1204 mntput_no_expire(path.mnt);
1da177e4
LT
1205out:
1206 return retval;
1207}
1208
1209#ifdef __ARCH_WANT_SYS_OLDUMOUNT
1210
1211/*
b58fed8b 1212 * The 2.0 compatible umount. No flags.
1da177e4 1213 */
bdc480e3 1214SYSCALL_DEFINE1(oldumount, char __user *, name)
1da177e4 1215{
b58fed8b 1216 return sys_umount(name, 0);
1da177e4
LT
1217}
1218
1219#endif
1220
2d92ab3c 1221static int mount_is_safe(struct path *path)
1da177e4
LT
1222{
1223 if (capable(CAP_SYS_ADMIN))
1224 return 0;
1225 return -EPERM;
1226#ifdef notyet
2d92ab3c 1227 if (S_ISLNK(path->dentry->d_inode->i_mode))
1da177e4 1228 return -EPERM;
2d92ab3c 1229 if (path->dentry->d_inode->i_mode & S_ISVTX) {
da9592ed 1230 if (current_uid() != path->dentry->d_inode->i_uid)
1da177e4
LT
1231 return -EPERM;
1232 }
2d92ab3c 1233 if (inode_permission(path->dentry->d_inode, MAY_WRITE))
1da177e4
LT
1234 return -EPERM;
1235 return 0;
1236#endif
1237}
1238
b90fa9ae 1239struct vfsmount *copy_tree(struct vfsmount *mnt, struct dentry *dentry,
36341f64 1240 int flag)
1da177e4
LT
1241{
1242 struct vfsmount *res, *p, *q, *r, *s;
1a390689 1243 struct path path;
1da177e4 1244
9676f0c6
RP
1245 if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(mnt))
1246 return NULL;
1247
36341f64 1248 res = q = clone_mnt(mnt, dentry, flag);
1da177e4
LT
1249 if (!q)
1250 goto Enomem;
1251 q->mnt_mountpoint = mnt->mnt_mountpoint;
1252
1253 p = mnt;
fdadd65f 1254 list_for_each_entry(r, &mnt->mnt_mounts, mnt_child) {
7ec02ef1 1255 if (!is_subdir(r->mnt_mountpoint, dentry))
1da177e4
LT
1256 continue;
1257
1258 for (s = r; s; s = next_mnt(s, r)) {
9676f0c6
RP
1259 if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(s)) {
1260 s = skip_mnt_tree(s);
1261 continue;
1262 }
1da177e4
LT
1263 while (p != s->mnt_parent) {
1264 p = p->mnt_parent;
1265 q = q->mnt_parent;
1266 }
1267 p = s;
1a390689
AV
1268 path.mnt = q;
1269 path.dentry = p->mnt_mountpoint;
36341f64 1270 q = clone_mnt(p, p->mnt_root, flag);
1da177e4
LT
1271 if (!q)
1272 goto Enomem;
99b7db7b 1273 br_write_lock(vfsmount_lock);
1da177e4 1274 list_add_tail(&q->mnt_list, &res->mnt_list);
1a390689 1275 attach_mnt(q, &path);
99b7db7b 1276 br_write_unlock(vfsmount_lock);
1da177e4
LT
1277 }
1278 }
1279 return res;
b58fed8b 1280Enomem:
1da177e4 1281 if (res) {
70fbcdf4 1282 LIST_HEAD(umount_list);
99b7db7b 1283 br_write_lock(vfsmount_lock);
a05964f3 1284 umount_tree(res, 0, &umount_list);
99b7db7b 1285 br_write_unlock(vfsmount_lock);
70fbcdf4 1286 release_mounts(&umount_list);
1da177e4
LT
1287 }
1288 return NULL;
1289}
1290
589ff870 1291struct vfsmount *collect_mounts(struct path *path)
8aec0809
AV
1292{
1293 struct vfsmount *tree;
1a60a280 1294 down_write(&namespace_sem);
589ff870 1295 tree = copy_tree(path->mnt, path->dentry, CL_COPY_ALL | CL_PRIVATE);
1a60a280 1296 up_write(&namespace_sem);
8aec0809
AV
1297 return tree;
1298}
1299
1300void drop_collected_mounts(struct vfsmount *mnt)
1301{
1302 LIST_HEAD(umount_list);
1a60a280 1303 down_write(&namespace_sem);
99b7db7b 1304 br_write_lock(vfsmount_lock);
8aec0809 1305 umount_tree(mnt, 0, &umount_list);
99b7db7b 1306 br_write_unlock(vfsmount_lock);
1a60a280 1307 up_write(&namespace_sem);
8aec0809
AV
1308 release_mounts(&umount_list);
1309}
1310
1f707137
AV
1311int iterate_mounts(int (*f)(struct vfsmount *, void *), void *arg,
1312 struct vfsmount *root)
1313{
1314 struct vfsmount *mnt;
1315 int res = f(root, arg);
1316 if (res)
1317 return res;
1318 list_for_each_entry(mnt, &root->mnt_list, mnt_list) {
1319 res = f(mnt, arg);
1320 if (res)
1321 return res;
1322 }
1323 return 0;
1324}
1325
719f5d7f
MS
1326static void cleanup_group_ids(struct vfsmount *mnt, struct vfsmount *end)
1327{
1328 struct vfsmount *p;
1329
1330 for (p = mnt; p != end; p = next_mnt(p, mnt)) {
1331 if (p->mnt_group_id && !IS_MNT_SHARED(p))
1332 mnt_release_group_id(p);
1333 }
1334}
1335
1336static int invent_group_ids(struct vfsmount *mnt, bool recurse)
1337{
1338 struct vfsmount *p;
1339
1340 for (p = mnt; p; p = recurse ? next_mnt(p, mnt) : NULL) {
1341 if (!p->mnt_group_id && !IS_MNT_SHARED(p)) {
1342 int err = mnt_alloc_group_id(p);
1343 if (err) {
1344 cleanup_group_ids(mnt, p);
1345 return err;
1346 }
1347 }
1348 }
1349
1350 return 0;
1351}
1352
b90fa9ae
RP
1353/*
1354 * @source_mnt : mount tree to be attached
21444403
RP
1355 * @nd : place the mount tree @source_mnt is attached
1356 * @parent_nd : if non-null, detach the source_mnt from its parent and
1357 * store the parent mount and mountpoint dentry.
1358 * (done when source_mnt is moved)
b90fa9ae
RP
1359 *
1360 * NOTE: in the table below explains the semantics when a source mount
1361 * of a given type is attached to a destination mount of a given type.
9676f0c6
RP
1362 * ---------------------------------------------------------------------------
1363 * | BIND MOUNT OPERATION |
1364 * |**************************************************************************
1365 * | source-->| shared | private | slave | unbindable |
1366 * | dest | | | | |
1367 * | | | | | | |
1368 * | v | | | | |
1369 * |**************************************************************************
1370 * | shared | shared (++) | shared (+) | shared(+++)| invalid |
1371 * | | | | | |
1372 * |non-shared| shared (+) | private | slave (*) | invalid |
1373 * ***************************************************************************
b90fa9ae
RP
1374 * A bind operation clones the source mount and mounts the clone on the
1375 * destination mount.
1376 *
1377 * (++) the cloned mount is propagated to all the mounts in the propagation
1378 * tree of the destination mount and the cloned mount is added to
1379 * the peer group of the source mount.
1380 * (+) the cloned mount is created under the destination mount and is marked
1381 * as shared. The cloned mount is added to the peer group of the source
1382 * mount.
5afe0022
RP
1383 * (+++) the mount is propagated to all the mounts in the propagation tree
1384 * of the destination mount and the cloned mount is made slave
1385 * of the same master as that of the source mount. The cloned mount
1386 * is marked as 'shared and slave'.
1387 * (*) the cloned mount is made a slave of the same master as that of the
1388 * source mount.
1389 *
9676f0c6
RP
1390 * ---------------------------------------------------------------------------
1391 * | MOVE MOUNT OPERATION |
1392 * |**************************************************************************
1393 * | source-->| shared | private | slave | unbindable |
1394 * | dest | | | | |
1395 * | | | | | | |
1396 * | v | | | | |
1397 * |**************************************************************************
1398 * | shared | shared (+) | shared (+) | shared(+++) | invalid |
1399 * | | | | | |
1400 * |non-shared| shared (+*) | private | slave (*) | unbindable |
1401 * ***************************************************************************
5afe0022
RP
1402 *
1403 * (+) the mount is moved to the destination. And is then propagated to
1404 * all the mounts in the propagation tree of the destination mount.
21444403 1405 * (+*) the mount is moved to the destination.
5afe0022
RP
1406 * (+++) the mount is moved to the destination and is then propagated to
1407 * all the mounts belonging to the destination mount's propagation tree.
1408 * the mount is marked as 'shared and slave'.
1409 * (*) the mount continues to be a slave at the new location.
b90fa9ae
RP
1410 *
1411 * if the source mount is a tree, the operations explained above is
1412 * applied to each mount in the tree.
1413 * Must be called without spinlocks held, since this function can sleep
1414 * in allocations.
1415 */
1416static int attach_recursive_mnt(struct vfsmount *source_mnt,
1a390689 1417 struct path *path, struct path *parent_path)
b90fa9ae
RP
1418{
1419 LIST_HEAD(tree_list);
1a390689
AV
1420 struct vfsmount *dest_mnt = path->mnt;
1421 struct dentry *dest_dentry = path->dentry;
b90fa9ae 1422 struct vfsmount *child, *p;
719f5d7f 1423 int err;
b90fa9ae 1424
719f5d7f
MS
1425 if (IS_MNT_SHARED(dest_mnt)) {
1426 err = invent_group_ids(source_mnt, true);
1427 if (err)
1428 goto out;
1429 }
1430 err = propagate_mnt(dest_mnt, dest_dentry, source_mnt, &tree_list);
1431 if (err)
1432 goto out_cleanup_ids;
b90fa9ae 1433
99b7db7b 1434 br_write_lock(vfsmount_lock);
df1a1ad2 1435
b90fa9ae
RP
1436 if (IS_MNT_SHARED(dest_mnt)) {
1437 for (p = source_mnt; p; p = next_mnt(p, source_mnt))
1438 set_mnt_shared(p);
1439 }
1a390689
AV
1440 if (parent_path) {
1441 detach_mnt(source_mnt, parent_path);
1442 attach_mnt(source_mnt, path);
e5d67f07 1443 touch_mnt_namespace(parent_path->mnt->mnt_ns);
21444403
RP
1444 } else {
1445 mnt_set_mountpoint(dest_mnt, dest_dentry, source_mnt);
1446 commit_tree(source_mnt);
1447 }
b90fa9ae
RP
1448
1449 list_for_each_entry_safe(child, p, &tree_list, mnt_hash) {
1450 list_del_init(&child->mnt_hash);
1451 commit_tree(child);
1452 }
99b7db7b
NP
1453 br_write_unlock(vfsmount_lock);
1454
b90fa9ae 1455 return 0;
719f5d7f
MS
1456
1457 out_cleanup_ids:
1458 if (IS_MNT_SHARED(dest_mnt))
1459 cleanup_group_ids(source_mnt, NULL);
1460 out:
1461 return err;
b90fa9ae
RP
1462}
1463
8c3ee42e 1464static int graft_tree(struct vfsmount *mnt, struct path *path)
1da177e4
LT
1465{
1466 int err;
1467 if (mnt->mnt_sb->s_flags & MS_NOUSER)
1468 return -EINVAL;
1469
8c3ee42e 1470 if (S_ISDIR(path->dentry->d_inode->i_mode) !=
1da177e4
LT
1471 S_ISDIR(mnt->mnt_root->d_inode->i_mode))
1472 return -ENOTDIR;
1473
1474 err = -ENOENT;
8c3ee42e 1475 mutex_lock(&path->dentry->d_inode->i_mutex);
d83c49f3 1476 if (cant_mount(path->dentry))
1da177e4
LT
1477 goto out_unlock;
1478
f3da392e 1479 if (!d_unlinked(path->dentry))
8c3ee42e 1480 err = attach_recursive_mnt(mnt, path, NULL);
1da177e4 1481out_unlock:
8c3ee42e 1482 mutex_unlock(&path->dentry->d_inode->i_mutex);
1da177e4
LT
1483 return err;
1484}
1485
7a2e8a8f
VA
1486/*
1487 * Sanity check the flags to change_mnt_propagation.
1488 */
1489
1490static int flags_to_propagation_type(int flags)
1491{
1492 int type = flags & ~MS_REC;
1493
1494 /* Fail if any non-propagation flags are set */
1495 if (type & ~(MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
1496 return 0;
1497 /* Only one propagation flag should be set */
1498 if (!is_power_of_2(type))
1499 return 0;
1500 return type;
1501}
1502
07b20889
RP
1503/*
1504 * recursively change the type of the mountpoint.
1505 */
0a0d8a46 1506static int do_change_type(struct path *path, int flag)
07b20889 1507{
2d92ab3c 1508 struct vfsmount *m, *mnt = path->mnt;
07b20889 1509 int recurse = flag & MS_REC;
7a2e8a8f 1510 int type;
719f5d7f 1511 int err = 0;
07b20889 1512
ee6f9582
MS
1513 if (!capable(CAP_SYS_ADMIN))
1514 return -EPERM;
1515
2d92ab3c 1516 if (path->dentry != path->mnt->mnt_root)
07b20889
RP
1517 return -EINVAL;
1518
7a2e8a8f
VA
1519 type = flags_to_propagation_type(flag);
1520 if (!type)
1521 return -EINVAL;
1522
07b20889 1523 down_write(&namespace_sem);
719f5d7f
MS
1524 if (type == MS_SHARED) {
1525 err = invent_group_ids(mnt, recurse);
1526 if (err)
1527 goto out_unlock;
1528 }
1529
99b7db7b 1530 br_write_lock(vfsmount_lock);
07b20889
RP
1531 for (m = mnt; m; m = (recurse ? next_mnt(m, mnt) : NULL))
1532 change_mnt_propagation(m, type);
99b7db7b 1533 br_write_unlock(vfsmount_lock);
719f5d7f
MS
1534
1535 out_unlock:
07b20889 1536 up_write(&namespace_sem);
719f5d7f 1537 return err;
07b20889
RP
1538}
1539
1da177e4
LT
1540/*
1541 * do loopback mount.
1542 */
0a0d8a46 1543static int do_loopback(struct path *path, char *old_name,
2dafe1c4 1544 int recurse)
1da177e4 1545{
2d92ab3c 1546 struct path old_path;
1da177e4 1547 struct vfsmount *mnt = NULL;
2d92ab3c 1548 int err = mount_is_safe(path);
1da177e4
LT
1549 if (err)
1550 return err;
1551 if (!old_name || !*old_name)
1552 return -EINVAL;
2d92ab3c 1553 err = kern_path(old_name, LOOKUP_FOLLOW, &old_path);
1da177e4
LT
1554 if (err)
1555 return err;
1556
390c6843 1557 down_write(&namespace_sem);
1da177e4 1558 err = -EINVAL;
2d92ab3c 1559 if (IS_MNT_UNBINDABLE(old_path.mnt))
4ac91378 1560 goto out;
9676f0c6 1561
2d92ab3c 1562 if (!check_mnt(path->mnt) || !check_mnt(old_path.mnt))
ccd48bc7 1563 goto out;
1da177e4 1564
ccd48bc7
AV
1565 err = -ENOMEM;
1566 if (recurse)
2d92ab3c 1567 mnt = copy_tree(old_path.mnt, old_path.dentry, 0);
ccd48bc7 1568 else
2d92ab3c 1569 mnt = clone_mnt(old_path.mnt, old_path.dentry, 0);
ccd48bc7
AV
1570
1571 if (!mnt)
1572 goto out;
1573
2d92ab3c 1574 err = graft_tree(mnt, path);
ccd48bc7 1575 if (err) {
70fbcdf4 1576 LIST_HEAD(umount_list);
99b7db7b
NP
1577
1578 br_write_lock(vfsmount_lock);
a05964f3 1579 umount_tree(mnt, 0, &umount_list);
99b7db7b 1580 br_write_unlock(vfsmount_lock);
70fbcdf4 1581 release_mounts(&umount_list);
5b83d2c5 1582 }
1da177e4 1583
ccd48bc7 1584out:
390c6843 1585 up_write(&namespace_sem);
2d92ab3c 1586 path_put(&old_path);
1da177e4
LT
1587 return err;
1588}
1589
2e4b7fcd
DH
1590static int change_mount_flags(struct vfsmount *mnt, int ms_flags)
1591{
1592 int error = 0;
1593 int readonly_request = 0;
1594
1595 if (ms_flags & MS_RDONLY)
1596 readonly_request = 1;
1597 if (readonly_request == __mnt_is_readonly(mnt))
1598 return 0;
1599
1600 if (readonly_request)
1601 error = mnt_make_readonly(mnt);
1602 else
1603 __mnt_unmake_readonly(mnt);
1604 return error;
1605}
1606
1da177e4
LT
1607/*
1608 * change filesystem flags. dir should be a physical root of filesystem.
1609 * If you've mounted a non-root directory somewhere and want to do remount
1610 * on it - tough luck.
1611 */
0a0d8a46 1612static int do_remount(struct path *path, int flags, int mnt_flags,
1da177e4
LT
1613 void *data)
1614{
1615 int err;
2d92ab3c 1616 struct super_block *sb = path->mnt->mnt_sb;
1da177e4
LT
1617
1618 if (!capable(CAP_SYS_ADMIN))
1619 return -EPERM;
1620
2d92ab3c 1621 if (!check_mnt(path->mnt))
1da177e4
LT
1622 return -EINVAL;
1623
2d92ab3c 1624 if (path->dentry != path->mnt->mnt_root)
1da177e4
LT
1625 return -EINVAL;
1626
1627 down_write(&sb->s_umount);
2e4b7fcd 1628 if (flags & MS_BIND)
2d92ab3c 1629 err = change_mount_flags(path->mnt, flags);
4aa98cf7 1630 else
2e4b7fcd 1631 err = do_remount_sb(sb, flags, data, 0);
7b43a79f 1632 if (!err) {
99b7db7b 1633 br_write_lock(vfsmount_lock);
495d6c9c 1634 mnt_flags |= path->mnt->mnt_flags & MNT_PROPAGATION_MASK;
2d92ab3c 1635 path->mnt->mnt_flags = mnt_flags;
99b7db7b 1636 br_write_unlock(vfsmount_lock);
7b43a79f 1637 }
1da177e4 1638 up_write(&sb->s_umount);
0e55a7cc 1639 if (!err) {
99b7db7b 1640 br_write_lock(vfsmount_lock);
0e55a7cc 1641 touch_mnt_namespace(path->mnt->mnt_ns);
99b7db7b 1642 br_write_unlock(vfsmount_lock);
0e55a7cc 1643 }
1da177e4
LT
1644 return err;
1645}
1646
9676f0c6
RP
1647static inline int tree_contains_unbindable(struct vfsmount *mnt)
1648{
1649 struct vfsmount *p;
1650 for (p = mnt; p; p = next_mnt(p, mnt)) {
1651 if (IS_MNT_UNBINDABLE(p))
1652 return 1;
1653 }
1654 return 0;
1655}
1656
0a0d8a46 1657static int do_move_mount(struct path *path, char *old_name)
1da177e4 1658{
2d92ab3c 1659 struct path old_path, parent_path;
1da177e4
LT
1660 struct vfsmount *p;
1661 int err = 0;
1662 if (!capable(CAP_SYS_ADMIN))
1663 return -EPERM;
1664 if (!old_name || !*old_name)
1665 return -EINVAL;
2d92ab3c 1666 err = kern_path(old_name, LOOKUP_FOLLOW, &old_path);
1da177e4
LT
1667 if (err)
1668 return err;
1669
390c6843 1670 down_write(&namespace_sem);
2d92ab3c 1671 while (d_mountpoint(path->dentry) &&
9393bd07 1672 follow_down(path))
1da177e4
LT
1673 ;
1674 err = -EINVAL;
2d92ab3c 1675 if (!check_mnt(path->mnt) || !check_mnt(old_path.mnt))
1da177e4
LT
1676 goto out;
1677
1678 err = -ENOENT;
2d92ab3c 1679 mutex_lock(&path->dentry->d_inode->i_mutex);
d83c49f3 1680 if (cant_mount(path->dentry))
1da177e4
LT
1681 goto out1;
1682
f3da392e 1683 if (d_unlinked(path->dentry))
21444403 1684 goto out1;
1da177e4
LT
1685
1686 err = -EINVAL;
2d92ab3c 1687 if (old_path.dentry != old_path.mnt->mnt_root)
21444403 1688 goto out1;
1da177e4 1689
2d92ab3c 1690 if (old_path.mnt == old_path.mnt->mnt_parent)
21444403 1691 goto out1;
1da177e4 1692
2d92ab3c
AV
1693 if (S_ISDIR(path->dentry->d_inode->i_mode) !=
1694 S_ISDIR(old_path.dentry->d_inode->i_mode))
21444403
RP
1695 goto out1;
1696 /*
1697 * Don't move a mount residing in a shared parent.
1698 */
2d92ab3c
AV
1699 if (old_path.mnt->mnt_parent &&
1700 IS_MNT_SHARED(old_path.mnt->mnt_parent))
21444403 1701 goto out1;
9676f0c6
RP
1702 /*
1703 * Don't move a mount tree containing unbindable mounts to a destination
1704 * mount which is shared.
1705 */
2d92ab3c
AV
1706 if (IS_MNT_SHARED(path->mnt) &&
1707 tree_contains_unbindable(old_path.mnt))
9676f0c6 1708 goto out1;
1da177e4 1709 err = -ELOOP;
2d92ab3c
AV
1710 for (p = path->mnt; p->mnt_parent != p; p = p->mnt_parent)
1711 if (p == old_path.mnt)
21444403 1712 goto out1;
1da177e4 1713
2d92ab3c 1714 err = attach_recursive_mnt(old_path.mnt, path, &parent_path);
4ac91378 1715 if (err)
21444403 1716 goto out1;
1da177e4
LT
1717
1718 /* if the mount is moved, it should no longer be expire
1719 * automatically */
2d92ab3c 1720 list_del_init(&old_path.mnt->mnt_expire);
1da177e4 1721out1:
2d92ab3c 1722 mutex_unlock(&path->dentry->d_inode->i_mutex);
1da177e4 1723out:
390c6843 1724 up_write(&namespace_sem);
1da177e4 1725 if (!err)
1a390689 1726 path_put(&parent_path);
2d92ab3c 1727 path_put(&old_path);
1da177e4
LT
1728 return err;
1729}
1730
1731/*
1732 * create a new mount for userspace and request it to be added into the
1733 * namespace's tree
1734 */
0a0d8a46 1735static int do_new_mount(struct path *path, char *type, int flags,
1da177e4
LT
1736 int mnt_flags, char *name, void *data)
1737{
1738 struct vfsmount *mnt;
1739
eca6f534 1740 if (!type)
1da177e4
LT
1741 return -EINVAL;
1742
1743 /* we need capabilities... */
1744 if (!capable(CAP_SYS_ADMIN))
1745 return -EPERM;
1746
1747 mnt = do_kern_mount(type, flags, name, data);
1748 if (IS_ERR(mnt))
1749 return PTR_ERR(mnt);
1750
2d92ab3c 1751 return do_add_mount(mnt, path, mnt_flags, NULL);
1da177e4
LT
1752}
1753
1754/*
1755 * add a mount into a namespace's mount tree
1756 * - provide the option of adding the new mount to an expiration list
1757 */
8d66bf54 1758int do_add_mount(struct vfsmount *newmnt, struct path *path,
1da177e4
LT
1759 int mnt_flags, struct list_head *fslist)
1760{
1761 int err;
1762
8089352a 1763 mnt_flags &= ~(MNT_SHARED | MNT_WRITE_HOLD | MNT_INTERNAL);
27d55f1f 1764
390c6843 1765 down_write(&namespace_sem);
1da177e4 1766 /* Something was mounted here while we slept */
8d66bf54 1767 while (d_mountpoint(path->dentry) &&
9393bd07 1768 follow_down(path))
1da177e4
LT
1769 ;
1770 err = -EINVAL;
dd5cae6e 1771 if (!(mnt_flags & MNT_SHRINKABLE) && !check_mnt(path->mnt))
1da177e4
LT
1772 goto unlock;
1773
1774 /* Refuse the same filesystem on the same mount point */
1775 err = -EBUSY;
8d66bf54
AV
1776 if (path->mnt->mnt_sb == newmnt->mnt_sb &&
1777 path->mnt->mnt_root == path->dentry)
1da177e4
LT
1778 goto unlock;
1779
1780 err = -EINVAL;
1781 if (S_ISLNK(newmnt->mnt_root->d_inode->i_mode))
1782 goto unlock;
1783
1784 newmnt->mnt_flags = mnt_flags;
8d66bf54 1785 if ((err = graft_tree(newmnt, path)))
5b83d2c5 1786 goto unlock;
1da177e4 1787
6758f953 1788 if (fslist) /* add to the specified expiration list */
55e700b9 1789 list_add_tail(&newmnt->mnt_expire, fslist);
6758f953 1790
390c6843 1791 up_write(&namespace_sem);
5b83d2c5 1792 return 0;
1da177e4
LT
1793
1794unlock:
390c6843 1795 up_write(&namespace_sem);
1da177e4
LT
1796 mntput(newmnt);
1797 return err;
1798}
1799
1800EXPORT_SYMBOL_GPL(do_add_mount);
1801
1802/*
1803 * process a list of expirable mountpoints with the intent of discarding any
1804 * mountpoints that aren't in use and haven't been touched since last we came
1805 * here
1806 */
1807void mark_mounts_for_expiry(struct list_head *mounts)
1808{
1da177e4
LT
1809 struct vfsmount *mnt, *next;
1810 LIST_HEAD(graveyard);
bcc5c7d2 1811 LIST_HEAD(umounts);
1da177e4
LT
1812
1813 if (list_empty(mounts))
1814 return;
1815
bcc5c7d2 1816 down_write(&namespace_sem);
99b7db7b 1817 br_write_lock(vfsmount_lock);
1da177e4
LT
1818
1819 /* extract from the expiration list every vfsmount that matches the
1820 * following criteria:
1821 * - only referenced by its parent vfsmount
1822 * - still marked for expiry (marked on the last call here; marks are
1823 * cleared by mntput())
1824 */
55e700b9 1825 list_for_each_entry_safe(mnt, next, mounts, mnt_expire) {
1da177e4 1826 if (!xchg(&mnt->mnt_expiry_mark, 1) ||
bcc5c7d2 1827 propagate_mount_busy(mnt, 1))
1da177e4 1828 continue;
55e700b9 1829 list_move(&mnt->mnt_expire, &graveyard);
1da177e4 1830 }
bcc5c7d2
AV
1831 while (!list_empty(&graveyard)) {
1832 mnt = list_first_entry(&graveyard, struct vfsmount, mnt_expire);
1833 touch_mnt_namespace(mnt->mnt_ns);
1834 umount_tree(mnt, 1, &umounts);
1835 }
99b7db7b 1836 br_write_unlock(vfsmount_lock);
bcc5c7d2
AV
1837 up_write(&namespace_sem);
1838
1839 release_mounts(&umounts);
5528f911
TM
1840}
1841
1842EXPORT_SYMBOL_GPL(mark_mounts_for_expiry);
1843
1844/*
1845 * Ripoff of 'select_parent()'
1846 *
1847 * search the list of submounts for a given mountpoint, and move any
1848 * shrinkable submounts to the 'graveyard' list.
1849 */
1850static int select_submounts(struct vfsmount *parent, struct list_head *graveyard)
1851{
1852 struct vfsmount *this_parent = parent;
1853 struct list_head *next;
1854 int found = 0;
1855
1856repeat:
1857 next = this_parent->mnt_mounts.next;
1858resume:
1859 while (next != &this_parent->mnt_mounts) {
1860 struct list_head *tmp = next;
1861 struct vfsmount *mnt = list_entry(tmp, struct vfsmount, mnt_child);
1862
1863 next = tmp->next;
1864 if (!(mnt->mnt_flags & MNT_SHRINKABLE))
1da177e4 1865 continue;
5528f911
TM
1866 /*
1867 * Descend a level if the d_mounts list is non-empty.
1868 */
1869 if (!list_empty(&mnt->mnt_mounts)) {
1870 this_parent = mnt;
1871 goto repeat;
1872 }
1da177e4 1873
5528f911 1874 if (!propagate_mount_busy(mnt, 1)) {
5528f911
TM
1875 list_move_tail(&mnt->mnt_expire, graveyard);
1876 found++;
1877 }
1da177e4 1878 }
5528f911
TM
1879 /*
1880 * All done at this level ... ascend and resume the search
1881 */
1882 if (this_parent != parent) {
1883 next = this_parent->mnt_child.next;
1884 this_parent = this_parent->mnt_parent;
1885 goto resume;
1886 }
1887 return found;
1888}
1889
1890/*
1891 * process a list of expirable mountpoints with the intent of discarding any
1892 * submounts of a specific parent mountpoint
99b7db7b
NP
1893 *
1894 * vfsmount_lock must be held for write
5528f911 1895 */
c35038be 1896static void shrink_submounts(struct vfsmount *mnt, struct list_head *umounts)
5528f911
TM
1897{
1898 LIST_HEAD(graveyard);
c35038be 1899 struct vfsmount *m;
5528f911 1900
5528f911 1901 /* extract submounts of 'mountpoint' from the expiration list */
c35038be 1902 while (select_submounts(mnt, &graveyard)) {
bcc5c7d2 1903 while (!list_empty(&graveyard)) {
c35038be 1904 m = list_first_entry(&graveyard, struct vfsmount,
bcc5c7d2 1905 mnt_expire);
afef80b3
EB
1906 touch_mnt_namespace(m->mnt_ns);
1907 umount_tree(m, 1, umounts);
bcc5c7d2
AV
1908 }
1909 }
1da177e4
LT
1910}
1911
1da177e4
LT
1912/*
1913 * Some copy_from_user() implementations do not return the exact number of
1914 * bytes remaining to copy on a fault. But copy_mount_options() requires that.
1915 * Note that this function differs from copy_from_user() in that it will oops
1916 * on bad values of `to', rather than returning a short copy.
1917 */
b58fed8b
RP
1918static long exact_copy_from_user(void *to, const void __user * from,
1919 unsigned long n)
1da177e4
LT
1920{
1921 char *t = to;
1922 const char __user *f = from;
1923 char c;
1924
1925 if (!access_ok(VERIFY_READ, from, n))
1926 return n;
1927
1928 while (n) {
1929 if (__get_user(c, f)) {
1930 memset(t, 0, n);
1931 break;
1932 }
1933 *t++ = c;
1934 f++;
1935 n--;
1936 }
1937 return n;
1938}
1939
b58fed8b 1940int copy_mount_options(const void __user * data, unsigned long *where)
1da177e4
LT
1941{
1942 int i;
1943 unsigned long page;
1944 unsigned long size;
b58fed8b 1945
1da177e4
LT
1946 *where = 0;
1947 if (!data)
1948 return 0;
1949
1950 if (!(page = __get_free_page(GFP_KERNEL)))
1951 return -ENOMEM;
1952
1953 /* We only care that *some* data at the address the user
1954 * gave us is valid. Just in case, we'll zero
1955 * the remainder of the page.
1956 */
1957 /* copy_from_user cannot cross TASK_SIZE ! */
1958 size = TASK_SIZE - (unsigned long)data;
1959 if (size > PAGE_SIZE)
1960 size = PAGE_SIZE;
1961
1962 i = size - exact_copy_from_user((void *)page, data, size);
1963 if (!i) {
b58fed8b 1964 free_page(page);
1da177e4
LT
1965 return -EFAULT;
1966 }
1967 if (i != PAGE_SIZE)
1968 memset((char *)page + i, 0, PAGE_SIZE - i);
1969 *where = page;
1970 return 0;
1971}
1972
eca6f534
VN
1973int copy_mount_string(const void __user *data, char **where)
1974{
1975 char *tmp;
1976
1977 if (!data) {
1978 *where = NULL;
1979 return 0;
1980 }
1981
1982 tmp = strndup_user(data, PAGE_SIZE);
1983 if (IS_ERR(tmp))
1984 return PTR_ERR(tmp);
1985
1986 *where = tmp;
1987 return 0;
1988}
1989
1da177e4
LT
1990/*
1991 * Flags is a 32-bit value that allows up to 31 non-fs dependent flags to
1992 * be given to the mount() call (ie: read-only, no-dev, no-suid etc).
1993 *
1994 * data is a (void *) that can point to any structure up to
1995 * PAGE_SIZE-1 bytes, which can contain arbitrary fs-dependent
1996 * information (or be NULL).
1997 *
1998 * Pre-0.97 versions of mount() didn't have a flags word.
1999 * When the flags word was introduced its top half was required
2000 * to have the magic value 0xC0ED, and this remained so until 2.4.0-test9.
2001 * Therefore, if this magic number is present, it carries no information
2002 * and must be discarded.
2003 */
b58fed8b 2004long do_mount(char *dev_name, char *dir_name, char *type_page,
1da177e4
LT
2005 unsigned long flags, void *data_page)
2006{
2d92ab3c 2007 struct path path;
1da177e4
LT
2008 int retval = 0;
2009 int mnt_flags = 0;
2010
2011 /* Discard magic */
2012 if ((flags & MS_MGC_MSK) == MS_MGC_VAL)
2013 flags &= ~MS_MGC_MSK;
2014
2015 /* Basic sanity checks */
2016
2017 if (!dir_name || !*dir_name || !memchr(dir_name, 0, PAGE_SIZE))
2018 return -EINVAL;
1da177e4
LT
2019
2020 if (data_page)
2021 ((char *)data_page)[PAGE_SIZE - 1] = 0;
2022
a27ab9f2
TH
2023 /* ... and get the mountpoint */
2024 retval = kern_path(dir_name, LOOKUP_FOLLOW, &path);
2025 if (retval)
2026 return retval;
2027
2028 retval = security_sb_mount(dev_name, &path,
2029 type_page, flags, data_page);
2030 if (retval)
2031 goto dput_out;
2032
613cbe3d
AK
2033 /* Default to relatime unless overriden */
2034 if (!(flags & MS_NOATIME))
2035 mnt_flags |= MNT_RELATIME;
0a1c01c9 2036
1da177e4
LT
2037 /* Separate the per-mountpoint flags */
2038 if (flags & MS_NOSUID)
2039 mnt_flags |= MNT_NOSUID;
2040 if (flags & MS_NODEV)
2041 mnt_flags |= MNT_NODEV;
2042 if (flags & MS_NOEXEC)
2043 mnt_flags |= MNT_NOEXEC;
fc33a7bb
CH
2044 if (flags & MS_NOATIME)
2045 mnt_flags |= MNT_NOATIME;
2046 if (flags & MS_NODIRATIME)
2047 mnt_flags |= MNT_NODIRATIME;
d0adde57
MG
2048 if (flags & MS_STRICTATIME)
2049 mnt_flags &= ~(MNT_RELATIME | MNT_NOATIME);
2e4b7fcd
DH
2050 if (flags & MS_RDONLY)
2051 mnt_flags |= MNT_READONLY;
fc33a7bb 2052
7a4dec53 2053 flags &= ~(MS_NOSUID | MS_NOEXEC | MS_NODEV | MS_ACTIVE | MS_BORN |
d0adde57
MG
2054 MS_NOATIME | MS_NODIRATIME | MS_RELATIME| MS_KERNMOUNT |
2055 MS_STRICTATIME);
1da177e4 2056
1da177e4 2057 if (flags & MS_REMOUNT)
2d92ab3c 2058 retval = do_remount(&path, flags & ~MS_REMOUNT, mnt_flags,
1da177e4
LT
2059 data_page);
2060 else if (flags & MS_BIND)
2d92ab3c 2061 retval = do_loopback(&path, dev_name, flags & MS_REC);
9676f0c6 2062 else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
2d92ab3c 2063 retval = do_change_type(&path, flags);
1da177e4 2064 else if (flags & MS_MOVE)
2d92ab3c 2065 retval = do_move_mount(&path, dev_name);
1da177e4 2066 else
2d92ab3c 2067 retval = do_new_mount(&path, type_page, flags, mnt_flags,
1da177e4
LT
2068 dev_name, data_page);
2069dput_out:
2d92ab3c 2070 path_put(&path);
1da177e4
LT
2071 return retval;
2072}
2073
cf8d2c11
TM
2074static struct mnt_namespace *alloc_mnt_ns(void)
2075{
2076 struct mnt_namespace *new_ns;
2077
2078 new_ns = kmalloc(sizeof(struct mnt_namespace), GFP_KERNEL);
2079 if (!new_ns)
2080 return ERR_PTR(-ENOMEM);
2081 atomic_set(&new_ns->count, 1);
2082 new_ns->root = NULL;
2083 INIT_LIST_HEAD(&new_ns->list);
2084 init_waitqueue_head(&new_ns->poll);
2085 new_ns->event = 0;
2086 return new_ns;
2087}
2088
741a2951
JD
2089/*
2090 * Allocate a new namespace structure and populate it with contents
2091 * copied from the namespace of the passed in task structure.
2092 */
e3222c4e 2093static struct mnt_namespace *dup_mnt_ns(struct mnt_namespace *mnt_ns,
6b3286ed 2094 struct fs_struct *fs)
1da177e4 2095{
6b3286ed 2096 struct mnt_namespace *new_ns;
7f2da1e7 2097 struct vfsmount *rootmnt = NULL, *pwdmnt = NULL;
1da177e4
LT
2098 struct vfsmount *p, *q;
2099
cf8d2c11
TM
2100 new_ns = alloc_mnt_ns();
2101 if (IS_ERR(new_ns))
2102 return new_ns;
1da177e4 2103
390c6843 2104 down_write(&namespace_sem);
1da177e4 2105 /* First pass: copy the tree topology */
6b3286ed 2106 new_ns->root = copy_tree(mnt_ns->root, mnt_ns->root->mnt_root,
9676f0c6 2107 CL_COPY_ALL | CL_EXPIRE);
1da177e4 2108 if (!new_ns->root) {
390c6843 2109 up_write(&namespace_sem);
1da177e4 2110 kfree(new_ns);
5cc4a034 2111 return ERR_PTR(-ENOMEM);
1da177e4 2112 }
99b7db7b 2113 br_write_lock(vfsmount_lock);
1da177e4 2114 list_add_tail(&new_ns->list, &new_ns->root->mnt_list);
99b7db7b 2115 br_write_unlock(vfsmount_lock);
1da177e4
LT
2116
2117 /*
2118 * Second pass: switch the tsk->fs->* elements and mark new vfsmounts
2119 * as belonging to new namespace. We have already acquired a private
2120 * fs_struct, so tsk->fs->lock is not needed.
2121 */
6b3286ed 2122 p = mnt_ns->root;
1da177e4
LT
2123 q = new_ns->root;
2124 while (p) {
6b3286ed 2125 q->mnt_ns = new_ns;
1da177e4 2126 if (fs) {
6ac08c39 2127 if (p == fs->root.mnt) {
1da177e4 2128 rootmnt = p;
6ac08c39 2129 fs->root.mnt = mntget(q);
1da177e4 2130 }
6ac08c39 2131 if (p == fs->pwd.mnt) {
1da177e4 2132 pwdmnt = p;
6ac08c39 2133 fs->pwd.mnt = mntget(q);
1da177e4 2134 }
1da177e4 2135 }
6b3286ed 2136 p = next_mnt(p, mnt_ns->root);
1da177e4
LT
2137 q = next_mnt(q, new_ns->root);
2138 }
390c6843 2139 up_write(&namespace_sem);
1da177e4 2140
1da177e4
LT
2141 if (rootmnt)
2142 mntput(rootmnt);
2143 if (pwdmnt)
2144 mntput(pwdmnt);
1da177e4 2145
741a2951
JD
2146 return new_ns;
2147}
2148
213dd266 2149struct mnt_namespace *copy_mnt_ns(unsigned long flags, struct mnt_namespace *ns,
e3222c4e 2150 struct fs_struct *new_fs)
741a2951 2151{
6b3286ed 2152 struct mnt_namespace *new_ns;
741a2951 2153
e3222c4e 2154 BUG_ON(!ns);
6b3286ed 2155 get_mnt_ns(ns);
741a2951
JD
2156
2157 if (!(flags & CLONE_NEWNS))
e3222c4e 2158 return ns;
741a2951 2159
e3222c4e 2160 new_ns = dup_mnt_ns(ns, new_fs);
741a2951 2161
6b3286ed 2162 put_mnt_ns(ns);
e3222c4e 2163 return new_ns;
1da177e4
LT
2164}
2165
cf8d2c11
TM
2166/**
2167 * create_mnt_ns - creates a private namespace and adds a root filesystem
2168 * @mnt: pointer to the new root filesystem mountpoint
2169 */
a2770d86 2170struct mnt_namespace *create_mnt_ns(struct vfsmount *mnt)
cf8d2c11
TM
2171{
2172 struct mnt_namespace *new_ns;
2173
2174 new_ns = alloc_mnt_ns();
2175 if (!IS_ERR(new_ns)) {
2176 mnt->mnt_ns = new_ns;
2177 new_ns->root = mnt;
2178 list_add(&new_ns->list, &new_ns->root->mnt_list);
2179 }
2180 return new_ns;
2181}
a2770d86 2182EXPORT_SYMBOL(create_mnt_ns);
cf8d2c11 2183
bdc480e3
HC
2184SYSCALL_DEFINE5(mount, char __user *, dev_name, char __user *, dir_name,
2185 char __user *, type, unsigned long, flags, void __user *, data)
1da177e4 2186{
eca6f534
VN
2187 int ret;
2188 char *kernel_type;
2189 char *kernel_dir;
2190 char *kernel_dev;
1da177e4 2191 unsigned long data_page;
1da177e4 2192
eca6f534
VN
2193 ret = copy_mount_string(type, &kernel_type);
2194 if (ret < 0)
2195 goto out_type;
1da177e4 2196
eca6f534
VN
2197 kernel_dir = getname(dir_name);
2198 if (IS_ERR(kernel_dir)) {
2199 ret = PTR_ERR(kernel_dir);
2200 goto out_dir;
2201 }
1da177e4 2202
eca6f534
VN
2203 ret = copy_mount_string(dev_name, &kernel_dev);
2204 if (ret < 0)
2205 goto out_dev;
1da177e4 2206
eca6f534
VN
2207 ret = copy_mount_options(data, &data_page);
2208 if (ret < 0)
2209 goto out_data;
1da177e4 2210
eca6f534
VN
2211 ret = do_mount(kernel_dev, kernel_dir, kernel_type, flags,
2212 (void *) data_page);
1da177e4 2213
eca6f534
VN
2214 free_page(data_page);
2215out_data:
2216 kfree(kernel_dev);
2217out_dev:
2218 putname(kernel_dir);
2219out_dir:
2220 kfree(kernel_type);
2221out_type:
2222 return ret;
1da177e4
LT
2223}
2224
1da177e4
LT
2225/*
2226 * pivot_root Semantics:
2227 * Moves the root file system of the current process to the directory put_old,
2228 * makes new_root as the new root file system of the current process, and sets
2229 * root/cwd of all processes which had them on the current root to new_root.
2230 *
2231 * Restrictions:
2232 * The new_root and put_old must be directories, and must not be on the
2233 * same file system as the current process root. The put_old must be
2234 * underneath new_root, i.e. adding a non-zero number of /.. to the string
2235 * pointed to by put_old must yield the same directory as new_root. No other
2236 * file system may be mounted on put_old. After all, new_root is a mountpoint.
2237 *
4a0d11fa
NB
2238 * Also, the current root cannot be on the 'rootfs' (initial ramfs) filesystem.
2239 * See Documentation/filesystems/ramfs-rootfs-initramfs.txt for alternatives
2240 * in this situation.
2241 *
1da177e4
LT
2242 * Notes:
2243 * - we don't move root/cwd if they are not at the root (reason: if something
2244 * cared enough to change them, it's probably wrong to force them elsewhere)
2245 * - it's okay to pick a root that isn't the root of a file system, e.g.
2246 * /nfs/my_root where /nfs is the mount point. It must be a mountpoint,
2247 * though, so you may need to say mount --bind /nfs/my_root /nfs/my_root
2248 * first.
2249 */
3480b257
HC
2250SYSCALL_DEFINE2(pivot_root, const char __user *, new_root,
2251 const char __user *, put_old)
1da177e4
LT
2252{
2253 struct vfsmount *tmp;
2d8f3038 2254 struct path new, old, parent_path, root_parent, root;
1da177e4
LT
2255 int error;
2256
2257 if (!capable(CAP_SYS_ADMIN))
2258 return -EPERM;
2259
2d8f3038 2260 error = user_path_dir(new_root, &new);
1da177e4
LT
2261 if (error)
2262 goto out0;
2263 error = -EINVAL;
2d8f3038 2264 if (!check_mnt(new.mnt))
1da177e4
LT
2265 goto out1;
2266
2d8f3038 2267 error = user_path_dir(put_old, &old);
1da177e4
LT
2268 if (error)
2269 goto out1;
2270
2d8f3038 2271 error = security_sb_pivotroot(&old, &new);
1da177e4 2272 if (error) {
2d8f3038 2273 path_put(&old);
1da177e4
LT
2274 goto out1;
2275 }
2276
f7ad3c6b 2277 get_fs_root(current->fs, &root);
390c6843 2278 down_write(&namespace_sem);
2d8f3038 2279 mutex_lock(&old.dentry->d_inode->i_mutex);
1da177e4 2280 error = -EINVAL;
2d8f3038
AV
2281 if (IS_MNT_SHARED(old.mnt) ||
2282 IS_MNT_SHARED(new.mnt->mnt_parent) ||
8c3ee42e 2283 IS_MNT_SHARED(root.mnt->mnt_parent))
21444403 2284 goto out2;
8c3ee42e 2285 if (!check_mnt(root.mnt))
1da177e4
LT
2286 goto out2;
2287 error = -ENOENT;
d83c49f3 2288 if (cant_mount(old.dentry))
1da177e4 2289 goto out2;
f3da392e 2290 if (d_unlinked(new.dentry))
1da177e4 2291 goto out2;
f3da392e 2292 if (d_unlinked(old.dentry))
1da177e4
LT
2293 goto out2;
2294 error = -EBUSY;
2d8f3038
AV
2295 if (new.mnt == root.mnt ||
2296 old.mnt == root.mnt)
1da177e4
LT
2297 goto out2; /* loop, on the same file system */
2298 error = -EINVAL;
8c3ee42e 2299 if (root.mnt->mnt_root != root.dentry)
1da177e4 2300 goto out2; /* not a mountpoint */
8c3ee42e 2301 if (root.mnt->mnt_parent == root.mnt)
0bb6fcc1 2302 goto out2; /* not attached */
2d8f3038 2303 if (new.mnt->mnt_root != new.dentry)
1da177e4 2304 goto out2; /* not a mountpoint */
2d8f3038 2305 if (new.mnt->mnt_parent == new.mnt)
0bb6fcc1 2306 goto out2; /* not attached */
4ac91378 2307 /* make sure we can reach put_old from new_root */
2d8f3038 2308 tmp = old.mnt;
99b7db7b 2309 br_write_lock(vfsmount_lock);
2d8f3038 2310 if (tmp != new.mnt) {
1da177e4
LT
2311 for (;;) {
2312 if (tmp->mnt_parent == tmp)
2313 goto out3; /* already mounted on put_old */
2d8f3038 2314 if (tmp->mnt_parent == new.mnt)
1da177e4
LT
2315 break;
2316 tmp = tmp->mnt_parent;
2317 }
2d8f3038 2318 if (!is_subdir(tmp->mnt_mountpoint, new.dentry))
1da177e4 2319 goto out3;
2d8f3038 2320 } else if (!is_subdir(old.dentry, new.dentry))
1da177e4 2321 goto out3;
2d8f3038 2322 detach_mnt(new.mnt, &parent_path);
8c3ee42e 2323 detach_mnt(root.mnt, &root_parent);
4ac91378 2324 /* mount old root on put_old */
2d8f3038 2325 attach_mnt(root.mnt, &old);
4ac91378 2326 /* mount new_root on / */
2d8f3038 2327 attach_mnt(new.mnt, &root_parent);
6b3286ed 2328 touch_mnt_namespace(current->nsproxy->mnt_ns);
99b7db7b 2329 br_write_unlock(vfsmount_lock);
2d8f3038 2330 chroot_fs_refs(&root, &new);
1da177e4 2331 error = 0;
1a390689
AV
2332 path_put(&root_parent);
2333 path_put(&parent_path);
1da177e4 2334out2:
2d8f3038 2335 mutex_unlock(&old.dentry->d_inode->i_mutex);
390c6843 2336 up_write(&namespace_sem);
8c3ee42e 2337 path_put(&root);
2d8f3038 2338 path_put(&old);
1da177e4 2339out1:
2d8f3038 2340 path_put(&new);
1da177e4 2341out0:
1da177e4
LT
2342 return error;
2343out3:
99b7db7b 2344 br_write_unlock(vfsmount_lock);
1da177e4
LT
2345 goto out2;
2346}
2347
2348static void __init init_mount_tree(void)
2349{
2350 struct vfsmount *mnt;
6b3286ed 2351 struct mnt_namespace *ns;
ac748a09 2352 struct path root;
1da177e4
LT
2353
2354 mnt = do_kern_mount("rootfs", 0, "rootfs", NULL);
2355 if (IS_ERR(mnt))
2356 panic("Can't create rootfs");
3b22edc5
TM
2357 ns = create_mnt_ns(mnt);
2358 if (IS_ERR(ns))
1da177e4 2359 panic("Can't allocate initial namespace");
6b3286ed
KK
2360
2361 init_task.nsproxy->mnt_ns = ns;
2362 get_mnt_ns(ns);
2363
ac748a09
JB
2364 root.mnt = ns->root;
2365 root.dentry = ns->root->mnt_root;
2366
2367 set_fs_pwd(current->fs, &root);
2368 set_fs_root(current->fs, &root);
1da177e4
LT
2369}
2370
74bf17cf 2371void __init mnt_init(void)
1da177e4 2372{
13f14b4d 2373 unsigned u;
15a67dd8 2374 int err;
1da177e4 2375
390c6843
RP
2376 init_rwsem(&namespace_sem);
2377
1da177e4 2378 mnt_cache = kmem_cache_create("mnt_cache", sizeof(struct vfsmount),
20c2df83 2379 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
1da177e4 2380
b58fed8b 2381 mount_hashtable = (struct list_head *)__get_free_page(GFP_ATOMIC);
1da177e4
LT
2382
2383 if (!mount_hashtable)
2384 panic("Failed to allocate mount hash table\n");
2385
13f14b4d
ED
2386 printk("Mount-cache hash table entries: %lu\n", HASH_SIZE);
2387
2388 for (u = 0; u < HASH_SIZE; u++)
2389 INIT_LIST_HEAD(&mount_hashtable[u]);
1da177e4 2390
99b7db7b
NP
2391 br_lock_init(vfsmount_lock);
2392
15a67dd8
RD
2393 err = sysfs_init();
2394 if (err)
2395 printk(KERN_WARNING "%s: sysfs_init error: %d\n",
8e24eea7 2396 __func__, err);
00d26666
GKH
2397 fs_kobj = kobject_create_and_add("fs", NULL);
2398 if (!fs_kobj)
8e24eea7 2399 printk(KERN_WARNING "%s: kobj create error\n", __func__);
1da177e4
LT
2400 init_rootfs();
2401 init_mount_tree();
2402}
2403
616511d0 2404void put_mnt_ns(struct mnt_namespace *ns)
1da177e4 2405{
70fbcdf4 2406 LIST_HEAD(umount_list);
616511d0 2407
d498b25a 2408 if (!atomic_dec_and_test(&ns->count))
616511d0 2409 return;
390c6843 2410 down_write(&namespace_sem);
99b7db7b 2411 br_write_lock(vfsmount_lock);
d498b25a 2412 umount_tree(ns->root, 0, &umount_list);
99b7db7b 2413 br_write_unlock(vfsmount_lock);
390c6843 2414 up_write(&namespace_sem);
70fbcdf4 2415 release_mounts(&umount_list);
6b3286ed 2416 kfree(ns);
1da177e4 2417}
cf8d2c11 2418EXPORT_SYMBOL(put_mnt_ns);