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