blob: 6bb0b85293e700d26cc582a6970ced853d968dfb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/namespace.c
3 *
4 * (C) Copyright Al Viro 2000, 2001
5 * Released under GPL v2.
6 *
7 * Based on code from fs/super.c, copyright Linus Torvalds and others.
8 * Heavily rewritten.
9 */
10
11#include <linux/config.h>
12#include <linux/syscalls.h>
13#include <linux/slab.h>
14#include <linux/sched.h>
15#include <linux/smp_lock.h>
16#include <linux/init.h>
17#include <linux/quotaops.h>
18#include <linux/acct.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080019#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/module.h>
21#include <linux/seq_file.h>
22#include <linux/namespace.h>
23#include <linux/namei.h>
24#include <linux/security.h>
25#include <linux/mount.h>
26#include <asm/uaccess.h>
27#include <asm/unistd.h>
Ram Pai07b20882005-11-07 17:19:07 -050028#include "pnode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30extern int __init init_rootfs(void);
31
32#ifdef CONFIG_SYSFS
33extern int __init sysfs_init(void);
34#else
35static inline int sysfs_init(void)
36{
37 return 0;
38}
39#endif
40
41/* spinlock for vfsmount related operations, inplace of dcache_lock */
Al Viro5addc5d2005-11-07 17:15:49 -050042__cacheline_aligned_in_smp DEFINE_SPINLOCK(vfsmount_lock);
43
44static int event;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Eric Dumazetfa3536c2006-03-26 01:37:24 -080046static struct list_head *mount_hashtable __read_mostly;
Ravikiran G Thirumalai6c231b72005-09-06 15:17:45 -070047static int hash_mask __read_mostly, hash_bits __read_mostly;
Eric Dumazetfa3536c2006-03-26 01:37:24 -080048static kmem_cache_t *mnt_cache __read_mostly;
Ram Pai390c6842005-11-07 17:17:51 -050049static struct rw_semaphore namespace_sem;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Miklos Szeredif87fd4c2006-01-16 22:14:23 -080051/* /sys/fs */
52decl_subsys(fs, NULL, NULL);
53EXPORT_SYMBOL_GPL(fs_subsys);
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055static inline unsigned long hash(struct vfsmount *mnt, struct dentry *dentry)
56{
Ram Paib58fed82005-11-07 17:16:09 -050057 unsigned long tmp = ((unsigned long)mnt / L1_CACHE_BYTES);
58 tmp += ((unsigned long)dentry / L1_CACHE_BYTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 tmp = tmp + (tmp >> hash_bits);
60 return tmp & hash_mask;
61}
62
63struct vfsmount *alloc_vfsmnt(const char *name)
64{
Ram Paib58fed82005-11-07 17:16:09 -050065 struct vfsmount *mnt = kmem_cache_alloc(mnt_cache, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 if (mnt) {
67 memset(mnt, 0, sizeof(struct vfsmount));
Ram Paib58fed82005-11-07 17:16:09 -050068 atomic_set(&mnt->mnt_count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 INIT_LIST_HEAD(&mnt->mnt_hash);
70 INIT_LIST_HEAD(&mnt->mnt_child);
71 INIT_LIST_HEAD(&mnt->mnt_mounts);
72 INIT_LIST_HEAD(&mnt->mnt_list);
Miklos Szeredi55e700b2005-07-07 17:57:30 -070073 INIT_LIST_HEAD(&mnt->mnt_expire);
Ram Pai03e06e62005-11-07 17:19:33 -050074 INIT_LIST_HEAD(&mnt->mnt_share);
Ram Paia58b0eb2005-11-07 17:20:48 -050075 INIT_LIST_HEAD(&mnt->mnt_slave_list);
76 INIT_LIST_HEAD(&mnt->mnt_slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 if (name) {
Ram Paib58fed82005-11-07 17:16:09 -050078 int size = strlen(name) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 char *newname = kmalloc(size, GFP_KERNEL);
80 if (newname) {
81 memcpy(newname, name, size);
82 mnt->mnt_devname = newname;
83 }
84 }
85 }
86 return mnt;
87}
88
89void free_vfsmnt(struct vfsmount *mnt)
90{
91 kfree(mnt->mnt_devname);
92 kmem_cache_free(mnt_cache, mnt);
93}
94
95/*
Ram Paia05964f2005-11-07 17:20:17 -050096 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 */
Ram Paia05964f2005-11-07 17:20:17 -050099struct vfsmount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry,
100 int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
Ram Paib58fed82005-11-07 17:16:09 -0500102 struct list_head *head = mount_hashtable + hash(mnt, dentry);
103 struct list_head *tmp = head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 struct vfsmount *p, *found = NULL;
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 for (;;) {
Ram Paia05964f2005-11-07 17:20:17 -0500107 tmp = dir ? tmp->next : tmp->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 p = NULL;
109 if (tmp == head)
110 break;
111 p = list_entry(tmp, struct vfsmount, mnt_hash);
112 if (p->mnt_parent == mnt && p->mnt_mountpoint == dentry) {
Ram Paia05964f2005-11-07 17:20:17 -0500113 found = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 break;
115 }
116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 return found;
118}
119
Ram Paia05964f2005-11-07 17:20:17 -0500120/*
121 * lookup_mnt increments the ref count before returning
122 * the vfsmount struct.
123 */
124struct vfsmount *lookup_mnt(struct vfsmount *mnt, struct dentry *dentry)
125{
126 struct vfsmount *child_mnt;
127 spin_lock(&vfsmount_lock);
128 if ((child_mnt = __lookup_mnt(mnt, dentry, 1)))
129 mntget(child_mnt);
130 spin_unlock(&vfsmount_lock);
131 return child_mnt;
132}
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134static inline int check_mnt(struct vfsmount *mnt)
135{
136 return mnt->mnt_namespace == current->namespace;
137}
138
Al Viro5addc5d2005-11-07 17:15:49 -0500139static void touch_namespace(struct namespace *ns)
140{
141 if (ns) {
142 ns->event = ++event;
143 wake_up_interruptible(&ns->poll);
144 }
145}
146
147static void __touch_namespace(struct namespace *ns)
148{
149 if (ns && ns->event != event) {
150 ns->event = event;
151 wake_up_interruptible(&ns->poll);
152 }
153}
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155static void detach_mnt(struct vfsmount *mnt, struct nameidata *old_nd)
156{
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--;
164}
165
Ram Paib90fa9a2005-11-07 17:19:50 -0500166void mnt_set_mountpoint(struct vfsmount *mnt, struct dentry *dentry,
167 struct vfsmount *child_mnt)
168{
169 child_mnt->mnt_parent = mntget(mnt);
170 child_mnt->mnt_mountpoint = dget(dentry);
171 dentry->d_mounted++;
172}
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174static void attach_mnt(struct vfsmount *mnt, struct nameidata *nd)
175{
Ram Paib90fa9a2005-11-07 17:19:50 -0500176 mnt_set_mountpoint(nd->mnt, nd->dentry, mnt);
177 list_add_tail(&mnt->mnt_hash, mount_hashtable +
178 hash(nd->mnt, nd->dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 list_add_tail(&mnt->mnt_child, &nd->mnt->mnt_mounts);
Ram Paib90fa9a2005-11-07 17:19:50 -0500180}
181
182/*
183 * the caller must hold vfsmount_lock
184 */
185static void commit_tree(struct vfsmount *mnt)
186{
187 struct vfsmount *parent = mnt->mnt_parent;
188 struct vfsmount *m;
189 LIST_HEAD(head);
190 struct namespace *n = parent->mnt_namespace;
191
192 BUG_ON(parent == mnt);
193
194 list_add_tail(&head, &mnt->mnt_list);
195 list_for_each_entry(m, &head, mnt_list)
196 m->mnt_namespace = n;
197 list_splice(&head, n->list.prev);
198
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_namespace(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
205static struct vfsmount *next_mnt(struct vfsmount *p, struct vfsmount *root)
206{
207 struct list_head *next = p->mnt_mounts.next;
208 if (next == &p->mnt_mounts) {
209 while (1) {
210 if (p == root)
211 return NULL;
212 next = p->mnt_child.next;
213 if (next != &p->mnt_parent->mnt_mounts)
214 break;
215 p = p->mnt_parent;
216 }
217 }
218 return list_entry(next, struct vfsmount, mnt_child);
219}
220
Ram Pai9676f0c2005-11-07 17:21:20 -0500221static struct vfsmount *skip_mnt_tree(struct vfsmount *p)
222{
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;
227 }
228 return p;
229}
230
Ram Pai36341f62005-11-07 17:17:22 -0500231static struct vfsmount *clone_mnt(struct vfsmount *old, struct dentry *root,
232 int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 struct super_block *sb = old->mnt_sb;
235 struct vfsmount *mnt = alloc_vfsmnt(old->mnt_devname);
236
237 if (mnt) {
238 mnt->mnt_flags = old->mnt_flags;
239 atomic_inc(&sb->s_active);
240 mnt->mnt_sb = sb;
241 mnt->mnt_root = dget(root);
242 mnt->mnt_mountpoint = mnt->mnt_root;
243 mnt->mnt_parent = mnt;
Ram Paib90fa9a2005-11-07 17:19:50 -0500244
Ram Pai5afe0022005-11-07 17:21:01 -0500245 if (flag & CL_SLAVE) {
246 list_add(&mnt->mnt_slave, &old->mnt_slave_list);
247 mnt->mnt_master = old;
248 CLEAR_MNT_SHARED(mnt);
249 } else {
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;
255 }
Ram Paib90fa9a2005-11-07 17:19:50 -0500256 if (flag & CL_MAKE_SHARED)
257 set_mnt_shared(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 /* stick the duplicate mount on the same expiry list
260 * as the original if that was on one */
Ram Pai36341f62005-11-07 17:17:22 -0500261 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);
266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 }
268 return mnt;
269}
270
Al Viro7b7b1ac2005-11-07 17:13:39 -0500271static inline void __mntput(struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
273 struct super_block *sb = mnt->mnt_sb;
274 dput(mnt->mnt_root);
275 free_vfsmnt(mnt);
276 deactivate_super(sb);
277}
278
Al Viro7b7b1ac2005-11-07 17:13:39 -0500279void mntput_no_expire(struct vfsmount *mnt)
280{
281repeat:
282 if (atomic_dec_and_lock(&mnt->mnt_count, &vfsmount_lock)) {
283 if (likely(!mnt->mnt_pinned)) {
284 spin_unlock(&vfsmount_lock);
285 __mntput(mnt);
286 return;
287 }
288 atomic_add(mnt->mnt_pinned + 1, &mnt->mnt_count);
289 mnt->mnt_pinned = 0;
290 spin_unlock(&vfsmount_lock);
291 acct_auto_close_mnt(mnt);
292 security_sb_umount_close(mnt);
293 goto repeat;
294 }
295}
296
297EXPORT_SYMBOL(mntput_no_expire);
298
299void mnt_pin(struct vfsmount *mnt)
300{
301 spin_lock(&vfsmount_lock);
302 mnt->mnt_pinned++;
303 spin_unlock(&vfsmount_lock);
304}
305
306EXPORT_SYMBOL(mnt_pin);
307
308void mnt_unpin(struct vfsmount *mnt)
309{
310 spin_lock(&vfsmount_lock);
311 if (mnt->mnt_pinned) {
312 atomic_inc(&mnt->mnt_count);
313 mnt->mnt_pinned--;
314 }
315 spin_unlock(&vfsmount_lock);
316}
317
318EXPORT_SYMBOL(mnt_unpin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320/* iterator */
321static void *m_start(struct seq_file *m, loff_t *pos)
322{
323 struct namespace *n = m->private;
324 struct list_head *p;
325 loff_t l = *pos;
326
Ram Pai390c6842005-11-07 17:17:51 -0500327 down_read(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 list_for_each(p, &n->list)
329 if (!l--)
330 return list_entry(p, struct vfsmount, mnt_list);
331 return NULL;
332}
333
334static void *m_next(struct seq_file *m, void *v, loff_t *pos)
335{
336 struct namespace *n = m->private;
337 struct list_head *p = ((struct vfsmount *)v)->mnt_list.next;
338 (*pos)++;
Ram Paib58fed82005-11-07 17:16:09 -0500339 return p == &n->list ? NULL : list_entry(p, struct vfsmount, mnt_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
342static void m_stop(struct seq_file *m, void *v)
343{
Ram Pai390c6842005-11-07 17:17:51 -0500344 up_read(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
346
347static inline void mangle(struct seq_file *m, const char *s)
348{
349 seq_escape(m, s, " \t\n\\");
350}
351
352static int show_vfsmnt(struct seq_file *m, void *v)
353{
354 struct vfsmount *mnt = v;
355 int err = 0;
356 static struct proc_fs_info {
357 int flag;
358 char *str;
359 } fs_info[] = {
360 { MS_SYNCHRONOUS, ",sync" },
361 { MS_DIRSYNC, ",dirsync" },
362 { MS_MANDLOCK, ",mand" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 { 0, NULL }
364 };
365 static struct proc_fs_info mnt_info[] = {
366 { MNT_NOSUID, ",nosuid" },
367 { MNT_NODEV, ",nodev" },
368 { MNT_NOEXEC, ",noexec" },
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -0800369 { MNT_NOATIME, ",noatime" },
370 { MNT_NODIRATIME, ",nodiratime" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 { 0, NULL }
372 };
373 struct proc_fs_info *fs_infop;
374
375 mangle(m, mnt->mnt_devname ? mnt->mnt_devname : "none");
376 seq_putc(m, ' ');
377 seq_path(m, mnt, mnt->mnt_root, " \t\n\\");
378 seq_putc(m, ' ');
379 mangle(m, mnt->mnt_sb->s_type->name);
380 seq_puts(m, mnt->mnt_sb->s_flags & MS_RDONLY ? " ro" : " rw");
381 for (fs_infop = fs_info; fs_infop->flag; fs_infop++) {
382 if (mnt->mnt_sb->s_flags & fs_infop->flag)
383 seq_puts(m, fs_infop->str);
384 }
385 for (fs_infop = mnt_info; fs_infop->flag; fs_infop++) {
386 if (mnt->mnt_flags & fs_infop->flag)
387 seq_puts(m, fs_infop->str);
388 }
389 if (mnt->mnt_sb->s_op->show_options)
390 err = mnt->mnt_sb->s_op->show_options(m, mnt);
391 seq_puts(m, " 0 0\n");
392 return err;
393}
394
395struct seq_operations mounts_op = {
396 .start = m_start,
397 .next = m_next,
398 .stop = m_stop,
399 .show = show_vfsmnt
400};
401
Chuck Leverb4629fe2006-03-20 13:44:12 -0500402static int show_vfsstat(struct seq_file *m, void *v)
403{
404 struct vfsmount *mnt = v;
405 int err = 0;
406
407 /* device */
408 if (mnt->mnt_devname) {
409 seq_puts(m, "device ");
410 mangle(m, mnt->mnt_devname);
411 } else
412 seq_puts(m, "no device");
413
414 /* mount point */
415 seq_puts(m, " mounted on ");
416 seq_path(m, mnt, mnt->mnt_root, " \t\n\\");
417 seq_putc(m, ' ');
418
419 /* file system type */
420 seq_puts(m, "with fstype ");
421 mangle(m, mnt->mnt_sb->s_type->name);
422
423 /* optional statistics */
424 if (mnt->mnt_sb->s_op->show_stats) {
425 seq_putc(m, ' ');
426 err = mnt->mnt_sb->s_op->show_stats(m, mnt);
427 }
428
429 seq_putc(m, '\n');
430 return err;
431}
432
433struct seq_operations mountstats_op = {
434 .start = m_start,
435 .next = m_next,
436 .stop = m_stop,
437 .show = show_vfsstat,
438};
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440/**
441 * may_umount_tree - check if a mount tree is busy
442 * @mnt: root of mount tree
443 *
444 * This is called to check if a tree of mounts has any
445 * open files, pwds, chroots or sub mounts that are
446 * busy.
447 */
448int may_umount_tree(struct vfsmount *mnt)
449{
Ram Pai36341f62005-11-07 17:17:22 -0500450 int actual_refs = 0;
451 int minimum_refs = 0;
452 struct vfsmount *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 spin_lock(&vfsmount_lock);
Ram Pai36341f62005-11-07 17:17:22 -0500455 for (p = mnt; p; p = next_mnt(p, mnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 actual_refs += atomic_read(&p->mnt_count);
457 minimum_refs += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
459 spin_unlock(&vfsmount_lock);
460
461 if (actual_refs > minimum_refs)
Ian Kente3474a82006-03-27 01:14:51 -0800462 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Ian Kente3474a82006-03-27 01:14:51 -0800464 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
467EXPORT_SYMBOL(may_umount_tree);
468
469/**
470 * may_umount - check if a mount point is busy
471 * @mnt: root of mount
472 *
473 * This is called to check if a mount point has any
474 * open files, pwds, chroots or sub mounts. If the
475 * mount has sub mounts this will return busy
476 * regardless of whether the sub mounts are busy.
477 *
478 * Doesn't take quota and stuff into account. IOW, in some cases it will
479 * give false negatives. The main reason why it's here is that we need
480 * a non-destructive way to look for easily umountable filesystems.
481 */
482int may_umount(struct vfsmount *mnt)
483{
Ian Kente3474a82006-03-27 01:14:51 -0800484 int ret = 1;
Ram Paia05964f2005-11-07 17:20:17 -0500485 spin_lock(&vfsmount_lock);
486 if (propagate_mount_busy(mnt, 2))
Ian Kente3474a82006-03-27 01:14:51 -0800487 ret = 0;
Ram Paia05964f2005-11-07 17:20:17 -0500488 spin_unlock(&vfsmount_lock);
489 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
492EXPORT_SYMBOL(may_umount);
493
Ram Paib90fa9a2005-11-07 17:19:50 -0500494void release_mounts(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
Ram Pai70fbcdf2005-11-07 17:17:04 -0500496 struct vfsmount *mnt;
Miklos Szeredibf066c72006-01-08 01:03:19 -0800497 while (!list_empty(head)) {
Ram Pai70fbcdf2005-11-07 17:17:04 -0500498 mnt = list_entry(head->next, struct vfsmount, mnt_hash);
499 list_del_init(&mnt->mnt_hash);
500 if (mnt->mnt_parent != mnt) {
501 struct dentry *dentry;
502 struct vfsmount *m;
503 spin_lock(&vfsmount_lock);
504 dentry = mnt->mnt_mountpoint;
505 m = mnt->mnt_parent;
506 mnt->mnt_mountpoint = mnt->mnt_root;
507 mnt->mnt_parent = mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 spin_unlock(&vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -0500509 dput(dentry);
510 mntput(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512 mntput(mnt);
Ram Pai70fbcdf2005-11-07 17:17:04 -0500513 }
514}
515
Ram Paia05964f2005-11-07 17:20:17 -0500516void umount_tree(struct vfsmount *mnt, int propagate, struct list_head *kill)
Ram Pai70fbcdf2005-11-07 17:17:04 -0500517{
518 struct vfsmount *p;
519
520 for (p = mnt; p; p = next_mnt(p, mnt)) {
521 list_del(&p->mnt_hash);
522 list_add(&p->mnt_hash, kill);
523 }
524
Ram Paia05964f2005-11-07 17:20:17 -0500525 if (propagate)
526 propagate_umount(kill);
527
Ram Pai70fbcdf2005-11-07 17:17:04 -0500528 list_for_each_entry(p, kill, mnt_hash) {
529 list_del_init(&p->mnt_expire);
530 list_del_init(&p->mnt_list);
531 __touch_namespace(p->mnt_namespace);
532 p->mnt_namespace = NULL;
533 list_del_init(&p->mnt_child);
534 if (p->mnt_parent != p)
Al Virof30ac312006-02-01 07:53:21 -0500535 p->mnt_mountpoint->d_mounted--;
Ram Paia05964f2005-11-07 17:20:17 -0500536 change_mnt_propagation(p, MS_PRIVATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
538}
539
540static int do_umount(struct vfsmount *mnt, int flags)
541{
Ram Paib58fed82005-11-07 17:16:09 -0500542 struct super_block *sb = mnt->mnt_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 int retval;
Ram Pai70fbcdf2005-11-07 17:17:04 -0500544 LIST_HEAD(umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 retval = security_sb_umount(mnt, flags);
547 if (retval)
548 return retval;
549
550 /*
551 * Allow userspace to request a mountpoint be expired rather than
552 * unmounting unconditionally. Unmount only happens if:
553 * (1) the mark is already set (the mark is cleared by mntput())
554 * (2) the usage count == 1 [parent vfsmount] + 1 [sys_umount]
555 */
556 if (flags & MNT_EXPIRE) {
557 if (mnt == current->fs->rootmnt ||
558 flags & (MNT_FORCE | MNT_DETACH))
559 return -EINVAL;
560
561 if (atomic_read(&mnt->mnt_count) != 2)
562 return -EBUSY;
563
564 if (!xchg(&mnt->mnt_expiry_mark, 1))
565 return -EAGAIN;
566 }
567
568 /*
569 * If we may have to abort operations to get out of this
570 * mount, and they will themselves hold resources we must
571 * allow the fs to do things. In the Unix tradition of
572 * 'Gee thats tricky lets do it in userspace' the umount_begin
573 * might fail to complete on the first run through as other tasks
574 * must return, and the like. Thats for the mount program to worry
575 * about for the moment.
576 */
577
578 lock_kernel();
Trond Myklebust8b512d92006-06-09 09:34:18 -0400579 if (sb->s_op->umount_begin)
580 sb->s_op->umount_begin(mnt, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 unlock_kernel();
582
583 /*
584 * No sense to grab the lock for this test, but test itself looks
585 * somewhat bogus. Suggestions for better replacement?
586 * Ho-hum... In principle, we might treat that as umount + switch
587 * to rootfs. GC would eventually take care of the old vfsmount.
588 * Actually it makes sense, especially if rootfs would contain a
589 * /reboot - static binary that would close all descriptors and
590 * call reboot(9). Then init(8) could umount root and exec /reboot.
591 */
592 if (mnt == current->fs->rootmnt && !(flags & MNT_DETACH)) {
593 /*
594 * Special case for "unmounting" root ...
595 * we just try to remount it readonly.
596 */
597 down_write(&sb->s_umount);
598 if (!(sb->s_flags & MS_RDONLY)) {
599 lock_kernel();
600 DQUOT_OFF(sb);
601 retval = do_remount_sb(sb, MS_RDONLY, NULL, 0);
602 unlock_kernel();
603 }
604 up_write(&sb->s_umount);
605 return retval;
606 }
607
Ram Pai390c6842005-11-07 17:17:51 -0500608 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 spin_lock(&vfsmount_lock);
Al Viro5addc5d2005-11-07 17:15:49 -0500610 event++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 retval = -EBUSY;
Ram Paia05964f2005-11-07 17:20:17 -0500613 if (flags & MNT_DETACH || !propagate_mount_busy(mnt, 2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (!list_empty(&mnt->mnt_list))
Ram Paia05964f2005-11-07 17:20:17 -0500615 umount_tree(mnt, 1, &umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 retval = 0;
617 }
618 spin_unlock(&vfsmount_lock);
619 if (retval)
620 security_sb_umount_busy(mnt);
Ram Pai390c6842005-11-07 17:17:51 -0500621 up_write(&namespace_sem);
Ram Pai70fbcdf2005-11-07 17:17:04 -0500622 release_mounts(&umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return retval;
624}
625
626/*
627 * Now umount can handle mount points as well as block devices.
628 * This is important for filesystems which use unnamed block devices.
629 *
630 * We now support a flag for forced unmount like the other 'big iron'
631 * unixes. Our API is identical to OSF/1 to avoid making a mess of AMD
632 */
633
634asmlinkage long sys_umount(char __user * name, int flags)
635{
636 struct nameidata nd;
637 int retval;
638
639 retval = __user_walk(name, LOOKUP_FOLLOW, &nd);
640 if (retval)
641 goto out;
642 retval = -EINVAL;
643 if (nd.dentry != nd.mnt->mnt_root)
644 goto dput_and_out;
645 if (!check_mnt(nd.mnt))
646 goto dput_and_out;
647
648 retval = -EPERM;
649 if (!capable(CAP_SYS_ADMIN))
650 goto dput_and_out;
651
652 retval = do_umount(nd.mnt, flags);
653dput_and_out:
654 path_release_on_umount(&nd);
655out:
656 return retval;
657}
658
659#ifdef __ARCH_WANT_SYS_OLDUMOUNT
660
661/*
Ram Paib58fed82005-11-07 17:16:09 -0500662 * The 2.0 compatible umount. No flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664asmlinkage long sys_oldumount(char __user * name)
665{
Ram Paib58fed82005-11-07 17:16:09 -0500666 return sys_umount(name, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
669#endif
670
671static int mount_is_safe(struct nameidata *nd)
672{
673 if (capable(CAP_SYS_ADMIN))
674 return 0;
675 return -EPERM;
676#ifdef notyet
677 if (S_ISLNK(nd->dentry->d_inode->i_mode))
678 return -EPERM;
679 if (nd->dentry->d_inode->i_mode & S_ISVTX) {
680 if (current->uid != nd->dentry->d_inode->i_uid)
681 return -EPERM;
682 }
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800683 if (vfs_permission(nd, MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return -EPERM;
685 return 0;
686#endif
687}
688
Ram Paib58fed82005-11-07 17:16:09 -0500689static int lives_below_in_same_fs(struct dentry *d, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
691 while (1) {
692 if (d == dentry)
693 return 1;
694 if (d == NULL || d == d->d_parent)
695 return 0;
696 d = d->d_parent;
697 }
698}
699
Ram Paib90fa9a2005-11-07 17:19:50 -0500700struct vfsmount *copy_tree(struct vfsmount *mnt, struct dentry *dentry,
Ram Pai36341f62005-11-07 17:17:22 -0500701 int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
703 struct vfsmount *res, *p, *q, *r, *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 struct nameidata nd;
705
Ram Pai9676f0c2005-11-07 17:21:20 -0500706 if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(mnt))
707 return NULL;
708
Ram Pai36341f62005-11-07 17:17:22 -0500709 res = q = clone_mnt(mnt, dentry, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if (!q)
711 goto Enomem;
712 q->mnt_mountpoint = mnt->mnt_mountpoint;
713
714 p = mnt;
Domen Puncerfdadd652005-09-10 00:27:07 -0700715 list_for_each_entry(r, &mnt->mnt_mounts, mnt_child) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 if (!lives_below_in_same_fs(r->mnt_mountpoint, dentry))
717 continue;
718
719 for (s = r; s; s = next_mnt(s, r)) {
Ram Pai9676f0c2005-11-07 17:21:20 -0500720 if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(s)) {
721 s = skip_mnt_tree(s);
722 continue;
723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 while (p != s->mnt_parent) {
725 p = p->mnt_parent;
726 q = q->mnt_parent;
727 }
728 p = s;
729 nd.mnt = q;
730 nd.dentry = p->mnt_mountpoint;
Ram Pai36341f62005-11-07 17:17:22 -0500731 q = clone_mnt(p, p->mnt_root, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 if (!q)
733 goto Enomem;
734 spin_lock(&vfsmount_lock);
735 list_add_tail(&q->mnt_list, &res->mnt_list);
736 attach_mnt(q, &nd);
737 spin_unlock(&vfsmount_lock);
738 }
739 }
740 return res;
Ram Paib58fed82005-11-07 17:16:09 -0500741Enomem:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 if (res) {
Ram Pai70fbcdf2005-11-07 17:17:04 -0500743 LIST_HEAD(umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 spin_lock(&vfsmount_lock);
Ram Paia05964f2005-11-07 17:20:17 -0500745 umount_tree(res, 0, &umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 spin_unlock(&vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -0500747 release_mounts(&umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
749 return NULL;
750}
751
Ram Paib90fa9a2005-11-07 17:19:50 -0500752/*
753 * @source_mnt : mount tree to be attached
Ram Pai21444402005-11-07 17:20:03 -0500754 * @nd : place the mount tree @source_mnt is attached
755 * @parent_nd : if non-null, detach the source_mnt from its parent and
756 * store the parent mount and mountpoint dentry.
757 * (done when source_mnt is moved)
Ram Paib90fa9a2005-11-07 17:19:50 -0500758 *
759 * NOTE: in the table below explains the semantics when a source mount
760 * of a given type is attached to a destination mount of a given type.
Ram Pai9676f0c2005-11-07 17:21:20 -0500761 * ---------------------------------------------------------------------------
762 * | BIND MOUNT OPERATION |
763 * |**************************************************************************
764 * | source-->| shared | private | slave | unbindable |
765 * | dest | | | | |
766 * | | | | | | |
767 * | v | | | | |
768 * |**************************************************************************
769 * | shared | shared (++) | shared (+) | shared(+++)| invalid |
770 * | | | | | |
771 * |non-shared| shared (+) | private | slave (*) | invalid |
772 * ***************************************************************************
Ram Paib90fa9a2005-11-07 17:19:50 -0500773 * A bind operation clones the source mount and mounts the clone on the
774 * destination mount.
775 *
776 * (++) the cloned mount is propagated to all the mounts in the propagation
777 * tree of the destination mount and the cloned mount is added to
778 * the peer group of the source mount.
779 * (+) the cloned mount is created under the destination mount and is marked
780 * as shared. The cloned mount is added to the peer group of the source
781 * mount.
Ram Pai5afe0022005-11-07 17:21:01 -0500782 * (+++) the mount is propagated to all the mounts in the propagation tree
783 * of the destination mount and the cloned mount is made slave
784 * of the same master as that of the source mount. The cloned mount
785 * is marked as 'shared and slave'.
786 * (*) the cloned mount is made a slave of the same master as that of the
787 * source mount.
788 *
Ram Pai9676f0c2005-11-07 17:21:20 -0500789 * ---------------------------------------------------------------------------
790 * | MOVE MOUNT OPERATION |
791 * |**************************************************************************
792 * | source-->| shared | private | slave | unbindable |
793 * | dest | | | | |
794 * | | | | | | |
795 * | v | | | | |
796 * |**************************************************************************
797 * | shared | shared (+) | shared (+) | shared(+++) | invalid |
798 * | | | | | |
799 * |non-shared| shared (+*) | private | slave (*) | unbindable |
800 * ***************************************************************************
Ram Pai5afe0022005-11-07 17:21:01 -0500801 *
802 * (+) the mount is moved to the destination. And is then propagated to
803 * all the mounts in the propagation tree of the destination mount.
Ram Pai21444402005-11-07 17:20:03 -0500804 * (+*) the mount is moved to the destination.
Ram Pai5afe0022005-11-07 17:21:01 -0500805 * (+++) the mount is moved to the destination and is then propagated to
806 * all the mounts belonging to the destination mount's propagation tree.
807 * the mount is marked as 'shared and slave'.
808 * (*) the mount continues to be a slave at the new location.
Ram Paib90fa9a2005-11-07 17:19:50 -0500809 *
810 * if the source mount is a tree, the operations explained above is
811 * applied to each mount in the tree.
812 * Must be called without spinlocks held, since this function can sleep
813 * in allocations.
814 */
815static int attach_recursive_mnt(struct vfsmount *source_mnt,
Ram Pai21444402005-11-07 17:20:03 -0500816 struct nameidata *nd, struct nameidata *parent_nd)
Ram Paib90fa9a2005-11-07 17:19:50 -0500817{
818 LIST_HEAD(tree_list);
819 struct vfsmount *dest_mnt = nd->mnt;
820 struct dentry *dest_dentry = nd->dentry;
821 struct vfsmount *child, *p;
822
823 if (propagate_mnt(dest_mnt, dest_dentry, source_mnt, &tree_list))
824 return -EINVAL;
825
826 if (IS_MNT_SHARED(dest_mnt)) {
827 for (p = source_mnt; p; p = next_mnt(p, source_mnt))
828 set_mnt_shared(p);
829 }
830
831 spin_lock(&vfsmount_lock);
Ram Pai21444402005-11-07 17:20:03 -0500832 if (parent_nd) {
833 detach_mnt(source_mnt, parent_nd);
834 attach_mnt(source_mnt, nd);
835 touch_namespace(current->namespace);
836 } else {
837 mnt_set_mountpoint(dest_mnt, dest_dentry, source_mnt);
838 commit_tree(source_mnt);
839 }
Ram Paib90fa9a2005-11-07 17:19:50 -0500840
841 list_for_each_entry_safe(child, p, &tree_list, mnt_hash) {
842 list_del_init(&child->mnt_hash);
843 commit_tree(child);
844 }
845 spin_unlock(&vfsmount_lock);
846 return 0;
847}
848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849static int graft_tree(struct vfsmount *mnt, struct nameidata *nd)
850{
851 int err;
852 if (mnt->mnt_sb->s_flags & MS_NOUSER)
853 return -EINVAL;
854
855 if (S_ISDIR(nd->dentry->d_inode->i_mode) !=
856 S_ISDIR(mnt->mnt_root->d_inode->i_mode))
857 return -ENOTDIR;
858
859 err = -ENOENT;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800860 mutex_lock(&nd->dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 if (IS_DEADDIR(nd->dentry->d_inode))
862 goto out_unlock;
863
864 err = security_sb_check_sb(mnt, nd);
865 if (err)
866 goto out_unlock;
867
868 err = -ENOENT;
Ram Paib90fa9a2005-11-07 17:19:50 -0500869 if (IS_ROOT(nd->dentry) || !d_unhashed(nd->dentry))
Ram Pai21444402005-11-07 17:20:03 -0500870 err = attach_recursive_mnt(mnt, nd, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871out_unlock:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800872 mutex_unlock(&nd->dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 if (!err)
874 security_sb_post_addmount(mnt, nd);
875 return err;
876}
877
878/*
Ram Pai07b20882005-11-07 17:19:07 -0500879 * recursively change the type of the mountpoint.
880 */
881static int do_change_type(struct nameidata *nd, int flag)
882{
883 struct vfsmount *m, *mnt = nd->mnt;
884 int recurse = flag & MS_REC;
885 int type = flag & ~MS_REC;
886
887 if (nd->dentry != nd->mnt->mnt_root)
888 return -EINVAL;
889
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);
896 return 0;
897}
898
899/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 * do loopback mount.
901 */
Andrew Mortoneee391a2006-05-15 09:44:30 -0700902static int do_loopback(struct nameidata *nd, char *old_name, int recurse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
904 struct nameidata old_nd;
905 struct vfsmount *mnt = NULL;
906 int err = mount_is_safe(nd);
907 if (err)
908 return err;
909 if (!old_name || !*old_name)
910 return -EINVAL;
911 err = path_lookup(old_name, LOOKUP_FOLLOW, &old_nd);
912 if (err)
913 return err;
914
Ram Pai390c6842005-11-07 17:17:51 -0500915 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 err = -EINVAL;
Ram Pai9676f0c2005-11-07 17:21:20 -0500917 if (IS_MNT_UNBINDABLE(old_nd.mnt))
918 goto out;
919
Al Viroccd48bc2005-11-07 17:15:04 -0500920 if (!check_mnt(nd->mnt) || !check_mnt(old_nd.mnt))
921 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Al Viroccd48bc2005-11-07 17:15:04 -0500923 err = -ENOMEM;
924 if (recurse)
Ram Pai36341f62005-11-07 17:17:22 -0500925 mnt = copy_tree(old_nd.mnt, old_nd.dentry, 0);
Al Viroccd48bc2005-11-07 17:15:04 -0500926 else
Ram Pai36341f62005-11-07 17:17:22 -0500927 mnt = clone_mnt(old_nd.mnt, old_nd.dentry, 0);
Al Viroccd48bc2005-11-07 17:15:04 -0500928
929 if (!mnt)
930 goto out;
931
Al Viroccd48bc2005-11-07 17:15:04 -0500932 err = graft_tree(mnt, nd);
933 if (err) {
Ram Pai70fbcdf2005-11-07 17:17:04 -0500934 LIST_HEAD(umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 spin_lock(&vfsmount_lock);
Ram Paia05964f2005-11-07 17:20:17 -0500936 umount_tree(mnt, 0, &umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 spin_unlock(&vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -0500938 release_mounts(&umount_list);
Ram Pai5b83d2c5c2005-11-07 17:16:29 -0500939 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Al Viroccd48bc2005-11-07 17:15:04 -0500941out:
Ram Pai390c6842005-11-07 17:17:51 -0500942 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 path_release(&old_nd);
944 return err;
945}
946
947/*
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.
951 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952static int do_remount(struct nameidata *nd, int flags, int mnt_flags,
953 void *data)
954{
955 int err;
Ram Paib58fed82005-11-07 17:16:09 -0500956 struct super_block *sb = nd->mnt->mnt_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958 if (!capable(CAP_SYS_ADMIN))
959 return -EPERM;
960
961 if (!check_mnt(nd->mnt))
962 return -EINVAL;
963
964 if (nd->dentry != nd->mnt->mnt_root)
965 return -EINVAL;
966
967 down_write(&sb->s_umount);
968 err = do_remount_sb(sb, flags, data, 0);
969 if (!err)
Ram Paib58fed82005-11-07 17:16:09 -0500970 nd->mnt->mnt_flags = mnt_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 up_write(&sb->s_umount);
972 if (!err)
973 security_sb_post_remount(nd->mnt, flags, data);
974 return err;
975}
976
Ram Pai9676f0c2005-11-07 17:21:20 -0500977static inline int tree_contains_unbindable(struct vfsmount *mnt)
978{
979 struct vfsmount *p;
980 for (p = mnt; p; p = next_mnt(p, mnt)) {
981 if (IS_MNT_UNBINDABLE(p))
982 return 1;
983 }
984 return 0;
985}
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987static int do_move_mount(struct nameidata *nd, char *old_name)
988{
989 struct nameidata old_nd, parent_nd;
990 struct vfsmount *p;
991 int err = 0;
992 if (!capable(CAP_SYS_ADMIN))
993 return -EPERM;
994 if (!old_name || !*old_name)
995 return -EINVAL;
996 err = path_lookup(old_name, LOOKUP_FOLLOW, &old_nd);
997 if (err)
998 return err;
999
Ram Pai390c6842005-11-07 17:17:51 -05001000 down_write(&namespace_sem);
Ram Paib58fed82005-11-07 17:16:09 -05001001 while (d_mountpoint(nd->dentry) && follow_down(&nd->mnt, &nd->dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 ;
1003 err = -EINVAL;
1004 if (!check_mnt(nd->mnt) || !check_mnt(old_nd.mnt))
1005 goto out;
1006
1007 err = -ENOENT;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001008 mutex_lock(&nd->dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 if (IS_DEADDIR(nd->dentry->d_inode))
1010 goto out1;
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 if (!IS_ROOT(nd->dentry) && d_unhashed(nd->dentry))
Ram Pai21444402005-11-07 17:20:03 -05001013 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015 err = -EINVAL;
1016 if (old_nd.dentry != old_nd.mnt->mnt_root)
Ram Pai21444402005-11-07 17:20:03 -05001017 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
1019 if (old_nd.mnt == old_nd.mnt->mnt_parent)
Ram Pai21444402005-11-07 17:20:03 -05001020 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
1022 if (S_ISDIR(nd->dentry->d_inode->i_mode) !=
1023 S_ISDIR(old_nd.dentry->d_inode->i_mode))
Ram Pai21444402005-11-07 17:20:03 -05001024 goto out1;
1025 /*
1026 * Don't move a mount residing in a shared parent.
1027 */
1028 if (old_nd.mnt->mnt_parent && IS_MNT_SHARED(old_nd.mnt->mnt_parent))
1029 goto out1;
Ram Pai9676f0c2005-11-07 17:21:20 -05001030 /*
1031 * Don't move a mount tree containing unbindable mounts to a destination
1032 * mount which is shared.
1033 */
1034 if (IS_MNT_SHARED(nd->mnt) && tree_contains_unbindable(old_nd.mnt))
1035 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 err = -ELOOP;
Ram Paib58fed82005-11-07 17:16:09 -05001037 for (p = nd->mnt; p->mnt_parent != p; p = p->mnt_parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 if (p == old_nd.mnt)
Ram Pai21444402005-11-07 17:20:03 -05001039 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Ram Pai21444402005-11-07 17:20:03 -05001041 if ((err = attach_recursive_mnt(old_nd.mnt, nd, &parent_nd)))
1042 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Ram Pai21444402005-11-07 17:20:03 -05001044 spin_lock(&vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 /* if the mount is moved, it should no longer be expire
1046 * automatically */
Miklos Szeredi55e700b2005-07-07 17:57:30 -07001047 list_del_init(&old_nd.mnt->mnt_expire);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 spin_unlock(&vfsmount_lock);
1049out1:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001050 mutex_unlock(&nd->dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051out:
Ram Pai390c6842005-11-07 17:17:51 -05001052 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 if (!err)
1054 path_release(&parent_nd);
1055 path_release(&old_nd);
1056 return err;
1057}
1058
1059/*
1060 * create a new mount for userspace and request it to be added into the
1061 * namespace's tree
1062 */
1063static int do_new_mount(struct nameidata *nd, char *type, int flags,
1064 int mnt_flags, char *name, void *data)
1065{
1066 struct vfsmount *mnt;
1067
1068 if (!type || !memchr(type, 0, PAGE_SIZE))
1069 return -EINVAL;
1070
1071 /* we need capabilities... */
1072 if (!capable(CAP_SYS_ADMIN))
1073 return -EPERM;
1074
1075 mnt = do_kern_mount(type, flags, name, data);
1076 if (IS_ERR(mnt))
1077 return PTR_ERR(mnt);
1078
1079 return do_add_mount(mnt, nd, mnt_flags, NULL);
1080}
1081
1082/*
1083 * add a mount into a namespace's mount tree
1084 * - provide the option of adding the new mount to an expiration list
1085 */
1086int do_add_mount(struct vfsmount *newmnt, struct nameidata *nd,
1087 int mnt_flags, struct list_head *fslist)
1088{
1089 int err;
1090
Ram Pai390c6842005-11-07 17:17:51 -05001091 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 /* Something was mounted here while we slept */
Ram Paib58fed82005-11-07 17:16:09 -05001093 while (d_mountpoint(nd->dentry) && follow_down(&nd->mnt, &nd->dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 ;
1095 err = -EINVAL;
1096 if (!check_mnt(nd->mnt))
1097 goto unlock;
1098
1099 /* Refuse the same filesystem on the same mount point */
1100 err = -EBUSY;
1101 if (nd->mnt->mnt_sb == newmnt->mnt_sb &&
1102 nd->mnt->mnt_root == nd->dentry)
1103 goto unlock;
1104
1105 err = -EINVAL;
1106 if (S_ISLNK(newmnt->mnt_root->d_inode->i_mode))
1107 goto unlock;
1108
1109 newmnt->mnt_flags = mnt_flags;
Ram Pai5b83d2c5c2005-11-07 17:16:29 -05001110 if ((err = graft_tree(newmnt, nd)))
1111 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Ram Pai5b83d2c5c2005-11-07 17:16:29 -05001113 if (fslist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 /* add to the specified expiration list */
1115 spin_lock(&vfsmount_lock);
Miklos Szeredi55e700b2005-07-07 17:57:30 -07001116 list_add_tail(&newmnt->mnt_expire, fslist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 spin_unlock(&vfsmount_lock);
1118 }
Ram Pai390c6842005-11-07 17:17:51 -05001119 up_write(&namespace_sem);
Ram Pai5b83d2c5c2005-11-07 17:16:29 -05001120 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122unlock:
Ram Pai390c6842005-11-07 17:17:51 -05001123 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 mntput(newmnt);
1125 return err;
1126}
1127
1128EXPORT_SYMBOL_GPL(do_add_mount);
1129
Ram Pai70fbcdf2005-11-07 17:17:04 -05001130static void expire_mount(struct vfsmount *mnt, struct list_head *mounts,
1131 struct list_head *umounts)
Miklos Szeredi24ca2af2005-07-07 17:57:25 -07001132{
1133 spin_lock(&vfsmount_lock);
1134
1135 /*
Miklos Szeredied42c872005-07-07 17:57:26 -07001136 * Check if mount is still attached, if not, let whoever holds it deal
1137 * with the sucker
1138 */
1139 if (mnt->mnt_parent == mnt) {
1140 spin_unlock(&vfsmount_lock);
1141 return;
1142 }
1143
1144 /*
Miklos Szeredi24ca2af2005-07-07 17:57:25 -07001145 * Check that it is still dead: the count should now be 2 - as
1146 * contributed by the vfsmount parent and the mntget above
1147 */
Ram Paia05964f2005-11-07 17:20:17 -05001148 if (!propagate_mount_busy(mnt, 2)) {
Miklos Szeredi24ca2af2005-07-07 17:57:25 -07001149 /* delete from the namespace */
Al Viro5addc5d2005-11-07 17:15:49 -05001150 touch_namespace(mnt->mnt_namespace);
Miklos Szeredi24ca2af2005-07-07 17:57:25 -07001151 list_del_init(&mnt->mnt_list);
Miklos Szerediac081152005-07-07 17:57:27 -07001152 mnt->mnt_namespace = NULL;
Ram Paia05964f2005-11-07 17:20:17 -05001153 umount_tree(mnt, 1, umounts);
Miklos Szeredi24ca2af2005-07-07 17:57:25 -07001154 spin_unlock(&vfsmount_lock);
Miklos Szeredi24ca2af2005-07-07 17:57:25 -07001155 } else {
1156 /*
1157 * Someone brought it back to life whilst we didn't have any
1158 * locks held so return it to the expiration list
1159 */
Miklos Szeredi55e700b2005-07-07 17:57:30 -07001160 list_add_tail(&mnt->mnt_expire, mounts);
Miklos Szeredi24ca2af2005-07-07 17:57:25 -07001161 spin_unlock(&vfsmount_lock);
1162 }
1163}
1164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165/*
Trond Myklebust5528f9112006-06-09 09:34:17 -04001166 * 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
1170 */
1171static void expire_mount_list(struct list_head *graveyard, struct list_head *mounts)
1172{
1173 struct namespace *namespace;
1174 struct vfsmount *mnt;
1175
1176 while (!list_empty(graveyard)) {
1177 LIST_HEAD(umounts);
1178 mnt = list_entry(graveyard->next, struct vfsmount, mnt_expire);
1179 list_del_init(&mnt->mnt_expire);
1180
1181 /* don't do anything if the namespace is dead - all the
1182 * vfsmounts from it are going away anyway */
1183 namespace = mnt->mnt_namespace;
1184 if (!namespace || !namespace->root)
1185 continue;
1186 get_namespace(namespace);
1187
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);
1193 mntput(mnt);
1194 put_namespace(namespace);
1195 spin_lock(&vfsmount_lock);
1196 }
1197}
1198
1199/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 * 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
1202 * here
1203 */
1204void mark_mounts_for_expiry(struct list_head *mounts)
1205{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 struct vfsmount *mnt, *next;
1207 LIST_HEAD(graveyard);
1208
1209 if (list_empty(mounts))
1210 return;
1211
1212 spin_lock(&vfsmount_lock);
1213
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())
1219 */
Miklos Szeredi55e700b2005-07-07 17:57:30 -07001220 list_for_each_entry_safe(mnt, next, mounts, mnt_expire) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 if (!xchg(&mnt->mnt_expiry_mark, 1) ||
1222 atomic_read(&mnt->mnt_count) != 1)
1223 continue;
1224
1225 mntget(mnt);
Miklos Szeredi55e700b2005-07-07 17:57:30 -07001226 list_move(&mnt->mnt_expire, &graveyard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 }
1228
Trond Myklebust5528f9112006-06-09 09:34:17 -04001229 expire_mount_list(&graveyard, mounts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 spin_unlock(&vfsmount_lock);
1232}
1233
1234EXPORT_SYMBOL_GPL(mark_mounts_for_expiry);
1235
1236/*
Trond Myklebust5528f9112006-06-09 09:34:17 -04001237 * Ripoff of 'select_parent()'
1238 *
1239 * search the list of submounts for a given mountpoint, and move any
1240 * shrinkable submounts to the 'graveyard' list.
1241 */
1242static int select_submounts(struct vfsmount *parent, struct list_head *graveyard)
1243{
1244 struct vfsmount *this_parent = parent;
1245 struct list_head *next;
1246 int found = 0;
1247
1248repeat:
1249 next = this_parent->mnt_mounts.next;
1250resume:
1251 while (next != &this_parent->mnt_mounts) {
1252 struct list_head *tmp = next;
1253 struct vfsmount *mnt = list_entry(tmp, struct vfsmount, mnt_child);
1254
1255 next = tmp->next;
1256 if (!(mnt->mnt_flags & MNT_SHRINKABLE))
1257 continue;
1258 /*
1259 * Descend a level if the d_mounts list is non-empty.
1260 */
1261 if (!list_empty(&mnt->mnt_mounts)) {
1262 this_parent = mnt;
1263 goto repeat;
1264 }
1265
1266 if (!propagate_mount_busy(mnt, 1)) {
1267 mntget(mnt);
1268 list_move_tail(&mnt->mnt_expire, graveyard);
1269 found++;
1270 }
1271 }
1272 /*
1273 * All done at this level ... ascend and resume the search
1274 */
1275 if (this_parent != parent) {
1276 next = this_parent->mnt_child.next;
1277 this_parent = this_parent->mnt_parent;
1278 goto resume;
1279 }
1280 return found;
1281}
1282
1283/*
1284 * process a list of expirable mountpoints with the intent of discarding any
1285 * submounts of a specific parent mountpoint
1286 */
1287void shrink_submounts(struct vfsmount *mountpoint, struct list_head *mounts)
1288{
1289 LIST_HEAD(graveyard);
1290 int found;
1291
1292 spin_lock(&vfsmount_lock);
1293
1294 /* extract submounts of 'mountpoint' from the expiration list */
1295 while ((found = select_submounts(mountpoint, &graveyard)) != 0)
1296 expire_mount_list(&graveyard, mounts);
1297
1298 spin_unlock(&vfsmount_lock);
1299}
1300
1301EXPORT_SYMBOL_GPL(shrink_submounts);
1302
1303/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 * 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.
1308 */
Ram Paib58fed82005-11-07 17:16:09 -05001309static long exact_copy_from_user(void *to, const void __user * from,
1310 unsigned long n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311{
1312 char *t = to;
1313 const char __user *f = from;
1314 char c;
1315
1316 if (!access_ok(VERIFY_READ, from, n))
1317 return n;
1318
1319 while (n) {
1320 if (__get_user(c, f)) {
1321 memset(t, 0, n);
1322 break;
1323 }
1324 *t++ = c;
1325 f++;
1326 n--;
1327 }
1328 return n;
1329}
1330
Ram Paib58fed82005-11-07 17:16:09 -05001331int copy_mount_options(const void __user * data, unsigned long *where)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332{
1333 int i;
1334 unsigned long page;
1335 unsigned long size;
Ram Paib58fed82005-11-07 17:16:09 -05001336
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 *where = 0;
1338 if (!data)
1339 return 0;
1340
1341 if (!(page = __get_free_page(GFP_KERNEL)))
1342 return -ENOMEM;
1343
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.
1347 */
1348 /* copy_from_user cannot cross TASK_SIZE ! */
1349 size = TASK_SIZE - (unsigned long)data;
1350 if (size > PAGE_SIZE)
1351 size = PAGE_SIZE;
1352
1353 i = size - exact_copy_from_user((void *)page, data, size);
1354 if (!i) {
Ram Paib58fed82005-11-07 17:16:09 -05001355 free_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 return -EFAULT;
1357 }
1358 if (i != PAGE_SIZE)
1359 memset((char *)page + i, 0, PAGE_SIZE - i);
1360 *where = page;
1361 return 0;
1362}
1363
1364/*
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).
1367 *
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).
1371 *
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.
1377 */
Ram Paib58fed82005-11-07 17:16:09 -05001378long do_mount(char *dev_name, char *dir_name, char *type_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 unsigned long flags, void *data_page)
1380{
1381 struct nameidata nd;
1382 int retval = 0;
1383 int mnt_flags = 0;
1384
1385 /* Discard magic */
1386 if ((flags & MS_MGC_MSK) == MS_MGC_VAL)
1387 flags &= ~MS_MGC_MSK;
1388
1389 /* Basic sanity checks */
1390
1391 if (!dir_name || !*dir_name || !memchr(dir_name, 0, PAGE_SIZE))
1392 return -EINVAL;
1393 if (dev_name && !memchr(dev_name, 0, PAGE_SIZE))
1394 return -EINVAL;
1395
1396 if (data_page)
1397 ((char *)data_page)[PAGE_SIZE - 1] = 0;
1398
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;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001406 if (flags & MS_NOATIME)
1407 mnt_flags |= MNT_NOATIME;
1408 if (flags & MS_NODIRATIME)
1409 mnt_flags |= MNT_NODIRATIME;
1410
1411 flags &= ~(MS_NOSUID | MS_NOEXEC | MS_NODEV | MS_ACTIVE |
1412 MS_NOATIME | MS_NODIRATIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
1414 /* ... and get the mountpoint */
1415 retval = path_lookup(dir_name, LOOKUP_FOLLOW, &nd);
1416 if (retval)
1417 return retval;
1418
1419 retval = security_sb_mount(dev_name, &nd, type_page, flags, data_page);
1420 if (retval)
1421 goto dput_out;
1422
1423 if (flags & MS_REMOUNT)
1424 retval = do_remount(&nd, flags & ~MS_REMOUNT, mnt_flags,
1425 data_page);
1426 else if (flags & MS_BIND)
Andrew Mortoneee391a2006-05-15 09:44:30 -07001427 retval = do_loopback(&nd, dev_name, flags & MS_REC);
Ram Pai9676f0c2005-11-07 17:21:20 -05001428 else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
Ram Pai07b20882005-11-07 17:19:07 -05001429 retval = do_change_type(&nd, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 else if (flags & MS_MOVE)
1431 retval = do_move_mount(&nd, dev_name);
1432 else
1433 retval = do_new_mount(&nd, type_page, flags, mnt_flags,
1434 dev_name, data_page);
1435dput_out:
1436 path_release(&nd);
1437 return retval;
1438}
1439
JANAK DESAI741a2952006-02-07 12:59:00 -08001440/*
1441 * Allocate a new namespace structure and populate it with contents
1442 * copied from the namespace of the passed in task structure.
1443 */
1444struct namespace *dup_namespace(struct task_struct *tsk, struct fs_struct *fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445{
1446 struct namespace *namespace = tsk->namespace;
1447 struct namespace *new_ns;
1448 struct vfsmount *rootmnt = NULL, *pwdmnt = NULL, *altrootmnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 struct vfsmount *p, *q;
1450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 new_ns = kmalloc(sizeof(struct namespace), GFP_KERNEL);
1452 if (!new_ns)
Adrian Bunkf13b8352006-03-15 17:37:32 +01001453 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
1455 atomic_set(&new_ns->count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 INIT_LIST_HEAD(&new_ns->list);
Al Viro5addc5d2005-11-07 17:15:49 -05001457 init_waitqueue_head(&new_ns->poll);
1458 new_ns->event = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Ram Pai390c6842005-11-07 17:17:51 -05001460 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 /* First pass: copy the tree topology */
Ram Pai36341f62005-11-07 17:17:22 -05001462 new_ns->root = copy_tree(namespace->root, namespace->root->mnt_root,
Ram Pai9676f0c2005-11-07 17:21:20 -05001463 CL_COPY_ALL | CL_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 if (!new_ns->root) {
Ram Pai390c6842005-11-07 17:17:51 -05001465 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 kfree(new_ns);
Adrian Bunkf13b8352006-03-15 17:37:32 +01001467 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 }
1469 spin_lock(&vfsmount_lock);
1470 list_add_tail(&new_ns->list, &new_ns->root->mnt_list);
1471 spin_unlock(&vfsmount_lock);
1472
1473 /*
1474 * Second pass: switch the tsk->fs->* elements and mark new vfsmounts
1475 * as belonging to new namespace. We have already acquired a private
1476 * fs_struct, so tsk->fs->lock is not needed.
1477 */
1478 p = namespace->root;
1479 q = new_ns->root;
1480 while (p) {
1481 q->mnt_namespace = new_ns;
1482 if (fs) {
1483 if (p == fs->rootmnt) {
1484 rootmnt = p;
1485 fs->rootmnt = mntget(q);
1486 }
1487 if (p == fs->pwdmnt) {
1488 pwdmnt = p;
1489 fs->pwdmnt = mntget(q);
1490 }
1491 if (p == fs->altrootmnt) {
1492 altrootmnt = p;
1493 fs->altrootmnt = mntget(q);
1494 }
1495 }
1496 p = next_mnt(p, namespace->root);
1497 q = next_mnt(q, new_ns->root);
1498 }
Ram Pai390c6842005-11-07 17:17:51 -05001499 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 if (rootmnt)
1502 mntput(rootmnt);
1503 if (pwdmnt)
1504 mntput(pwdmnt);
1505 if (altrootmnt)
1506 mntput(altrootmnt);
1507
JANAK DESAI741a2952006-02-07 12:59:00 -08001508 return new_ns;
1509}
1510
1511int copy_namespace(int flags, struct task_struct *tsk)
1512{
1513 struct namespace *namespace = tsk->namespace;
1514 struct namespace *new_ns;
1515 int err = 0;
1516
1517 if (!namespace)
1518 return 0;
1519
1520 get_namespace(namespace);
1521
1522 if (!(flags & CLONE_NEWNS))
1523 return 0;
1524
1525 if (!capable(CAP_SYS_ADMIN)) {
1526 err = -EPERM;
1527 goto out;
1528 }
1529
1530 new_ns = dup_namespace(tsk, tsk->fs);
1531 if (!new_ns) {
1532 err = -ENOMEM;
1533 goto out;
1534 }
1535
1536 tsk->namespace = new_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
1538out:
1539 put_namespace(namespace);
JANAK DESAI741a2952006-02-07 12:59:00 -08001540 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541}
1542
1543asmlinkage long sys_mount(char __user * dev_name, char __user * dir_name,
1544 char __user * type, unsigned long flags,
1545 void __user * data)
1546{
1547 int retval;
1548 unsigned long data_page;
1549 unsigned long type_page;
1550 unsigned long dev_page;
1551 char *dir_page;
1552
Ram Paib58fed82005-11-07 17:16:09 -05001553 retval = copy_mount_options(type, &type_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 if (retval < 0)
1555 return retval;
1556
1557 dir_page = getname(dir_name);
1558 retval = PTR_ERR(dir_page);
1559 if (IS_ERR(dir_page))
1560 goto out1;
1561
Ram Paib58fed82005-11-07 17:16:09 -05001562 retval = copy_mount_options(dev_name, &dev_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 if (retval < 0)
1564 goto out2;
1565
Ram Paib58fed82005-11-07 17:16:09 -05001566 retval = copy_mount_options(data, &data_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 if (retval < 0)
1568 goto out3;
1569
1570 lock_kernel();
Ram Paib58fed82005-11-07 17:16:09 -05001571 retval = do_mount((char *)dev_page, dir_page, (char *)type_page,
1572 flags, (void *)data_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 unlock_kernel();
1574 free_page(data_page);
1575
1576out3:
1577 free_page(dev_page);
1578out2:
1579 putname(dir_page);
1580out1:
1581 free_page(type_page);
1582 return retval;
1583}
1584
1585/*
1586 * Replace the fs->{rootmnt,root} with {mnt,dentry}. Put the old values.
1587 * It can block. Requires the big lock held.
1588 */
1589void set_fs_root(struct fs_struct *fs, struct vfsmount *mnt,
1590 struct dentry *dentry)
1591{
1592 struct dentry *old_root;
1593 struct vfsmount *old_rootmnt;
1594 write_lock(&fs->lock);
1595 old_root = fs->root;
1596 old_rootmnt = fs->rootmnt;
1597 fs->rootmnt = mntget(mnt);
1598 fs->root = dget(dentry);
1599 write_unlock(&fs->lock);
1600 if (old_root) {
1601 dput(old_root);
1602 mntput(old_rootmnt);
1603 }
1604}
1605
1606/*
1607 * Replace the fs->{pwdmnt,pwd} with {mnt,dentry}. Put the old values.
1608 * It can block. Requires the big lock held.
1609 */
1610void set_fs_pwd(struct fs_struct *fs, struct vfsmount *mnt,
1611 struct dentry *dentry)
1612{
1613 struct dentry *old_pwd;
1614 struct vfsmount *old_pwdmnt;
1615
1616 write_lock(&fs->lock);
1617 old_pwd = fs->pwd;
1618 old_pwdmnt = fs->pwdmnt;
1619 fs->pwdmnt = mntget(mnt);
1620 fs->pwd = dget(dentry);
1621 write_unlock(&fs->lock);
1622
1623 if (old_pwd) {
1624 dput(old_pwd);
1625 mntput(old_pwdmnt);
1626 }
1627}
1628
1629static void chroot_fs_refs(struct nameidata *old_nd, struct nameidata *new_nd)
1630{
1631 struct task_struct *g, *p;
1632 struct fs_struct *fs;
1633
1634 read_lock(&tasklist_lock);
1635 do_each_thread(g, p) {
1636 task_lock(p);
1637 fs = p->fs;
1638 if (fs) {
1639 atomic_inc(&fs->count);
1640 task_unlock(p);
Ram Paib58fed82005-11-07 17:16:09 -05001641 if (fs->root == old_nd->dentry
1642 && fs->rootmnt == old_nd->mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 set_fs_root(fs, new_nd->mnt, new_nd->dentry);
Ram Paib58fed82005-11-07 17:16:09 -05001644 if (fs->pwd == old_nd->dentry
1645 && fs->pwdmnt == old_nd->mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 set_fs_pwd(fs, new_nd->mnt, new_nd->dentry);
1647 put_fs_struct(fs);
1648 } else
1649 task_unlock(p);
1650 } while_each_thread(g, p);
1651 read_unlock(&tasklist_lock);
1652}
1653
1654/*
1655 * pivot_root Semantics:
1656 * Moves the root file system of the current process to the directory put_old,
1657 * makes new_root as the new root file system of the current process, and sets
1658 * root/cwd of all processes which had them on the current root to new_root.
1659 *
1660 * Restrictions:
1661 * The new_root and put_old must be directories, and must not be on the
1662 * same file system as the current process root. The put_old must be
1663 * underneath new_root, i.e. adding a non-zero number of /.. to the string
1664 * pointed to by put_old must yield the same directory as new_root. No other
1665 * file system may be mounted on put_old. After all, new_root is a mountpoint.
1666 *
Neil Brown4a0d11f2006-01-08 01:03:18 -08001667 * Also, the current root cannot be on the 'rootfs' (initial ramfs) filesystem.
1668 * See Documentation/filesystems/ramfs-rootfs-initramfs.txt for alternatives
1669 * in this situation.
1670 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 * Notes:
1672 * - we don't move root/cwd if they are not at the root (reason: if something
1673 * cared enough to change them, it's probably wrong to force them elsewhere)
1674 * - it's okay to pick a root that isn't the root of a file system, e.g.
1675 * /nfs/my_root where /nfs is the mount point. It must be a mountpoint,
1676 * though, so you may need to say mount --bind /nfs/my_root /nfs/my_root
1677 * first.
1678 */
Ram Paib58fed82005-11-07 17:16:09 -05001679asmlinkage long sys_pivot_root(const char __user * new_root,
1680 const char __user * put_old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681{
1682 struct vfsmount *tmp;
1683 struct nameidata new_nd, old_nd, parent_nd, root_parent, user_nd;
1684 int error;
1685
1686 if (!capable(CAP_SYS_ADMIN))
1687 return -EPERM;
1688
1689 lock_kernel();
1690
Ram Paib58fed82005-11-07 17:16:09 -05001691 error = __user_walk(new_root, LOOKUP_FOLLOW | LOOKUP_DIRECTORY,
1692 &new_nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 if (error)
1694 goto out0;
1695 error = -EINVAL;
1696 if (!check_mnt(new_nd.mnt))
1697 goto out1;
1698
Ram Paib58fed82005-11-07 17:16:09 -05001699 error = __user_walk(put_old, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, &old_nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 if (error)
1701 goto out1;
1702
1703 error = security_sb_pivotroot(&old_nd, &new_nd);
1704 if (error) {
1705 path_release(&old_nd);
1706 goto out1;
1707 }
1708
1709 read_lock(&current->fs->lock);
1710 user_nd.mnt = mntget(current->fs->rootmnt);
1711 user_nd.dentry = dget(current->fs->root);
1712 read_unlock(&current->fs->lock);
Ram Pai390c6842005-11-07 17:17:51 -05001713 down_write(&namespace_sem);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001714 mutex_lock(&old_nd.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 error = -EINVAL;
Ram Pai21444402005-11-07 17:20:03 -05001716 if (IS_MNT_SHARED(old_nd.mnt) ||
1717 IS_MNT_SHARED(new_nd.mnt->mnt_parent) ||
1718 IS_MNT_SHARED(user_nd.mnt->mnt_parent))
1719 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 if (!check_mnt(user_nd.mnt))
1721 goto out2;
1722 error = -ENOENT;
1723 if (IS_DEADDIR(new_nd.dentry->d_inode))
1724 goto out2;
1725 if (d_unhashed(new_nd.dentry) && !IS_ROOT(new_nd.dentry))
1726 goto out2;
1727 if (d_unhashed(old_nd.dentry) && !IS_ROOT(old_nd.dentry))
1728 goto out2;
1729 error = -EBUSY;
1730 if (new_nd.mnt == user_nd.mnt || old_nd.mnt == user_nd.mnt)
1731 goto out2; /* loop, on the same file system */
1732 error = -EINVAL;
1733 if (user_nd.mnt->mnt_root != user_nd.dentry)
1734 goto out2; /* not a mountpoint */
Miklos Szeredi0bb6fcc2005-09-06 15:19:36 -07001735 if (user_nd.mnt->mnt_parent == user_nd.mnt)
1736 goto out2; /* not attached */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 if (new_nd.mnt->mnt_root != new_nd.dentry)
1738 goto out2; /* not a mountpoint */
Miklos Szeredi0bb6fcc2005-09-06 15:19:36 -07001739 if (new_nd.mnt->mnt_parent == new_nd.mnt)
1740 goto out2; /* not attached */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 tmp = old_nd.mnt; /* make sure we can reach put_old from new_root */
1742 spin_lock(&vfsmount_lock);
1743 if (tmp != new_nd.mnt) {
1744 for (;;) {
1745 if (tmp->mnt_parent == tmp)
1746 goto out3; /* already mounted on put_old */
1747 if (tmp->mnt_parent == new_nd.mnt)
1748 break;
1749 tmp = tmp->mnt_parent;
1750 }
1751 if (!is_subdir(tmp->mnt_mountpoint, new_nd.dentry))
1752 goto out3;
1753 } else if (!is_subdir(old_nd.dentry, new_nd.dentry))
1754 goto out3;
1755 detach_mnt(new_nd.mnt, &parent_nd);
1756 detach_mnt(user_nd.mnt, &root_parent);
1757 attach_mnt(user_nd.mnt, &old_nd); /* mount old root on put_old */
1758 attach_mnt(new_nd.mnt, &root_parent); /* mount new_root on / */
Al Viro5addc5d2005-11-07 17:15:49 -05001759 touch_namespace(current->namespace);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 spin_unlock(&vfsmount_lock);
1761 chroot_fs_refs(&user_nd, &new_nd);
1762 security_sb_post_pivotroot(&user_nd, &new_nd);
1763 error = 0;
1764 path_release(&root_parent);
1765 path_release(&parent_nd);
1766out2:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001767 mutex_unlock(&old_nd.dentry->d_inode->i_mutex);
Ram Pai390c6842005-11-07 17:17:51 -05001768 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 path_release(&user_nd);
1770 path_release(&old_nd);
1771out1:
1772 path_release(&new_nd);
1773out0:
1774 unlock_kernel();
1775 return error;
1776out3:
1777 spin_unlock(&vfsmount_lock);
1778 goto out2;
1779}
1780
1781static void __init init_mount_tree(void)
1782{
1783 struct vfsmount *mnt;
1784 struct namespace *namespace;
1785 struct task_struct *g, *p;
1786
1787 mnt = do_kern_mount("rootfs", 0, "rootfs", NULL);
1788 if (IS_ERR(mnt))
1789 panic("Can't create rootfs");
1790 namespace = kmalloc(sizeof(*namespace), GFP_KERNEL);
1791 if (!namespace)
1792 panic("Can't allocate initial namespace");
1793 atomic_set(&namespace->count, 1);
1794 INIT_LIST_HEAD(&namespace->list);
Al Viro5addc5d2005-11-07 17:15:49 -05001795 init_waitqueue_head(&namespace->poll);
1796 namespace->event = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 list_add(&mnt->mnt_list, &namespace->list);
1798 namespace->root = mnt;
1799 mnt->mnt_namespace = namespace;
1800
1801 init_task.namespace = namespace;
1802 read_lock(&tasklist_lock);
1803 do_each_thread(g, p) {
1804 get_namespace(namespace);
1805 p->namespace = namespace;
1806 } while_each_thread(g, p);
1807 read_unlock(&tasklist_lock);
1808
1809 set_fs_pwd(current->fs, namespace->root, namespace->root->mnt_root);
1810 set_fs_root(current->fs, namespace->root, namespace->root->mnt_root);
1811}
1812
1813void __init mnt_init(unsigned long mempages)
1814{
1815 struct list_head *d;
1816 unsigned int nr_hash;
1817 int i;
1818
Ram Pai390c6842005-11-07 17:17:51 -05001819 init_rwsem(&namespace_sem);
1820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 mnt_cache = kmem_cache_create("mnt_cache", sizeof(struct vfsmount),
Ram Paib58fed82005-11-07 17:16:09 -05001822 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
Ram Paib58fed82005-11-07 17:16:09 -05001824 mount_hashtable = (struct list_head *)__get_free_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
1826 if (!mount_hashtable)
1827 panic("Failed to allocate mount hash table\n");
1828
1829 /*
1830 * Find the power-of-two list-heads that can fit into the allocation..
1831 * We don't guarantee that "sizeof(struct list_head)" is necessarily
1832 * a power-of-two.
1833 */
1834 nr_hash = PAGE_SIZE / sizeof(struct list_head);
1835 hash_bits = 0;
1836 do {
1837 hash_bits++;
1838 } while ((nr_hash >> hash_bits) != 0);
1839 hash_bits--;
1840
1841 /*
1842 * Re-calculate the actual number of entries and the mask
1843 * from the number of bits we can fit.
1844 */
1845 nr_hash = 1UL << hash_bits;
Ram Paib58fed82005-11-07 17:16:09 -05001846 hash_mask = nr_hash - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
1848 printk("Mount-cache hash table entries: %d\n", nr_hash);
1849
1850 /* And initialize the newly allocated array */
1851 d = mount_hashtable;
1852 i = nr_hash;
1853 do {
1854 INIT_LIST_HEAD(d);
1855 d++;
1856 i--;
1857 } while (i);
1858 sysfs_init();
Miklos Szeredif87fd4c2006-01-16 22:14:23 -08001859 subsystem_register(&fs_subsys);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 init_rootfs();
1861 init_mount_tree();
1862}
1863
1864void __put_namespace(struct namespace *namespace)
1865{
Miklos Szeredi1ce88cf2005-07-07 17:57:24 -07001866 struct vfsmount *root = namespace->root;
Ram Pai70fbcdf2005-11-07 17:17:04 -05001867 LIST_HEAD(umount_list);
Miklos Szeredi1ce88cf2005-07-07 17:57:24 -07001868 namespace->root = NULL;
1869 spin_unlock(&vfsmount_lock);
Ram Pai390c6842005-11-07 17:17:51 -05001870 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 spin_lock(&vfsmount_lock);
Ram Paia05964f2005-11-07 17:20:17 -05001872 umount_tree(root, 0, &umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 spin_unlock(&vfsmount_lock);
Ram Pai390c6842005-11-07 17:17:51 -05001874 up_write(&namespace_sem);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001875 release_mounts(&umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 kfree(namespace);
1877}