blob: e3ce18d91aad69dd2244c779dee5bc64570565c6 [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>
Dave Hansen3d733632008-02-15 14:37:59 -080020#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/module.h>
Andrew Mortonf20a9ea2006-08-14 22:43:23 -070022#include <linux/sysfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/seq_file.h>
Kirill Korotaev6b3286e2006-12-08 02:37:56 -080024#include <linux/mnt_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/namei.h>
26#include <linux/security.h>
27#include <linux/mount.h>
David Howells07f3f052006-09-30 20:52:18 +020028#include <linux/ramfs.h>
Eric Dumazet13f14b42008-02-06 01:37:57 -080029#include <linux/log2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/uaccess.h>
31#include <asm/unistd.h>
Ram Pai07b20882005-11-07 17:19:07 -050032#include "pnode.h"
Adrian Bunk948730b2007-07-15 23:41:25 -070033#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Eric Dumazet13f14b42008-02-06 01:37:57 -080035#define HASH_SHIFT ilog2(PAGE_SIZE / sizeof(struct list_head))
36#define HASH_SIZE (1UL << HASH_SHIFT)
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038/* spinlock for vfsmount related operations, inplace of dcache_lock */
Al Viro5addc5d2005-11-07 17:15:49 -050039__cacheline_aligned_in_smp DEFINE_SPINLOCK(vfsmount_lock);
40
41static int event;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Eric Dumazetfa3536c2006-03-26 01:37:24 -080043static struct list_head *mount_hashtable __read_mostly;
Christoph Lametere18b8902006-12-06 20:33:20 -080044static struct kmem_cache *mnt_cache __read_mostly;
Ram Pai390c6842005-11-07 17:17:51 -050045static struct rw_semaphore namespace_sem;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Miklos Szeredif87fd4c2006-01-16 22:14:23 -080047/* /sys/fs */
Greg Kroah-Hartman00d26662007-10-29 14:17:23 -060048struct kobject *fs_kobj;
49EXPORT_SYMBOL_GPL(fs_kobj);
Miklos Szeredif87fd4c2006-01-16 22:14:23 -080050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051static inline unsigned long hash(struct vfsmount *mnt, struct dentry *dentry)
52{
Ram Paib58fed82005-11-07 17:16:09 -050053 unsigned long tmp = ((unsigned long)mnt / L1_CACHE_BYTES);
54 tmp += ((unsigned long)dentry / L1_CACHE_BYTES);
Eric Dumazet13f14b42008-02-06 01:37:57 -080055 tmp = tmp + (tmp >> HASH_SHIFT);
56 return tmp & (HASH_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057}
58
Dave Hansen3d733632008-02-15 14:37:59 -080059#define MNT_WRITER_UNDERFLOW_LIMIT -(1<<16)
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061struct vfsmount *alloc_vfsmnt(const char *name)
62{
Robert P. J. Dayc3762222007-02-10 01:45:03 -080063 struct vfsmount *mnt = kmem_cache_zalloc(mnt_cache, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 if (mnt) {
Ram Paib58fed82005-11-07 17:16:09 -050065 atomic_set(&mnt->mnt_count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 INIT_LIST_HEAD(&mnt->mnt_hash);
67 INIT_LIST_HEAD(&mnt->mnt_child);
68 INIT_LIST_HEAD(&mnt->mnt_mounts);
69 INIT_LIST_HEAD(&mnt->mnt_list);
Miklos Szeredi55e700b2005-07-07 17:57:30 -070070 INIT_LIST_HEAD(&mnt->mnt_expire);
Ram Pai03e06e62005-11-07 17:19:33 -050071 INIT_LIST_HEAD(&mnt->mnt_share);
Ram Paia58b0eb2005-11-07 17:20:48 -050072 INIT_LIST_HEAD(&mnt->mnt_slave_list);
73 INIT_LIST_HEAD(&mnt->mnt_slave);
Dave Hansen3d733632008-02-15 14:37:59 -080074 atomic_set(&mnt->__mnt_writers, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 if (name) {
Ram Paib58fed82005-11-07 17:16:09 -050076 int size = strlen(name) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 char *newname = kmalloc(size, GFP_KERNEL);
78 if (newname) {
79 memcpy(newname, name, size);
80 mnt->mnt_devname = newname;
81 }
82 }
83 }
84 return mnt;
85}
86
Dave Hansen83660252008-02-15 14:37:30 -080087/*
88 * Most r/o checks on a fs are for operations that take
89 * discrete amounts of time, like a write() or unlink().
90 * We must keep track of when those operations start
91 * (for permission checks) and when they end, so that
92 * we can determine when writes are able to occur to
93 * a filesystem.
94 */
Dave Hansen3d733632008-02-15 14:37:59 -080095/*
96 * __mnt_is_readonly: check whether a mount is read-only
97 * @mnt: the mount to check for its write status
98 *
99 * This shouldn't be used directly ouside of the VFS.
100 * It does not guarantee that the filesystem will stay
101 * r/w, just that it is right *now*. This can not and
102 * should not be used in place of IS_RDONLY(inode).
103 * mnt_want/drop_write() will _keep_ the filesystem
104 * r/w.
105 */
106int __mnt_is_readonly(struct vfsmount *mnt)
107{
108 return (mnt->mnt_sb->s_flags & MS_RDONLY);
109}
110EXPORT_SYMBOL_GPL(__mnt_is_readonly);
111
112struct mnt_writer {
113 /*
114 * If holding multiple instances of this lock, they
115 * must be ordered by cpu number.
116 */
117 spinlock_t lock;
118 struct lock_class_key lock_class; /* compiles out with !lockdep */
119 unsigned long count;
120 struct vfsmount *mnt;
121} ____cacheline_aligned_in_smp;
122static DEFINE_PER_CPU(struct mnt_writer, mnt_writers);
123
124static int __init init_mnt_writers(void)
125{
126 int cpu;
127 for_each_possible_cpu(cpu) {
128 struct mnt_writer *writer = &per_cpu(mnt_writers, cpu);
129 spin_lock_init(&writer->lock);
130 lockdep_set_class(&writer->lock, &writer->lock_class);
131 writer->count = 0;
132 }
133 return 0;
134}
135fs_initcall(init_mnt_writers);
136
137static void unlock_mnt_writers(void)
138{
139 int cpu;
140 struct mnt_writer *cpu_writer;
141
142 for_each_possible_cpu(cpu) {
143 cpu_writer = &per_cpu(mnt_writers, cpu);
144 spin_unlock(&cpu_writer->lock);
145 }
146}
147
148static inline void __clear_mnt_count(struct mnt_writer *cpu_writer)
149{
150 if (!cpu_writer->mnt)
151 return;
152 /*
153 * This is in case anyone ever leaves an invalid,
154 * old ->mnt and a count of 0.
155 */
156 if (!cpu_writer->count)
157 return;
158 atomic_add(cpu_writer->count, &cpu_writer->mnt->__mnt_writers);
159 cpu_writer->count = 0;
160}
161 /*
162 * must hold cpu_writer->lock
163 */
164static inline void use_cpu_writer_for_mount(struct mnt_writer *cpu_writer,
165 struct vfsmount *mnt)
166{
167 if (cpu_writer->mnt == mnt)
168 return;
169 __clear_mnt_count(cpu_writer);
170 cpu_writer->mnt = mnt;
171}
172
173/*
174 * Most r/o checks on a fs are for operations that take
175 * discrete amounts of time, like a write() or unlink().
176 * We must keep track of when those operations start
177 * (for permission checks) and when they end, so that
178 * we can determine when writes are able to occur to
179 * a filesystem.
180 */
Dave Hansen83660252008-02-15 14:37:30 -0800181/**
182 * mnt_want_write - get write access to a mount
183 * @mnt: the mount on which to take a write
184 *
185 * This tells the low-level filesystem that a write is
186 * about to be performed to it, and makes sure that
187 * writes are allowed before returning success. When
188 * the write operation is finished, mnt_drop_write()
189 * must be called. This is effectively a refcount.
190 */
191int mnt_want_write(struct vfsmount *mnt)
192{
Dave Hansen3d733632008-02-15 14:37:59 -0800193 int ret = 0;
194 struct mnt_writer *cpu_writer;
195
196 cpu_writer = &get_cpu_var(mnt_writers);
197 spin_lock(&cpu_writer->lock);
198 if (__mnt_is_readonly(mnt)) {
199 ret = -EROFS;
200 goto out;
201 }
202 use_cpu_writer_for_mount(cpu_writer, mnt);
203 cpu_writer->count++;
204out:
205 spin_unlock(&cpu_writer->lock);
206 put_cpu_var(mnt_writers);
207 return ret;
Dave Hansen83660252008-02-15 14:37:30 -0800208}
209EXPORT_SYMBOL_GPL(mnt_want_write);
210
Dave Hansen3d733632008-02-15 14:37:59 -0800211static void lock_mnt_writers(void)
212{
213 int cpu;
214 struct mnt_writer *cpu_writer;
215
216 for_each_possible_cpu(cpu) {
217 cpu_writer = &per_cpu(mnt_writers, cpu);
218 spin_lock(&cpu_writer->lock);
219 __clear_mnt_count(cpu_writer);
220 cpu_writer->mnt = NULL;
221 }
222}
223
224/*
225 * These per-cpu write counts are not guaranteed to have
226 * matched increments and decrements on any given cpu.
227 * A file open()ed for write on one cpu and close()d on
228 * another cpu will imbalance this count. Make sure it
229 * does not get too far out of whack.
230 */
231static void handle_write_count_underflow(struct vfsmount *mnt)
232{
233 if (atomic_read(&mnt->__mnt_writers) >=
234 MNT_WRITER_UNDERFLOW_LIMIT)
235 return;
236 /*
237 * It isn't necessary to hold all of the locks
238 * at the same time, but doing it this way makes
239 * us share a lot more code.
240 */
241 lock_mnt_writers();
242 /*
243 * vfsmount_lock is for mnt_flags.
244 */
245 spin_lock(&vfsmount_lock);
246 /*
247 * If coalescing the per-cpu writer counts did not
248 * get us back to a positive writer count, we have
249 * a bug.
250 */
251 if ((atomic_read(&mnt->__mnt_writers) < 0) &&
252 !(mnt->mnt_flags & MNT_IMBALANCED_WRITE_COUNT)) {
253 printk(KERN_DEBUG "leak detected on mount(%p) writers "
254 "count: %d\n",
255 mnt, atomic_read(&mnt->__mnt_writers));
256 WARN_ON(1);
257 /* use the flag to keep the dmesg spam down */
258 mnt->mnt_flags |= MNT_IMBALANCED_WRITE_COUNT;
259 }
260 spin_unlock(&vfsmount_lock);
261 unlock_mnt_writers();
262}
263
Dave Hansen83660252008-02-15 14:37:30 -0800264/**
265 * mnt_drop_write - give up write access to a mount
266 * @mnt: the mount on which to give up write access
267 *
268 * Tells the low-level filesystem that we are done
269 * performing writes to it. Must be matched with
270 * mnt_want_write() call above.
271 */
272void mnt_drop_write(struct vfsmount *mnt)
273{
Dave Hansen3d733632008-02-15 14:37:59 -0800274 int must_check_underflow = 0;
275 struct mnt_writer *cpu_writer;
276
277 cpu_writer = &get_cpu_var(mnt_writers);
278 spin_lock(&cpu_writer->lock);
279
280 use_cpu_writer_for_mount(cpu_writer, mnt);
281 if (cpu_writer->count > 0) {
282 cpu_writer->count--;
283 } else {
284 must_check_underflow = 1;
285 atomic_dec(&mnt->__mnt_writers);
286 }
287
288 spin_unlock(&cpu_writer->lock);
289 /*
290 * Logically, we could call this each time,
291 * but the __mnt_writers cacheline tends to
292 * be cold, and makes this expensive.
293 */
294 if (must_check_underflow)
295 handle_write_count_underflow(mnt);
296 /*
297 * This could be done right after the spinlock
298 * is taken because the spinlock keeps us on
299 * the cpu, and disables preemption. However,
300 * putting it here bounds the amount that
301 * __mnt_writers can underflow. Without it,
302 * we could theoretically wrap __mnt_writers.
303 */
304 put_cpu_var(mnt_writers);
Dave Hansen83660252008-02-15 14:37:30 -0800305}
306EXPORT_SYMBOL_GPL(mnt_drop_write);
307
Dave Hansen3d733632008-02-15 14:37:59 -0800308int mnt_make_readonly(struct vfsmount *mnt)
Dave Hansen83660252008-02-15 14:37:30 -0800309{
Dave Hansen3d733632008-02-15 14:37:59 -0800310 int ret = 0;
311
312 lock_mnt_writers();
313 /*
314 * With all the locks held, this value is stable
315 */
316 if (atomic_read(&mnt->__mnt_writers) > 0) {
317 ret = -EBUSY;
318 goto out;
319 }
320 /*
321 * actually set mount's r/o flag here to make
322 * __mnt_is_readonly() true, which keeps anyone
323 * from doing a successful mnt_want_write().
324 */
325out:
326 unlock_mnt_writers();
327 return ret;
Dave Hansen83660252008-02-15 14:37:30 -0800328}
Dave Hansen83660252008-02-15 14:37:30 -0800329
David Howells454e2392006-06-23 02:02:57 -0700330int simple_set_mnt(struct vfsmount *mnt, struct super_block *sb)
331{
332 mnt->mnt_sb = sb;
333 mnt->mnt_root = dget(sb->s_root);
334 return 0;
335}
336
337EXPORT_SYMBOL(simple_set_mnt);
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339void free_vfsmnt(struct vfsmount *mnt)
340{
341 kfree(mnt->mnt_devname);
342 kmem_cache_free(mnt_cache, mnt);
343}
344
345/*
Ram Paia05964f2005-11-07 17:20:17 -0500346 * find the first or last mount at @dentry on vfsmount @mnt depending on
347 * @dir. If @dir is set return the first mount else return the last mount.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 */
Ram Paia05964f2005-11-07 17:20:17 -0500349struct vfsmount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry,
350 int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
Ram Paib58fed82005-11-07 17:16:09 -0500352 struct list_head *head = mount_hashtable + hash(mnt, dentry);
353 struct list_head *tmp = head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 struct vfsmount *p, *found = NULL;
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 for (;;) {
Ram Paia05964f2005-11-07 17:20:17 -0500357 tmp = dir ? tmp->next : tmp->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 p = NULL;
359 if (tmp == head)
360 break;
361 p = list_entry(tmp, struct vfsmount, mnt_hash);
362 if (p->mnt_parent == mnt && p->mnt_mountpoint == dentry) {
Ram Paia05964f2005-11-07 17:20:17 -0500363 found = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 break;
365 }
366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return found;
368}
369
Ram Paia05964f2005-11-07 17:20:17 -0500370/*
371 * lookup_mnt increments the ref count before returning
372 * the vfsmount struct.
373 */
374struct vfsmount *lookup_mnt(struct vfsmount *mnt, struct dentry *dentry)
375{
376 struct vfsmount *child_mnt;
377 spin_lock(&vfsmount_lock);
378 if ((child_mnt = __lookup_mnt(mnt, dentry, 1)))
379 mntget(child_mnt);
380 spin_unlock(&vfsmount_lock);
381 return child_mnt;
382}
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384static inline int check_mnt(struct vfsmount *mnt)
385{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800386 return mnt->mnt_ns == current->nsproxy->mnt_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800389static void touch_mnt_namespace(struct mnt_namespace *ns)
Al Viro5addc5d2005-11-07 17:15:49 -0500390{
391 if (ns) {
392 ns->event = ++event;
393 wake_up_interruptible(&ns->poll);
394 }
395}
396
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800397static void __touch_mnt_namespace(struct mnt_namespace *ns)
Al Viro5addc5d2005-11-07 17:15:49 -0500398{
399 if (ns && ns->event != event) {
400 ns->event = event;
401 wake_up_interruptible(&ns->poll);
402 }
403}
404
Al Viro1a390682008-03-21 20:48:19 -0400405static void detach_mnt(struct vfsmount *mnt, struct path *old_path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Al Viro1a390682008-03-21 20:48:19 -0400407 old_path->dentry = mnt->mnt_mountpoint;
408 old_path->mnt = mnt->mnt_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 mnt->mnt_parent = mnt;
410 mnt->mnt_mountpoint = mnt->mnt_root;
411 list_del_init(&mnt->mnt_child);
412 list_del_init(&mnt->mnt_hash);
Al Viro1a390682008-03-21 20:48:19 -0400413 old_path->dentry->d_mounted--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415
Ram Paib90fa9a2005-11-07 17:19:50 -0500416void mnt_set_mountpoint(struct vfsmount *mnt, struct dentry *dentry,
417 struct vfsmount *child_mnt)
418{
419 child_mnt->mnt_parent = mntget(mnt);
420 child_mnt->mnt_mountpoint = dget(dentry);
421 dentry->d_mounted++;
422}
423
Al Viro1a390682008-03-21 20:48:19 -0400424static void attach_mnt(struct vfsmount *mnt, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Al Viro1a390682008-03-21 20:48:19 -0400426 mnt_set_mountpoint(path->mnt, path->dentry, mnt);
Ram Paib90fa9a2005-11-07 17:19:50 -0500427 list_add_tail(&mnt->mnt_hash, mount_hashtable +
Al Viro1a390682008-03-21 20:48:19 -0400428 hash(path->mnt, path->dentry));
429 list_add_tail(&mnt->mnt_child, &path->mnt->mnt_mounts);
Ram Paib90fa9a2005-11-07 17:19:50 -0500430}
431
432/*
433 * the caller must hold vfsmount_lock
434 */
435static void commit_tree(struct vfsmount *mnt)
436{
437 struct vfsmount *parent = mnt->mnt_parent;
438 struct vfsmount *m;
439 LIST_HEAD(head);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800440 struct mnt_namespace *n = parent->mnt_ns;
Ram Paib90fa9a2005-11-07 17:19:50 -0500441
442 BUG_ON(parent == mnt);
443
444 list_add_tail(&head, &mnt->mnt_list);
445 list_for_each_entry(m, &head, mnt_list)
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800446 m->mnt_ns = n;
Ram Paib90fa9a2005-11-07 17:19:50 -0500447 list_splice(&head, n->list.prev);
448
449 list_add_tail(&mnt->mnt_hash, mount_hashtable +
450 hash(parent, mnt->mnt_mountpoint));
451 list_add_tail(&mnt->mnt_child, &parent->mnt_mounts);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800452 touch_mnt_namespace(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454
455static struct vfsmount *next_mnt(struct vfsmount *p, struct vfsmount *root)
456{
457 struct list_head *next = p->mnt_mounts.next;
458 if (next == &p->mnt_mounts) {
459 while (1) {
460 if (p == root)
461 return NULL;
462 next = p->mnt_child.next;
463 if (next != &p->mnt_parent->mnt_mounts)
464 break;
465 p = p->mnt_parent;
466 }
467 }
468 return list_entry(next, struct vfsmount, mnt_child);
469}
470
Ram Pai9676f0c2005-11-07 17:21:20 -0500471static struct vfsmount *skip_mnt_tree(struct vfsmount *p)
472{
473 struct list_head *prev = p->mnt_mounts.prev;
474 while (prev != &p->mnt_mounts) {
475 p = list_entry(prev, struct vfsmount, mnt_child);
476 prev = p->mnt_mounts.prev;
477 }
478 return p;
479}
480
Ram Pai36341f62005-11-07 17:17:22 -0500481static struct vfsmount *clone_mnt(struct vfsmount *old, struct dentry *root,
482 int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
484 struct super_block *sb = old->mnt_sb;
485 struct vfsmount *mnt = alloc_vfsmnt(old->mnt_devname);
486
487 if (mnt) {
488 mnt->mnt_flags = old->mnt_flags;
489 atomic_inc(&sb->s_active);
490 mnt->mnt_sb = sb;
491 mnt->mnt_root = dget(root);
492 mnt->mnt_mountpoint = mnt->mnt_root;
493 mnt->mnt_parent = mnt;
Ram Paib90fa9a2005-11-07 17:19:50 -0500494
Ram Pai5afe0022005-11-07 17:21:01 -0500495 if (flag & CL_SLAVE) {
496 list_add(&mnt->mnt_slave, &old->mnt_slave_list);
497 mnt->mnt_master = old;
498 CLEAR_MNT_SHARED(mnt);
Al Viro8aec0802007-06-07 12:20:32 -0400499 } else if (!(flag & CL_PRIVATE)) {
Ram Pai5afe0022005-11-07 17:21:01 -0500500 if ((flag & CL_PROPAGATION) || IS_MNT_SHARED(old))
501 list_add(&mnt->mnt_share, &old->mnt_share);
502 if (IS_MNT_SLAVE(old))
503 list_add(&mnt->mnt_slave, &old->mnt_slave);
504 mnt->mnt_master = old->mnt_master;
505 }
Ram Paib90fa9a2005-11-07 17:19:50 -0500506 if (flag & CL_MAKE_SHARED)
507 set_mnt_shared(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 /* stick the duplicate mount on the same expiry list
510 * as the original if that was on one */
Ram Pai36341f62005-11-07 17:17:22 -0500511 if (flag & CL_EXPIRE) {
Ram Pai36341f62005-11-07 17:17:22 -0500512 if (!list_empty(&old->mnt_expire))
513 list_add(&mnt->mnt_expire, &old->mnt_expire);
Ram Pai36341f62005-11-07 17:17:22 -0500514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
516 return mnt;
517}
518
Al Viro7b7b1ac2005-11-07 17:13:39 -0500519static inline void __mntput(struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
Dave Hansen3d733632008-02-15 14:37:59 -0800521 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 struct super_block *sb = mnt->mnt_sb;
Dave Hansen3d733632008-02-15 14:37:59 -0800523 /*
524 * We don't have to hold all of the locks at the
525 * same time here because we know that we're the
526 * last reference to mnt and that no new writers
527 * can come in.
528 */
529 for_each_possible_cpu(cpu) {
530 struct mnt_writer *cpu_writer = &per_cpu(mnt_writers, cpu);
531 if (cpu_writer->mnt != mnt)
532 continue;
533 spin_lock(&cpu_writer->lock);
534 atomic_add(cpu_writer->count, &mnt->__mnt_writers);
535 cpu_writer->count = 0;
536 /*
537 * Might as well do this so that no one
538 * ever sees the pointer and expects
539 * it to be valid.
540 */
541 cpu_writer->mnt = NULL;
542 spin_unlock(&cpu_writer->lock);
543 }
544 /*
545 * This probably indicates that somebody messed
546 * up a mnt_want/drop_write() pair. If this
547 * happens, the filesystem was probably unable
548 * to make r/w->r/o transitions.
549 */
550 WARN_ON(atomic_read(&mnt->__mnt_writers));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 dput(mnt->mnt_root);
552 free_vfsmnt(mnt);
553 deactivate_super(sb);
554}
555
Al Viro7b7b1ac2005-11-07 17:13:39 -0500556void mntput_no_expire(struct vfsmount *mnt)
557{
558repeat:
559 if (atomic_dec_and_lock(&mnt->mnt_count, &vfsmount_lock)) {
560 if (likely(!mnt->mnt_pinned)) {
561 spin_unlock(&vfsmount_lock);
562 __mntput(mnt);
563 return;
564 }
565 atomic_add(mnt->mnt_pinned + 1, &mnt->mnt_count);
566 mnt->mnt_pinned = 0;
567 spin_unlock(&vfsmount_lock);
568 acct_auto_close_mnt(mnt);
569 security_sb_umount_close(mnt);
570 goto repeat;
571 }
572}
573
574EXPORT_SYMBOL(mntput_no_expire);
575
576void mnt_pin(struct vfsmount *mnt)
577{
578 spin_lock(&vfsmount_lock);
579 mnt->mnt_pinned++;
580 spin_unlock(&vfsmount_lock);
581}
582
583EXPORT_SYMBOL(mnt_pin);
584
585void mnt_unpin(struct vfsmount *mnt)
586{
587 spin_lock(&vfsmount_lock);
588 if (mnt->mnt_pinned) {
589 atomic_inc(&mnt->mnt_count);
590 mnt->mnt_pinned--;
591 }
592 spin_unlock(&vfsmount_lock);
593}
594
595EXPORT_SYMBOL(mnt_unpin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800597static inline void mangle(struct seq_file *m, const char *s)
598{
599 seq_escape(m, s, " \t\n\\");
600}
601
602/*
603 * Simple .show_options callback for filesystems which don't want to
604 * implement more complex mount option showing.
605 *
606 * See also save_mount_options().
607 */
608int generic_show_options(struct seq_file *m, struct vfsmount *mnt)
609{
610 const char *options = mnt->mnt_sb->s_options;
611
612 if (options != NULL && options[0]) {
613 seq_putc(m, ',');
614 mangle(m, options);
615 }
616
617 return 0;
618}
619EXPORT_SYMBOL(generic_show_options);
620
621/*
622 * If filesystem uses generic_show_options(), this function should be
623 * called from the fill_super() callback.
624 *
625 * The .remount_fs callback usually needs to be handled in a special
626 * way, to make sure, that previous options are not overwritten if the
627 * remount fails.
628 *
629 * Also note, that if the filesystem's .remount_fs function doesn't
630 * reset all options to their default value, but changes only newly
631 * given options, then the displayed options will not reflect reality
632 * any more.
633 */
634void save_mount_options(struct super_block *sb, char *options)
635{
636 kfree(sb->s_options);
637 sb->s_options = kstrdup(options, GFP_KERNEL);
638}
639EXPORT_SYMBOL(save_mount_options);
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641/* iterator */
642static void *m_start(struct seq_file *m, loff_t *pos)
643{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800644 struct mnt_namespace *n = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Ram Pai390c6842005-11-07 17:17:51 -0500646 down_read(&namespace_sem);
Pavel Emelianovb0765fb2007-07-15 23:39:55 -0700647 return seq_list_start(&n->list, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648}
649
650static void *m_next(struct seq_file *m, void *v, loff_t *pos)
651{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800652 struct mnt_namespace *n = m->private;
Pavel Emelianovb0765fb2007-07-15 23:39:55 -0700653
654 return seq_list_next(v, &n->list, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
656
657static void m_stop(struct seq_file *m, void *v)
658{
Ram Pai390c6842005-11-07 17:17:51 -0500659 up_read(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662static int show_vfsmnt(struct seq_file *m, void *v)
663{
Pavel Emelianovb0765fb2007-07-15 23:39:55 -0700664 struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 int err = 0;
666 static struct proc_fs_info {
667 int flag;
668 char *str;
669 } fs_info[] = {
670 { MS_SYNCHRONOUS, ",sync" },
671 { MS_DIRSYNC, ",dirsync" },
672 { MS_MANDLOCK, ",mand" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 { 0, NULL }
674 };
675 static struct proc_fs_info mnt_info[] = {
676 { MNT_NOSUID, ",nosuid" },
677 { MNT_NODEV, ",nodev" },
678 { MNT_NOEXEC, ",noexec" },
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -0800679 { MNT_NOATIME, ",noatime" },
680 { MNT_NODIRATIME, ",nodiratime" },
Valerie Henson47ae32d2006-12-13 00:34:34 -0800681 { MNT_RELATIME, ",relatime" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 { 0, NULL }
683 };
684 struct proc_fs_info *fs_infop;
Jan Blunckc32c2f62008-02-14 19:38:43 -0800685 struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687 mangle(m, mnt->mnt_devname ? mnt->mnt_devname : "none");
688 seq_putc(m, ' ');
Jan Blunckc32c2f62008-02-14 19:38:43 -0800689 seq_path(m, &mnt_path, " \t\n\\");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 seq_putc(m, ' ');
691 mangle(m, mnt->mnt_sb->s_type->name);
Miklos Szeredi79c0b2d2007-05-08 00:25:43 -0700692 if (mnt->mnt_sb->s_subtype && mnt->mnt_sb->s_subtype[0]) {
693 seq_putc(m, '.');
694 mangle(m, mnt->mnt_sb->s_subtype);
695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 seq_puts(m, mnt->mnt_sb->s_flags & MS_RDONLY ? " ro" : " rw");
697 for (fs_infop = fs_info; fs_infop->flag; fs_infop++) {
698 if (mnt->mnt_sb->s_flags & fs_infop->flag)
699 seq_puts(m, fs_infop->str);
700 }
701 for (fs_infop = mnt_info; fs_infop->flag; fs_infop++) {
702 if (mnt->mnt_flags & fs_infop->flag)
703 seq_puts(m, fs_infop->str);
704 }
705 if (mnt->mnt_sb->s_op->show_options)
706 err = mnt->mnt_sb->s_op->show_options(m, mnt);
707 seq_puts(m, " 0 0\n");
708 return err;
709}
710
711struct seq_operations mounts_op = {
712 .start = m_start,
713 .next = m_next,
714 .stop = m_stop,
715 .show = show_vfsmnt
716};
717
Chuck Leverb4629fe2006-03-20 13:44:12 -0500718static int show_vfsstat(struct seq_file *m, void *v)
719{
Pavel Emelianovb0765fb2007-07-15 23:39:55 -0700720 struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
Jan Blunckc32c2f62008-02-14 19:38:43 -0800721 struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
Chuck Leverb4629fe2006-03-20 13:44:12 -0500722 int err = 0;
723
724 /* device */
725 if (mnt->mnt_devname) {
726 seq_puts(m, "device ");
727 mangle(m, mnt->mnt_devname);
728 } else
729 seq_puts(m, "no device");
730
731 /* mount point */
732 seq_puts(m, " mounted on ");
Jan Blunckc32c2f62008-02-14 19:38:43 -0800733 seq_path(m, &mnt_path, " \t\n\\");
Chuck Leverb4629fe2006-03-20 13:44:12 -0500734 seq_putc(m, ' ');
735
736 /* file system type */
737 seq_puts(m, "with fstype ");
738 mangle(m, mnt->mnt_sb->s_type->name);
739
740 /* optional statistics */
741 if (mnt->mnt_sb->s_op->show_stats) {
742 seq_putc(m, ' ');
743 err = mnt->mnt_sb->s_op->show_stats(m, mnt);
744 }
745
746 seq_putc(m, '\n');
747 return err;
748}
749
750struct seq_operations mountstats_op = {
751 .start = m_start,
752 .next = m_next,
753 .stop = m_stop,
754 .show = show_vfsstat,
755};
756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757/**
758 * may_umount_tree - check if a mount tree is busy
759 * @mnt: root of mount tree
760 *
761 * This is called to check if a tree of mounts has any
762 * open files, pwds, chroots or sub mounts that are
763 * busy.
764 */
765int may_umount_tree(struct vfsmount *mnt)
766{
Ram Pai36341f62005-11-07 17:17:22 -0500767 int actual_refs = 0;
768 int minimum_refs = 0;
769 struct vfsmount *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 spin_lock(&vfsmount_lock);
Ram Pai36341f62005-11-07 17:17:22 -0500772 for (p = mnt; p; p = next_mnt(p, mnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 actual_refs += atomic_read(&p->mnt_count);
774 minimum_refs += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
776 spin_unlock(&vfsmount_lock);
777
778 if (actual_refs > minimum_refs)
Ian Kente3474a82006-03-27 01:14:51 -0800779 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Ian Kente3474a82006-03-27 01:14:51 -0800781 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
784EXPORT_SYMBOL(may_umount_tree);
785
786/**
787 * may_umount - check if a mount point is busy
788 * @mnt: root of mount
789 *
790 * This is called to check if a mount point has any
791 * open files, pwds, chroots or sub mounts. If the
792 * mount has sub mounts this will return busy
793 * regardless of whether the sub mounts are busy.
794 *
795 * Doesn't take quota and stuff into account. IOW, in some cases it will
796 * give false negatives. The main reason why it's here is that we need
797 * a non-destructive way to look for easily umountable filesystems.
798 */
799int may_umount(struct vfsmount *mnt)
800{
Ian Kente3474a82006-03-27 01:14:51 -0800801 int ret = 1;
Ram Paia05964f2005-11-07 17:20:17 -0500802 spin_lock(&vfsmount_lock);
803 if (propagate_mount_busy(mnt, 2))
Ian Kente3474a82006-03-27 01:14:51 -0800804 ret = 0;
Ram Paia05964f2005-11-07 17:20:17 -0500805 spin_unlock(&vfsmount_lock);
806 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
809EXPORT_SYMBOL(may_umount);
810
Ram Paib90fa9a2005-11-07 17:19:50 -0500811void release_mounts(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
Ram Pai70fbcdf2005-11-07 17:17:04 -0500813 struct vfsmount *mnt;
Miklos Szeredibf066c72006-01-08 01:03:19 -0800814 while (!list_empty(head)) {
Pavel Emelianovb5e61812007-05-08 00:30:19 -0700815 mnt = list_first_entry(head, struct vfsmount, mnt_hash);
Ram Pai70fbcdf2005-11-07 17:17:04 -0500816 list_del_init(&mnt->mnt_hash);
817 if (mnt->mnt_parent != mnt) {
818 struct dentry *dentry;
819 struct vfsmount *m;
820 spin_lock(&vfsmount_lock);
821 dentry = mnt->mnt_mountpoint;
822 m = mnt->mnt_parent;
823 mnt->mnt_mountpoint = mnt->mnt_root;
824 mnt->mnt_parent = mnt;
Al Viro7c4b93d2008-03-21 23:59:49 -0400825 m->mnt_ghosts--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 spin_unlock(&vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -0500827 dput(dentry);
828 mntput(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
830 mntput(mnt);
Ram Pai70fbcdf2005-11-07 17:17:04 -0500831 }
832}
833
Ram Paia05964f2005-11-07 17:20:17 -0500834void umount_tree(struct vfsmount *mnt, int propagate, struct list_head *kill)
Ram Pai70fbcdf2005-11-07 17:17:04 -0500835{
836 struct vfsmount *p;
837
Akinobu Mita1bfba4e2006-06-26 00:24:40 -0700838 for (p = mnt; p; p = next_mnt(p, mnt))
839 list_move(&p->mnt_hash, kill);
Ram Pai70fbcdf2005-11-07 17:17:04 -0500840
Ram Paia05964f2005-11-07 17:20:17 -0500841 if (propagate)
842 propagate_umount(kill);
843
Ram Pai70fbcdf2005-11-07 17:17:04 -0500844 list_for_each_entry(p, kill, mnt_hash) {
845 list_del_init(&p->mnt_expire);
846 list_del_init(&p->mnt_list);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800847 __touch_mnt_namespace(p->mnt_ns);
848 p->mnt_ns = NULL;
Ram Pai70fbcdf2005-11-07 17:17:04 -0500849 list_del_init(&p->mnt_child);
Al Viro7c4b93d2008-03-21 23:59:49 -0400850 if (p->mnt_parent != p) {
851 p->mnt_parent->mnt_ghosts++;
Al Virof30ac312006-02-01 07:53:21 -0500852 p->mnt_mountpoint->d_mounted--;
Al Viro7c4b93d2008-03-21 23:59:49 -0400853 }
Ram Paia05964f2005-11-07 17:20:17 -0500854 change_mnt_propagation(p, MS_PRIVATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 }
856}
857
Al Viroc35038b2008-03-22 00:46:23 -0400858static void shrink_submounts(struct vfsmount *mnt, struct list_head *umounts);
859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860static int do_umount(struct vfsmount *mnt, int flags)
861{
Ram Paib58fed82005-11-07 17:16:09 -0500862 struct super_block *sb = mnt->mnt_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 int retval;
Ram Pai70fbcdf2005-11-07 17:17:04 -0500864 LIST_HEAD(umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 retval = security_sb_umount(mnt, flags);
867 if (retval)
868 return retval;
869
870 /*
871 * Allow userspace to request a mountpoint be expired rather than
872 * unmounting unconditionally. Unmount only happens if:
873 * (1) the mark is already set (the mark is cleared by mntput())
874 * (2) the usage count == 1 [parent vfsmount] + 1 [sys_umount]
875 */
876 if (flags & MNT_EXPIRE) {
Jan Blunck6ac08c32008-02-14 19:34:38 -0800877 if (mnt == current->fs->root.mnt ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 flags & (MNT_FORCE | MNT_DETACH))
879 return -EINVAL;
880
881 if (atomic_read(&mnt->mnt_count) != 2)
882 return -EBUSY;
883
884 if (!xchg(&mnt->mnt_expiry_mark, 1))
885 return -EAGAIN;
886 }
887
888 /*
889 * If we may have to abort operations to get out of this
890 * mount, and they will themselves hold resources we must
891 * allow the fs to do things. In the Unix tradition of
892 * 'Gee thats tricky lets do it in userspace' the umount_begin
893 * might fail to complete on the first run through as other tasks
894 * must return, and the like. Thats for the mount program to worry
895 * about for the moment.
896 */
897
898 lock_kernel();
Trond Myklebust8b512d92006-06-09 09:34:18 -0400899 if (sb->s_op->umount_begin)
900 sb->s_op->umount_begin(mnt, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 unlock_kernel();
902
903 /*
904 * No sense to grab the lock for this test, but test itself looks
905 * somewhat bogus. Suggestions for better replacement?
906 * Ho-hum... In principle, we might treat that as umount + switch
907 * to rootfs. GC would eventually take care of the old vfsmount.
908 * Actually it makes sense, especially if rootfs would contain a
909 * /reboot - static binary that would close all descriptors and
910 * call reboot(9). Then init(8) could umount root and exec /reboot.
911 */
Jan Blunck6ac08c32008-02-14 19:34:38 -0800912 if (mnt == current->fs->root.mnt && !(flags & MNT_DETACH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 /*
914 * Special case for "unmounting" root ...
915 * we just try to remount it readonly.
916 */
917 down_write(&sb->s_umount);
918 if (!(sb->s_flags & MS_RDONLY)) {
919 lock_kernel();
920 DQUOT_OFF(sb);
921 retval = do_remount_sb(sb, MS_RDONLY, NULL, 0);
922 unlock_kernel();
923 }
924 up_write(&sb->s_umount);
925 return retval;
926 }
927
Ram Pai390c6842005-11-07 17:17:51 -0500928 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 spin_lock(&vfsmount_lock);
Al Viro5addc5d2005-11-07 17:15:49 -0500930 event++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Al Viroc35038b2008-03-22 00:46:23 -0400932 if (!(flags & MNT_DETACH))
933 shrink_submounts(mnt, &umount_list);
934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 retval = -EBUSY;
Ram Paia05964f2005-11-07 17:20:17 -0500936 if (flags & MNT_DETACH || !propagate_mount_busy(mnt, 2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 if (!list_empty(&mnt->mnt_list))
Ram Paia05964f2005-11-07 17:20:17 -0500938 umount_tree(mnt, 1, &umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 retval = 0;
940 }
941 spin_unlock(&vfsmount_lock);
942 if (retval)
943 security_sb_umount_busy(mnt);
Ram Pai390c6842005-11-07 17:17:51 -0500944 up_write(&namespace_sem);
Ram Pai70fbcdf2005-11-07 17:17:04 -0500945 release_mounts(&umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 return retval;
947}
948
949/*
950 * Now umount can handle mount points as well as block devices.
951 * This is important for filesystems which use unnamed block devices.
952 *
953 * We now support a flag for forced unmount like the other 'big iron'
954 * unixes. Our API is identical to OSF/1 to avoid making a mess of AMD
955 */
956
957asmlinkage long sys_umount(char __user * name, int flags)
958{
959 struct nameidata nd;
960 int retval;
961
962 retval = __user_walk(name, LOOKUP_FOLLOW, &nd);
963 if (retval)
964 goto out;
965 retval = -EINVAL;
Jan Blunck4ac91372008-02-14 19:34:32 -0800966 if (nd.path.dentry != nd.path.mnt->mnt_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 goto dput_and_out;
Jan Blunck4ac91372008-02-14 19:34:32 -0800968 if (!check_mnt(nd.path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 goto dput_and_out;
970
971 retval = -EPERM;
972 if (!capable(CAP_SYS_ADMIN))
973 goto dput_and_out;
974
Jan Blunck4ac91372008-02-14 19:34:32 -0800975 retval = do_umount(nd.path.mnt, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976dput_and_out:
Jan Blunck429731b2008-02-14 19:34:31 -0800977 /* we mustn't call path_put() as that would clear mnt_expiry_mark */
Jan Blunck4ac91372008-02-14 19:34:32 -0800978 dput(nd.path.dentry);
979 mntput_no_expire(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980out:
981 return retval;
982}
983
984#ifdef __ARCH_WANT_SYS_OLDUMOUNT
985
986/*
Ram Paib58fed82005-11-07 17:16:09 -0500987 * The 2.0 compatible umount. No flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989asmlinkage long sys_oldumount(char __user * name)
990{
Ram Paib58fed82005-11-07 17:16:09 -0500991 return sys_umount(name, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992}
993
994#endif
995
996static int mount_is_safe(struct nameidata *nd)
997{
998 if (capable(CAP_SYS_ADMIN))
999 return 0;
1000 return -EPERM;
1001#ifdef notyet
Jan Blunck4ac91372008-02-14 19:34:32 -08001002 if (S_ISLNK(nd->path.dentry->d_inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 return -EPERM;
Jan Blunck4ac91372008-02-14 19:34:32 -08001004 if (nd->path.dentry->d_inode->i_mode & S_ISVTX) {
1005 if (current->uid != nd->path.dentry->d_inode->i_uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return -EPERM;
1007 }
Christoph Hellwige4543ed2005-11-08 21:35:04 -08001008 if (vfs_permission(nd, MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 return -EPERM;
1010 return 0;
1011#endif
1012}
1013
Ram Paib58fed82005-11-07 17:16:09 -05001014static int lives_below_in_same_fs(struct dentry *d, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015{
1016 while (1) {
1017 if (d == dentry)
1018 return 1;
1019 if (d == NULL || d == d->d_parent)
1020 return 0;
1021 d = d->d_parent;
1022 }
1023}
1024
Ram Paib90fa9a2005-11-07 17:19:50 -05001025struct vfsmount *copy_tree(struct vfsmount *mnt, struct dentry *dentry,
Ram Pai36341f62005-11-07 17:17:22 -05001026 int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027{
1028 struct vfsmount *res, *p, *q, *r, *s;
Al Viro1a390682008-03-21 20:48:19 -04001029 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Ram Pai9676f0c2005-11-07 17:21:20 -05001031 if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(mnt))
1032 return NULL;
1033
Ram Pai36341f62005-11-07 17:17:22 -05001034 res = q = clone_mnt(mnt, dentry, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 if (!q)
1036 goto Enomem;
1037 q->mnt_mountpoint = mnt->mnt_mountpoint;
1038
1039 p = mnt;
Domen Puncerfdadd652005-09-10 00:27:07 -07001040 list_for_each_entry(r, &mnt->mnt_mounts, mnt_child) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (!lives_below_in_same_fs(r->mnt_mountpoint, dentry))
1042 continue;
1043
1044 for (s = r; s; s = next_mnt(s, r)) {
Ram Pai9676f0c2005-11-07 17:21:20 -05001045 if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(s)) {
1046 s = skip_mnt_tree(s);
1047 continue;
1048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 while (p != s->mnt_parent) {
1050 p = p->mnt_parent;
1051 q = q->mnt_parent;
1052 }
1053 p = s;
Al Viro1a390682008-03-21 20:48:19 -04001054 path.mnt = q;
1055 path.dentry = p->mnt_mountpoint;
Ram Pai36341f62005-11-07 17:17:22 -05001056 q = clone_mnt(p, p->mnt_root, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 if (!q)
1058 goto Enomem;
1059 spin_lock(&vfsmount_lock);
1060 list_add_tail(&q->mnt_list, &res->mnt_list);
Al Viro1a390682008-03-21 20:48:19 -04001061 attach_mnt(q, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 spin_unlock(&vfsmount_lock);
1063 }
1064 }
1065 return res;
Ram Paib58fed82005-11-07 17:16:09 -05001066Enomem:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 if (res) {
Ram Pai70fbcdf2005-11-07 17:17:04 -05001068 LIST_HEAD(umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 spin_lock(&vfsmount_lock);
Ram Paia05964f2005-11-07 17:20:17 -05001070 umount_tree(res, 0, &umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 spin_unlock(&vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001072 release_mounts(&umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 }
1074 return NULL;
1075}
1076
Al Viro8aec0802007-06-07 12:20:32 -04001077struct vfsmount *collect_mounts(struct vfsmount *mnt, struct dentry *dentry)
1078{
1079 struct vfsmount *tree;
1080 down_read(&namespace_sem);
1081 tree = copy_tree(mnt, dentry, CL_COPY_ALL | CL_PRIVATE);
1082 up_read(&namespace_sem);
1083 return tree;
1084}
1085
1086void drop_collected_mounts(struct vfsmount *mnt)
1087{
1088 LIST_HEAD(umount_list);
1089 down_read(&namespace_sem);
1090 spin_lock(&vfsmount_lock);
1091 umount_tree(mnt, 0, &umount_list);
1092 spin_unlock(&vfsmount_lock);
1093 up_read(&namespace_sem);
1094 release_mounts(&umount_list);
1095}
1096
Ram Paib90fa9a2005-11-07 17:19:50 -05001097/*
1098 * @source_mnt : mount tree to be attached
Ram Pai21444402005-11-07 17:20:03 -05001099 * @nd : place the mount tree @source_mnt is attached
1100 * @parent_nd : if non-null, detach the source_mnt from its parent and
1101 * store the parent mount and mountpoint dentry.
1102 * (done when source_mnt is moved)
Ram Paib90fa9a2005-11-07 17:19:50 -05001103 *
1104 * NOTE: in the table below explains the semantics when a source mount
1105 * of a given type is attached to a destination mount of a given type.
Ram Pai9676f0c2005-11-07 17:21:20 -05001106 * ---------------------------------------------------------------------------
1107 * | BIND MOUNT OPERATION |
1108 * |**************************************************************************
1109 * | source-->| shared | private | slave | unbindable |
1110 * | dest | | | | |
1111 * | | | | | | |
1112 * | v | | | | |
1113 * |**************************************************************************
1114 * | shared | shared (++) | shared (+) | shared(+++)| invalid |
1115 * | | | | | |
1116 * |non-shared| shared (+) | private | slave (*) | invalid |
1117 * ***************************************************************************
Ram Paib90fa9a2005-11-07 17:19:50 -05001118 * A bind operation clones the source mount and mounts the clone on the
1119 * destination mount.
1120 *
1121 * (++) the cloned mount is propagated to all the mounts in the propagation
1122 * tree of the destination mount and the cloned mount is added to
1123 * the peer group of the source mount.
1124 * (+) the cloned mount is created under the destination mount and is marked
1125 * as shared. The cloned mount is added to the peer group of the source
1126 * mount.
Ram Pai5afe0022005-11-07 17:21:01 -05001127 * (+++) the mount is propagated to all the mounts in the propagation tree
1128 * of the destination mount and the cloned mount is made slave
1129 * of the same master as that of the source mount. The cloned mount
1130 * is marked as 'shared and slave'.
1131 * (*) the cloned mount is made a slave of the same master as that of the
1132 * source mount.
1133 *
Ram Pai9676f0c2005-11-07 17:21:20 -05001134 * ---------------------------------------------------------------------------
1135 * | MOVE MOUNT OPERATION |
1136 * |**************************************************************************
1137 * | source-->| shared | private | slave | unbindable |
1138 * | dest | | | | |
1139 * | | | | | | |
1140 * | v | | | | |
1141 * |**************************************************************************
1142 * | shared | shared (+) | shared (+) | shared(+++) | invalid |
1143 * | | | | | |
1144 * |non-shared| shared (+*) | private | slave (*) | unbindable |
1145 * ***************************************************************************
Ram Pai5afe0022005-11-07 17:21:01 -05001146 *
1147 * (+) the mount is moved to the destination. And is then propagated to
1148 * all the mounts in the propagation tree of the destination mount.
Ram Pai21444402005-11-07 17:20:03 -05001149 * (+*) the mount is moved to the destination.
Ram Pai5afe0022005-11-07 17:21:01 -05001150 * (+++) the mount is moved to the destination and is then propagated to
1151 * all the mounts belonging to the destination mount's propagation tree.
1152 * the mount is marked as 'shared and slave'.
1153 * (*) the mount continues to be a slave at the new location.
Ram Paib90fa9a2005-11-07 17:19:50 -05001154 *
1155 * if the source mount is a tree, the operations explained above is
1156 * applied to each mount in the tree.
1157 * Must be called without spinlocks held, since this function can sleep
1158 * in allocations.
1159 */
1160static int attach_recursive_mnt(struct vfsmount *source_mnt,
Al Viro1a390682008-03-21 20:48:19 -04001161 struct path *path, struct path *parent_path)
Ram Paib90fa9a2005-11-07 17:19:50 -05001162{
1163 LIST_HEAD(tree_list);
Al Viro1a390682008-03-21 20:48:19 -04001164 struct vfsmount *dest_mnt = path->mnt;
1165 struct dentry *dest_dentry = path->dentry;
Ram Paib90fa9a2005-11-07 17:19:50 -05001166 struct vfsmount *child, *p;
1167
1168 if (propagate_mnt(dest_mnt, dest_dentry, source_mnt, &tree_list))
1169 return -EINVAL;
1170
1171 if (IS_MNT_SHARED(dest_mnt)) {
1172 for (p = source_mnt; p; p = next_mnt(p, source_mnt))
1173 set_mnt_shared(p);
1174 }
1175
1176 spin_lock(&vfsmount_lock);
Al Viro1a390682008-03-21 20:48:19 -04001177 if (parent_path) {
1178 detach_mnt(source_mnt, parent_path);
1179 attach_mnt(source_mnt, path);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001180 touch_mnt_namespace(current->nsproxy->mnt_ns);
Ram Pai21444402005-11-07 17:20:03 -05001181 } else {
1182 mnt_set_mountpoint(dest_mnt, dest_dentry, source_mnt);
1183 commit_tree(source_mnt);
1184 }
Ram Paib90fa9a2005-11-07 17:19:50 -05001185
1186 list_for_each_entry_safe(child, p, &tree_list, mnt_hash) {
1187 list_del_init(&child->mnt_hash);
1188 commit_tree(child);
1189 }
1190 spin_unlock(&vfsmount_lock);
1191 return 0;
1192}
1193
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194static int graft_tree(struct vfsmount *mnt, struct nameidata *nd)
1195{
1196 int err;
1197 if (mnt->mnt_sb->s_flags & MS_NOUSER)
1198 return -EINVAL;
1199
Jan Blunck4ac91372008-02-14 19:34:32 -08001200 if (S_ISDIR(nd->path.dentry->d_inode->i_mode) !=
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 S_ISDIR(mnt->mnt_root->d_inode->i_mode))
1202 return -ENOTDIR;
1203
1204 err = -ENOENT;
Jan Blunck4ac91372008-02-14 19:34:32 -08001205 mutex_lock(&nd->path.dentry->d_inode->i_mutex);
1206 if (IS_DEADDIR(nd->path.dentry->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 goto out_unlock;
1208
1209 err = security_sb_check_sb(mnt, nd);
1210 if (err)
1211 goto out_unlock;
1212
1213 err = -ENOENT;
Jan Blunck4ac91372008-02-14 19:34:32 -08001214 if (IS_ROOT(nd->path.dentry) || !d_unhashed(nd->path.dentry))
Al Viro1a390682008-03-21 20:48:19 -04001215 err = attach_recursive_mnt(mnt, &nd->path, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08001217 mutex_unlock(&nd->path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 if (!err)
1219 security_sb_post_addmount(mnt, nd);
1220 return err;
1221}
1222
1223/*
Ram Pai07b20882005-11-07 17:19:07 -05001224 * recursively change the type of the mountpoint.
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001225 * noinline this do_mount helper to save do_mount stack space.
Ram Pai07b20882005-11-07 17:19:07 -05001226 */
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001227static noinline int do_change_type(struct nameidata *nd, int flag)
Ram Pai07b20882005-11-07 17:19:07 -05001228{
Jan Blunck4ac91372008-02-14 19:34:32 -08001229 struct vfsmount *m, *mnt = nd->path.mnt;
Ram Pai07b20882005-11-07 17:19:07 -05001230 int recurse = flag & MS_REC;
1231 int type = flag & ~MS_REC;
1232
Miklos Szerediee6f9582007-05-08 00:30:40 -07001233 if (!capable(CAP_SYS_ADMIN))
1234 return -EPERM;
1235
Jan Blunck4ac91372008-02-14 19:34:32 -08001236 if (nd->path.dentry != nd->path.mnt->mnt_root)
Ram Pai07b20882005-11-07 17:19:07 -05001237 return -EINVAL;
1238
1239 down_write(&namespace_sem);
1240 spin_lock(&vfsmount_lock);
1241 for (m = mnt; m; m = (recurse ? next_mnt(m, mnt) : NULL))
1242 change_mnt_propagation(m, type);
1243 spin_unlock(&vfsmount_lock);
1244 up_write(&namespace_sem);
1245 return 0;
1246}
1247
1248/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 * do loopback mount.
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001250 * noinline this do_mount helper to save do_mount stack space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 */
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001252static noinline int do_loopback(struct nameidata *nd, char *old_name,
1253 int recurse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
1255 struct nameidata old_nd;
1256 struct vfsmount *mnt = NULL;
1257 int err = mount_is_safe(nd);
1258 if (err)
1259 return err;
1260 if (!old_name || !*old_name)
1261 return -EINVAL;
1262 err = path_lookup(old_name, LOOKUP_FOLLOW, &old_nd);
1263 if (err)
1264 return err;
1265
Ram Pai390c6842005-11-07 17:17:51 -05001266 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 err = -EINVAL;
Jan Blunck4ac91372008-02-14 19:34:32 -08001268 if (IS_MNT_UNBINDABLE(old_nd.path.mnt))
1269 goto out;
Ram Pai9676f0c2005-11-07 17:21:20 -05001270
Jan Blunck4ac91372008-02-14 19:34:32 -08001271 if (!check_mnt(nd->path.mnt) || !check_mnt(old_nd.path.mnt))
Al Viroccd48bc2005-11-07 17:15:04 -05001272 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Al Viroccd48bc2005-11-07 17:15:04 -05001274 err = -ENOMEM;
1275 if (recurse)
Jan Blunck4ac91372008-02-14 19:34:32 -08001276 mnt = copy_tree(old_nd.path.mnt, old_nd.path.dentry, 0);
Al Viroccd48bc2005-11-07 17:15:04 -05001277 else
Jan Blunck4ac91372008-02-14 19:34:32 -08001278 mnt = clone_mnt(old_nd.path.mnt, old_nd.path.dentry, 0);
Al Viroccd48bc2005-11-07 17:15:04 -05001279
1280 if (!mnt)
1281 goto out;
1282
Al Viroccd48bc2005-11-07 17:15:04 -05001283 err = graft_tree(mnt, nd);
1284 if (err) {
Ram Pai70fbcdf2005-11-07 17:17:04 -05001285 LIST_HEAD(umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 spin_lock(&vfsmount_lock);
Ram Paia05964f2005-11-07 17:20:17 -05001287 umount_tree(mnt, 0, &umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 spin_unlock(&vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001289 release_mounts(&umount_list);
Ram Pai5b83d2c2005-11-07 17:16:29 -05001290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Al Viroccd48bc2005-11-07 17:15:04 -05001292out:
Ram Pai390c6842005-11-07 17:17:51 -05001293 up_write(&namespace_sem);
Jan Blunck1d957f92008-02-14 19:34:35 -08001294 path_put(&old_nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 return err;
1296}
1297
1298/*
1299 * change filesystem flags. dir should be a physical root of filesystem.
1300 * If you've mounted a non-root directory somewhere and want to do remount
1301 * on it - tough luck.
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001302 * noinline this do_mount helper to save do_mount stack space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 */
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001304static noinline int do_remount(struct nameidata *nd, int flags, int mnt_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 void *data)
1306{
1307 int err;
Jan Blunck4ac91372008-02-14 19:34:32 -08001308 struct super_block *sb = nd->path.mnt->mnt_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310 if (!capable(CAP_SYS_ADMIN))
1311 return -EPERM;
1312
Jan Blunck4ac91372008-02-14 19:34:32 -08001313 if (!check_mnt(nd->path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 return -EINVAL;
1315
Jan Blunck4ac91372008-02-14 19:34:32 -08001316 if (nd->path.dentry != nd->path.mnt->mnt_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 return -EINVAL;
1318
1319 down_write(&sb->s_umount);
1320 err = do_remount_sb(sb, flags, data, 0);
1321 if (!err)
Jan Blunck4ac91372008-02-14 19:34:32 -08001322 nd->path.mnt->mnt_flags = mnt_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 up_write(&sb->s_umount);
1324 if (!err)
Jan Blunck4ac91372008-02-14 19:34:32 -08001325 security_sb_post_remount(nd->path.mnt, flags, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 return err;
1327}
1328
Ram Pai9676f0c2005-11-07 17:21:20 -05001329static inline int tree_contains_unbindable(struct vfsmount *mnt)
1330{
1331 struct vfsmount *p;
1332 for (p = mnt; p; p = next_mnt(p, mnt)) {
1333 if (IS_MNT_UNBINDABLE(p))
1334 return 1;
1335 }
1336 return 0;
1337}
1338
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001339/*
1340 * noinline this do_mount helper to save do_mount stack space.
1341 */
1342static noinline int do_move_mount(struct nameidata *nd, char *old_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
Al Viro1a390682008-03-21 20:48:19 -04001344 struct nameidata old_nd;
1345 struct path parent_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 struct vfsmount *p;
1347 int err = 0;
1348 if (!capable(CAP_SYS_ADMIN))
1349 return -EPERM;
1350 if (!old_name || !*old_name)
1351 return -EINVAL;
1352 err = path_lookup(old_name, LOOKUP_FOLLOW, &old_nd);
1353 if (err)
1354 return err;
1355
Ram Pai390c6842005-11-07 17:17:51 -05001356 down_write(&namespace_sem);
Jan Blunck4ac91372008-02-14 19:34:32 -08001357 while (d_mountpoint(nd->path.dentry) &&
1358 follow_down(&nd->path.mnt, &nd->path.dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 ;
1360 err = -EINVAL;
Jan Blunck4ac91372008-02-14 19:34:32 -08001361 if (!check_mnt(nd->path.mnt) || !check_mnt(old_nd.path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 goto out;
1363
1364 err = -ENOENT;
Jan Blunck4ac91372008-02-14 19:34:32 -08001365 mutex_lock(&nd->path.dentry->d_inode->i_mutex);
1366 if (IS_DEADDIR(nd->path.dentry->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 goto out1;
1368
Jan Blunck4ac91372008-02-14 19:34:32 -08001369 if (!IS_ROOT(nd->path.dentry) && d_unhashed(nd->path.dentry))
Ram Pai21444402005-11-07 17:20:03 -05001370 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
1372 err = -EINVAL;
Jan Blunck4ac91372008-02-14 19:34:32 -08001373 if (old_nd.path.dentry != old_nd.path.mnt->mnt_root)
Ram Pai21444402005-11-07 17:20:03 -05001374 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
Jan Blunck4ac91372008-02-14 19:34:32 -08001376 if (old_nd.path.mnt == old_nd.path.mnt->mnt_parent)
Ram Pai21444402005-11-07 17:20:03 -05001377 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Jan Blunck4ac91372008-02-14 19:34:32 -08001379 if (S_ISDIR(nd->path.dentry->d_inode->i_mode) !=
1380 S_ISDIR(old_nd.path.dentry->d_inode->i_mode))
Ram Pai21444402005-11-07 17:20:03 -05001381 goto out1;
1382 /*
1383 * Don't move a mount residing in a shared parent.
1384 */
Jan Blunck4ac91372008-02-14 19:34:32 -08001385 if (old_nd.path.mnt->mnt_parent &&
1386 IS_MNT_SHARED(old_nd.path.mnt->mnt_parent))
Ram Pai21444402005-11-07 17:20:03 -05001387 goto out1;
Ram Pai9676f0c2005-11-07 17:21:20 -05001388 /*
1389 * Don't move a mount tree containing unbindable mounts to a destination
1390 * mount which is shared.
1391 */
Jan Blunck4ac91372008-02-14 19:34:32 -08001392 if (IS_MNT_SHARED(nd->path.mnt) &&
1393 tree_contains_unbindable(old_nd.path.mnt))
Ram Pai9676f0c2005-11-07 17:21:20 -05001394 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 err = -ELOOP;
Jan Blunck4ac91372008-02-14 19:34:32 -08001396 for (p = nd->path.mnt; p->mnt_parent != p; p = p->mnt_parent)
1397 if (p == old_nd.path.mnt)
Ram Pai21444402005-11-07 17:20:03 -05001398 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Al Viro1a390682008-03-21 20:48:19 -04001400 err = attach_recursive_mnt(old_nd.path.mnt, &nd->path, &parent_path);
Jan Blunck4ac91372008-02-14 19:34:32 -08001401 if (err)
Ram Pai21444402005-11-07 17:20:03 -05001402 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
1404 /* if the mount is moved, it should no longer be expire
1405 * automatically */
Jan Blunck4ac91372008-02-14 19:34:32 -08001406 list_del_init(&old_nd.path.mnt->mnt_expire);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407out1:
Jan Blunck4ac91372008-02-14 19:34:32 -08001408 mutex_unlock(&nd->path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409out:
Ram Pai390c6842005-11-07 17:17:51 -05001410 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 if (!err)
Al Viro1a390682008-03-21 20:48:19 -04001412 path_put(&parent_path);
Jan Blunck1d957f92008-02-14 19:34:35 -08001413 path_put(&old_nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 return err;
1415}
1416
1417/*
1418 * create a new mount for userspace and request it to be added into the
1419 * namespace's tree
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001420 * noinline this do_mount helper to save do_mount stack space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 */
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001422static noinline int do_new_mount(struct nameidata *nd, char *type, int flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 int mnt_flags, char *name, void *data)
1424{
1425 struct vfsmount *mnt;
1426
1427 if (!type || !memchr(type, 0, PAGE_SIZE))
1428 return -EINVAL;
1429
1430 /* we need capabilities... */
1431 if (!capable(CAP_SYS_ADMIN))
1432 return -EPERM;
1433
1434 mnt = do_kern_mount(type, flags, name, data);
1435 if (IS_ERR(mnt))
1436 return PTR_ERR(mnt);
1437
1438 return do_add_mount(mnt, nd, mnt_flags, NULL);
1439}
1440
1441/*
1442 * add a mount into a namespace's mount tree
1443 * - provide the option of adding the new mount to an expiration list
1444 */
1445int do_add_mount(struct vfsmount *newmnt, struct nameidata *nd,
1446 int mnt_flags, struct list_head *fslist)
1447{
1448 int err;
1449
Ram Pai390c6842005-11-07 17:17:51 -05001450 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 /* Something was mounted here while we slept */
Jan Blunck4ac91372008-02-14 19:34:32 -08001452 while (d_mountpoint(nd->path.dentry) &&
1453 follow_down(&nd->path.mnt, &nd->path.dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 ;
1455 err = -EINVAL;
Jan Blunck4ac91372008-02-14 19:34:32 -08001456 if (!check_mnt(nd->path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 goto unlock;
1458
1459 /* Refuse the same filesystem on the same mount point */
1460 err = -EBUSY;
Jan Blunck4ac91372008-02-14 19:34:32 -08001461 if (nd->path.mnt->mnt_sb == newmnt->mnt_sb &&
1462 nd->path.mnt->mnt_root == nd->path.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 goto unlock;
1464
1465 err = -EINVAL;
1466 if (S_ISLNK(newmnt->mnt_root->d_inode->i_mode))
1467 goto unlock;
1468
1469 newmnt->mnt_flags = mnt_flags;
Ram Pai5b83d2c2005-11-07 17:16:29 -05001470 if ((err = graft_tree(newmnt, nd)))
1471 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Al Viro6758f952008-03-22 16:14:30 -04001473 if (fslist) /* add to the specified expiration list */
Miklos Szeredi55e700b2005-07-07 17:57:30 -07001474 list_add_tail(&newmnt->mnt_expire, fslist);
Al Viro6758f952008-03-22 16:14:30 -04001475
Ram Pai390c6842005-11-07 17:17:51 -05001476 up_write(&namespace_sem);
Ram Pai5b83d2c2005-11-07 17:16:29 -05001477 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
1479unlock:
Ram Pai390c6842005-11-07 17:17:51 -05001480 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 mntput(newmnt);
1482 return err;
1483}
1484
1485EXPORT_SYMBOL_GPL(do_add_mount);
1486
Trond Myklebust5528f9112006-06-09 09:34:17 -04001487/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 * process a list of expirable mountpoints with the intent of discarding any
1489 * mountpoints that aren't in use and haven't been touched since last we came
1490 * here
1491 */
1492void mark_mounts_for_expiry(struct list_head *mounts)
1493{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 struct vfsmount *mnt, *next;
1495 LIST_HEAD(graveyard);
Al Virobcc5c7d2008-03-22 00:21:53 -04001496 LIST_HEAD(umounts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
1498 if (list_empty(mounts))
1499 return;
1500
Al Virobcc5c7d2008-03-22 00:21:53 -04001501 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 spin_lock(&vfsmount_lock);
1503
1504 /* extract from the expiration list every vfsmount that matches the
1505 * following criteria:
1506 * - only referenced by its parent vfsmount
1507 * - still marked for expiry (marked on the last call here; marks are
1508 * cleared by mntput())
1509 */
Miklos Szeredi55e700b2005-07-07 17:57:30 -07001510 list_for_each_entry_safe(mnt, next, mounts, mnt_expire) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 if (!xchg(&mnt->mnt_expiry_mark, 1) ||
Al Virobcc5c7d2008-03-22 00:21:53 -04001512 propagate_mount_busy(mnt, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 continue;
Miklos Szeredi55e700b2005-07-07 17:57:30 -07001514 list_move(&mnt->mnt_expire, &graveyard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 }
Al Virobcc5c7d2008-03-22 00:21:53 -04001516 while (!list_empty(&graveyard)) {
1517 mnt = list_first_entry(&graveyard, struct vfsmount, mnt_expire);
1518 touch_mnt_namespace(mnt->mnt_ns);
1519 umount_tree(mnt, 1, &umounts);
1520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 spin_unlock(&vfsmount_lock);
Al Virobcc5c7d2008-03-22 00:21:53 -04001522 up_write(&namespace_sem);
1523
1524 release_mounts(&umounts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525}
1526
1527EXPORT_SYMBOL_GPL(mark_mounts_for_expiry);
1528
1529/*
Trond Myklebust5528f9112006-06-09 09:34:17 -04001530 * Ripoff of 'select_parent()'
1531 *
1532 * search the list of submounts for a given mountpoint, and move any
1533 * shrinkable submounts to the 'graveyard' list.
1534 */
1535static int select_submounts(struct vfsmount *parent, struct list_head *graveyard)
1536{
1537 struct vfsmount *this_parent = parent;
1538 struct list_head *next;
1539 int found = 0;
1540
1541repeat:
1542 next = this_parent->mnt_mounts.next;
1543resume:
1544 while (next != &this_parent->mnt_mounts) {
1545 struct list_head *tmp = next;
1546 struct vfsmount *mnt = list_entry(tmp, struct vfsmount, mnt_child);
1547
1548 next = tmp->next;
1549 if (!(mnt->mnt_flags & MNT_SHRINKABLE))
1550 continue;
1551 /*
1552 * Descend a level if the d_mounts list is non-empty.
1553 */
1554 if (!list_empty(&mnt->mnt_mounts)) {
1555 this_parent = mnt;
1556 goto repeat;
1557 }
1558
1559 if (!propagate_mount_busy(mnt, 1)) {
Trond Myklebust5528f9112006-06-09 09:34:17 -04001560 list_move_tail(&mnt->mnt_expire, graveyard);
1561 found++;
1562 }
1563 }
1564 /*
1565 * All done at this level ... ascend and resume the search
1566 */
1567 if (this_parent != parent) {
1568 next = this_parent->mnt_child.next;
1569 this_parent = this_parent->mnt_parent;
1570 goto resume;
1571 }
1572 return found;
1573}
1574
1575/*
1576 * process a list of expirable mountpoints with the intent of discarding any
1577 * submounts of a specific parent mountpoint
1578 */
Al Viroc35038b2008-03-22 00:46:23 -04001579static void shrink_submounts(struct vfsmount *mnt, struct list_head *umounts)
Trond Myklebust5528f9112006-06-09 09:34:17 -04001580{
1581 LIST_HEAD(graveyard);
Al Viroc35038b2008-03-22 00:46:23 -04001582 struct vfsmount *m;
Trond Myklebust5528f9112006-06-09 09:34:17 -04001583
Trond Myklebust5528f9112006-06-09 09:34:17 -04001584 /* extract submounts of 'mountpoint' from the expiration list */
Al Viroc35038b2008-03-22 00:46:23 -04001585 while (select_submounts(mnt, &graveyard)) {
Al Virobcc5c7d2008-03-22 00:21:53 -04001586 while (!list_empty(&graveyard)) {
Al Viroc35038b2008-03-22 00:46:23 -04001587 m = list_first_entry(&graveyard, struct vfsmount,
Al Virobcc5c7d2008-03-22 00:21:53 -04001588 mnt_expire);
1589 touch_mnt_namespace(mnt->mnt_ns);
Al Viroc35038b2008-03-22 00:46:23 -04001590 umount_tree(mnt, 1, umounts);
Al Virobcc5c7d2008-03-22 00:21:53 -04001591 }
1592 }
Trond Myklebust5528f9112006-06-09 09:34:17 -04001593}
1594
Trond Myklebust5528f9112006-06-09 09:34:17 -04001595/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 * Some copy_from_user() implementations do not return the exact number of
1597 * bytes remaining to copy on a fault. But copy_mount_options() requires that.
1598 * Note that this function differs from copy_from_user() in that it will oops
1599 * on bad values of `to', rather than returning a short copy.
1600 */
Ram Paib58fed82005-11-07 17:16:09 -05001601static long exact_copy_from_user(void *to, const void __user * from,
1602 unsigned long n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603{
1604 char *t = to;
1605 const char __user *f = from;
1606 char c;
1607
1608 if (!access_ok(VERIFY_READ, from, n))
1609 return n;
1610
1611 while (n) {
1612 if (__get_user(c, f)) {
1613 memset(t, 0, n);
1614 break;
1615 }
1616 *t++ = c;
1617 f++;
1618 n--;
1619 }
1620 return n;
1621}
1622
Ram Paib58fed82005-11-07 17:16:09 -05001623int copy_mount_options(const void __user * data, unsigned long *where)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624{
1625 int i;
1626 unsigned long page;
1627 unsigned long size;
Ram Paib58fed82005-11-07 17:16:09 -05001628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 *where = 0;
1630 if (!data)
1631 return 0;
1632
1633 if (!(page = __get_free_page(GFP_KERNEL)))
1634 return -ENOMEM;
1635
1636 /* We only care that *some* data at the address the user
1637 * gave us is valid. Just in case, we'll zero
1638 * the remainder of the page.
1639 */
1640 /* copy_from_user cannot cross TASK_SIZE ! */
1641 size = TASK_SIZE - (unsigned long)data;
1642 if (size > PAGE_SIZE)
1643 size = PAGE_SIZE;
1644
1645 i = size - exact_copy_from_user((void *)page, data, size);
1646 if (!i) {
Ram Paib58fed82005-11-07 17:16:09 -05001647 free_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 return -EFAULT;
1649 }
1650 if (i != PAGE_SIZE)
1651 memset((char *)page + i, 0, PAGE_SIZE - i);
1652 *where = page;
1653 return 0;
1654}
1655
1656/*
1657 * Flags is a 32-bit value that allows up to 31 non-fs dependent flags to
1658 * be given to the mount() call (ie: read-only, no-dev, no-suid etc).
1659 *
1660 * data is a (void *) that can point to any structure up to
1661 * PAGE_SIZE-1 bytes, which can contain arbitrary fs-dependent
1662 * information (or be NULL).
1663 *
1664 * Pre-0.97 versions of mount() didn't have a flags word.
1665 * When the flags word was introduced its top half was required
1666 * to have the magic value 0xC0ED, and this remained so until 2.4.0-test9.
1667 * Therefore, if this magic number is present, it carries no information
1668 * and must be discarded.
1669 */
Ram Paib58fed82005-11-07 17:16:09 -05001670long do_mount(char *dev_name, char *dir_name, char *type_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 unsigned long flags, void *data_page)
1672{
1673 struct nameidata nd;
1674 int retval = 0;
1675 int mnt_flags = 0;
1676
1677 /* Discard magic */
1678 if ((flags & MS_MGC_MSK) == MS_MGC_VAL)
1679 flags &= ~MS_MGC_MSK;
1680
1681 /* Basic sanity checks */
1682
1683 if (!dir_name || !*dir_name || !memchr(dir_name, 0, PAGE_SIZE))
1684 return -EINVAL;
1685 if (dev_name && !memchr(dev_name, 0, PAGE_SIZE))
1686 return -EINVAL;
1687
1688 if (data_page)
1689 ((char *)data_page)[PAGE_SIZE - 1] = 0;
1690
1691 /* Separate the per-mountpoint flags */
1692 if (flags & MS_NOSUID)
1693 mnt_flags |= MNT_NOSUID;
1694 if (flags & MS_NODEV)
1695 mnt_flags |= MNT_NODEV;
1696 if (flags & MS_NOEXEC)
1697 mnt_flags |= MNT_NOEXEC;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001698 if (flags & MS_NOATIME)
1699 mnt_flags |= MNT_NOATIME;
1700 if (flags & MS_NODIRATIME)
1701 mnt_flags |= MNT_NODIRATIME;
Valerie Henson47ae32d2006-12-13 00:34:34 -08001702 if (flags & MS_RELATIME)
1703 mnt_flags |= MNT_RELATIME;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001704
1705 flags &= ~(MS_NOSUID | MS_NOEXEC | MS_NODEV | MS_ACTIVE |
Pavel Emelyanov8bf97252007-10-18 23:40:02 -07001706 MS_NOATIME | MS_NODIRATIME | MS_RELATIME| MS_KERNMOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
1708 /* ... and get the mountpoint */
1709 retval = path_lookup(dir_name, LOOKUP_FOLLOW, &nd);
1710 if (retval)
1711 return retval;
1712
1713 retval = security_sb_mount(dev_name, &nd, type_page, flags, data_page);
1714 if (retval)
1715 goto dput_out;
1716
1717 if (flags & MS_REMOUNT)
1718 retval = do_remount(&nd, flags & ~MS_REMOUNT, mnt_flags,
1719 data_page);
1720 else if (flags & MS_BIND)
Andrew Mortoneee391a2006-05-15 09:44:30 -07001721 retval = do_loopback(&nd, dev_name, flags & MS_REC);
Ram Pai9676f0c2005-11-07 17:21:20 -05001722 else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
Ram Pai07b20882005-11-07 17:19:07 -05001723 retval = do_change_type(&nd, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 else if (flags & MS_MOVE)
1725 retval = do_move_mount(&nd, dev_name);
1726 else
1727 retval = do_new_mount(&nd, type_page, flags, mnt_flags,
1728 dev_name, data_page);
1729dput_out:
Jan Blunck1d957f92008-02-14 19:34:35 -08001730 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 return retval;
1732}
1733
JANAK DESAI741a2952006-02-07 12:59:00 -08001734/*
1735 * Allocate a new namespace structure and populate it with contents
1736 * copied from the namespace of the passed in task structure.
1737 */
Badari Pulavartye3222c42007-05-08 00:25:21 -07001738static struct mnt_namespace *dup_mnt_ns(struct mnt_namespace *mnt_ns,
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001739 struct fs_struct *fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001741 struct mnt_namespace *new_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 struct vfsmount *rootmnt = NULL, *pwdmnt = NULL, *altrootmnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 struct vfsmount *p, *q;
1744
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001745 new_ns = kmalloc(sizeof(struct mnt_namespace), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 if (!new_ns)
Cedric Le Goater467e9f42007-07-15 23:41:06 -07001747 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
1749 atomic_set(&new_ns->count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 INIT_LIST_HEAD(&new_ns->list);
Al Viro5addc5d2005-11-07 17:15:49 -05001751 init_waitqueue_head(&new_ns->poll);
1752 new_ns->event = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Ram Pai390c6842005-11-07 17:17:51 -05001754 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 /* First pass: copy the tree topology */
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001756 new_ns->root = copy_tree(mnt_ns->root, mnt_ns->root->mnt_root,
Ram Pai9676f0c2005-11-07 17:21:20 -05001757 CL_COPY_ALL | CL_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 if (!new_ns->root) {
Ram Pai390c6842005-11-07 17:17:51 -05001759 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 kfree(new_ns);
Cedric Le Goater467e9f42007-07-15 23:41:06 -07001761 return ERR_PTR(-ENOMEM);;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 }
1763 spin_lock(&vfsmount_lock);
1764 list_add_tail(&new_ns->list, &new_ns->root->mnt_list);
1765 spin_unlock(&vfsmount_lock);
1766
1767 /*
1768 * Second pass: switch the tsk->fs->* elements and mark new vfsmounts
1769 * as belonging to new namespace. We have already acquired a private
1770 * fs_struct, so tsk->fs->lock is not needed.
1771 */
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001772 p = mnt_ns->root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 q = new_ns->root;
1774 while (p) {
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001775 q->mnt_ns = new_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 if (fs) {
Jan Blunck6ac08c32008-02-14 19:34:38 -08001777 if (p == fs->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 rootmnt = p;
Jan Blunck6ac08c32008-02-14 19:34:38 -08001779 fs->root.mnt = mntget(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 }
Jan Blunck6ac08c32008-02-14 19:34:38 -08001781 if (p == fs->pwd.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 pwdmnt = p;
Jan Blunck6ac08c32008-02-14 19:34:38 -08001783 fs->pwd.mnt = mntget(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 }
Jan Blunck6ac08c32008-02-14 19:34:38 -08001785 if (p == fs->altroot.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 altrootmnt = p;
Jan Blunck6ac08c32008-02-14 19:34:38 -08001787 fs->altroot.mnt = mntget(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 }
1789 }
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001790 p = next_mnt(p, mnt_ns->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 q = next_mnt(q, new_ns->root);
1792 }
Ram Pai390c6842005-11-07 17:17:51 -05001793 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 if (rootmnt)
1796 mntput(rootmnt);
1797 if (pwdmnt)
1798 mntput(pwdmnt);
1799 if (altrootmnt)
1800 mntput(altrootmnt);
1801
JANAK DESAI741a2952006-02-07 12:59:00 -08001802 return new_ns;
1803}
1804
Eric W. Biederman213dd262007-07-15 23:41:15 -07001805struct mnt_namespace *copy_mnt_ns(unsigned long flags, struct mnt_namespace *ns,
Badari Pulavartye3222c42007-05-08 00:25:21 -07001806 struct fs_struct *new_fs)
JANAK DESAI741a2952006-02-07 12:59:00 -08001807{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001808 struct mnt_namespace *new_ns;
JANAK DESAI741a2952006-02-07 12:59:00 -08001809
Badari Pulavartye3222c42007-05-08 00:25:21 -07001810 BUG_ON(!ns);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001811 get_mnt_ns(ns);
JANAK DESAI741a2952006-02-07 12:59:00 -08001812
1813 if (!(flags & CLONE_NEWNS))
Badari Pulavartye3222c42007-05-08 00:25:21 -07001814 return ns;
JANAK DESAI741a2952006-02-07 12:59:00 -08001815
Badari Pulavartye3222c42007-05-08 00:25:21 -07001816 new_ns = dup_mnt_ns(ns, new_fs);
JANAK DESAI741a2952006-02-07 12:59:00 -08001817
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001818 put_mnt_ns(ns);
Badari Pulavartye3222c42007-05-08 00:25:21 -07001819 return new_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820}
1821
1822asmlinkage long sys_mount(char __user * dev_name, char __user * dir_name,
1823 char __user * type, unsigned long flags,
1824 void __user * data)
1825{
1826 int retval;
1827 unsigned long data_page;
1828 unsigned long type_page;
1829 unsigned long dev_page;
1830 char *dir_page;
1831
Ram Paib58fed82005-11-07 17:16:09 -05001832 retval = copy_mount_options(type, &type_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 if (retval < 0)
1834 return retval;
1835
1836 dir_page = getname(dir_name);
1837 retval = PTR_ERR(dir_page);
1838 if (IS_ERR(dir_page))
1839 goto out1;
1840
Ram Paib58fed82005-11-07 17:16:09 -05001841 retval = copy_mount_options(dev_name, &dev_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 if (retval < 0)
1843 goto out2;
1844
Ram Paib58fed82005-11-07 17:16:09 -05001845 retval = copy_mount_options(data, &data_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 if (retval < 0)
1847 goto out3;
1848
1849 lock_kernel();
Ram Paib58fed82005-11-07 17:16:09 -05001850 retval = do_mount((char *)dev_page, dir_page, (char *)type_page,
1851 flags, (void *)data_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 unlock_kernel();
1853 free_page(data_page);
1854
1855out3:
1856 free_page(dev_page);
1857out2:
1858 putname(dir_page);
1859out1:
1860 free_page(type_page);
1861 return retval;
1862}
1863
1864/*
1865 * Replace the fs->{rootmnt,root} with {mnt,dentry}. Put the old values.
1866 * It can block. Requires the big lock held.
1867 */
Jan Blunckac748a02008-02-14 19:34:39 -08001868void set_fs_root(struct fs_struct *fs, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869{
Jan Blunck6ac08c32008-02-14 19:34:38 -08001870 struct path old_root;
1871
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 write_lock(&fs->lock);
1873 old_root = fs->root;
Jan Blunckac748a02008-02-14 19:34:39 -08001874 fs->root = *path;
1875 path_get(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 write_unlock(&fs->lock);
Jan Blunck6ac08c32008-02-14 19:34:38 -08001877 if (old_root.dentry)
1878 path_put(&old_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879}
1880
1881/*
1882 * Replace the fs->{pwdmnt,pwd} with {mnt,dentry}. Put the old values.
1883 * It can block. Requires the big lock held.
1884 */
Jan Blunckac748a02008-02-14 19:34:39 -08001885void set_fs_pwd(struct fs_struct *fs, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886{
Jan Blunck6ac08c32008-02-14 19:34:38 -08001887 struct path old_pwd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
1889 write_lock(&fs->lock);
1890 old_pwd = fs->pwd;
Jan Blunckac748a02008-02-14 19:34:39 -08001891 fs->pwd = *path;
1892 path_get(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 write_unlock(&fs->lock);
1894
Jan Blunck6ac08c32008-02-14 19:34:38 -08001895 if (old_pwd.dentry)
1896 path_put(&old_pwd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897}
1898
Al Viro1a390682008-03-21 20:48:19 -04001899static void chroot_fs_refs(struct path *old_root, struct path *new_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900{
1901 struct task_struct *g, *p;
1902 struct fs_struct *fs;
1903
1904 read_lock(&tasklist_lock);
1905 do_each_thread(g, p) {
1906 task_lock(p);
1907 fs = p->fs;
1908 if (fs) {
1909 atomic_inc(&fs->count);
1910 task_unlock(p);
Al Viro1a390682008-03-21 20:48:19 -04001911 if (fs->root.dentry == old_root->dentry
1912 && fs->root.mnt == old_root->mnt)
1913 set_fs_root(fs, new_root);
1914 if (fs->pwd.dentry == old_root->dentry
1915 && fs->pwd.mnt == old_root->mnt)
1916 set_fs_pwd(fs, new_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 put_fs_struct(fs);
1918 } else
1919 task_unlock(p);
1920 } while_each_thread(g, p);
1921 read_unlock(&tasklist_lock);
1922}
1923
1924/*
1925 * pivot_root Semantics:
1926 * Moves the root file system of the current process to the directory put_old,
1927 * makes new_root as the new root file system of the current process, and sets
1928 * root/cwd of all processes which had them on the current root to new_root.
1929 *
1930 * Restrictions:
1931 * The new_root and put_old must be directories, and must not be on the
1932 * same file system as the current process root. The put_old must be
1933 * underneath new_root, i.e. adding a non-zero number of /.. to the string
1934 * pointed to by put_old must yield the same directory as new_root. No other
1935 * file system may be mounted on put_old. After all, new_root is a mountpoint.
1936 *
Neil Brown4a0d11f2006-01-08 01:03:18 -08001937 * Also, the current root cannot be on the 'rootfs' (initial ramfs) filesystem.
1938 * See Documentation/filesystems/ramfs-rootfs-initramfs.txt for alternatives
1939 * in this situation.
1940 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 * Notes:
1942 * - we don't move root/cwd if they are not at the root (reason: if something
1943 * cared enough to change them, it's probably wrong to force them elsewhere)
1944 * - it's okay to pick a root that isn't the root of a file system, e.g.
1945 * /nfs/my_root where /nfs is the mount point. It must be a mountpoint,
1946 * though, so you may need to say mount --bind /nfs/my_root /nfs/my_root
1947 * first.
1948 */
Ram Paib58fed82005-11-07 17:16:09 -05001949asmlinkage long sys_pivot_root(const char __user * new_root,
1950 const char __user * put_old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951{
1952 struct vfsmount *tmp;
Al Viro1a390682008-03-21 20:48:19 -04001953 struct nameidata new_nd, old_nd, user_nd;
1954 struct path parent_path, root_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 int error;
1956
1957 if (!capable(CAP_SYS_ADMIN))
1958 return -EPERM;
1959
1960 lock_kernel();
1961
Ram Paib58fed82005-11-07 17:16:09 -05001962 error = __user_walk(new_root, LOOKUP_FOLLOW | LOOKUP_DIRECTORY,
1963 &new_nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 if (error)
1965 goto out0;
1966 error = -EINVAL;
Jan Blunck4ac91372008-02-14 19:34:32 -08001967 if (!check_mnt(new_nd.path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 goto out1;
1969
Ram Paib58fed82005-11-07 17:16:09 -05001970 error = __user_walk(put_old, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, &old_nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 if (error)
1972 goto out1;
1973
1974 error = security_sb_pivotroot(&old_nd, &new_nd);
1975 if (error) {
Jan Blunck1d957f92008-02-14 19:34:35 -08001976 path_put(&old_nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 goto out1;
1978 }
1979
1980 read_lock(&current->fs->lock);
Jan Blunck6ac08c32008-02-14 19:34:38 -08001981 user_nd.path = current->fs->root;
1982 path_get(&current->fs->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 read_unlock(&current->fs->lock);
Ram Pai390c6842005-11-07 17:17:51 -05001984 down_write(&namespace_sem);
Jan Blunck4ac91372008-02-14 19:34:32 -08001985 mutex_lock(&old_nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 error = -EINVAL;
Jan Blunck4ac91372008-02-14 19:34:32 -08001987 if (IS_MNT_SHARED(old_nd.path.mnt) ||
1988 IS_MNT_SHARED(new_nd.path.mnt->mnt_parent) ||
1989 IS_MNT_SHARED(user_nd.path.mnt->mnt_parent))
Ram Pai21444402005-11-07 17:20:03 -05001990 goto out2;
Jan Blunck4ac91372008-02-14 19:34:32 -08001991 if (!check_mnt(user_nd.path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 goto out2;
1993 error = -ENOENT;
Jan Blunck4ac91372008-02-14 19:34:32 -08001994 if (IS_DEADDIR(new_nd.path.dentry->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 goto out2;
Jan Blunck4ac91372008-02-14 19:34:32 -08001996 if (d_unhashed(new_nd.path.dentry) && !IS_ROOT(new_nd.path.dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 goto out2;
Jan Blunck4ac91372008-02-14 19:34:32 -08001998 if (d_unhashed(old_nd.path.dentry) && !IS_ROOT(old_nd.path.dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 goto out2;
2000 error = -EBUSY;
Jan Blunck4ac91372008-02-14 19:34:32 -08002001 if (new_nd.path.mnt == user_nd.path.mnt ||
2002 old_nd.path.mnt == user_nd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 goto out2; /* loop, on the same file system */
2004 error = -EINVAL;
Jan Blunck4ac91372008-02-14 19:34:32 -08002005 if (user_nd.path.mnt->mnt_root != user_nd.path.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 goto out2; /* not a mountpoint */
Jan Blunck4ac91372008-02-14 19:34:32 -08002007 if (user_nd.path.mnt->mnt_parent == user_nd.path.mnt)
Miklos Szeredi0bb6fcc2005-09-06 15:19:36 -07002008 goto out2; /* not attached */
Jan Blunck4ac91372008-02-14 19:34:32 -08002009 if (new_nd.path.mnt->mnt_root != new_nd.path.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 goto out2; /* not a mountpoint */
Jan Blunck4ac91372008-02-14 19:34:32 -08002011 if (new_nd.path.mnt->mnt_parent == new_nd.path.mnt)
Miklos Szeredi0bb6fcc2005-09-06 15:19:36 -07002012 goto out2; /* not attached */
Jan Blunck4ac91372008-02-14 19:34:32 -08002013 /* make sure we can reach put_old from new_root */
2014 tmp = old_nd.path.mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 spin_lock(&vfsmount_lock);
Jan Blunck4ac91372008-02-14 19:34:32 -08002016 if (tmp != new_nd.path.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 for (;;) {
2018 if (tmp->mnt_parent == tmp)
2019 goto out3; /* already mounted on put_old */
Jan Blunck4ac91372008-02-14 19:34:32 -08002020 if (tmp->mnt_parent == new_nd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 break;
2022 tmp = tmp->mnt_parent;
2023 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002024 if (!is_subdir(tmp->mnt_mountpoint, new_nd.path.dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 goto out3;
Jan Blunck4ac91372008-02-14 19:34:32 -08002026 } else if (!is_subdir(old_nd.path.dentry, new_nd.path.dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 goto out3;
Al Viro1a390682008-03-21 20:48:19 -04002028 detach_mnt(new_nd.path.mnt, &parent_path);
Jan Blunck4ac91372008-02-14 19:34:32 -08002029 detach_mnt(user_nd.path.mnt, &root_parent);
2030 /* mount old root on put_old */
Al Viro1a390682008-03-21 20:48:19 -04002031 attach_mnt(user_nd.path.mnt, &old_nd.path);
Jan Blunck4ac91372008-02-14 19:34:32 -08002032 /* mount new_root on / */
2033 attach_mnt(new_nd.path.mnt, &root_parent);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002034 touch_mnt_namespace(current->nsproxy->mnt_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 spin_unlock(&vfsmount_lock);
Al Viro1a390682008-03-21 20:48:19 -04002036 chroot_fs_refs(&user_nd.path, &new_nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 security_sb_post_pivotroot(&user_nd, &new_nd);
2038 error = 0;
Al Viro1a390682008-03-21 20:48:19 -04002039 path_put(&root_parent);
2040 path_put(&parent_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041out2:
Jan Blunck4ac91372008-02-14 19:34:32 -08002042 mutex_unlock(&old_nd.path.dentry->d_inode->i_mutex);
Ram Pai390c6842005-11-07 17:17:51 -05002043 up_write(&namespace_sem);
Jan Blunck1d957f92008-02-14 19:34:35 -08002044 path_put(&user_nd.path);
2045 path_put(&old_nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046out1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002047 path_put(&new_nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048out0:
2049 unlock_kernel();
2050 return error;
2051out3:
2052 spin_unlock(&vfsmount_lock);
2053 goto out2;
2054}
2055
2056static void __init init_mount_tree(void)
2057{
2058 struct vfsmount *mnt;
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002059 struct mnt_namespace *ns;
Jan Blunckac748a02008-02-14 19:34:39 -08002060 struct path root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
2062 mnt = do_kern_mount("rootfs", 0, "rootfs", NULL);
2063 if (IS_ERR(mnt))
2064 panic("Can't create rootfs");
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002065 ns = kmalloc(sizeof(*ns), GFP_KERNEL);
2066 if (!ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 panic("Can't allocate initial namespace");
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002068 atomic_set(&ns->count, 1);
2069 INIT_LIST_HEAD(&ns->list);
2070 init_waitqueue_head(&ns->poll);
2071 ns->event = 0;
2072 list_add(&mnt->mnt_list, &ns->list);
2073 ns->root = mnt;
2074 mnt->mnt_ns = ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002076 init_task.nsproxy->mnt_ns = ns;
2077 get_mnt_ns(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
Jan Blunckac748a02008-02-14 19:34:39 -08002079 root.mnt = ns->root;
2080 root.dentry = ns->root->mnt_root;
2081
2082 set_fs_pwd(current->fs, &root);
2083 set_fs_root(current->fs, &root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084}
2085
Denis Cheng74bf17c2007-10-16 23:26:30 -07002086void __init mnt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087{
Eric Dumazet13f14b42008-02-06 01:37:57 -08002088 unsigned u;
Randy Dunlap15a67dd2006-09-29 01:58:57 -07002089 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
Ram Pai390c6842005-11-07 17:17:51 -05002091 init_rwsem(&namespace_sem);
2092
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 mnt_cache = kmem_cache_create("mnt_cache", sizeof(struct vfsmount),
Paul Mundt20c2df82007-07-20 10:11:58 +09002094 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Ram Paib58fed82005-11-07 17:16:09 -05002096 mount_hashtable = (struct list_head *)__get_free_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
2098 if (!mount_hashtable)
2099 panic("Failed to allocate mount hash table\n");
2100
Eric Dumazet13f14b42008-02-06 01:37:57 -08002101 printk("Mount-cache hash table entries: %lu\n", HASH_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
Eric Dumazet13f14b42008-02-06 01:37:57 -08002103 for (u = 0; u < HASH_SIZE; u++)
2104 INIT_LIST_HEAD(&mount_hashtable[u]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
Randy Dunlap15a67dd2006-09-29 01:58:57 -07002106 err = sysfs_init();
2107 if (err)
2108 printk(KERN_WARNING "%s: sysfs_init error: %d\n",
2109 __FUNCTION__, err);
Greg Kroah-Hartman00d26662007-10-29 14:17:23 -06002110 fs_kobj = kobject_create_and_add("fs", NULL);
2111 if (!fs_kobj)
2112 printk(KERN_WARNING "%s: kobj create error\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 init_rootfs();
2114 init_mount_tree();
2115}
2116
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002117void __put_mnt_ns(struct mnt_namespace *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002119 struct vfsmount *root = ns->root;
Ram Pai70fbcdf2005-11-07 17:17:04 -05002120 LIST_HEAD(umount_list);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002121 ns->root = NULL;
Miklos Szeredi1ce88cf2005-07-07 17:57:24 -07002122 spin_unlock(&vfsmount_lock);
Ram Pai390c6842005-11-07 17:17:51 -05002123 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 spin_lock(&vfsmount_lock);
Ram Paia05964f2005-11-07 17:20:17 -05002125 umount_tree(root, 0, &umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 spin_unlock(&vfsmount_lock);
Ram Pai390c6842005-11-07 17:17:51 -05002127 up_write(&namespace_sem);
Ram Pai70fbcdf2005-11-07 17:17:04 -05002128 release_mounts(&umount_list);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002129 kfree(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130}