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