]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/namespace.c
Move struct path into its own header
[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>
14#include <linux/smp_lock.h>
15#include <linux/init.h>
15a67dd8 16#include <linux/kernel.h>
1da177e4
LT
17#include <linux/quotaops.h>
18#include <linux/acct.h>
16f7e0fe 19#include <linux/capability.h>
1da177e4 20#include <linux/module.h>
f20a9ead 21#include <linux/sysfs.h>
1da177e4 22#include <linux/seq_file.h>
6b3286ed 23#include <linux/mnt_namespace.h>
1da177e4
LT
24#include <linux/namei.h>
25#include <linux/security.h>
26#include <linux/mount.h>
07f3f05c 27#include <linux/ramfs.h>
13f14b4d 28#include <linux/log2.h>
1da177e4
LT
29#include <asm/uaccess.h>
30#include <asm/unistd.h>
07b20889 31#include "pnode.h"
948730b0 32#include "internal.h"
1da177e4 33
13f14b4d
ED
34#define HASH_SHIFT ilog2(PAGE_SIZE / sizeof(struct list_head))
35#define HASH_SIZE (1UL << HASH_SHIFT)
36
1da177e4 37/* spinlock for vfsmount related operations, inplace of dcache_lock */
5addc5dd
AV
38__cacheline_aligned_in_smp DEFINE_SPINLOCK(vfsmount_lock);
39
40static int event;
1da177e4 41
fa3536cc 42static struct list_head *mount_hashtable __read_mostly;
e18b890b 43static struct kmem_cache *mnt_cache __read_mostly;
390c6843 44static struct rw_semaphore namespace_sem;
1da177e4 45
f87fd4c2 46/* /sys/fs */
00d26666
GKH
47struct kobject *fs_kobj;
48EXPORT_SYMBOL_GPL(fs_kobj);
f87fd4c2 49
1da177e4
LT
50static inline unsigned long hash(struct vfsmount *mnt, struct dentry *dentry)
51{
b58fed8b
RP
52 unsigned long tmp = ((unsigned long)mnt / L1_CACHE_BYTES);
53 tmp += ((unsigned long)dentry / L1_CACHE_BYTES);
13f14b4d
ED
54 tmp = tmp + (tmp >> HASH_SHIFT);
55 return tmp & (HASH_SIZE - 1);
1da177e4
LT
56}
57
58struct vfsmount *alloc_vfsmnt(const char *name)
59{
c3762229 60 struct vfsmount *mnt = kmem_cache_zalloc(mnt_cache, GFP_KERNEL);
1da177e4 61 if (mnt) {
b58fed8b 62 atomic_set(&mnt->mnt_count, 1);
1da177e4
LT
63 INIT_LIST_HEAD(&mnt->mnt_hash);
64 INIT_LIST_HEAD(&mnt->mnt_child);
65 INIT_LIST_HEAD(&mnt->mnt_mounts);
66 INIT_LIST_HEAD(&mnt->mnt_list);
55e700b9 67 INIT_LIST_HEAD(&mnt->mnt_expire);
03e06e68 68 INIT_LIST_HEAD(&mnt->mnt_share);
a58b0eb8
RP
69 INIT_LIST_HEAD(&mnt->mnt_slave_list);
70 INIT_LIST_HEAD(&mnt->mnt_slave);
1da177e4 71 if (name) {
b58fed8b 72 int size = strlen(name) + 1;
1da177e4
LT
73 char *newname = kmalloc(size, GFP_KERNEL);
74 if (newname) {
75 memcpy(newname, name, size);
76 mnt->mnt_devname = newname;
77 }
78 }
79 }
80 return mnt;
81}
82
454e2398
DH
83int simple_set_mnt(struct vfsmount *mnt, struct super_block *sb)
84{
85 mnt->mnt_sb = sb;
86 mnt->mnt_root = dget(sb->s_root);
87 return 0;
88}
89
90EXPORT_SYMBOL(simple_set_mnt);
91
1da177e4
LT
92void free_vfsmnt(struct vfsmount *mnt)
93{
94 kfree(mnt->mnt_devname);
95 kmem_cache_free(mnt_cache, mnt);
96}
97
98/*
a05964f3
RP
99 * find the first or last mount at @dentry on vfsmount @mnt depending on
100 * @dir. If @dir is set return the first mount else return the last mount.
1da177e4 101 */
a05964f3
RP
102struct vfsmount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry,
103 int dir)
1da177e4 104{
b58fed8b
RP
105 struct list_head *head = mount_hashtable + hash(mnt, dentry);
106 struct list_head *tmp = head;
1da177e4
LT
107 struct vfsmount *p, *found = NULL;
108
1da177e4 109 for (;;) {
a05964f3 110 tmp = dir ? tmp->next : tmp->prev;
1da177e4
LT
111 p = NULL;
112 if (tmp == head)
113 break;
114 p = list_entry(tmp, struct vfsmount, mnt_hash);
115 if (p->mnt_parent == mnt && p->mnt_mountpoint == dentry) {
a05964f3 116 found = p;
1da177e4
LT
117 break;
118 }
119 }
1da177e4
LT
120 return found;
121}
122
a05964f3
RP
123/*
124 * lookup_mnt increments the ref count before returning
125 * the vfsmount struct.
126 */
127struct vfsmount *lookup_mnt(struct vfsmount *mnt, struct dentry *dentry)
128{
129 struct vfsmount *child_mnt;
130 spin_lock(&vfsmount_lock);
131 if ((child_mnt = __lookup_mnt(mnt, dentry, 1)))
132 mntget(child_mnt);
133 spin_unlock(&vfsmount_lock);
134 return child_mnt;
135}
136
1da177e4
LT
137static inline int check_mnt(struct vfsmount *mnt)
138{
6b3286ed 139 return mnt->mnt_ns == current->nsproxy->mnt_ns;
1da177e4
LT
140}
141
6b3286ed 142static void touch_mnt_namespace(struct mnt_namespace *ns)
5addc5dd
AV
143{
144 if (ns) {
145 ns->event = ++event;
146 wake_up_interruptible(&ns->poll);
147 }
148}
149
6b3286ed 150static void __touch_mnt_namespace(struct mnt_namespace *ns)
5addc5dd
AV
151{
152 if (ns && ns->event != event) {
153 ns->event = event;
154 wake_up_interruptible(&ns->poll);
155 }
156}
157
1da177e4
LT
158static void detach_mnt(struct vfsmount *mnt, struct nameidata *old_nd)
159{
160 old_nd->dentry = mnt->mnt_mountpoint;
161 old_nd->mnt = mnt->mnt_parent;
162 mnt->mnt_parent = mnt;
163 mnt->mnt_mountpoint = mnt->mnt_root;
164 list_del_init(&mnt->mnt_child);
165 list_del_init(&mnt->mnt_hash);
166 old_nd->dentry->d_mounted--;
167}
168
b90fa9ae
RP
169void mnt_set_mountpoint(struct vfsmount *mnt, struct dentry *dentry,
170 struct vfsmount *child_mnt)
171{
172 child_mnt->mnt_parent = mntget(mnt);
173 child_mnt->mnt_mountpoint = dget(dentry);
174 dentry->d_mounted++;
175}
176
1da177e4
LT
177static void attach_mnt(struct vfsmount *mnt, struct nameidata *nd)
178{
b90fa9ae
RP
179 mnt_set_mountpoint(nd->mnt, nd->dentry, mnt);
180 list_add_tail(&mnt->mnt_hash, mount_hashtable +
181 hash(nd->mnt, nd->dentry));
1da177e4 182 list_add_tail(&mnt->mnt_child, &nd->mnt->mnt_mounts);
b90fa9ae
RP
183}
184
185/*
186 * the caller must hold vfsmount_lock
187 */
188static void commit_tree(struct vfsmount *mnt)
189{
190 struct vfsmount *parent = mnt->mnt_parent;
191 struct vfsmount *m;
192 LIST_HEAD(head);
6b3286ed 193 struct mnt_namespace *n = parent->mnt_ns;
b90fa9ae
RP
194
195 BUG_ON(parent == mnt);
196
197 list_add_tail(&head, &mnt->mnt_list);
198 list_for_each_entry(m, &head, mnt_list)
6b3286ed 199 m->mnt_ns = n;
b90fa9ae
RP
200 list_splice(&head, n->list.prev);
201
202 list_add_tail(&mnt->mnt_hash, mount_hashtable +
203 hash(parent, mnt->mnt_mountpoint));
204 list_add_tail(&mnt->mnt_child, &parent->mnt_mounts);
6b3286ed 205 touch_mnt_namespace(n);
1da177e4
LT
206}
207
208static struct vfsmount *next_mnt(struct vfsmount *p, struct vfsmount *root)
209{
210 struct list_head *next = p->mnt_mounts.next;
211 if (next == &p->mnt_mounts) {
212 while (1) {
213 if (p == root)
214 return NULL;
215 next = p->mnt_child.next;
216 if (next != &p->mnt_parent->mnt_mounts)
217 break;
218 p = p->mnt_parent;
219 }
220 }
221 return list_entry(next, struct vfsmount, mnt_child);
222}
223
9676f0c6
RP
224static struct vfsmount *skip_mnt_tree(struct vfsmount *p)
225{
226 struct list_head *prev = p->mnt_mounts.prev;
227 while (prev != &p->mnt_mounts) {
228 p = list_entry(prev, struct vfsmount, mnt_child);
229 prev = p->mnt_mounts.prev;
230 }
231 return p;
232}
233
36341f64
RP
234static struct vfsmount *clone_mnt(struct vfsmount *old, struct dentry *root,
235 int flag)
1da177e4
LT
236{
237 struct super_block *sb = old->mnt_sb;
238 struct vfsmount *mnt = alloc_vfsmnt(old->mnt_devname);
239
240 if (mnt) {
241 mnt->mnt_flags = old->mnt_flags;
242 atomic_inc(&sb->s_active);
243 mnt->mnt_sb = sb;
244 mnt->mnt_root = dget(root);
245 mnt->mnt_mountpoint = mnt->mnt_root;
246 mnt->mnt_parent = mnt;
b90fa9ae 247
5afe0022
RP
248 if (flag & CL_SLAVE) {
249 list_add(&mnt->mnt_slave, &old->mnt_slave_list);
250 mnt->mnt_master = old;
251 CLEAR_MNT_SHARED(mnt);
8aec0809 252 } else if (!(flag & CL_PRIVATE)) {
5afe0022
RP
253 if ((flag & CL_PROPAGATION) || IS_MNT_SHARED(old))
254 list_add(&mnt->mnt_share, &old->mnt_share);
255 if (IS_MNT_SLAVE(old))
256 list_add(&mnt->mnt_slave, &old->mnt_slave);
257 mnt->mnt_master = old->mnt_master;
258 }
b90fa9ae
RP
259 if (flag & CL_MAKE_SHARED)
260 set_mnt_shared(mnt);
1da177e4
LT
261
262 /* stick the duplicate mount on the same expiry list
263 * as the original if that was on one */
36341f64
RP
264 if (flag & CL_EXPIRE) {
265 spin_lock(&vfsmount_lock);
266 if (!list_empty(&old->mnt_expire))
267 list_add(&mnt->mnt_expire, &old->mnt_expire);
268 spin_unlock(&vfsmount_lock);
269 }
1da177e4
LT
270 }
271 return mnt;
272}
273
7b7b1ace 274static inline void __mntput(struct vfsmount *mnt)
1da177e4
LT
275{
276 struct super_block *sb = mnt->mnt_sb;
277 dput(mnt->mnt_root);
278 free_vfsmnt(mnt);
279 deactivate_super(sb);
280}
281
7b7b1ace
AV
282void mntput_no_expire(struct vfsmount *mnt)
283{
284repeat:
285 if (atomic_dec_and_lock(&mnt->mnt_count, &vfsmount_lock)) {
286 if (likely(!mnt->mnt_pinned)) {
287 spin_unlock(&vfsmount_lock);
288 __mntput(mnt);
289 return;
290 }
291 atomic_add(mnt->mnt_pinned + 1, &mnt->mnt_count);
292 mnt->mnt_pinned = 0;
293 spin_unlock(&vfsmount_lock);
294 acct_auto_close_mnt(mnt);
295 security_sb_umount_close(mnt);
296 goto repeat;
297 }
298}
299
300EXPORT_SYMBOL(mntput_no_expire);
301
302void mnt_pin(struct vfsmount *mnt)
303{
304 spin_lock(&vfsmount_lock);
305 mnt->mnt_pinned++;
306 spin_unlock(&vfsmount_lock);
307}
308
309EXPORT_SYMBOL(mnt_pin);
310
311void mnt_unpin(struct vfsmount *mnt)
312{
313 spin_lock(&vfsmount_lock);
314 if (mnt->mnt_pinned) {
315 atomic_inc(&mnt->mnt_count);
316 mnt->mnt_pinned--;
317 }
318 spin_unlock(&vfsmount_lock);
319}
320
321EXPORT_SYMBOL(mnt_unpin);
1da177e4 322
b3b304a2
MS
323static inline void mangle(struct seq_file *m, const char *s)
324{
325 seq_escape(m, s, " \t\n\\");
326}
327
328/*
329 * Simple .show_options callback for filesystems which don't want to
330 * implement more complex mount option showing.
331 *
332 * See also save_mount_options().
333 */
334int generic_show_options(struct seq_file *m, struct vfsmount *mnt)
335{
336 const char *options = mnt->mnt_sb->s_options;
337
338 if (options != NULL && options[0]) {
339 seq_putc(m, ',');
340 mangle(m, options);
341 }
342
343 return 0;
344}
345EXPORT_SYMBOL(generic_show_options);
346
347/*
348 * If filesystem uses generic_show_options(), this function should be
349 * called from the fill_super() callback.
350 *
351 * The .remount_fs callback usually needs to be handled in a special
352 * way, to make sure, that previous options are not overwritten if the
353 * remount fails.
354 *
355 * Also note, that if the filesystem's .remount_fs function doesn't
356 * reset all options to their default value, but changes only newly
357 * given options, then the displayed options will not reflect reality
358 * any more.
359 */
360void save_mount_options(struct super_block *sb, char *options)
361{
362 kfree(sb->s_options);
363 sb->s_options = kstrdup(options, GFP_KERNEL);
364}
365EXPORT_SYMBOL(save_mount_options);
366
1da177e4
LT
367/* iterator */
368static void *m_start(struct seq_file *m, loff_t *pos)
369{
6b3286ed 370 struct mnt_namespace *n = m->private;
1da177e4 371
390c6843 372 down_read(&namespace_sem);
b0765fb8 373 return seq_list_start(&n->list, *pos);
1da177e4
LT
374}
375
376static void *m_next(struct seq_file *m, void *v, loff_t *pos)
377{
6b3286ed 378 struct mnt_namespace *n = m->private;
b0765fb8
PE
379
380 return seq_list_next(v, &n->list, pos);
1da177e4
LT
381}
382
383static void m_stop(struct seq_file *m, void *v)
384{
390c6843 385 up_read(&namespace_sem);
1da177e4
LT
386}
387
1da177e4
LT
388static int show_vfsmnt(struct seq_file *m, void *v)
389{
b0765fb8 390 struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
1da177e4
LT
391 int err = 0;
392 static struct proc_fs_info {
393 int flag;
394 char *str;
395 } fs_info[] = {
396 { MS_SYNCHRONOUS, ",sync" },
397 { MS_DIRSYNC, ",dirsync" },
398 { MS_MANDLOCK, ",mand" },
1da177e4
LT
399 { 0, NULL }
400 };
401 static struct proc_fs_info mnt_info[] = {
402 { MNT_NOSUID, ",nosuid" },
403 { MNT_NODEV, ",nodev" },
404 { MNT_NOEXEC, ",noexec" },
fc33a7bb
CH
405 { MNT_NOATIME, ",noatime" },
406 { MNT_NODIRATIME, ",nodiratime" },
47ae32d6 407 { MNT_RELATIME, ",relatime" },
1da177e4
LT
408 { 0, NULL }
409 };
410 struct proc_fs_info *fs_infop;
411
412 mangle(m, mnt->mnt_devname ? mnt->mnt_devname : "none");
413 seq_putc(m, ' ');
414 seq_path(m, mnt, mnt->mnt_root, " \t\n\\");
415 seq_putc(m, ' ');
416 mangle(m, mnt->mnt_sb->s_type->name);
79c0b2df
MS
417 if (mnt->mnt_sb->s_subtype && mnt->mnt_sb->s_subtype[0]) {
418 seq_putc(m, '.');
419 mangle(m, mnt->mnt_sb->s_subtype);
420 }
1da177e4
LT
421 seq_puts(m, mnt->mnt_sb->s_flags & MS_RDONLY ? " ro" : " rw");
422 for (fs_infop = fs_info; fs_infop->flag; fs_infop++) {
423 if (mnt->mnt_sb->s_flags & fs_infop->flag)
424 seq_puts(m, fs_infop->str);
425 }
426 for (fs_infop = mnt_info; fs_infop->flag; fs_infop++) {
427 if (mnt->mnt_flags & fs_infop->flag)
428 seq_puts(m, fs_infop->str);
429 }
430 if (mnt->mnt_sb->s_op->show_options)
431 err = mnt->mnt_sb->s_op->show_options(m, mnt);
432 seq_puts(m, " 0 0\n");
433 return err;
434}
435
436struct seq_operations mounts_op = {
437 .start = m_start,
438 .next = m_next,
439 .stop = m_stop,
440 .show = show_vfsmnt
441};
442
b4629fe2
CL
443static int show_vfsstat(struct seq_file *m, void *v)
444{
b0765fb8 445 struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
b4629fe2
CL
446 int err = 0;
447
448 /* device */
449 if (mnt->mnt_devname) {
450 seq_puts(m, "device ");
451 mangle(m, mnt->mnt_devname);
452 } else
453 seq_puts(m, "no device");
454
455 /* mount point */
456 seq_puts(m, " mounted on ");
457 seq_path(m, mnt, mnt->mnt_root, " \t\n\\");
458 seq_putc(m, ' ');
459
460 /* file system type */
461 seq_puts(m, "with fstype ");
462 mangle(m, mnt->mnt_sb->s_type->name);
463
464 /* optional statistics */
465 if (mnt->mnt_sb->s_op->show_stats) {
466 seq_putc(m, ' ');
467 err = mnt->mnt_sb->s_op->show_stats(m, mnt);
468 }
469
470 seq_putc(m, '\n');
471 return err;
472}
473
474struct seq_operations mountstats_op = {
475 .start = m_start,
476 .next = m_next,
477 .stop = m_stop,
478 .show = show_vfsstat,
479};
480
1da177e4
LT
481/**
482 * may_umount_tree - check if a mount tree is busy
483 * @mnt: root of mount tree
484 *
485 * This is called to check if a tree of mounts has any
486 * open files, pwds, chroots or sub mounts that are
487 * busy.
488 */
489int may_umount_tree(struct vfsmount *mnt)
490{
36341f64
RP
491 int actual_refs = 0;
492 int minimum_refs = 0;
493 struct vfsmount *p;
1da177e4
LT
494
495 spin_lock(&vfsmount_lock);
36341f64 496 for (p = mnt; p; p = next_mnt(p, mnt)) {
1da177e4
LT
497 actual_refs += atomic_read(&p->mnt_count);
498 minimum_refs += 2;
1da177e4
LT
499 }
500 spin_unlock(&vfsmount_lock);
501
502 if (actual_refs > minimum_refs)
e3474a8e 503 return 0;
1da177e4 504
e3474a8e 505 return 1;
1da177e4
LT
506}
507
508EXPORT_SYMBOL(may_umount_tree);
509
510/**
511 * may_umount - check if a mount point is busy
512 * @mnt: root of mount
513 *
514 * This is called to check if a mount point has any
515 * open files, pwds, chroots or sub mounts. If the
516 * mount has sub mounts this will return busy
517 * regardless of whether the sub mounts are busy.
518 *
519 * Doesn't take quota and stuff into account. IOW, in some cases it will
520 * give false negatives. The main reason why it's here is that we need
521 * a non-destructive way to look for easily umountable filesystems.
522 */
523int may_umount(struct vfsmount *mnt)
524{
e3474a8e 525 int ret = 1;
a05964f3
RP
526 spin_lock(&vfsmount_lock);
527 if (propagate_mount_busy(mnt, 2))
e3474a8e 528 ret = 0;
a05964f3
RP
529 spin_unlock(&vfsmount_lock);
530 return ret;
1da177e4
LT
531}
532
533EXPORT_SYMBOL(may_umount);
534
b90fa9ae 535void release_mounts(struct list_head *head)
70fbcdf4
RP
536{
537 struct vfsmount *mnt;
bf066c7d 538 while (!list_empty(head)) {
b5e61818 539 mnt = list_first_entry(head, struct vfsmount, mnt_hash);
70fbcdf4
RP
540 list_del_init(&mnt->mnt_hash);
541 if (mnt->mnt_parent != mnt) {
542 struct dentry *dentry;
543 struct vfsmount *m;
544 spin_lock(&vfsmount_lock);
545 dentry = mnt->mnt_mountpoint;
546 m = mnt->mnt_parent;
547 mnt->mnt_mountpoint = mnt->mnt_root;
548 mnt->mnt_parent = mnt;
549 spin_unlock(&vfsmount_lock);
550 dput(dentry);
551 mntput(m);
552 }
553 mntput(mnt);
554 }
555}
556
a05964f3 557void umount_tree(struct vfsmount *mnt, int propagate, struct list_head *kill)
1da177e4
LT
558{
559 struct vfsmount *p;
1da177e4 560
1bfba4e8
AM
561 for (p = mnt; p; p = next_mnt(p, mnt))
562 list_move(&p->mnt_hash, kill);
1da177e4 563
a05964f3
RP
564 if (propagate)
565 propagate_umount(kill);
566
70fbcdf4
RP
567 list_for_each_entry(p, kill, mnt_hash) {
568 list_del_init(&p->mnt_expire);
569 list_del_init(&p->mnt_list);
6b3286ed
KK
570 __touch_mnt_namespace(p->mnt_ns);
571 p->mnt_ns = NULL;
70fbcdf4
RP
572 list_del_init(&p->mnt_child);
573 if (p->mnt_parent != p)
f30ac319 574 p->mnt_mountpoint->d_mounted--;
a05964f3 575 change_mnt_propagation(p, MS_PRIVATE);
1da177e4
LT
576 }
577}
578
579static int do_umount(struct vfsmount *mnt, int flags)
580{
b58fed8b 581 struct super_block *sb = mnt->mnt_sb;
1da177e4 582 int retval;
70fbcdf4 583 LIST_HEAD(umount_list);
1da177e4
LT
584
585 retval = security_sb_umount(mnt, flags);
586 if (retval)
587 return retval;
588
589 /*
590 * Allow userspace to request a mountpoint be expired rather than
591 * unmounting unconditionally. Unmount only happens if:
592 * (1) the mark is already set (the mark is cleared by mntput())
593 * (2) the usage count == 1 [parent vfsmount] + 1 [sys_umount]
594 */
595 if (flags & MNT_EXPIRE) {
596 if (mnt == current->fs->rootmnt ||
597 flags & (MNT_FORCE | MNT_DETACH))
598 return -EINVAL;
599
600 if (atomic_read(&mnt->mnt_count) != 2)
601 return -EBUSY;
602
603 if (!xchg(&mnt->mnt_expiry_mark, 1))
604 return -EAGAIN;
605 }
606
607 /*
608 * If we may have to abort operations to get out of this
609 * mount, and they will themselves hold resources we must
610 * allow the fs to do things. In the Unix tradition of
611 * 'Gee thats tricky lets do it in userspace' the umount_begin
612 * might fail to complete on the first run through as other tasks
613 * must return, and the like. Thats for the mount program to worry
614 * about for the moment.
615 */
616
617 lock_kernel();
8b512d9a
TM
618 if (sb->s_op->umount_begin)
619 sb->s_op->umount_begin(mnt, flags);
1da177e4
LT
620 unlock_kernel();
621
622 /*
623 * No sense to grab the lock for this test, but test itself looks
624 * somewhat bogus. Suggestions for better replacement?
625 * Ho-hum... In principle, we might treat that as umount + switch
626 * to rootfs. GC would eventually take care of the old vfsmount.
627 * Actually it makes sense, especially if rootfs would contain a
628 * /reboot - static binary that would close all descriptors and
629 * call reboot(9). Then init(8) could umount root and exec /reboot.
630 */
631 if (mnt == current->fs->rootmnt && !(flags & MNT_DETACH)) {
632 /*
633 * Special case for "unmounting" root ...
634 * we just try to remount it readonly.
635 */
636 down_write(&sb->s_umount);
637 if (!(sb->s_flags & MS_RDONLY)) {
638 lock_kernel();
639 DQUOT_OFF(sb);
640 retval = do_remount_sb(sb, MS_RDONLY, NULL, 0);
641 unlock_kernel();
642 }
643 up_write(&sb->s_umount);
644 return retval;
645 }
646
390c6843 647 down_write(&namespace_sem);
1da177e4 648 spin_lock(&vfsmount_lock);
5addc5dd 649 event++;
1da177e4 650
1da177e4 651 retval = -EBUSY;
a05964f3 652 if (flags & MNT_DETACH || !propagate_mount_busy(mnt, 2)) {
1da177e4 653 if (!list_empty(&mnt->mnt_list))
a05964f3 654 umount_tree(mnt, 1, &umount_list);
1da177e4
LT
655 retval = 0;
656 }
657 spin_unlock(&vfsmount_lock);
658 if (retval)
659 security_sb_umount_busy(mnt);
390c6843 660 up_write(&namespace_sem);
70fbcdf4 661 release_mounts(&umount_list);
1da177e4
LT
662 return retval;
663}
664
665/*
666 * Now umount can handle mount points as well as block devices.
667 * This is important for filesystems which use unnamed block devices.
668 *
669 * We now support a flag for forced unmount like the other 'big iron'
670 * unixes. Our API is identical to OSF/1 to avoid making a mess of AMD
671 */
672
673asmlinkage long sys_umount(char __user * name, int flags)
674{
675 struct nameidata nd;
676 int retval;
677
678 retval = __user_walk(name, LOOKUP_FOLLOW, &nd);
679 if (retval)
680 goto out;
681 retval = -EINVAL;
682 if (nd.dentry != nd.mnt->mnt_root)
683 goto dput_and_out;
684 if (!check_mnt(nd.mnt))
685 goto dput_and_out;
686
687 retval = -EPERM;
688 if (!capable(CAP_SYS_ADMIN))
689 goto dput_and_out;
690
691 retval = do_umount(nd.mnt, flags);
692dput_and_out:
429731b1
JB
693 /* we mustn't call path_put() as that would clear mnt_expiry_mark */
694 dput(nd.dentry);
695 mntput_no_expire(nd.mnt);
1da177e4
LT
696out:
697 return retval;
698}
699
700#ifdef __ARCH_WANT_SYS_OLDUMOUNT
701
702/*
b58fed8b 703 * The 2.0 compatible umount. No flags.
1da177e4 704 */
1da177e4
LT
705asmlinkage long sys_oldumount(char __user * name)
706{
b58fed8b 707 return sys_umount(name, 0);
1da177e4
LT
708}
709
710#endif
711
712static int mount_is_safe(struct nameidata *nd)
713{
714 if (capable(CAP_SYS_ADMIN))
715 return 0;
716 return -EPERM;
717#ifdef notyet
718 if (S_ISLNK(nd->dentry->d_inode->i_mode))
719 return -EPERM;
720 if (nd->dentry->d_inode->i_mode & S_ISVTX) {
721 if (current->uid != nd->dentry->d_inode->i_uid)
722 return -EPERM;
723 }
e4543edd 724 if (vfs_permission(nd, MAY_WRITE))
1da177e4
LT
725 return -EPERM;
726 return 0;
727#endif
728}
729
b58fed8b 730static int lives_below_in_same_fs(struct dentry *d, struct dentry *dentry)
1da177e4
LT
731{
732 while (1) {
733 if (d == dentry)
734 return 1;
735 if (d == NULL || d == d->d_parent)
736 return 0;
737 d = d->d_parent;
738 }
739}
740
b90fa9ae 741struct vfsmount *copy_tree(struct vfsmount *mnt, struct dentry *dentry,
36341f64 742 int flag)
1da177e4
LT
743{
744 struct vfsmount *res, *p, *q, *r, *s;
1da177e4
LT
745 struct nameidata nd;
746
9676f0c6
RP
747 if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(mnt))
748 return NULL;
749
36341f64 750 res = q = clone_mnt(mnt, dentry, flag);
1da177e4
LT
751 if (!q)
752 goto Enomem;
753 q->mnt_mountpoint = mnt->mnt_mountpoint;
754
755 p = mnt;
fdadd65f 756 list_for_each_entry(r, &mnt->mnt_mounts, mnt_child) {
1da177e4
LT
757 if (!lives_below_in_same_fs(r->mnt_mountpoint, dentry))
758 continue;
759
760 for (s = r; s; s = next_mnt(s, r)) {
9676f0c6
RP
761 if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(s)) {
762 s = skip_mnt_tree(s);
763 continue;
764 }
1da177e4
LT
765 while (p != s->mnt_parent) {
766 p = p->mnt_parent;
767 q = q->mnt_parent;
768 }
769 p = s;
770 nd.mnt = q;
771 nd.dentry = p->mnt_mountpoint;
36341f64 772 q = clone_mnt(p, p->mnt_root, flag);
1da177e4
LT
773 if (!q)
774 goto Enomem;
775 spin_lock(&vfsmount_lock);
776 list_add_tail(&q->mnt_list, &res->mnt_list);
777 attach_mnt(q, &nd);
778 spin_unlock(&vfsmount_lock);
779 }
780 }
781 return res;
b58fed8b 782Enomem:
1da177e4 783 if (res) {
70fbcdf4 784 LIST_HEAD(umount_list);
1da177e4 785 spin_lock(&vfsmount_lock);
a05964f3 786 umount_tree(res, 0, &umount_list);
1da177e4 787 spin_unlock(&vfsmount_lock);
70fbcdf4 788 release_mounts(&umount_list);
1da177e4
LT
789 }
790 return NULL;
791}
792
8aec0809
AV
793struct vfsmount *collect_mounts(struct vfsmount *mnt, struct dentry *dentry)
794{
795 struct vfsmount *tree;
796 down_read(&namespace_sem);
797 tree = copy_tree(mnt, dentry, CL_COPY_ALL | CL_PRIVATE);
798 up_read(&namespace_sem);
799 return tree;
800}
801
802void drop_collected_mounts(struct vfsmount *mnt)
803{
804 LIST_HEAD(umount_list);
805 down_read(&namespace_sem);
806 spin_lock(&vfsmount_lock);
807 umount_tree(mnt, 0, &umount_list);
808 spin_unlock(&vfsmount_lock);
809 up_read(&namespace_sem);
810 release_mounts(&umount_list);
811}
812
b90fa9ae
RP
813/*
814 * @source_mnt : mount tree to be attached
21444403
RP
815 * @nd : place the mount tree @source_mnt is attached
816 * @parent_nd : if non-null, detach the source_mnt from its parent and
817 * store the parent mount and mountpoint dentry.
818 * (done when source_mnt is moved)
b90fa9ae
RP
819 *
820 * NOTE: in the table below explains the semantics when a source mount
821 * of a given type is attached to a destination mount of a given type.
9676f0c6
RP
822 * ---------------------------------------------------------------------------
823 * | BIND MOUNT OPERATION |
824 * |**************************************************************************
825 * | source-->| shared | private | slave | unbindable |
826 * | dest | | | | |
827 * | | | | | | |
828 * | v | | | | |
829 * |**************************************************************************
830 * | shared | shared (++) | shared (+) | shared(+++)| invalid |
831 * | | | | | |
832 * |non-shared| shared (+) | private | slave (*) | invalid |
833 * ***************************************************************************
b90fa9ae
RP
834 * A bind operation clones the source mount and mounts the clone on the
835 * destination mount.
836 *
837 * (++) the cloned mount is propagated to all the mounts in the propagation
838 * tree of the destination mount and the cloned mount is added to
839 * the peer group of the source mount.
840 * (+) the cloned mount is created under the destination mount and is marked
841 * as shared. The cloned mount is added to the peer group of the source
842 * mount.
5afe0022
RP
843 * (+++) the mount is propagated to all the mounts in the propagation tree
844 * of the destination mount and the cloned mount is made slave
845 * of the same master as that of the source mount. The cloned mount
846 * is marked as 'shared and slave'.
847 * (*) the cloned mount is made a slave of the same master as that of the
848 * source mount.
849 *
9676f0c6
RP
850 * ---------------------------------------------------------------------------
851 * | MOVE MOUNT OPERATION |
852 * |**************************************************************************
853 * | source-->| shared | private | slave | unbindable |
854 * | dest | | | | |
855 * | | | | | | |
856 * | v | | | | |
857 * |**************************************************************************
858 * | shared | shared (+) | shared (+) | shared(+++) | invalid |
859 * | | | | | |
860 * |non-shared| shared (+*) | private | slave (*) | unbindable |
861 * ***************************************************************************
5afe0022
RP
862 *
863 * (+) the mount is moved to the destination. And is then propagated to
864 * all the mounts in the propagation tree of the destination mount.
21444403 865 * (+*) the mount is moved to the destination.
5afe0022
RP
866 * (+++) the mount is moved to the destination and is then propagated to
867 * all the mounts belonging to the destination mount's propagation tree.
868 * the mount is marked as 'shared and slave'.
869 * (*) the mount continues to be a slave at the new location.
b90fa9ae
RP
870 *
871 * if the source mount is a tree, the operations explained above is
872 * applied to each mount in the tree.
873 * Must be called without spinlocks held, since this function can sleep
874 * in allocations.
875 */
876static int attach_recursive_mnt(struct vfsmount *source_mnt,
21444403 877 struct nameidata *nd, struct nameidata *parent_nd)
b90fa9ae
RP
878{
879 LIST_HEAD(tree_list);
880 struct vfsmount *dest_mnt = nd->mnt;
881 struct dentry *dest_dentry = nd->dentry;
882 struct vfsmount *child, *p;
883
884 if (propagate_mnt(dest_mnt, dest_dentry, source_mnt, &tree_list))
885 return -EINVAL;
886
887 if (IS_MNT_SHARED(dest_mnt)) {
888 for (p = source_mnt; p; p = next_mnt(p, source_mnt))
889 set_mnt_shared(p);
890 }
891
892 spin_lock(&vfsmount_lock);
21444403
RP
893 if (parent_nd) {
894 detach_mnt(source_mnt, parent_nd);
895 attach_mnt(source_mnt, nd);
6b3286ed 896 touch_mnt_namespace(current->nsproxy->mnt_ns);
21444403
RP
897 } else {
898 mnt_set_mountpoint(dest_mnt, dest_dentry, source_mnt);
899 commit_tree(source_mnt);
900 }
b90fa9ae
RP
901
902 list_for_each_entry_safe(child, p, &tree_list, mnt_hash) {
903 list_del_init(&child->mnt_hash);
904 commit_tree(child);
905 }
906 spin_unlock(&vfsmount_lock);
907 return 0;
908}
909
1da177e4
LT
910static int graft_tree(struct vfsmount *mnt, struct nameidata *nd)
911{
912 int err;
913 if (mnt->mnt_sb->s_flags & MS_NOUSER)
914 return -EINVAL;
915
916 if (S_ISDIR(nd->dentry->d_inode->i_mode) !=
917 S_ISDIR(mnt->mnt_root->d_inode->i_mode))
918 return -ENOTDIR;
919
920 err = -ENOENT;
1b1dcc1b 921 mutex_lock(&nd->dentry->d_inode->i_mutex);
1da177e4
LT
922 if (IS_DEADDIR(nd->dentry->d_inode))
923 goto out_unlock;
924
925 err = security_sb_check_sb(mnt, nd);
926 if (err)
927 goto out_unlock;
928
929 err = -ENOENT;
b90fa9ae 930 if (IS_ROOT(nd->dentry) || !d_unhashed(nd->dentry))
21444403 931 err = attach_recursive_mnt(mnt, nd, NULL);
1da177e4 932out_unlock:
1b1dcc1b 933 mutex_unlock(&nd->dentry->d_inode->i_mutex);
1da177e4
LT
934 if (!err)
935 security_sb_post_addmount(mnt, nd);
936 return err;
937}
938
07b20889
RP
939/*
940 * recursively change the type of the mountpoint.
2dafe1c4 941 * noinline this do_mount helper to save do_mount stack space.
07b20889 942 */
2dafe1c4 943static noinline int do_change_type(struct nameidata *nd, int flag)
07b20889
RP
944{
945 struct vfsmount *m, *mnt = nd->mnt;
946 int recurse = flag & MS_REC;
947 int type = flag & ~MS_REC;
948
ee6f9582
MS
949 if (!capable(CAP_SYS_ADMIN))
950 return -EPERM;
951
07b20889
RP
952 if (nd->dentry != nd->mnt->mnt_root)
953 return -EINVAL;
954
955 down_write(&namespace_sem);
956 spin_lock(&vfsmount_lock);
957 for (m = mnt; m; m = (recurse ? next_mnt(m, mnt) : NULL))
958 change_mnt_propagation(m, type);
959 spin_unlock(&vfsmount_lock);
960 up_write(&namespace_sem);
961 return 0;
962}
963
1da177e4
LT
964/*
965 * do loopback mount.
2dafe1c4 966 * noinline this do_mount helper to save do_mount stack space.
1da177e4 967 */
2dafe1c4
ES
968static noinline int do_loopback(struct nameidata *nd, char *old_name,
969 int recurse)
1da177e4
LT
970{
971 struct nameidata old_nd;
972 struct vfsmount *mnt = NULL;
973 int err = mount_is_safe(nd);
974 if (err)
975 return err;
976 if (!old_name || !*old_name)
977 return -EINVAL;
978 err = path_lookup(old_name, LOOKUP_FOLLOW, &old_nd);
979 if (err)
980 return err;
981
390c6843 982 down_write(&namespace_sem);
1da177e4 983 err = -EINVAL;
9676f0c6
RP
984 if (IS_MNT_UNBINDABLE(old_nd.mnt))
985 goto out;
986
ccd48bc7
AV
987 if (!check_mnt(nd->mnt) || !check_mnt(old_nd.mnt))
988 goto out;
1da177e4 989
ccd48bc7
AV
990 err = -ENOMEM;
991 if (recurse)
36341f64 992 mnt = copy_tree(old_nd.mnt, old_nd.dentry, 0);
ccd48bc7 993 else
36341f64 994 mnt = clone_mnt(old_nd.mnt, old_nd.dentry, 0);
ccd48bc7
AV
995
996 if (!mnt)
997 goto out;
998
ccd48bc7
AV
999 err = graft_tree(mnt, nd);
1000 if (err) {
70fbcdf4 1001 LIST_HEAD(umount_list);
1da177e4 1002 spin_lock(&vfsmount_lock);
a05964f3 1003 umount_tree(mnt, 0, &umount_list);
1da177e4 1004 spin_unlock(&vfsmount_lock);
70fbcdf4 1005 release_mounts(&umount_list);
5b83d2c5 1006 }
1da177e4 1007
ccd48bc7 1008out:
390c6843 1009 up_write(&namespace_sem);
1da177e4
LT
1010 path_release(&old_nd);
1011 return err;
1012}
1013
1014/*
1015 * change filesystem flags. dir should be a physical root of filesystem.
1016 * If you've mounted a non-root directory somewhere and want to do remount
1017 * on it - tough luck.
2dafe1c4 1018 * noinline this do_mount helper to save do_mount stack space.
1da177e4 1019 */
2dafe1c4 1020static noinline int do_remount(struct nameidata *nd, int flags, int mnt_flags,
1da177e4
LT
1021 void *data)
1022{
1023 int err;
b58fed8b 1024 struct super_block *sb = nd->mnt->mnt_sb;
1da177e4
LT
1025
1026 if (!capable(CAP_SYS_ADMIN))
1027 return -EPERM;
1028
1029 if (!check_mnt(nd->mnt))
1030 return -EINVAL;
1031
1032 if (nd->dentry != nd->mnt->mnt_root)
1033 return -EINVAL;
1034
1035 down_write(&sb->s_umount);
1036 err = do_remount_sb(sb, flags, data, 0);
1037 if (!err)
b58fed8b 1038 nd->mnt->mnt_flags = mnt_flags;
1da177e4
LT
1039 up_write(&sb->s_umount);
1040 if (!err)
1041 security_sb_post_remount(nd->mnt, flags, data);
1042 return err;
1043}
1044
9676f0c6
RP
1045static inline int tree_contains_unbindable(struct vfsmount *mnt)
1046{
1047 struct vfsmount *p;
1048 for (p = mnt; p; p = next_mnt(p, mnt)) {
1049 if (IS_MNT_UNBINDABLE(p))
1050 return 1;
1051 }
1052 return 0;
1053}
1054
2dafe1c4
ES
1055/*
1056 * noinline this do_mount helper to save do_mount stack space.
1057 */
1058static noinline int do_move_mount(struct nameidata *nd, char *old_name)
1da177e4
LT
1059{
1060 struct nameidata old_nd, parent_nd;
1061 struct vfsmount *p;
1062 int err = 0;
1063 if (!capable(CAP_SYS_ADMIN))
1064 return -EPERM;
1065 if (!old_name || !*old_name)
1066 return -EINVAL;
1067 err = path_lookup(old_name, LOOKUP_FOLLOW, &old_nd);
1068 if (err)
1069 return err;
1070
390c6843 1071 down_write(&namespace_sem);
b58fed8b 1072 while (d_mountpoint(nd->dentry) && follow_down(&nd->mnt, &nd->dentry))
1da177e4
LT
1073 ;
1074 err = -EINVAL;
1075 if (!check_mnt(nd->mnt) || !check_mnt(old_nd.mnt))
1076 goto out;
1077
1078 err = -ENOENT;
1b1dcc1b 1079 mutex_lock(&nd->dentry->d_inode->i_mutex);
1da177e4
LT
1080 if (IS_DEADDIR(nd->dentry->d_inode))
1081 goto out1;
1082
1da177e4 1083 if (!IS_ROOT(nd->dentry) && d_unhashed(nd->dentry))
21444403 1084 goto out1;
1da177e4
LT
1085
1086 err = -EINVAL;
1087 if (old_nd.dentry != old_nd.mnt->mnt_root)
21444403 1088 goto out1;
1da177e4
LT
1089
1090 if (old_nd.mnt == old_nd.mnt->mnt_parent)
21444403 1091 goto out1;
1da177e4
LT
1092
1093 if (S_ISDIR(nd->dentry->d_inode->i_mode) !=
1094 S_ISDIR(old_nd.dentry->d_inode->i_mode))
21444403
RP
1095 goto out1;
1096 /*
1097 * Don't move a mount residing in a shared parent.
1098 */
1099 if (old_nd.mnt->mnt_parent && IS_MNT_SHARED(old_nd.mnt->mnt_parent))
1100 goto out1;
9676f0c6
RP
1101 /*
1102 * Don't move a mount tree containing unbindable mounts to a destination
1103 * mount which is shared.
1104 */
1105 if (IS_MNT_SHARED(nd->mnt) && tree_contains_unbindable(old_nd.mnt))
1106 goto out1;
1da177e4 1107 err = -ELOOP;
b58fed8b 1108 for (p = nd->mnt; p->mnt_parent != p; p = p->mnt_parent)
1da177e4 1109 if (p == old_nd.mnt)
21444403 1110 goto out1;
1da177e4 1111
21444403
RP
1112 if ((err = attach_recursive_mnt(old_nd.mnt, nd, &parent_nd)))
1113 goto out1;
1da177e4 1114
21444403 1115 spin_lock(&vfsmount_lock);
1da177e4
LT
1116 /* if the mount is moved, it should no longer be expire
1117 * automatically */
55e700b9 1118 list_del_init(&old_nd.mnt->mnt_expire);
1da177e4
LT
1119 spin_unlock(&vfsmount_lock);
1120out1:
1b1dcc1b 1121 mutex_unlock(&nd->dentry->d_inode->i_mutex);
1da177e4 1122out:
390c6843 1123 up_write(&namespace_sem);
1da177e4
LT
1124 if (!err)
1125 path_release(&parent_nd);
1126 path_release(&old_nd);
1127 return err;
1128}
1129
1130/*
1131 * create a new mount for userspace and request it to be added into the
1132 * namespace's tree
2dafe1c4 1133 * noinline this do_mount helper to save do_mount stack space.
1da177e4 1134 */
2dafe1c4 1135static noinline int do_new_mount(struct nameidata *nd, char *type, int flags,
1da177e4
LT
1136 int mnt_flags, char *name, void *data)
1137{
1138 struct vfsmount *mnt;
1139
1140 if (!type || !memchr(type, 0, PAGE_SIZE))
1141 return -EINVAL;
1142
1143 /* we need capabilities... */
1144 if (!capable(CAP_SYS_ADMIN))
1145 return -EPERM;
1146
1147 mnt = do_kern_mount(type, flags, name, data);
1148 if (IS_ERR(mnt))
1149 return PTR_ERR(mnt);
1150
1151 return do_add_mount(mnt, nd, mnt_flags, NULL);
1152}
1153
1154/*
1155 * add a mount into a namespace's mount tree
1156 * - provide the option of adding the new mount to an expiration list
1157 */
1158int do_add_mount(struct vfsmount *newmnt, struct nameidata *nd,
1159 int mnt_flags, struct list_head *fslist)
1160{
1161 int err;
1162
390c6843 1163 down_write(&namespace_sem);
1da177e4 1164 /* Something was mounted here while we slept */
b58fed8b 1165 while (d_mountpoint(nd->dentry) && follow_down(&nd->mnt, &nd->dentry))
1da177e4
LT
1166 ;
1167 err = -EINVAL;
1168 if (!check_mnt(nd->mnt))
1169 goto unlock;
1170
1171 /* Refuse the same filesystem on the same mount point */
1172 err = -EBUSY;
1173 if (nd->mnt->mnt_sb == newmnt->mnt_sb &&
1174 nd->mnt->mnt_root == nd->dentry)
1175 goto unlock;
1176
1177 err = -EINVAL;
1178 if (S_ISLNK(newmnt->mnt_root->d_inode->i_mode))
1179 goto unlock;
1180
1181 newmnt->mnt_flags = mnt_flags;
5b83d2c5
RP
1182 if ((err = graft_tree(newmnt, nd)))
1183 goto unlock;
1da177e4 1184
5b83d2c5 1185 if (fslist) {
1da177e4
LT
1186 /* add to the specified expiration list */
1187 spin_lock(&vfsmount_lock);
55e700b9 1188 list_add_tail(&newmnt->mnt_expire, fslist);
1da177e4
LT
1189 spin_unlock(&vfsmount_lock);
1190 }
390c6843 1191 up_write(&namespace_sem);
5b83d2c5 1192 return 0;
1da177e4
LT
1193
1194unlock:
390c6843 1195 up_write(&namespace_sem);
1da177e4
LT
1196 mntput(newmnt);
1197 return err;
1198}
1199
1200EXPORT_SYMBOL_GPL(do_add_mount);
1201
70fbcdf4
RP
1202static void expire_mount(struct vfsmount *mnt, struct list_head *mounts,
1203 struct list_head *umounts)
24ca2af1
MS
1204{
1205 spin_lock(&vfsmount_lock);
1206
ed42c879
MS
1207 /*
1208 * Check if mount is still attached, if not, let whoever holds it deal
1209 * with the sucker
1210 */
1211 if (mnt->mnt_parent == mnt) {
1212 spin_unlock(&vfsmount_lock);
1213 return;
1214 }
1215
24ca2af1
MS
1216 /*
1217 * Check that it is still dead: the count should now be 2 - as
1218 * contributed by the vfsmount parent and the mntget above
1219 */
a05964f3 1220 if (!propagate_mount_busy(mnt, 2)) {
24ca2af1 1221 /* delete from the namespace */
6b3286ed 1222 touch_mnt_namespace(mnt->mnt_ns);
24ca2af1 1223 list_del_init(&mnt->mnt_list);
6b3286ed 1224 mnt->mnt_ns = NULL;
a05964f3 1225 umount_tree(mnt, 1, umounts);
24ca2af1 1226 spin_unlock(&vfsmount_lock);
24ca2af1
MS
1227 } else {
1228 /*
1229 * Someone brought it back to life whilst we didn't have any
1230 * locks held so return it to the expiration list
1231 */
55e700b9 1232 list_add_tail(&mnt->mnt_expire, mounts);
24ca2af1
MS
1233 spin_unlock(&vfsmount_lock);
1234 }
1235}
1236
5528f911
TM
1237/*
1238 * go through the vfsmounts we've just consigned to the graveyard to
1239 * - check that they're still dead
1240 * - delete the vfsmount from the appropriate namespace under lock
1241 * - dispose of the corpse
1242 */
1243static void expire_mount_list(struct list_head *graveyard, struct list_head *mounts)
1244{
6b3286ed 1245 struct mnt_namespace *ns;
5528f911
TM
1246 struct vfsmount *mnt;
1247
1248 while (!list_empty(graveyard)) {
1249 LIST_HEAD(umounts);
b5e61818 1250 mnt = list_first_entry(graveyard, struct vfsmount, mnt_expire);
5528f911
TM
1251 list_del_init(&mnt->mnt_expire);
1252
1253 /* don't do anything if the namespace is dead - all the
1254 * vfsmounts from it are going away anyway */
6b3286ed
KK
1255 ns = mnt->mnt_ns;
1256 if (!ns || !ns->root)
5528f911 1257 continue;
6b3286ed 1258 get_mnt_ns(ns);
5528f911
TM
1259
1260 spin_unlock(&vfsmount_lock);
1261 down_write(&namespace_sem);
1262 expire_mount(mnt, mounts, &umounts);
1263 up_write(&namespace_sem);
1264 release_mounts(&umounts);
1265 mntput(mnt);
6b3286ed 1266 put_mnt_ns(ns);
5528f911
TM
1267 spin_lock(&vfsmount_lock);
1268 }
1269}
1270
1da177e4
LT
1271/*
1272 * process a list of expirable mountpoints with the intent of discarding any
1273 * mountpoints that aren't in use and haven't been touched since last we came
1274 * here
1275 */
1276void mark_mounts_for_expiry(struct list_head *mounts)
1277{
1da177e4
LT
1278 struct vfsmount *mnt, *next;
1279 LIST_HEAD(graveyard);
1280
1281 if (list_empty(mounts))
1282 return;
1283
1284 spin_lock(&vfsmount_lock);
1285
1286 /* extract from the expiration list every vfsmount that matches the
1287 * following criteria:
1288 * - only referenced by its parent vfsmount
1289 * - still marked for expiry (marked on the last call here; marks are
1290 * cleared by mntput())
1291 */
55e700b9 1292 list_for_each_entry_safe(mnt, next, mounts, mnt_expire) {
1da177e4
LT
1293 if (!xchg(&mnt->mnt_expiry_mark, 1) ||
1294 atomic_read(&mnt->mnt_count) != 1)
1295 continue;
1296
1297 mntget(mnt);
55e700b9 1298 list_move(&mnt->mnt_expire, &graveyard);
1da177e4
LT
1299 }
1300
5528f911 1301 expire_mount_list(&graveyard, mounts);
1da177e4 1302
5528f911
TM
1303 spin_unlock(&vfsmount_lock);
1304}
1305
1306EXPORT_SYMBOL_GPL(mark_mounts_for_expiry);
1307
1308/*
1309 * Ripoff of 'select_parent()'
1310 *
1311 * search the list of submounts for a given mountpoint, and move any
1312 * shrinkable submounts to the 'graveyard' list.
1313 */
1314static int select_submounts(struct vfsmount *parent, struct list_head *graveyard)
1315{
1316 struct vfsmount *this_parent = parent;
1317 struct list_head *next;
1318 int found = 0;
1319
1320repeat:
1321 next = this_parent->mnt_mounts.next;
1322resume:
1323 while (next != &this_parent->mnt_mounts) {
1324 struct list_head *tmp = next;
1325 struct vfsmount *mnt = list_entry(tmp, struct vfsmount, mnt_child);
1326
1327 next = tmp->next;
1328 if (!(mnt->mnt_flags & MNT_SHRINKABLE))
1da177e4 1329 continue;
5528f911
TM
1330 /*
1331 * Descend a level if the d_mounts list is non-empty.
1332 */
1333 if (!list_empty(&mnt->mnt_mounts)) {
1334 this_parent = mnt;
1335 goto repeat;
1336 }
1da177e4 1337
5528f911
TM
1338 if (!propagate_mount_busy(mnt, 1)) {
1339 mntget(mnt);
1340 list_move_tail(&mnt->mnt_expire, graveyard);
1341 found++;
1342 }
1da177e4 1343 }
5528f911
TM
1344 /*
1345 * All done at this level ... ascend and resume the search
1346 */
1347 if (this_parent != parent) {
1348 next = this_parent->mnt_child.next;
1349 this_parent = this_parent->mnt_parent;
1350 goto resume;
1351 }
1352 return found;
1353}
1354
1355/*
1356 * process a list of expirable mountpoints with the intent of discarding any
1357 * submounts of a specific parent mountpoint
1358 */
1359void shrink_submounts(struct vfsmount *mountpoint, struct list_head *mounts)
1360{
1361 LIST_HEAD(graveyard);
1362 int found;
1363
1364 spin_lock(&vfsmount_lock);
1365
1366 /* extract submounts of 'mountpoint' from the expiration list */
1367 while ((found = select_submounts(mountpoint, &graveyard)) != 0)
1368 expire_mount_list(&graveyard, mounts);
1da177e4
LT
1369
1370 spin_unlock(&vfsmount_lock);
1371}
1372
5528f911 1373EXPORT_SYMBOL_GPL(shrink_submounts);
1da177e4
LT
1374
1375/*
1376 * Some copy_from_user() implementations do not return the exact number of
1377 * bytes remaining to copy on a fault. But copy_mount_options() requires that.
1378 * Note that this function differs from copy_from_user() in that it will oops
1379 * on bad values of `to', rather than returning a short copy.
1380 */
b58fed8b
RP
1381static long exact_copy_from_user(void *to, const void __user * from,
1382 unsigned long n)
1da177e4
LT
1383{
1384 char *t = to;
1385 const char __user *f = from;
1386 char c;
1387
1388 if (!access_ok(VERIFY_READ, from, n))
1389 return n;
1390
1391 while (n) {
1392 if (__get_user(c, f)) {
1393 memset(t, 0, n);
1394 break;
1395 }
1396 *t++ = c;
1397 f++;
1398 n--;
1399 }
1400 return n;
1401}
1402
b58fed8b 1403int copy_mount_options(const void __user * data, unsigned long *where)
1da177e4
LT
1404{
1405 int i;
1406 unsigned long page;
1407 unsigned long size;
b58fed8b 1408
1da177e4
LT
1409 *where = 0;
1410 if (!data)
1411 return 0;
1412
1413 if (!(page = __get_free_page(GFP_KERNEL)))
1414 return -ENOMEM;
1415
1416 /* We only care that *some* data at the address the user
1417 * gave us is valid. Just in case, we'll zero
1418 * the remainder of the page.
1419 */
1420 /* copy_from_user cannot cross TASK_SIZE ! */
1421 size = TASK_SIZE - (unsigned long)data;
1422 if (size > PAGE_SIZE)
1423 size = PAGE_SIZE;
1424
1425 i = size - exact_copy_from_user((void *)page, data, size);
1426 if (!i) {
b58fed8b 1427 free_page(page);
1da177e4
LT
1428 return -EFAULT;
1429 }
1430 if (i != PAGE_SIZE)
1431 memset((char *)page + i, 0, PAGE_SIZE - i);
1432 *where = page;
1433 return 0;
1434}
1435
1436/*
1437 * Flags is a 32-bit value that allows up to 31 non-fs dependent flags to
1438 * be given to the mount() call (ie: read-only, no-dev, no-suid etc).
1439 *
1440 * data is a (void *) that can point to any structure up to
1441 * PAGE_SIZE-1 bytes, which can contain arbitrary fs-dependent
1442 * information (or be NULL).
1443 *
1444 * Pre-0.97 versions of mount() didn't have a flags word.
1445 * When the flags word was introduced its top half was required
1446 * to have the magic value 0xC0ED, and this remained so until 2.4.0-test9.
1447 * Therefore, if this magic number is present, it carries no information
1448 * and must be discarded.
1449 */
b58fed8b 1450long do_mount(char *dev_name, char *dir_name, char *type_page,
1da177e4
LT
1451 unsigned long flags, void *data_page)
1452{
1453 struct nameidata nd;
1454 int retval = 0;
1455 int mnt_flags = 0;
1456
1457 /* Discard magic */
1458 if ((flags & MS_MGC_MSK) == MS_MGC_VAL)
1459 flags &= ~MS_MGC_MSK;
1460
1461 /* Basic sanity checks */
1462
1463 if (!dir_name || !*dir_name || !memchr(dir_name, 0, PAGE_SIZE))
1464 return -EINVAL;
1465 if (dev_name && !memchr(dev_name, 0, PAGE_SIZE))
1466 return -EINVAL;
1467
1468 if (data_page)
1469 ((char *)data_page)[PAGE_SIZE - 1] = 0;
1470
1471 /* Separate the per-mountpoint flags */
1472 if (flags & MS_NOSUID)
1473 mnt_flags |= MNT_NOSUID;
1474 if (flags & MS_NODEV)
1475 mnt_flags |= MNT_NODEV;
1476 if (flags & MS_NOEXEC)
1477 mnt_flags |= MNT_NOEXEC;
fc33a7bb
CH
1478 if (flags & MS_NOATIME)
1479 mnt_flags |= MNT_NOATIME;
1480 if (flags & MS_NODIRATIME)
1481 mnt_flags |= MNT_NODIRATIME;
47ae32d6
VH
1482 if (flags & MS_RELATIME)
1483 mnt_flags |= MNT_RELATIME;
fc33a7bb
CH
1484
1485 flags &= ~(MS_NOSUID | MS_NOEXEC | MS_NODEV | MS_ACTIVE |
8bf9725c 1486 MS_NOATIME | MS_NODIRATIME | MS_RELATIME| MS_KERNMOUNT);
1da177e4
LT
1487
1488 /* ... and get the mountpoint */
1489 retval = path_lookup(dir_name, LOOKUP_FOLLOW, &nd);
1490 if (retval)
1491 return retval;
1492
1493 retval = security_sb_mount(dev_name, &nd, type_page, flags, data_page);
1494 if (retval)
1495 goto dput_out;
1496
1497 if (flags & MS_REMOUNT)
1498 retval = do_remount(&nd, flags & ~MS_REMOUNT, mnt_flags,
1499 data_page);
1500 else if (flags & MS_BIND)
eee391a6 1501 retval = do_loopback(&nd, dev_name, flags & MS_REC);
9676f0c6 1502 else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
07b20889 1503 retval = do_change_type(&nd, flags);
1da177e4
LT
1504 else if (flags & MS_MOVE)
1505 retval = do_move_mount(&nd, dev_name);
1506 else
1507 retval = do_new_mount(&nd, type_page, flags, mnt_flags,
1508 dev_name, data_page);
1509dput_out:
1510 path_release(&nd);
1511 return retval;
1512}
1513
741a2951
JD
1514/*
1515 * Allocate a new namespace structure and populate it with contents
1516 * copied from the namespace of the passed in task structure.
1517 */
e3222c4e 1518static struct mnt_namespace *dup_mnt_ns(struct mnt_namespace *mnt_ns,
6b3286ed 1519 struct fs_struct *fs)
1da177e4 1520{
6b3286ed 1521 struct mnt_namespace *new_ns;
1da177e4 1522 struct vfsmount *rootmnt = NULL, *pwdmnt = NULL, *altrootmnt = NULL;
1da177e4
LT
1523 struct vfsmount *p, *q;
1524
6b3286ed 1525 new_ns = kmalloc(sizeof(struct mnt_namespace), GFP_KERNEL);
1da177e4 1526 if (!new_ns)
467e9f4b 1527 return ERR_PTR(-ENOMEM);
1da177e4
LT
1528
1529 atomic_set(&new_ns->count, 1);
1da177e4 1530 INIT_LIST_HEAD(&new_ns->list);
5addc5dd
AV
1531 init_waitqueue_head(&new_ns->poll);
1532 new_ns->event = 0;
1da177e4 1533
390c6843 1534 down_write(&namespace_sem);
1da177e4 1535 /* First pass: copy the tree topology */
6b3286ed 1536 new_ns->root = copy_tree(mnt_ns->root, mnt_ns->root->mnt_root,
9676f0c6 1537 CL_COPY_ALL | CL_EXPIRE);
1da177e4 1538 if (!new_ns->root) {
390c6843 1539 up_write(&namespace_sem);
1da177e4 1540 kfree(new_ns);
467e9f4b 1541 return ERR_PTR(-ENOMEM);;
1da177e4
LT
1542 }
1543 spin_lock(&vfsmount_lock);
1544 list_add_tail(&new_ns->list, &new_ns->root->mnt_list);
1545 spin_unlock(&vfsmount_lock);
1546
1547 /*
1548 * Second pass: switch the tsk->fs->* elements and mark new vfsmounts
1549 * as belonging to new namespace. We have already acquired a private
1550 * fs_struct, so tsk->fs->lock is not needed.
1551 */
6b3286ed 1552 p = mnt_ns->root;
1da177e4
LT
1553 q = new_ns->root;
1554 while (p) {
6b3286ed 1555 q->mnt_ns = new_ns;
1da177e4
LT
1556 if (fs) {
1557 if (p == fs->rootmnt) {
1558 rootmnt = p;
1559 fs->rootmnt = mntget(q);
1560 }
1561 if (p == fs->pwdmnt) {
1562 pwdmnt = p;
1563 fs->pwdmnt = mntget(q);
1564 }
1565 if (p == fs->altrootmnt) {
1566 altrootmnt = p;
1567 fs->altrootmnt = mntget(q);
1568 }
1569 }
6b3286ed 1570 p = next_mnt(p, mnt_ns->root);
1da177e4
LT
1571 q = next_mnt(q, new_ns->root);
1572 }
390c6843 1573 up_write(&namespace_sem);
1da177e4 1574
1da177e4
LT
1575 if (rootmnt)
1576 mntput(rootmnt);
1577 if (pwdmnt)
1578 mntput(pwdmnt);
1579 if (altrootmnt)
1580 mntput(altrootmnt);
1581
741a2951
JD
1582 return new_ns;
1583}
1584
213dd266 1585struct mnt_namespace *copy_mnt_ns(unsigned long flags, struct mnt_namespace *ns,
e3222c4e 1586 struct fs_struct *new_fs)
741a2951 1587{
6b3286ed 1588 struct mnt_namespace *new_ns;
741a2951 1589
e3222c4e 1590 BUG_ON(!ns);
6b3286ed 1591 get_mnt_ns(ns);
741a2951
JD
1592
1593 if (!(flags & CLONE_NEWNS))
e3222c4e 1594 return ns;
741a2951 1595
e3222c4e 1596 new_ns = dup_mnt_ns(ns, new_fs);
741a2951 1597
6b3286ed 1598 put_mnt_ns(ns);
e3222c4e 1599 return new_ns;
1da177e4
LT
1600}
1601
1602asmlinkage long sys_mount(char __user * dev_name, char __user * dir_name,
1603 char __user * type, unsigned long flags,
1604 void __user * data)
1605{
1606 int retval;
1607 unsigned long data_page;
1608 unsigned long type_page;
1609 unsigned long dev_page;
1610 char *dir_page;
1611
b58fed8b 1612 retval = copy_mount_options(type, &type_page);
1da177e4
LT
1613 if (retval < 0)
1614 return retval;
1615
1616 dir_page = getname(dir_name);
1617 retval = PTR_ERR(dir_page);
1618 if (IS_ERR(dir_page))
1619 goto out1;
1620
b58fed8b 1621 retval = copy_mount_options(dev_name, &dev_page);
1da177e4
LT
1622 if (retval < 0)
1623 goto out2;
1624
b58fed8b 1625 retval = copy_mount_options(data, &data_page);
1da177e4
LT
1626 if (retval < 0)
1627 goto out3;
1628
1629 lock_kernel();
b58fed8b
RP
1630 retval = do_mount((char *)dev_page, dir_page, (char *)type_page,
1631 flags, (void *)data_page);
1da177e4
LT
1632 unlock_kernel();
1633 free_page(data_page);
1634
1635out3:
1636 free_page(dev_page);
1637out2:
1638 putname(dir_page);
1639out1:
1640 free_page(type_page);
1641 return retval;
1642}
1643
1644/*
1645 * Replace the fs->{rootmnt,root} with {mnt,dentry}. Put the old values.
1646 * It can block. Requires the big lock held.
1647 */
1648void set_fs_root(struct fs_struct *fs, struct vfsmount *mnt,
1649 struct dentry *dentry)
1650{
1651 struct dentry *old_root;
1652 struct vfsmount *old_rootmnt;
1653 write_lock(&fs->lock);
1654 old_root = fs->root;
1655 old_rootmnt = fs->rootmnt;
1656 fs->rootmnt = mntget(mnt);
1657 fs->root = dget(dentry);
1658 write_unlock(&fs->lock);
1659 if (old_root) {
1660 dput(old_root);
1661 mntput(old_rootmnt);
1662 }
1663}
1664
1665/*
1666 * Replace the fs->{pwdmnt,pwd} with {mnt,dentry}. Put the old values.
1667 * It can block. Requires the big lock held.
1668 */
1669void set_fs_pwd(struct fs_struct *fs, struct vfsmount *mnt,
1670 struct dentry *dentry)
1671{
1672 struct dentry *old_pwd;
1673 struct vfsmount *old_pwdmnt;
1674
1675 write_lock(&fs->lock);
1676 old_pwd = fs->pwd;
1677 old_pwdmnt = fs->pwdmnt;
1678 fs->pwdmnt = mntget(mnt);
1679 fs->pwd = dget(dentry);
1680 write_unlock(&fs->lock);
1681
1682 if (old_pwd) {
1683 dput(old_pwd);
1684 mntput(old_pwdmnt);
1685 }
1686}
1687
1688static void chroot_fs_refs(struct nameidata *old_nd, struct nameidata *new_nd)
1689{
1690 struct task_struct *g, *p;
1691 struct fs_struct *fs;
1692
1693 read_lock(&tasklist_lock);
1694 do_each_thread(g, p) {
1695 task_lock(p);
1696 fs = p->fs;
1697 if (fs) {
1698 atomic_inc(&fs->count);
1699 task_unlock(p);
b58fed8b
RP
1700 if (fs->root == old_nd->dentry
1701 && fs->rootmnt == old_nd->mnt)
1da177e4 1702 set_fs_root(fs, new_nd->mnt, new_nd->dentry);
b58fed8b
RP
1703 if (fs->pwd == old_nd->dentry
1704 && fs->pwdmnt == old_nd->mnt)
1da177e4
LT
1705 set_fs_pwd(fs, new_nd->mnt, new_nd->dentry);
1706 put_fs_struct(fs);
1707 } else
1708 task_unlock(p);
1709 } while_each_thread(g, p);
1710 read_unlock(&tasklist_lock);
1711}
1712
1713/*
1714 * pivot_root Semantics:
1715 * Moves the root file system of the current process to the directory put_old,
1716 * makes new_root as the new root file system of the current process, and sets
1717 * root/cwd of all processes which had them on the current root to new_root.
1718 *
1719 * Restrictions:
1720 * The new_root and put_old must be directories, and must not be on the
1721 * same file system as the current process root. The put_old must be
1722 * underneath new_root, i.e. adding a non-zero number of /.. to the string
1723 * pointed to by put_old must yield the same directory as new_root. No other
1724 * file system may be mounted on put_old. After all, new_root is a mountpoint.
1725 *
4a0d11fa
NB
1726 * Also, the current root cannot be on the 'rootfs' (initial ramfs) filesystem.
1727 * See Documentation/filesystems/ramfs-rootfs-initramfs.txt for alternatives
1728 * in this situation.
1729 *
1da177e4
LT
1730 * Notes:
1731 * - we don't move root/cwd if they are not at the root (reason: if something
1732 * cared enough to change them, it's probably wrong to force them elsewhere)
1733 * - it's okay to pick a root that isn't the root of a file system, e.g.
1734 * /nfs/my_root where /nfs is the mount point. It must be a mountpoint,
1735 * though, so you may need to say mount --bind /nfs/my_root /nfs/my_root
1736 * first.
1737 */
b58fed8b
RP
1738asmlinkage long sys_pivot_root(const char __user * new_root,
1739 const char __user * put_old)
1da177e4
LT
1740{
1741 struct vfsmount *tmp;
1742 struct nameidata new_nd, old_nd, parent_nd, root_parent, user_nd;
1743 int error;
1744
1745 if (!capable(CAP_SYS_ADMIN))
1746 return -EPERM;
1747
1748 lock_kernel();
1749
b58fed8b
RP
1750 error = __user_walk(new_root, LOOKUP_FOLLOW | LOOKUP_DIRECTORY,
1751 &new_nd);
1da177e4
LT
1752 if (error)
1753 goto out0;
1754 error = -EINVAL;
1755 if (!check_mnt(new_nd.mnt))
1756 goto out1;
1757
b58fed8b 1758 error = __user_walk(put_old, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, &old_nd);
1da177e4
LT
1759 if (error)
1760 goto out1;
1761
1762 error = security_sb_pivotroot(&old_nd, &new_nd);
1763 if (error) {
1764 path_release(&old_nd);
1765 goto out1;
1766 }
1767
1768 read_lock(&current->fs->lock);
1769 user_nd.mnt = mntget(current->fs->rootmnt);
1770 user_nd.dentry = dget(current->fs->root);
1771 read_unlock(&current->fs->lock);
390c6843 1772 down_write(&namespace_sem);
1b1dcc1b 1773 mutex_lock(&old_nd.dentry->d_inode->i_mutex);
1da177e4 1774 error = -EINVAL;
21444403
RP
1775 if (IS_MNT_SHARED(old_nd.mnt) ||
1776 IS_MNT_SHARED(new_nd.mnt->mnt_parent) ||
1777 IS_MNT_SHARED(user_nd.mnt->mnt_parent))
1778 goto out2;
1da177e4
LT
1779 if (!check_mnt(user_nd.mnt))
1780 goto out2;
1781 error = -ENOENT;
1782 if (IS_DEADDIR(new_nd.dentry->d_inode))
1783 goto out2;
1784 if (d_unhashed(new_nd.dentry) && !IS_ROOT(new_nd.dentry))
1785 goto out2;
1786 if (d_unhashed(old_nd.dentry) && !IS_ROOT(old_nd.dentry))
1787 goto out2;
1788 error = -EBUSY;
1789 if (new_nd.mnt == user_nd.mnt || old_nd.mnt == user_nd.mnt)
1790 goto out2; /* loop, on the same file system */
1791 error = -EINVAL;
1792 if (user_nd.mnt->mnt_root != user_nd.dentry)
1793 goto out2; /* not a mountpoint */
0bb6fcc1
MS
1794 if (user_nd.mnt->mnt_parent == user_nd.mnt)
1795 goto out2; /* not attached */
1da177e4
LT
1796 if (new_nd.mnt->mnt_root != new_nd.dentry)
1797 goto out2; /* not a mountpoint */
0bb6fcc1
MS
1798 if (new_nd.mnt->mnt_parent == new_nd.mnt)
1799 goto out2; /* not attached */
1da177e4
LT
1800 tmp = old_nd.mnt; /* make sure we can reach put_old from new_root */
1801 spin_lock(&vfsmount_lock);
1802 if (tmp != new_nd.mnt) {
1803 for (;;) {
1804 if (tmp->mnt_parent == tmp)
1805 goto out3; /* already mounted on put_old */
1806 if (tmp->mnt_parent == new_nd.mnt)
1807 break;
1808 tmp = tmp->mnt_parent;
1809 }
1810 if (!is_subdir(tmp->mnt_mountpoint, new_nd.dentry))
1811 goto out3;
1812 } else if (!is_subdir(old_nd.dentry, new_nd.dentry))
1813 goto out3;
1814 detach_mnt(new_nd.mnt, &parent_nd);
1815 detach_mnt(user_nd.mnt, &root_parent);
1816 attach_mnt(user_nd.mnt, &old_nd); /* mount old root on put_old */
1817 attach_mnt(new_nd.mnt, &root_parent); /* mount new_root on / */
6b3286ed 1818 touch_mnt_namespace(current->nsproxy->mnt_ns);
1da177e4
LT
1819 spin_unlock(&vfsmount_lock);
1820 chroot_fs_refs(&user_nd, &new_nd);
1821 security_sb_post_pivotroot(&user_nd, &new_nd);
1822 error = 0;
1823 path_release(&root_parent);
1824 path_release(&parent_nd);
1825out2:
1b1dcc1b 1826 mutex_unlock(&old_nd.dentry->d_inode->i_mutex);
390c6843 1827 up_write(&namespace_sem);
1da177e4
LT
1828 path_release(&user_nd);
1829 path_release(&old_nd);
1830out1:
1831 path_release(&new_nd);
1832out0:
1833 unlock_kernel();
1834 return error;
1835out3:
1836 spin_unlock(&vfsmount_lock);
1837 goto out2;
1838}
1839
1840static void __init init_mount_tree(void)
1841{
1842 struct vfsmount *mnt;
6b3286ed 1843 struct mnt_namespace *ns;
1da177e4
LT
1844
1845 mnt = do_kern_mount("rootfs", 0, "rootfs", NULL);
1846 if (IS_ERR(mnt))
1847 panic("Can't create rootfs");
6b3286ed
KK
1848 ns = kmalloc(sizeof(*ns), GFP_KERNEL);
1849 if (!ns)
1da177e4 1850 panic("Can't allocate initial namespace");
6b3286ed
KK
1851 atomic_set(&ns->count, 1);
1852 INIT_LIST_HEAD(&ns->list);
1853 init_waitqueue_head(&ns->poll);
1854 ns->event = 0;
1855 list_add(&mnt->mnt_list, &ns->list);
1856 ns->root = mnt;
1857 mnt->mnt_ns = ns;
1858
1859 init_task.nsproxy->mnt_ns = ns;
1860 get_mnt_ns(ns);
1861
1862 set_fs_pwd(current->fs, ns->root, ns->root->mnt_root);
1863 set_fs_root(current->fs, ns->root, ns->root->mnt_root);
1da177e4
LT
1864}
1865
74bf17cf 1866void __init mnt_init(void)
1da177e4 1867{
13f14b4d 1868 unsigned u;
15a67dd8 1869 int err;
1da177e4 1870
390c6843
RP
1871 init_rwsem(&namespace_sem);
1872
1da177e4 1873 mnt_cache = kmem_cache_create("mnt_cache", sizeof(struct vfsmount),
20c2df83 1874 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
1da177e4 1875
b58fed8b 1876 mount_hashtable = (struct list_head *)__get_free_page(GFP_ATOMIC);
1da177e4
LT
1877
1878 if (!mount_hashtable)
1879 panic("Failed to allocate mount hash table\n");
1880
13f14b4d
ED
1881 printk("Mount-cache hash table entries: %lu\n", HASH_SIZE);
1882
1883 for (u = 0; u < HASH_SIZE; u++)
1884 INIT_LIST_HEAD(&mount_hashtable[u]);
1da177e4 1885
15a67dd8
RD
1886 err = sysfs_init();
1887 if (err)
1888 printk(KERN_WARNING "%s: sysfs_init error: %d\n",
1889 __FUNCTION__, err);
00d26666
GKH
1890 fs_kobj = kobject_create_and_add("fs", NULL);
1891 if (!fs_kobj)
1892 printk(KERN_WARNING "%s: kobj create error\n", __FUNCTION__);
1da177e4
LT
1893 init_rootfs();
1894 init_mount_tree();
1895}
1896
6b3286ed 1897void __put_mnt_ns(struct mnt_namespace *ns)
1da177e4 1898{
6b3286ed 1899 struct vfsmount *root = ns->root;
70fbcdf4 1900 LIST_HEAD(umount_list);
6b3286ed 1901 ns->root = NULL;
1ce88cf4 1902 spin_unlock(&vfsmount_lock);
390c6843 1903 down_write(&namespace_sem);
1da177e4 1904 spin_lock(&vfsmount_lock);
a05964f3 1905 umount_tree(root, 0, &umount_list);
1da177e4 1906 spin_unlock(&vfsmount_lock);
390c6843 1907 up_write(&namespace_sem);
70fbcdf4 1908 release_mounts(&umount_list);
6b3286ed 1909 kfree(ns);
1da177e4 1910}