4 * (C) Copyright Al Viro 2000, 2001
5 * Released under GPL v2.
7 * Based on code from fs/super.c, copyright Linus Torvalds and others.
11 #include <linux/syscalls.h>
12 #include <linux/slab.h>
13 #include <linux/sched.h>
14 #include <linux/smp_lock.h>
15 #include <linux/init.h>
16 #include <linux/kernel.h>
17 #include <linux/quotaops.h>
18 #include <linux/acct.h>
19 #include <linux/capability.h>
20 #include <linux/module.h>
21 #include <linux/sysfs.h>
22 #include <linux/seq_file.h>
23 #include <linux/mnt_namespace.h>
24 #include <linux/namei.h>
25 #include <linux/security.h>
26 #include <linux/mount.h>
27 #include <linux/ramfs.h>
28 #include <asm/uaccess.h>
29 #include <asm/unistd.h>
33 /* spinlock for vfsmount related operations, inplace of dcache_lock */
34 __cacheline_aligned_in_smp
DEFINE_SPINLOCK(vfsmount_lock
);
38 static struct list_head
*mount_hashtable __read_mostly
;
39 static int hash_mask __read_mostly
, hash_bits __read_mostly
;
40 static struct kmem_cache
*mnt_cache __read_mostly
;
41 static struct rw_semaphore namespace_sem
;
44 decl_subsys(fs
, NULL
, NULL
);
45 EXPORT_SYMBOL_GPL(fs_subsys
);
47 static inline unsigned long hash(struct vfsmount
*mnt
, struct dentry
*dentry
)
49 unsigned long tmp
= ((unsigned long)mnt
/ L1_CACHE_BYTES
);
50 tmp
+= ((unsigned long)dentry
/ L1_CACHE_BYTES
);
51 tmp
= tmp
+ (tmp
>> hash_bits
);
52 return tmp
& hash_mask
;
55 struct vfsmount
*alloc_vfsmnt(const char *name
)
57 struct vfsmount
*mnt
= kmem_cache_zalloc(mnt_cache
, GFP_KERNEL
);
59 atomic_set(&mnt
->mnt_count
, 1);
60 INIT_LIST_HEAD(&mnt
->mnt_hash
);
61 INIT_LIST_HEAD(&mnt
->mnt_child
);
62 INIT_LIST_HEAD(&mnt
->mnt_mounts
);
63 INIT_LIST_HEAD(&mnt
->mnt_list
);
64 INIT_LIST_HEAD(&mnt
->mnt_expire
);
65 INIT_LIST_HEAD(&mnt
->mnt_share
);
66 INIT_LIST_HEAD(&mnt
->mnt_slave_list
);
67 INIT_LIST_HEAD(&mnt
->mnt_slave
);
69 int size
= strlen(name
) + 1;
70 char *newname
= kmalloc(size
, GFP_KERNEL
);
72 memcpy(newname
, name
, size
);
73 mnt
->mnt_devname
= newname
;
80 int simple_set_mnt(struct vfsmount
*mnt
, struct super_block
*sb
)
83 mnt
->mnt_root
= dget(sb
->s_root
);
87 EXPORT_SYMBOL(simple_set_mnt
);
89 void free_vfsmnt(struct vfsmount
*mnt
)
91 kfree(mnt
->mnt_devname
);
92 kmem_cache_free(mnt_cache
, mnt
);
96 * find the first or last mount at @dentry on vfsmount @mnt depending on
97 * @dir. If @dir is set return the first mount else return the last mount.
99 struct vfsmount
*__lookup_mnt(struct vfsmount
*mnt
, struct dentry
*dentry
,
102 struct list_head
*head
= mount_hashtable
+ hash(mnt
, dentry
);
103 struct list_head
*tmp
= head
;
104 struct vfsmount
*p
, *found
= NULL
;
107 tmp
= dir
? tmp
->next
: tmp
->prev
;
111 p
= list_entry(tmp
, struct vfsmount
, mnt_hash
);
112 if (p
->mnt_parent
== mnt
&& p
->mnt_mountpoint
== dentry
) {
121 * lookup_mnt increments the ref count before returning
122 * the vfsmount struct.
124 struct vfsmount
*lookup_mnt(struct vfsmount
*mnt
, struct dentry
*dentry
)
126 struct vfsmount
*child_mnt
;
127 spin_lock(&vfsmount_lock
);
128 if ((child_mnt
= __lookup_mnt(mnt
, dentry
, 1)))
130 spin_unlock(&vfsmount_lock
);
134 static inline int check_mnt(struct vfsmount
*mnt
)
136 return mnt
->mnt_ns
== current
->nsproxy
->mnt_ns
;
139 static void touch_mnt_namespace(struct mnt_namespace
*ns
)
143 wake_up_interruptible(&ns
->poll
);
147 static void __touch_mnt_namespace(struct mnt_namespace
*ns
)
149 if (ns
&& ns
->event
!= event
) {
151 wake_up_interruptible(&ns
->poll
);
155 static void detach_mnt(struct vfsmount
*mnt
, struct nameidata
*old_nd
)
157 old_nd
->dentry
= mnt
->mnt_mountpoint
;
158 old_nd
->mnt
= mnt
->mnt_parent
;
159 mnt
->mnt_parent
= mnt
;
160 mnt
->mnt_mountpoint
= mnt
->mnt_root
;
161 list_del_init(&mnt
->mnt_child
);
162 list_del_init(&mnt
->mnt_hash
);
163 old_nd
->dentry
->d_mounted
--;
166 void mnt_set_mountpoint(struct vfsmount
*mnt
, struct dentry
*dentry
,
167 struct vfsmount
*child_mnt
)
169 child_mnt
->mnt_parent
= mntget(mnt
);
170 child_mnt
->mnt_mountpoint
= dget(dentry
);
174 static void attach_mnt(struct vfsmount
*mnt
, struct nameidata
*nd
)
176 mnt_set_mountpoint(nd
->mnt
, nd
->dentry
, mnt
);
177 list_add_tail(&mnt
->mnt_hash
, mount_hashtable
+
178 hash(nd
->mnt
, nd
->dentry
));
179 list_add_tail(&mnt
->mnt_child
, &nd
->mnt
->mnt_mounts
);
183 * the caller must hold vfsmount_lock
185 static void commit_tree(struct vfsmount
*mnt
)
187 struct vfsmount
*parent
= mnt
->mnt_parent
;
190 struct mnt_namespace
*n
= parent
->mnt_ns
;
192 BUG_ON(parent
== mnt
);
194 list_add_tail(&head
, &mnt
->mnt_list
);
195 list_for_each_entry(m
, &head
, mnt_list
)
197 list_splice(&head
, n
->list
.prev
);
199 list_add_tail(&mnt
->mnt_hash
, mount_hashtable
+
200 hash(parent
, mnt
->mnt_mountpoint
));
201 list_add_tail(&mnt
->mnt_child
, &parent
->mnt_mounts
);
202 touch_mnt_namespace(n
);
205 static struct vfsmount
*next_mnt(struct vfsmount
*p
, struct vfsmount
*root
)
207 struct list_head
*next
= p
->mnt_mounts
.next
;
208 if (next
== &p
->mnt_mounts
) {
212 next
= p
->mnt_child
.next
;
213 if (next
!= &p
->mnt_parent
->mnt_mounts
)
218 return list_entry(next
, struct vfsmount
, mnt_child
);
221 static struct vfsmount
*skip_mnt_tree(struct vfsmount
*p
)
223 struct list_head
*prev
= p
->mnt_mounts
.prev
;
224 while (prev
!= &p
->mnt_mounts
) {
225 p
= list_entry(prev
, struct vfsmount
, mnt_child
);
226 prev
= p
->mnt_mounts
.prev
;
231 static struct vfsmount
*clone_mnt(struct vfsmount
*old
, struct dentry
*root
,
234 struct super_block
*sb
= old
->mnt_sb
;
235 struct vfsmount
*mnt
= alloc_vfsmnt(old
->mnt_devname
);
238 mnt
->mnt_flags
= old
->mnt_flags
;
239 atomic_inc(&sb
->s_active
);
241 mnt
->mnt_root
= dget(root
);
242 mnt
->mnt_mountpoint
= mnt
->mnt_root
;
243 mnt
->mnt_parent
= mnt
;
245 if (flag
& CL_SLAVE
) {
246 list_add(&mnt
->mnt_slave
, &old
->mnt_slave_list
);
247 mnt
->mnt_master
= old
;
248 CLEAR_MNT_SHARED(mnt
);
250 if ((flag
& CL_PROPAGATION
) || IS_MNT_SHARED(old
))
251 list_add(&mnt
->mnt_share
, &old
->mnt_share
);
252 if (IS_MNT_SLAVE(old
))
253 list_add(&mnt
->mnt_slave
, &old
->mnt_slave
);
254 mnt
->mnt_master
= old
->mnt_master
;
256 if (flag
& CL_MAKE_SHARED
)
259 /* stick the duplicate mount on the same expiry list
260 * as the original if that was on one */
261 if (flag
& CL_EXPIRE
) {
262 spin_lock(&vfsmount_lock
);
263 if (!list_empty(&old
->mnt_expire
))
264 list_add(&mnt
->mnt_expire
, &old
->mnt_expire
);
265 spin_unlock(&vfsmount_lock
);
271 static inline void __mntput(struct vfsmount
*mnt
)
273 struct super_block
*sb
= mnt
->mnt_sb
;
276 deactivate_super(sb
);
279 void mntput_no_expire(struct vfsmount
*mnt
)
282 if (atomic_dec_and_lock(&mnt
->mnt_count
, &vfsmount_lock
)) {
283 if (likely(!mnt
->mnt_pinned
)) {
284 spin_unlock(&vfsmount_lock
);
288 atomic_add(mnt
->mnt_pinned
+ 1, &mnt
->mnt_count
);
290 spin_unlock(&vfsmount_lock
);
291 acct_auto_close_mnt(mnt
);
292 security_sb_umount_close(mnt
);
297 EXPORT_SYMBOL(mntput_no_expire
);
299 void mnt_pin(struct vfsmount
*mnt
)
301 spin_lock(&vfsmount_lock
);
303 spin_unlock(&vfsmount_lock
);
306 EXPORT_SYMBOL(mnt_pin
);
308 void mnt_unpin(struct vfsmount
*mnt
)
310 spin_lock(&vfsmount_lock
);
311 if (mnt
->mnt_pinned
) {
312 atomic_inc(&mnt
->mnt_count
);
315 spin_unlock(&vfsmount_lock
);
318 EXPORT_SYMBOL(mnt_unpin
);
321 static void *m_start(struct seq_file
*m
, loff_t
*pos
)
323 struct mnt_namespace
*n
= m
->private;
325 down_read(&namespace_sem
);
326 return seq_list_start(&n
->list
, *pos
);
329 static void *m_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
331 struct mnt_namespace
*n
= m
->private;
333 return seq_list_next(v
, &n
->list
, pos
);
336 static void m_stop(struct seq_file
*m
, void *v
)
338 up_read(&namespace_sem
);
341 static inline void mangle(struct seq_file
*m
, const char *s
)
343 seq_escape(m
, s
, " \t\n\\");
346 static int show_vfsmnt(struct seq_file
*m
, void *v
)
348 struct vfsmount
*mnt
= list_entry(v
, struct vfsmount
, mnt_list
);
350 static struct proc_fs_info
{
354 { MS_SYNCHRONOUS
, ",sync" },
355 { MS_DIRSYNC
, ",dirsync" },
356 { MS_MANDLOCK
, ",mand" },
359 static struct proc_fs_info mnt_info
[] = {
360 { MNT_NOSUID
, ",nosuid" },
361 { MNT_NODEV
, ",nodev" },
362 { MNT_NOEXEC
, ",noexec" },
363 { MNT_NOATIME
, ",noatime" },
364 { MNT_NODIRATIME
, ",nodiratime" },
365 { MNT_RELATIME
, ",relatime" },
368 struct proc_fs_info
*fs_infop
;
370 mangle(m
, mnt
->mnt_devname
? mnt
->mnt_devname
: "none");
372 seq_path(m
, mnt
, mnt
->mnt_root
, " \t\n\\");
374 mangle(m
, mnt
->mnt_sb
->s_type
->name
);
375 if (mnt
->mnt_sb
->s_subtype
&& mnt
->mnt_sb
->s_subtype
[0]) {
377 mangle(m
, mnt
->mnt_sb
->s_subtype
);
379 seq_puts(m
, mnt
->mnt_sb
->s_flags
& MS_RDONLY
? " ro" : " rw");
380 for (fs_infop
= fs_info
; fs_infop
->flag
; fs_infop
++) {
381 if (mnt
->mnt_sb
->s_flags
& fs_infop
->flag
)
382 seq_puts(m
, fs_infop
->str
);
384 for (fs_infop
= mnt_info
; fs_infop
->flag
; fs_infop
++) {
385 if (mnt
->mnt_flags
& fs_infop
->flag
)
386 seq_puts(m
, fs_infop
->str
);
388 if (mnt
->mnt_sb
->s_op
->show_options
)
389 err
= mnt
->mnt_sb
->s_op
->show_options(m
, mnt
);
390 seq_puts(m
, " 0 0\n");
394 struct seq_operations mounts_op
= {
401 static int show_vfsstat(struct seq_file
*m
, void *v
)
403 struct vfsmount
*mnt
= list_entry(v
, struct vfsmount
, mnt_list
);
407 if (mnt
->mnt_devname
) {
408 seq_puts(m
, "device ");
409 mangle(m
, mnt
->mnt_devname
);
411 seq_puts(m
, "no device");
414 seq_puts(m
, " mounted on ");
415 seq_path(m
, mnt
, mnt
->mnt_root
, " \t\n\\");
418 /* file system type */
419 seq_puts(m
, "with fstype ");
420 mangle(m
, mnt
->mnt_sb
->s_type
->name
);
422 /* optional statistics */
423 if (mnt
->mnt_sb
->s_op
->show_stats
) {
425 err
= mnt
->mnt_sb
->s_op
->show_stats(m
, mnt
);
432 struct seq_operations mountstats_op
= {
436 .show
= show_vfsstat
,
440 * may_umount_tree - check if a mount tree is busy
441 * @mnt: root of mount tree
443 * This is called to check if a tree of mounts has any
444 * open files, pwds, chroots or sub mounts that are
447 int may_umount_tree(struct vfsmount
*mnt
)
450 int minimum_refs
= 0;
453 spin_lock(&vfsmount_lock
);
454 for (p
= mnt
; p
; p
= next_mnt(p
, mnt
)) {
455 actual_refs
+= atomic_read(&p
->mnt_count
);
458 spin_unlock(&vfsmount_lock
);
460 if (actual_refs
> minimum_refs
)
466 EXPORT_SYMBOL(may_umount_tree
);
469 * may_umount - check if a mount point is busy
470 * @mnt: root of mount
472 * This is called to check if a mount point has any
473 * open files, pwds, chroots or sub mounts. If the
474 * mount has sub mounts this will return busy
475 * regardless of whether the sub mounts are busy.
477 * Doesn't take quota and stuff into account. IOW, in some cases it will
478 * give false negatives. The main reason why it's here is that we need
479 * a non-destructive way to look for easily umountable filesystems.
481 int may_umount(struct vfsmount
*mnt
)
484 spin_lock(&vfsmount_lock
);
485 if (propagate_mount_busy(mnt
, 2))
487 spin_unlock(&vfsmount_lock
);
491 EXPORT_SYMBOL(may_umount
);
493 void release_mounts(struct list_head
*head
)
495 struct vfsmount
*mnt
;
496 while (!list_empty(head
)) {
497 mnt
= list_first_entry(head
, struct vfsmount
, mnt_hash
);
498 list_del_init(&mnt
->mnt_hash
);
499 if (mnt
->mnt_parent
!= mnt
) {
500 struct dentry
*dentry
;
502 spin_lock(&vfsmount_lock
);
503 dentry
= mnt
->mnt_mountpoint
;
505 mnt
->mnt_mountpoint
= mnt
->mnt_root
;
506 mnt
->mnt_parent
= mnt
;
507 spin_unlock(&vfsmount_lock
);
515 void umount_tree(struct vfsmount
*mnt
, int propagate
, struct list_head
*kill
)
519 for (p
= mnt
; p
; p
= next_mnt(p
, mnt
))
520 list_move(&p
->mnt_hash
, kill
);
523 propagate_umount(kill
);
525 list_for_each_entry(p
, kill
, mnt_hash
) {
526 list_del_init(&p
->mnt_expire
);
527 list_del_init(&p
->mnt_list
);
528 __touch_mnt_namespace(p
->mnt_ns
);
530 list_del_init(&p
->mnt_child
);
531 if (p
->mnt_parent
!= p
)
532 p
->mnt_mountpoint
->d_mounted
--;
533 change_mnt_propagation(p
, MS_PRIVATE
);
537 static int do_umount(struct vfsmount
*mnt
, int flags
)
539 struct super_block
*sb
= mnt
->mnt_sb
;
541 LIST_HEAD(umount_list
);
543 retval
= security_sb_umount(mnt
, flags
);
548 * Allow userspace to request a mountpoint be expired rather than
549 * unmounting unconditionally. Unmount only happens if:
550 * (1) the mark is already set (the mark is cleared by mntput())
551 * (2) the usage count == 1 [parent vfsmount] + 1 [sys_umount]
553 if (flags
& MNT_EXPIRE
) {
554 if (mnt
== current
->fs
->rootmnt
||
555 flags
& (MNT_FORCE
| MNT_DETACH
))
558 if (atomic_read(&mnt
->mnt_count
) != 2)
561 if (!xchg(&mnt
->mnt_expiry_mark
, 1))
566 * If we may have to abort operations to get out of this
567 * mount, and they will themselves hold resources we must
568 * allow the fs to do things. In the Unix tradition of
569 * 'Gee thats tricky lets do it in userspace' the umount_begin
570 * might fail to complete on the first run through as other tasks
571 * must return, and the like. Thats for the mount program to worry
572 * about for the moment.
576 if (sb
->s_op
->umount_begin
)
577 sb
->s_op
->umount_begin(mnt
, flags
);
581 * No sense to grab the lock for this test, but test itself looks
582 * somewhat bogus. Suggestions for better replacement?
583 * Ho-hum... In principle, we might treat that as umount + switch
584 * to rootfs. GC would eventually take care of the old vfsmount.
585 * Actually it makes sense, especially if rootfs would contain a
586 * /reboot - static binary that would close all descriptors and
587 * call reboot(9). Then init(8) could umount root and exec /reboot.
589 if (mnt
== current
->fs
->rootmnt
&& !(flags
& MNT_DETACH
)) {
591 * Special case for "unmounting" root ...
592 * we just try to remount it readonly.
594 down_write(&sb
->s_umount
);
595 if (!(sb
->s_flags
& MS_RDONLY
)) {
598 retval
= do_remount_sb(sb
, MS_RDONLY
, NULL
, 0);
601 up_write(&sb
->s_umount
);
605 down_write(&namespace_sem
);
606 spin_lock(&vfsmount_lock
);
610 if (flags
& MNT_DETACH
|| !propagate_mount_busy(mnt
, 2)) {
611 if (!list_empty(&mnt
->mnt_list
))
612 umount_tree(mnt
, 1, &umount_list
);
615 spin_unlock(&vfsmount_lock
);
617 security_sb_umount_busy(mnt
);
618 up_write(&namespace_sem
);
619 release_mounts(&umount_list
);
624 * Now umount can handle mount points as well as block devices.
625 * This is important for filesystems which use unnamed block devices.
627 * We now support a flag for forced unmount like the other 'big iron'
628 * unixes. Our API is identical to OSF/1 to avoid making a mess of AMD
631 asmlinkage
long sys_umount(char __user
* name
, int flags
)
636 retval
= __user_walk(name
, LOOKUP_FOLLOW
, &nd
);
640 if (nd
.dentry
!= nd
.mnt
->mnt_root
)
642 if (!check_mnt(nd
.mnt
))
646 if (!capable(CAP_SYS_ADMIN
))
649 retval
= do_umount(nd
.mnt
, flags
);
651 path_release_on_umount(&nd
);
656 #ifdef __ARCH_WANT_SYS_OLDUMOUNT
659 * The 2.0 compatible umount. No flags.
661 asmlinkage
long sys_oldumount(char __user
* name
)
663 return sys_umount(name
, 0);
668 static int mount_is_safe(struct nameidata
*nd
)
670 if (capable(CAP_SYS_ADMIN
))
674 if (S_ISLNK(nd
->dentry
->d_inode
->i_mode
))
676 if (nd
->dentry
->d_inode
->i_mode
& S_ISVTX
) {
677 if (current
->uid
!= nd
->dentry
->d_inode
->i_uid
)
680 if (vfs_permission(nd
, MAY_WRITE
))
686 static int lives_below_in_same_fs(struct dentry
*d
, struct dentry
*dentry
)
691 if (d
== NULL
|| d
== d
->d_parent
)
697 struct vfsmount
*copy_tree(struct vfsmount
*mnt
, struct dentry
*dentry
,
700 struct vfsmount
*res
, *p
, *q
, *r
, *s
;
703 if (!(flag
& CL_COPY_ALL
) && IS_MNT_UNBINDABLE(mnt
))
706 res
= q
= clone_mnt(mnt
, dentry
, flag
);
709 q
->mnt_mountpoint
= mnt
->mnt_mountpoint
;
712 list_for_each_entry(r
, &mnt
->mnt_mounts
, mnt_child
) {
713 if (!lives_below_in_same_fs(r
->mnt_mountpoint
, dentry
))
716 for (s
= r
; s
; s
= next_mnt(s
, r
)) {
717 if (!(flag
& CL_COPY_ALL
) && IS_MNT_UNBINDABLE(s
)) {
718 s
= skip_mnt_tree(s
);
721 while (p
!= s
->mnt_parent
) {
727 nd
.dentry
= p
->mnt_mountpoint
;
728 q
= clone_mnt(p
, p
->mnt_root
, flag
);
731 spin_lock(&vfsmount_lock
);
732 list_add_tail(&q
->mnt_list
, &res
->mnt_list
);
734 spin_unlock(&vfsmount_lock
);
740 LIST_HEAD(umount_list
);
741 spin_lock(&vfsmount_lock
);
742 umount_tree(res
, 0, &umount_list
);
743 spin_unlock(&vfsmount_lock
);
744 release_mounts(&umount_list
);
750 * @source_mnt : mount tree to be attached
751 * @nd : place the mount tree @source_mnt is attached
752 * @parent_nd : if non-null, detach the source_mnt from its parent and
753 * store the parent mount and mountpoint dentry.
754 * (done when source_mnt is moved)
756 * NOTE: in the table below explains the semantics when a source mount
757 * of a given type is attached to a destination mount of a given type.
758 * ---------------------------------------------------------------------------
759 * | BIND MOUNT OPERATION |
760 * |**************************************************************************
761 * | source-->| shared | private | slave | unbindable |
765 * |**************************************************************************
766 * | shared | shared (++) | shared (+) | shared(+++)| invalid |
768 * |non-shared| shared (+) | private | slave (*) | invalid |
769 * ***************************************************************************
770 * A bind operation clones the source mount and mounts the clone on the
773 * (++) the cloned mount is propagated to all the mounts in the propagation
774 * tree of the destination mount and the cloned mount is added to
775 * the peer group of the source mount.
776 * (+) the cloned mount is created under the destination mount and is marked
777 * as shared. The cloned mount is added to the peer group of the source
779 * (+++) the mount is propagated to all the mounts in the propagation tree
780 * of the destination mount and the cloned mount is made slave
781 * of the same master as that of the source mount. The cloned mount
782 * is marked as 'shared and slave'.
783 * (*) the cloned mount is made a slave of the same master as that of the
786 * ---------------------------------------------------------------------------
787 * | MOVE MOUNT OPERATION |
788 * |**************************************************************************
789 * | source-->| shared | private | slave | unbindable |
793 * |**************************************************************************
794 * | shared | shared (+) | shared (+) | shared(+++) | invalid |
796 * |non-shared| shared (+*) | private | slave (*) | unbindable |
797 * ***************************************************************************
799 * (+) the mount is moved to the destination. And is then propagated to
800 * all the mounts in the propagation tree of the destination mount.
801 * (+*) the mount is moved to the destination.
802 * (+++) the mount is moved to the destination and is then propagated to
803 * all the mounts belonging to the destination mount's propagation tree.
804 * the mount is marked as 'shared and slave'.
805 * (*) the mount continues to be a slave at the new location.
807 * if the source mount is a tree, the operations explained above is
808 * applied to each mount in the tree.
809 * Must be called without spinlocks held, since this function can sleep
812 static int attach_recursive_mnt(struct vfsmount
*source_mnt
,
813 struct nameidata
*nd
, struct nameidata
*parent_nd
)
815 LIST_HEAD(tree_list
);
816 struct vfsmount
*dest_mnt
= nd
->mnt
;
817 struct dentry
*dest_dentry
= nd
->dentry
;
818 struct vfsmount
*child
, *p
;
820 if (propagate_mnt(dest_mnt
, dest_dentry
, source_mnt
, &tree_list
))
823 if (IS_MNT_SHARED(dest_mnt
)) {
824 for (p
= source_mnt
; p
; p
= next_mnt(p
, source_mnt
))
828 spin_lock(&vfsmount_lock
);
830 detach_mnt(source_mnt
, parent_nd
);
831 attach_mnt(source_mnt
, nd
);
832 touch_mnt_namespace(current
->nsproxy
->mnt_ns
);
834 mnt_set_mountpoint(dest_mnt
, dest_dentry
, source_mnt
);
835 commit_tree(source_mnt
);
838 list_for_each_entry_safe(child
, p
, &tree_list
, mnt_hash
) {
839 list_del_init(&child
->mnt_hash
);
842 spin_unlock(&vfsmount_lock
);
846 static int graft_tree(struct vfsmount
*mnt
, struct nameidata
*nd
)
849 if (mnt
->mnt_sb
->s_flags
& MS_NOUSER
)
852 if (S_ISDIR(nd
->dentry
->d_inode
->i_mode
) !=
853 S_ISDIR(mnt
->mnt_root
->d_inode
->i_mode
))
857 mutex_lock(&nd
->dentry
->d_inode
->i_mutex
);
858 if (IS_DEADDIR(nd
->dentry
->d_inode
))
861 err
= security_sb_check_sb(mnt
, nd
);
866 if (IS_ROOT(nd
->dentry
) || !d_unhashed(nd
->dentry
))
867 err
= attach_recursive_mnt(mnt
, nd
, NULL
);
869 mutex_unlock(&nd
->dentry
->d_inode
->i_mutex
);
871 security_sb_post_addmount(mnt
, nd
);
876 * recursively change the type of the mountpoint.
878 static int do_change_type(struct nameidata
*nd
, int flag
)
880 struct vfsmount
*m
, *mnt
= nd
->mnt
;
881 int recurse
= flag
& MS_REC
;
882 int type
= flag
& ~MS_REC
;
884 if (!capable(CAP_SYS_ADMIN
))
887 if (nd
->dentry
!= nd
->mnt
->mnt_root
)
890 down_write(&namespace_sem
);
891 spin_lock(&vfsmount_lock
);
892 for (m
= mnt
; m
; m
= (recurse
? next_mnt(m
, mnt
) : NULL
))
893 change_mnt_propagation(m
, type
);
894 spin_unlock(&vfsmount_lock
);
895 up_write(&namespace_sem
);
902 static int do_loopback(struct nameidata
*nd
, char *old_name
, int recurse
)
904 struct nameidata old_nd
;
905 struct vfsmount
*mnt
= NULL
;
906 int err
= mount_is_safe(nd
);
909 if (!old_name
|| !*old_name
)
911 err
= path_lookup(old_name
, LOOKUP_FOLLOW
, &old_nd
);
915 down_write(&namespace_sem
);
917 if (IS_MNT_UNBINDABLE(old_nd
.mnt
))
920 if (!check_mnt(nd
->mnt
) || !check_mnt(old_nd
.mnt
))
925 mnt
= copy_tree(old_nd
.mnt
, old_nd
.dentry
, 0);
927 mnt
= clone_mnt(old_nd
.mnt
, old_nd
.dentry
, 0);
932 err
= graft_tree(mnt
, nd
);
934 LIST_HEAD(umount_list
);
935 spin_lock(&vfsmount_lock
);
936 umount_tree(mnt
, 0, &umount_list
);
937 spin_unlock(&vfsmount_lock
);
938 release_mounts(&umount_list
);
942 up_write(&namespace_sem
);
943 path_release(&old_nd
);
948 * change filesystem flags. dir should be a physical root of filesystem.
949 * If you've mounted a non-root directory somewhere and want to do remount
950 * on it - tough luck.
952 static int do_remount(struct nameidata
*nd
, int flags
, int mnt_flags
,
956 struct super_block
*sb
= nd
->mnt
->mnt_sb
;
958 if (!capable(CAP_SYS_ADMIN
))
961 if (!check_mnt(nd
->mnt
))
964 if (nd
->dentry
!= nd
->mnt
->mnt_root
)
967 down_write(&sb
->s_umount
);
968 err
= do_remount_sb(sb
, flags
, data
, 0);
970 nd
->mnt
->mnt_flags
= mnt_flags
;
971 up_write(&sb
->s_umount
);
973 security_sb_post_remount(nd
->mnt
, flags
, data
);
977 static inline int tree_contains_unbindable(struct vfsmount
*mnt
)
980 for (p
= mnt
; p
; p
= next_mnt(p
, mnt
)) {
981 if (IS_MNT_UNBINDABLE(p
))
987 static int do_move_mount(struct nameidata
*nd
, char *old_name
)
989 struct nameidata old_nd
, parent_nd
;
992 if (!capable(CAP_SYS_ADMIN
))
994 if (!old_name
|| !*old_name
)
996 err
= path_lookup(old_name
, LOOKUP_FOLLOW
, &old_nd
);
1000 down_write(&namespace_sem
);
1001 while (d_mountpoint(nd
->dentry
) && follow_down(&nd
->mnt
, &nd
->dentry
))
1004 if (!check_mnt(nd
->mnt
) || !check_mnt(old_nd
.mnt
))
1008 mutex_lock(&nd
->dentry
->d_inode
->i_mutex
);
1009 if (IS_DEADDIR(nd
->dentry
->d_inode
))
1012 if (!IS_ROOT(nd
->dentry
) && d_unhashed(nd
->dentry
))
1016 if (old_nd
.dentry
!= old_nd
.mnt
->mnt_root
)
1019 if (old_nd
.mnt
== old_nd
.mnt
->mnt_parent
)
1022 if (S_ISDIR(nd
->dentry
->d_inode
->i_mode
) !=
1023 S_ISDIR(old_nd
.dentry
->d_inode
->i_mode
))
1026 * Don't move a mount residing in a shared parent.
1028 if (old_nd
.mnt
->mnt_parent
&& IS_MNT_SHARED(old_nd
.mnt
->mnt_parent
))
1031 * Don't move a mount tree containing unbindable mounts to a destination
1032 * mount which is shared.
1034 if (IS_MNT_SHARED(nd
->mnt
) && tree_contains_unbindable(old_nd
.mnt
))
1037 for (p
= nd
->mnt
; p
->mnt_parent
!= p
; p
= p
->mnt_parent
)
1038 if (p
== old_nd
.mnt
)
1041 if ((err
= attach_recursive_mnt(old_nd
.mnt
, nd
, &parent_nd
)))
1044 spin_lock(&vfsmount_lock
);
1045 /* if the mount is moved, it should no longer be expire
1047 list_del_init(&old_nd
.mnt
->mnt_expire
);
1048 spin_unlock(&vfsmount_lock
);
1050 mutex_unlock(&nd
->dentry
->d_inode
->i_mutex
);
1052 up_write(&namespace_sem
);
1054 path_release(&parent_nd
);
1055 path_release(&old_nd
);
1060 * create a new mount for userspace and request it to be added into the
1063 static int do_new_mount(struct nameidata
*nd
, char *type
, int flags
,
1064 int mnt_flags
, char *name
, void *data
)
1066 struct vfsmount
*mnt
;
1068 if (!type
|| !memchr(type
, 0, PAGE_SIZE
))
1071 /* we need capabilities... */
1072 if (!capable(CAP_SYS_ADMIN
))
1075 mnt
= do_kern_mount(type
, flags
, name
, data
);
1077 return PTR_ERR(mnt
);
1079 return do_add_mount(mnt
, nd
, mnt_flags
, NULL
);
1083 * add a mount into a namespace's mount tree
1084 * - provide the option of adding the new mount to an expiration list
1086 int do_add_mount(struct vfsmount
*newmnt
, struct nameidata
*nd
,
1087 int mnt_flags
, struct list_head
*fslist
)
1091 down_write(&namespace_sem
);
1092 /* Something was mounted here while we slept */
1093 while (d_mountpoint(nd
->dentry
) && follow_down(&nd
->mnt
, &nd
->dentry
))
1096 if (!check_mnt(nd
->mnt
))
1099 /* Refuse the same filesystem on the same mount point */
1101 if (nd
->mnt
->mnt_sb
== newmnt
->mnt_sb
&&
1102 nd
->mnt
->mnt_root
== nd
->dentry
)
1106 if (S_ISLNK(newmnt
->mnt_root
->d_inode
->i_mode
))
1109 newmnt
->mnt_flags
= mnt_flags
;
1110 if ((err
= graft_tree(newmnt
, nd
)))
1114 /* add to the specified expiration list */
1115 spin_lock(&vfsmount_lock
);
1116 list_add_tail(&newmnt
->mnt_expire
, fslist
);
1117 spin_unlock(&vfsmount_lock
);
1119 up_write(&namespace_sem
);
1123 up_write(&namespace_sem
);
1128 EXPORT_SYMBOL_GPL(do_add_mount
);
1130 static void expire_mount(struct vfsmount
*mnt
, struct list_head
*mounts
,
1131 struct list_head
*umounts
)
1133 spin_lock(&vfsmount_lock
);
1136 * Check if mount is still attached, if not, let whoever holds it deal
1139 if (mnt
->mnt_parent
== mnt
) {
1140 spin_unlock(&vfsmount_lock
);
1145 * Check that it is still dead: the count should now be 2 - as
1146 * contributed by the vfsmount parent and the mntget above
1148 if (!propagate_mount_busy(mnt
, 2)) {
1149 /* delete from the namespace */
1150 touch_mnt_namespace(mnt
->mnt_ns
);
1151 list_del_init(&mnt
->mnt_list
);
1153 umount_tree(mnt
, 1, umounts
);
1154 spin_unlock(&vfsmount_lock
);
1157 * Someone brought it back to life whilst we didn't have any
1158 * locks held so return it to the expiration list
1160 list_add_tail(&mnt
->mnt_expire
, mounts
);
1161 spin_unlock(&vfsmount_lock
);
1166 * go through the vfsmounts we've just consigned to the graveyard to
1167 * - check that they're still dead
1168 * - delete the vfsmount from the appropriate namespace under lock
1169 * - dispose of the corpse
1171 static void expire_mount_list(struct list_head
*graveyard
, struct list_head
*mounts
)
1173 struct mnt_namespace
*ns
;
1174 struct vfsmount
*mnt
;
1176 while (!list_empty(graveyard
)) {
1178 mnt
= list_first_entry(graveyard
, struct vfsmount
, mnt_expire
);
1179 list_del_init(&mnt
->mnt_expire
);
1181 /* don't do anything if the namespace is dead - all the
1182 * vfsmounts from it are going away anyway */
1184 if (!ns
|| !ns
->root
)
1188 spin_unlock(&vfsmount_lock
);
1189 down_write(&namespace_sem
);
1190 expire_mount(mnt
, mounts
, &umounts
);
1191 up_write(&namespace_sem
);
1192 release_mounts(&umounts
);
1195 spin_lock(&vfsmount_lock
);
1200 * process a list of expirable mountpoints with the intent of discarding any
1201 * mountpoints that aren't in use and haven't been touched since last we came
1204 void mark_mounts_for_expiry(struct list_head
*mounts
)
1206 struct vfsmount
*mnt
, *next
;
1207 LIST_HEAD(graveyard
);
1209 if (list_empty(mounts
))
1212 spin_lock(&vfsmount_lock
);
1214 /* extract from the expiration list every vfsmount that matches the
1215 * following criteria:
1216 * - only referenced by its parent vfsmount
1217 * - still marked for expiry (marked on the last call here; marks are
1218 * cleared by mntput())
1220 list_for_each_entry_safe(mnt
, next
, mounts
, mnt_expire
) {
1221 if (!xchg(&mnt
->mnt_expiry_mark
, 1) ||
1222 atomic_read(&mnt
->mnt_count
) != 1)
1226 list_move(&mnt
->mnt_expire
, &graveyard
);
1229 expire_mount_list(&graveyard
, mounts
);
1231 spin_unlock(&vfsmount_lock
);
1234 EXPORT_SYMBOL_GPL(mark_mounts_for_expiry
);
1237 * Ripoff of 'select_parent()'
1239 * search the list of submounts for a given mountpoint, and move any
1240 * shrinkable submounts to the 'graveyard' list.
1242 static int select_submounts(struct vfsmount
*parent
, struct list_head
*graveyard
)
1244 struct vfsmount
*this_parent
= parent
;
1245 struct list_head
*next
;
1249 next
= this_parent
->mnt_mounts
.next
;
1251 while (next
!= &this_parent
->mnt_mounts
) {
1252 struct list_head
*tmp
= next
;
1253 struct vfsmount
*mnt
= list_entry(tmp
, struct vfsmount
, mnt_child
);
1256 if (!(mnt
->mnt_flags
& MNT_SHRINKABLE
))
1259 * Descend a level if the d_mounts list is non-empty.
1261 if (!list_empty(&mnt
->mnt_mounts
)) {
1266 if (!propagate_mount_busy(mnt
, 1)) {
1268 list_move_tail(&mnt
->mnt_expire
, graveyard
);
1273 * All done at this level ... ascend and resume the search
1275 if (this_parent
!= parent
) {
1276 next
= this_parent
->mnt_child
.next
;
1277 this_parent
= this_parent
->mnt_parent
;
1284 * process a list of expirable mountpoints with the intent of discarding any
1285 * submounts of a specific parent mountpoint
1287 void shrink_submounts(struct vfsmount
*mountpoint
, struct list_head
*mounts
)
1289 LIST_HEAD(graveyard
);
1292 spin_lock(&vfsmount_lock
);
1294 /* extract submounts of 'mountpoint' from the expiration list */
1295 while ((found
= select_submounts(mountpoint
, &graveyard
)) != 0)
1296 expire_mount_list(&graveyard
, mounts
);
1298 spin_unlock(&vfsmount_lock
);
1301 EXPORT_SYMBOL_GPL(shrink_submounts
);
1304 * Some copy_from_user() implementations do not return the exact number of
1305 * bytes remaining to copy on a fault. But copy_mount_options() requires that.
1306 * Note that this function differs from copy_from_user() in that it will oops
1307 * on bad values of `to', rather than returning a short copy.
1309 static long exact_copy_from_user(void *to
, const void __user
* from
,
1313 const char __user
*f
= from
;
1316 if (!access_ok(VERIFY_READ
, from
, n
))
1320 if (__get_user(c
, f
)) {
1331 int copy_mount_options(const void __user
* data
, unsigned long *where
)
1341 if (!(page
= __get_free_page(GFP_KERNEL
)))
1344 /* We only care that *some* data at the address the user
1345 * gave us is valid. Just in case, we'll zero
1346 * the remainder of the page.
1348 /* copy_from_user cannot cross TASK_SIZE ! */
1349 size
= TASK_SIZE
- (unsigned long)data
;
1350 if (size
> PAGE_SIZE
)
1353 i
= size
- exact_copy_from_user((void *)page
, data
, size
);
1359 memset((char *)page
+ i
, 0, PAGE_SIZE
- i
);
1365 * Flags is a 32-bit value that allows up to 31 non-fs dependent flags to
1366 * be given to the mount() call (ie: read-only, no-dev, no-suid etc).
1368 * data is a (void *) that can point to any structure up to
1369 * PAGE_SIZE-1 bytes, which can contain arbitrary fs-dependent
1370 * information (or be NULL).
1372 * Pre-0.97 versions of mount() didn't have a flags word.
1373 * When the flags word was introduced its top half was required
1374 * to have the magic value 0xC0ED, and this remained so until 2.4.0-test9.
1375 * Therefore, if this magic number is present, it carries no information
1376 * and must be discarded.
1378 long do_mount(char *dev_name
, char *dir_name
, char *type_page
,
1379 unsigned long flags
, void *data_page
)
1381 struct nameidata nd
;
1386 if ((flags
& MS_MGC_MSK
) == MS_MGC_VAL
)
1387 flags
&= ~MS_MGC_MSK
;
1389 /* Basic sanity checks */
1391 if (!dir_name
|| !*dir_name
|| !memchr(dir_name
, 0, PAGE_SIZE
))
1393 if (dev_name
&& !memchr(dev_name
, 0, PAGE_SIZE
))
1397 ((char *)data_page
)[PAGE_SIZE
- 1] = 0;
1399 /* Separate the per-mountpoint flags */
1400 if (flags
& MS_NOSUID
)
1401 mnt_flags
|= MNT_NOSUID
;
1402 if (flags
& MS_NODEV
)
1403 mnt_flags
|= MNT_NODEV
;
1404 if (flags
& MS_NOEXEC
)
1405 mnt_flags
|= MNT_NOEXEC
;
1406 if (flags
& MS_NOATIME
)
1407 mnt_flags
|= MNT_NOATIME
;
1408 if (flags
& MS_NODIRATIME
)
1409 mnt_flags
|= MNT_NODIRATIME
;
1410 if (flags
& MS_RELATIME
)
1411 mnt_flags
|= MNT_RELATIME
;
1413 flags
&= ~(MS_NOSUID
| MS_NOEXEC
| MS_NODEV
| MS_ACTIVE
|
1414 MS_NOATIME
| MS_NODIRATIME
| MS_RELATIME
);
1416 /* ... and get the mountpoint */
1417 retval
= path_lookup(dir_name
, LOOKUP_FOLLOW
, &nd
);
1421 retval
= security_sb_mount(dev_name
, &nd
, type_page
, flags
, data_page
);
1425 if (flags
& MS_REMOUNT
)
1426 retval
= do_remount(&nd
, flags
& ~MS_REMOUNT
, mnt_flags
,
1428 else if (flags
& MS_BIND
)
1429 retval
= do_loopback(&nd
, dev_name
, flags
& MS_REC
);
1430 else if (flags
& (MS_SHARED
| MS_PRIVATE
| MS_SLAVE
| MS_UNBINDABLE
))
1431 retval
= do_change_type(&nd
, flags
);
1432 else if (flags
& MS_MOVE
)
1433 retval
= do_move_mount(&nd
, dev_name
);
1435 retval
= do_new_mount(&nd
, type_page
, flags
, mnt_flags
,
1436 dev_name
, data_page
);
1443 * Allocate a new namespace structure and populate it with contents
1444 * copied from the namespace of the passed in task structure.
1446 static struct mnt_namespace
*dup_mnt_ns(struct mnt_namespace
*mnt_ns
,
1447 struct fs_struct
*fs
)
1449 struct mnt_namespace
*new_ns
;
1450 struct vfsmount
*rootmnt
= NULL
, *pwdmnt
= NULL
, *altrootmnt
= NULL
;
1451 struct vfsmount
*p
, *q
;
1453 new_ns
= kmalloc(sizeof(struct mnt_namespace
), GFP_KERNEL
);
1455 return ERR_PTR(-ENOMEM
);
1457 atomic_set(&new_ns
->count
, 1);
1458 INIT_LIST_HEAD(&new_ns
->list
);
1459 init_waitqueue_head(&new_ns
->poll
);
1462 down_write(&namespace_sem
);
1463 /* First pass: copy the tree topology */
1464 new_ns
->root
= copy_tree(mnt_ns
->root
, mnt_ns
->root
->mnt_root
,
1465 CL_COPY_ALL
| CL_EXPIRE
);
1466 if (!new_ns
->root
) {
1467 up_write(&namespace_sem
);
1469 return ERR_PTR(-ENOMEM
);;
1471 spin_lock(&vfsmount_lock
);
1472 list_add_tail(&new_ns
->list
, &new_ns
->root
->mnt_list
);
1473 spin_unlock(&vfsmount_lock
);
1476 * Second pass: switch the tsk->fs->* elements and mark new vfsmounts
1477 * as belonging to new namespace. We have already acquired a private
1478 * fs_struct, so tsk->fs->lock is not needed.
1485 if (p
== fs
->rootmnt
) {
1487 fs
->rootmnt
= mntget(q
);
1489 if (p
== fs
->pwdmnt
) {
1491 fs
->pwdmnt
= mntget(q
);
1493 if (p
== fs
->altrootmnt
) {
1495 fs
->altrootmnt
= mntget(q
);
1498 p
= next_mnt(p
, mnt_ns
->root
);
1499 q
= next_mnt(q
, new_ns
->root
);
1501 up_write(&namespace_sem
);
1513 struct mnt_namespace
*copy_mnt_ns(unsigned long flags
, struct mnt_namespace
*ns
,
1514 struct fs_struct
*new_fs
)
1516 struct mnt_namespace
*new_ns
;
1521 if (!(flags
& CLONE_NEWNS
))
1524 new_ns
= dup_mnt_ns(ns
, new_fs
);
1530 asmlinkage
long sys_mount(char __user
* dev_name
, char __user
* dir_name
,
1531 char __user
* type
, unsigned long flags
,
1535 unsigned long data_page
;
1536 unsigned long type_page
;
1537 unsigned long dev_page
;
1540 retval
= copy_mount_options(type
, &type_page
);
1544 dir_page
= getname(dir_name
);
1545 retval
= PTR_ERR(dir_page
);
1546 if (IS_ERR(dir_page
))
1549 retval
= copy_mount_options(dev_name
, &dev_page
);
1553 retval
= copy_mount_options(data
, &data_page
);
1558 retval
= do_mount((char *)dev_page
, dir_page
, (char *)type_page
,
1559 flags
, (void *)data_page
);
1561 free_page(data_page
);
1564 free_page(dev_page
);
1568 free_page(type_page
);
1573 * Replace the fs->{rootmnt,root} with {mnt,dentry}. Put the old values.
1574 * It can block. Requires the big lock held.
1576 void set_fs_root(struct fs_struct
*fs
, struct vfsmount
*mnt
,
1577 struct dentry
*dentry
)
1579 struct dentry
*old_root
;
1580 struct vfsmount
*old_rootmnt
;
1581 write_lock(&fs
->lock
);
1582 old_root
= fs
->root
;
1583 old_rootmnt
= fs
->rootmnt
;
1584 fs
->rootmnt
= mntget(mnt
);
1585 fs
->root
= dget(dentry
);
1586 write_unlock(&fs
->lock
);
1589 mntput(old_rootmnt
);
1594 * Replace the fs->{pwdmnt,pwd} with {mnt,dentry}. Put the old values.
1595 * It can block. Requires the big lock held.
1597 void set_fs_pwd(struct fs_struct
*fs
, struct vfsmount
*mnt
,
1598 struct dentry
*dentry
)
1600 struct dentry
*old_pwd
;
1601 struct vfsmount
*old_pwdmnt
;
1603 write_lock(&fs
->lock
);
1605 old_pwdmnt
= fs
->pwdmnt
;
1606 fs
->pwdmnt
= mntget(mnt
);
1607 fs
->pwd
= dget(dentry
);
1608 write_unlock(&fs
->lock
);
1616 static void chroot_fs_refs(struct nameidata
*old_nd
, struct nameidata
*new_nd
)
1618 struct task_struct
*g
, *p
;
1619 struct fs_struct
*fs
;
1621 read_lock(&tasklist_lock
);
1622 do_each_thread(g
, p
) {
1626 atomic_inc(&fs
->count
);
1628 if (fs
->root
== old_nd
->dentry
1629 && fs
->rootmnt
== old_nd
->mnt
)
1630 set_fs_root(fs
, new_nd
->mnt
, new_nd
->dentry
);
1631 if (fs
->pwd
== old_nd
->dentry
1632 && fs
->pwdmnt
== old_nd
->mnt
)
1633 set_fs_pwd(fs
, new_nd
->mnt
, new_nd
->dentry
);
1637 } while_each_thread(g
, p
);
1638 read_unlock(&tasklist_lock
);
1642 * pivot_root Semantics:
1643 * Moves the root file system of the current process to the directory put_old,
1644 * makes new_root as the new root file system of the current process, and sets
1645 * root/cwd of all processes which had them on the current root to new_root.
1648 * The new_root and put_old must be directories, and must not be on the
1649 * same file system as the current process root. The put_old must be
1650 * underneath new_root, i.e. adding a non-zero number of /.. to the string
1651 * pointed to by put_old must yield the same directory as new_root. No other
1652 * file system may be mounted on put_old. After all, new_root is a mountpoint.
1654 * Also, the current root cannot be on the 'rootfs' (initial ramfs) filesystem.
1655 * See Documentation/filesystems/ramfs-rootfs-initramfs.txt for alternatives
1656 * in this situation.
1659 * - we don't move root/cwd if they are not at the root (reason: if something
1660 * cared enough to change them, it's probably wrong to force them elsewhere)
1661 * - it's okay to pick a root that isn't the root of a file system, e.g.
1662 * /nfs/my_root where /nfs is the mount point. It must be a mountpoint,
1663 * though, so you may need to say mount --bind /nfs/my_root /nfs/my_root
1666 asmlinkage
long sys_pivot_root(const char __user
* new_root
,
1667 const char __user
* put_old
)
1669 struct vfsmount
*tmp
;
1670 struct nameidata new_nd
, old_nd
, parent_nd
, root_parent
, user_nd
;
1673 if (!capable(CAP_SYS_ADMIN
))
1678 error
= __user_walk(new_root
, LOOKUP_FOLLOW
| LOOKUP_DIRECTORY
,
1683 if (!check_mnt(new_nd
.mnt
))
1686 error
= __user_walk(put_old
, LOOKUP_FOLLOW
| LOOKUP_DIRECTORY
, &old_nd
);
1690 error
= security_sb_pivotroot(&old_nd
, &new_nd
);
1692 path_release(&old_nd
);
1696 read_lock(¤t
->fs
->lock
);
1697 user_nd
.mnt
= mntget(current
->fs
->rootmnt
);
1698 user_nd
.dentry
= dget(current
->fs
->root
);
1699 read_unlock(¤t
->fs
->lock
);
1700 down_write(&namespace_sem
);
1701 mutex_lock(&old_nd
.dentry
->d_inode
->i_mutex
);
1703 if (IS_MNT_SHARED(old_nd
.mnt
) ||
1704 IS_MNT_SHARED(new_nd
.mnt
->mnt_parent
) ||
1705 IS_MNT_SHARED(user_nd
.mnt
->mnt_parent
))
1707 if (!check_mnt(user_nd
.mnt
))
1710 if (IS_DEADDIR(new_nd
.dentry
->d_inode
))
1712 if (d_unhashed(new_nd
.dentry
) && !IS_ROOT(new_nd
.dentry
))
1714 if (d_unhashed(old_nd
.dentry
) && !IS_ROOT(old_nd
.dentry
))
1717 if (new_nd
.mnt
== user_nd
.mnt
|| old_nd
.mnt
== user_nd
.mnt
)
1718 goto out2
; /* loop, on the same file system */
1720 if (user_nd
.mnt
->mnt_root
!= user_nd
.dentry
)
1721 goto out2
; /* not a mountpoint */
1722 if (user_nd
.mnt
->mnt_parent
== user_nd
.mnt
)
1723 goto out2
; /* not attached */
1724 if (new_nd
.mnt
->mnt_root
!= new_nd
.dentry
)
1725 goto out2
; /* not a mountpoint */
1726 if (new_nd
.mnt
->mnt_parent
== new_nd
.mnt
)
1727 goto out2
; /* not attached */
1728 tmp
= old_nd
.mnt
; /* make sure we can reach put_old from new_root */
1729 spin_lock(&vfsmount_lock
);
1730 if (tmp
!= new_nd
.mnt
) {
1732 if (tmp
->mnt_parent
== tmp
)
1733 goto out3
; /* already mounted on put_old */
1734 if (tmp
->mnt_parent
== new_nd
.mnt
)
1736 tmp
= tmp
->mnt_parent
;
1738 if (!is_subdir(tmp
->mnt_mountpoint
, new_nd
.dentry
))
1740 } else if (!is_subdir(old_nd
.dentry
, new_nd
.dentry
))
1742 detach_mnt(new_nd
.mnt
, &parent_nd
);
1743 detach_mnt(user_nd
.mnt
, &root_parent
);
1744 attach_mnt(user_nd
.mnt
, &old_nd
); /* mount old root on put_old */
1745 attach_mnt(new_nd
.mnt
, &root_parent
); /* mount new_root on / */
1746 touch_mnt_namespace(current
->nsproxy
->mnt_ns
);
1747 spin_unlock(&vfsmount_lock
);
1748 chroot_fs_refs(&user_nd
, &new_nd
);
1749 security_sb_post_pivotroot(&user_nd
, &new_nd
);
1751 path_release(&root_parent
);
1752 path_release(&parent_nd
);
1754 mutex_unlock(&old_nd
.dentry
->d_inode
->i_mutex
);
1755 up_write(&namespace_sem
);
1756 path_release(&user_nd
);
1757 path_release(&old_nd
);
1759 path_release(&new_nd
);
1764 spin_unlock(&vfsmount_lock
);
1768 static void __init
init_mount_tree(void)
1770 struct vfsmount
*mnt
;
1771 struct mnt_namespace
*ns
;
1773 mnt
= do_kern_mount("rootfs", 0, "rootfs", NULL
);
1775 panic("Can't create rootfs");
1776 ns
= kmalloc(sizeof(*ns
), GFP_KERNEL
);
1778 panic("Can't allocate initial namespace");
1779 atomic_set(&ns
->count
, 1);
1780 INIT_LIST_HEAD(&ns
->list
);
1781 init_waitqueue_head(&ns
->poll
);
1783 list_add(&mnt
->mnt_list
, &ns
->list
);
1787 init_task
.nsproxy
->mnt_ns
= ns
;
1790 set_fs_pwd(current
->fs
, ns
->root
, ns
->root
->mnt_root
);
1791 set_fs_root(current
->fs
, ns
->root
, ns
->root
->mnt_root
);
1794 void __init
mnt_init(unsigned long mempages
)
1796 struct list_head
*d
;
1797 unsigned int nr_hash
;
1801 init_rwsem(&namespace_sem
);
1803 mnt_cache
= kmem_cache_create("mnt_cache", sizeof(struct vfsmount
),
1804 0, SLAB_HWCACHE_ALIGN
| SLAB_PANIC
, NULL
);
1806 mount_hashtable
= (struct list_head
*)__get_free_page(GFP_ATOMIC
);
1808 if (!mount_hashtable
)
1809 panic("Failed to allocate mount hash table\n");
1812 * Find the power-of-two list-heads that can fit into the allocation..
1813 * We don't guarantee that "sizeof(struct list_head)" is necessarily
1816 nr_hash
= PAGE_SIZE
/ sizeof(struct list_head
);
1820 } while ((nr_hash
>> hash_bits
) != 0);
1824 * Re-calculate the actual number of entries and the mask
1825 * from the number of bits we can fit.
1827 nr_hash
= 1UL << hash_bits
;
1828 hash_mask
= nr_hash
- 1;
1830 printk("Mount-cache hash table entries: %d\n", nr_hash
);
1832 /* And initialize the newly allocated array */
1833 d
= mount_hashtable
;
1842 printk(KERN_WARNING
"%s: sysfs_init error: %d\n",
1844 err
= subsystem_register(&fs_subsys
);
1846 printk(KERN_WARNING
"%s: subsystem_register error: %d\n",
1852 void __put_mnt_ns(struct mnt_namespace
*ns
)
1854 struct vfsmount
*root
= ns
->root
;
1855 LIST_HEAD(umount_list
);
1857 spin_unlock(&vfsmount_lock
);
1858 down_write(&namespace_sem
);
1859 spin_lock(&vfsmount_lock
);
1860 umount_tree(root
, 0, &umount_list
);
1861 spin_unlock(&vfsmount_lock
);
1862 up_write(&namespace_sem
);
1863 release_mounts(&umount_list
);