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