blob: 86b4f6406470f9b6eb6e09c9bfe077179edda24e [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>
Nick Piggin99b7db72010-08-18 04:37:39 +100014#include <linux/spinlock.h>
15#include <linux/percpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/init.h>
Randy Dunlap15a67dd2006-09-29 01:58:57 -070017#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#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>
Alexey Dobriyanb43f3cb2009-07-08 01:54:37 +040026#include <linux/nsproxy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/security.h>
28#include <linux/mount.h>
David Howells07f3f052006-09-30 20:52:18 +020029#include <linux/ramfs.h>
Eric Dumazet13f14b42008-02-06 01:37:57 -080030#include <linux/log2.h>
Miklos Szeredi73cd49e2008-03-26 22:11:34 +010031#include <linux/idr.h>
Al Viro5ad4e532009-03-29 19:50:06 -040032#include <linux/fs_struct.h>
Andreas Gruenbacher2504c5d2009-12-17 21:24:27 -050033#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/uaccess.h>
35#include <asm/unistd.h>
Ram Pai07b20882005-11-07 17:19:07 -050036#include "pnode.h"
Adrian Bunk948730b2007-07-15 23:41:25 -070037#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Eric Dumazet13f14b42008-02-06 01:37:57 -080039#define HASH_SHIFT ilog2(PAGE_SIZE / sizeof(struct list_head))
40#define HASH_SIZE (1UL << HASH_SHIFT)
41
Al Viro5addc5d2005-11-07 17:15:49 -050042static int event;
Miklos Szeredi73cd49e2008-03-26 22:11:34 +010043static DEFINE_IDA(mnt_id_ida);
Miklos Szeredi719f5d72008-03-27 13:06:23 +010044static DEFINE_IDA(mnt_group_ida);
Nick Piggin99b7db72010-08-18 04:37:39 +100045static DEFINE_SPINLOCK(mnt_id_lock);
Al Virof21f6222009-06-24 03:12:00 -040046static int mnt_id_start = 0;
47static int mnt_group_start = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Eric Dumazetfa3536c2006-03-26 01:37:24 -080049static struct list_head *mount_hashtable __read_mostly;
Christoph Lametere18b8902006-12-06 20:33:20 -080050static struct kmem_cache *mnt_cache __read_mostly;
Ram Pai390c6842005-11-07 17:17:51 -050051static struct rw_semaphore namespace_sem;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Miklos Szeredif87fd4c2006-01-16 22:14:23 -080053/* /sys/fs */
Greg Kroah-Hartman00d26662007-10-29 14:17:23 -060054struct kobject *fs_kobj;
55EXPORT_SYMBOL_GPL(fs_kobj);
Miklos Szeredif87fd4c2006-01-16 22:14:23 -080056
Nick Piggin99b7db72010-08-18 04:37:39 +100057/*
58 * vfsmount lock may be taken for read to prevent changes to the
59 * vfsmount hash, ie. during mountpoint lookups or walking back
60 * up the tree.
61 *
62 * It should be taken for write in all cases where the vfsmount
63 * tree or hash is modified or when a vfsmount structure is modified.
64 */
65DEFINE_BRLOCK(vfsmount_lock);
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static inline unsigned long hash(struct vfsmount *mnt, struct dentry *dentry)
68{
Ram Paib58fed82005-11-07 17:16:09 -050069 unsigned long tmp = ((unsigned long)mnt / L1_CACHE_BYTES);
70 tmp += ((unsigned long)dentry / L1_CACHE_BYTES);
Eric Dumazet13f14b42008-02-06 01:37:57 -080071 tmp = tmp + (tmp >> HASH_SHIFT);
72 return tmp & (HASH_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
Dave Hansen3d733632008-02-15 14:37:59 -080075#define MNT_WRITER_UNDERFLOW_LIMIT -(1<<16)
76
Nick Piggin99b7db72010-08-18 04:37:39 +100077/*
78 * allocation is serialized by namespace_sem, but we need the spinlock to
79 * serialize with freeing.
80 */
Miklos Szeredi73cd49e2008-03-26 22:11:34 +010081static int mnt_alloc_id(struct vfsmount *mnt)
82{
83 int res;
84
85retry:
86 ida_pre_get(&mnt_id_ida, GFP_KERNEL);
Nick Piggin99b7db72010-08-18 04:37:39 +100087 spin_lock(&mnt_id_lock);
Al Virof21f6222009-06-24 03:12:00 -040088 res = ida_get_new_above(&mnt_id_ida, mnt_id_start, &mnt->mnt_id);
89 if (!res)
90 mnt_id_start = mnt->mnt_id + 1;
Nick Piggin99b7db72010-08-18 04:37:39 +100091 spin_unlock(&mnt_id_lock);
Miklos Szeredi73cd49e2008-03-26 22:11:34 +010092 if (res == -EAGAIN)
93 goto retry;
94
95 return res;
96}
97
98static void mnt_free_id(struct vfsmount *mnt)
99{
Al Virof21f6222009-06-24 03:12:00 -0400100 int id = mnt->mnt_id;
Nick Piggin99b7db72010-08-18 04:37:39 +1000101 spin_lock(&mnt_id_lock);
Al Virof21f6222009-06-24 03:12:00 -0400102 ida_remove(&mnt_id_ida, id);
103 if (mnt_id_start > id)
104 mnt_id_start = id;
Nick Piggin99b7db72010-08-18 04:37:39 +1000105 spin_unlock(&mnt_id_lock);
Miklos Szeredi73cd49e2008-03-26 22:11:34 +0100106}
107
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100108/*
109 * Allocate a new peer group ID
110 *
111 * mnt_group_ida is protected by namespace_sem
112 */
113static int mnt_alloc_group_id(struct vfsmount *mnt)
114{
Al Virof21f6222009-06-24 03:12:00 -0400115 int res;
116
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100117 if (!ida_pre_get(&mnt_group_ida, GFP_KERNEL))
118 return -ENOMEM;
119
Al Virof21f6222009-06-24 03:12:00 -0400120 res = ida_get_new_above(&mnt_group_ida,
121 mnt_group_start,
122 &mnt->mnt_group_id);
123 if (!res)
124 mnt_group_start = mnt->mnt_group_id + 1;
125
126 return res;
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100127}
128
129/*
130 * Release a peer group ID
131 */
132void mnt_release_group_id(struct vfsmount *mnt)
133{
Al Virof21f6222009-06-24 03:12:00 -0400134 int id = mnt->mnt_group_id;
135 ida_remove(&mnt_group_ida, id);
136 if (mnt_group_start > id)
137 mnt_group_start = id;
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100138 mnt->mnt_group_id = 0;
139}
140
Nick Pigginb3e19d92011-01-07 17:50:11 +1100141/*
142 * vfsmount lock must be held for read
143 */
144static inline void mnt_add_count(struct vfsmount *mnt, int n)
145{
146#ifdef CONFIG_SMP
147 this_cpu_add(mnt->mnt_pcp->mnt_count, n);
148#else
149 preempt_disable();
150 mnt->mnt_count += n;
151 preempt_enable();
152#endif
153}
154
Nick Pigginb3e19d92011-01-07 17:50:11 +1100155/*
156 * vfsmount lock must be held for write
157 */
158unsigned int mnt_get_count(struct vfsmount *mnt)
159{
160#ifdef CONFIG_SMP
Al Virof03c6592011-01-14 22:30:21 -0500161 unsigned int count = 0;
Nick Pigginb3e19d92011-01-07 17:50:11 +1100162 int cpu;
163
164 for_each_possible_cpu(cpu) {
165 count += per_cpu_ptr(mnt->mnt_pcp, cpu)->mnt_count;
166 }
167
168 return count;
169#else
170 return mnt->mnt_count;
171#endif
172}
173
Al Viro9d412a42011-03-17 22:08:28 -0400174static struct vfsmount *alloc_vfsmnt(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800176 struct vfsmount *mnt = kmem_cache_zalloc(mnt_cache, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 if (mnt) {
Miklos Szeredi73cd49e2008-03-26 22:11:34 +0100178 int err;
179
180 err = mnt_alloc_id(mnt);
Li Zefan88b38782008-07-21 18:06:36 +0800181 if (err)
182 goto out_free_cache;
183
184 if (name) {
185 mnt->mnt_devname = kstrdup(name, GFP_KERNEL);
186 if (!mnt->mnt_devname)
187 goto out_free_id;
Miklos Szeredi73cd49e2008-03-26 22:11:34 +0100188 }
189
Nick Pigginb3e19d92011-01-07 17:50:11 +1100190#ifdef CONFIG_SMP
191 mnt->mnt_pcp = alloc_percpu(struct mnt_pcp);
192 if (!mnt->mnt_pcp)
193 goto out_free_devname;
194
Al Virof03c6592011-01-14 22:30:21 -0500195 this_cpu_add(mnt->mnt_pcp->mnt_count, 1);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100196#else
197 mnt->mnt_count = 1;
198 mnt->mnt_writers = 0;
199#endif
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 INIT_LIST_HEAD(&mnt->mnt_hash);
202 INIT_LIST_HEAD(&mnt->mnt_child);
203 INIT_LIST_HEAD(&mnt->mnt_mounts);
204 INIT_LIST_HEAD(&mnt->mnt_list);
Miklos Szeredi55e700b2005-07-07 17:57:30 -0700205 INIT_LIST_HEAD(&mnt->mnt_expire);
Ram Pai03e06e62005-11-07 17:19:33 -0500206 INIT_LIST_HEAD(&mnt->mnt_share);
Ram Paia58b0eb2005-11-07 17:20:48 -0500207 INIT_LIST_HEAD(&mnt->mnt_slave_list);
208 INIT_LIST_HEAD(&mnt->mnt_slave);
Andreas Gruenbacher2504c5d2009-12-17 21:24:27 -0500209#ifdef CONFIG_FSNOTIFY
210 INIT_HLIST_HEAD(&mnt->mnt_fsnotify_marks);
211#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
213 return mnt;
Li Zefan88b38782008-07-21 18:06:36 +0800214
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000215#ifdef CONFIG_SMP
216out_free_devname:
217 kfree(mnt->mnt_devname);
218#endif
Li Zefan88b38782008-07-21 18:06:36 +0800219out_free_id:
220 mnt_free_id(mnt);
221out_free_cache:
222 kmem_cache_free(mnt_cache, mnt);
223 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
Dave Hansen83660252008-02-15 14:37:30 -0800226/*
227 * Most r/o checks on a fs are for operations that take
228 * discrete amounts of time, like a write() or unlink().
229 * We must keep track of when those operations start
230 * (for permission checks) and when they end, so that
231 * we can determine when writes are able to occur to
232 * a filesystem.
233 */
Dave Hansen3d733632008-02-15 14:37:59 -0800234/*
235 * __mnt_is_readonly: check whether a mount is read-only
236 * @mnt: the mount to check for its write status
237 *
238 * This shouldn't be used directly ouside of the VFS.
239 * It does not guarantee that the filesystem will stay
240 * r/w, just that it is right *now*. This can not and
241 * should not be used in place of IS_RDONLY(inode).
242 * mnt_want/drop_write() will _keep_ the filesystem
243 * r/w.
244 */
245int __mnt_is_readonly(struct vfsmount *mnt)
246{
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800247 if (mnt->mnt_flags & MNT_READONLY)
248 return 1;
249 if (mnt->mnt_sb->s_flags & MS_RDONLY)
250 return 1;
251 return 0;
Dave Hansen3d733632008-02-15 14:37:59 -0800252}
253EXPORT_SYMBOL_GPL(__mnt_is_readonly);
254
Nick Pigginc6653a82011-01-07 17:50:10 +1100255static inline void mnt_inc_writers(struct vfsmount *mnt)
Dave Hansen3d733632008-02-15 14:37:59 -0800256{
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000257#ifdef CONFIG_SMP
Nick Pigginb3e19d92011-01-07 17:50:11 +1100258 this_cpu_inc(mnt->mnt_pcp->mnt_writers);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000259#else
260 mnt->mnt_writers++;
261#endif
Dave Hansen3d733632008-02-15 14:37:59 -0800262}
Dave Hansen3d733632008-02-15 14:37:59 -0800263
Nick Pigginc6653a82011-01-07 17:50:10 +1100264static inline void mnt_dec_writers(struct vfsmount *mnt)
Dave Hansen3d733632008-02-15 14:37:59 -0800265{
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000266#ifdef CONFIG_SMP
Nick Pigginb3e19d92011-01-07 17:50:11 +1100267 this_cpu_dec(mnt->mnt_pcp->mnt_writers);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000268#else
269 mnt->mnt_writers--;
270#endif
271}
272
Nick Pigginc6653a82011-01-07 17:50:10 +1100273static unsigned int mnt_get_writers(struct vfsmount *mnt)
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000274{
275#ifdef CONFIG_SMP
276 unsigned int count = 0;
Dave Hansen3d733632008-02-15 14:37:59 -0800277 int cpu;
Dave Hansen3d733632008-02-15 14:37:59 -0800278
279 for_each_possible_cpu(cpu) {
Nick Pigginb3e19d92011-01-07 17:50:11 +1100280 count += per_cpu_ptr(mnt->mnt_pcp, cpu)->mnt_writers;
Dave Hansen3d733632008-02-15 14:37:59 -0800281 }
Dave Hansen3d733632008-02-15 14:37:59 -0800282
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000283 return count;
284#else
285 return mnt->mnt_writers;
286#endif
Dave Hansen3d733632008-02-15 14:37:59 -0800287}
288
289/*
290 * Most r/o checks on a fs are for operations that take
291 * discrete amounts of time, like a write() or unlink().
292 * We must keep track of when those operations start
293 * (for permission checks) and when they end, so that
294 * we can determine when writes are able to occur to
295 * a filesystem.
296 */
Dave Hansen83660252008-02-15 14:37:30 -0800297/**
298 * mnt_want_write - get write access to a mount
299 * @mnt: the mount on which to take a write
300 *
301 * This tells the low-level filesystem that a write is
302 * about to be performed to it, and makes sure that
303 * writes are allowed before returning success. When
304 * the write operation is finished, mnt_drop_write()
305 * must be called. This is effectively a refcount.
306 */
307int mnt_want_write(struct vfsmount *mnt)
308{
Dave Hansen3d733632008-02-15 14:37:59 -0800309 int ret = 0;
Dave Hansen3d733632008-02-15 14:37:59 -0800310
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000311 preempt_disable();
Nick Pigginc6653a82011-01-07 17:50:10 +1100312 mnt_inc_writers(mnt);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000313 /*
Nick Pigginc6653a82011-01-07 17:50:10 +1100314 * The store to mnt_inc_writers must be visible before we pass
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000315 * MNT_WRITE_HOLD loop below, so that the slowpath can see our
316 * incremented count after it has set MNT_WRITE_HOLD.
317 */
318 smp_mb();
319 while (mnt->mnt_flags & MNT_WRITE_HOLD)
320 cpu_relax();
321 /*
322 * After the slowpath clears MNT_WRITE_HOLD, mnt_is_readonly will
323 * be set to match its requirements. So we must not load that until
324 * MNT_WRITE_HOLD is cleared.
325 */
326 smp_rmb();
Dave Hansen3d733632008-02-15 14:37:59 -0800327 if (__mnt_is_readonly(mnt)) {
Nick Pigginc6653a82011-01-07 17:50:10 +1100328 mnt_dec_writers(mnt);
Dave Hansen3d733632008-02-15 14:37:59 -0800329 ret = -EROFS;
330 goto out;
331 }
Dave Hansen3d733632008-02-15 14:37:59 -0800332out:
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000333 preempt_enable();
Dave Hansen3d733632008-02-15 14:37:59 -0800334 return ret;
Dave Hansen83660252008-02-15 14:37:30 -0800335}
336EXPORT_SYMBOL_GPL(mnt_want_write);
337
338/**
npiggin@suse.de96029c42009-04-26 20:25:55 +1000339 * mnt_clone_write - get write access to a mount
340 * @mnt: the mount on which to take a write
341 *
342 * This is effectively like mnt_want_write, except
343 * it must only be used to take an extra write reference
344 * on a mountpoint that we already know has a write reference
345 * on it. This allows some optimisation.
346 *
347 * After finished, mnt_drop_write must be called as usual to
348 * drop the reference.
349 */
350int mnt_clone_write(struct vfsmount *mnt)
351{
352 /* superblock may be r/o */
353 if (__mnt_is_readonly(mnt))
354 return -EROFS;
355 preempt_disable();
Nick Pigginc6653a82011-01-07 17:50:10 +1100356 mnt_inc_writers(mnt);
npiggin@suse.de96029c42009-04-26 20:25:55 +1000357 preempt_enable();
358 return 0;
359}
360EXPORT_SYMBOL_GPL(mnt_clone_write);
361
362/**
363 * mnt_want_write_file - get write access to a file's mount
364 * @file: the file who's mount on which to take a write
365 *
366 * This is like mnt_want_write, but it takes a file and can
367 * do some optimisations if the file is open for write already
368 */
369int mnt_want_write_file(struct file *file)
370{
OGAWA Hirofumi2d8dd382009-08-06 15:07:39 -0700371 struct inode *inode = file->f_dentry->d_inode;
372 if (!(file->f_mode & FMODE_WRITE) || special_file(inode->i_mode))
npiggin@suse.de96029c42009-04-26 20:25:55 +1000373 return mnt_want_write(file->f_path.mnt);
374 else
375 return mnt_clone_write(file->f_path.mnt);
376}
377EXPORT_SYMBOL_GPL(mnt_want_write_file);
378
379/**
Dave Hansen83660252008-02-15 14:37:30 -0800380 * mnt_drop_write - give up write access to a mount
381 * @mnt: the mount on which to give up write access
382 *
383 * Tells the low-level filesystem that we are done
384 * performing writes to it. Must be matched with
385 * mnt_want_write() call above.
386 */
387void mnt_drop_write(struct vfsmount *mnt)
388{
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000389 preempt_disable();
Nick Pigginc6653a82011-01-07 17:50:10 +1100390 mnt_dec_writers(mnt);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000391 preempt_enable();
Dave Hansen83660252008-02-15 14:37:30 -0800392}
393EXPORT_SYMBOL_GPL(mnt_drop_write);
394
Al Viro2a79f172011-12-09 08:06:57 -0500395void mnt_drop_write_file(struct file *file)
396{
397 mnt_drop_write(file->f_path.mnt);
398}
399EXPORT_SYMBOL(mnt_drop_write_file);
400
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800401static int mnt_make_readonly(struct vfsmount *mnt)
Dave Hansen83660252008-02-15 14:37:30 -0800402{
Dave Hansen3d733632008-02-15 14:37:59 -0800403 int ret = 0;
404
Nick Piggin99b7db72010-08-18 04:37:39 +1000405 br_write_lock(vfsmount_lock);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000406 mnt->mnt_flags |= MNT_WRITE_HOLD;
407 /*
408 * After storing MNT_WRITE_HOLD, we'll read the counters. This store
409 * should be visible before we do.
410 */
411 smp_mb();
412
413 /*
414 * With writers on hold, if this value is zero, then there are
415 * definitely no active writers (although held writers may subsequently
416 * increment the count, they'll have to wait, and decrement it after
417 * seeing MNT_READONLY).
418 *
419 * It is OK to have counter incremented on one CPU and decremented on
420 * another: the sum will add up correctly. The danger would be when we
421 * sum up each counter, if we read a counter before it is incremented,
422 * but then read another CPU's count which it has been subsequently
423 * decremented from -- we would see more decrements than we should.
424 * MNT_WRITE_HOLD protects against this scenario, because
425 * mnt_want_write first increments count, then smp_mb, then spins on
426 * MNT_WRITE_HOLD, so it can't be decremented by another CPU while
427 * we're counting up here.
428 */
Nick Pigginc6653a82011-01-07 17:50:10 +1100429 if (mnt_get_writers(mnt) > 0)
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000430 ret = -EBUSY;
431 else
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800432 mnt->mnt_flags |= MNT_READONLY;
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000433 /*
434 * MNT_READONLY must become visible before ~MNT_WRITE_HOLD, so writers
435 * that become unheld will see MNT_READONLY.
436 */
437 smp_wmb();
438 mnt->mnt_flags &= ~MNT_WRITE_HOLD;
Nick Piggin99b7db72010-08-18 04:37:39 +1000439 br_write_unlock(vfsmount_lock);
Dave Hansen3d733632008-02-15 14:37:59 -0800440 return ret;
Dave Hansen83660252008-02-15 14:37:30 -0800441}
Dave Hansen83660252008-02-15 14:37:30 -0800442
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800443static void __mnt_unmake_readonly(struct vfsmount *mnt)
444{
Nick Piggin99b7db72010-08-18 04:37:39 +1000445 br_write_lock(vfsmount_lock);
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800446 mnt->mnt_flags &= ~MNT_READONLY;
Nick Piggin99b7db72010-08-18 04:37:39 +1000447 br_write_unlock(vfsmount_lock);
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800448}
449
Al Viro9d412a42011-03-17 22:08:28 -0400450static void free_vfsmnt(struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
452 kfree(mnt->mnt_devname);
Miklos Szeredi73cd49e2008-03-26 22:11:34 +0100453 mnt_free_id(mnt);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000454#ifdef CONFIG_SMP
Nick Pigginb3e19d92011-01-07 17:50:11 +1100455 free_percpu(mnt->mnt_pcp);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000456#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 kmem_cache_free(mnt_cache, mnt);
458}
459
460/*
Ram Paia05964f2005-11-07 17:20:17 -0500461 * find the first or last mount at @dentry on vfsmount @mnt depending on
462 * @dir. If @dir is set return the first mount else return the last mount.
Nick Piggin99b7db72010-08-18 04:37:39 +1000463 * vfsmount_lock must be held for read or write.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 */
Ram Paia05964f2005-11-07 17:20:17 -0500465struct vfsmount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry,
466 int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
Ram Paib58fed82005-11-07 17:16:09 -0500468 struct list_head *head = mount_hashtable + hash(mnt, dentry);
469 struct list_head *tmp = head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 struct vfsmount *p, *found = NULL;
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 for (;;) {
Ram Paia05964f2005-11-07 17:20:17 -0500473 tmp = dir ? tmp->next : tmp->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 p = NULL;
475 if (tmp == head)
476 break;
477 p = list_entry(tmp, struct vfsmount, mnt_hash);
478 if (p->mnt_parent == mnt && p->mnt_mountpoint == dentry) {
Ram Paia05964f2005-11-07 17:20:17 -0500479 found = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 break;
481 }
482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return found;
484}
485
Ram Paia05964f2005-11-07 17:20:17 -0500486/*
487 * lookup_mnt increments the ref count before returning
488 * the vfsmount struct.
489 */
Al Viro1c755af2009-04-18 14:06:57 -0400490struct vfsmount *lookup_mnt(struct path *path)
Ram Paia05964f2005-11-07 17:20:17 -0500491{
492 struct vfsmount *child_mnt;
Nick Piggin99b7db72010-08-18 04:37:39 +1000493
494 br_read_lock(vfsmount_lock);
Al Viro1c755af2009-04-18 14:06:57 -0400495 if ((child_mnt = __lookup_mnt(path->mnt, path->dentry, 1)))
Ram Paia05964f2005-11-07 17:20:17 -0500496 mntget(child_mnt);
Nick Piggin99b7db72010-08-18 04:37:39 +1000497 br_read_unlock(vfsmount_lock);
Ram Paia05964f2005-11-07 17:20:17 -0500498 return child_mnt;
499}
500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501static inline int check_mnt(struct vfsmount *mnt)
502{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800503 return mnt->mnt_ns == current->nsproxy->mnt_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504}
505
Nick Piggin99b7db72010-08-18 04:37:39 +1000506/*
507 * vfsmount lock must be held for write
508 */
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800509static void touch_mnt_namespace(struct mnt_namespace *ns)
Al Viro5addc5d2005-11-07 17:15:49 -0500510{
511 if (ns) {
512 ns->event = ++event;
513 wake_up_interruptible(&ns->poll);
514 }
515}
516
Nick Piggin99b7db72010-08-18 04:37:39 +1000517/*
518 * vfsmount lock must be held for write
519 */
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800520static void __touch_mnt_namespace(struct mnt_namespace *ns)
Al Viro5addc5d2005-11-07 17:15:49 -0500521{
522 if (ns && ns->event != event) {
523 ns->event = event;
524 wake_up_interruptible(&ns->poll);
525 }
526}
527
Nick Piggin99b7db72010-08-18 04:37:39 +1000528/*
Nick Piggin5f57cbc2011-01-07 17:49:54 +1100529 * Clear dentry's mounted state if it has no remaining mounts.
530 * vfsmount_lock must be held for write.
531 */
Al Viroaa0a4cf2011-11-24 19:31:36 -0500532static void dentry_reset_mounted(struct dentry *dentry)
Nick Piggin5f57cbc2011-01-07 17:49:54 +1100533{
534 unsigned u;
535
536 for (u = 0; u < HASH_SIZE; u++) {
537 struct vfsmount *p;
538
539 list_for_each_entry(p, &mount_hashtable[u], mnt_hash) {
540 if (p->mnt_mountpoint == dentry)
541 return;
542 }
543 }
544 spin_lock(&dentry->d_lock);
545 dentry->d_flags &= ~DCACHE_MOUNTED;
546 spin_unlock(&dentry->d_lock);
547}
548
549/*
Nick Piggin99b7db72010-08-18 04:37:39 +1000550 * vfsmount lock must be held for write
551 */
Al Viro1a390682008-03-21 20:48:19 -0400552static void detach_mnt(struct vfsmount *mnt, struct path *old_path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
Al Viro1a390682008-03-21 20:48:19 -0400554 old_path->dentry = mnt->mnt_mountpoint;
555 old_path->mnt = mnt->mnt_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 mnt->mnt_parent = mnt;
557 mnt->mnt_mountpoint = mnt->mnt_root;
558 list_del_init(&mnt->mnt_child);
559 list_del_init(&mnt->mnt_hash);
Al Viroaa0a4cf2011-11-24 19:31:36 -0500560 dentry_reset_mounted(old_path->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
Nick Piggin99b7db72010-08-18 04:37:39 +1000563/*
564 * vfsmount lock must be held for write
565 */
Ram Paib90fa9a2005-11-07 17:19:50 -0500566void mnt_set_mountpoint(struct vfsmount *mnt, struct dentry *dentry,
567 struct vfsmount *child_mnt)
568{
569 child_mnt->mnt_parent = mntget(mnt);
570 child_mnt->mnt_mountpoint = dget(dentry);
Nick Piggin5f57cbc2011-01-07 17:49:54 +1100571 spin_lock(&dentry->d_lock);
572 dentry->d_flags |= DCACHE_MOUNTED;
573 spin_unlock(&dentry->d_lock);
Ram Paib90fa9a2005-11-07 17:19:50 -0500574}
575
Nick Piggin99b7db72010-08-18 04:37:39 +1000576/*
577 * vfsmount lock must be held for write
578 */
Al Viro1a390682008-03-21 20:48:19 -0400579static void attach_mnt(struct vfsmount *mnt, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
Al Viro1a390682008-03-21 20:48:19 -0400581 mnt_set_mountpoint(path->mnt, path->dentry, mnt);
Ram Paib90fa9a2005-11-07 17:19:50 -0500582 list_add_tail(&mnt->mnt_hash, mount_hashtable +
Al Viro1a390682008-03-21 20:48:19 -0400583 hash(path->mnt, path->dentry));
584 list_add_tail(&mnt->mnt_child, &path->mnt->mnt_mounts);
Ram Paib90fa9a2005-11-07 17:19:50 -0500585}
586
Al Viro7e3d0eb02011-01-16 16:32:11 -0500587static inline void __mnt_make_longterm(struct vfsmount *mnt)
588{
589#ifdef CONFIG_SMP
590 atomic_inc(&mnt->mnt_longterm);
591#endif
592}
593
594/* needs vfsmount lock for write */
595static inline void __mnt_make_shortterm(struct vfsmount *mnt)
596{
597#ifdef CONFIG_SMP
598 atomic_dec(&mnt->mnt_longterm);
599#endif
600}
601
Ram Paib90fa9a2005-11-07 17:19:50 -0500602/*
Nick Piggin99b7db72010-08-18 04:37:39 +1000603 * vfsmount lock must be held for write
Ram Paib90fa9a2005-11-07 17:19:50 -0500604 */
605static void commit_tree(struct vfsmount *mnt)
606{
607 struct vfsmount *parent = mnt->mnt_parent;
608 struct vfsmount *m;
609 LIST_HEAD(head);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800610 struct mnt_namespace *n = parent->mnt_ns;
Ram Paib90fa9a2005-11-07 17:19:50 -0500611
612 BUG_ON(parent == mnt);
613
614 list_add_tail(&head, &mnt->mnt_list);
Al Virof03c6592011-01-14 22:30:21 -0500615 list_for_each_entry(m, &head, mnt_list) {
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800616 m->mnt_ns = n;
Al Viro7e3d0eb02011-01-16 16:32:11 -0500617 __mnt_make_longterm(m);
Al Virof03c6592011-01-14 22:30:21 -0500618 }
619
Ram Paib90fa9a2005-11-07 17:19:50 -0500620 list_splice(&head, n->list.prev);
621
622 list_add_tail(&mnt->mnt_hash, mount_hashtable +
623 hash(parent, mnt->mnt_mountpoint));
624 list_add_tail(&mnt->mnt_child, &parent->mnt_mounts);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800625 touch_mnt_namespace(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626}
627
628static struct vfsmount *next_mnt(struct vfsmount *p, struct vfsmount *root)
629{
630 struct list_head *next = p->mnt_mounts.next;
631 if (next == &p->mnt_mounts) {
632 while (1) {
633 if (p == root)
634 return NULL;
635 next = p->mnt_child.next;
636 if (next != &p->mnt_parent->mnt_mounts)
637 break;
638 p = p->mnt_parent;
639 }
640 }
641 return list_entry(next, struct vfsmount, mnt_child);
642}
643
Ram Pai9676f0c2005-11-07 17:21:20 -0500644static struct vfsmount *skip_mnt_tree(struct vfsmount *p)
645{
646 struct list_head *prev = p->mnt_mounts.prev;
647 while (prev != &p->mnt_mounts) {
648 p = list_entry(prev, struct vfsmount, mnt_child);
649 prev = p->mnt_mounts.prev;
650 }
651 return p;
652}
653
Al Viro9d412a42011-03-17 22:08:28 -0400654struct vfsmount *
655vfs_kern_mount(struct file_system_type *type, int flags, const char *name, void *data)
656{
657 struct vfsmount *mnt;
658 struct dentry *root;
659
660 if (!type)
661 return ERR_PTR(-ENODEV);
662
663 mnt = alloc_vfsmnt(name);
664 if (!mnt)
665 return ERR_PTR(-ENOMEM);
666
667 if (flags & MS_KERNMOUNT)
668 mnt->mnt_flags = MNT_INTERNAL;
669
670 root = mount_fs(type, flags, name, data);
671 if (IS_ERR(root)) {
672 free_vfsmnt(mnt);
673 return ERR_CAST(root);
674 }
675
676 mnt->mnt_root = root;
677 mnt->mnt_sb = root->d_sb;
678 mnt->mnt_mountpoint = mnt->mnt_root;
679 mnt->mnt_parent = mnt;
680 return mnt;
681}
682EXPORT_SYMBOL_GPL(vfs_kern_mount);
683
Ram Pai36341f62005-11-07 17:17:22 -0500684static struct vfsmount *clone_mnt(struct vfsmount *old, struct dentry *root,
685 int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
687 struct super_block *sb = old->mnt_sb;
688 struct vfsmount *mnt = alloc_vfsmnt(old->mnt_devname);
689
690 if (mnt) {
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100691 if (flag & (CL_SLAVE | CL_PRIVATE))
692 mnt->mnt_group_id = 0; /* not a peer of original */
693 else
694 mnt->mnt_group_id = old->mnt_group_id;
695
696 if ((flag & CL_MAKE_SHARED) && !mnt->mnt_group_id) {
697 int err = mnt_alloc_group_id(mnt);
698 if (err)
699 goto out_free;
700 }
701
Miklos Szeredibe1a16a2010-10-05 12:31:09 +0200702 mnt->mnt_flags = old->mnt_flags & ~MNT_WRITE_HOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 atomic_inc(&sb->s_active);
704 mnt->mnt_sb = sb;
705 mnt->mnt_root = dget(root);
706 mnt->mnt_mountpoint = mnt->mnt_root;
707 mnt->mnt_parent = mnt;
Ram Paib90fa9a2005-11-07 17:19:50 -0500708
Ram Pai5afe0022005-11-07 17:21:01 -0500709 if (flag & CL_SLAVE) {
710 list_add(&mnt->mnt_slave, &old->mnt_slave_list);
711 mnt->mnt_master = old;
712 CLEAR_MNT_SHARED(mnt);
Al Viro8aec0802007-06-07 12:20:32 -0400713 } else if (!(flag & CL_PRIVATE)) {
Al Viro796a6b52010-01-16 13:28:47 -0500714 if ((flag & CL_MAKE_SHARED) || IS_MNT_SHARED(old))
Ram Pai5afe0022005-11-07 17:21:01 -0500715 list_add(&mnt->mnt_share, &old->mnt_share);
716 if (IS_MNT_SLAVE(old))
717 list_add(&mnt->mnt_slave, &old->mnt_slave);
718 mnt->mnt_master = old->mnt_master;
719 }
Ram Paib90fa9a2005-11-07 17:19:50 -0500720 if (flag & CL_MAKE_SHARED)
721 set_mnt_shared(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 /* stick the duplicate mount on the same expiry list
724 * as the original if that was on one */
Ram Pai36341f62005-11-07 17:17:22 -0500725 if (flag & CL_EXPIRE) {
Ram Pai36341f62005-11-07 17:17:22 -0500726 if (!list_empty(&old->mnt_expire))
727 list_add(&mnt->mnt_expire, &old->mnt_expire);
Ram Pai36341f62005-11-07 17:17:22 -0500728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
730 return mnt;
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100731
732 out_free:
733 free_vfsmnt(mnt);
734 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735}
736
Nick Pigginb3e19d92011-01-07 17:50:11 +1100737static inline void mntfree(struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
739 struct super_block *sb = mnt->mnt_sb;
Nick Pigginb3e19d92011-01-07 17:50:11 +1100740
Dave Hansen3d733632008-02-15 14:37:59 -0800741 /*
Dave Hansen3d733632008-02-15 14:37:59 -0800742 * This probably indicates that somebody messed
743 * up a mnt_want/drop_write() pair. If this
744 * happens, the filesystem was probably unable
745 * to make r/w->r/o transitions.
746 */
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000747 /*
Nick Pigginb3e19d92011-01-07 17:50:11 +1100748 * The locking used to deal with mnt_count decrement provides barriers,
749 * so mnt_get_writers() below is safe.
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000750 */
Nick Pigginc6653a82011-01-07 17:50:10 +1100751 WARN_ON(mnt_get_writers(mnt));
Andreas Gruenbacherca9c7262009-12-17 21:24:27 -0500752 fsnotify_vfsmount_delete(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 dput(mnt->mnt_root);
754 free_vfsmnt(mnt);
755 deactivate_super(sb);
756}
757
Al Virof03c6592011-01-14 22:30:21 -0500758static void mntput_no_expire(struct vfsmount *mnt)
Al Viro7b7b1ac2005-11-07 17:13:39 -0500759{
Nick Pigginb3e19d92011-01-07 17:50:11 +1100760put_again:
Al Virof03c6592011-01-14 22:30:21 -0500761#ifdef CONFIG_SMP
762 br_read_lock(vfsmount_lock);
763 if (likely(atomic_read(&mnt->mnt_longterm))) {
Al Viroaa9c0e02011-11-23 19:04:52 -0500764 mnt_add_count(mnt, -1);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100765 br_read_unlock(vfsmount_lock);
Al Virof03c6592011-01-14 22:30:21 -0500766 return;
Nick Pigginb3e19d92011-01-07 17:50:11 +1100767 }
Al Virof03c6592011-01-14 22:30:21 -0500768 br_read_unlock(vfsmount_lock);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100769
770 br_write_lock(vfsmount_lock);
Al Viroaa9c0e02011-11-23 19:04:52 -0500771 mnt_add_count(mnt, -1);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100772 if (mnt_get_count(mnt)) {
773 br_write_unlock(vfsmount_lock);
774 return;
775 }
Nick Pigginb3e19d92011-01-07 17:50:11 +1100776#else
Al Viroaa9c0e02011-11-23 19:04:52 -0500777 mnt_add_count(mnt, -1);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100778 if (likely(mnt_get_count(mnt)))
Nick Piggin99b7db72010-08-18 04:37:39 +1000779 return;
780 br_write_lock(vfsmount_lock);
Al Virof03c6592011-01-14 22:30:21 -0500781#endif
Nick Pigginb3e19d92011-01-07 17:50:11 +1100782 if (unlikely(mnt->mnt_pinned)) {
783 mnt_add_count(mnt, mnt->mnt_pinned + 1);
784 mnt->mnt_pinned = 0;
Nick Piggin99b7db72010-08-18 04:37:39 +1000785 br_write_unlock(vfsmount_lock);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100786 acct_auto_close_mnt(mnt);
787 goto put_again;
Al Viro7b7b1ac2005-11-07 17:13:39 -0500788 }
Nick Piggin99b7db72010-08-18 04:37:39 +1000789 br_write_unlock(vfsmount_lock);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100790 mntfree(mnt);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500791}
Nick Pigginb3e19d92011-01-07 17:50:11 +1100792
793void mntput(struct vfsmount *mnt)
794{
795 if (mnt) {
796 /* avoid cacheline pingpong, hope gcc doesn't get "smart" */
797 if (unlikely(mnt->mnt_expiry_mark))
798 mnt->mnt_expiry_mark = 0;
Al Virof03c6592011-01-14 22:30:21 -0500799 mntput_no_expire(mnt);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100800 }
801}
802EXPORT_SYMBOL(mntput);
803
804struct vfsmount *mntget(struct vfsmount *mnt)
805{
806 if (mnt)
Al Viroaa9c0e02011-11-23 19:04:52 -0500807 mnt_add_count(mnt, 1);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100808 return mnt;
809}
810EXPORT_SYMBOL(mntget);
811
Al Viro7b7b1ac2005-11-07 17:13:39 -0500812void mnt_pin(struct vfsmount *mnt)
813{
Nick Piggin99b7db72010-08-18 04:37:39 +1000814 br_write_lock(vfsmount_lock);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500815 mnt->mnt_pinned++;
Nick Piggin99b7db72010-08-18 04:37:39 +1000816 br_write_unlock(vfsmount_lock);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500817}
Al Viro7b7b1ac2005-11-07 17:13:39 -0500818EXPORT_SYMBOL(mnt_pin);
819
820void mnt_unpin(struct vfsmount *mnt)
821{
Nick Piggin99b7db72010-08-18 04:37:39 +1000822 br_write_lock(vfsmount_lock);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500823 if (mnt->mnt_pinned) {
Al Viroaa9c0e02011-11-23 19:04:52 -0500824 mnt_add_count(mnt, 1);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500825 mnt->mnt_pinned--;
826 }
Nick Piggin99b7db72010-08-18 04:37:39 +1000827 br_write_unlock(vfsmount_lock);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500828}
Al Viro7b7b1ac2005-11-07 17:13:39 -0500829EXPORT_SYMBOL(mnt_unpin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800831static inline void mangle(struct seq_file *m, const char *s)
832{
833 seq_escape(m, s, " \t\n\\");
834}
835
836/*
837 * Simple .show_options callback for filesystems which don't want to
838 * implement more complex mount option showing.
839 *
840 * See also save_mount_options().
841 */
842int generic_show_options(struct seq_file *m, struct vfsmount *mnt)
843{
Al Viro2a32ceb2009-05-08 16:05:57 -0400844 const char *options;
845
846 rcu_read_lock();
847 options = rcu_dereference(mnt->mnt_sb->s_options);
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800848
849 if (options != NULL && options[0]) {
850 seq_putc(m, ',');
851 mangle(m, options);
852 }
Al Viro2a32ceb2009-05-08 16:05:57 -0400853 rcu_read_unlock();
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800854
855 return 0;
856}
857EXPORT_SYMBOL(generic_show_options);
858
859/*
860 * If filesystem uses generic_show_options(), this function should be
861 * called from the fill_super() callback.
862 *
863 * The .remount_fs callback usually needs to be handled in a special
864 * way, to make sure, that previous options are not overwritten if the
865 * remount fails.
866 *
867 * Also note, that if the filesystem's .remount_fs function doesn't
868 * reset all options to their default value, but changes only newly
869 * given options, then the displayed options will not reflect reality
870 * any more.
871 */
872void save_mount_options(struct super_block *sb, char *options)
873{
Al Viro2a32ceb2009-05-08 16:05:57 -0400874 BUG_ON(sb->s_options);
875 rcu_assign_pointer(sb->s_options, kstrdup(options, GFP_KERNEL));
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800876}
877EXPORT_SYMBOL(save_mount_options);
878
Al Viro2a32ceb2009-05-08 16:05:57 -0400879void replace_mount_options(struct super_block *sb, char *options)
880{
881 char *old = sb->s_options;
882 rcu_assign_pointer(sb->s_options, options);
883 if (old) {
884 synchronize_rcu();
885 kfree(old);
886 }
887}
888EXPORT_SYMBOL(replace_mount_options);
889
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100890#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891/* iterator */
892static void *m_start(struct seq_file *m, loff_t *pos)
893{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100894 struct proc_mounts *p = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Ram Pai390c6842005-11-07 17:17:51 -0500896 down_read(&namespace_sem);
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100897 return seq_list_start(&p->ns->list, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898}
899
900static void *m_next(struct seq_file *m, void *v, loff_t *pos)
901{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100902 struct proc_mounts *p = m->private;
Pavel Emelianovb0765fb2007-07-15 23:39:55 -0700903
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100904 return seq_list_next(v, &p->ns->list, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905}
906
907static void m_stop(struct seq_file *m, void *v)
908{
Ram Pai390c6842005-11-07 17:17:51 -0500909 up_read(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
911
Al Viro9f5596a2010-02-05 00:40:25 -0500912int mnt_had_events(struct proc_mounts *p)
913{
914 struct mnt_namespace *ns = p->ns;
915 int res = 0;
916
Nick Piggin99b7db72010-08-18 04:37:39 +1000917 br_read_lock(vfsmount_lock);
Kay Sieversf1514632011-07-12 20:48:39 +0200918 if (p->m.poll_event != ns->event) {
919 p->m.poll_event = ns->event;
Al Viro9f5596a2010-02-05 00:40:25 -0500920 res = 1;
921 }
Nick Piggin99b7db72010-08-18 04:37:39 +1000922 br_read_unlock(vfsmount_lock);
Al Viro9f5596a2010-02-05 00:40:25 -0500923
924 return res;
925}
926
Ram Pai2d4d4862008-03-27 13:06:25 +0100927struct proc_fs_info {
928 int flag;
929 const char *str;
930};
931
Eric Paris2069f452008-07-04 09:47:13 +1000932static int show_sb_opts(struct seq_file *m, struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
Ram Pai2d4d4862008-03-27 13:06:25 +0100934 static const struct proc_fs_info fs_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 { MS_SYNCHRONOUS, ",sync" },
936 { MS_DIRSYNC, ",dirsync" },
937 { MS_MANDLOCK, ",mand" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 { 0, NULL }
939 };
Ram Pai2d4d4862008-03-27 13:06:25 +0100940 const struct proc_fs_info *fs_infop;
941
942 for (fs_infop = fs_info; fs_infop->flag; fs_infop++) {
943 if (sb->s_flags & fs_infop->flag)
944 seq_puts(m, fs_infop->str);
945 }
Eric Paris2069f452008-07-04 09:47:13 +1000946
947 return security_sb_show_options(m, sb);
Ram Pai2d4d4862008-03-27 13:06:25 +0100948}
949
950static void show_mnt_opts(struct seq_file *m, struct vfsmount *mnt)
951{
952 static const struct proc_fs_info mnt_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 { MNT_NOSUID, ",nosuid" },
954 { MNT_NODEV, ",nodev" },
955 { MNT_NOEXEC, ",noexec" },
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -0800956 { MNT_NOATIME, ",noatime" },
957 { MNT_NODIRATIME, ",nodiratime" },
Valerie Henson47ae32d2006-12-13 00:34:34 -0800958 { MNT_RELATIME, ",relatime" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 { 0, NULL }
960 };
Ram Pai2d4d4862008-03-27 13:06:25 +0100961 const struct proc_fs_info *fs_infop;
962
963 for (fs_infop = mnt_info; fs_infop->flag; fs_infop++) {
964 if (mnt->mnt_flags & fs_infop->flag)
965 seq_puts(m, fs_infop->str);
966 }
967}
968
969static void show_type(struct seq_file *m, struct super_block *sb)
970{
971 mangle(m, sb->s_type->name);
972 if (sb->s_subtype && sb->s_subtype[0]) {
973 seq_putc(m, '.');
974 mangle(m, sb->s_subtype);
975 }
976}
977
978static int show_vfsmnt(struct seq_file *m, void *v)
979{
980 struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
981 int err = 0;
Jan Blunckc32c2f62008-02-14 19:38:43 -0800982 struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Al Viroc7f404b2011-03-16 06:59:40 -0400984 if (mnt->mnt_sb->s_op->show_devname) {
985 err = mnt->mnt_sb->s_op->show_devname(m, mnt);
986 if (err)
987 goto out;
988 } else {
989 mangle(m, mnt->mnt_devname ? mnt->mnt_devname : "none");
990 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 seq_putc(m, ' ');
Jan Blunckc32c2f62008-02-14 19:38:43 -0800992 seq_path(m, &mnt_path, " \t\n\\");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 seq_putc(m, ' ');
Ram Pai2d4d4862008-03-27 13:06:25 +0100994 show_type(m, mnt->mnt_sb);
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800995 seq_puts(m, __mnt_is_readonly(mnt) ? " ro" : " rw");
Eric Paris2069f452008-07-04 09:47:13 +1000996 err = show_sb_opts(m, mnt->mnt_sb);
997 if (err)
998 goto out;
Ram Pai2d4d4862008-03-27 13:06:25 +0100999 show_mnt_opts(m, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 if (mnt->mnt_sb->s_op->show_options)
1001 err = mnt->mnt_sb->s_op->show_options(m, mnt);
1002 seq_puts(m, " 0 0\n");
Eric Paris2069f452008-07-04 09:47:13 +10001003out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 return err;
1005}
1006
Miklos Szeredia1a2c402008-03-27 13:06:24 +01001007const struct seq_operations mounts_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 .start = m_start,
1009 .next = m_next,
1010 .stop = m_stop,
1011 .show = show_vfsmnt
1012};
1013
Ram Pai2d4d4862008-03-27 13:06:25 +01001014static int show_mountinfo(struct seq_file *m, void *v)
1015{
1016 struct proc_mounts *p = m->private;
1017 struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
1018 struct super_block *sb = mnt->mnt_sb;
1019 struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
1020 struct path root = p->root;
1021 int err = 0;
1022
1023 seq_printf(m, "%i %i %u:%u ", mnt->mnt_id, mnt->mnt_parent->mnt_id,
1024 MAJOR(sb->s_dev), MINOR(sb->s_dev));
Al Viroc7f404b2011-03-16 06:59:40 -04001025 if (sb->s_op->show_path)
1026 err = sb->s_op->show_path(m, mnt);
1027 else
1028 seq_dentry(m, mnt->mnt_root, " \t\n\\");
1029 if (err)
1030 goto out;
Ram Pai2d4d4862008-03-27 13:06:25 +01001031 seq_putc(m, ' ');
Al Viro02125a82011-12-05 08:43:34 -05001032
1033 /* mountpoints outside of chroot jail will give SEQ_SKIP on this */
1034 err = seq_path_root(m, &mnt_path, &root, " \t\n\\");
1035 if (err)
1036 goto out;
1037
Ram Pai2d4d4862008-03-27 13:06:25 +01001038 seq_puts(m, mnt->mnt_flags & MNT_READONLY ? " ro" : " rw");
1039 show_mnt_opts(m, mnt);
1040
1041 /* Tagged fields ("foo:X" or "bar") */
1042 if (IS_MNT_SHARED(mnt))
1043 seq_printf(m, " shared:%i", mnt->mnt_group_id);
Miklos Szeredi97e7e0f2008-03-27 13:06:26 +01001044 if (IS_MNT_SLAVE(mnt)) {
1045 int master = mnt->mnt_master->mnt_group_id;
1046 int dom = get_dominating_id(mnt, &p->root);
1047 seq_printf(m, " master:%i", master);
1048 if (dom && dom != master)
1049 seq_printf(m, " propagate_from:%i", dom);
1050 }
Ram Pai2d4d4862008-03-27 13:06:25 +01001051 if (IS_MNT_UNBINDABLE(mnt))
1052 seq_puts(m, " unbindable");
1053
1054 /* Filesystem specific data */
1055 seq_puts(m, " - ");
1056 show_type(m, sb);
1057 seq_putc(m, ' ');
Al Viroc7f404b2011-03-16 06:59:40 -04001058 if (sb->s_op->show_devname)
1059 err = sb->s_op->show_devname(m, mnt);
1060 else
1061 mangle(m, mnt->mnt_devname ? mnt->mnt_devname : "none");
1062 if (err)
1063 goto out;
Ram Pai2d4d4862008-03-27 13:06:25 +01001064 seq_puts(m, sb->s_flags & MS_RDONLY ? " ro" : " rw");
Eric Paris2069f452008-07-04 09:47:13 +10001065 err = show_sb_opts(m, sb);
1066 if (err)
1067 goto out;
Ram Pai2d4d4862008-03-27 13:06:25 +01001068 if (sb->s_op->show_options)
1069 err = sb->s_op->show_options(m, mnt);
1070 seq_putc(m, '\n');
Eric Paris2069f452008-07-04 09:47:13 +10001071out:
Ram Pai2d4d4862008-03-27 13:06:25 +01001072 return err;
1073}
1074
1075const struct seq_operations mountinfo_op = {
1076 .start = m_start,
1077 .next = m_next,
1078 .stop = m_stop,
1079 .show = show_mountinfo,
1080};
1081
Chuck Leverb4629fe2006-03-20 13:44:12 -05001082static int show_vfsstat(struct seq_file *m, void *v)
1083{
Pavel Emelianovb0765fb2007-07-15 23:39:55 -07001084 struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
Jan Blunckc32c2f62008-02-14 19:38:43 -08001085 struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
Chuck Leverb4629fe2006-03-20 13:44:12 -05001086 int err = 0;
1087
1088 /* device */
Al Viroc7f404b2011-03-16 06:59:40 -04001089 if (mnt->mnt_sb->s_op->show_devname) {
Bryan Schumakera877ee02011-10-07 13:41:15 -04001090 seq_puts(m, "device ");
Al Viroc7f404b2011-03-16 06:59:40 -04001091 err = mnt->mnt_sb->s_op->show_devname(m, mnt);
1092 } else {
1093 if (mnt->mnt_devname) {
1094 seq_puts(m, "device ");
1095 mangle(m, mnt->mnt_devname);
1096 } else
1097 seq_puts(m, "no device");
1098 }
Chuck Leverb4629fe2006-03-20 13:44:12 -05001099
1100 /* mount point */
1101 seq_puts(m, " mounted on ");
Jan Blunckc32c2f62008-02-14 19:38:43 -08001102 seq_path(m, &mnt_path, " \t\n\\");
Chuck Leverb4629fe2006-03-20 13:44:12 -05001103 seq_putc(m, ' ');
1104
1105 /* file system type */
1106 seq_puts(m, "with fstype ");
Ram Pai2d4d4862008-03-27 13:06:25 +01001107 show_type(m, mnt->mnt_sb);
Chuck Leverb4629fe2006-03-20 13:44:12 -05001108
1109 /* optional statistics */
1110 if (mnt->mnt_sb->s_op->show_stats) {
1111 seq_putc(m, ' ');
Al Viroc7f404b2011-03-16 06:59:40 -04001112 if (!err)
1113 err = mnt->mnt_sb->s_op->show_stats(m, mnt);
Chuck Leverb4629fe2006-03-20 13:44:12 -05001114 }
1115
1116 seq_putc(m, '\n');
1117 return err;
1118}
1119
Miklos Szeredia1a2c402008-03-27 13:06:24 +01001120const struct seq_operations mountstats_op = {
Chuck Leverb4629fe2006-03-20 13:44:12 -05001121 .start = m_start,
1122 .next = m_next,
1123 .stop = m_stop,
1124 .show = show_vfsstat,
1125};
Miklos Szeredia1a2c402008-03-27 13:06:24 +01001126#endif /* CONFIG_PROC_FS */
Chuck Leverb4629fe2006-03-20 13:44:12 -05001127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128/**
1129 * may_umount_tree - check if a mount tree is busy
1130 * @mnt: root of mount tree
1131 *
1132 * This is called to check if a tree of mounts has any
1133 * open files, pwds, chroots or sub mounts that are
1134 * busy.
1135 */
1136int may_umount_tree(struct vfsmount *mnt)
1137{
Ram Pai36341f62005-11-07 17:17:22 -05001138 int actual_refs = 0;
1139 int minimum_refs = 0;
1140 struct vfsmount *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Nick Pigginb3e19d92011-01-07 17:50:11 +11001142 /* write lock needed for mnt_get_count */
1143 br_write_lock(vfsmount_lock);
Ram Pai36341f62005-11-07 17:17:22 -05001144 for (p = mnt; p; p = next_mnt(p, mnt)) {
Nick Pigginb3e19d92011-01-07 17:50:11 +11001145 actual_refs += mnt_get_count(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 minimum_refs += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
Nick Pigginb3e19d92011-01-07 17:50:11 +11001148 br_write_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
1150 if (actual_refs > minimum_refs)
Ian Kente3474a82006-03-27 01:14:51 -08001151 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Ian Kente3474a82006-03-27 01:14:51 -08001153 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154}
1155
1156EXPORT_SYMBOL(may_umount_tree);
1157
1158/**
1159 * may_umount - check if a mount point is busy
1160 * @mnt: root of mount
1161 *
1162 * This is called to check if a mount point has any
1163 * open files, pwds, chroots or sub mounts. If the
1164 * mount has sub mounts this will return busy
1165 * regardless of whether the sub mounts are busy.
1166 *
1167 * Doesn't take quota and stuff into account. IOW, in some cases it will
1168 * give false negatives. The main reason why it's here is that we need
1169 * a non-destructive way to look for easily umountable filesystems.
1170 */
1171int may_umount(struct vfsmount *mnt)
1172{
Ian Kente3474a82006-03-27 01:14:51 -08001173 int ret = 1;
Al Viro8ad08d82010-01-16 12:56:08 -05001174 down_read(&namespace_sem);
Nick Pigginb3e19d92011-01-07 17:50:11 +11001175 br_write_lock(vfsmount_lock);
Ram Paia05964f2005-11-07 17:20:17 -05001176 if (propagate_mount_busy(mnt, 2))
Ian Kente3474a82006-03-27 01:14:51 -08001177 ret = 0;
Nick Pigginb3e19d92011-01-07 17:50:11 +11001178 br_write_unlock(vfsmount_lock);
Al Viro8ad08d82010-01-16 12:56:08 -05001179 up_read(&namespace_sem);
Ram Paia05964f2005-11-07 17:20:17 -05001180 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181}
1182
1183EXPORT_SYMBOL(may_umount);
1184
Ram Paib90fa9a2005-11-07 17:19:50 -05001185void release_mounts(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186{
Ram Pai70fbcdf2005-11-07 17:17:04 -05001187 struct vfsmount *mnt;
Miklos Szeredibf066c72006-01-08 01:03:19 -08001188 while (!list_empty(head)) {
Pavel Emelianovb5e61812007-05-08 00:30:19 -07001189 mnt = list_first_entry(head, struct vfsmount, mnt_hash);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001190 list_del_init(&mnt->mnt_hash);
Al Virob2dba1a2011-11-23 19:26:23 -05001191 if (mnt_has_parent(mnt)) {
Ram Pai70fbcdf2005-11-07 17:17:04 -05001192 struct dentry *dentry;
1193 struct vfsmount *m;
Nick Piggin99b7db72010-08-18 04:37:39 +10001194
1195 br_write_lock(vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001196 dentry = mnt->mnt_mountpoint;
1197 m = mnt->mnt_parent;
1198 mnt->mnt_mountpoint = mnt->mnt_root;
1199 mnt->mnt_parent = mnt;
Al Viro7c4b93d2008-03-21 23:59:49 -04001200 m->mnt_ghosts--;
Nick Piggin99b7db72010-08-18 04:37:39 +10001201 br_write_unlock(vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001202 dput(dentry);
1203 mntput(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 }
Al Virof03c6592011-01-14 22:30:21 -05001205 mntput(mnt);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001206 }
1207}
1208
Nick Piggin99b7db72010-08-18 04:37:39 +10001209/*
1210 * vfsmount lock must be held for write
1211 * namespace_sem must be held for write
1212 */
Ram Paia05964f2005-11-07 17:20:17 -05001213void umount_tree(struct vfsmount *mnt, int propagate, struct list_head *kill)
Ram Pai70fbcdf2005-11-07 17:17:04 -05001214{
Al Viro7b8a53f2011-01-15 20:08:44 -05001215 LIST_HEAD(tmp_list);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001216 struct vfsmount *p;
1217
Akinobu Mita1bfba4e2006-06-26 00:24:40 -07001218 for (p = mnt; p; p = next_mnt(p, mnt))
Al Viro7b8a53f2011-01-15 20:08:44 -05001219 list_move(&p->mnt_hash, &tmp_list);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001220
Ram Paia05964f2005-11-07 17:20:17 -05001221 if (propagate)
Al Viro7b8a53f2011-01-15 20:08:44 -05001222 propagate_umount(&tmp_list);
Ram Paia05964f2005-11-07 17:20:17 -05001223
Al Viro7b8a53f2011-01-15 20:08:44 -05001224 list_for_each_entry(p, &tmp_list, mnt_hash) {
Ram Pai70fbcdf2005-11-07 17:17:04 -05001225 list_del_init(&p->mnt_expire);
1226 list_del_init(&p->mnt_list);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001227 __touch_mnt_namespace(p->mnt_ns);
1228 p->mnt_ns = NULL;
Al Viro7e3d0eb02011-01-16 16:32:11 -05001229 __mnt_make_shortterm(p);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001230 list_del_init(&p->mnt_child);
Al Virob2dba1a2011-11-23 19:26:23 -05001231 if (mnt_has_parent(p)) {
Al Viro7c4b93d2008-03-21 23:59:49 -04001232 p->mnt_parent->mnt_ghosts++;
Al Viroaa0a4cf2011-11-24 19:31:36 -05001233 dentry_reset_mounted(p->mnt_mountpoint);
Al Viro7c4b93d2008-03-21 23:59:49 -04001234 }
Ram Paia05964f2005-11-07 17:20:17 -05001235 change_mnt_propagation(p, MS_PRIVATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 }
Al Viro7b8a53f2011-01-15 20:08:44 -05001237 list_splice(&tmp_list, kill);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238}
1239
Al Viroc35038b2008-03-22 00:46:23 -04001240static void shrink_submounts(struct vfsmount *mnt, struct list_head *umounts);
1241
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242static int do_umount(struct vfsmount *mnt, int flags)
1243{
Ram Paib58fed82005-11-07 17:16:09 -05001244 struct super_block *sb = mnt->mnt_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 int retval;
Ram Pai70fbcdf2005-11-07 17:17:04 -05001246 LIST_HEAD(umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
1248 retval = security_sb_umount(mnt, flags);
1249 if (retval)
1250 return retval;
1251
1252 /*
1253 * Allow userspace to request a mountpoint be expired rather than
1254 * unmounting unconditionally. Unmount only happens if:
1255 * (1) the mark is already set (the mark is cleared by mntput())
1256 * (2) the usage count == 1 [parent vfsmount] + 1 [sys_umount]
1257 */
1258 if (flags & MNT_EXPIRE) {
Jan Blunck6ac08c32008-02-14 19:34:38 -08001259 if (mnt == current->fs->root.mnt ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 flags & (MNT_FORCE | MNT_DETACH))
1261 return -EINVAL;
1262
Nick Pigginb3e19d92011-01-07 17:50:11 +11001263 /*
1264 * probably don't strictly need the lock here if we examined
1265 * all race cases, but it's a slowpath.
1266 */
1267 br_write_lock(vfsmount_lock);
1268 if (mnt_get_count(mnt) != 2) {
J. R. Okajimabf9faa22011-02-23 16:59:49 +09001269 br_write_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 return -EBUSY;
Nick Pigginb3e19d92011-01-07 17:50:11 +11001271 }
1272 br_write_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
1274 if (!xchg(&mnt->mnt_expiry_mark, 1))
1275 return -EAGAIN;
1276 }
1277
1278 /*
1279 * If we may have to abort operations to get out of this
1280 * mount, and they will themselves hold resources we must
1281 * allow the fs to do things. In the Unix tradition of
1282 * 'Gee thats tricky lets do it in userspace' the umount_begin
1283 * might fail to complete on the first run through as other tasks
1284 * must return, and the like. Thats for the mount program to worry
1285 * about for the moment.
1286 */
1287
Al Viro42faad92008-04-24 07:21:56 -04001288 if (flags & MNT_FORCE && sb->s_op->umount_begin) {
Al Viro42faad92008-04-24 07:21:56 -04001289 sb->s_op->umount_begin(sb);
Al Viro42faad92008-04-24 07:21:56 -04001290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
1292 /*
1293 * No sense to grab the lock for this test, but test itself looks
1294 * somewhat bogus. Suggestions for better replacement?
1295 * Ho-hum... In principle, we might treat that as umount + switch
1296 * to rootfs. GC would eventually take care of the old vfsmount.
1297 * Actually it makes sense, especially if rootfs would contain a
1298 * /reboot - static binary that would close all descriptors and
1299 * call reboot(9). Then init(8) could umount root and exec /reboot.
1300 */
Jan Blunck6ac08c32008-02-14 19:34:38 -08001301 if (mnt == current->fs->root.mnt && !(flags & MNT_DETACH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 /*
1303 * Special case for "unmounting" root ...
1304 * we just try to remount it readonly.
1305 */
1306 down_write(&sb->s_umount);
Al Viro4aa98cf2009-05-08 13:36:58 -04001307 if (!(sb->s_flags & MS_RDONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 retval = do_remount_sb(sb, MS_RDONLY, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 up_write(&sb->s_umount);
1310 return retval;
1311 }
1312
Ram Pai390c6842005-11-07 17:17:51 -05001313 down_write(&namespace_sem);
Nick Piggin99b7db72010-08-18 04:37:39 +10001314 br_write_lock(vfsmount_lock);
Al Viro5addc5d2005-11-07 17:15:49 -05001315 event++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Al Viroc35038b2008-03-22 00:46:23 -04001317 if (!(flags & MNT_DETACH))
1318 shrink_submounts(mnt, &umount_list);
1319
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 retval = -EBUSY;
Ram Paia05964f2005-11-07 17:20:17 -05001321 if (flags & MNT_DETACH || !propagate_mount_busy(mnt, 2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 if (!list_empty(&mnt->mnt_list))
Ram Paia05964f2005-11-07 17:20:17 -05001323 umount_tree(mnt, 1, &umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 retval = 0;
1325 }
Nick Piggin99b7db72010-08-18 04:37:39 +10001326 br_write_unlock(vfsmount_lock);
Ram Pai390c6842005-11-07 17:17:51 -05001327 up_write(&namespace_sem);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001328 release_mounts(&umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 return retval;
1330}
1331
1332/*
1333 * Now umount can handle mount points as well as block devices.
1334 * This is important for filesystems which use unnamed block devices.
1335 *
1336 * We now support a flag for forced unmount like the other 'big iron'
1337 * unixes. Our API is identical to OSF/1 to avoid making a mess of AMD
1338 */
1339
Heiko Carstensbdc480e2009-01-14 14:14:12 +01001340SYSCALL_DEFINE2(umount, char __user *, name, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341{
Al Viro2d8f3032008-07-22 09:59:21 -04001342 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 int retval;
Miklos Szeredidb1f05b2010-02-10 12:15:53 +01001344 int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Miklos Szeredidb1f05b2010-02-10 12:15:53 +01001346 if (flags & ~(MNT_FORCE | MNT_DETACH | MNT_EXPIRE | UMOUNT_NOFOLLOW))
1347 return -EINVAL;
1348
1349 if (!(flags & UMOUNT_NOFOLLOW))
1350 lookup_flags |= LOOKUP_FOLLOW;
1351
1352 retval = user_path_at(AT_FDCWD, name, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 if (retval)
1354 goto out;
1355 retval = -EINVAL;
Al Viro2d8f3032008-07-22 09:59:21 -04001356 if (path.dentry != path.mnt->mnt_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 goto dput_and_out;
Al Viro2d8f3032008-07-22 09:59:21 -04001358 if (!check_mnt(path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 goto dput_and_out;
1360
1361 retval = -EPERM;
1362 if (!capable(CAP_SYS_ADMIN))
1363 goto dput_and_out;
1364
Al Viro2d8f3032008-07-22 09:59:21 -04001365 retval = do_umount(path.mnt, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366dput_and_out:
Jan Blunck429731b2008-02-14 19:34:31 -08001367 /* we mustn't call path_put() as that would clear mnt_expiry_mark */
Al Viro2d8f3032008-07-22 09:59:21 -04001368 dput(path.dentry);
1369 mntput_no_expire(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370out:
1371 return retval;
1372}
1373
1374#ifdef __ARCH_WANT_SYS_OLDUMOUNT
1375
1376/*
Ram Paib58fed82005-11-07 17:16:09 -05001377 * The 2.0 compatible umount. No flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 */
Heiko Carstensbdc480e2009-01-14 14:14:12 +01001379SYSCALL_DEFINE1(oldumount, char __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380{
Ram Paib58fed82005-11-07 17:16:09 -05001381 return sys_umount(name, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382}
1383
1384#endif
1385
Al Viro2d92ab32008-08-02 00:51:11 -04001386static int mount_is_safe(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387{
1388 if (capable(CAP_SYS_ADMIN))
1389 return 0;
1390 return -EPERM;
1391#ifdef notyet
Al Viro2d92ab32008-08-02 00:51:11 -04001392 if (S_ISLNK(path->dentry->d_inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 return -EPERM;
Al Viro2d92ab32008-08-02 00:51:11 -04001394 if (path->dentry->d_inode->i_mode & S_ISVTX) {
David Howellsda9592e2008-11-14 10:39:05 +11001395 if (current_uid() != path->dentry->d_inode->i_uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 return -EPERM;
1397 }
Al Viro2d92ab32008-08-02 00:51:11 -04001398 if (inode_permission(path->dentry->d_inode, MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 return -EPERM;
1400 return 0;
1401#endif
1402}
1403
Ram Paib90fa9a2005-11-07 17:19:50 -05001404struct vfsmount *copy_tree(struct vfsmount *mnt, struct dentry *dentry,
Ram Pai36341f62005-11-07 17:17:22 -05001405 int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406{
1407 struct vfsmount *res, *p, *q, *r, *s;
Al Viro1a390682008-03-21 20:48:19 -04001408 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Ram Pai9676f0c2005-11-07 17:21:20 -05001410 if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(mnt))
1411 return NULL;
1412
Ram Pai36341f62005-11-07 17:17:22 -05001413 res = q = clone_mnt(mnt, dentry, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 if (!q)
1415 goto Enomem;
1416 q->mnt_mountpoint = mnt->mnt_mountpoint;
1417
1418 p = mnt;
Domen Puncerfdadd652005-09-10 00:27:07 -07001419 list_for_each_entry(r, &mnt->mnt_mounts, mnt_child) {
Jan Blunck7ec02ef2008-04-29 00:59:40 -07001420 if (!is_subdir(r->mnt_mountpoint, dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 continue;
1422
1423 for (s = r; s; s = next_mnt(s, r)) {
Ram Pai9676f0c2005-11-07 17:21:20 -05001424 if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(s)) {
1425 s = skip_mnt_tree(s);
1426 continue;
1427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 while (p != s->mnt_parent) {
1429 p = p->mnt_parent;
1430 q = q->mnt_parent;
1431 }
1432 p = s;
Al Viro1a390682008-03-21 20:48:19 -04001433 path.mnt = q;
1434 path.dentry = p->mnt_mountpoint;
Ram Pai36341f62005-11-07 17:17:22 -05001435 q = clone_mnt(p, p->mnt_root, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 if (!q)
1437 goto Enomem;
Nick Piggin99b7db72010-08-18 04:37:39 +10001438 br_write_lock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 list_add_tail(&q->mnt_list, &res->mnt_list);
Al Viro1a390682008-03-21 20:48:19 -04001440 attach_mnt(q, &path);
Nick Piggin99b7db72010-08-18 04:37:39 +10001441 br_write_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 }
1443 }
1444 return res;
Ram Paib58fed82005-11-07 17:16:09 -05001445Enomem:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 if (res) {
Ram Pai70fbcdf2005-11-07 17:17:04 -05001447 LIST_HEAD(umount_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10001448 br_write_lock(vfsmount_lock);
Ram Paia05964f2005-11-07 17:20:17 -05001449 umount_tree(res, 0, &umount_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10001450 br_write_unlock(vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001451 release_mounts(&umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 }
1453 return NULL;
1454}
1455
Al Viro589ff872009-04-18 03:28:19 -04001456struct vfsmount *collect_mounts(struct path *path)
Al Viro8aec0802007-06-07 12:20:32 -04001457{
1458 struct vfsmount *tree;
Al Viro1a60a282008-03-22 16:19:49 -04001459 down_write(&namespace_sem);
Al Viro589ff872009-04-18 03:28:19 -04001460 tree = copy_tree(path->mnt, path->dentry, CL_COPY_ALL | CL_PRIVATE);
Al Viro1a60a282008-03-22 16:19:49 -04001461 up_write(&namespace_sem);
Al Viro8aec0802007-06-07 12:20:32 -04001462 return tree;
1463}
1464
1465void drop_collected_mounts(struct vfsmount *mnt)
1466{
1467 LIST_HEAD(umount_list);
Al Viro1a60a282008-03-22 16:19:49 -04001468 down_write(&namespace_sem);
Nick Piggin99b7db72010-08-18 04:37:39 +10001469 br_write_lock(vfsmount_lock);
Al Viro8aec0802007-06-07 12:20:32 -04001470 umount_tree(mnt, 0, &umount_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10001471 br_write_unlock(vfsmount_lock);
Al Viro1a60a282008-03-22 16:19:49 -04001472 up_write(&namespace_sem);
Al Viro8aec0802007-06-07 12:20:32 -04001473 release_mounts(&umount_list);
1474}
1475
Al Viro1f707132010-01-30 22:51:25 -05001476int iterate_mounts(int (*f)(struct vfsmount *, void *), void *arg,
1477 struct vfsmount *root)
1478{
1479 struct vfsmount *mnt;
1480 int res = f(root, arg);
1481 if (res)
1482 return res;
1483 list_for_each_entry(mnt, &root->mnt_list, mnt_list) {
1484 res = f(mnt, arg);
1485 if (res)
1486 return res;
1487 }
1488 return 0;
1489}
1490
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001491static void cleanup_group_ids(struct vfsmount *mnt, struct vfsmount *end)
1492{
1493 struct vfsmount *p;
1494
1495 for (p = mnt; p != end; p = next_mnt(p, mnt)) {
1496 if (p->mnt_group_id && !IS_MNT_SHARED(p))
1497 mnt_release_group_id(p);
1498 }
1499}
1500
1501static int invent_group_ids(struct vfsmount *mnt, bool recurse)
1502{
1503 struct vfsmount *p;
1504
1505 for (p = mnt; p; p = recurse ? next_mnt(p, mnt) : NULL) {
1506 if (!p->mnt_group_id && !IS_MNT_SHARED(p)) {
1507 int err = mnt_alloc_group_id(p);
1508 if (err) {
1509 cleanup_group_ids(mnt, p);
1510 return err;
1511 }
1512 }
1513 }
1514
1515 return 0;
1516}
1517
Ram Paib90fa9a2005-11-07 17:19:50 -05001518/*
1519 * @source_mnt : mount tree to be attached
Ram Pai21444402005-11-07 17:20:03 -05001520 * @nd : place the mount tree @source_mnt is attached
1521 * @parent_nd : if non-null, detach the source_mnt from its parent and
1522 * store the parent mount and mountpoint dentry.
1523 * (done when source_mnt is moved)
Ram Paib90fa9a2005-11-07 17:19:50 -05001524 *
1525 * NOTE: in the table below explains the semantics when a source mount
1526 * of a given type is attached to a destination mount of a given type.
Ram Pai9676f0c2005-11-07 17:21:20 -05001527 * ---------------------------------------------------------------------------
1528 * | BIND MOUNT OPERATION |
1529 * |**************************************************************************
1530 * | source-->| shared | private | slave | unbindable |
1531 * | dest | | | | |
1532 * | | | | | | |
1533 * | v | | | | |
1534 * |**************************************************************************
1535 * | shared | shared (++) | shared (+) | shared(+++)| invalid |
1536 * | | | | | |
1537 * |non-shared| shared (+) | private | slave (*) | invalid |
1538 * ***************************************************************************
Ram Paib90fa9a2005-11-07 17:19:50 -05001539 * A bind operation clones the source mount and mounts the clone on the
1540 * destination mount.
1541 *
1542 * (++) the cloned mount is propagated to all the mounts in the propagation
1543 * tree of the destination mount and the cloned mount is added to
1544 * the peer group of the source mount.
1545 * (+) the cloned mount is created under the destination mount and is marked
1546 * as shared. The cloned mount is added to the peer group of the source
1547 * mount.
Ram Pai5afe0022005-11-07 17:21:01 -05001548 * (+++) the mount is propagated to all the mounts in the propagation tree
1549 * of the destination mount and the cloned mount is made slave
1550 * of the same master as that of the source mount. The cloned mount
1551 * is marked as 'shared and slave'.
1552 * (*) the cloned mount is made a slave of the same master as that of the
1553 * source mount.
1554 *
Ram Pai9676f0c2005-11-07 17:21:20 -05001555 * ---------------------------------------------------------------------------
1556 * | MOVE MOUNT OPERATION |
1557 * |**************************************************************************
1558 * | source-->| shared | private | slave | unbindable |
1559 * | dest | | | | |
1560 * | | | | | | |
1561 * | v | | | | |
1562 * |**************************************************************************
1563 * | shared | shared (+) | shared (+) | shared(+++) | invalid |
1564 * | | | | | |
1565 * |non-shared| shared (+*) | private | slave (*) | unbindable |
1566 * ***************************************************************************
Ram Pai5afe0022005-11-07 17:21:01 -05001567 *
1568 * (+) the mount is moved to the destination. And is then propagated to
1569 * all the mounts in the propagation tree of the destination mount.
Ram Pai21444402005-11-07 17:20:03 -05001570 * (+*) the mount is moved to the destination.
Ram Pai5afe0022005-11-07 17:21:01 -05001571 * (+++) the mount is moved to the destination and is then propagated to
1572 * all the mounts belonging to the destination mount's propagation tree.
1573 * the mount is marked as 'shared and slave'.
1574 * (*) the mount continues to be a slave at the new location.
Ram Paib90fa9a2005-11-07 17:19:50 -05001575 *
1576 * if the source mount is a tree, the operations explained above is
1577 * applied to each mount in the tree.
1578 * Must be called without spinlocks held, since this function can sleep
1579 * in allocations.
1580 */
1581static int attach_recursive_mnt(struct vfsmount *source_mnt,
Al Viro1a390682008-03-21 20:48:19 -04001582 struct path *path, struct path *parent_path)
Ram Paib90fa9a2005-11-07 17:19:50 -05001583{
1584 LIST_HEAD(tree_list);
Al Viro1a390682008-03-21 20:48:19 -04001585 struct vfsmount *dest_mnt = path->mnt;
1586 struct dentry *dest_dentry = path->dentry;
Ram Paib90fa9a2005-11-07 17:19:50 -05001587 struct vfsmount *child, *p;
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001588 int err;
Ram Paib90fa9a2005-11-07 17:19:50 -05001589
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001590 if (IS_MNT_SHARED(dest_mnt)) {
1591 err = invent_group_ids(source_mnt, true);
1592 if (err)
1593 goto out;
1594 }
1595 err = propagate_mnt(dest_mnt, dest_dentry, source_mnt, &tree_list);
1596 if (err)
1597 goto out_cleanup_ids;
Ram Paib90fa9a2005-11-07 17:19:50 -05001598
Nick Piggin99b7db72010-08-18 04:37:39 +10001599 br_write_lock(vfsmount_lock);
Al Virodf1a1ad2010-01-16 12:57:40 -05001600
Ram Paib90fa9a2005-11-07 17:19:50 -05001601 if (IS_MNT_SHARED(dest_mnt)) {
1602 for (p = source_mnt; p; p = next_mnt(p, source_mnt))
1603 set_mnt_shared(p);
1604 }
Al Viro1a390682008-03-21 20:48:19 -04001605 if (parent_path) {
1606 detach_mnt(source_mnt, parent_path);
1607 attach_mnt(source_mnt, path);
Al Viroe5d67f02009-04-07 12:15:39 -04001608 touch_mnt_namespace(parent_path->mnt->mnt_ns);
Ram Pai21444402005-11-07 17:20:03 -05001609 } else {
1610 mnt_set_mountpoint(dest_mnt, dest_dentry, source_mnt);
1611 commit_tree(source_mnt);
1612 }
Ram Paib90fa9a2005-11-07 17:19:50 -05001613
1614 list_for_each_entry_safe(child, p, &tree_list, mnt_hash) {
1615 list_del_init(&child->mnt_hash);
1616 commit_tree(child);
1617 }
Nick Piggin99b7db72010-08-18 04:37:39 +10001618 br_write_unlock(vfsmount_lock);
1619
Ram Paib90fa9a2005-11-07 17:19:50 -05001620 return 0;
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001621
1622 out_cleanup_ids:
1623 if (IS_MNT_SHARED(dest_mnt))
1624 cleanup_group_ids(source_mnt, NULL);
1625 out:
1626 return err;
Ram Paib90fa9a2005-11-07 17:19:50 -05001627}
1628
Al Virob12cea92011-03-18 08:55:38 -04001629static int lock_mount(struct path *path)
1630{
1631 struct vfsmount *mnt;
1632retry:
1633 mutex_lock(&path->dentry->d_inode->i_mutex);
1634 if (unlikely(cant_mount(path->dentry))) {
1635 mutex_unlock(&path->dentry->d_inode->i_mutex);
1636 return -ENOENT;
1637 }
1638 down_write(&namespace_sem);
1639 mnt = lookup_mnt(path);
1640 if (likely(!mnt))
1641 return 0;
1642 up_write(&namespace_sem);
1643 mutex_unlock(&path->dentry->d_inode->i_mutex);
1644 path_put(path);
1645 path->mnt = mnt;
1646 path->dentry = dget(mnt->mnt_root);
1647 goto retry;
1648}
1649
1650static void unlock_mount(struct path *path)
1651{
1652 up_write(&namespace_sem);
1653 mutex_unlock(&path->dentry->d_inode->i_mutex);
1654}
1655
Al Viro8c3ee422008-03-22 18:00:39 -04001656static int graft_tree(struct vfsmount *mnt, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 if (mnt->mnt_sb->s_flags & MS_NOUSER)
1659 return -EINVAL;
1660
Al Viro8c3ee422008-03-22 18:00:39 -04001661 if (S_ISDIR(path->dentry->d_inode->i_mode) !=
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 S_ISDIR(mnt->mnt_root->d_inode->i_mode))
1663 return -ENOTDIR;
1664
Al Virob12cea92011-03-18 08:55:38 -04001665 if (d_unlinked(path->dentry))
1666 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
Al Virob12cea92011-03-18 08:55:38 -04001668 return attach_recursive_mnt(mnt, path, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669}
1670
1671/*
Valerie Aurora7a2e8a82010-08-26 11:07:22 -07001672 * Sanity check the flags to change_mnt_propagation.
1673 */
1674
1675static int flags_to_propagation_type(int flags)
1676{
Roman Borisov7c6e9842011-05-25 16:26:48 -07001677 int type = flags & ~(MS_REC | MS_SILENT);
Valerie Aurora7a2e8a82010-08-26 11:07:22 -07001678
1679 /* Fail if any non-propagation flags are set */
1680 if (type & ~(MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
1681 return 0;
1682 /* Only one propagation flag should be set */
1683 if (!is_power_of_2(type))
1684 return 0;
1685 return type;
1686}
1687
1688/*
Ram Pai07b20882005-11-07 17:19:07 -05001689 * recursively change the type of the mountpoint.
1690 */
Al Viro0a0d8a42008-08-02 00:55:27 -04001691static int do_change_type(struct path *path, int flag)
Ram Pai07b20882005-11-07 17:19:07 -05001692{
Al Viro2d92ab32008-08-02 00:51:11 -04001693 struct vfsmount *m, *mnt = path->mnt;
Ram Pai07b20882005-11-07 17:19:07 -05001694 int recurse = flag & MS_REC;
Valerie Aurora7a2e8a82010-08-26 11:07:22 -07001695 int type;
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001696 int err = 0;
Ram Pai07b20882005-11-07 17:19:07 -05001697
Miklos Szerediee6f9582007-05-08 00:30:40 -07001698 if (!capable(CAP_SYS_ADMIN))
1699 return -EPERM;
1700
Al Viro2d92ab32008-08-02 00:51:11 -04001701 if (path->dentry != path->mnt->mnt_root)
Ram Pai07b20882005-11-07 17:19:07 -05001702 return -EINVAL;
1703
Valerie Aurora7a2e8a82010-08-26 11:07:22 -07001704 type = flags_to_propagation_type(flag);
1705 if (!type)
1706 return -EINVAL;
1707
Ram Pai07b20882005-11-07 17:19:07 -05001708 down_write(&namespace_sem);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001709 if (type == MS_SHARED) {
1710 err = invent_group_ids(mnt, recurse);
1711 if (err)
1712 goto out_unlock;
1713 }
1714
Nick Piggin99b7db72010-08-18 04:37:39 +10001715 br_write_lock(vfsmount_lock);
Ram Pai07b20882005-11-07 17:19:07 -05001716 for (m = mnt; m; m = (recurse ? next_mnt(m, mnt) : NULL))
1717 change_mnt_propagation(m, type);
Nick Piggin99b7db72010-08-18 04:37:39 +10001718 br_write_unlock(vfsmount_lock);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001719
1720 out_unlock:
Ram Pai07b20882005-11-07 17:19:07 -05001721 up_write(&namespace_sem);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001722 return err;
Ram Pai07b20882005-11-07 17:19:07 -05001723}
1724
1725/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 * do loopback mount.
1727 */
Al Viro0a0d8a42008-08-02 00:55:27 -04001728static int do_loopback(struct path *path, char *old_name,
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001729 int recurse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730{
Al Virob12cea92011-03-18 08:55:38 -04001731 LIST_HEAD(umount_list);
Al Viro2d92ab32008-08-02 00:51:11 -04001732 struct path old_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 struct vfsmount *mnt = NULL;
Al Viro2d92ab32008-08-02 00:51:11 -04001734 int err = mount_is_safe(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 if (err)
1736 return err;
1737 if (!old_name || !*old_name)
1738 return -EINVAL;
Trond Myklebust815d4052011-09-26 20:36:09 -04001739 err = kern_path(old_name, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 if (err)
1741 return err;
1742
Al Virob12cea92011-03-18 08:55:38 -04001743 err = lock_mount(path);
1744 if (err)
Jan Blunck4ac91372008-02-14 19:34:32 -08001745 goto out;
Ram Pai9676f0c2005-11-07 17:21:20 -05001746
Al Virob12cea92011-03-18 08:55:38 -04001747 err = -EINVAL;
1748 if (IS_MNT_UNBINDABLE(old_path.mnt))
1749 goto out2;
1750
Al Viro2d92ab32008-08-02 00:51:11 -04001751 if (!check_mnt(path->mnt) || !check_mnt(old_path.mnt))
Al Virob12cea92011-03-18 08:55:38 -04001752 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Al Viroccd48bc2005-11-07 17:15:04 -05001754 err = -ENOMEM;
1755 if (recurse)
Al Viro2d92ab32008-08-02 00:51:11 -04001756 mnt = copy_tree(old_path.mnt, old_path.dentry, 0);
Al Viroccd48bc2005-11-07 17:15:04 -05001757 else
Al Viro2d92ab32008-08-02 00:51:11 -04001758 mnt = clone_mnt(old_path.mnt, old_path.dentry, 0);
Al Viroccd48bc2005-11-07 17:15:04 -05001759
1760 if (!mnt)
Al Virob12cea92011-03-18 08:55:38 -04001761 goto out2;
Al Viroccd48bc2005-11-07 17:15:04 -05001762
Al Viro2d92ab32008-08-02 00:51:11 -04001763 err = graft_tree(mnt, path);
Al Viroccd48bc2005-11-07 17:15:04 -05001764 if (err) {
Nick Piggin99b7db72010-08-18 04:37:39 +10001765 br_write_lock(vfsmount_lock);
Ram Paia05964f2005-11-07 17:20:17 -05001766 umount_tree(mnt, 0, &umount_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10001767 br_write_unlock(vfsmount_lock);
Ram Pai5b83d2c5c2005-11-07 17:16:29 -05001768 }
Al Virob12cea92011-03-18 08:55:38 -04001769out2:
1770 unlock_mount(path);
1771 release_mounts(&umount_list);
Al Viroccd48bc2005-11-07 17:15:04 -05001772out:
Al Viro2d92ab32008-08-02 00:51:11 -04001773 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 return err;
1775}
1776
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08001777static int change_mount_flags(struct vfsmount *mnt, int ms_flags)
1778{
1779 int error = 0;
1780 int readonly_request = 0;
1781
1782 if (ms_flags & MS_RDONLY)
1783 readonly_request = 1;
1784 if (readonly_request == __mnt_is_readonly(mnt))
1785 return 0;
1786
1787 if (readonly_request)
1788 error = mnt_make_readonly(mnt);
1789 else
1790 __mnt_unmake_readonly(mnt);
1791 return error;
1792}
1793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794/*
1795 * change filesystem flags. dir should be a physical root of filesystem.
1796 * If you've mounted a non-root directory somewhere and want to do remount
1797 * on it - tough luck.
1798 */
Al Viro0a0d8a42008-08-02 00:55:27 -04001799static int do_remount(struct path *path, int flags, int mnt_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 void *data)
1801{
1802 int err;
Al Viro2d92ab32008-08-02 00:51:11 -04001803 struct super_block *sb = path->mnt->mnt_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
1805 if (!capable(CAP_SYS_ADMIN))
1806 return -EPERM;
1807
Al Viro2d92ab32008-08-02 00:51:11 -04001808 if (!check_mnt(path->mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 return -EINVAL;
1810
Al Viro2d92ab32008-08-02 00:51:11 -04001811 if (path->dentry != path->mnt->mnt_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 return -EINVAL;
1813
Eric Parisff36fe22011-03-03 16:09:14 -05001814 err = security_sb_remount(sb, data);
1815 if (err)
1816 return err;
1817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 down_write(&sb->s_umount);
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08001819 if (flags & MS_BIND)
Al Viro2d92ab32008-08-02 00:51:11 -04001820 err = change_mount_flags(path->mnt, flags);
Al Viro4aa98cf2009-05-08 13:36:58 -04001821 else
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08001822 err = do_remount_sb(sb, flags, data, 0);
Al Viro7b43a792010-01-16 13:01:26 -05001823 if (!err) {
Nick Piggin99b7db72010-08-18 04:37:39 +10001824 br_write_lock(vfsmount_lock);
Valerie Aurora495d6c92010-01-26 14:20:47 -05001825 mnt_flags |= path->mnt->mnt_flags & MNT_PROPAGATION_MASK;
Al Viro2d92ab32008-08-02 00:51:11 -04001826 path->mnt->mnt_flags = mnt_flags;
Nick Piggin99b7db72010-08-18 04:37:39 +10001827 br_write_unlock(vfsmount_lock);
Al Viro7b43a792010-01-16 13:01:26 -05001828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 up_write(&sb->s_umount);
Dan Williams0e55a7c2008-09-26 19:01:20 -07001830 if (!err) {
Nick Piggin99b7db72010-08-18 04:37:39 +10001831 br_write_lock(vfsmount_lock);
Dan Williams0e55a7c2008-09-26 19:01:20 -07001832 touch_mnt_namespace(path->mnt->mnt_ns);
Nick Piggin99b7db72010-08-18 04:37:39 +10001833 br_write_unlock(vfsmount_lock);
Dan Williams0e55a7c2008-09-26 19:01:20 -07001834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 return err;
1836}
1837
Ram Pai9676f0c2005-11-07 17:21:20 -05001838static inline int tree_contains_unbindable(struct vfsmount *mnt)
1839{
1840 struct vfsmount *p;
1841 for (p = mnt; p; p = next_mnt(p, mnt)) {
1842 if (IS_MNT_UNBINDABLE(p))
1843 return 1;
1844 }
1845 return 0;
1846}
1847
Al Viro0a0d8a42008-08-02 00:55:27 -04001848static int do_move_mount(struct path *path, char *old_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849{
Al Viro2d92ab32008-08-02 00:51:11 -04001850 struct path old_path, parent_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 struct vfsmount *p;
1852 int err = 0;
1853 if (!capable(CAP_SYS_ADMIN))
1854 return -EPERM;
1855 if (!old_name || !*old_name)
1856 return -EINVAL;
Al Viro2d92ab32008-08-02 00:51:11 -04001857 err = kern_path(old_name, LOOKUP_FOLLOW, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 if (err)
1859 return err;
1860
Al Virob12cea92011-03-18 08:55:38 -04001861 err = lock_mount(path);
David Howellscc53ce52011-01-14 18:45:26 +00001862 if (err < 0)
1863 goto out;
1864
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 err = -EINVAL;
Al Viro2d92ab32008-08-02 00:51:11 -04001866 if (!check_mnt(path->mnt) || !check_mnt(old_path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 goto out1;
1868
Alexey Dobriyanf3da3922009-05-04 03:32:03 +04001869 if (d_unlinked(path->dentry))
Ram Pai21444402005-11-07 17:20:03 -05001870 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
1872 err = -EINVAL;
Al Viro2d92ab32008-08-02 00:51:11 -04001873 if (old_path.dentry != old_path.mnt->mnt_root)
Ram Pai21444402005-11-07 17:20:03 -05001874 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Al Virob2dba1a2011-11-23 19:26:23 -05001876 if (!mnt_has_parent(old_path.mnt))
Ram Pai21444402005-11-07 17:20:03 -05001877 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Al Viro2d92ab32008-08-02 00:51:11 -04001879 if (S_ISDIR(path->dentry->d_inode->i_mode) !=
1880 S_ISDIR(old_path.dentry->d_inode->i_mode))
Ram Pai21444402005-11-07 17:20:03 -05001881 goto out1;
1882 /*
1883 * Don't move a mount residing in a shared parent.
1884 */
Al Viroafac7cb2011-11-23 19:34:49 -05001885 if (IS_MNT_SHARED(old_path.mnt->mnt_parent))
Ram Pai21444402005-11-07 17:20:03 -05001886 goto out1;
Ram Pai9676f0c2005-11-07 17:21:20 -05001887 /*
1888 * Don't move a mount tree containing unbindable mounts to a destination
1889 * mount which is shared.
1890 */
Al Viro2d92ab32008-08-02 00:51:11 -04001891 if (IS_MNT_SHARED(path->mnt) &&
1892 tree_contains_unbindable(old_path.mnt))
Ram Pai9676f0c2005-11-07 17:21:20 -05001893 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 err = -ELOOP;
Al Virob2dba1a2011-11-23 19:26:23 -05001895 for (p = path->mnt; mnt_has_parent(p); p = p->mnt_parent)
Al Viro2d92ab32008-08-02 00:51:11 -04001896 if (p == old_path.mnt)
Ram Pai21444402005-11-07 17:20:03 -05001897 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
Al Viro2d92ab32008-08-02 00:51:11 -04001899 err = attach_recursive_mnt(old_path.mnt, path, &parent_path);
Jan Blunck4ac91372008-02-14 19:34:32 -08001900 if (err)
Ram Pai21444402005-11-07 17:20:03 -05001901 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
1903 /* if the mount is moved, it should no longer be expire
1904 * automatically */
Al Viro2d92ab32008-08-02 00:51:11 -04001905 list_del_init(&old_path.mnt->mnt_expire);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906out1:
Al Virob12cea92011-03-18 08:55:38 -04001907 unlock_mount(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 if (!err)
Al Viro1a390682008-03-21 20:48:19 -04001910 path_put(&parent_path);
Al Viro2d92ab32008-08-02 00:51:11 -04001911 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 return err;
1913}
1914
Al Viro9d412a42011-03-17 22:08:28 -04001915static struct vfsmount *fs_set_subtype(struct vfsmount *mnt, const char *fstype)
1916{
1917 int err;
1918 const char *subtype = strchr(fstype, '.');
1919 if (subtype) {
1920 subtype++;
1921 err = -EINVAL;
1922 if (!subtype[0])
1923 goto err;
1924 } else
1925 subtype = "";
1926
1927 mnt->mnt_sb->s_subtype = kstrdup(subtype, GFP_KERNEL);
1928 err = -ENOMEM;
1929 if (!mnt->mnt_sb->s_subtype)
1930 goto err;
1931 return mnt;
1932
1933 err:
1934 mntput(mnt);
1935 return ERR_PTR(err);
1936}
1937
Al Viro79e801a2011-12-12 23:07:05 -05001938static struct vfsmount *
Al Viro9d412a42011-03-17 22:08:28 -04001939do_kern_mount(const char *fstype, int flags, const char *name, void *data)
1940{
1941 struct file_system_type *type = get_fs_type(fstype);
1942 struct vfsmount *mnt;
1943 if (!type)
1944 return ERR_PTR(-ENODEV);
1945 mnt = vfs_kern_mount(type, flags, name, data);
1946 if (!IS_ERR(mnt) && (type->fs_flags & FS_HAS_SUBTYPE) &&
1947 !mnt->mnt_sb->s_subtype)
1948 mnt = fs_set_subtype(mnt, fstype);
1949 put_filesystem(type);
1950 return mnt;
1951}
Al Viro9d412a42011-03-17 22:08:28 -04001952
1953/*
1954 * add a mount into a namespace's mount tree
1955 */
1956static int do_add_mount(struct vfsmount *newmnt, struct path *path, int mnt_flags)
1957{
1958 int err;
1959
1960 mnt_flags &= ~(MNT_SHARED | MNT_WRITE_HOLD | MNT_INTERNAL);
1961
Al Virob12cea92011-03-18 08:55:38 -04001962 err = lock_mount(path);
1963 if (err)
1964 return err;
Al Viro9d412a42011-03-17 22:08:28 -04001965
1966 err = -EINVAL;
1967 if (!(mnt_flags & MNT_SHRINKABLE) && !check_mnt(path->mnt))
1968 goto unlock;
1969
1970 /* Refuse the same filesystem on the same mount point */
1971 err = -EBUSY;
1972 if (path->mnt->mnt_sb == newmnt->mnt_sb &&
1973 path->mnt->mnt_root == path->dentry)
1974 goto unlock;
1975
1976 err = -EINVAL;
1977 if (S_ISLNK(newmnt->mnt_root->d_inode->i_mode))
1978 goto unlock;
1979
1980 newmnt->mnt_flags = mnt_flags;
1981 err = graft_tree(newmnt, path);
1982
1983unlock:
Al Virob12cea92011-03-18 08:55:38 -04001984 unlock_mount(path);
Al Viro9d412a42011-03-17 22:08:28 -04001985 return err;
1986}
Al Virob1e75df2011-01-17 01:47:59 -05001987
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988/*
1989 * create a new mount for userspace and request it to be added into the
1990 * namespace's tree
1991 */
Al Viro0a0d8a42008-08-02 00:55:27 -04001992static int do_new_mount(struct path *path, char *type, int flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 int mnt_flags, char *name, void *data)
1994{
1995 struct vfsmount *mnt;
Al Viro15f9a3f2011-01-17 01:41:58 -05001996 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
Vegard Nossumeca6f532009-09-18 13:05:45 -07001998 if (!type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 return -EINVAL;
2000
2001 /* we need capabilities... */
2002 if (!capable(CAP_SYS_ADMIN))
2003 return -EPERM;
2004
2005 mnt = do_kern_mount(type, flags, name, data);
2006 if (IS_ERR(mnt))
2007 return PTR_ERR(mnt);
2008
Al Viro15f9a3f2011-01-17 01:41:58 -05002009 err = do_add_mount(mnt, path, mnt_flags);
2010 if (err)
2011 mntput(mnt);
2012 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013}
2014
Al Viro19a167a2011-01-17 01:35:23 -05002015int finish_automount(struct vfsmount *m, struct path *path)
2016{
2017 int err;
2018 /* The new mount record should have at least 2 refs to prevent it being
2019 * expired before we get a chance to add it
2020 */
2021 BUG_ON(mnt_get_count(m) < 2);
2022
2023 if (m->mnt_sb == path->mnt->mnt_sb &&
2024 m->mnt_root == path->dentry) {
Al Virob1e75df2011-01-17 01:47:59 -05002025 err = -ELOOP;
2026 goto fail;
Al Viro19a167a2011-01-17 01:35:23 -05002027 }
2028
Al Viro19a167a2011-01-17 01:35:23 -05002029 err = do_add_mount(m, path, path->mnt->mnt_flags | MNT_SHRINKABLE);
Al Virob1e75df2011-01-17 01:47:59 -05002030 if (!err)
2031 return 0;
2032fail:
2033 /* remove m from any expiration list it may be on */
2034 if (!list_empty(&m->mnt_expire)) {
2035 down_write(&namespace_sem);
2036 br_write_lock(vfsmount_lock);
2037 list_del_init(&m->mnt_expire);
2038 br_write_unlock(vfsmount_lock);
2039 up_write(&namespace_sem);
Al Viro19a167a2011-01-17 01:35:23 -05002040 }
Al Virob1e75df2011-01-17 01:47:59 -05002041 mntput(m);
2042 mntput(m);
Al Viro19a167a2011-01-17 01:35:23 -05002043 return err;
2044}
2045
David Howellsea5b7782011-01-14 19:10:03 +00002046/**
2047 * mnt_set_expiry - Put a mount on an expiration list
2048 * @mnt: The mount to list.
2049 * @expiry_list: The list to add the mount to.
2050 */
2051void mnt_set_expiry(struct vfsmount *mnt, struct list_head *expiry_list)
2052{
2053 down_write(&namespace_sem);
2054 br_write_lock(vfsmount_lock);
2055
2056 list_add_tail(&mnt->mnt_expire, expiry_list);
2057
2058 br_write_unlock(vfsmount_lock);
2059 up_write(&namespace_sem);
2060}
2061EXPORT_SYMBOL(mnt_set_expiry);
2062
2063/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 * process a list of expirable mountpoints with the intent of discarding any
2065 * mountpoints that aren't in use and haven't been touched since last we came
2066 * here
2067 */
2068void mark_mounts_for_expiry(struct list_head *mounts)
2069{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 struct vfsmount *mnt, *next;
2071 LIST_HEAD(graveyard);
Al Virobcc5c7d2008-03-22 00:21:53 -04002072 LIST_HEAD(umounts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
2074 if (list_empty(mounts))
2075 return;
2076
Al Virobcc5c7d2008-03-22 00:21:53 -04002077 down_write(&namespace_sem);
Nick Piggin99b7db72010-08-18 04:37:39 +10002078 br_write_lock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
2080 /* extract from the expiration list every vfsmount that matches the
2081 * following criteria:
2082 * - only referenced by its parent vfsmount
2083 * - still marked for expiry (marked on the last call here; marks are
2084 * cleared by mntput())
2085 */
Miklos Szeredi55e700b2005-07-07 17:57:30 -07002086 list_for_each_entry_safe(mnt, next, mounts, mnt_expire) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 if (!xchg(&mnt->mnt_expiry_mark, 1) ||
Al Virobcc5c7d2008-03-22 00:21:53 -04002088 propagate_mount_busy(mnt, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 continue;
Miklos Szeredi55e700b2005-07-07 17:57:30 -07002090 list_move(&mnt->mnt_expire, &graveyard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 }
Al Virobcc5c7d2008-03-22 00:21:53 -04002092 while (!list_empty(&graveyard)) {
2093 mnt = list_first_entry(&graveyard, struct vfsmount, mnt_expire);
2094 touch_mnt_namespace(mnt->mnt_ns);
2095 umount_tree(mnt, 1, &umounts);
2096 }
Nick Piggin99b7db72010-08-18 04:37:39 +10002097 br_write_unlock(vfsmount_lock);
Al Virobcc5c7d2008-03-22 00:21:53 -04002098 up_write(&namespace_sem);
2099
2100 release_mounts(&umounts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101}
2102
2103EXPORT_SYMBOL_GPL(mark_mounts_for_expiry);
2104
2105/*
Trond Myklebust5528f9112006-06-09 09:34:17 -04002106 * Ripoff of 'select_parent()'
2107 *
2108 * search the list of submounts for a given mountpoint, and move any
2109 * shrinkable submounts to the 'graveyard' list.
2110 */
2111static int select_submounts(struct vfsmount *parent, struct list_head *graveyard)
2112{
2113 struct vfsmount *this_parent = parent;
2114 struct list_head *next;
2115 int found = 0;
2116
2117repeat:
2118 next = this_parent->mnt_mounts.next;
2119resume:
2120 while (next != &this_parent->mnt_mounts) {
2121 struct list_head *tmp = next;
2122 struct vfsmount *mnt = list_entry(tmp, struct vfsmount, mnt_child);
2123
2124 next = tmp->next;
2125 if (!(mnt->mnt_flags & MNT_SHRINKABLE))
2126 continue;
2127 /*
2128 * Descend a level if the d_mounts list is non-empty.
2129 */
2130 if (!list_empty(&mnt->mnt_mounts)) {
2131 this_parent = mnt;
2132 goto repeat;
2133 }
2134
2135 if (!propagate_mount_busy(mnt, 1)) {
Trond Myklebust5528f9112006-06-09 09:34:17 -04002136 list_move_tail(&mnt->mnt_expire, graveyard);
2137 found++;
2138 }
2139 }
2140 /*
2141 * All done at this level ... ascend and resume the search
2142 */
2143 if (this_parent != parent) {
2144 next = this_parent->mnt_child.next;
2145 this_parent = this_parent->mnt_parent;
2146 goto resume;
2147 }
2148 return found;
2149}
2150
2151/*
2152 * process a list of expirable mountpoints with the intent of discarding any
2153 * submounts of a specific parent mountpoint
Nick Piggin99b7db72010-08-18 04:37:39 +10002154 *
2155 * vfsmount_lock must be held for write
Trond Myklebust5528f9112006-06-09 09:34:17 -04002156 */
Al Viroc35038b2008-03-22 00:46:23 -04002157static void shrink_submounts(struct vfsmount *mnt, struct list_head *umounts)
Trond Myklebust5528f9112006-06-09 09:34:17 -04002158{
2159 LIST_HEAD(graveyard);
Al Viroc35038b2008-03-22 00:46:23 -04002160 struct vfsmount *m;
Trond Myklebust5528f9112006-06-09 09:34:17 -04002161
Trond Myklebust5528f9112006-06-09 09:34:17 -04002162 /* extract submounts of 'mountpoint' from the expiration list */
Al Viroc35038b2008-03-22 00:46:23 -04002163 while (select_submounts(mnt, &graveyard)) {
Al Virobcc5c7d2008-03-22 00:21:53 -04002164 while (!list_empty(&graveyard)) {
Al Viroc35038b2008-03-22 00:46:23 -04002165 m = list_first_entry(&graveyard, struct vfsmount,
Al Virobcc5c7d2008-03-22 00:21:53 -04002166 mnt_expire);
Eric W. Biedermanafef80b2008-11-12 13:26:54 -08002167 touch_mnt_namespace(m->mnt_ns);
2168 umount_tree(m, 1, umounts);
Al Virobcc5c7d2008-03-22 00:21:53 -04002169 }
2170 }
Trond Myklebust5528f9112006-06-09 09:34:17 -04002171}
2172
Trond Myklebust5528f9112006-06-09 09:34:17 -04002173/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 * Some copy_from_user() implementations do not return the exact number of
2175 * bytes remaining to copy on a fault. But copy_mount_options() requires that.
2176 * Note that this function differs from copy_from_user() in that it will oops
2177 * on bad values of `to', rather than returning a short copy.
2178 */
Ram Paib58fed82005-11-07 17:16:09 -05002179static long exact_copy_from_user(void *to, const void __user * from,
2180 unsigned long n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181{
2182 char *t = to;
2183 const char __user *f = from;
2184 char c;
2185
2186 if (!access_ok(VERIFY_READ, from, n))
2187 return n;
2188
2189 while (n) {
2190 if (__get_user(c, f)) {
2191 memset(t, 0, n);
2192 break;
2193 }
2194 *t++ = c;
2195 f++;
2196 n--;
2197 }
2198 return n;
2199}
2200
Ram Paib58fed82005-11-07 17:16:09 -05002201int copy_mount_options(const void __user * data, unsigned long *where)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202{
2203 int i;
2204 unsigned long page;
2205 unsigned long size;
Ram Paib58fed82005-11-07 17:16:09 -05002206
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 *where = 0;
2208 if (!data)
2209 return 0;
2210
2211 if (!(page = __get_free_page(GFP_KERNEL)))
2212 return -ENOMEM;
2213
2214 /* We only care that *some* data at the address the user
2215 * gave us is valid. Just in case, we'll zero
2216 * the remainder of the page.
2217 */
2218 /* copy_from_user cannot cross TASK_SIZE ! */
2219 size = TASK_SIZE - (unsigned long)data;
2220 if (size > PAGE_SIZE)
2221 size = PAGE_SIZE;
2222
2223 i = size - exact_copy_from_user((void *)page, data, size);
2224 if (!i) {
Ram Paib58fed82005-11-07 17:16:09 -05002225 free_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 return -EFAULT;
2227 }
2228 if (i != PAGE_SIZE)
2229 memset((char *)page + i, 0, PAGE_SIZE - i);
2230 *where = page;
2231 return 0;
2232}
2233
Vegard Nossumeca6f532009-09-18 13:05:45 -07002234int copy_mount_string(const void __user *data, char **where)
2235{
2236 char *tmp;
2237
2238 if (!data) {
2239 *where = NULL;
2240 return 0;
2241 }
2242
2243 tmp = strndup_user(data, PAGE_SIZE);
2244 if (IS_ERR(tmp))
2245 return PTR_ERR(tmp);
2246
2247 *where = tmp;
2248 return 0;
2249}
2250
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251/*
2252 * Flags is a 32-bit value that allows up to 31 non-fs dependent flags to
2253 * be given to the mount() call (ie: read-only, no-dev, no-suid etc).
2254 *
2255 * data is a (void *) that can point to any structure up to
2256 * PAGE_SIZE-1 bytes, which can contain arbitrary fs-dependent
2257 * information (or be NULL).
2258 *
2259 * Pre-0.97 versions of mount() didn't have a flags word.
2260 * When the flags word was introduced its top half was required
2261 * to have the magic value 0xC0ED, and this remained so until 2.4.0-test9.
2262 * Therefore, if this magic number is present, it carries no information
2263 * and must be discarded.
2264 */
Ram Paib58fed82005-11-07 17:16:09 -05002265long do_mount(char *dev_name, char *dir_name, char *type_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 unsigned long flags, void *data_page)
2267{
Al Viro2d92ab32008-08-02 00:51:11 -04002268 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 int retval = 0;
2270 int mnt_flags = 0;
2271
2272 /* Discard magic */
2273 if ((flags & MS_MGC_MSK) == MS_MGC_VAL)
2274 flags &= ~MS_MGC_MSK;
2275
2276 /* Basic sanity checks */
2277
2278 if (!dir_name || !*dir_name || !memchr(dir_name, 0, PAGE_SIZE))
2279 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
2281 if (data_page)
2282 ((char *)data_page)[PAGE_SIZE - 1] = 0;
2283
Tetsuo Handaa27ab9f22009-10-04 21:49:49 +09002284 /* ... and get the mountpoint */
2285 retval = kern_path(dir_name, LOOKUP_FOLLOW, &path);
2286 if (retval)
2287 return retval;
2288
2289 retval = security_sb_mount(dev_name, &path,
2290 type_page, flags, data_page);
2291 if (retval)
2292 goto dput_out;
2293
Andi Kleen613cbe32009-04-19 18:40:43 +02002294 /* Default to relatime unless overriden */
2295 if (!(flags & MS_NOATIME))
2296 mnt_flags |= MNT_RELATIME;
Matthew Garrett0a1c01c2009-03-26 17:53:14 +00002297
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 /* Separate the per-mountpoint flags */
2299 if (flags & MS_NOSUID)
2300 mnt_flags |= MNT_NOSUID;
2301 if (flags & MS_NODEV)
2302 mnt_flags |= MNT_NODEV;
2303 if (flags & MS_NOEXEC)
2304 mnt_flags |= MNT_NOEXEC;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08002305 if (flags & MS_NOATIME)
2306 mnt_flags |= MNT_NOATIME;
2307 if (flags & MS_NODIRATIME)
2308 mnt_flags |= MNT_NODIRATIME;
Matthew Garrettd0adde52009-03-26 17:49:56 +00002309 if (flags & MS_STRICTATIME)
2310 mnt_flags &= ~(MNT_RELATIME | MNT_NOATIME);
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08002311 if (flags & MS_RDONLY)
2312 mnt_flags |= MNT_READONLY;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08002313
Al Viro7a4dec52010-08-09 12:05:43 -04002314 flags &= ~(MS_NOSUID | MS_NOEXEC | MS_NODEV | MS_ACTIVE | MS_BORN |
Matthew Garrettd0adde52009-03-26 17:49:56 +00002315 MS_NOATIME | MS_NODIRATIME | MS_RELATIME| MS_KERNMOUNT |
2316 MS_STRICTATIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 if (flags & MS_REMOUNT)
Al Viro2d92ab32008-08-02 00:51:11 -04002319 retval = do_remount(&path, flags & ~MS_REMOUNT, mnt_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 data_page);
2321 else if (flags & MS_BIND)
Al Viro2d92ab32008-08-02 00:51:11 -04002322 retval = do_loopback(&path, dev_name, flags & MS_REC);
Ram Pai9676f0c2005-11-07 17:21:20 -05002323 else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
Al Viro2d92ab32008-08-02 00:51:11 -04002324 retval = do_change_type(&path, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 else if (flags & MS_MOVE)
Al Viro2d92ab32008-08-02 00:51:11 -04002326 retval = do_move_mount(&path, dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 else
Al Viro2d92ab32008-08-02 00:51:11 -04002328 retval = do_new_mount(&path, type_page, flags, mnt_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 dev_name, data_page);
2330dput_out:
Al Viro2d92ab32008-08-02 00:51:11 -04002331 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 return retval;
2333}
2334
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002335static struct mnt_namespace *alloc_mnt_ns(void)
2336{
2337 struct mnt_namespace *new_ns;
2338
2339 new_ns = kmalloc(sizeof(struct mnt_namespace), GFP_KERNEL);
2340 if (!new_ns)
2341 return ERR_PTR(-ENOMEM);
2342 atomic_set(&new_ns->count, 1);
2343 new_ns->root = NULL;
2344 INIT_LIST_HEAD(&new_ns->list);
2345 init_waitqueue_head(&new_ns->poll);
2346 new_ns->event = 0;
2347 return new_ns;
2348}
2349
Al Virof03c6592011-01-14 22:30:21 -05002350void mnt_make_longterm(struct vfsmount *mnt)
2351{
Al Viro7e3d0eb02011-01-16 16:32:11 -05002352 __mnt_make_longterm(mnt);
Al Virof03c6592011-01-14 22:30:21 -05002353}
2354
2355void mnt_make_shortterm(struct vfsmount *mnt)
2356{
Al Viro7e3d0eb02011-01-16 16:32:11 -05002357#ifdef CONFIG_SMP
Al Virof03c6592011-01-14 22:30:21 -05002358 if (atomic_add_unless(&mnt->mnt_longterm, -1, 1))
2359 return;
2360 br_write_lock(vfsmount_lock);
2361 atomic_dec(&mnt->mnt_longterm);
2362 br_write_unlock(vfsmount_lock);
Al Viro7e3d0eb02011-01-16 16:32:11 -05002363#endif
Al Virof03c6592011-01-14 22:30:21 -05002364}
2365
JANAK DESAI741a2952006-02-07 12:59:00 -08002366/*
2367 * Allocate a new namespace structure and populate it with contents
2368 * copied from the namespace of the passed in task structure.
2369 */
Badari Pulavartye3222c42007-05-08 00:25:21 -07002370static struct mnt_namespace *dup_mnt_ns(struct mnt_namespace *mnt_ns,
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002371 struct fs_struct *fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002373 struct mnt_namespace *new_ns;
Al Viro7f2da1e2008-05-10 20:44:54 -04002374 struct vfsmount *rootmnt = NULL, *pwdmnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 struct vfsmount *p, *q;
2376
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002377 new_ns = alloc_mnt_ns();
2378 if (IS_ERR(new_ns))
2379 return new_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380
Ram Pai390c6842005-11-07 17:17:51 -05002381 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 /* First pass: copy the tree topology */
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002383 new_ns->root = copy_tree(mnt_ns->root, mnt_ns->root->mnt_root,
Ram Pai9676f0c2005-11-07 17:21:20 -05002384 CL_COPY_ALL | CL_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 if (!new_ns->root) {
Ram Pai390c6842005-11-07 17:17:51 -05002386 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 kfree(new_ns);
Julia Lawall5cc4a032008-12-01 14:34:51 -08002388 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 }
Nick Piggin99b7db72010-08-18 04:37:39 +10002390 br_write_lock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 list_add_tail(&new_ns->list, &new_ns->root->mnt_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10002392 br_write_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
2394 /*
2395 * Second pass: switch the tsk->fs->* elements and mark new vfsmounts
2396 * as belonging to new namespace. We have already acquired a private
2397 * fs_struct, so tsk->fs->lock is not needed.
2398 */
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002399 p = mnt_ns->root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 q = new_ns->root;
2401 while (p) {
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002402 q->mnt_ns = new_ns;
Al Viro7e3d0eb02011-01-16 16:32:11 -05002403 __mnt_make_longterm(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 if (fs) {
Jan Blunck6ac08c32008-02-14 19:34:38 -08002405 if (p == fs->root.mnt) {
Al Virof03c6592011-01-14 22:30:21 -05002406 fs->root.mnt = mntget(q);
Al Viro7e3d0eb02011-01-16 16:32:11 -05002407 __mnt_make_longterm(q);
Al Virof03c6592011-01-14 22:30:21 -05002408 mnt_make_shortterm(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 rootmnt = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 }
Jan Blunck6ac08c32008-02-14 19:34:38 -08002411 if (p == fs->pwd.mnt) {
Al Virof03c6592011-01-14 22:30:21 -05002412 fs->pwd.mnt = mntget(q);
Al Viro7e3d0eb02011-01-16 16:32:11 -05002413 __mnt_make_longterm(q);
Al Virof03c6592011-01-14 22:30:21 -05002414 mnt_make_shortterm(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 pwdmnt = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 }
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002418 p = next_mnt(p, mnt_ns->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 q = next_mnt(q, new_ns->root);
2420 }
Ram Pai390c6842005-11-07 17:17:51 -05002421 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 if (rootmnt)
Al Virof03c6592011-01-14 22:30:21 -05002424 mntput(rootmnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 if (pwdmnt)
Al Virof03c6592011-01-14 22:30:21 -05002426 mntput(pwdmnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
JANAK DESAI741a2952006-02-07 12:59:00 -08002428 return new_ns;
2429}
2430
Eric W. Biederman213dd262007-07-15 23:41:15 -07002431struct mnt_namespace *copy_mnt_ns(unsigned long flags, struct mnt_namespace *ns,
Badari Pulavartye3222c42007-05-08 00:25:21 -07002432 struct fs_struct *new_fs)
JANAK DESAI741a2952006-02-07 12:59:00 -08002433{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002434 struct mnt_namespace *new_ns;
JANAK DESAI741a2952006-02-07 12:59:00 -08002435
Badari Pulavartye3222c42007-05-08 00:25:21 -07002436 BUG_ON(!ns);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002437 get_mnt_ns(ns);
JANAK DESAI741a2952006-02-07 12:59:00 -08002438
2439 if (!(flags & CLONE_NEWNS))
Badari Pulavartye3222c42007-05-08 00:25:21 -07002440 return ns;
JANAK DESAI741a2952006-02-07 12:59:00 -08002441
Badari Pulavartye3222c42007-05-08 00:25:21 -07002442 new_ns = dup_mnt_ns(ns, new_fs);
JANAK DESAI741a2952006-02-07 12:59:00 -08002443
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002444 put_mnt_ns(ns);
Badari Pulavartye3222c42007-05-08 00:25:21 -07002445 return new_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446}
2447
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002448/**
2449 * create_mnt_ns - creates a private namespace and adds a root filesystem
2450 * @mnt: pointer to the new root filesystem mountpoint
2451 */
Al Viro6c449c82011-11-16 22:01:36 -05002452static struct mnt_namespace *create_mnt_ns(struct vfsmount *mnt)
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002453{
2454 struct mnt_namespace *new_ns;
2455
2456 new_ns = alloc_mnt_ns();
2457 if (!IS_ERR(new_ns)) {
2458 mnt->mnt_ns = new_ns;
Al Viro7e3d0eb02011-01-16 16:32:11 -05002459 __mnt_make_longterm(mnt);
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002460 new_ns->root = mnt;
2461 list_add(&new_ns->list, &new_ns->root->mnt_list);
Al Viroc1334492011-11-16 16:12:14 -05002462 } else {
2463 mntput(mnt);
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002464 }
2465 return new_ns;
2466}
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002467
Al Viroea441d12011-11-16 21:43:59 -05002468struct dentry *mount_subtree(struct vfsmount *mnt, const char *name)
2469{
2470 struct mnt_namespace *ns;
Al Virod31da0f2011-11-22 12:31:21 -05002471 struct super_block *s;
Al Viroea441d12011-11-16 21:43:59 -05002472 struct path path;
2473 int err;
2474
2475 ns = create_mnt_ns(mnt);
2476 if (IS_ERR(ns))
2477 return ERR_CAST(ns);
2478
2479 err = vfs_path_lookup(mnt->mnt_root, mnt,
2480 name, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &path);
2481
2482 put_mnt_ns(ns);
2483
2484 if (err)
2485 return ERR_PTR(err);
2486
2487 /* trade a vfsmount reference for active sb one */
Al Virod31da0f2011-11-22 12:31:21 -05002488 s = path.mnt->mnt_sb;
2489 atomic_inc(&s->s_active);
Al Viroea441d12011-11-16 21:43:59 -05002490 mntput(path.mnt);
2491 /* lock the sucker */
Al Virod31da0f2011-11-22 12:31:21 -05002492 down_write(&s->s_umount);
Al Viroea441d12011-11-16 21:43:59 -05002493 /* ... and return the root of (sub)tree on it */
2494 return path.dentry;
2495}
2496EXPORT_SYMBOL(mount_subtree);
2497
Heiko Carstensbdc480e2009-01-14 14:14:12 +01002498SYSCALL_DEFINE5(mount, char __user *, dev_name, char __user *, dir_name,
2499 char __user *, type, unsigned long, flags, void __user *, data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500{
Vegard Nossumeca6f532009-09-18 13:05:45 -07002501 int ret;
2502 char *kernel_type;
2503 char *kernel_dir;
2504 char *kernel_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 unsigned long data_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
Vegard Nossumeca6f532009-09-18 13:05:45 -07002507 ret = copy_mount_string(type, &kernel_type);
2508 if (ret < 0)
2509 goto out_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510
Vegard Nossumeca6f532009-09-18 13:05:45 -07002511 kernel_dir = getname(dir_name);
2512 if (IS_ERR(kernel_dir)) {
2513 ret = PTR_ERR(kernel_dir);
2514 goto out_dir;
2515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516
Vegard Nossumeca6f532009-09-18 13:05:45 -07002517 ret = copy_mount_string(dev_name, &kernel_dev);
2518 if (ret < 0)
2519 goto out_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
Vegard Nossumeca6f532009-09-18 13:05:45 -07002521 ret = copy_mount_options(data, &data_page);
2522 if (ret < 0)
2523 goto out_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
Vegard Nossumeca6f532009-09-18 13:05:45 -07002525 ret = do_mount(kernel_dev, kernel_dir, kernel_type, flags,
2526 (void *) data_page);
2527
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 free_page(data_page);
Vegard Nossumeca6f532009-09-18 13:05:45 -07002529out_data:
2530 kfree(kernel_dev);
2531out_dev:
2532 putname(kernel_dir);
2533out_dir:
2534 kfree(kernel_type);
2535out_type:
2536 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537}
2538
2539/*
Al Viroafac7cb2011-11-23 19:34:49 -05002540 * Return true if path is reachable from root
2541 *
2542 * namespace_sem or vfsmount_lock is held
2543 */
2544bool is_path_reachable(struct vfsmount *mnt, struct dentry *dentry,
2545 const struct path *root)
2546{
2547 while (mnt != root->mnt && mnt_has_parent(mnt)) {
2548 dentry = mnt->mnt_mountpoint;
2549 mnt = mnt->mnt_parent;
2550 }
2551 return mnt == root->mnt && is_subdir(dentry, root->dentry);
2552}
2553
2554int path_is_under(struct path *path1, struct path *path2)
2555{
2556 int res;
2557 br_read_lock(vfsmount_lock);
2558 res = is_path_reachable(path1->mnt, path1->dentry, path2);
2559 br_read_unlock(vfsmount_lock);
2560 return res;
2561}
2562EXPORT_SYMBOL(path_is_under);
2563
2564/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 * pivot_root Semantics:
2566 * Moves the root file system of the current process to the directory put_old,
2567 * makes new_root as the new root file system of the current process, and sets
2568 * root/cwd of all processes which had them on the current root to new_root.
2569 *
2570 * Restrictions:
2571 * The new_root and put_old must be directories, and must not be on the
2572 * same file system as the current process root. The put_old must be
2573 * underneath new_root, i.e. adding a non-zero number of /.. to the string
2574 * pointed to by put_old must yield the same directory as new_root. No other
2575 * file system may be mounted on put_old. After all, new_root is a mountpoint.
2576 *
Neil Brown4a0d11f2006-01-08 01:03:18 -08002577 * Also, the current root cannot be on the 'rootfs' (initial ramfs) filesystem.
2578 * See Documentation/filesystems/ramfs-rootfs-initramfs.txt for alternatives
2579 * in this situation.
2580 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 * Notes:
2582 * - we don't move root/cwd if they are not at the root (reason: if something
2583 * cared enough to change them, it's probably wrong to force them elsewhere)
2584 * - it's okay to pick a root that isn't the root of a file system, e.g.
2585 * /nfs/my_root where /nfs is the mount point. It must be a mountpoint,
2586 * though, so you may need to say mount --bind /nfs/my_root /nfs/my_root
2587 * first.
2588 */
Heiko Carstens3480b252009-01-14 14:14:16 +01002589SYSCALL_DEFINE2(pivot_root, const char __user *, new_root,
2590 const char __user *, put_old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591{
Al Viro2d8f3032008-07-22 09:59:21 -04002592 struct path new, old, parent_path, root_parent, root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 int error;
2594
2595 if (!capable(CAP_SYS_ADMIN))
2596 return -EPERM;
2597
Al Viro2d8f3032008-07-22 09:59:21 -04002598 error = user_path_dir(new_root, &new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 if (error)
2600 goto out0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
Al Viro2d8f3032008-07-22 09:59:21 -04002602 error = user_path_dir(put_old, &old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 if (error)
2604 goto out1;
2605
Al Viro2d8f3032008-07-22 09:59:21 -04002606 error = security_sb_pivotroot(&old, &new);
Al Virob12cea92011-03-18 08:55:38 -04002607 if (error)
2608 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
Miklos Szeredif7ad3c62010-08-10 11:41:36 +02002610 get_fs_root(current->fs, &root);
Al Virob12cea92011-03-18 08:55:38 -04002611 error = lock_mount(&old);
2612 if (error)
2613 goto out3;
2614
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 error = -EINVAL;
Al Viro2d8f3032008-07-22 09:59:21 -04002616 if (IS_MNT_SHARED(old.mnt) ||
2617 IS_MNT_SHARED(new.mnt->mnt_parent) ||
Al Viro8c3ee422008-03-22 18:00:39 -04002618 IS_MNT_SHARED(root.mnt->mnt_parent))
Al Virob12cea92011-03-18 08:55:38 -04002619 goto out4;
Al Viro27cb1572011-03-18 08:29:36 -04002620 if (!check_mnt(root.mnt) || !check_mnt(new.mnt))
Al Virob12cea92011-03-18 08:55:38 -04002621 goto out4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 error = -ENOENT;
Alexey Dobriyanf3da3922009-05-04 03:32:03 +04002623 if (d_unlinked(new.dentry))
Al Virob12cea92011-03-18 08:55:38 -04002624 goto out4;
Alexey Dobriyanf3da3922009-05-04 03:32:03 +04002625 if (d_unlinked(old.dentry))
Al Virob12cea92011-03-18 08:55:38 -04002626 goto out4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 error = -EBUSY;
Al Viro2d8f3032008-07-22 09:59:21 -04002628 if (new.mnt == root.mnt ||
2629 old.mnt == root.mnt)
Al Virob12cea92011-03-18 08:55:38 -04002630 goto out4; /* loop, on the same file system */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 error = -EINVAL;
Al Viro8c3ee422008-03-22 18:00:39 -04002632 if (root.mnt->mnt_root != root.dentry)
Al Virob12cea92011-03-18 08:55:38 -04002633 goto out4; /* not a mountpoint */
Al Virob2dba1a2011-11-23 19:26:23 -05002634 if (!mnt_has_parent(root.mnt))
Al Virob12cea92011-03-18 08:55:38 -04002635 goto out4; /* not attached */
Al Viro2d8f3032008-07-22 09:59:21 -04002636 if (new.mnt->mnt_root != new.dentry)
Al Virob12cea92011-03-18 08:55:38 -04002637 goto out4; /* not a mountpoint */
Al Virob2dba1a2011-11-23 19:26:23 -05002638 if (!mnt_has_parent(new.mnt))
Al Virob12cea92011-03-18 08:55:38 -04002639 goto out4; /* not attached */
Jan Blunck4ac91372008-02-14 19:34:32 -08002640 /* make sure we can reach put_old from new_root */
Al Viroafac7cb2011-11-23 19:34:49 -05002641 if (!is_path_reachable(old.mnt, old.dentry, &new))
Al Virob12cea92011-03-18 08:55:38 -04002642 goto out4;
Al Viro27cb1572011-03-18 08:29:36 -04002643 br_write_lock(vfsmount_lock);
Al Viro2d8f3032008-07-22 09:59:21 -04002644 detach_mnt(new.mnt, &parent_path);
Al Viro8c3ee422008-03-22 18:00:39 -04002645 detach_mnt(root.mnt, &root_parent);
Jan Blunck4ac91372008-02-14 19:34:32 -08002646 /* mount old root on put_old */
Al Viro2d8f3032008-07-22 09:59:21 -04002647 attach_mnt(root.mnt, &old);
Jan Blunck4ac91372008-02-14 19:34:32 -08002648 /* mount new_root on / */
Al Viro2d8f3032008-07-22 09:59:21 -04002649 attach_mnt(new.mnt, &root_parent);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002650 touch_mnt_namespace(current->nsproxy->mnt_ns);
Nick Piggin99b7db72010-08-18 04:37:39 +10002651 br_write_unlock(vfsmount_lock);
Al Viro2d8f3032008-07-22 09:59:21 -04002652 chroot_fs_refs(&root, &new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 error = 0;
Al Virob12cea92011-03-18 08:55:38 -04002654out4:
2655 unlock_mount(&old);
2656 if (!error) {
2657 path_put(&root_parent);
2658 path_put(&parent_path);
2659 }
2660out3:
Al Viro8c3ee422008-03-22 18:00:39 -04002661 path_put(&root);
Al Virob12cea92011-03-18 08:55:38 -04002662out2:
Al Viro2d8f3032008-07-22 09:59:21 -04002663 path_put(&old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664out1:
Al Viro2d8f3032008-07-22 09:59:21 -04002665 path_put(&new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666out0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668}
2669
2670static void __init init_mount_tree(void)
2671{
2672 struct vfsmount *mnt;
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002673 struct mnt_namespace *ns;
Jan Blunckac748a02008-02-14 19:34:39 -08002674 struct path root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
2676 mnt = do_kern_mount("rootfs", 0, "rootfs", NULL);
2677 if (IS_ERR(mnt))
2678 panic("Can't create rootfs");
Nick Pigginb3e19d92011-01-07 17:50:11 +11002679
Trond Myklebust3b22edc2009-06-23 17:29:49 -04002680 ns = create_mnt_ns(mnt);
2681 if (IS_ERR(ns))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 panic("Can't allocate initial namespace");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002684 init_task.nsproxy->mnt_ns = ns;
2685 get_mnt_ns(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686
Jan Blunckac748a02008-02-14 19:34:39 -08002687 root.mnt = ns->root;
2688 root.dentry = ns->root->mnt_root;
2689
2690 set_fs_pwd(current->fs, &root);
2691 set_fs_root(current->fs, &root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692}
2693
Denis Cheng74bf17c2007-10-16 23:26:30 -07002694void __init mnt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695{
Eric Dumazet13f14b42008-02-06 01:37:57 -08002696 unsigned u;
Randy Dunlap15a67dd2006-09-29 01:58:57 -07002697 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698
Ram Pai390c6842005-11-07 17:17:51 -05002699 init_rwsem(&namespace_sem);
2700
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 mnt_cache = kmem_cache_create("mnt_cache", sizeof(struct vfsmount),
Paul Mundt20c2df82007-07-20 10:11:58 +09002702 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703
Ram Paib58fed82005-11-07 17:16:09 -05002704 mount_hashtable = (struct list_head *)__get_free_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705
2706 if (!mount_hashtable)
2707 panic("Failed to allocate mount hash table\n");
2708
Mandeep Singh Baines80cdc6d2011-03-22 16:33:54 -07002709 printk(KERN_INFO "Mount-cache hash table entries: %lu\n", HASH_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
Eric Dumazet13f14b42008-02-06 01:37:57 -08002711 for (u = 0; u < HASH_SIZE; u++)
2712 INIT_LIST_HEAD(&mount_hashtable[u]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713
Nick Piggin99b7db72010-08-18 04:37:39 +10002714 br_lock_init(vfsmount_lock);
2715
Randy Dunlap15a67dd2006-09-29 01:58:57 -07002716 err = sysfs_init();
2717 if (err)
2718 printk(KERN_WARNING "%s: sysfs_init error: %d\n",
Harvey Harrison8e24eea2008-04-30 00:55:09 -07002719 __func__, err);
Greg Kroah-Hartman00d26662007-10-29 14:17:23 -06002720 fs_kobj = kobject_create_and_add("fs", NULL);
2721 if (!fs_kobj)
Harvey Harrison8e24eea2008-04-30 00:55:09 -07002722 printk(KERN_WARNING "%s: kobj create error\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 init_rootfs();
2724 init_mount_tree();
2725}
2726
Trond Myklebust616511d2009-06-22 15:09:13 -04002727void put_mnt_ns(struct mnt_namespace *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728{
Ram Pai70fbcdf2005-11-07 17:17:04 -05002729 LIST_HEAD(umount_list);
Trond Myklebust616511d2009-06-22 15:09:13 -04002730
Al Virod498b252010-02-05 02:21:06 -05002731 if (!atomic_dec_and_test(&ns->count))
Trond Myklebust616511d2009-06-22 15:09:13 -04002732 return;
Ram Pai390c6842005-11-07 17:17:51 -05002733 down_write(&namespace_sem);
Nick Piggin99b7db72010-08-18 04:37:39 +10002734 br_write_lock(vfsmount_lock);
Al Virod498b252010-02-05 02:21:06 -05002735 umount_tree(ns->root, 0, &umount_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10002736 br_write_unlock(vfsmount_lock);
Ram Pai390c6842005-11-07 17:17:51 -05002737 up_write(&namespace_sem);
Ram Pai70fbcdf2005-11-07 17:17:04 -05002738 release_mounts(&umount_list);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002739 kfree(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740}
Al Viro9d412a42011-03-17 22:08:28 -04002741
2742struct vfsmount *kern_mount_data(struct file_system_type *type, void *data)
2743{
Tim Chen423e0ab2011-07-19 09:32:38 -07002744 struct vfsmount *mnt;
2745 mnt = vfs_kern_mount(type, MS_KERNMOUNT, type->name, data);
2746 if (!IS_ERR(mnt)) {
2747 /*
2748 * it is a longterm mount, don't release mnt until
2749 * we unmount before file sys is unregistered
2750 */
2751 mnt_make_longterm(mnt);
2752 }
2753 return mnt;
Al Viro9d412a42011-03-17 22:08:28 -04002754}
2755EXPORT_SYMBOL_GPL(kern_mount_data);
Tim Chen423e0ab2011-07-19 09:32:38 -07002756
2757void kern_unmount(struct vfsmount *mnt)
2758{
2759 /* release long term mount so mount point can be released */
2760 if (!IS_ERR_OR_NULL(mnt)) {
2761 mnt_make_shortterm(mnt);
2762 mntput(mnt);
2763 }
2764}
2765EXPORT_SYMBOL(kern_unmount);
Al Viro02125a82011-12-05 08:43:34 -05002766
2767bool our_mnt(struct vfsmount *mnt)
2768{
2769 return check_mnt(mnt);
2770}