]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - fs/namespace.c
pwm: imx: indentation cleanup
[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 DECLARE_RWSEM(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                 touch_mnt_namespace(mnt->mnt_ns);
1883                 br_write_unlock(&vfsmount_lock);
1884         }
1885         up_write(&sb->s_umount);
1886         return err;
1887 }
1888
1889 static inline int tree_contains_unbindable(struct mount *mnt)
1890 {
1891         struct mount *p;
1892         for (p = mnt; p; p = next_mnt(p, mnt)) {
1893                 if (IS_MNT_UNBINDABLE(p))
1894                         return 1;
1895         }
1896         return 0;
1897 }
1898
1899 static int do_move_mount(struct path *path, const char *old_name)
1900 {
1901         struct path old_path, parent_path;
1902         struct mount *p;
1903         struct mount *old;
1904         struct mountpoint *mp;
1905         int err;
1906         if (!old_name || !*old_name)
1907                 return -EINVAL;
1908         err = kern_path(old_name, LOOKUP_FOLLOW, &old_path);
1909         if (err)
1910                 return err;
1911
1912         mp = lock_mount(path);
1913         err = PTR_ERR(mp);
1914         if (IS_ERR(mp))
1915                 goto out;
1916
1917         old = real_mount(old_path.mnt);
1918         p = real_mount(path->mnt);
1919
1920         err = -EINVAL;
1921         if (!check_mnt(p) || !check_mnt(old))
1922                 goto out1;
1923
1924         if (old->mnt.mnt_flags & MNT_LOCKED)
1925                 goto out1;
1926
1927         err = -EINVAL;
1928         if (old_path.dentry != old_path.mnt->mnt_root)
1929                 goto out1;
1930
1931         if (!mnt_has_parent(old))
1932                 goto out1;
1933
1934         if (S_ISDIR(path->dentry->d_inode->i_mode) !=
1935               S_ISDIR(old_path.dentry->d_inode->i_mode))
1936                 goto out1;
1937         /*
1938          * Don't move a mount residing in a shared parent.
1939          */
1940         if (IS_MNT_SHARED(old->mnt_parent))
1941                 goto out1;
1942         /*
1943          * Don't move a mount tree containing unbindable mounts to a destination
1944          * mount which is shared.
1945          */
1946         if (IS_MNT_SHARED(p) && tree_contains_unbindable(old))
1947                 goto out1;
1948         err = -ELOOP;
1949         for (; mnt_has_parent(p); p = p->mnt_parent)
1950                 if (p == old)
1951                         goto out1;
1952
1953         err = attach_recursive_mnt(old, real_mount(path->mnt), mp, &parent_path);
1954         if (err)
1955                 goto out1;
1956
1957         /* if the mount is moved, it should no longer be expire
1958          * automatically */
1959         list_del_init(&old->mnt_expire);
1960 out1:
1961         unlock_mount(mp);
1962 out:
1963         if (!err)
1964                 path_put(&parent_path);
1965         path_put(&old_path);
1966         return err;
1967 }
1968
1969 static struct vfsmount *fs_set_subtype(struct vfsmount *mnt, const char *fstype)
1970 {
1971         int err;
1972         const char *subtype = strchr(fstype, '.');
1973         if (subtype) {
1974                 subtype++;
1975                 err = -EINVAL;
1976                 if (!subtype[0])
1977                         goto err;
1978         } else
1979                 subtype = "";
1980
1981         mnt->mnt_sb->s_subtype = kstrdup(subtype, GFP_KERNEL);
1982         err = -ENOMEM;
1983         if (!mnt->mnt_sb->s_subtype)
1984                 goto err;
1985         return mnt;
1986
1987  err:
1988         mntput(mnt);
1989         return ERR_PTR(err);
1990 }
1991
1992 /*
1993  * add a mount into a namespace's mount tree
1994  */
1995 static int do_add_mount(struct mount *newmnt, struct path *path, int mnt_flags)
1996 {
1997         struct mountpoint *mp;
1998         struct mount *parent;
1999         int err;
2000
2001         mnt_flags &= ~(MNT_SHARED | MNT_WRITE_HOLD | MNT_INTERNAL);
2002
2003         mp = lock_mount(path);
2004         if (IS_ERR(mp))
2005                 return PTR_ERR(mp);
2006
2007         parent = real_mount(path->mnt);
2008         err = -EINVAL;
2009         if (unlikely(!check_mnt(parent))) {
2010                 /* that's acceptable only for automounts done in private ns */
2011                 if (!(mnt_flags & MNT_SHRINKABLE))
2012                         goto unlock;
2013                 /* ... and for those we'd better have mountpoint still alive */
2014                 if (!parent->mnt_ns)
2015                         goto unlock;
2016         }
2017
2018         /* Refuse the same filesystem on the same mount point */
2019         err = -EBUSY;
2020         if (path->mnt->mnt_sb == newmnt->mnt.mnt_sb &&
2021             path->mnt->mnt_root == path->dentry)
2022                 goto unlock;
2023
2024         err = -EINVAL;
2025         if (S_ISLNK(newmnt->mnt.mnt_root->d_inode->i_mode))
2026                 goto unlock;
2027
2028         newmnt->mnt.mnt_flags = mnt_flags;
2029         err = graft_tree(newmnt, parent, mp);
2030
2031 unlock:
2032         unlock_mount(mp);
2033         return err;
2034 }
2035
2036 /*
2037  * create a new mount for userspace and request it to be added into the
2038  * namespace's tree
2039  */
2040 static int do_new_mount(struct path *path, const char *fstype, int flags,
2041                         int mnt_flags, const char *name, void *data)
2042 {
2043         struct file_system_type *type;
2044         struct user_namespace *user_ns = current->nsproxy->mnt_ns->user_ns;
2045         struct vfsmount *mnt;
2046         int err;
2047
2048         if (!fstype)
2049                 return -EINVAL;
2050
2051         type = get_fs_type(fstype);
2052         if (!type)
2053                 return -ENODEV;
2054
2055         if (user_ns != &init_user_ns) {
2056                 if (!(type->fs_flags & FS_USERNS_MOUNT)) {
2057                         put_filesystem(type);
2058                         return -EPERM;
2059                 }
2060                 /* Only in special cases allow devices from mounts
2061                  * created outside the initial user namespace.
2062                  */
2063                 if (!(type->fs_flags & FS_USERNS_DEV_MOUNT)) {
2064                         flags |= MS_NODEV;
2065                         mnt_flags |= MNT_NODEV;
2066                 }
2067         }
2068
2069         mnt = vfs_kern_mount(type, flags, name, data);
2070         if (!IS_ERR(mnt) && (type->fs_flags & FS_HAS_SUBTYPE) &&
2071             !mnt->mnt_sb->s_subtype)
2072                 mnt = fs_set_subtype(mnt, fstype);
2073
2074         put_filesystem(type);
2075         if (IS_ERR(mnt))
2076                 return PTR_ERR(mnt);
2077
2078         err = do_add_mount(real_mount(mnt), path, mnt_flags);
2079         if (err)
2080                 mntput(mnt);
2081         return err;
2082 }
2083
2084 int finish_automount(struct vfsmount *m, struct path *path)
2085 {
2086         struct mount *mnt = real_mount(m);
2087         int err;
2088         /* The new mount record should have at least 2 refs to prevent it being
2089          * expired before we get a chance to add it
2090          */
2091         BUG_ON(mnt_get_count(mnt) < 2);
2092
2093         if (m->mnt_sb == path->mnt->mnt_sb &&
2094             m->mnt_root == path->dentry) {
2095                 err = -ELOOP;
2096                 goto fail;
2097         }
2098
2099         err = do_add_mount(mnt, path, path->mnt->mnt_flags | MNT_SHRINKABLE);
2100         if (!err)
2101                 return 0;
2102 fail:
2103         /* remove m from any expiration list it may be on */
2104         if (!list_empty(&mnt->mnt_expire)) {
2105                 namespace_lock();
2106                 br_write_lock(&vfsmount_lock);
2107                 list_del_init(&mnt->mnt_expire);
2108                 br_write_unlock(&vfsmount_lock);
2109                 namespace_unlock();
2110         }
2111         mntput(m);
2112         mntput(m);
2113         return err;
2114 }
2115
2116 /**
2117  * mnt_set_expiry - Put a mount on an expiration list
2118  * @mnt: The mount to list.
2119  * @expiry_list: The list to add the mount to.
2120  */
2121 void mnt_set_expiry(struct vfsmount *mnt, struct list_head *expiry_list)
2122 {
2123         namespace_lock();
2124         br_write_lock(&vfsmount_lock);
2125
2126         list_add_tail(&real_mount(mnt)->mnt_expire, expiry_list);
2127
2128         br_write_unlock(&vfsmount_lock);
2129         namespace_unlock();
2130 }
2131 EXPORT_SYMBOL(mnt_set_expiry);
2132
2133 /*
2134  * process a list of expirable mountpoints with the intent of discarding any
2135  * mountpoints that aren't in use and haven't been touched since last we came
2136  * here
2137  */
2138 void mark_mounts_for_expiry(struct list_head *mounts)
2139 {
2140         struct mount *mnt, *next;
2141         LIST_HEAD(graveyard);
2142
2143         if (list_empty(mounts))
2144                 return;
2145
2146         namespace_lock();
2147         br_write_lock(&vfsmount_lock);
2148
2149         /* extract from the expiration list every vfsmount that matches the
2150          * following criteria:
2151          * - only referenced by its parent vfsmount
2152          * - still marked for expiry (marked on the last call here; marks are
2153          *   cleared by mntput())
2154          */
2155         list_for_each_entry_safe(mnt, next, mounts, mnt_expire) {
2156                 if (!xchg(&mnt->mnt_expiry_mark, 1) ||
2157                         propagate_mount_busy(mnt, 1))
2158                         continue;
2159                 list_move(&mnt->mnt_expire, &graveyard);
2160         }
2161         while (!list_empty(&graveyard)) {
2162                 mnt = list_first_entry(&graveyard, struct mount, mnt_expire);
2163                 touch_mnt_namespace(mnt->mnt_ns);
2164                 umount_tree(mnt, 1);
2165         }
2166         br_write_unlock(&vfsmount_lock);
2167         namespace_unlock();
2168 }
2169
2170 EXPORT_SYMBOL_GPL(mark_mounts_for_expiry);
2171
2172 /*
2173  * Ripoff of 'select_parent()'
2174  *
2175  * search the list of submounts for a given mountpoint, and move any
2176  * shrinkable submounts to the 'graveyard' list.
2177  */
2178 static int select_submounts(struct mount *parent, struct list_head *graveyard)
2179 {
2180         struct mount *this_parent = parent;
2181         struct list_head *next;
2182         int found = 0;
2183
2184 repeat:
2185         next = this_parent->mnt_mounts.next;
2186 resume:
2187         while (next != &this_parent->mnt_mounts) {
2188                 struct list_head *tmp = next;
2189                 struct mount *mnt = list_entry(tmp, struct mount, mnt_child);
2190
2191                 next = tmp->next;
2192                 if (!(mnt->mnt.mnt_flags & MNT_SHRINKABLE))
2193                         continue;
2194                 /*
2195                  * Descend a level if the d_mounts list is non-empty.
2196                  */
2197                 if (!list_empty(&mnt->mnt_mounts)) {
2198                         this_parent = mnt;
2199                         goto repeat;
2200                 }
2201
2202                 if (!propagate_mount_busy(mnt, 1)) {
2203                         list_move_tail(&mnt->mnt_expire, graveyard);
2204                         found++;
2205                 }
2206         }
2207         /*
2208          * All done at this level ... ascend and resume the search
2209          */
2210         if (this_parent != parent) {
2211                 next = this_parent->mnt_child.next;
2212                 this_parent = this_parent->mnt_parent;
2213                 goto resume;
2214         }
2215         return found;
2216 }
2217
2218 /*
2219  * process a list of expirable mountpoints with the intent of discarding any
2220  * submounts of a specific parent mountpoint
2221  *
2222  * vfsmount_lock must be held for write
2223  */
2224 static void shrink_submounts(struct mount *mnt)
2225 {
2226         LIST_HEAD(graveyard);
2227         struct mount *m;
2228
2229         /* extract submounts of 'mountpoint' from the expiration list */
2230         while (select_submounts(mnt, &graveyard)) {
2231                 while (!list_empty(&graveyard)) {
2232                         m = list_first_entry(&graveyard, struct mount,
2233                                                 mnt_expire);
2234                         touch_mnt_namespace(m->mnt_ns);
2235                         umount_tree(m, 1);
2236                 }
2237         }
2238 }
2239
2240 /*
2241  * Some copy_from_user() implementations do not return the exact number of
2242  * bytes remaining to copy on a fault.  But copy_mount_options() requires that.
2243  * Note that this function differs from copy_from_user() in that it will oops
2244  * on bad values of `to', rather than returning a short copy.
2245  */
2246 static long exact_copy_from_user(void *to, const void __user * from,
2247                                  unsigned long n)
2248 {
2249         char *t = to;
2250         const char __user *f = from;
2251         char c;
2252
2253         if (!access_ok(VERIFY_READ, from, n))
2254                 return n;
2255
2256         while (n) {
2257                 if (__get_user(c, f)) {
2258                         memset(t, 0, n);
2259                         break;
2260                 }
2261                 *t++ = c;
2262                 f++;
2263                 n--;
2264         }
2265         return n;
2266 }
2267
2268 int copy_mount_options(const void __user * data, unsigned long *where)
2269 {
2270         int i;
2271         unsigned long page;
2272         unsigned long size;
2273
2274         *where = 0;
2275         if (!data)
2276                 return 0;
2277
2278         if (!(page = __get_free_page(GFP_KERNEL)))
2279                 return -ENOMEM;
2280
2281         /* We only care that *some* data at the address the user
2282          * gave us is valid.  Just in case, we'll zero
2283          * the remainder of the page.
2284          */
2285         /* copy_from_user cannot cross TASK_SIZE ! */
2286         size = TASK_SIZE - (unsigned long)data;
2287         if (size > PAGE_SIZE)
2288                 size = PAGE_SIZE;
2289
2290         i = size - exact_copy_from_user((void *)page, data, size);
2291         if (!i) {
2292                 free_page(page);
2293                 return -EFAULT;
2294         }
2295         if (i != PAGE_SIZE)
2296                 memset((char *)page + i, 0, PAGE_SIZE - i);
2297         *where = page;
2298         return 0;
2299 }
2300
2301 int copy_mount_string(const void __user *data, char **where)
2302 {
2303         char *tmp;
2304
2305         if (!data) {
2306                 *where = NULL;
2307                 return 0;
2308         }
2309
2310         tmp = strndup_user(data, PAGE_SIZE);
2311         if (IS_ERR(tmp))
2312                 return PTR_ERR(tmp);
2313
2314         *where = tmp;
2315         return 0;
2316 }
2317
2318 /*
2319  * Flags is a 32-bit value that allows up to 31 non-fs dependent flags to
2320  * be given to the mount() call (ie: read-only, no-dev, no-suid etc).
2321  *
2322  * data is a (void *) that can point to any structure up to
2323  * PAGE_SIZE-1 bytes, which can contain arbitrary fs-dependent
2324  * information (or be NULL).
2325  *
2326  * Pre-0.97 versions of mount() didn't have a flags word.
2327  * When the flags word was introduced its top half was required
2328  * to have the magic value 0xC0ED, and this remained so until 2.4.0-test9.
2329  * Therefore, if this magic number is present, it carries no information
2330  * and must be discarded.
2331  */
2332 long do_mount(const char *dev_name, const char *dir_name,
2333                 const char *type_page, unsigned long flags, void *data_page)
2334 {
2335         struct path path;
2336         int retval = 0;
2337         int mnt_flags = 0;
2338
2339         /* Discard magic */
2340         if ((flags & MS_MGC_MSK) == MS_MGC_VAL)
2341                 flags &= ~MS_MGC_MSK;
2342
2343         /* Basic sanity checks */
2344
2345         if (!dir_name || !*dir_name || !memchr(dir_name, 0, PAGE_SIZE))
2346                 return -EINVAL;
2347
2348         if (data_page)
2349                 ((char *)data_page)[PAGE_SIZE - 1] = 0;
2350
2351         /* ... and get the mountpoint */
2352         retval = kern_path(dir_name, LOOKUP_FOLLOW, &path);
2353         if (retval)
2354                 return retval;
2355
2356         retval = security_sb_mount(dev_name, &path,
2357                                    type_page, flags, data_page);
2358         if (!retval && !may_mount())
2359                 retval = -EPERM;
2360         if (retval)
2361                 goto dput_out;
2362
2363         /* Default to relatime unless overriden */
2364         if (!(flags & MS_NOATIME))
2365                 mnt_flags |= MNT_RELATIME;
2366
2367         /* Separate the per-mountpoint flags */
2368         if (flags & MS_NOSUID)
2369                 mnt_flags |= MNT_NOSUID;
2370         if (flags & MS_NODEV)
2371                 mnt_flags |= MNT_NODEV;
2372         if (flags & MS_NOEXEC)
2373                 mnt_flags |= MNT_NOEXEC;
2374         if (flags & MS_NOATIME)
2375                 mnt_flags |= MNT_NOATIME;
2376         if (flags & MS_NODIRATIME)
2377                 mnt_flags |= MNT_NODIRATIME;
2378         if (flags & MS_STRICTATIME)
2379                 mnt_flags &= ~(MNT_RELATIME | MNT_NOATIME);
2380         if (flags & MS_RDONLY)
2381                 mnt_flags |= MNT_READONLY;
2382
2383         flags &= ~(MS_NOSUID | MS_NOEXEC | MS_NODEV | MS_ACTIVE | MS_BORN |
2384                    MS_NOATIME | MS_NODIRATIME | MS_RELATIME| MS_KERNMOUNT |
2385                    MS_STRICTATIME);
2386
2387         if (flags & MS_REMOUNT)
2388                 retval = do_remount(&path, flags & ~MS_REMOUNT, mnt_flags,
2389                                     data_page);
2390         else if (flags & MS_BIND)
2391                 retval = do_loopback(&path, dev_name, flags & MS_REC);
2392         else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
2393                 retval = do_change_type(&path, flags);
2394         else if (flags & MS_MOVE)
2395                 retval = do_move_mount(&path, dev_name);
2396         else
2397                 retval = do_new_mount(&path, type_page, flags, mnt_flags,
2398                                       dev_name, data_page);
2399 dput_out:
2400         path_put(&path);
2401         return retval;
2402 }
2403
2404 static void free_mnt_ns(struct mnt_namespace *ns)
2405 {
2406         proc_free_inum(ns->proc_inum);
2407         put_user_ns(ns->user_ns);
2408         kfree(ns);
2409 }
2410
2411 /*
2412  * Assign a sequence number so we can detect when we attempt to bind
2413  * mount a reference to an older mount namespace into the current
2414  * mount namespace, preventing reference counting loops.  A 64bit
2415  * number incrementing at 10Ghz will take 12,427 years to wrap which
2416  * is effectively never, so we can ignore the possibility.
2417  */
2418 static atomic64_t mnt_ns_seq = ATOMIC64_INIT(1);
2419
2420 static struct mnt_namespace *alloc_mnt_ns(struct user_namespace *user_ns)
2421 {
2422         struct mnt_namespace *new_ns;
2423         int ret;
2424
2425         new_ns = kmalloc(sizeof(struct mnt_namespace), GFP_KERNEL);
2426         if (!new_ns)
2427                 return ERR_PTR(-ENOMEM);
2428         ret = proc_alloc_inum(&new_ns->proc_inum);
2429         if (ret) {
2430                 kfree(new_ns);
2431                 return ERR_PTR(ret);
2432         }
2433         new_ns->seq = atomic64_add_return(1, &mnt_ns_seq);
2434         atomic_set(&new_ns->count, 1);
2435         new_ns->root = NULL;
2436         INIT_LIST_HEAD(&new_ns->list);
2437         init_waitqueue_head(&new_ns->poll);
2438         new_ns->event = 0;
2439         new_ns->user_ns = get_user_ns(user_ns);
2440         return new_ns;
2441 }
2442
2443 /*
2444  * Allocate a new namespace structure and populate it with contents
2445  * copied from the namespace of the passed in task structure.
2446  */
2447 static struct mnt_namespace *dup_mnt_ns(struct mnt_namespace *mnt_ns,
2448                 struct user_namespace *user_ns, struct fs_struct *fs)
2449 {
2450         struct mnt_namespace *new_ns;
2451         struct vfsmount *rootmnt = NULL, *pwdmnt = NULL;
2452         struct mount *p, *q;
2453         struct mount *old = mnt_ns->root;
2454         struct mount *new;
2455         int copy_flags;
2456
2457         new_ns = alloc_mnt_ns(user_ns);
2458         if (IS_ERR(new_ns))
2459                 return new_ns;
2460
2461         namespace_lock();
2462         /* First pass: copy the tree topology */
2463         copy_flags = CL_COPY_UNBINDABLE | CL_EXPIRE;
2464         if (user_ns != mnt_ns->user_ns)
2465                 copy_flags |= CL_SHARED_TO_SLAVE | CL_UNPRIVILEGED;
2466         new = copy_tree(old, old->mnt.mnt_root, copy_flags);
2467         if (IS_ERR(new)) {
2468                 namespace_unlock();
2469                 free_mnt_ns(new_ns);
2470                 return ERR_CAST(new);
2471         }
2472         new_ns->root = new;
2473         list_add_tail(&new_ns->list, &new->mnt_list);
2474
2475         /*
2476          * Second pass: switch the tsk->fs->* elements and mark new vfsmounts
2477          * as belonging to new namespace.  We have already acquired a private
2478          * fs_struct, so tsk->fs->lock is not needed.
2479          */
2480         p = old;
2481         q = new;
2482         while (p) {
2483                 q->mnt_ns = new_ns;
2484                 if (fs) {
2485                         if (&p->mnt == fs->root.mnt) {
2486                                 fs->root.mnt = mntget(&q->mnt);
2487                                 rootmnt = &p->mnt;
2488                         }
2489                         if (&p->mnt == fs->pwd.mnt) {
2490                                 fs->pwd.mnt = mntget(&q->mnt);
2491                                 pwdmnt = &p->mnt;
2492                         }
2493                 }
2494                 p = next_mnt(p, old);
2495                 q = next_mnt(q, new);
2496                 if (!q)
2497                         break;
2498                 while (p->mnt.mnt_root != q->mnt.mnt_root)
2499                         p = next_mnt(p, old);
2500         }
2501         namespace_unlock();
2502
2503         if (rootmnt)
2504                 mntput(rootmnt);
2505         if (pwdmnt)
2506                 mntput(pwdmnt);
2507
2508         return new_ns;
2509 }
2510
2511 struct mnt_namespace *copy_mnt_ns(unsigned long flags, struct mnt_namespace *ns,
2512                 struct user_namespace *user_ns, struct fs_struct *new_fs)
2513 {
2514         struct mnt_namespace *new_ns;
2515
2516         BUG_ON(!ns);
2517         get_mnt_ns(ns);
2518
2519         if (!(flags & CLONE_NEWNS))
2520                 return ns;
2521
2522         new_ns = dup_mnt_ns(ns, user_ns, new_fs);
2523
2524         put_mnt_ns(ns);
2525         return new_ns;
2526 }
2527
2528 /**
2529  * create_mnt_ns - creates a private namespace and adds a root filesystem
2530  * @mnt: pointer to the new root filesystem mountpoint
2531  */
2532 static struct mnt_namespace *create_mnt_ns(struct vfsmount *m)
2533 {
2534         struct mnt_namespace *new_ns = alloc_mnt_ns(&init_user_ns);
2535         if (!IS_ERR(new_ns)) {
2536                 struct mount *mnt = real_mount(m);
2537                 mnt->mnt_ns = new_ns;
2538                 new_ns->root = mnt;
2539                 list_add(&mnt->mnt_list, &new_ns->list);
2540         } else {
2541                 mntput(m);
2542         }
2543         return new_ns;
2544 }
2545
2546 struct dentry *mount_subtree(struct vfsmount *mnt, const char *name)
2547 {
2548         struct mnt_namespace *ns;
2549         struct super_block *s;
2550         struct path path;
2551         int err;
2552
2553         ns = create_mnt_ns(mnt);
2554         if (IS_ERR(ns))
2555                 return ERR_CAST(ns);
2556
2557         err = vfs_path_lookup(mnt->mnt_root, mnt,
2558                         name, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &path);
2559
2560         put_mnt_ns(ns);
2561
2562         if (err)
2563                 return ERR_PTR(err);
2564
2565         /* trade a vfsmount reference for active sb one */
2566         s = path.mnt->mnt_sb;
2567         atomic_inc(&s->s_active);
2568         mntput(path.mnt);
2569         /* lock the sucker */
2570         down_write(&s->s_umount);
2571         /* ... and return the root of (sub)tree on it */
2572         return path.dentry;
2573 }
2574 EXPORT_SYMBOL(mount_subtree);
2575
2576 SYSCALL_DEFINE5(mount, char __user *, dev_name, char __user *, dir_name,
2577                 char __user *, type, unsigned long, flags, void __user *, data)
2578 {
2579         int ret;
2580         char *kernel_type;
2581         struct filename *kernel_dir;
2582         char *kernel_dev;
2583         unsigned long data_page;
2584
2585         ret = copy_mount_string(type, &kernel_type);
2586         if (ret < 0)
2587                 goto out_type;
2588
2589         kernel_dir = getname(dir_name);
2590         if (IS_ERR(kernel_dir)) {
2591                 ret = PTR_ERR(kernel_dir);
2592                 goto out_dir;
2593         }
2594
2595         ret = copy_mount_string(dev_name, &kernel_dev);
2596         if (ret < 0)
2597                 goto out_dev;
2598
2599         ret = copy_mount_options(data, &data_page);
2600         if (ret < 0)
2601                 goto out_data;
2602
2603         ret = do_mount(kernel_dev, kernel_dir->name, kernel_type, flags,
2604                 (void *) data_page);
2605
2606         free_page(data_page);
2607 out_data:
2608         kfree(kernel_dev);
2609 out_dev:
2610         putname(kernel_dir);
2611 out_dir:
2612         kfree(kernel_type);
2613 out_type:
2614         return ret;
2615 }
2616
2617 /*
2618  * Return true if path is reachable from root
2619  *
2620  * namespace_sem or vfsmount_lock is held
2621  */
2622 bool is_path_reachable(struct mount *mnt, struct dentry *dentry,
2623                          const struct path *root)
2624 {
2625         while (&mnt->mnt != root->mnt && mnt_has_parent(mnt)) {
2626                 dentry = mnt->mnt_mountpoint;
2627                 mnt = mnt->mnt_parent;
2628         }
2629         return &mnt->mnt == root->mnt && is_subdir(dentry, root->dentry);
2630 }
2631
2632 int path_is_under(struct path *path1, struct path *path2)
2633 {
2634         int res;
2635         br_read_lock(&vfsmount_lock);
2636         res = is_path_reachable(real_mount(path1->mnt), path1->dentry, path2);
2637         br_read_unlock(&vfsmount_lock);
2638         return res;
2639 }
2640 EXPORT_SYMBOL(path_is_under);
2641
2642 /*
2643  * pivot_root Semantics:
2644  * Moves the root file system of the current process to the directory put_old,
2645  * makes new_root as the new root file system of the current process, and sets
2646  * root/cwd of all processes which had them on the current root to new_root.
2647  *
2648  * Restrictions:
2649  * The new_root and put_old must be directories, and  must not be on the
2650  * same file  system as the current process root. The put_old  must  be
2651  * underneath new_root,  i.e. adding a non-zero number of /.. to the string
2652  * pointed to by put_old must yield the same directory as new_root. No other
2653  * file system may be mounted on put_old. After all, new_root is a mountpoint.
2654  *
2655  * Also, the current root cannot be on the 'rootfs' (initial ramfs) filesystem.
2656  * See Documentation/filesystems/ramfs-rootfs-initramfs.txt for alternatives
2657  * in this situation.
2658  *
2659  * Notes:
2660  *  - we don't move root/cwd if they are not at the root (reason: if something
2661  *    cared enough to change them, it's probably wrong to force them elsewhere)
2662  *  - it's okay to pick a root that isn't the root of a file system, e.g.
2663  *    /nfs/my_root where /nfs is the mount point. It must be a mountpoint,
2664  *    though, so you may need to say mount --bind /nfs/my_root /nfs/my_root
2665  *    first.
2666  */
2667 SYSCALL_DEFINE2(pivot_root, const char __user *, new_root,
2668                 const char __user *, put_old)
2669 {
2670         struct path new, old, parent_path, root_parent, root;
2671         struct mount *new_mnt, *root_mnt, *old_mnt;
2672         struct mountpoint *old_mp, *root_mp;
2673         int error;
2674
2675         if (!may_mount())
2676                 return -EPERM;
2677
2678         error = user_path_dir(new_root, &new);
2679         if (error)
2680                 goto out0;
2681
2682         error = user_path_dir(put_old, &old);
2683         if (error)
2684                 goto out1;
2685
2686         error = security_sb_pivotroot(&old, &new);
2687         if (error)
2688                 goto out2;
2689
2690         get_fs_root(current->fs, &root);
2691         old_mp = lock_mount(&old);
2692         error = PTR_ERR(old_mp);
2693         if (IS_ERR(old_mp))
2694                 goto out3;
2695
2696         error = -EINVAL;
2697         new_mnt = real_mount(new.mnt);
2698         root_mnt = real_mount(root.mnt);
2699         old_mnt = real_mount(old.mnt);
2700         if (IS_MNT_SHARED(old_mnt) ||
2701                 IS_MNT_SHARED(new_mnt->mnt_parent) ||
2702                 IS_MNT_SHARED(root_mnt->mnt_parent))
2703                 goto out4;
2704         if (!check_mnt(root_mnt) || !check_mnt(new_mnt))
2705                 goto out4;
2706         if (new_mnt->mnt.mnt_flags & MNT_LOCKED)
2707                 goto out4;
2708         error = -ENOENT;
2709         if (d_unlinked(new.dentry))
2710                 goto out4;
2711         error = -EBUSY;
2712         if (new_mnt == root_mnt || old_mnt == root_mnt)
2713                 goto out4; /* loop, on the same file system  */
2714         error = -EINVAL;
2715         if (root.mnt->mnt_root != root.dentry)
2716                 goto out4; /* not a mountpoint */
2717         if (!mnt_has_parent(root_mnt))
2718                 goto out4; /* not attached */
2719         root_mp = root_mnt->mnt_mp;
2720         if (new.mnt->mnt_root != new.dentry)
2721                 goto out4; /* not a mountpoint */
2722         if (!mnt_has_parent(new_mnt))
2723                 goto out4; /* not attached */
2724         /* make sure we can reach put_old from new_root */
2725         if (!is_path_reachable(old_mnt, old.dentry, &new))
2726                 goto out4;
2727         root_mp->m_count++; /* pin it so it won't go away */
2728         br_write_lock(&vfsmount_lock);
2729         detach_mnt(new_mnt, &parent_path);
2730         detach_mnt(root_mnt, &root_parent);
2731         if (root_mnt->mnt.mnt_flags & MNT_LOCKED) {
2732                 new_mnt->mnt.mnt_flags |= MNT_LOCKED;
2733                 root_mnt->mnt.mnt_flags &= ~MNT_LOCKED;
2734         }
2735         /* mount old root on put_old */
2736         attach_mnt(root_mnt, old_mnt, old_mp);
2737         /* mount new_root on / */
2738         attach_mnt(new_mnt, real_mount(root_parent.mnt), root_mp);
2739         touch_mnt_namespace(current->nsproxy->mnt_ns);
2740         br_write_unlock(&vfsmount_lock);
2741         chroot_fs_refs(&root, &new);
2742         put_mountpoint(root_mp);
2743         error = 0;
2744 out4:
2745         unlock_mount(old_mp);
2746         if (!error) {
2747                 path_put(&root_parent);
2748                 path_put(&parent_path);
2749         }
2750 out3:
2751         path_put(&root);
2752 out2:
2753         path_put(&old);
2754 out1:
2755         path_put(&new);
2756 out0:
2757         return error;
2758 }
2759
2760 static void __init init_mount_tree(void)
2761 {
2762         struct vfsmount *mnt;
2763         struct mnt_namespace *ns;
2764         struct path root;
2765         struct file_system_type *type;
2766
2767         type = get_fs_type("rootfs");
2768         if (!type)
2769                 panic("Can't find rootfs type");
2770         mnt = vfs_kern_mount(type, 0, "rootfs", NULL);
2771         put_filesystem(type);
2772         if (IS_ERR(mnt))
2773                 panic("Can't create rootfs");
2774
2775         ns = create_mnt_ns(mnt);
2776         if (IS_ERR(ns))
2777                 panic("Can't allocate initial namespace");
2778
2779         init_task.nsproxy->mnt_ns = ns;
2780         get_mnt_ns(ns);
2781
2782         root.mnt = mnt;
2783         root.dentry = mnt->mnt_root;
2784
2785         set_fs_pwd(current->fs, &root);
2786         set_fs_root(current->fs, &root);
2787 }
2788
2789 void __init mnt_init(void)
2790 {
2791         unsigned u;
2792         int err;
2793
2794         mnt_cache = kmem_cache_create("mnt_cache", sizeof(struct mount),
2795                         0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
2796
2797         mount_hashtable = (struct list_head *)__get_free_page(GFP_ATOMIC);
2798         mountpoint_hashtable = (struct list_head *)__get_free_page(GFP_ATOMIC);
2799
2800         if (!mount_hashtable || !mountpoint_hashtable)
2801                 panic("Failed to allocate mount hash table\n");
2802
2803         printk(KERN_INFO "Mount-cache hash table entries: %lu\n", HASH_SIZE);
2804
2805         for (u = 0; u < HASH_SIZE; u++)
2806                 INIT_LIST_HEAD(&mount_hashtable[u]);
2807         for (u = 0; u < HASH_SIZE; u++)
2808                 INIT_LIST_HEAD(&mountpoint_hashtable[u]);
2809
2810         br_lock_init(&vfsmount_lock);
2811
2812         err = sysfs_init();
2813         if (err)
2814                 printk(KERN_WARNING "%s: sysfs_init error: %d\n",
2815                         __func__, err);
2816         fs_kobj = kobject_create_and_add("fs", NULL);
2817         if (!fs_kobj)
2818                 printk(KERN_WARNING "%s: kobj create error\n", __func__);
2819         init_rootfs();
2820         init_mount_tree();
2821 }
2822
2823 void put_mnt_ns(struct mnt_namespace *ns)
2824 {
2825         if (!atomic_dec_and_test(&ns->count))
2826                 return;
2827         drop_collected_mounts(&ns->root->mnt);
2828         free_mnt_ns(ns);
2829 }
2830
2831 struct vfsmount *kern_mount_data(struct file_system_type *type, void *data)
2832 {
2833         struct vfsmount *mnt;
2834         mnt = vfs_kern_mount(type, MS_KERNMOUNT, type->name, data);
2835         if (!IS_ERR(mnt)) {
2836                 /*
2837                  * it is a longterm mount, don't release mnt until
2838                  * we unmount before file sys is unregistered
2839                 */
2840                 real_mount(mnt)->mnt_ns = MNT_NS_INTERNAL;
2841         }
2842         return mnt;
2843 }
2844 EXPORT_SYMBOL_GPL(kern_mount_data);
2845
2846 void kern_unmount(struct vfsmount *mnt)
2847 {
2848         /* release long term mount so mount point can be released */
2849         if (!IS_ERR_OR_NULL(mnt)) {
2850                 br_write_lock(&vfsmount_lock);
2851                 real_mount(mnt)->mnt_ns = NULL;
2852                 br_write_unlock(&vfsmount_lock);
2853                 mntput(mnt);
2854         }
2855 }
2856 EXPORT_SYMBOL(kern_unmount);
2857
2858 bool our_mnt(struct vfsmount *mnt)
2859 {
2860         return check_mnt(real_mount(mnt));
2861 }
2862
2863 bool current_chrooted(void)
2864 {
2865         /* Does the current process have a non-standard root */
2866         struct path ns_root;
2867         struct path fs_root;
2868         bool chrooted;
2869
2870         /* Find the namespace root */
2871         ns_root.mnt = &current->nsproxy->mnt_ns->root->mnt;
2872         ns_root.dentry = ns_root.mnt->mnt_root;
2873         path_get(&ns_root);
2874         while (d_mountpoint(ns_root.dentry) && follow_down_one(&ns_root))
2875                 ;
2876
2877         get_fs_root(current->fs, &fs_root);
2878
2879         chrooted = !path_equal(&fs_root, &ns_root);
2880
2881         path_put(&fs_root);
2882         path_put(&ns_root);
2883
2884         return chrooted;
2885 }
2886
2887 bool fs_fully_visible(struct file_system_type *type)
2888 {
2889         struct mnt_namespace *ns = current->nsproxy->mnt_ns;
2890         struct mount *mnt;
2891         bool visible = false;
2892
2893         if (unlikely(!ns))
2894                 return false;
2895
2896         down_read(&namespace_sem);
2897         list_for_each_entry(mnt, &ns->list, mnt_list) {
2898                 struct mount *child;
2899                 if (mnt->mnt.mnt_sb->s_type != type)
2900                         continue;
2901
2902                 /* This mount is not fully visible if there are any child mounts
2903                  * that cover anything except for empty directories.
2904                  */
2905                 list_for_each_entry(child, &mnt->mnt_mounts, mnt_child) {
2906                         struct inode *inode = child->mnt_mountpoint->d_inode;
2907                         if (!S_ISDIR(inode->i_mode))
2908                                 goto next;
2909                         if (inode->i_nlink != 2)
2910                                 goto next;
2911                 }
2912                 visible = true;
2913                 goto found;
2914         next:   ;
2915         }
2916 found:
2917         up_read(&namespace_sem);
2918         return visible;
2919 }
2920
2921 static void *mntns_get(struct task_struct *task)
2922 {
2923         struct mnt_namespace *ns = NULL;
2924         struct nsproxy *nsproxy;
2925
2926         rcu_read_lock();
2927         nsproxy = task_nsproxy(task);
2928         if (nsproxy) {
2929                 ns = nsproxy->mnt_ns;
2930                 get_mnt_ns(ns);
2931         }
2932         rcu_read_unlock();
2933
2934         return ns;
2935 }
2936
2937 static void mntns_put(void *ns)
2938 {
2939         put_mnt_ns(ns);
2940 }
2941
2942 static int mntns_install(struct nsproxy *nsproxy, void *ns)
2943 {
2944         struct fs_struct *fs = current->fs;
2945         struct mnt_namespace *mnt_ns = ns;
2946         struct path root;
2947
2948         if (!ns_capable(mnt_ns->user_ns, CAP_SYS_ADMIN) ||
2949             !ns_capable(current_user_ns(), CAP_SYS_CHROOT) ||
2950             !ns_capable(current_user_ns(), CAP_SYS_ADMIN))
2951                 return -EPERM;
2952
2953         if (fs->users != 1)
2954                 return -EINVAL;
2955
2956         get_mnt_ns(mnt_ns);
2957         put_mnt_ns(nsproxy->mnt_ns);
2958         nsproxy->mnt_ns = mnt_ns;
2959
2960         /* Find the root */
2961         root.mnt    = &mnt_ns->root->mnt;
2962         root.dentry = mnt_ns->root->mnt.mnt_root;
2963         path_get(&root);
2964         while(d_mountpoint(root.dentry) && follow_down_one(&root))
2965                 ;
2966
2967         /* Update the pwd and root */
2968         set_fs_pwd(fs, &root);
2969         set_fs_root(fs, &root);
2970
2971         path_put(&root);
2972         return 0;
2973 }
2974
2975 static unsigned int mntns_inum(void *ns)
2976 {
2977         struct mnt_namespace *mnt_ns = ns;
2978         return mnt_ns->proc_inum;
2979 }
2980
2981 const struct proc_ns_operations mntns_operations = {
2982         .name           = "mnt",
2983         .type           = CLONE_NEWNS,
2984         .get            = mntns_get,
2985         .put            = mntns_put,
2986         .install        = mntns_install,
2987         .inum           = mntns_inum,
2988 };