blob: 066b393578c1d8ed5bd93a4a366b563d9150fdfa [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#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>
Randy Dunlap15a67dd2006-09-29 01:58:57 -070016#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#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>
Andrew Mortonf20a9ea2006-08-14 22:43:23 -070021#include <linux/sysfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/seq_file.h>
Kirill Korotaev6b3286e2006-12-08 02:37:56 -080023#include <linux/mnt_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/namei.h>
25#include <linux/security.h>
26#include <linux/mount.h>
David Howells07f3f052006-09-30 20:52:18 +020027#include <linux/ramfs.h>
Eric Dumazet13f14b42008-02-06 01:37:57 -080028#include <linux/log2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/uaccess.h>
30#include <asm/unistd.h>
Ram Pai07b20882005-11-07 17:19:07 -050031#include "pnode.h"
Adrian Bunk948730b2007-07-15 23:41:25 -070032#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Eric Dumazet13f14b42008-02-06 01:37:57 -080034#define HASH_SHIFT ilog2(PAGE_SIZE / sizeof(struct list_head))
35#define HASH_SIZE (1UL << HASH_SHIFT)
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037/* spinlock for vfsmount related operations, inplace of dcache_lock */
Al Viro5addc5d2005-11-07 17:15:49 -050038__cacheline_aligned_in_smp DEFINE_SPINLOCK(vfsmount_lock);
39
40static int event;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Eric Dumazetfa3536c2006-03-26 01:37:24 -080042static struct list_head *mount_hashtable __read_mostly;
Christoph Lametere18b8902006-12-06 20:33:20 -080043static struct kmem_cache *mnt_cache __read_mostly;
Ram Pai390c6842005-11-07 17:17:51 -050044static struct rw_semaphore namespace_sem;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Miklos Szeredif87fd4c2006-01-16 22:14:23 -080046/* /sys/fs */
Greg Kroah-Hartman00d26662007-10-29 14:17:23 -060047struct kobject *fs_kobj;
48EXPORT_SYMBOL_GPL(fs_kobj);
Miklos Szeredif87fd4c2006-01-16 22:14:23 -080049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050static inline unsigned long hash(struct vfsmount *mnt, struct dentry *dentry)
51{
Ram Paib58fed82005-11-07 17:16:09 -050052 unsigned long tmp = ((unsigned long)mnt / L1_CACHE_BYTES);
53 tmp += ((unsigned long)dentry / L1_CACHE_BYTES);
Eric Dumazet13f14b42008-02-06 01:37:57 -080054 tmp = tmp + (tmp >> HASH_SHIFT);
55 return tmp & (HASH_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056}
57
58struct vfsmount *alloc_vfsmnt(const char *name)
59{
Robert P. J. Dayc3762222007-02-10 01:45:03 -080060 struct vfsmount *mnt = kmem_cache_zalloc(mnt_cache, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 if (mnt) {
Ram Paib58fed82005-11-07 17:16:09 -050062 atomic_set(&mnt->mnt_count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 INIT_LIST_HEAD(&mnt->mnt_hash);
64 INIT_LIST_HEAD(&mnt->mnt_child);
65 INIT_LIST_HEAD(&mnt->mnt_mounts);
66 INIT_LIST_HEAD(&mnt->mnt_list);
Miklos Szeredi55e700b2005-07-07 17:57:30 -070067 INIT_LIST_HEAD(&mnt->mnt_expire);
Ram Pai03e06e62005-11-07 17:19:33 -050068 INIT_LIST_HEAD(&mnt->mnt_share);
Ram Paia58b0eb2005-11-07 17:20:48 -050069 INIT_LIST_HEAD(&mnt->mnt_slave_list);
70 INIT_LIST_HEAD(&mnt->mnt_slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 if (name) {
Ram Paib58fed82005-11-07 17:16:09 -050072 int size = strlen(name) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 char *newname = kmalloc(size, GFP_KERNEL);
74 if (newname) {
75 memcpy(newname, name, size);
76 mnt->mnt_devname = newname;
77 }
78 }
79 }
80 return mnt;
81}
82
Dave Hansen83660252008-02-15 14:37:30 -080083/*
84 * Most r/o checks on a fs are for operations that take
85 * discrete amounts of time, like a write() or unlink().
86 * We must keep track of when those operations start
87 * (for permission checks) and when they end, so that
88 * we can determine when writes are able to occur to
89 * a filesystem.
90 */
91/**
92 * mnt_want_write - get write access to a mount
93 * @mnt: the mount on which to take a write
94 *
95 * This tells the low-level filesystem that a write is
96 * about to be performed to it, and makes sure that
97 * writes are allowed before returning success. When
98 * the write operation is finished, mnt_drop_write()
99 * must be called. This is effectively a refcount.
100 */
101int mnt_want_write(struct vfsmount *mnt)
102{
103 if (__mnt_is_readonly(mnt))
104 return -EROFS;
105 return 0;
106}
107EXPORT_SYMBOL_GPL(mnt_want_write);
108
109/**
110 * mnt_drop_write - give up write access to a mount
111 * @mnt: the mount on which to give up write access
112 *
113 * Tells the low-level filesystem that we are done
114 * performing writes to it. Must be matched with
115 * mnt_want_write() call above.
116 */
117void mnt_drop_write(struct vfsmount *mnt)
118{
119}
120EXPORT_SYMBOL_GPL(mnt_drop_write);
121
122/*
123 * __mnt_is_readonly: check whether a mount is read-only
124 * @mnt: the mount to check for its write status
125 *
126 * This shouldn't be used directly ouside of the VFS.
127 * It does not guarantee that the filesystem will stay
128 * r/w, just that it is right *now*. This can not and
129 * should not be used in place of IS_RDONLY(inode).
130 */
131int __mnt_is_readonly(struct vfsmount *mnt)
132{
133 return (mnt->mnt_sb->s_flags & MS_RDONLY);
134}
135EXPORT_SYMBOL_GPL(__mnt_is_readonly);
136
David Howells454e2392006-06-23 02:02:57 -0700137int simple_set_mnt(struct vfsmount *mnt, struct super_block *sb)
138{
139 mnt->mnt_sb = sb;
140 mnt->mnt_root = dget(sb->s_root);
141 return 0;
142}
143
144EXPORT_SYMBOL(simple_set_mnt);
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146void free_vfsmnt(struct vfsmount *mnt)
147{
148 kfree(mnt->mnt_devname);
149 kmem_cache_free(mnt_cache, mnt);
150}
151
152/*
Ram Paia05964f2005-11-07 17:20:17 -0500153 * find the first or last mount at @dentry on vfsmount @mnt depending on
154 * @dir. If @dir is set return the first mount else return the last mount.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 */
Ram Paia05964f2005-11-07 17:20:17 -0500156struct vfsmount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry,
157 int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Ram Paib58fed82005-11-07 17:16:09 -0500159 struct list_head *head = mount_hashtable + hash(mnt, dentry);
160 struct list_head *tmp = head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 struct vfsmount *p, *found = NULL;
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 for (;;) {
Ram Paia05964f2005-11-07 17:20:17 -0500164 tmp = dir ? tmp->next : tmp->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 p = NULL;
166 if (tmp == head)
167 break;
168 p = list_entry(tmp, struct vfsmount, mnt_hash);
169 if (p->mnt_parent == mnt && p->mnt_mountpoint == dentry) {
Ram Paia05964f2005-11-07 17:20:17 -0500170 found = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 break;
172 }
173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 return found;
175}
176
Ram Paia05964f2005-11-07 17:20:17 -0500177/*
178 * lookup_mnt increments the ref count before returning
179 * the vfsmount struct.
180 */
181struct vfsmount *lookup_mnt(struct vfsmount *mnt, struct dentry *dentry)
182{
183 struct vfsmount *child_mnt;
184 spin_lock(&vfsmount_lock);
185 if ((child_mnt = __lookup_mnt(mnt, dentry, 1)))
186 mntget(child_mnt);
187 spin_unlock(&vfsmount_lock);
188 return child_mnt;
189}
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191static inline int check_mnt(struct vfsmount *mnt)
192{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800193 return mnt->mnt_ns == current->nsproxy->mnt_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800196static void touch_mnt_namespace(struct mnt_namespace *ns)
Al Viro5addc5d2005-11-07 17:15:49 -0500197{
198 if (ns) {
199 ns->event = ++event;
200 wake_up_interruptible(&ns->poll);
201 }
202}
203
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800204static void __touch_mnt_namespace(struct mnt_namespace *ns)
Al Viro5addc5d2005-11-07 17:15:49 -0500205{
206 if (ns && ns->event != event) {
207 ns->event = event;
208 wake_up_interruptible(&ns->poll);
209 }
210}
211
Al Viro1a390682008-03-21 20:48:19 -0400212static void detach_mnt(struct vfsmount *mnt, struct path *old_path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Al Viro1a390682008-03-21 20:48:19 -0400214 old_path->dentry = mnt->mnt_mountpoint;
215 old_path->mnt = mnt->mnt_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 mnt->mnt_parent = mnt;
217 mnt->mnt_mountpoint = mnt->mnt_root;
218 list_del_init(&mnt->mnt_child);
219 list_del_init(&mnt->mnt_hash);
Al Viro1a390682008-03-21 20:48:19 -0400220 old_path->dentry->d_mounted--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
Ram Paib90fa9a2005-11-07 17:19:50 -0500223void mnt_set_mountpoint(struct vfsmount *mnt, struct dentry *dentry,
224 struct vfsmount *child_mnt)
225{
226 child_mnt->mnt_parent = mntget(mnt);
227 child_mnt->mnt_mountpoint = dget(dentry);
228 dentry->d_mounted++;
229}
230
Al Viro1a390682008-03-21 20:48:19 -0400231static void attach_mnt(struct vfsmount *mnt, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Al Viro1a390682008-03-21 20:48:19 -0400233 mnt_set_mountpoint(path->mnt, path->dentry, mnt);
Ram Paib90fa9a2005-11-07 17:19:50 -0500234 list_add_tail(&mnt->mnt_hash, mount_hashtable +
Al Viro1a390682008-03-21 20:48:19 -0400235 hash(path->mnt, path->dentry));
236 list_add_tail(&mnt->mnt_child, &path->mnt->mnt_mounts);
Ram Paib90fa9a2005-11-07 17:19:50 -0500237}
238
239/*
240 * the caller must hold vfsmount_lock
241 */
242static void commit_tree(struct vfsmount *mnt)
243{
244 struct vfsmount *parent = mnt->mnt_parent;
245 struct vfsmount *m;
246 LIST_HEAD(head);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800247 struct mnt_namespace *n = parent->mnt_ns;
Ram Paib90fa9a2005-11-07 17:19:50 -0500248
249 BUG_ON(parent == mnt);
250
251 list_add_tail(&head, &mnt->mnt_list);
252 list_for_each_entry(m, &head, mnt_list)
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800253 m->mnt_ns = n;
Ram Paib90fa9a2005-11-07 17:19:50 -0500254 list_splice(&head, n->list.prev);
255
256 list_add_tail(&mnt->mnt_hash, mount_hashtable +
257 hash(parent, mnt->mnt_mountpoint));
258 list_add_tail(&mnt->mnt_child, &parent->mnt_mounts);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800259 touch_mnt_namespace(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
262static struct vfsmount *next_mnt(struct vfsmount *p, struct vfsmount *root)
263{
264 struct list_head *next = p->mnt_mounts.next;
265 if (next == &p->mnt_mounts) {
266 while (1) {
267 if (p == root)
268 return NULL;
269 next = p->mnt_child.next;
270 if (next != &p->mnt_parent->mnt_mounts)
271 break;
272 p = p->mnt_parent;
273 }
274 }
275 return list_entry(next, struct vfsmount, mnt_child);
276}
277
Ram Pai9676f0c2005-11-07 17:21:20 -0500278static struct vfsmount *skip_mnt_tree(struct vfsmount *p)
279{
280 struct list_head *prev = p->mnt_mounts.prev;
281 while (prev != &p->mnt_mounts) {
282 p = list_entry(prev, struct vfsmount, mnt_child);
283 prev = p->mnt_mounts.prev;
284 }
285 return p;
286}
287
Ram Pai36341f62005-11-07 17:17:22 -0500288static struct vfsmount *clone_mnt(struct vfsmount *old, struct dentry *root,
289 int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
291 struct super_block *sb = old->mnt_sb;
292 struct vfsmount *mnt = alloc_vfsmnt(old->mnt_devname);
293
294 if (mnt) {
295 mnt->mnt_flags = old->mnt_flags;
296 atomic_inc(&sb->s_active);
297 mnt->mnt_sb = sb;
298 mnt->mnt_root = dget(root);
299 mnt->mnt_mountpoint = mnt->mnt_root;
300 mnt->mnt_parent = mnt;
Ram Paib90fa9a2005-11-07 17:19:50 -0500301
Ram Pai5afe0022005-11-07 17:21:01 -0500302 if (flag & CL_SLAVE) {
303 list_add(&mnt->mnt_slave, &old->mnt_slave_list);
304 mnt->mnt_master = old;
305 CLEAR_MNT_SHARED(mnt);
Al Viro8aec0802007-06-07 12:20:32 -0400306 } else if (!(flag & CL_PRIVATE)) {
Ram Pai5afe0022005-11-07 17:21:01 -0500307 if ((flag & CL_PROPAGATION) || IS_MNT_SHARED(old))
308 list_add(&mnt->mnt_share, &old->mnt_share);
309 if (IS_MNT_SLAVE(old))
310 list_add(&mnt->mnt_slave, &old->mnt_slave);
311 mnt->mnt_master = old->mnt_master;
312 }
Ram Paib90fa9a2005-11-07 17:19:50 -0500313 if (flag & CL_MAKE_SHARED)
314 set_mnt_shared(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 /* stick the duplicate mount on the same expiry list
317 * as the original if that was on one */
Ram Pai36341f62005-11-07 17:17:22 -0500318 if (flag & CL_EXPIRE) {
Ram Pai36341f62005-11-07 17:17:22 -0500319 if (!list_empty(&old->mnt_expire))
320 list_add(&mnt->mnt_expire, &old->mnt_expire);
Ram Pai36341f62005-11-07 17:17:22 -0500321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
323 return mnt;
324}
325
Al Viro7b7b1ac2005-11-07 17:13:39 -0500326static inline void __mntput(struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
328 struct super_block *sb = mnt->mnt_sb;
329 dput(mnt->mnt_root);
330 free_vfsmnt(mnt);
331 deactivate_super(sb);
332}
333
Al Viro7b7b1ac2005-11-07 17:13:39 -0500334void mntput_no_expire(struct vfsmount *mnt)
335{
336repeat:
337 if (atomic_dec_and_lock(&mnt->mnt_count, &vfsmount_lock)) {
338 if (likely(!mnt->mnt_pinned)) {
339 spin_unlock(&vfsmount_lock);
340 __mntput(mnt);
341 return;
342 }
343 atomic_add(mnt->mnt_pinned + 1, &mnt->mnt_count);
344 mnt->mnt_pinned = 0;
345 spin_unlock(&vfsmount_lock);
346 acct_auto_close_mnt(mnt);
347 security_sb_umount_close(mnt);
348 goto repeat;
349 }
350}
351
352EXPORT_SYMBOL(mntput_no_expire);
353
354void mnt_pin(struct vfsmount *mnt)
355{
356 spin_lock(&vfsmount_lock);
357 mnt->mnt_pinned++;
358 spin_unlock(&vfsmount_lock);
359}
360
361EXPORT_SYMBOL(mnt_pin);
362
363void mnt_unpin(struct vfsmount *mnt)
364{
365 spin_lock(&vfsmount_lock);
366 if (mnt->mnt_pinned) {
367 atomic_inc(&mnt->mnt_count);
368 mnt->mnt_pinned--;
369 }
370 spin_unlock(&vfsmount_lock);
371}
372
373EXPORT_SYMBOL(mnt_unpin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800375static inline void mangle(struct seq_file *m, const char *s)
376{
377 seq_escape(m, s, " \t\n\\");
378}
379
380/*
381 * Simple .show_options callback for filesystems which don't want to
382 * implement more complex mount option showing.
383 *
384 * See also save_mount_options().
385 */
386int generic_show_options(struct seq_file *m, struct vfsmount *mnt)
387{
388 const char *options = mnt->mnt_sb->s_options;
389
390 if (options != NULL && options[0]) {
391 seq_putc(m, ',');
392 mangle(m, options);
393 }
394
395 return 0;
396}
397EXPORT_SYMBOL(generic_show_options);
398
399/*
400 * If filesystem uses generic_show_options(), this function should be
401 * called from the fill_super() callback.
402 *
403 * The .remount_fs callback usually needs to be handled in a special
404 * way, to make sure, that previous options are not overwritten if the
405 * remount fails.
406 *
407 * Also note, that if the filesystem's .remount_fs function doesn't
408 * reset all options to their default value, but changes only newly
409 * given options, then the displayed options will not reflect reality
410 * any more.
411 */
412void save_mount_options(struct super_block *sb, char *options)
413{
414 kfree(sb->s_options);
415 sb->s_options = kstrdup(options, GFP_KERNEL);
416}
417EXPORT_SYMBOL(save_mount_options);
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419/* iterator */
420static void *m_start(struct seq_file *m, loff_t *pos)
421{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800422 struct mnt_namespace *n = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Ram Pai390c6842005-11-07 17:17:51 -0500424 down_read(&namespace_sem);
Pavel Emelianovb0765fb2007-07-15 23:39:55 -0700425 return seq_list_start(&n->list, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
428static void *m_next(struct seq_file *m, void *v, loff_t *pos)
429{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800430 struct mnt_namespace *n = m->private;
Pavel Emelianovb0765fb2007-07-15 23:39:55 -0700431
432 return seq_list_next(v, &n->list, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
435static void m_stop(struct seq_file *m, void *v)
436{
Ram Pai390c6842005-11-07 17:17:51 -0500437 up_read(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440static int show_vfsmnt(struct seq_file *m, void *v)
441{
Pavel Emelianovb0765fb2007-07-15 23:39:55 -0700442 struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 int err = 0;
444 static struct proc_fs_info {
445 int flag;
446 char *str;
447 } fs_info[] = {
448 { MS_SYNCHRONOUS, ",sync" },
449 { MS_DIRSYNC, ",dirsync" },
450 { MS_MANDLOCK, ",mand" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 { 0, NULL }
452 };
453 static struct proc_fs_info mnt_info[] = {
454 { MNT_NOSUID, ",nosuid" },
455 { MNT_NODEV, ",nodev" },
456 { MNT_NOEXEC, ",noexec" },
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -0800457 { MNT_NOATIME, ",noatime" },
458 { MNT_NODIRATIME, ",nodiratime" },
Valerie Henson47ae32d2006-12-13 00:34:34 -0800459 { MNT_RELATIME, ",relatime" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 { 0, NULL }
461 };
462 struct proc_fs_info *fs_infop;
Jan Blunckc32c2f62008-02-14 19:38:43 -0800463 struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 mangle(m, mnt->mnt_devname ? mnt->mnt_devname : "none");
466 seq_putc(m, ' ');
Jan Blunckc32c2f62008-02-14 19:38:43 -0800467 seq_path(m, &mnt_path, " \t\n\\");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 seq_putc(m, ' ');
469 mangle(m, mnt->mnt_sb->s_type->name);
Miklos Szeredi79c0b2d2007-05-08 00:25:43 -0700470 if (mnt->mnt_sb->s_subtype && mnt->mnt_sb->s_subtype[0]) {
471 seq_putc(m, '.');
472 mangle(m, mnt->mnt_sb->s_subtype);
473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 seq_puts(m, mnt->mnt_sb->s_flags & MS_RDONLY ? " ro" : " rw");
475 for (fs_infop = fs_info; fs_infop->flag; fs_infop++) {
476 if (mnt->mnt_sb->s_flags & fs_infop->flag)
477 seq_puts(m, fs_infop->str);
478 }
479 for (fs_infop = mnt_info; fs_infop->flag; fs_infop++) {
480 if (mnt->mnt_flags & fs_infop->flag)
481 seq_puts(m, fs_infop->str);
482 }
483 if (mnt->mnt_sb->s_op->show_options)
484 err = mnt->mnt_sb->s_op->show_options(m, mnt);
485 seq_puts(m, " 0 0\n");
486 return err;
487}
488
489struct seq_operations mounts_op = {
490 .start = m_start,
491 .next = m_next,
492 .stop = m_stop,
493 .show = show_vfsmnt
494};
495
Chuck Leverb4629fe2006-03-20 13:44:12 -0500496static int show_vfsstat(struct seq_file *m, void *v)
497{
Pavel Emelianovb0765fb2007-07-15 23:39:55 -0700498 struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
Jan Blunckc32c2f62008-02-14 19:38:43 -0800499 struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
Chuck Leverb4629fe2006-03-20 13:44:12 -0500500 int err = 0;
501
502 /* device */
503 if (mnt->mnt_devname) {
504 seq_puts(m, "device ");
505 mangle(m, mnt->mnt_devname);
506 } else
507 seq_puts(m, "no device");
508
509 /* mount point */
510 seq_puts(m, " mounted on ");
Jan Blunckc32c2f62008-02-14 19:38:43 -0800511 seq_path(m, &mnt_path, " \t\n\\");
Chuck Leverb4629fe2006-03-20 13:44:12 -0500512 seq_putc(m, ' ');
513
514 /* file system type */
515 seq_puts(m, "with fstype ");
516 mangle(m, mnt->mnt_sb->s_type->name);
517
518 /* optional statistics */
519 if (mnt->mnt_sb->s_op->show_stats) {
520 seq_putc(m, ' ');
521 err = mnt->mnt_sb->s_op->show_stats(m, mnt);
522 }
523
524 seq_putc(m, '\n');
525 return err;
526}
527
528struct seq_operations mountstats_op = {
529 .start = m_start,
530 .next = m_next,
531 .stop = m_stop,
532 .show = show_vfsstat,
533};
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535/**
536 * may_umount_tree - check if a mount tree is busy
537 * @mnt: root of mount tree
538 *
539 * This is called to check if a tree of mounts has any
540 * open files, pwds, chroots or sub mounts that are
541 * busy.
542 */
543int may_umount_tree(struct vfsmount *mnt)
544{
Ram Pai36341f62005-11-07 17:17:22 -0500545 int actual_refs = 0;
546 int minimum_refs = 0;
547 struct vfsmount *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 spin_lock(&vfsmount_lock);
Ram Pai36341f62005-11-07 17:17:22 -0500550 for (p = mnt; p; p = next_mnt(p, mnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 actual_refs += atomic_read(&p->mnt_count);
552 minimum_refs += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
554 spin_unlock(&vfsmount_lock);
555
556 if (actual_refs > minimum_refs)
Ian Kente3474a82006-03-27 01:14:51 -0800557 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Ian Kente3474a82006-03-27 01:14:51 -0800559 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
562EXPORT_SYMBOL(may_umount_tree);
563
564/**
565 * may_umount - check if a mount point is busy
566 * @mnt: root of mount
567 *
568 * This is called to check if a mount point has any
569 * open files, pwds, chroots or sub mounts. If the
570 * mount has sub mounts this will return busy
571 * regardless of whether the sub mounts are busy.
572 *
573 * Doesn't take quota and stuff into account. IOW, in some cases it will
574 * give false negatives. The main reason why it's here is that we need
575 * a non-destructive way to look for easily umountable filesystems.
576 */
577int may_umount(struct vfsmount *mnt)
578{
Ian Kente3474a82006-03-27 01:14:51 -0800579 int ret = 1;
Ram Paia05964f2005-11-07 17:20:17 -0500580 spin_lock(&vfsmount_lock);
581 if (propagate_mount_busy(mnt, 2))
Ian Kente3474a82006-03-27 01:14:51 -0800582 ret = 0;
Ram Paia05964f2005-11-07 17:20:17 -0500583 spin_unlock(&vfsmount_lock);
584 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585}
586
587EXPORT_SYMBOL(may_umount);
588
Ram Paib90fa9a2005-11-07 17:19:50 -0500589void release_mounts(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Ram Pai70fbcdf2005-11-07 17:17:04 -0500591 struct vfsmount *mnt;
Miklos Szeredibf066c72006-01-08 01:03:19 -0800592 while (!list_empty(head)) {
Pavel Emelianovb5e61812007-05-08 00:30:19 -0700593 mnt = list_first_entry(head, struct vfsmount, mnt_hash);
Ram Pai70fbcdf2005-11-07 17:17:04 -0500594 list_del_init(&mnt->mnt_hash);
595 if (mnt->mnt_parent != mnt) {
596 struct dentry *dentry;
597 struct vfsmount *m;
598 spin_lock(&vfsmount_lock);
599 dentry = mnt->mnt_mountpoint;
600 m = mnt->mnt_parent;
601 mnt->mnt_mountpoint = mnt->mnt_root;
602 mnt->mnt_parent = mnt;
Al Viro7c4b93d2008-03-21 23:59:49 -0400603 m->mnt_ghosts--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 spin_unlock(&vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -0500605 dput(dentry);
606 mntput(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
608 mntput(mnt);
Ram Pai70fbcdf2005-11-07 17:17:04 -0500609 }
610}
611
Ram Paia05964f2005-11-07 17:20:17 -0500612void umount_tree(struct vfsmount *mnt, int propagate, struct list_head *kill)
Ram Pai70fbcdf2005-11-07 17:17:04 -0500613{
614 struct vfsmount *p;
615
Akinobu Mita1bfba4e2006-06-26 00:24:40 -0700616 for (p = mnt; p; p = next_mnt(p, mnt))
617 list_move(&p->mnt_hash, kill);
Ram Pai70fbcdf2005-11-07 17:17:04 -0500618
Ram Paia05964f2005-11-07 17:20:17 -0500619 if (propagate)
620 propagate_umount(kill);
621
Ram Pai70fbcdf2005-11-07 17:17:04 -0500622 list_for_each_entry(p, kill, mnt_hash) {
623 list_del_init(&p->mnt_expire);
624 list_del_init(&p->mnt_list);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800625 __touch_mnt_namespace(p->mnt_ns);
626 p->mnt_ns = NULL;
Ram Pai70fbcdf2005-11-07 17:17:04 -0500627 list_del_init(&p->mnt_child);
Al Viro7c4b93d2008-03-21 23:59:49 -0400628 if (p->mnt_parent != p) {
629 p->mnt_parent->mnt_ghosts++;
Al Virof30ac312006-02-01 07:53:21 -0500630 p->mnt_mountpoint->d_mounted--;
Al Viro7c4b93d2008-03-21 23:59:49 -0400631 }
Ram Paia05964f2005-11-07 17:20:17 -0500632 change_mnt_propagation(p, MS_PRIVATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
634}
635
Al Viroc35038b2008-03-22 00:46:23 -0400636static void shrink_submounts(struct vfsmount *mnt, struct list_head *umounts);
637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638static int do_umount(struct vfsmount *mnt, int flags)
639{
Ram Paib58fed82005-11-07 17:16:09 -0500640 struct super_block *sb = mnt->mnt_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 int retval;
Ram Pai70fbcdf2005-11-07 17:17:04 -0500642 LIST_HEAD(umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 retval = security_sb_umount(mnt, flags);
645 if (retval)
646 return retval;
647
648 /*
649 * Allow userspace to request a mountpoint be expired rather than
650 * unmounting unconditionally. Unmount only happens if:
651 * (1) the mark is already set (the mark is cleared by mntput())
652 * (2) the usage count == 1 [parent vfsmount] + 1 [sys_umount]
653 */
654 if (flags & MNT_EXPIRE) {
Jan Blunck6ac08c32008-02-14 19:34:38 -0800655 if (mnt == current->fs->root.mnt ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 flags & (MNT_FORCE | MNT_DETACH))
657 return -EINVAL;
658
659 if (atomic_read(&mnt->mnt_count) != 2)
660 return -EBUSY;
661
662 if (!xchg(&mnt->mnt_expiry_mark, 1))
663 return -EAGAIN;
664 }
665
666 /*
667 * If we may have to abort operations to get out of this
668 * mount, and they will themselves hold resources we must
669 * allow the fs to do things. In the Unix tradition of
670 * 'Gee thats tricky lets do it in userspace' the umount_begin
671 * might fail to complete on the first run through as other tasks
672 * must return, and the like. Thats for the mount program to worry
673 * about for the moment.
674 */
675
676 lock_kernel();
Trond Myklebust8b512d92006-06-09 09:34:18 -0400677 if (sb->s_op->umount_begin)
678 sb->s_op->umount_begin(mnt, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 unlock_kernel();
680
681 /*
682 * No sense to grab the lock for this test, but test itself looks
683 * somewhat bogus. Suggestions for better replacement?
684 * Ho-hum... In principle, we might treat that as umount + switch
685 * to rootfs. GC would eventually take care of the old vfsmount.
686 * Actually it makes sense, especially if rootfs would contain a
687 * /reboot - static binary that would close all descriptors and
688 * call reboot(9). Then init(8) could umount root and exec /reboot.
689 */
Jan Blunck6ac08c32008-02-14 19:34:38 -0800690 if (mnt == current->fs->root.mnt && !(flags & MNT_DETACH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 /*
692 * Special case for "unmounting" root ...
693 * we just try to remount it readonly.
694 */
695 down_write(&sb->s_umount);
696 if (!(sb->s_flags & MS_RDONLY)) {
697 lock_kernel();
698 DQUOT_OFF(sb);
699 retval = do_remount_sb(sb, MS_RDONLY, NULL, 0);
700 unlock_kernel();
701 }
702 up_write(&sb->s_umount);
703 return retval;
704 }
705
Ram Pai390c6842005-11-07 17:17:51 -0500706 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 spin_lock(&vfsmount_lock);
Al Viro5addc5d2005-11-07 17:15:49 -0500708 event++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Al Viroc35038b2008-03-22 00:46:23 -0400710 if (!(flags & MNT_DETACH))
711 shrink_submounts(mnt, &umount_list);
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 retval = -EBUSY;
Ram Paia05964f2005-11-07 17:20:17 -0500714 if (flags & MNT_DETACH || !propagate_mount_busy(mnt, 2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 if (!list_empty(&mnt->mnt_list))
Ram Paia05964f2005-11-07 17:20:17 -0500716 umount_tree(mnt, 1, &umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 retval = 0;
718 }
719 spin_unlock(&vfsmount_lock);
720 if (retval)
721 security_sb_umount_busy(mnt);
Ram Pai390c6842005-11-07 17:17:51 -0500722 up_write(&namespace_sem);
Ram Pai70fbcdf2005-11-07 17:17:04 -0500723 release_mounts(&umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 return retval;
725}
726
727/*
728 * Now umount can handle mount points as well as block devices.
729 * This is important for filesystems which use unnamed block devices.
730 *
731 * We now support a flag for forced unmount like the other 'big iron'
732 * unixes. Our API is identical to OSF/1 to avoid making a mess of AMD
733 */
734
735asmlinkage long sys_umount(char __user * name, int flags)
736{
737 struct nameidata nd;
738 int retval;
739
740 retval = __user_walk(name, LOOKUP_FOLLOW, &nd);
741 if (retval)
742 goto out;
743 retval = -EINVAL;
Jan Blunck4ac91372008-02-14 19:34:32 -0800744 if (nd.path.dentry != nd.path.mnt->mnt_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 goto dput_and_out;
Jan Blunck4ac91372008-02-14 19:34:32 -0800746 if (!check_mnt(nd.path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 goto dput_and_out;
748
749 retval = -EPERM;
750 if (!capable(CAP_SYS_ADMIN))
751 goto dput_and_out;
752
Jan Blunck4ac91372008-02-14 19:34:32 -0800753 retval = do_umount(nd.path.mnt, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754dput_and_out:
Jan Blunck429731b2008-02-14 19:34:31 -0800755 /* we mustn't call path_put() as that would clear mnt_expiry_mark */
Jan Blunck4ac91372008-02-14 19:34:32 -0800756 dput(nd.path.dentry);
757 mntput_no_expire(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758out:
759 return retval;
760}
761
762#ifdef __ARCH_WANT_SYS_OLDUMOUNT
763
764/*
Ram Paib58fed82005-11-07 17:16:09 -0500765 * The 2.0 compatible umount. No flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767asmlinkage long sys_oldumount(char __user * name)
768{
Ram Paib58fed82005-11-07 17:16:09 -0500769 return sys_umount(name, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
772#endif
773
774static int mount_is_safe(struct nameidata *nd)
775{
776 if (capable(CAP_SYS_ADMIN))
777 return 0;
778 return -EPERM;
779#ifdef notyet
Jan Blunck4ac91372008-02-14 19:34:32 -0800780 if (S_ISLNK(nd->path.dentry->d_inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return -EPERM;
Jan Blunck4ac91372008-02-14 19:34:32 -0800782 if (nd->path.dentry->d_inode->i_mode & S_ISVTX) {
783 if (current->uid != nd->path.dentry->d_inode->i_uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 return -EPERM;
785 }
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800786 if (vfs_permission(nd, MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 return -EPERM;
788 return 0;
789#endif
790}
791
Ram Paib58fed82005-11-07 17:16:09 -0500792static int lives_below_in_same_fs(struct dentry *d, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
794 while (1) {
795 if (d == dentry)
796 return 1;
797 if (d == NULL || d == d->d_parent)
798 return 0;
799 d = d->d_parent;
800 }
801}
802
Ram Paib90fa9a2005-11-07 17:19:50 -0500803struct vfsmount *copy_tree(struct vfsmount *mnt, struct dentry *dentry,
Ram Pai36341f62005-11-07 17:17:22 -0500804 int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
806 struct vfsmount *res, *p, *q, *r, *s;
Al Viro1a390682008-03-21 20:48:19 -0400807 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Ram Pai9676f0c2005-11-07 17:21:20 -0500809 if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(mnt))
810 return NULL;
811
Ram Pai36341f62005-11-07 17:17:22 -0500812 res = q = clone_mnt(mnt, dentry, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (!q)
814 goto Enomem;
815 q->mnt_mountpoint = mnt->mnt_mountpoint;
816
817 p = mnt;
Domen Puncerfdadd652005-09-10 00:27:07 -0700818 list_for_each_entry(r, &mnt->mnt_mounts, mnt_child) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 if (!lives_below_in_same_fs(r->mnt_mountpoint, dentry))
820 continue;
821
822 for (s = r; s; s = next_mnt(s, r)) {
Ram Pai9676f0c2005-11-07 17:21:20 -0500823 if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(s)) {
824 s = skip_mnt_tree(s);
825 continue;
826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 while (p != s->mnt_parent) {
828 p = p->mnt_parent;
829 q = q->mnt_parent;
830 }
831 p = s;
Al Viro1a390682008-03-21 20:48:19 -0400832 path.mnt = q;
833 path.dentry = p->mnt_mountpoint;
Ram Pai36341f62005-11-07 17:17:22 -0500834 q = clone_mnt(p, p->mnt_root, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 if (!q)
836 goto Enomem;
837 spin_lock(&vfsmount_lock);
838 list_add_tail(&q->mnt_list, &res->mnt_list);
Al Viro1a390682008-03-21 20:48:19 -0400839 attach_mnt(q, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 spin_unlock(&vfsmount_lock);
841 }
842 }
843 return res;
Ram Paib58fed82005-11-07 17:16:09 -0500844Enomem:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 if (res) {
Ram Pai70fbcdf2005-11-07 17:17:04 -0500846 LIST_HEAD(umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 spin_lock(&vfsmount_lock);
Ram Paia05964f2005-11-07 17:20:17 -0500848 umount_tree(res, 0, &umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 spin_unlock(&vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -0500850 release_mounts(&umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
852 return NULL;
853}
854
Al Viro8aec0802007-06-07 12:20:32 -0400855struct vfsmount *collect_mounts(struct vfsmount *mnt, struct dentry *dentry)
856{
857 struct vfsmount *tree;
858 down_read(&namespace_sem);
859 tree = copy_tree(mnt, dentry, CL_COPY_ALL | CL_PRIVATE);
860 up_read(&namespace_sem);
861 return tree;
862}
863
864void drop_collected_mounts(struct vfsmount *mnt)
865{
866 LIST_HEAD(umount_list);
867 down_read(&namespace_sem);
868 spin_lock(&vfsmount_lock);
869 umount_tree(mnt, 0, &umount_list);
870 spin_unlock(&vfsmount_lock);
871 up_read(&namespace_sem);
872 release_mounts(&umount_list);
873}
874
Ram Paib90fa9a2005-11-07 17:19:50 -0500875/*
876 * @source_mnt : mount tree to be attached
Ram Pai21444402005-11-07 17:20:03 -0500877 * @nd : place the mount tree @source_mnt is attached
878 * @parent_nd : if non-null, detach the source_mnt from its parent and
879 * store the parent mount and mountpoint dentry.
880 * (done when source_mnt is moved)
Ram Paib90fa9a2005-11-07 17:19:50 -0500881 *
882 * NOTE: in the table below explains the semantics when a source mount
883 * of a given type is attached to a destination mount of a given type.
Ram Pai9676f0c2005-11-07 17:21:20 -0500884 * ---------------------------------------------------------------------------
885 * | BIND MOUNT OPERATION |
886 * |**************************************************************************
887 * | source-->| shared | private | slave | unbindable |
888 * | dest | | | | |
889 * | | | | | | |
890 * | v | | | | |
891 * |**************************************************************************
892 * | shared | shared (++) | shared (+) | shared(+++)| invalid |
893 * | | | | | |
894 * |non-shared| shared (+) | private | slave (*) | invalid |
895 * ***************************************************************************
Ram Paib90fa9a2005-11-07 17:19:50 -0500896 * A bind operation clones the source mount and mounts the clone on the
897 * destination mount.
898 *
899 * (++) the cloned mount is propagated to all the mounts in the propagation
900 * tree of the destination mount and the cloned mount is added to
901 * the peer group of the source mount.
902 * (+) the cloned mount is created under the destination mount and is marked
903 * as shared. The cloned mount is added to the peer group of the source
904 * mount.
Ram Pai5afe0022005-11-07 17:21:01 -0500905 * (+++) the mount is propagated to all the mounts in the propagation tree
906 * of the destination mount and the cloned mount is made slave
907 * of the same master as that of the source mount. The cloned mount
908 * is marked as 'shared and slave'.
909 * (*) the cloned mount is made a slave of the same master as that of the
910 * source mount.
911 *
Ram Pai9676f0c2005-11-07 17:21:20 -0500912 * ---------------------------------------------------------------------------
913 * | MOVE MOUNT OPERATION |
914 * |**************************************************************************
915 * | source-->| shared | private | slave | unbindable |
916 * | dest | | | | |
917 * | | | | | | |
918 * | v | | | | |
919 * |**************************************************************************
920 * | shared | shared (+) | shared (+) | shared(+++) | invalid |
921 * | | | | | |
922 * |non-shared| shared (+*) | private | slave (*) | unbindable |
923 * ***************************************************************************
Ram Pai5afe0022005-11-07 17:21:01 -0500924 *
925 * (+) the mount is moved to the destination. And is then propagated to
926 * all the mounts in the propagation tree of the destination mount.
Ram Pai21444402005-11-07 17:20:03 -0500927 * (+*) the mount is moved to the destination.
Ram Pai5afe0022005-11-07 17:21:01 -0500928 * (+++) the mount is moved to the destination and is then propagated to
929 * all the mounts belonging to the destination mount's propagation tree.
930 * the mount is marked as 'shared and slave'.
931 * (*) the mount continues to be a slave at the new location.
Ram Paib90fa9a2005-11-07 17:19:50 -0500932 *
933 * if the source mount is a tree, the operations explained above is
934 * applied to each mount in the tree.
935 * Must be called without spinlocks held, since this function can sleep
936 * in allocations.
937 */
938static int attach_recursive_mnt(struct vfsmount *source_mnt,
Al Viro1a390682008-03-21 20:48:19 -0400939 struct path *path, struct path *parent_path)
Ram Paib90fa9a2005-11-07 17:19:50 -0500940{
941 LIST_HEAD(tree_list);
Al Viro1a390682008-03-21 20:48:19 -0400942 struct vfsmount *dest_mnt = path->mnt;
943 struct dentry *dest_dentry = path->dentry;
Ram Paib90fa9a2005-11-07 17:19:50 -0500944 struct vfsmount *child, *p;
945
946 if (propagate_mnt(dest_mnt, dest_dentry, source_mnt, &tree_list))
947 return -EINVAL;
948
949 if (IS_MNT_SHARED(dest_mnt)) {
950 for (p = source_mnt; p; p = next_mnt(p, source_mnt))
951 set_mnt_shared(p);
952 }
953
954 spin_lock(&vfsmount_lock);
Al Viro1a390682008-03-21 20:48:19 -0400955 if (parent_path) {
956 detach_mnt(source_mnt, parent_path);
957 attach_mnt(source_mnt, path);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800958 touch_mnt_namespace(current->nsproxy->mnt_ns);
Ram Pai21444402005-11-07 17:20:03 -0500959 } else {
960 mnt_set_mountpoint(dest_mnt, dest_dentry, source_mnt);
961 commit_tree(source_mnt);
962 }
Ram Paib90fa9a2005-11-07 17:19:50 -0500963
964 list_for_each_entry_safe(child, p, &tree_list, mnt_hash) {
965 list_del_init(&child->mnt_hash);
966 commit_tree(child);
967 }
968 spin_unlock(&vfsmount_lock);
969 return 0;
970}
971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972static int graft_tree(struct vfsmount *mnt, struct nameidata *nd)
973{
974 int err;
975 if (mnt->mnt_sb->s_flags & MS_NOUSER)
976 return -EINVAL;
977
Jan Blunck4ac91372008-02-14 19:34:32 -0800978 if (S_ISDIR(nd->path.dentry->d_inode->i_mode) !=
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 S_ISDIR(mnt->mnt_root->d_inode->i_mode))
980 return -ENOTDIR;
981
982 err = -ENOENT;
Jan Blunck4ac91372008-02-14 19:34:32 -0800983 mutex_lock(&nd->path.dentry->d_inode->i_mutex);
984 if (IS_DEADDIR(nd->path.dentry->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 goto out_unlock;
986
987 err = security_sb_check_sb(mnt, nd);
988 if (err)
989 goto out_unlock;
990
991 err = -ENOENT;
Jan Blunck4ac91372008-02-14 19:34:32 -0800992 if (IS_ROOT(nd->path.dentry) || !d_unhashed(nd->path.dentry))
Al Viro1a390682008-03-21 20:48:19 -0400993 err = attach_recursive_mnt(mnt, &nd->path, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -0800995 mutex_unlock(&nd->path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 if (!err)
997 security_sb_post_addmount(mnt, nd);
998 return err;
999}
1000
1001/*
Ram Pai07b20882005-11-07 17:19:07 -05001002 * recursively change the type of the mountpoint.
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001003 * noinline this do_mount helper to save do_mount stack space.
Ram Pai07b20882005-11-07 17:19:07 -05001004 */
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001005static noinline int do_change_type(struct nameidata *nd, int flag)
Ram Pai07b20882005-11-07 17:19:07 -05001006{
Jan Blunck4ac91372008-02-14 19:34:32 -08001007 struct vfsmount *m, *mnt = nd->path.mnt;
Ram Pai07b20882005-11-07 17:19:07 -05001008 int recurse = flag & MS_REC;
1009 int type = flag & ~MS_REC;
1010
Miklos Szerediee6f9582007-05-08 00:30:40 -07001011 if (!capable(CAP_SYS_ADMIN))
1012 return -EPERM;
1013
Jan Blunck4ac91372008-02-14 19:34:32 -08001014 if (nd->path.dentry != nd->path.mnt->mnt_root)
Ram Pai07b20882005-11-07 17:19:07 -05001015 return -EINVAL;
1016
1017 down_write(&namespace_sem);
1018 spin_lock(&vfsmount_lock);
1019 for (m = mnt; m; m = (recurse ? next_mnt(m, mnt) : NULL))
1020 change_mnt_propagation(m, type);
1021 spin_unlock(&vfsmount_lock);
1022 up_write(&namespace_sem);
1023 return 0;
1024}
1025
1026/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 * do loopback mount.
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001028 * noinline this do_mount helper to save do_mount stack space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 */
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001030static noinline int do_loopback(struct nameidata *nd, char *old_name,
1031 int recurse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
1033 struct nameidata old_nd;
1034 struct vfsmount *mnt = NULL;
1035 int err = mount_is_safe(nd);
1036 if (err)
1037 return err;
1038 if (!old_name || !*old_name)
1039 return -EINVAL;
1040 err = path_lookup(old_name, LOOKUP_FOLLOW, &old_nd);
1041 if (err)
1042 return err;
1043
Ram Pai390c6842005-11-07 17:17:51 -05001044 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 err = -EINVAL;
Jan Blunck4ac91372008-02-14 19:34:32 -08001046 if (IS_MNT_UNBINDABLE(old_nd.path.mnt))
1047 goto out;
Ram Pai9676f0c2005-11-07 17:21:20 -05001048
Jan Blunck4ac91372008-02-14 19:34:32 -08001049 if (!check_mnt(nd->path.mnt) || !check_mnt(old_nd.path.mnt))
Al Viroccd48bc2005-11-07 17:15:04 -05001050 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Al Viroccd48bc2005-11-07 17:15:04 -05001052 err = -ENOMEM;
1053 if (recurse)
Jan Blunck4ac91372008-02-14 19:34:32 -08001054 mnt = copy_tree(old_nd.path.mnt, old_nd.path.dentry, 0);
Al Viroccd48bc2005-11-07 17:15:04 -05001055 else
Jan Blunck4ac91372008-02-14 19:34:32 -08001056 mnt = clone_mnt(old_nd.path.mnt, old_nd.path.dentry, 0);
Al Viroccd48bc2005-11-07 17:15:04 -05001057
1058 if (!mnt)
1059 goto out;
1060
Al Viroccd48bc2005-11-07 17:15:04 -05001061 err = graft_tree(mnt, nd);
1062 if (err) {
Ram Pai70fbcdf2005-11-07 17:17:04 -05001063 LIST_HEAD(umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 spin_lock(&vfsmount_lock);
Ram Paia05964f2005-11-07 17:20:17 -05001065 umount_tree(mnt, 0, &umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 spin_unlock(&vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001067 release_mounts(&umount_list);
Ram Pai5b83d2c5c2005-11-07 17:16:29 -05001068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Al Viroccd48bc2005-11-07 17:15:04 -05001070out:
Ram Pai390c6842005-11-07 17:17:51 -05001071 up_write(&namespace_sem);
Jan Blunck1d957f92008-02-14 19:34:35 -08001072 path_put(&old_nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 return err;
1074}
1075
1076/*
1077 * change filesystem flags. dir should be a physical root of filesystem.
1078 * If you've mounted a non-root directory somewhere and want to do remount
1079 * on it - tough luck.
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001080 * noinline this do_mount helper to save do_mount stack space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 */
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001082static noinline int do_remount(struct nameidata *nd, int flags, int mnt_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 void *data)
1084{
1085 int err;
Jan Blunck4ac91372008-02-14 19:34:32 -08001086 struct super_block *sb = nd->path.mnt->mnt_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
1088 if (!capable(CAP_SYS_ADMIN))
1089 return -EPERM;
1090
Jan Blunck4ac91372008-02-14 19:34:32 -08001091 if (!check_mnt(nd->path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 return -EINVAL;
1093
Jan Blunck4ac91372008-02-14 19:34:32 -08001094 if (nd->path.dentry != nd->path.mnt->mnt_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 return -EINVAL;
1096
1097 down_write(&sb->s_umount);
1098 err = do_remount_sb(sb, flags, data, 0);
1099 if (!err)
Jan Blunck4ac91372008-02-14 19:34:32 -08001100 nd->path.mnt->mnt_flags = mnt_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 up_write(&sb->s_umount);
1102 if (!err)
Jan Blunck4ac91372008-02-14 19:34:32 -08001103 security_sb_post_remount(nd->path.mnt, flags, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 return err;
1105}
1106
Ram Pai9676f0c2005-11-07 17:21:20 -05001107static inline int tree_contains_unbindable(struct vfsmount *mnt)
1108{
1109 struct vfsmount *p;
1110 for (p = mnt; p; p = next_mnt(p, mnt)) {
1111 if (IS_MNT_UNBINDABLE(p))
1112 return 1;
1113 }
1114 return 0;
1115}
1116
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001117/*
1118 * noinline this do_mount helper to save do_mount stack space.
1119 */
1120static noinline int do_move_mount(struct nameidata *nd, char *old_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121{
Al Viro1a390682008-03-21 20:48:19 -04001122 struct nameidata old_nd;
1123 struct path parent_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 struct vfsmount *p;
1125 int err = 0;
1126 if (!capable(CAP_SYS_ADMIN))
1127 return -EPERM;
1128 if (!old_name || !*old_name)
1129 return -EINVAL;
1130 err = path_lookup(old_name, LOOKUP_FOLLOW, &old_nd);
1131 if (err)
1132 return err;
1133
Ram Pai390c6842005-11-07 17:17:51 -05001134 down_write(&namespace_sem);
Jan Blunck4ac91372008-02-14 19:34:32 -08001135 while (d_mountpoint(nd->path.dentry) &&
1136 follow_down(&nd->path.mnt, &nd->path.dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 ;
1138 err = -EINVAL;
Jan Blunck4ac91372008-02-14 19:34:32 -08001139 if (!check_mnt(nd->path.mnt) || !check_mnt(old_nd.path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 goto out;
1141
1142 err = -ENOENT;
Jan Blunck4ac91372008-02-14 19:34:32 -08001143 mutex_lock(&nd->path.dentry->d_inode->i_mutex);
1144 if (IS_DEADDIR(nd->path.dentry->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 goto out1;
1146
Jan Blunck4ac91372008-02-14 19:34:32 -08001147 if (!IS_ROOT(nd->path.dentry) && d_unhashed(nd->path.dentry))
Ram Pai21444402005-11-07 17:20:03 -05001148 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
1150 err = -EINVAL;
Jan Blunck4ac91372008-02-14 19:34:32 -08001151 if (old_nd.path.dentry != old_nd.path.mnt->mnt_root)
Ram Pai21444402005-11-07 17:20:03 -05001152 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Jan Blunck4ac91372008-02-14 19:34:32 -08001154 if (old_nd.path.mnt == old_nd.path.mnt->mnt_parent)
Ram Pai21444402005-11-07 17:20:03 -05001155 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Jan Blunck4ac91372008-02-14 19:34:32 -08001157 if (S_ISDIR(nd->path.dentry->d_inode->i_mode) !=
1158 S_ISDIR(old_nd.path.dentry->d_inode->i_mode))
Ram Pai21444402005-11-07 17:20:03 -05001159 goto out1;
1160 /*
1161 * Don't move a mount residing in a shared parent.
1162 */
Jan Blunck4ac91372008-02-14 19:34:32 -08001163 if (old_nd.path.mnt->mnt_parent &&
1164 IS_MNT_SHARED(old_nd.path.mnt->mnt_parent))
Ram Pai21444402005-11-07 17:20:03 -05001165 goto out1;
Ram Pai9676f0c2005-11-07 17:21:20 -05001166 /*
1167 * Don't move a mount tree containing unbindable mounts to a destination
1168 * mount which is shared.
1169 */
Jan Blunck4ac91372008-02-14 19:34:32 -08001170 if (IS_MNT_SHARED(nd->path.mnt) &&
1171 tree_contains_unbindable(old_nd.path.mnt))
Ram Pai9676f0c2005-11-07 17:21:20 -05001172 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 err = -ELOOP;
Jan Blunck4ac91372008-02-14 19:34:32 -08001174 for (p = nd->path.mnt; p->mnt_parent != p; p = p->mnt_parent)
1175 if (p == old_nd.path.mnt)
Ram Pai21444402005-11-07 17:20:03 -05001176 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Al Viro1a390682008-03-21 20:48:19 -04001178 err = attach_recursive_mnt(old_nd.path.mnt, &nd->path, &parent_path);
Jan Blunck4ac91372008-02-14 19:34:32 -08001179 if (err)
Ram Pai21444402005-11-07 17:20:03 -05001180 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
1182 /* if the mount is moved, it should no longer be expire
1183 * automatically */
Jan Blunck4ac91372008-02-14 19:34:32 -08001184 list_del_init(&old_nd.path.mnt->mnt_expire);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185out1:
Jan Blunck4ac91372008-02-14 19:34:32 -08001186 mutex_unlock(&nd->path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187out:
Ram Pai390c6842005-11-07 17:17:51 -05001188 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 if (!err)
Al Viro1a390682008-03-21 20:48:19 -04001190 path_put(&parent_path);
Jan Blunck1d957f92008-02-14 19:34:35 -08001191 path_put(&old_nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 return err;
1193}
1194
1195/*
1196 * create a new mount for userspace and request it to be added into the
1197 * namespace's tree
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001198 * noinline this do_mount helper to save do_mount stack space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 */
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001200static noinline int do_new_mount(struct nameidata *nd, char *type, int flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 int mnt_flags, char *name, void *data)
1202{
1203 struct vfsmount *mnt;
1204
1205 if (!type || !memchr(type, 0, PAGE_SIZE))
1206 return -EINVAL;
1207
1208 /* we need capabilities... */
1209 if (!capable(CAP_SYS_ADMIN))
1210 return -EPERM;
1211
1212 mnt = do_kern_mount(type, flags, name, data);
1213 if (IS_ERR(mnt))
1214 return PTR_ERR(mnt);
1215
1216 return do_add_mount(mnt, nd, mnt_flags, NULL);
1217}
1218
1219/*
1220 * add a mount into a namespace's mount tree
1221 * - provide the option of adding the new mount to an expiration list
1222 */
1223int do_add_mount(struct vfsmount *newmnt, struct nameidata *nd,
1224 int mnt_flags, struct list_head *fslist)
1225{
1226 int err;
1227
Ram Pai390c6842005-11-07 17:17:51 -05001228 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 /* Something was mounted here while we slept */
Jan Blunck4ac91372008-02-14 19:34:32 -08001230 while (d_mountpoint(nd->path.dentry) &&
1231 follow_down(&nd->path.mnt, &nd->path.dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 ;
1233 err = -EINVAL;
Jan Blunck4ac91372008-02-14 19:34:32 -08001234 if (!check_mnt(nd->path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 goto unlock;
1236
1237 /* Refuse the same filesystem on the same mount point */
1238 err = -EBUSY;
Jan Blunck4ac91372008-02-14 19:34:32 -08001239 if (nd->path.mnt->mnt_sb == newmnt->mnt_sb &&
1240 nd->path.mnt->mnt_root == nd->path.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 goto unlock;
1242
1243 err = -EINVAL;
1244 if (S_ISLNK(newmnt->mnt_root->d_inode->i_mode))
1245 goto unlock;
1246
1247 newmnt->mnt_flags = mnt_flags;
Ram Pai5b83d2c5c2005-11-07 17:16:29 -05001248 if ((err = graft_tree(newmnt, nd)))
1249 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Al Viro6758f952008-03-22 16:14:30 -04001251 if (fslist) /* add to the specified expiration list */
Miklos Szeredi55e700b2005-07-07 17:57:30 -07001252 list_add_tail(&newmnt->mnt_expire, fslist);
Al Viro6758f952008-03-22 16:14:30 -04001253
Ram Pai390c6842005-11-07 17:17:51 -05001254 up_write(&namespace_sem);
Ram Pai5b83d2c5c2005-11-07 17:16:29 -05001255 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
1257unlock:
Ram Pai390c6842005-11-07 17:17:51 -05001258 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 mntput(newmnt);
1260 return err;
1261}
1262
1263EXPORT_SYMBOL_GPL(do_add_mount);
1264
Trond Myklebust5528f9112006-06-09 09:34:17 -04001265/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 * process a list of expirable mountpoints with the intent of discarding any
1267 * mountpoints that aren't in use and haven't been touched since last we came
1268 * here
1269 */
1270void mark_mounts_for_expiry(struct list_head *mounts)
1271{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 struct vfsmount *mnt, *next;
1273 LIST_HEAD(graveyard);
Al Virobcc5c7d2008-03-22 00:21:53 -04001274 LIST_HEAD(umounts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 if (list_empty(mounts))
1277 return;
1278
Al Virobcc5c7d2008-03-22 00:21:53 -04001279 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 spin_lock(&vfsmount_lock);
1281
1282 /* extract from the expiration list every vfsmount that matches the
1283 * following criteria:
1284 * - only referenced by its parent vfsmount
1285 * - still marked for expiry (marked on the last call here; marks are
1286 * cleared by mntput())
1287 */
Miklos Szeredi55e700b2005-07-07 17:57:30 -07001288 list_for_each_entry_safe(mnt, next, mounts, mnt_expire) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 if (!xchg(&mnt->mnt_expiry_mark, 1) ||
Al Virobcc5c7d2008-03-22 00:21:53 -04001290 propagate_mount_busy(mnt, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 continue;
Miklos Szeredi55e700b2005-07-07 17:57:30 -07001292 list_move(&mnt->mnt_expire, &graveyard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 }
Al Virobcc5c7d2008-03-22 00:21:53 -04001294 while (!list_empty(&graveyard)) {
1295 mnt = list_first_entry(&graveyard, struct vfsmount, mnt_expire);
1296 touch_mnt_namespace(mnt->mnt_ns);
1297 umount_tree(mnt, 1, &umounts);
1298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 spin_unlock(&vfsmount_lock);
Al Virobcc5c7d2008-03-22 00:21:53 -04001300 up_write(&namespace_sem);
1301
1302 release_mounts(&umounts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303}
1304
1305EXPORT_SYMBOL_GPL(mark_mounts_for_expiry);
1306
1307/*
Trond Myklebust5528f9112006-06-09 09:34:17 -04001308 * Ripoff of 'select_parent()'
1309 *
1310 * search the list of submounts for a given mountpoint, and move any
1311 * shrinkable submounts to the 'graveyard' list.
1312 */
1313static int select_submounts(struct vfsmount *parent, struct list_head *graveyard)
1314{
1315 struct vfsmount *this_parent = parent;
1316 struct list_head *next;
1317 int found = 0;
1318
1319repeat:
1320 next = this_parent->mnt_mounts.next;
1321resume:
1322 while (next != &this_parent->mnt_mounts) {
1323 struct list_head *tmp = next;
1324 struct vfsmount *mnt = list_entry(tmp, struct vfsmount, mnt_child);
1325
1326 next = tmp->next;
1327 if (!(mnt->mnt_flags & MNT_SHRINKABLE))
1328 continue;
1329 /*
1330 * Descend a level if the d_mounts list is non-empty.
1331 */
1332 if (!list_empty(&mnt->mnt_mounts)) {
1333 this_parent = mnt;
1334 goto repeat;
1335 }
1336
1337 if (!propagate_mount_busy(mnt, 1)) {
Trond Myklebust5528f9112006-06-09 09:34:17 -04001338 list_move_tail(&mnt->mnt_expire, graveyard);
1339 found++;
1340 }
1341 }
1342 /*
1343 * All done at this level ... ascend and resume the search
1344 */
1345 if (this_parent != parent) {
1346 next = this_parent->mnt_child.next;
1347 this_parent = this_parent->mnt_parent;
1348 goto resume;
1349 }
1350 return found;
1351}
1352
1353/*
1354 * process a list of expirable mountpoints with the intent of discarding any
1355 * submounts of a specific parent mountpoint
1356 */
Al Viroc35038b2008-03-22 00:46:23 -04001357static void shrink_submounts(struct vfsmount *mnt, struct list_head *umounts)
Trond Myklebust5528f9112006-06-09 09:34:17 -04001358{
1359 LIST_HEAD(graveyard);
Al Viroc35038b2008-03-22 00:46:23 -04001360 struct vfsmount *m;
Trond Myklebust5528f9112006-06-09 09:34:17 -04001361
Trond Myklebust5528f9112006-06-09 09:34:17 -04001362 /* extract submounts of 'mountpoint' from the expiration list */
Al Viroc35038b2008-03-22 00:46:23 -04001363 while (select_submounts(mnt, &graveyard)) {
Al Virobcc5c7d2008-03-22 00:21:53 -04001364 while (!list_empty(&graveyard)) {
Al Viroc35038b2008-03-22 00:46:23 -04001365 m = list_first_entry(&graveyard, struct vfsmount,
Al Virobcc5c7d2008-03-22 00:21:53 -04001366 mnt_expire);
1367 touch_mnt_namespace(mnt->mnt_ns);
Al Viroc35038b2008-03-22 00:46:23 -04001368 umount_tree(mnt, 1, umounts);
Al Virobcc5c7d2008-03-22 00:21:53 -04001369 }
1370 }
Trond Myklebust5528f9112006-06-09 09:34:17 -04001371}
1372
Trond Myklebust5528f9112006-06-09 09:34:17 -04001373/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 * Some copy_from_user() implementations do not return the exact number of
1375 * bytes remaining to copy on a fault. But copy_mount_options() requires that.
1376 * Note that this function differs from copy_from_user() in that it will oops
1377 * on bad values of `to', rather than returning a short copy.
1378 */
Ram Paib58fed82005-11-07 17:16:09 -05001379static long exact_copy_from_user(void *to, const void __user * from,
1380 unsigned long n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
1382 char *t = to;
1383 const char __user *f = from;
1384 char c;
1385
1386 if (!access_ok(VERIFY_READ, from, n))
1387 return n;
1388
1389 while (n) {
1390 if (__get_user(c, f)) {
1391 memset(t, 0, n);
1392 break;
1393 }
1394 *t++ = c;
1395 f++;
1396 n--;
1397 }
1398 return n;
1399}
1400
Ram Paib58fed82005-11-07 17:16:09 -05001401int copy_mount_options(const void __user * data, unsigned long *where)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
1403 int i;
1404 unsigned long page;
1405 unsigned long size;
Ram Paib58fed82005-11-07 17:16:09 -05001406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 *where = 0;
1408 if (!data)
1409 return 0;
1410
1411 if (!(page = __get_free_page(GFP_KERNEL)))
1412 return -ENOMEM;
1413
1414 /* We only care that *some* data at the address the user
1415 * gave us is valid. Just in case, we'll zero
1416 * the remainder of the page.
1417 */
1418 /* copy_from_user cannot cross TASK_SIZE ! */
1419 size = TASK_SIZE - (unsigned long)data;
1420 if (size > PAGE_SIZE)
1421 size = PAGE_SIZE;
1422
1423 i = size - exact_copy_from_user((void *)page, data, size);
1424 if (!i) {
Ram Paib58fed82005-11-07 17:16:09 -05001425 free_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 return -EFAULT;
1427 }
1428 if (i != PAGE_SIZE)
1429 memset((char *)page + i, 0, PAGE_SIZE - i);
1430 *where = page;
1431 return 0;
1432}
1433
1434/*
1435 * Flags is a 32-bit value that allows up to 31 non-fs dependent flags to
1436 * be given to the mount() call (ie: read-only, no-dev, no-suid etc).
1437 *
1438 * data is a (void *) that can point to any structure up to
1439 * PAGE_SIZE-1 bytes, which can contain arbitrary fs-dependent
1440 * information (or be NULL).
1441 *
1442 * Pre-0.97 versions of mount() didn't have a flags word.
1443 * When the flags word was introduced its top half was required
1444 * to have the magic value 0xC0ED, and this remained so until 2.4.0-test9.
1445 * Therefore, if this magic number is present, it carries no information
1446 * and must be discarded.
1447 */
Ram Paib58fed82005-11-07 17:16:09 -05001448long do_mount(char *dev_name, char *dir_name, char *type_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 unsigned long flags, void *data_page)
1450{
1451 struct nameidata nd;
1452 int retval = 0;
1453 int mnt_flags = 0;
1454
1455 /* Discard magic */
1456 if ((flags & MS_MGC_MSK) == MS_MGC_VAL)
1457 flags &= ~MS_MGC_MSK;
1458
1459 /* Basic sanity checks */
1460
1461 if (!dir_name || !*dir_name || !memchr(dir_name, 0, PAGE_SIZE))
1462 return -EINVAL;
1463 if (dev_name && !memchr(dev_name, 0, PAGE_SIZE))
1464 return -EINVAL;
1465
1466 if (data_page)
1467 ((char *)data_page)[PAGE_SIZE - 1] = 0;
1468
1469 /* Separate the per-mountpoint flags */
1470 if (flags & MS_NOSUID)
1471 mnt_flags |= MNT_NOSUID;
1472 if (flags & MS_NODEV)
1473 mnt_flags |= MNT_NODEV;
1474 if (flags & MS_NOEXEC)
1475 mnt_flags |= MNT_NOEXEC;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001476 if (flags & MS_NOATIME)
1477 mnt_flags |= MNT_NOATIME;
1478 if (flags & MS_NODIRATIME)
1479 mnt_flags |= MNT_NODIRATIME;
Valerie Henson47ae32d2006-12-13 00:34:34 -08001480 if (flags & MS_RELATIME)
1481 mnt_flags |= MNT_RELATIME;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001482
1483 flags &= ~(MS_NOSUID | MS_NOEXEC | MS_NODEV | MS_ACTIVE |
Pavel Emelyanov8bf97252007-10-18 23:40:02 -07001484 MS_NOATIME | MS_NODIRATIME | MS_RELATIME| MS_KERNMOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
1486 /* ... and get the mountpoint */
1487 retval = path_lookup(dir_name, LOOKUP_FOLLOW, &nd);
1488 if (retval)
1489 return retval;
1490
1491 retval = security_sb_mount(dev_name, &nd, type_page, flags, data_page);
1492 if (retval)
1493 goto dput_out;
1494
1495 if (flags & MS_REMOUNT)
1496 retval = do_remount(&nd, flags & ~MS_REMOUNT, mnt_flags,
1497 data_page);
1498 else if (flags & MS_BIND)
Andrew Mortoneee391a2006-05-15 09:44:30 -07001499 retval = do_loopback(&nd, dev_name, flags & MS_REC);
Ram Pai9676f0c2005-11-07 17:21:20 -05001500 else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
Ram Pai07b20882005-11-07 17:19:07 -05001501 retval = do_change_type(&nd, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 else if (flags & MS_MOVE)
1503 retval = do_move_mount(&nd, dev_name);
1504 else
1505 retval = do_new_mount(&nd, type_page, flags, mnt_flags,
1506 dev_name, data_page);
1507dput_out:
Jan Blunck1d957f92008-02-14 19:34:35 -08001508 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 return retval;
1510}
1511
JANAK DESAI741a2952006-02-07 12:59:00 -08001512/*
1513 * Allocate a new namespace structure and populate it with contents
1514 * copied from the namespace of the passed in task structure.
1515 */
Badari Pulavartye3222c42007-05-08 00:25:21 -07001516static struct mnt_namespace *dup_mnt_ns(struct mnt_namespace *mnt_ns,
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001517 struct fs_struct *fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001519 struct mnt_namespace *new_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 struct vfsmount *rootmnt = NULL, *pwdmnt = NULL, *altrootmnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 struct vfsmount *p, *q;
1522
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001523 new_ns = kmalloc(sizeof(struct mnt_namespace), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 if (!new_ns)
Cedric Le Goater467e9f42007-07-15 23:41:06 -07001525 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
1527 atomic_set(&new_ns->count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 INIT_LIST_HEAD(&new_ns->list);
Al Viro5addc5d2005-11-07 17:15:49 -05001529 init_waitqueue_head(&new_ns->poll);
1530 new_ns->event = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Ram Pai390c6842005-11-07 17:17:51 -05001532 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 /* First pass: copy the tree topology */
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001534 new_ns->root = copy_tree(mnt_ns->root, mnt_ns->root->mnt_root,
Ram Pai9676f0c2005-11-07 17:21:20 -05001535 CL_COPY_ALL | CL_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 if (!new_ns->root) {
Ram Pai390c6842005-11-07 17:17:51 -05001537 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 kfree(new_ns);
Cedric Le Goater467e9f42007-07-15 23:41:06 -07001539 return ERR_PTR(-ENOMEM);;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 }
1541 spin_lock(&vfsmount_lock);
1542 list_add_tail(&new_ns->list, &new_ns->root->mnt_list);
1543 spin_unlock(&vfsmount_lock);
1544
1545 /*
1546 * Second pass: switch the tsk->fs->* elements and mark new vfsmounts
1547 * as belonging to new namespace. We have already acquired a private
1548 * fs_struct, so tsk->fs->lock is not needed.
1549 */
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001550 p = mnt_ns->root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 q = new_ns->root;
1552 while (p) {
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001553 q->mnt_ns = new_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 if (fs) {
Jan Blunck6ac08c32008-02-14 19:34:38 -08001555 if (p == fs->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 rootmnt = p;
Jan Blunck6ac08c32008-02-14 19:34:38 -08001557 fs->root.mnt = mntget(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 }
Jan Blunck6ac08c32008-02-14 19:34:38 -08001559 if (p == fs->pwd.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 pwdmnt = p;
Jan Blunck6ac08c32008-02-14 19:34:38 -08001561 fs->pwd.mnt = mntget(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 }
Jan Blunck6ac08c32008-02-14 19:34:38 -08001563 if (p == fs->altroot.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 altrootmnt = p;
Jan Blunck6ac08c32008-02-14 19:34:38 -08001565 fs->altroot.mnt = mntget(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 }
1567 }
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001568 p = next_mnt(p, mnt_ns->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 q = next_mnt(q, new_ns->root);
1570 }
Ram Pai390c6842005-11-07 17:17:51 -05001571 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 if (rootmnt)
1574 mntput(rootmnt);
1575 if (pwdmnt)
1576 mntput(pwdmnt);
1577 if (altrootmnt)
1578 mntput(altrootmnt);
1579
JANAK DESAI741a2952006-02-07 12:59:00 -08001580 return new_ns;
1581}
1582
Eric W. Biederman213dd262007-07-15 23:41:15 -07001583struct mnt_namespace *copy_mnt_ns(unsigned long flags, struct mnt_namespace *ns,
Badari Pulavartye3222c42007-05-08 00:25:21 -07001584 struct fs_struct *new_fs)
JANAK DESAI741a2952006-02-07 12:59:00 -08001585{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001586 struct mnt_namespace *new_ns;
JANAK DESAI741a2952006-02-07 12:59:00 -08001587
Badari Pulavartye3222c42007-05-08 00:25:21 -07001588 BUG_ON(!ns);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001589 get_mnt_ns(ns);
JANAK DESAI741a2952006-02-07 12:59:00 -08001590
1591 if (!(flags & CLONE_NEWNS))
Badari Pulavartye3222c42007-05-08 00:25:21 -07001592 return ns;
JANAK DESAI741a2952006-02-07 12:59:00 -08001593
Badari Pulavartye3222c42007-05-08 00:25:21 -07001594 new_ns = dup_mnt_ns(ns, new_fs);
JANAK DESAI741a2952006-02-07 12:59:00 -08001595
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001596 put_mnt_ns(ns);
Badari Pulavartye3222c42007-05-08 00:25:21 -07001597 return new_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598}
1599
1600asmlinkage long sys_mount(char __user * dev_name, char __user * dir_name,
1601 char __user * type, unsigned long flags,
1602 void __user * data)
1603{
1604 int retval;
1605 unsigned long data_page;
1606 unsigned long type_page;
1607 unsigned long dev_page;
1608 char *dir_page;
1609
Ram Paib58fed82005-11-07 17:16:09 -05001610 retval = copy_mount_options(type, &type_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 if (retval < 0)
1612 return retval;
1613
1614 dir_page = getname(dir_name);
1615 retval = PTR_ERR(dir_page);
1616 if (IS_ERR(dir_page))
1617 goto out1;
1618
Ram Paib58fed82005-11-07 17:16:09 -05001619 retval = copy_mount_options(dev_name, &dev_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 if (retval < 0)
1621 goto out2;
1622
Ram Paib58fed82005-11-07 17:16:09 -05001623 retval = copy_mount_options(data, &data_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 if (retval < 0)
1625 goto out3;
1626
1627 lock_kernel();
Ram Paib58fed82005-11-07 17:16:09 -05001628 retval = do_mount((char *)dev_page, dir_page, (char *)type_page,
1629 flags, (void *)data_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 unlock_kernel();
1631 free_page(data_page);
1632
1633out3:
1634 free_page(dev_page);
1635out2:
1636 putname(dir_page);
1637out1:
1638 free_page(type_page);
1639 return retval;
1640}
1641
1642/*
1643 * Replace the fs->{rootmnt,root} with {mnt,dentry}. Put the old values.
1644 * It can block. Requires the big lock held.
1645 */
Jan Blunckac748a02008-02-14 19:34:39 -08001646void set_fs_root(struct fs_struct *fs, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647{
Jan Blunck6ac08c32008-02-14 19:34:38 -08001648 struct path old_root;
1649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 write_lock(&fs->lock);
1651 old_root = fs->root;
Jan Blunckac748a02008-02-14 19:34:39 -08001652 fs->root = *path;
1653 path_get(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 write_unlock(&fs->lock);
Jan Blunck6ac08c32008-02-14 19:34:38 -08001655 if (old_root.dentry)
1656 path_put(&old_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657}
1658
1659/*
1660 * Replace the fs->{pwdmnt,pwd} with {mnt,dentry}. Put the old values.
1661 * It can block. Requires the big lock held.
1662 */
Jan Blunckac748a02008-02-14 19:34:39 -08001663void set_fs_pwd(struct fs_struct *fs, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664{
Jan Blunck6ac08c32008-02-14 19:34:38 -08001665 struct path old_pwd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
1667 write_lock(&fs->lock);
1668 old_pwd = fs->pwd;
Jan Blunckac748a02008-02-14 19:34:39 -08001669 fs->pwd = *path;
1670 path_get(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 write_unlock(&fs->lock);
1672
Jan Blunck6ac08c32008-02-14 19:34:38 -08001673 if (old_pwd.dentry)
1674 path_put(&old_pwd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675}
1676
Al Viro1a390682008-03-21 20:48:19 -04001677static void chroot_fs_refs(struct path *old_root, struct path *new_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678{
1679 struct task_struct *g, *p;
1680 struct fs_struct *fs;
1681
1682 read_lock(&tasklist_lock);
1683 do_each_thread(g, p) {
1684 task_lock(p);
1685 fs = p->fs;
1686 if (fs) {
1687 atomic_inc(&fs->count);
1688 task_unlock(p);
Al Viro1a390682008-03-21 20:48:19 -04001689 if (fs->root.dentry == old_root->dentry
1690 && fs->root.mnt == old_root->mnt)
1691 set_fs_root(fs, new_root);
1692 if (fs->pwd.dentry == old_root->dentry
1693 && fs->pwd.mnt == old_root->mnt)
1694 set_fs_pwd(fs, new_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 put_fs_struct(fs);
1696 } else
1697 task_unlock(p);
1698 } while_each_thread(g, p);
1699 read_unlock(&tasklist_lock);
1700}
1701
1702/*
1703 * pivot_root Semantics:
1704 * Moves the root file system of the current process to the directory put_old,
1705 * makes new_root as the new root file system of the current process, and sets
1706 * root/cwd of all processes which had them on the current root to new_root.
1707 *
1708 * Restrictions:
1709 * The new_root and put_old must be directories, and must not be on the
1710 * same file system as the current process root. The put_old must be
1711 * underneath new_root, i.e. adding a non-zero number of /.. to the string
1712 * pointed to by put_old must yield the same directory as new_root. No other
1713 * file system may be mounted on put_old. After all, new_root is a mountpoint.
1714 *
Neil Brown4a0d11f2006-01-08 01:03:18 -08001715 * Also, the current root cannot be on the 'rootfs' (initial ramfs) filesystem.
1716 * See Documentation/filesystems/ramfs-rootfs-initramfs.txt for alternatives
1717 * in this situation.
1718 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 * Notes:
1720 * - we don't move root/cwd if they are not at the root (reason: if something
1721 * cared enough to change them, it's probably wrong to force them elsewhere)
1722 * - it's okay to pick a root that isn't the root of a file system, e.g.
1723 * /nfs/my_root where /nfs is the mount point. It must be a mountpoint,
1724 * though, so you may need to say mount --bind /nfs/my_root /nfs/my_root
1725 * first.
1726 */
Ram Paib58fed82005-11-07 17:16:09 -05001727asmlinkage long sys_pivot_root(const char __user * new_root,
1728 const char __user * put_old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729{
1730 struct vfsmount *tmp;
Al Viro1a390682008-03-21 20:48:19 -04001731 struct nameidata new_nd, old_nd, user_nd;
1732 struct path parent_path, root_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 int error;
1734
1735 if (!capable(CAP_SYS_ADMIN))
1736 return -EPERM;
1737
1738 lock_kernel();
1739
Ram Paib58fed82005-11-07 17:16:09 -05001740 error = __user_walk(new_root, LOOKUP_FOLLOW | LOOKUP_DIRECTORY,
1741 &new_nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 if (error)
1743 goto out0;
1744 error = -EINVAL;
Jan Blunck4ac91372008-02-14 19:34:32 -08001745 if (!check_mnt(new_nd.path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 goto out1;
1747
Ram Paib58fed82005-11-07 17:16:09 -05001748 error = __user_walk(put_old, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, &old_nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 if (error)
1750 goto out1;
1751
1752 error = security_sb_pivotroot(&old_nd, &new_nd);
1753 if (error) {
Jan Blunck1d957f92008-02-14 19:34:35 -08001754 path_put(&old_nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 goto out1;
1756 }
1757
1758 read_lock(&current->fs->lock);
Jan Blunck6ac08c32008-02-14 19:34:38 -08001759 user_nd.path = current->fs->root;
1760 path_get(&current->fs->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 read_unlock(&current->fs->lock);
Ram Pai390c6842005-11-07 17:17:51 -05001762 down_write(&namespace_sem);
Jan Blunck4ac91372008-02-14 19:34:32 -08001763 mutex_lock(&old_nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 error = -EINVAL;
Jan Blunck4ac91372008-02-14 19:34:32 -08001765 if (IS_MNT_SHARED(old_nd.path.mnt) ||
1766 IS_MNT_SHARED(new_nd.path.mnt->mnt_parent) ||
1767 IS_MNT_SHARED(user_nd.path.mnt->mnt_parent))
Ram Pai21444402005-11-07 17:20:03 -05001768 goto out2;
Jan Blunck4ac91372008-02-14 19:34:32 -08001769 if (!check_mnt(user_nd.path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 goto out2;
1771 error = -ENOENT;
Jan Blunck4ac91372008-02-14 19:34:32 -08001772 if (IS_DEADDIR(new_nd.path.dentry->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 goto out2;
Jan Blunck4ac91372008-02-14 19:34:32 -08001774 if (d_unhashed(new_nd.path.dentry) && !IS_ROOT(new_nd.path.dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 goto out2;
Jan Blunck4ac91372008-02-14 19:34:32 -08001776 if (d_unhashed(old_nd.path.dentry) && !IS_ROOT(old_nd.path.dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 goto out2;
1778 error = -EBUSY;
Jan Blunck4ac91372008-02-14 19:34:32 -08001779 if (new_nd.path.mnt == user_nd.path.mnt ||
1780 old_nd.path.mnt == user_nd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 goto out2; /* loop, on the same file system */
1782 error = -EINVAL;
Jan Blunck4ac91372008-02-14 19:34:32 -08001783 if (user_nd.path.mnt->mnt_root != user_nd.path.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 goto out2; /* not a mountpoint */
Jan Blunck4ac91372008-02-14 19:34:32 -08001785 if (user_nd.path.mnt->mnt_parent == user_nd.path.mnt)
Miklos Szeredi0bb6fcc2005-09-06 15:19:36 -07001786 goto out2; /* not attached */
Jan Blunck4ac91372008-02-14 19:34:32 -08001787 if (new_nd.path.mnt->mnt_root != new_nd.path.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 goto out2; /* not a mountpoint */
Jan Blunck4ac91372008-02-14 19:34:32 -08001789 if (new_nd.path.mnt->mnt_parent == new_nd.path.mnt)
Miklos Szeredi0bb6fcc2005-09-06 15:19:36 -07001790 goto out2; /* not attached */
Jan Blunck4ac91372008-02-14 19:34:32 -08001791 /* make sure we can reach put_old from new_root */
1792 tmp = old_nd.path.mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 spin_lock(&vfsmount_lock);
Jan Blunck4ac91372008-02-14 19:34:32 -08001794 if (tmp != new_nd.path.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 for (;;) {
1796 if (tmp->mnt_parent == tmp)
1797 goto out3; /* already mounted on put_old */
Jan Blunck4ac91372008-02-14 19:34:32 -08001798 if (tmp->mnt_parent == new_nd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 break;
1800 tmp = tmp->mnt_parent;
1801 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001802 if (!is_subdir(tmp->mnt_mountpoint, new_nd.path.dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 goto out3;
Jan Blunck4ac91372008-02-14 19:34:32 -08001804 } else if (!is_subdir(old_nd.path.dentry, new_nd.path.dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 goto out3;
Al Viro1a390682008-03-21 20:48:19 -04001806 detach_mnt(new_nd.path.mnt, &parent_path);
Jan Blunck4ac91372008-02-14 19:34:32 -08001807 detach_mnt(user_nd.path.mnt, &root_parent);
1808 /* mount old root on put_old */
Al Viro1a390682008-03-21 20:48:19 -04001809 attach_mnt(user_nd.path.mnt, &old_nd.path);
Jan Blunck4ac91372008-02-14 19:34:32 -08001810 /* mount new_root on / */
1811 attach_mnt(new_nd.path.mnt, &root_parent);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001812 touch_mnt_namespace(current->nsproxy->mnt_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 spin_unlock(&vfsmount_lock);
Al Viro1a390682008-03-21 20:48:19 -04001814 chroot_fs_refs(&user_nd.path, &new_nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 security_sb_post_pivotroot(&user_nd, &new_nd);
1816 error = 0;
Al Viro1a390682008-03-21 20:48:19 -04001817 path_put(&root_parent);
1818 path_put(&parent_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819out2:
Jan Blunck4ac91372008-02-14 19:34:32 -08001820 mutex_unlock(&old_nd.path.dentry->d_inode->i_mutex);
Ram Pai390c6842005-11-07 17:17:51 -05001821 up_write(&namespace_sem);
Jan Blunck1d957f92008-02-14 19:34:35 -08001822 path_put(&user_nd.path);
1823 path_put(&old_nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824out1:
Jan Blunck1d957f92008-02-14 19:34:35 -08001825 path_put(&new_nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826out0:
1827 unlock_kernel();
1828 return error;
1829out3:
1830 spin_unlock(&vfsmount_lock);
1831 goto out2;
1832}
1833
1834static void __init init_mount_tree(void)
1835{
1836 struct vfsmount *mnt;
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001837 struct mnt_namespace *ns;
Jan Blunckac748a02008-02-14 19:34:39 -08001838 struct path root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
1840 mnt = do_kern_mount("rootfs", 0, "rootfs", NULL);
1841 if (IS_ERR(mnt))
1842 panic("Can't create rootfs");
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001843 ns = kmalloc(sizeof(*ns), GFP_KERNEL);
1844 if (!ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 panic("Can't allocate initial namespace");
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001846 atomic_set(&ns->count, 1);
1847 INIT_LIST_HEAD(&ns->list);
1848 init_waitqueue_head(&ns->poll);
1849 ns->event = 0;
1850 list_add(&mnt->mnt_list, &ns->list);
1851 ns->root = mnt;
1852 mnt->mnt_ns = ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001854 init_task.nsproxy->mnt_ns = ns;
1855 get_mnt_ns(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
Jan Blunckac748a02008-02-14 19:34:39 -08001857 root.mnt = ns->root;
1858 root.dentry = ns->root->mnt_root;
1859
1860 set_fs_pwd(current->fs, &root);
1861 set_fs_root(current->fs, &root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862}
1863
Denis Cheng74bf17c2007-10-16 23:26:30 -07001864void __init mnt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865{
Eric Dumazet13f14b42008-02-06 01:37:57 -08001866 unsigned u;
Randy Dunlap15a67dd2006-09-29 01:58:57 -07001867 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
Ram Pai390c6842005-11-07 17:17:51 -05001869 init_rwsem(&namespace_sem);
1870
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 mnt_cache = kmem_cache_create("mnt_cache", sizeof(struct vfsmount),
Paul Mundt20c2df82007-07-20 10:11:58 +09001872 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Ram Paib58fed82005-11-07 17:16:09 -05001874 mount_hashtable = (struct list_head *)__get_free_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
1876 if (!mount_hashtable)
1877 panic("Failed to allocate mount hash table\n");
1878
Eric Dumazet13f14b42008-02-06 01:37:57 -08001879 printk("Mount-cache hash table entries: %lu\n", HASH_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
Eric Dumazet13f14b42008-02-06 01:37:57 -08001881 for (u = 0; u < HASH_SIZE; u++)
1882 INIT_LIST_HEAD(&mount_hashtable[u]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
Randy Dunlap15a67dd2006-09-29 01:58:57 -07001884 err = sysfs_init();
1885 if (err)
1886 printk(KERN_WARNING "%s: sysfs_init error: %d\n",
1887 __FUNCTION__, err);
Greg Kroah-Hartman00d26662007-10-29 14:17:23 -06001888 fs_kobj = kobject_create_and_add("fs", NULL);
1889 if (!fs_kobj)
1890 printk(KERN_WARNING "%s: kobj create error\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 init_rootfs();
1892 init_mount_tree();
1893}
1894
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001895void __put_mnt_ns(struct mnt_namespace *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001897 struct vfsmount *root = ns->root;
Ram Pai70fbcdf2005-11-07 17:17:04 -05001898 LIST_HEAD(umount_list);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001899 ns->root = NULL;
Miklos Szeredi1ce88cf2005-07-07 17:57:24 -07001900 spin_unlock(&vfsmount_lock);
Ram Pai390c6842005-11-07 17:17:51 -05001901 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 spin_lock(&vfsmount_lock);
Ram Paia05964f2005-11-07 17:20:17 -05001903 umount_tree(root, 0, &umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 spin_unlock(&vfsmount_lock);
Ram Pai390c6842005-11-07 17:17:51 -05001905 up_write(&namespace_sem);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001906 release_mounts(&umount_list);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001907 kfree(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908}