blob: 03b82350f020b94726add3807a9e6858ca03a1bd [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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141struct vfsmount *alloc_vfsmnt(const char *name)
142{
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800143 struct vfsmount *mnt = kmem_cache_zalloc(mnt_cache, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (mnt) {
Miklos Szeredi73cd49e2008-03-26 22:11:34 +0100145 int err;
146
147 err = mnt_alloc_id(mnt);
Li Zefan88b38782008-07-21 18:06:36 +0800148 if (err)
149 goto out_free_cache;
150
151 if (name) {
152 mnt->mnt_devname = kstrdup(name, GFP_KERNEL);
153 if (!mnt->mnt_devname)
154 goto out_free_id;
Miklos Szeredi73cd49e2008-03-26 22:11:34 +0100155 }
156
Ram Paib58fed82005-11-07 17:16:09 -0500157 atomic_set(&mnt->mnt_count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 INIT_LIST_HEAD(&mnt->mnt_hash);
159 INIT_LIST_HEAD(&mnt->mnt_child);
160 INIT_LIST_HEAD(&mnt->mnt_mounts);
161 INIT_LIST_HEAD(&mnt->mnt_list);
Miklos Szeredi55e700b2005-07-07 17:57:30 -0700162 INIT_LIST_HEAD(&mnt->mnt_expire);
Ram Pai03e06e62005-11-07 17:19:33 -0500163 INIT_LIST_HEAD(&mnt->mnt_share);
Ram Paia58b0eb2005-11-07 17:20:48 -0500164 INIT_LIST_HEAD(&mnt->mnt_slave_list);
165 INIT_LIST_HEAD(&mnt->mnt_slave);
Andreas Gruenbacher2504c5d2009-12-17 21:24:27 -0500166#ifdef CONFIG_FSNOTIFY
167 INIT_HLIST_HEAD(&mnt->mnt_fsnotify_marks);
168#endif
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000169#ifdef CONFIG_SMP
170 mnt->mnt_writers = alloc_percpu(int);
171 if (!mnt->mnt_writers)
172 goto out_free_devname;
173#else
174 mnt->mnt_writers = 0;
175#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
177 return mnt;
Li Zefan88b38782008-07-21 18:06:36 +0800178
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000179#ifdef CONFIG_SMP
180out_free_devname:
181 kfree(mnt->mnt_devname);
182#endif
Li Zefan88b38782008-07-21 18:06:36 +0800183out_free_id:
184 mnt_free_id(mnt);
185out_free_cache:
186 kmem_cache_free(mnt_cache, mnt);
187 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
Dave Hansen83660252008-02-15 14:37:30 -0800190/*
191 * Most r/o checks on a fs are for operations that take
192 * discrete amounts of time, like a write() or unlink().
193 * We must keep track of when those operations start
194 * (for permission checks) and when they end, so that
195 * we can determine when writes are able to occur to
196 * a filesystem.
197 */
Dave Hansen3d733632008-02-15 14:37:59 -0800198/*
199 * __mnt_is_readonly: check whether a mount is read-only
200 * @mnt: the mount to check for its write status
201 *
202 * This shouldn't be used directly ouside of the VFS.
203 * It does not guarantee that the filesystem will stay
204 * r/w, just that it is right *now*. This can not and
205 * should not be used in place of IS_RDONLY(inode).
206 * mnt_want/drop_write() will _keep_ the filesystem
207 * r/w.
208 */
209int __mnt_is_readonly(struct vfsmount *mnt)
210{
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800211 if (mnt->mnt_flags & MNT_READONLY)
212 return 1;
213 if (mnt->mnt_sb->s_flags & MS_RDONLY)
214 return 1;
215 return 0;
Dave Hansen3d733632008-02-15 14:37:59 -0800216}
217EXPORT_SYMBOL_GPL(__mnt_is_readonly);
218
Nick Pigginc6653a82011-01-07 17:50:10 +1100219static inline void mnt_inc_writers(struct vfsmount *mnt)
Dave Hansen3d733632008-02-15 14:37:59 -0800220{
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000221#ifdef CONFIG_SMP
222 (*per_cpu_ptr(mnt->mnt_writers, smp_processor_id()))++;
223#else
224 mnt->mnt_writers++;
225#endif
Dave Hansen3d733632008-02-15 14:37:59 -0800226}
Dave Hansen3d733632008-02-15 14:37:59 -0800227
Nick Pigginc6653a82011-01-07 17:50:10 +1100228static inline void mnt_dec_writers(struct vfsmount *mnt)
Dave Hansen3d733632008-02-15 14:37:59 -0800229{
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000230#ifdef CONFIG_SMP
231 (*per_cpu_ptr(mnt->mnt_writers, smp_processor_id()))--;
232#else
233 mnt->mnt_writers--;
234#endif
235}
236
Nick Pigginc6653a82011-01-07 17:50:10 +1100237static unsigned int mnt_get_writers(struct vfsmount *mnt)
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000238{
239#ifdef CONFIG_SMP
240 unsigned int count = 0;
Dave Hansen3d733632008-02-15 14:37:59 -0800241 int cpu;
Dave Hansen3d733632008-02-15 14:37:59 -0800242
243 for_each_possible_cpu(cpu) {
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000244 count += *per_cpu_ptr(mnt->mnt_writers, cpu);
Dave Hansen3d733632008-02-15 14:37:59 -0800245 }
Dave Hansen3d733632008-02-15 14:37:59 -0800246
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000247 return count;
248#else
249 return mnt->mnt_writers;
250#endif
Dave Hansen3d733632008-02-15 14:37:59 -0800251}
252
253/*
254 * Most r/o checks on a fs are for operations that take
255 * discrete amounts of time, like a write() or unlink().
256 * We must keep track of when those operations start
257 * (for permission checks) and when they end, so that
258 * we can determine when writes are able to occur to
259 * a filesystem.
260 */
Dave Hansen83660252008-02-15 14:37:30 -0800261/**
262 * mnt_want_write - get write access to a mount
263 * @mnt: the mount on which to take a write
264 *
265 * This tells the low-level filesystem that a write is
266 * about to be performed to it, and makes sure that
267 * writes are allowed before returning success. When
268 * the write operation is finished, mnt_drop_write()
269 * must be called. This is effectively a refcount.
270 */
271int mnt_want_write(struct vfsmount *mnt)
272{
Dave Hansen3d733632008-02-15 14:37:59 -0800273 int ret = 0;
Dave Hansen3d733632008-02-15 14:37:59 -0800274
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000275 preempt_disable();
Nick Pigginc6653a82011-01-07 17:50:10 +1100276 mnt_inc_writers(mnt);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000277 /*
Nick Pigginc6653a82011-01-07 17:50:10 +1100278 * The store to mnt_inc_writers must be visible before we pass
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000279 * MNT_WRITE_HOLD loop below, so that the slowpath can see our
280 * incremented count after it has set MNT_WRITE_HOLD.
281 */
282 smp_mb();
283 while (mnt->mnt_flags & MNT_WRITE_HOLD)
284 cpu_relax();
285 /*
286 * After the slowpath clears MNT_WRITE_HOLD, mnt_is_readonly will
287 * be set to match its requirements. So we must not load that until
288 * MNT_WRITE_HOLD is cleared.
289 */
290 smp_rmb();
Dave Hansen3d733632008-02-15 14:37:59 -0800291 if (__mnt_is_readonly(mnt)) {
Nick Pigginc6653a82011-01-07 17:50:10 +1100292 mnt_dec_writers(mnt);
Dave Hansen3d733632008-02-15 14:37:59 -0800293 ret = -EROFS;
294 goto out;
295 }
Dave Hansen3d733632008-02-15 14:37:59 -0800296out:
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000297 preempt_enable();
Dave Hansen3d733632008-02-15 14:37:59 -0800298 return ret;
Dave Hansen83660252008-02-15 14:37:30 -0800299}
300EXPORT_SYMBOL_GPL(mnt_want_write);
301
302/**
npiggin@suse.de96029c42009-04-26 20:25:55 +1000303 * mnt_clone_write - get write access to a mount
304 * @mnt: the mount on which to take a write
305 *
306 * This is effectively like mnt_want_write, except
307 * it must only be used to take an extra write reference
308 * on a mountpoint that we already know has a write reference
309 * on it. This allows some optimisation.
310 *
311 * After finished, mnt_drop_write must be called as usual to
312 * drop the reference.
313 */
314int mnt_clone_write(struct vfsmount *mnt)
315{
316 /* superblock may be r/o */
317 if (__mnt_is_readonly(mnt))
318 return -EROFS;
319 preempt_disable();
Nick Pigginc6653a82011-01-07 17:50:10 +1100320 mnt_inc_writers(mnt);
npiggin@suse.de96029c42009-04-26 20:25:55 +1000321 preempt_enable();
322 return 0;
323}
324EXPORT_SYMBOL_GPL(mnt_clone_write);
325
326/**
327 * mnt_want_write_file - get write access to a file's mount
328 * @file: the file who's mount on which to take a write
329 *
330 * This is like mnt_want_write, but it takes a file and can
331 * do some optimisations if the file is open for write already
332 */
333int mnt_want_write_file(struct file *file)
334{
OGAWA Hirofumi2d8dd382009-08-06 15:07:39 -0700335 struct inode *inode = file->f_dentry->d_inode;
336 if (!(file->f_mode & FMODE_WRITE) || special_file(inode->i_mode))
npiggin@suse.de96029c42009-04-26 20:25:55 +1000337 return mnt_want_write(file->f_path.mnt);
338 else
339 return mnt_clone_write(file->f_path.mnt);
340}
341EXPORT_SYMBOL_GPL(mnt_want_write_file);
342
343/**
Dave Hansen83660252008-02-15 14:37:30 -0800344 * mnt_drop_write - give up write access to a mount
345 * @mnt: the mount on which to give up write access
346 *
347 * Tells the low-level filesystem that we are done
348 * performing writes to it. Must be matched with
349 * mnt_want_write() call above.
350 */
351void mnt_drop_write(struct vfsmount *mnt)
352{
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000353 preempt_disable();
Nick Pigginc6653a82011-01-07 17:50:10 +1100354 mnt_dec_writers(mnt);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000355 preempt_enable();
Dave Hansen83660252008-02-15 14:37:30 -0800356}
357EXPORT_SYMBOL_GPL(mnt_drop_write);
358
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800359static int mnt_make_readonly(struct vfsmount *mnt)
Dave Hansen83660252008-02-15 14:37:30 -0800360{
Dave Hansen3d733632008-02-15 14:37:59 -0800361 int ret = 0;
362
Nick Piggin99b7db72010-08-18 04:37:39 +1000363 br_write_lock(vfsmount_lock);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000364 mnt->mnt_flags |= MNT_WRITE_HOLD;
365 /*
366 * After storing MNT_WRITE_HOLD, we'll read the counters. This store
367 * should be visible before we do.
368 */
369 smp_mb();
370
371 /*
372 * With writers on hold, if this value is zero, then there are
373 * definitely no active writers (although held writers may subsequently
374 * increment the count, they'll have to wait, and decrement it after
375 * seeing MNT_READONLY).
376 *
377 * It is OK to have counter incremented on one CPU and decremented on
378 * another: the sum will add up correctly. The danger would be when we
379 * sum up each counter, if we read a counter before it is incremented,
380 * but then read another CPU's count which it has been subsequently
381 * decremented from -- we would see more decrements than we should.
382 * MNT_WRITE_HOLD protects against this scenario, because
383 * mnt_want_write first increments count, then smp_mb, then spins on
384 * MNT_WRITE_HOLD, so it can't be decremented by another CPU while
385 * we're counting up here.
386 */
Nick Pigginc6653a82011-01-07 17:50:10 +1100387 if (mnt_get_writers(mnt) > 0)
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000388 ret = -EBUSY;
389 else
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800390 mnt->mnt_flags |= MNT_READONLY;
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000391 /*
392 * MNT_READONLY must become visible before ~MNT_WRITE_HOLD, so writers
393 * that become unheld will see MNT_READONLY.
394 */
395 smp_wmb();
396 mnt->mnt_flags &= ~MNT_WRITE_HOLD;
Nick Piggin99b7db72010-08-18 04:37:39 +1000397 br_write_unlock(vfsmount_lock);
Dave Hansen3d733632008-02-15 14:37:59 -0800398 return ret;
Dave Hansen83660252008-02-15 14:37:30 -0800399}
Dave Hansen83660252008-02-15 14:37:30 -0800400
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800401static void __mnt_unmake_readonly(struct vfsmount *mnt)
402{
Nick Piggin99b7db72010-08-18 04:37:39 +1000403 br_write_lock(vfsmount_lock);
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800404 mnt->mnt_flags &= ~MNT_READONLY;
Nick Piggin99b7db72010-08-18 04:37:39 +1000405 br_write_unlock(vfsmount_lock);
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800406}
407
Sukadev Bhattiprolua3ec9472009-03-04 12:06:34 -0800408void simple_set_mnt(struct vfsmount *mnt, struct super_block *sb)
David Howells454e2392006-06-23 02:02:57 -0700409{
410 mnt->mnt_sb = sb;
411 mnt->mnt_root = dget(sb->s_root);
David Howells454e2392006-06-23 02:02:57 -0700412}
413
414EXPORT_SYMBOL(simple_set_mnt);
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416void free_vfsmnt(struct vfsmount *mnt)
417{
418 kfree(mnt->mnt_devname);
Miklos Szeredi73cd49e2008-03-26 22:11:34 +0100419 mnt_free_id(mnt);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000420#ifdef CONFIG_SMP
421 free_percpu(mnt->mnt_writers);
422#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 kmem_cache_free(mnt_cache, mnt);
424}
425
426/*
Ram Paia05964f2005-11-07 17:20:17 -0500427 * find the first or last mount at @dentry on vfsmount @mnt depending on
428 * @dir. If @dir is set return the first mount else return the last mount.
Nick Piggin99b7db72010-08-18 04:37:39 +1000429 * vfsmount_lock must be held for read or write.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 */
Ram Paia05964f2005-11-07 17:20:17 -0500431struct vfsmount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry,
432 int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Ram Paib58fed82005-11-07 17:16:09 -0500434 struct list_head *head = mount_hashtable + hash(mnt, dentry);
435 struct list_head *tmp = head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 struct vfsmount *p, *found = NULL;
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 for (;;) {
Ram Paia05964f2005-11-07 17:20:17 -0500439 tmp = dir ? tmp->next : tmp->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 p = NULL;
441 if (tmp == head)
442 break;
443 p = list_entry(tmp, struct vfsmount, mnt_hash);
444 if (p->mnt_parent == mnt && p->mnt_mountpoint == dentry) {
Ram Paia05964f2005-11-07 17:20:17 -0500445 found = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 break;
447 }
448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 return found;
450}
451
Ram Paia05964f2005-11-07 17:20:17 -0500452/*
453 * lookup_mnt increments the ref count before returning
454 * the vfsmount struct.
455 */
Al Viro1c755af2009-04-18 14:06:57 -0400456struct vfsmount *lookup_mnt(struct path *path)
Ram Paia05964f2005-11-07 17:20:17 -0500457{
458 struct vfsmount *child_mnt;
Nick Piggin99b7db72010-08-18 04:37:39 +1000459
460 br_read_lock(vfsmount_lock);
Al Viro1c755af2009-04-18 14:06:57 -0400461 if ((child_mnt = __lookup_mnt(path->mnt, path->dentry, 1)))
Ram Paia05964f2005-11-07 17:20:17 -0500462 mntget(child_mnt);
Nick Piggin99b7db72010-08-18 04:37:39 +1000463 br_read_unlock(vfsmount_lock);
Ram Paia05964f2005-11-07 17:20:17 -0500464 return child_mnt;
465}
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467static inline int check_mnt(struct vfsmount *mnt)
468{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800469 return mnt->mnt_ns == current->nsproxy->mnt_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
Nick Piggin99b7db72010-08-18 04:37:39 +1000472/*
473 * vfsmount lock must be held for write
474 */
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800475static void touch_mnt_namespace(struct mnt_namespace *ns)
Al Viro5addc5d2005-11-07 17:15:49 -0500476{
477 if (ns) {
478 ns->event = ++event;
479 wake_up_interruptible(&ns->poll);
480 }
481}
482
Nick Piggin99b7db72010-08-18 04:37:39 +1000483/*
484 * vfsmount lock must be held for write
485 */
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800486static void __touch_mnt_namespace(struct mnt_namespace *ns)
Al Viro5addc5d2005-11-07 17:15:49 -0500487{
488 if (ns && ns->event != event) {
489 ns->event = event;
490 wake_up_interruptible(&ns->poll);
491 }
492}
493
Nick Piggin99b7db72010-08-18 04:37:39 +1000494/*
Nick Piggin5f57cbc2011-01-07 17:49:54 +1100495 * Clear dentry's mounted state if it has no remaining mounts.
496 * vfsmount_lock must be held for write.
497 */
498static void dentry_reset_mounted(struct vfsmount *mnt, struct dentry *dentry)
499{
500 unsigned u;
501
502 for (u = 0; u < HASH_SIZE; u++) {
503 struct vfsmount *p;
504
505 list_for_each_entry(p, &mount_hashtable[u], mnt_hash) {
506 if (p->mnt_mountpoint == dentry)
507 return;
508 }
509 }
510 spin_lock(&dentry->d_lock);
511 dentry->d_flags &= ~DCACHE_MOUNTED;
512 spin_unlock(&dentry->d_lock);
513}
514
515/*
Nick Piggin99b7db72010-08-18 04:37:39 +1000516 * vfsmount lock must be held for write
517 */
Al Viro1a390682008-03-21 20:48:19 -0400518static void detach_mnt(struct vfsmount *mnt, struct path *old_path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
Al Viro1a390682008-03-21 20:48:19 -0400520 old_path->dentry = mnt->mnt_mountpoint;
521 old_path->mnt = mnt->mnt_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 mnt->mnt_parent = mnt;
523 mnt->mnt_mountpoint = mnt->mnt_root;
524 list_del_init(&mnt->mnt_child);
525 list_del_init(&mnt->mnt_hash);
Nick Piggin5f57cbc2011-01-07 17:49:54 +1100526 dentry_reset_mounted(old_path->mnt, old_path->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527}
528
Nick Piggin99b7db72010-08-18 04:37:39 +1000529/*
530 * vfsmount lock must be held for write
531 */
Ram Paib90fa9a2005-11-07 17:19:50 -0500532void mnt_set_mountpoint(struct vfsmount *mnt, struct dentry *dentry,
533 struct vfsmount *child_mnt)
534{
535 child_mnt->mnt_parent = mntget(mnt);
536 child_mnt->mnt_mountpoint = dget(dentry);
Nick Piggin5f57cbc2011-01-07 17:49:54 +1100537 spin_lock(&dentry->d_lock);
538 dentry->d_flags |= DCACHE_MOUNTED;
539 spin_unlock(&dentry->d_lock);
Ram Paib90fa9a2005-11-07 17:19:50 -0500540}
541
Nick Piggin99b7db72010-08-18 04:37:39 +1000542/*
543 * vfsmount lock must be held for write
544 */
Al Viro1a390682008-03-21 20:48:19 -0400545static void attach_mnt(struct vfsmount *mnt, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Al Viro1a390682008-03-21 20:48:19 -0400547 mnt_set_mountpoint(path->mnt, path->dentry, mnt);
Ram Paib90fa9a2005-11-07 17:19:50 -0500548 list_add_tail(&mnt->mnt_hash, mount_hashtable +
Al Viro1a390682008-03-21 20:48:19 -0400549 hash(path->mnt, path->dentry));
550 list_add_tail(&mnt->mnt_child, &path->mnt->mnt_mounts);
Ram Paib90fa9a2005-11-07 17:19:50 -0500551}
552
553/*
Nick Piggin99b7db72010-08-18 04:37:39 +1000554 * vfsmount lock must be held for write
Ram Paib90fa9a2005-11-07 17:19:50 -0500555 */
556static void commit_tree(struct vfsmount *mnt)
557{
558 struct vfsmount *parent = mnt->mnt_parent;
559 struct vfsmount *m;
560 LIST_HEAD(head);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800561 struct mnt_namespace *n = parent->mnt_ns;
Ram Paib90fa9a2005-11-07 17:19:50 -0500562
563 BUG_ON(parent == mnt);
564
565 list_add_tail(&head, &mnt->mnt_list);
566 list_for_each_entry(m, &head, mnt_list)
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800567 m->mnt_ns = n;
Ram Paib90fa9a2005-11-07 17:19:50 -0500568 list_splice(&head, n->list.prev);
569
570 list_add_tail(&mnt->mnt_hash, mount_hashtable +
571 hash(parent, mnt->mnt_mountpoint));
572 list_add_tail(&mnt->mnt_child, &parent->mnt_mounts);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800573 touch_mnt_namespace(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
576static struct vfsmount *next_mnt(struct vfsmount *p, struct vfsmount *root)
577{
578 struct list_head *next = p->mnt_mounts.next;
579 if (next == &p->mnt_mounts) {
580 while (1) {
581 if (p == root)
582 return NULL;
583 next = p->mnt_child.next;
584 if (next != &p->mnt_parent->mnt_mounts)
585 break;
586 p = p->mnt_parent;
587 }
588 }
589 return list_entry(next, struct vfsmount, mnt_child);
590}
591
Ram Pai9676f0c2005-11-07 17:21:20 -0500592static struct vfsmount *skip_mnt_tree(struct vfsmount *p)
593{
594 struct list_head *prev = p->mnt_mounts.prev;
595 while (prev != &p->mnt_mounts) {
596 p = list_entry(prev, struct vfsmount, mnt_child);
597 prev = p->mnt_mounts.prev;
598 }
599 return p;
600}
601
Ram Pai36341f62005-11-07 17:17:22 -0500602static struct vfsmount *clone_mnt(struct vfsmount *old, struct dentry *root,
603 int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
605 struct super_block *sb = old->mnt_sb;
606 struct vfsmount *mnt = alloc_vfsmnt(old->mnt_devname);
607
608 if (mnt) {
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100609 if (flag & (CL_SLAVE | CL_PRIVATE))
610 mnt->mnt_group_id = 0; /* not a peer of original */
611 else
612 mnt->mnt_group_id = old->mnt_group_id;
613
614 if ((flag & CL_MAKE_SHARED) && !mnt->mnt_group_id) {
615 int err = mnt_alloc_group_id(mnt);
616 if (err)
617 goto out_free;
618 }
619
Miklos Szeredibe1a16a2010-10-05 12:31:09 +0200620 mnt->mnt_flags = old->mnt_flags & ~MNT_WRITE_HOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 atomic_inc(&sb->s_active);
622 mnt->mnt_sb = sb;
623 mnt->mnt_root = dget(root);
624 mnt->mnt_mountpoint = mnt->mnt_root;
625 mnt->mnt_parent = mnt;
Ram Paib90fa9a2005-11-07 17:19:50 -0500626
Ram Pai5afe0022005-11-07 17:21:01 -0500627 if (flag & CL_SLAVE) {
628 list_add(&mnt->mnt_slave, &old->mnt_slave_list);
629 mnt->mnt_master = old;
630 CLEAR_MNT_SHARED(mnt);
Al Viro8aec0802007-06-07 12:20:32 -0400631 } else if (!(flag & CL_PRIVATE)) {
Al Viro796a6b52010-01-16 13:28:47 -0500632 if ((flag & CL_MAKE_SHARED) || IS_MNT_SHARED(old))
Ram Pai5afe0022005-11-07 17:21:01 -0500633 list_add(&mnt->mnt_share, &old->mnt_share);
634 if (IS_MNT_SLAVE(old))
635 list_add(&mnt->mnt_slave, &old->mnt_slave);
636 mnt->mnt_master = old->mnt_master;
637 }
Ram Paib90fa9a2005-11-07 17:19:50 -0500638 if (flag & CL_MAKE_SHARED)
639 set_mnt_shared(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 /* stick the duplicate mount on the same expiry list
642 * as the original if that was on one */
Ram Pai36341f62005-11-07 17:17:22 -0500643 if (flag & CL_EXPIRE) {
Ram Pai36341f62005-11-07 17:17:22 -0500644 if (!list_empty(&old->mnt_expire))
645 list_add(&mnt->mnt_expire, &old->mnt_expire);
Ram Pai36341f62005-11-07 17:17:22 -0500646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
648 return mnt;
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100649
650 out_free:
651 free_vfsmnt(mnt);
652 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
Al Viro7b7b1ac2005-11-07 17:13:39 -0500655static inline void __mntput(struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
657 struct super_block *sb = mnt->mnt_sb;
Dave Hansen3d733632008-02-15 14:37:59 -0800658 /*
Dave Hansen3d733632008-02-15 14:37:59 -0800659 * This probably indicates that somebody messed
660 * up a mnt_want/drop_write() pair. If this
661 * happens, the filesystem was probably unable
662 * to make r/w->r/o transitions.
663 */
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000664 /*
665 * atomic_dec_and_lock() used to deal with ->mnt_count decrements
Nick Pigginc6653a82011-01-07 17:50:10 +1100666 * provides barriers, so mnt_get_writers() below is safe. AV
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000667 */
Nick Pigginc6653a82011-01-07 17:50:10 +1100668 WARN_ON(mnt_get_writers(mnt));
Andreas Gruenbacherca9c7262009-12-17 21:24:27 -0500669 fsnotify_vfsmount_delete(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 dput(mnt->mnt_root);
671 free_vfsmnt(mnt);
672 deactivate_super(sb);
673}
674
Al Viro7b7b1ac2005-11-07 17:13:39 -0500675void mntput_no_expire(struct vfsmount *mnt)
676{
677repeat:
Nick Piggin99b7db72010-08-18 04:37:39 +1000678 if (atomic_add_unless(&mnt->mnt_count, -1, 1))
679 return;
680 br_write_lock(vfsmount_lock);
681 if (!atomic_dec_and_test(&mnt->mnt_count)) {
682 br_write_unlock(vfsmount_lock);
683 return;
Al Viro7b7b1ac2005-11-07 17:13:39 -0500684 }
Nick Piggin99b7db72010-08-18 04:37:39 +1000685 if (likely(!mnt->mnt_pinned)) {
686 br_write_unlock(vfsmount_lock);
687 __mntput(mnt);
688 return;
689 }
690 atomic_add(mnt->mnt_pinned + 1, &mnt->mnt_count);
691 mnt->mnt_pinned = 0;
692 br_write_unlock(vfsmount_lock);
693 acct_auto_close_mnt(mnt);
694 goto repeat;
Al Viro7b7b1ac2005-11-07 17:13:39 -0500695}
Al Viro7b7b1ac2005-11-07 17:13:39 -0500696EXPORT_SYMBOL(mntput_no_expire);
697
698void mnt_pin(struct vfsmount *mnt)
699{
Nick Piggin99b7db72010-08-18 04:37:39 +1000700 br_write_lock(vfsmount_lock);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500701 mnt->mnt_pinned++;
Nick Piggin99b7db72010-08-18 04:37:39 +1000702 br_write_unlock(vfsmount_lock);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500703}
704
705EXPORT_SYMBOL(mnt_pin);
706
707void mnt_unpin(struct vfsmount *mnt)
708{
Nick Piggin99b7db72010-08-18 04:37:39 +1000709 br_write_lock(vfsmount_lock);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500710 if (mnt->mnt_pinned) {
711 atomic_inc(&mnt->mnt_count);
712 mnt->mnt_pinned--;
713 }
Nick Piggin99b7db72010-08-18 04:37:39 +1000714 br_write_unlock(vfsmount_lock);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500715}
716
717EXPORT_SYMBOL(mnt_unpin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800719static inline void mangle(struct seq_file *m, const char *s)
720{
721 seq_escape(m, s, " \t\n\\");
722}
723
724/*
725 * Simple .show_options callback for filesystems which don't want to
726 * implement more complex mount option showing.
727 *
728 * See also save_mount_options().
729 */
730int generic_show_options(struct seq_file *m, struct vfsmount *mnt)
731{
Al Viro2a32ceb2009-05-08 16:05:57 -0400732 const char *options;
733
734 rcu_read_lock();
735 options = rcu_dereference(mnt->mnt_sb->s_options);
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800736
737 if (options != NULL && options[0]) {
738 seq_putc(m, ',');
739 mangle(m, options);
740 }
Al Viro2a32ceb2009-05-08 16:05:57 -0400741 rcu_read_unlock();
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800742
743 return 0;
744}
745EXPORT_SYMBOL(generic_show_options);
746
747/*
748 * If filesystem uses generic_show_options(), this function should be
749 * called from the fill_super() callback.
750 *
751 * The .remount_fs callback usually needs to be handled in a special
752 * way, to make sure, that previous options are not overwritten if the
753 * remount fails.
754 *
755 * Also note, that if the filesystem's .remount_fs function doesn't
756 * reset all options to their default value, but changes only newly
757 * given options, then the displayed options will not reflect reality
758 * any more.
759 */
760void save_mount_options(struct super_block *sb, char *options)
761{
Al Viro2a32ceb2009-05-08 16:05:57 -0400762 BUG_ON(sb->s_options);
763 rcu_assign_pointer(sb->s_options, kstrdup(options, GFP_KERNEL));
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800764}
765EXPORT_SYMBOL(save_mount_options);
766
Al Viro2a32ceb2009-05-08 16:05:57 -0400767void replace_mount_options(struct super_block *sb, char *options)
768{
769 char *old = sb->s_options;
770 rcu_assign_pointer(sb->s_options, options);
771 if (old) {
772 synchronize_rcu();
773 kfree(old);
774 }
775}
776EXPORT_SYMBOL(replace_mount_options);
777
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100778#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779/* iterator */
780static void *m_start(struct seq_file *m, loff_t *pos)
781{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100782 struct proc_mounts *p = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Ram Pai390c6842005-11-07 17:17:51 -0500784 down_read(&namespace_sem);
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100785 return seq_list_start(&p->ns->list, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786}
787
788static void *m_next(struct seq_file *m, void *v, loff_t *pos)
789{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100790 struct proc_mounts *p = m->private;
Pavel Emelianovb0765fb2007-07-15 23:39:55 -0700791
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100792 return seq_list_next(v, &p->ns->list, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
794
795static void m_stop(struct seq_file *m, void *v)
796{
Ram Pai390c6842005-11-07 17:17:51 -0500797 up_read(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798}
799
Al Viro9f5596a2010-02-05 00:40:25 -0500800int mnt_had_events(struct proc_mounts *p)
801{
802 struct mnt_namespace *ns = p->ns;
803 int res = 0;
804
Nick Piggin99b7db72010-08-18 04:37:39 +1000805 br_read_lock(vfsmount_lock);
Al Viro9f5596a2010-02-05 00:40:25 -0500806 if (p->event != ns->event) {
807 p->event = ns->event;
808 res = 1;
809 }
Nick Piggin99b7db72010-08-18 04:37:39 +1000810 br_read_unlock(vfsmount_lock);
Al Viro9f5596a2010-02-05 00:40:25 -0500811
812 return res;
813}
814
Ram Pai2d4d4862008-03-27 13:06:25 +0100815struct proc_fs_info {
816 int flag;
817 const char *str;
818};
819
Eric Paris2069f452008-07-04 09:47:13 +1000820static int show_sb_opts(struct seq_file *m, struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
Ram Pai2d4d4862008-03-27 13:06:25 +0100822 static const struct proc_fs_info fs_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 { MS_SYNCHRONOUS, ",sync" },
824 { MS_DIRSYNC, ",dirsync" },
825 { MS_MANDLOCK, ",mand" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 { 0, NULL }
827 };
Ram Pai2d4d4862008-03-27 13:06:25 +0100828 const struct proc_fs_info *fs_infop;
829
830 for (fs_infop = fs_info; fs_infop->flag; fs_infop++) {
831 if (sb->s_flags & fs_infop->flag)
832 seq_puts(m, fs_infop->str);
833 }
Eric Paris2069f452008-07-04 09:47:13 +1000834
835 return security_sb_show_options(m, sb);
Ram Pai2d4d4862008-03-27 13:06:25 +0100836}
837
838static void show_mnt_opts(struct seq_file *m, struct vfsmount *mnt)
839{
840 static const struct proc_fs_info mnt_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 { MNT_NOSUID, ",nosuid" },
842 { MNT_NODEV, ",nodev" },
843 { MNT_NOEXEC, ",noexec" },
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -0800844 { MNT_NOATIME, ",noatime" },
845 { MNT_NODIRATIME, ",nodiratime" },
Valerie Henson47ae32d2006-12-13 00:34:34 -0800846 { MNT_RELATIME, ",relatime" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 { 0, NULL }
848 };
Ram Pai2d4d4862008-03-27 13:06:25 +0100849 const struct proc_fs_info *fs_infop;
850
851 for (fs_infop = mnt_info; fs_infop->flag; fs_infop++) {
852 if (mnt->mnt_flags & fs_infop->flag)
853 seq_puts(m, fs_infop->str);
854 }
855}
856
857static void show_type(struct seq_file *m, struct super_block *sb)
858{
859 mangle(m, sb->s_type->name);
860 if (sb->s_subtype && sb->s_subtype[0]) {
861 seq_putc(m, '.');
862 mangle(m, sb->s_subtype);
863 }
864}
865
866static int show_vfsmnt(struct seq_file *m, void *v)
867{
868 struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
869 int err = 0;
Jan Blunckc32c2f62008-02-14 19:38:43 -0800870 struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 mangle(m, mnt->mnt_devname ? mnt->mnt_devname : "none");
873 seq_putc(m, ' ');
Jan Blunckc32c2f62008-02-14 19:38:43 -0800874 seq_path(m, &mnt_path, " \t\n\\");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 seq_putc(m, ' ');
Ram Pai2d4d4862008-03-27 13:06:25 +0100876 show_type(m, mnt->mnt_sb);
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800877 seq_puts(m, __mnt_is_readonly(mnt) ? " ro" : " rw");
Eric Paris2069f452008-07-04 09:47:13 +1000878 err = show_sb_opts(m, mnt->mnt_sb);
879 if (err)
880 goto out;
Ram Pai2d4d4862008-03-27 13:06:25 +0100881 show_mnt_opts(m, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 if (mnt->mnt_sb->s_op->show_options)
883 err = mnt->mnt_sb->s_op->show_options(m, mnt);
884 seq_puts(m, " 0 0\n");
Eric Paris2069f452008-07-04 09:47:13 +1000885out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 return err;
887}
888
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100889const struct seq_operations mounts_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 .start = m_start,
891 .next = m_next,
892 .stop = m_stop,
893 .show = show_vfsmnt
894};
895
Ram Pai2d4d4862008-03-27 13:06:25 +0100896static int show_mountinfo(struct seq_file *m, void *v)
897{
898 struct proc_mounts *p = m->private;
899 struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
900 struct super_block *sb = mnt->mnt_sb;
901 struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
902 struct path root = p->root;
903 int err = 0;
904
905 seq_printf(m, "%i %i %u:%u ", mnt->mnt_id, mnt->mnt_parent->mnt_id,
906 MAJOR(sb->s_dev), MINOR(sb->s_dev));
907 seq_dentry(m, mnt->mnt_root, " \t\n\\");
908 seq_putc(m, ' ');
909 seq_path_root(m, &mnt_path, &root, " \t\n\\");
910 if (root.mnt != p->root.mnt || root.dentry != p->root.dentry) {
911 /*
912 * Mountpoint is outside root, discard that one. Ugly,
913 * but less so than trying to do that in iterator in a
914 * race-free way (due to renames).
915 */
916 return SEQ_SKIP;
917 }
918 seq_puts(m, mnt->mnt_flags & MNT_READONLY ? " ro" : " rw");
919 show_mnt_opts(m, mnt);
920
921 /* Tagged fields ("foo:X" or "bar") */
922 if (IS_MNT_SHARED(mnt))
923 seq_printf(m, " shared:%i", mnt->mnt_group_id);
Miklos Szeredi97e7e0f2008-03-27 13:06:26 +0100924 if (IS_MNT_SLAVE(mnt)) {
925 int master = mnt->mnt_master->mnt_group_id;
926 int dom = get_dominating_id(mnt, &p->root);
927 seq_printf(m, " master:%i", master);
928 if (dom && dom != master)
929 seq_printf(m, " propagate_from:%i", dom);
930 }
Ram Pai2d4d4862008-03-27 13:06:25 +0100931 if (IS_MNT_UNBINDABLE(mnt))
932 seq_puts(m, " unbindable");
933
934 /* Filesystem specific data */
935 seq_puts(m, " - ");
936 show_type(m, sb);
937 seq_putc(m, ' ');
938 mangle(m, mnt->mnt_devname ? mnt->mnt_devname : "none");
939 seq_puts(m, sb->s_flags & MS_RDONLY ? " ro" : " rw");
Eric Paris2069f452008-07-04 09:47:13 +1000940 err = show_sb_opts(m, sb);
941 if (err)
942 goto out;
Ram Pai2d4d4862008-03-27 13:06:25 +0100943 if (sb->s_op->show_options)
944 err = sb->s_op->show_options(m, mnt);
945 seq_putc(m, '\n');
Eric Paris2069f452008-07-04 09:47:13 +1000946out:
Ram Pai2d4d4862008-03-27 13:06:25 +0100947 return err;
948}
949
950const struct seq_operations mountinfo_op = {
951 .start = m_start,
952 .next = m_next,
953 .stop = m_stop,
954 .show = show_mountinfo,
955};
956
Chuck Leverb4629fe2006-03-20 13:44:12 -0500957static int show_vfsstat(struct seq_file *m, void *v)
958{
Pavel Emelianovb0765fb2007-07-15 23:39:55 -0700959 struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
Jan Blunckc32c2f62008-02-14 19:38:43 -0800960 struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
Chuck Leverb4629fe2006-03-20 13:44:12 -0500961 int err = 0;
962
963 /* device */
964 if (mnt->mnt_devname) {
965 seq_puts(m, "device ");
966 mangle(m, mnt->mnt_devname);
967 } else
968 seq_puts(m, "no device");
969
970 /* mount point */
971 seq_puts(m, " mounted on ");
Jan Blunckc32c2f62008-02-14 19:38:43 -0800972 seq_path(m, &mnt_path, " \t\n\\");
Chuck Leverb4629fe2006-03-20 13:44:12 -0500973 seq_putc(m, ' ');
974
975 /* file system type */
976 seq_puts(m, "with fstype ");
Ram Pai2d4d4862008-03-27 13:06:25 +0100977 show_type(m, mnt->mnt_sb);
Chuck Leverb4629fe2006-03-20 13:44:12 -0500978
979 /* optional statistics */
980 if (mnt->mnt_sb->s_op->show_stats) {
981 seq_putc(m, ' ');
982 err = mnt->mnt_sb->s_op->show_stats(m, mnt);
983 }
984
985 seq_putc(m, '\n');
986 return err;
987}
988
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100989const struct seq_operations mountstats_op = {
Chuck Leverb4629fe2006-03-20 13:44:12 -0500990 .start = m_start,
991 .next = m_next,
992 .stop = m_stop,
993 .show = show_vfsstat,
994};
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100995#endif /* CONFIG_PROC_FS */
Chuck Leverb4629fe2006-03-20 13:44:12 -0500996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997/**
998 * may_umount_tree - check if a mount tree is busy
999 * @mnt: root of mount tree
1000 *
1001 * This is called to check if a tree of mounts has any
1002 * open files, pwds, chroots or sub mounts that are
1003 * busy.
1004 */
1005int may_umount_tree(struct vfsmount *mnt)
1006{
Ram Pai36341f62005-11-07 17:17:22 -05001007 int actual_refs = 0;
1008 int minimum_refs = 0;
1009 struct vfsmount *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Nick Piggin99b7db72010-08-18 04:37:39 +10001011 br_read_lock(vfsmount_lock);
Ram Pai36341f62005-11-07 17:17:22 -05001012 for (p = mnt; p; p = next_mnt(p, mnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 actual_refs += atomic_read(&p->mnt_count);
1014 minimum_refs += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 }
Nick Piggin99b7db72010-08-18 04:37:39 +10001016 br_read_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 if (actual_refs > minimum_refs)
Ian Kente3474a82006-03-27 01:14:51 -08001019 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Ian Kente3474a82006-03-27 01:14:51 -08001021 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022}
1023
1024EXPORT_SYMBOL(may_umount_tree);
1025
1026/**
1027 * may_umount - check if a mount point is busy
1028 * @mnt: root of mount
1029 *
1030 * This is called to check if a mount point has any
1031 * open files, pwds, chroots or sub mounts. If the
1032 * mount has sub mounts this will return busy
1033 * regardless of whether the sub mounts are busy.
1034 *
1035 * Doesn't take quota and stuff into account. IOW, in some cases it will
1036 * give false negatives. The main reason why it's here is that we need
1037 * a non-destructive way to look for easily umountable filesystems.
1038 */
1039int may_umount(struct vfsmount *mnt)
1040{
Ian Kente3474a82006-03-27 01:14:51 -08001041 int ret = 1;
Al Viro8ad08d82010-01-16 12:56:08 -05001042 down_read(&namespace_sem);
Nick Piggin99b7db72010-08-18 04:37:39 +10001043 br_read_lock(vfsmount_lock);
Ram Paia05964f2005-11-07 17:20:17 -05001044 if (propagate_mount_busy(mnt, 2))
Ian Kente3474a82006-03-27 01:14:51 -08001045 ret = 0;
Nick Piggin99b7db72010-08-18 04:37:39 +10001046 br_read_unlock(vfsmount_lock);
Al Viro8ad08d82010-01-16 12:56:08 -05001047 up_read(&namespace_sem);
Ram Paia05964f2005-11-07 17:20:17 -05001048 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049}
1050
1051EXPORT_SYMBOL(may_umount);
1052
Ram Paib90fa9a2005-11-07 17:19:50 -05001053void release_mounts(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054{
Ram Pai70fbcdf2005-11-07 17:17:04 -05001055 struct vfsmount *mnt;
Miklos Szeredibf066c72006-01-08 01:03:19 -08001056 while (!list_empty(head)) {
Pavel Emelianovb5e61812007-05-08 00:30:19 -07001057 mnt = list_first_entry(head, struct vfsmount, mnt_hash);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001058 list_del_init(&mnt->mnt_hash);
1059 if (mnt->mnt_parent != mnt) {
1060 struct dentry *dentry;
1061 struct vfsmount *m;
Nick Piggin99b7db72010-08-18 04:37:39 +10001062
1063 br_write_lock(vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001064 dentry = mnt->mnt_mountpoint;
1065 m = mnt->mnt_parent;
1066 mnt->mnt_mountpoint = mnt->mnt_root;
1067 mnt->mnt_parent = mnt;
Al Viro7c4b93d2008-03-21 23:59:49 -04001068 m->mnt_ghosts--;
Nick Piggin99b7db72010-08-18 04:37:39 +10001069 br_write_unlock(vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001070 dput(dentry);
1071 mntput(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 }
1073 mntput(mnt);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001074 }
1075}
1076
Nick Piggin99b7db72010-08-18 04:37:39 +10001077/*
1078 * vfsmount lock must be held for write
1079 * namespace_sem must be held for write
1080 */
Ram Paia05964f2005-11-07 17:20:17 -05001081void umount_tree(struct vfsmount *mnt, int propagate, struct list_head *kill)
Ram Pai70fbcdf2005-11-07 17:17:04 -05001082{
1083 struct vfsmount *p;
1084
Akinobu Mita1bfba4e2006-06-26 00:24:40 -07001085 for (p = mnt; p; p = next_mnt(p, mnt))
1086 list_move(&p->mnt_hash, kill);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001087
Ram Paia05964f2005-11-07 17:20:17 -05001088 if (propagate)
1089 propagate_umount(kill);
1090
Ram Pai70fbcdf2005-11-07 17:17:04 -05001091 list_for_each_entry(p, kill, mnt_hash) {
1092 list_del_init(&p->mnt_expire);
1093 list_del_init(&p->mnt_list);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001094 __touch_mnt_namespace(p->mnt_ns);
1095 p->mnt_ns = NULL;
Ram Pai70fbcdf2005-11-07 17:17:04 -05001096 list_del_init(&p->mnt_child);
Al Viro7c4b93d2008-03-21 23:59:49 -04001097 if (p->mnt_parent != p) {
1098 p->mnt_parent->mnt_ghosts++;
Nick Piggin5f57cbc2011-01-07 17:49:54 +11001099 dentry_reset_mounted(p->mnt_parent, p->mnt_mountpoint);
Al Viro7c4b93d2008-03-21 23:59:49 -04001100 }
Ram Paia05964f2005-11-07 17:20:17 -05001101 change_mnt_propagation(p, MS_PRIVATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 }
1103}
1104
Al Viroc35038b2008-03-22 00:46:23 -04001105static void shrink_submounts(struct vfsmount *mnt, struct list_head *umounts);
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107static int do_umount(struct vfsmount *mnt, int flags)
1108{
Ram Paib58fed82005-11-07 17:16:09 -05001109 struct super_block *sb = mnt->mnt_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 int retval;
Ram Pai70fbcdf2005-11-07 17:17:04 -05001111 LIST_HEAD(umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 retval = security_sb_umount(mnt, flags);
1114 if (retval)
1115 return retval;
1116
1117 /*
1118 * Allow userspace to request a mountpoint be expired rather than
1119 * unmounting unconditionally. Unmount only happens if:
1120 * (1) the mark is already set (the mark is cleared by mntput())
1121 * (2) the usage count == 1 [parent vfsmount] + 1 [sys_umount]
1122 */
1123 if (flags & MNT_EXPIRE) {
Jan Blunck6ac08c32008-02-14 19:34:38 -08001124 if (mnt == current->fs->root.mnt ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 flags & (MNT_FORCE | MNT_DETACH))
1126 return -EINVAL;
1127
1128 if (atomic_read(&mnt->mnt_count) != 2)
1129 return -EBUSY;
1130
1131 if (!xchg(&mnt->mnt_expiry_mark, 1))
1132 return -EAGAIN;
1133 }
1134
1135 /*
1136 * If we may have to abort operations to get out of this
1137 * mount, and they will themselves hold resources we must
1138 * allow the fs to do things. In the Unix tradition of
1139 * 'Gee thats tricky lets do it in userspace' the umount_begin
1140 * might fail to complete on the first run through as other tasks
1141 * must return, and the like. Thats for the mount program to worry
1142 * about for the moment.
1143 */
1144
Al Viro42faad92008-04-24 07:21:56 -04001145 if (flags & MNT_FORCE && sb->s_op->umount_begin) {
Al Viro42faad92008-04-24 07:21:56 -04001146 sb->s_op->umount_begin(sb);
Al Viro42faad92008-04-24 07:21:56 -04001147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
1149 /*
1150 * No sense to grab the lock for this test, but test itself looks
1151 * somewhat bogus. Suggestions for better replacement?
1152 * Ho-hum... In principle, we might treat that as umount + switch
1153 * to rootfs. GC would eventually take care of the old vfsmount.
1154 * Actually it makes sense, especially if rootfs would contain a
1155 * /reboot - static binary that would close all descriptors and
1156 * call reboot(9). Then init(8) could umount root and exec /reboot.
1157 */
Jan Blunck6ac08c32008-02-14 19:34:38 -08001158 if (mnt == current->fs->root.mnt && !(flags & MNT_DETACH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 /*
1160 * Special case for "unmounting" root ...
1161 * we just try to remount it readonly.
1162 */
1163 down_write(&sb->s_umount);
Al Viro4aa98cf2009-05-08 13:36:58 -04001164 if (!(sb->s_flags & MS_RDONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 retval = do_remount_sb(sb, MS_RDONLY, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 up_write(&sb->s_umount);
1167 return retval;
1168 }
1169
Ram Pai390c6842005-11-07 17:17:51 -05001170 down_write(&namespace_sem);
Nick Piggin99b7db72010-08-18 04:37:39 +10001171 br_write_lock(vfsmount_lock);
Al Viro5addc5d2005-11-07 17:15:49 -05001172 event++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
Al Viroc35038b2008-03-22 00:46:23 -04001174 if (!(flags & MNT_DETACH))
1175 shrink_submounts(mnt, &umount_list);
1176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 retval = -EBUSY;
Ram Paia05964f2005-11-07 17:20:17 -05001178 if (flags & MNT_DETACH || !propagate_mount_busy(mnt, 2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 if (!list_empty(&mnt->mnt_list))
Ram Paia05964f2005-11-07 17:20:17 -05001180 umount_tree(mnt, 1, &umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 retval = 0;
1182 }
Nick Piggin99b7db72010-08-18 04:37:39 +10001183 br_write_unlock(vfsmount_lock);
Ram Pai390c6842005-11-07 17:17:51 -05001184 up_write(&namespace_sem);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001185 release_mounts(&umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 return retval;
1187}
1188
1189/*
1190 * Now umount can handle mount points as well as block devices.
1191 * This is important for filesystems which use unnamed block devices.
1192 *
1193 * We now support a flag for forced unmount like the other 'big iron'
1194 * unixes. Our API is identical to OSF/1 to avoid making a mess of AMD
1195 */
1196
Heiko Carstensbdc480e2009-01-14 14:14:12 +01001197SYSCALL_DEFINE2(umount, char __user *, name, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198{
Al Viro2d8f3032008-07-22 09:59:21 -04001199 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 int retval;
Miklos Szeredidb1f05b2010-02-10 12:15:53 +01001201 int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Miklos Szeredidb1f05b2010-02-10 12:15:53 +01001203 if (flags & ~(MNT_FORCE | MNT_DETACH | MNT_EXPIRE | UMOUNT_NOFOLLOW))
1204 return -EINVAL;
1205
1206 if (!(flags & UMOUNT_NOFOLLOW))
1207 lookup_flags |= LOOKUP_FOLLOW;
1208
1209 retval = user_path_at(AT_FDCWD, name, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 if (retval)
1211 goto out;
1212 retval = -EINVAL;
Al Viro2d8f3032008-07-22 09:59:21 -04001213 if (path.dentry != path.mnt->mnt_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 goto dput_and_out;
Al Viro2d8f3032008-07-22 09:59:21 -04001215 if (!check_mnt(path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 goto dput_and_out;
1217
1218 retval = -EPERM;
1219 if (!capable(CAP_SYS_ADMIN))
1220 goto dput_and_out;
1221
Al Viro2d8f3032008-07-22 09:59:21 -04001222 retval = do_umount(path.mnt, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223dput_and_out:
Jan Blunck429731b2008-02-14 19:34:31 -08001224 /* we mustn't call path_put() as that would clear mnt_expiry_mark */
Al Viro2d8f3032008-07-22 09:59:21 -04001225 dput(path.dentry);
1226 mntput_no_expire(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227out:
1228 return retval;
1229}
1230
1231#ifdef __ARCH_WANT_SYS_OLDUMOUNT
1232
1233/*
Ram Paib58fed82005-11-07 17:16:09 -05001234 * The 2.0 compatible umount. No flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 */
Heiko Carstensbdc480e2009-01-14 14:14:12 +01001236SYSCALL_DEFINE1(oldumount, char __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237{
Ram Paib58fed82005-11-07 17:16:09 -05001238 return sys_umount(name, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239}
1240
1241#endif
1242
Al Viro2d92ab32008-08-02 00:51:11 -04001243static int mount_is_safe(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
1245 if (capable(CAP_SYS_ADMIN))
1246 return 0;
1247 return -EPERM;
1248#ifdef notyet
Al Viro2d92ab32008-08-02 00:51:11 -04001249 if (S_ISLNK(path->dentry->d_inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 return -EPERM;
Al Viro2d92ab32008-08-02 00:51:11 -04001251 if (path->dentry->d_inode->i_mode & S_ISVTX) {
David Howellsda9592e2008-11-14 10:39:05 +11001252 if (current_uid() != path->dentry->d_inode->i_uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 return -EPERM;
1254 }
Al Viro2d92ab32008-08-02 00:51:11 -04001255 if (inode_permission(path->dentry->d_inode, MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 return -EPERM;
1257 return 0;
1258#endif
1259}
1260
Ram Paib90fa9a2005-11-07 17:19:50 -05001261struct vfsmount *copy_tree(struct vfsmount *mnt, struct dentry *dentry,
Ram Pai36341f62005-11-07 17:17:22 -05001262 int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263{
1264 struct vfsmount *res, *p, *q, *r, *s;
Al Viro1a390682008-03-21 20:48:19 -04001265 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Ram Pai9676f0c2005-11-07 17:21:20 -05001267 if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(mnt))
1268 return NULL;
1269
Ram Pai36341f62005-11-07 17:17:22 -05001270 res = q = clone_mnt(mnt, dentry, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 if (!q)
1272 goto Enomem;
1273 q->mnt_mountpoint = mnt->mnt_mountpoint;
1274
1275 p = mnt;
Domen Puncerfdadd652005-09-10 00:27:07 -07001276 list_for_each_entry(r, &mnt->mnt_mounts, mnt_child) {
Jan Blunck7ec02ef2008-04-29 00:59:40 -07001277 if (!is_subdir(r->mnt_mountpoint, dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 continue;
1279
1280 for (s = r; s; s = next_mnt(s, r)) {
Ram Pai9676f0c2005-11-07 17:21:20 -05001281 if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(s)) {
1282 s = skip_mnt_tree(s);
1283 continue;
1284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 while (p != s->mnt_parent) {
1286 p = p->mnt_parent;
1287 q = q->mnt_parent;
1288 }
1289 p = s;
Al Viro1a390682008-03-21 20:48:19 -04001290 path.mnt = q;
1291 path.dentry = p->mnt_mountpoint;
Ram Pai36341f62005-11-07 17:17:22 -05001292 q = clone_mnt(p, p->mnt_root, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 if (!q)
1294 goto Enomem;
Nick Piggin99b7db72010-08-18 04:37:39 +10001295 br_write_lock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 list_add_tail(&q->mnt_list, &res->mnt_list);
Al Viro1a390682008-03-21 20:48:19 -04001297 attach_mnt(q, &path);
Nick Piggin99b7db72010-08-18 04:37:39 +10001298 br_write_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 }
1300 }
1301 return res;
Ram Paib58fed82005-11-07 17:16:09 -05001302Enomem:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 if (res) {
Ram Pai70fbcdf2005-11-07 17:17:04 -05001304 LIST_HEAD(umount_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10001305 br_write_lock(vfsmount_lock);
Ram Paia05964f2005-11-07 17:20:17 -05001306 umount_tree(res, 0, &umount_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10001307 br_write_unlock(vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001308 release_mounts(&umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 }
1310 return NULL;
1311}
1312
Al Viro589ff872009-04-18 03:28:19 -04001313struct vfsmount *collect_mounts(struct path *path)
Al Viro8aec0802007-06-07 12:20:32 -04001314{
1315 struct vfsmount *tree;
Al Viro1a60a282008-03-22 16:19:49 -04001316 down_write(&namespace_sem);
Al Viro589ff872009-04-18 03:28:19 -04001317 tree = copy_tree(path->mnt, path->dentry, CL_COPY_ALL | CL_PRIVATE);
Al Viro1a60a282008-03-22 16:19:49 -04001318 up_write(&namespace_sem);
Al Viro8aec0802007-06-07 12:20:32 -04001319 return tree;
1320}
1321
1322void drop_collected_mounts(struct vfsmount *mnt)
1323{
1324 LIST_HEAD(umount_list);
Al Viro1a60a282008-03-22 16:19:49 -04001325 down_write(&namespace_sem);
Nick Piggin99b7db72010-08-18 04:37:39 +10001326 br_write_lock(vfsmount_lock);
Al Viro8aec0802007-06-07 12:20:32 -04001327 umount_tree(mnt, 0, &umount_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10001328 br_write_unlock(vfsmount_lock);
Al Viro1a60a282008-03-22 16:19:49 -04001329 up_write(&namespace_sem);
Al Viro8aec0802007-06-07 12:20:32 -04001330 release_mounts(&umount_list);
1331}
1332
Al Viro1f707132010-01-30 22:51:25 -05001333int iterate_mounts(int (*f)(struct vfsmount *, void *), void *arg,
1334 struct vfsmount *root)
1335{
1336 struct vfsmount *mnt;
1337 int res = f(root, arg);
1338 if (res)
1339 return res;
1340 list_for_each_entry(mnt, &root->mnt_list, mnt_list) {
1341 res = f(mnt, arg);
1342 if (res)
1343 return res;
1344 }
1345 return 0;
1346}
1347
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001348static void cleanup_group_ids(struct vfsmount *mnt, struct vfsmount *end)
1349{
1350 struct vfsmount *p;
1351
1352 for (p = mnt; p != end; p = next_mnt(p, mnt)) {
1353 if (p->mnt_group_id && !IS_MNT_SHARED(p))
1354 mnt_release_group_id(p);
1355 }
1356}
1357
1358static int invent_group_ids(struct vfsmount *mnt, bool recurse)
1359{
1360 struct vfsmount *p;
1361
1362 for (p = mnt; p; p = recurse ? next_mnt(p, mnt) : NULL) {
1363 if (!p->mnt_group_id && !IS_MNT_SHARED(p)) {
1364 int err = mnt_alloc_group_id(p);
1365 if (err) {
1366 cleanup_group_ids(mnt, p);
1367 return err;
1368 }
1369 }
1370 }
1371
1372 return 0;
1373}
1374
Ram Paib90fa9a2005-11-07 17:19:50 -05001375/*
1376 * @source_mnt : mount tree to be attached
Ram Pai21444402005-11-07 17:20:03 -05001377 * @nd : place the mount tree @source_mnt is attached
1378 * @parent_nd : if non-null, detach the source_mnt from its parent and
1379 * store the parent mount and mountpoint dentry.
1380 * (done when source_mnt is moved)
Ram Paib90fa9a2005-11-07 17:19:50 -05001381 *
1382 * NOTE: in the table below explains the semantics when a source mount
1383 * of a given type is attached to a destination mount of a given type.
Ram Pai9676f0c2005-11-07 17:21:20 -05001384 * ---------------------------------------------------------------------------
1385 * | BIND MOUNT OPERATION |
1386 * |**************************************************************************
1387 * | source-->| shared | private | slave | unbindable |
1388 * | dest | | | | |
1389 * | | | | | | |
1390 * | v | | | | |
1391 * |**************************************************************************
1392 * | shared | shared (++) | shared (+) | shared(+++)| invalid |
1393 * | | | | | |
1394 * |non-shared| shared (+) | private | slave (*) | invalid |
1395 * ***************************************************************************
Ram Paib90fa9a2005-11-07 17:19:50 -05001396 * A bind operation clones the source mount and mounts the clone on the
1397 * destination mount.
1398 *
1399 * (++) the cloned mount is propagated to all the mounts in the propagation
1400 * tree of the destination mount and the cloned mount is added to
1401 * the peer group of the source mount.
1402 * (+) the cloned mount is created under the destination mount and is marked
1403 * as shared. The cloned mount is added to the peer group of the source
1404 * mount.
Ram Pai5afe0022005-11-07 17:21:01 -05001405 * (+++) the mount is propagated to all the mounts in the propagation tree
1406 * of the destination mount and the cloned mount is made slave
1407 * of the same master as that of the source mount. The cloned mount
1408 * is marked as 'shared and slave'.
1409 * (*) the cloned mount is made a slave of the same master as that of the
1410 * source mount.
1411 *
Ram Pai9676f0c2005-11-07 17:21:20 -05001412 * ---------------------------------------------------------------------------
1413 * | MOVE MOUNT OPERATION |
1414 * |**************************************************************************
1415 * | source-->| shared | private | slave | unbindable |
1416 * | dest | | | | |
1417 * | | | | | | |
1418 * | v | | | | |
1419 * |**************************************************************************
1420 * | shared | shared (+) | shared (+) | shared(+++) | invalid |
1421 * | | | | | |
1422 * |non-shared| shared (+*) | private | slave (*) | unbindable |
1423 * ***************************************************************************
Ram Pai5afe0022005-11-07 17:21:01 -05001424 *
1425 * (+) the mount is moved to the destination. And is then propagated to
1426 * all the mounts in the propagation tree of the destination mount.
Ram Pai21444402005-11-07 17:20:03 -05001427 * (+*) the mount is moved to the destination.
Ram Pai5afe0022005-11-07 17:21:01 -05001428 * (+++) the mount is moved to the destination and is then propagated to
1429 * all the mounts belonging to the destination mount's propagation tree.
1430 * the mount is marked as 'shared and slave'.
1431 * (*) the mount continues to be a slave at the new location.
Ram Paib90fa9a2005-11-07 17:19:50 -05001432 *
1433 * if the source mount is a tree, the operations explained above is
1434 * applied to each mount in the tree.
1435 * Must be called without spinlocks held, since this function can sleep
1436 * in allocations.
1437 */
1438static int attach_recursive_mnt(struct vfsmount *source_mnt,
Al Viro1a390682008-03-21 20:48:19 -04001439 struct path *path, struct path *parent_path)
Ram Paib90fa9a2005-11-07 17:19:50 -05001440{
1441 LIST_HEAD(tree_list);
Al Viro1a390682008-03-21 20:48:19 -04001442 struct vfsmount *dest_mnt = path->mnt;
1443 struct dentry *dest_dentry = path->dentry;
Ram Paib90fa9a2005-11-07 17:19:50 -05001444 struct vfsmount *child, *p;
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001445 int err;
Ram Paib90fa9a2005-11-07 17:19:50 -05001446
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001447 if (IS_MNT_SHARED(dest_mnt)) {
1448 err = invent_group_ids(source_mnt, true);
1449 if (err)
1450 goto out;
1451 }
1452 err = propagate_mnt(dest_mnt, dest_dentry, source_mnt, &tree_list);
1453 if (err)
1454 goto out_cleanup_ids;
Ram Paib90fa9a2005-11-07 17:19:50 -05001455
Nick Piggin99b7db72010-08-18 04:37:39 +10001456 br_write_lock(vfsmount_lock);
Al Virodf1a1ad2010-01-16 12:57:40 -05001457
Ram Paib90fa9a2005-11-07 17:19:50 -05001458 if (IS_MNT_SHARED(dest_mnt)) {
1459 for (p = source_mnt; p; p = next_mnt(p, source_mnt))
1460 set_mnt_shared(p);
1461 }
Al Viro1a390682008-03-21 20:48:19 -04001462 if (parent_path) {
1463 detach_mnt(source_mnt, parent_path);
1464 attach_mnt(source_mnt, path);
Al Viroe5d67f02009-04-07 12:15:39 -04001465 touch_mnt_namespace(parent_path->mnt->mnt_ns);
Ram Pai21444402005-11-07 17:20:03 -05001466 } else {
1467 mnt_set_mountpoint(dest_mnt, dest_dentry, source_mnt);
1468 commit_tree(source_mnt);
1469 }
Ram Paib90fa9a2005-11-07 17:19:50 -05001470
1471 list_for_each_entry_safe(child, p, &tree_list, mnt_hash) {
1472 list_del_init(&child->mnt_hash);
1473 commit_tree(child);
1474 }
Nick Piggin99b7db72010-08-18 04:37:39 +10001475 br_write_unlock(vfsmount_lock);
1476
Ram Paib90fa9a2005-11-07 17:19:50 -05001477 return 0;
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001478
1479 out_cleanup_ids:
1480 if (IS_MNT_SHARED(dest_mnt))
1481 cleanup_group_ids(source_mnt, NULL);
1482 out:
1483 return err;
Ram Paib90fa9a2005-11-07 17:19:50 -05001484}
1485
Al Viro8c3ee422008-03-22 18:00:39 -04001486static int graft_tree(struct vfsmount *mnt, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487{
1488 int err;
1489 if (mnt->mnt_sb->s_flags & MS_NOUSER)
1490 return -EINVAL;
1491
Al Viro8c3ee422008-03-22 18:00:39 -04001492 if (S_ISDIR(path->dentry->d_inode->i_mode) !=
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 S_ISDIR(mnt->mnt_root->d_inode->i_mode))
1494 return -ENOTDIR;
1495
1496 err = -ENOENT;
Al Viro8c3ee422008-03-22 18:00:39 -04001497 mutex_lock(&path->dentry->d_inode->i_mutex);
Al Virod83c49f2010-04-30 17:17:09 -04001498 if (cant_mount(path->dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 goto out_unlock;
1500
Alexey Dobriyanf3da3922009-05-04 03:32:03 +04001501 if (!d_unlinked(path->dentry))
Al Viro8c3ee422008-03-22 18:00:39 -04001502 err = attach_recursive_mnt(mnt, path, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503out_unlock:
Al Viro8c3ee422008-03-22 18:00:39 -04001504 mutex_unlock(&path->dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 return err;
1506}
1507
1508/*
Valerie Aurora7a2e8a82010-08-26 11:07:22 -07001509 * Sanity check the flags to change_mnt_propagation.
1510 */
1511
1512static int flags_to_propagation_type(int flags)
1513{
1514 int type = flags & ~MS_REC;
1515
1516 /* Fail if any non-propagation flags are set */
1517 if (type & ~(MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
1518 return 0;
1519 /* Only one propagation flag should be set */
1520 if (!is_power_of_2(type))
1521 return 0;
1522 return type;
1523}
1524
1525/*
Ram Pai07b20882005-11-07 17:19:07 -05001526 * recursively change the type of the mountpoint.
1527 */
Al Viro0a0d8a42008-08-02 00:55:27 -04001528static int do_change_type(struct path *path, int flag)
Ram Pai07b20882005-11-07 17:19:07 -05001529{
Al Viro2d92ab32008-08-02 00:51:11 -04001530 struct vfsmount *m, *mnt = path->mnt;
Ram Pai07b20882005-11-07 17:19:07 -05001531 int recurse = flag & MS_REC;
Valerie Aurora7a2e8a82010-08-26 11:07:22 -07001532 int type;
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001533 int err = 0;
Ram Pai07b20882005-11-07 17:19:07 -05001534
Miklos Szerediee6f9582007-05-08 00:30:40 -07001535 if (!capable(CAP_SYS_ADMIN))
1536 return -EPERM;
1537
Al Viro2d92ab32008-08-02 00:51:11 -04001538 if (path->dentry != path->mnt->mnt_root)
Ram Pai07b20882005-11-07 17:19:07 -05001539 return -EINVAL;
1540
Valerie Aurora7a2e8a82010-08-26 11:07:22 -07001541 type = flags_to_propagation_type(flag);
1542 if (!type)
1543 return -EINVAL;
1544
Ram Pai07b20882005-11-07 17:19:07 -05001545 down_write(&namespace_sem);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001546 if (type == MS_SHARED) {
1547 err = invent_group_ids(mnt, recurse);
1548 if (err)
1549 goto out_unlock;
1550 }
1551
Nick Piggin99b7db72010-08-18 04:37:39 +10001552 br_write_lock(vfsmount_lock);
Ram Pai07b20882005-11-07 17:19:07 -05001553 for (m = mnt; m; m = (recurse ? next_mnt(m, mnt) : NULL))
1554 change_mnt_propagation(m, type);
Nick Piggin99b7db72010-08-18 04:37:39 +10001555 br_write_unlock(vfsmount_lock);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001556
1557 out_unlock:
Ram Pai07b20882005-11-07 17:19:07 -05001558 up_write(&namespace_sem);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001559 return err;
Ram Pai07b20882005-11-07 17:19:07 -05001560}
1561
1562/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 * do loopback mount.
1564 */
Al Viro0a0d8a42008-08-02 00:55:27 -04001565static int do_loopback(struct path *path, char *old_name,
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001566 int recurse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567{
Al Viro2d92ab32008-08-02 00:51:11 -04001568 struct path old_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 struct vfsmount *mnt = NULL;
Al Viro2d92ab32008-08-02 00:51:11 -04001570 int err = mount_is_safe(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 if (err)
1572 return err;
1573 if (!old_name || !*old_name)
1574 return -EINVAL;
Al Viro2d92ab32008-08-02 00:51:11 -04001575 err = kern_path(old_name, LOOKUP_FOLLOW, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 if (err)
1577 return err;
1578
Ram Pai390c6842005-11-07 17:17:51 -05001579 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 err = -EINVAL;
Al Viro2d92ab32008-08-02 00:51:11 -04001581 if (IS_MNT_UNBINDABLE(old_path.mnt))
Jan Blunck4ac91372008-02-14 19:34:32 -08001582 goto out;
Ram Pai9676f0c2005-11-07 17:21:20 -05001583
Al Viro2d92ab32008-08-02 00:51:11 -04001584 if (!check_mnt(path->mnt) || !check_mnt(old_path.mnt))
Al Viroccd48bc2005-11-07 17:15:04 -05001585 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Al Viroccd48bc2005-11-07 17:15:04 -05001587 err = -ENOMEM;
1588 if (recurse)
Al Viro2d92ab32008-08-02 00:51:11 -04001589 mnt = copy_tree(old_path.mnt, old_path.dentry, 0);
Al Viroccd48bc2005-11-07 17:15:04 -05001590 else
Al Viro2d92ab32008-08-02 00:51:11 -04001591 mnt = clone_mnt(old_path.mnt, old_path.dentry, 0);
Al Viroccd48bc2005-11-07 17:15:04 -05001592
1593 if (!mnt)
1594 goto out;
1595
Al Viro2d92ab32008-08-02 00:51:11 -04001596 err = graft_tree(mnt, path);
Al Viroccd48bc2005-11-07 17:15:04 -05001597 if (err) {
Ram Pai70fbcdf2005-11-07 17:17:04 -05001598 LIST_HEAD(umount_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10001599
1600 br_write_lock(vfsmount_lock);
Ram Paia05964f2005-11-07 17:20:17 -05001601 umount_tree(mnt, 0, &umount_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10001602 br_write_unlock(vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001603 release_mounts(&umount_list);
Ram Pai5b83d2c5c2005-11-07 17:16:29 -05001604 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Al Viroccd48bc2005-11-07 17:15:04 -05001606out:
Ram Pai390c6842005-11-07 17:17:51 -05001607 up_write(&namespace_sem);
Al Viro2d92ab32008-08-02 00:51:11 -04001608 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 return err;
1610}
1611
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08001612static int change_mount_flags(struct vfsmount *mnt, int ms_flags)
1613{
1614 int error = 0;
1615 int readonly_request = 0;
1616
1617 if (ms_flags & MS_RDONLY)
1618 readonly_request = 1;
1619 if (readonly_request == __mnt_is_readonly(mnt))
1620 return 0;
1621
1622 if (readonly_request)
1623 error = mnt_make_readonly(mnt);
1624 else
1625 __mnt_unmake_readonly(mnt);
1626 return error;
1627}
1628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629/*
1630 * change filesystem flags. dir should be a physical root of filesystem.
1631 * If you've mounted a non-root directory somewhere and want to do remount
1632 * on it - tough luck.
1633 */
Al Viro0a0d8a42008-08-02 00:55:27 -04001634static int do_remount(struct path *path, int flags, int mnt_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 void *data)
1636{
1637 int err;
Al Viro2d92ab32008-08-02 00:51:11 -04001638 struct super_block *sb = path->mnt->mnt_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
1640 if (!capable(CAP_SYS_ADMIN))
1641 return -EPERM;
1642
Al Viro2d92ab32008-08-02 00:51:11 -04001643 if (!check_mnt(path->mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 return -EINVAL;
1645
Al Viro2d92ab32008-08-02 00:51:11 -04001646 if (path->dentry != path->mnt->mnt_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 return -EINVAL;
1648
1649 down_write(&sb->s_umount);
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08001650 if (flags & MS_BIND)
Al Viro2d92ab32008-08-02 00:51:11 -04001651 err = change_mount_flags(path->mnt, flags);
Al Viro4aa98cf2009-05-08 13:36:58 -04001652 else
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08001653 err = do_remount_sb(sb, flags, data, 0);
Al Viro7b43a792010-01-16 13:01:26 -05001654 if (!err) {
Nick Piggin99b7db72010-08-18 04:37:39 +10001655 br_write_lock(vfsmount_lock);
Valerie Aurora495d6c92010-01-26 14:20:47 -05001656 mnt_flags |= path->mnt->mnt_flags & MNT_PROPAGATION_MASK;
Al Viro2d92ab32008-08-02 00:51:11 -04001657 path->mnt->mnt_flags = mnt_flags;
Nick Piggin99b7db72010-08-18 04:37:39 +10001658 br_write_unlock(vfsmount_lock);
Al Viro7b43a792010-01-16 13:01:26 -05001659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 up_write(&sb->s_umount);
Dan Williams0e55a7c2008-09-26 19:01:20 -07001661 if (!err) {
Nick Piggin99b7db72010-08-18 04:37:39 +10001662 br_write_lock(vfsmount_lock);
Dan Williams0e55a7c2008-09-26 19:01:20 -07001663 touch_mnt_namespace(path->mnt->mnt_ns);
Nick Piggin99b7db72010-08-18 04:37:39 +10001664 br_write_unlock(vfsmount_lock);
Dan Williams0e55a7c2008-09-26 19:01:20 -07001665 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 return err;
1667}
1668
Ram Pai9676f0c2005-11-07 17:21:20 -05001669static inline int tree_contains_unbindable(struct vfsmount *mnt)
1670{
1671 struct vfsmount *p;
1672 for (p = mnt; p; p = next_mnt(p, mnt)) {
1673 if (IS_MNT_UNBINDABLE(p))
1674 return 1;
1675 }
1676 return 0;
1677}
1678
Al Viro0a0d8a42008-08-02 00:55:27 -04001679static int do_move_mount(struct path *path, char *old_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680{
Al Viro2d92ab32008-08-02 00:51:11 -04001681 struct path old_path, parent_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 struct vfsmount *p;
1683 int err = 0;
1684 if (!capable(CAP_SYS_ADMIN))
1685 return -EPERM;
1686 if (!old_name || !*old_name)
1687 return -EINVAL;
Al Viro2d92ab32008-08-02 00:51:11 -04001688 err = kern_path(old_name, LOOKUP_FOLLOW, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 if (err)
1690 return err;
1691
Ram Pai390c6842005-11-07 17:17:51 -05001692 down_write(&namespace_sem);
Al Viro2d92ab32008-08-02 00:51:11 -04001693 while (d_mountpoint(path->dentry) &&
Al Viro9393bd02009-04-18 13:58:15 -04001694 follow_down(path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 ;
1696 err = -EINVAL;
Al Viro2d92ab32008-08-02 00:51:11 -04001697 if (!check_mnt(path->mnt) || !check_mnt(old_path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 goto out;
1699
1700 err = -ENOENT;
Al Viro2d92ab32008-08-02 00:51:11 -04001701 mutex_lock(&path->dentry->d_inode->i_mutex);
Al Virod83c49f2010-04-30 17:17:09 -04001702 if (cant_mount(path->dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 goto out1;
1704
Alexey Dobriyanf3da3922009-05-04 03:32:03 +04001705 if (d_unlinked(path->dentry))
Ram Pai21444402005-11-07 17:20:03 -05001706 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
1708 err = -EINVAL;
Al Viro2d92ab32008-08-02 00:51:11 -04001709 if (old_path.dentry != old_path.mnt->mnt_root)
Ram Pai21444402005-11-07 17:20:03 -05001710 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Al Viro2d92ab32008-08-02 00:51:11 -04001712 if (old_path.mnt == old_path.mnt->mnt_parent)
Ram Pai21444402005-11-07 17:20:03 -05001713 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
Al Viro2d92ab32008-08-02 00:51:11 -04001715 if (S_ISDIR(path->dentry->d_inode->i_mode) !=
1716 S_ISDIR(old_path.dentry->d_inode->i_mode))
Ram Pai21444402005-11-07 17:20:03 -05001717 goto out1;
1718 /*
1719 * Don't move a mount residing in a shared parent.
1720 */
Al Viro2d92ab32008-08-02 00:51:11 -04001721 if (old_path.mnt->mnt_parent &&
1722 IS_MNT_SHARED(old_path.mnt->mnt_parent))
Ram Pai21444402005-11-07 17:20:03 -05001723 goto out1;
Ram Pai9676f0c2005-11-07 17:21:20 -05001724 /*
1725 * Don't move a mount tree containing unbindable mounts to a destination
1726 * mount which is shared.
1727 */
Al Viro2d92ab32008-08-02 00:51:11 -04001728 if (IS_MNT_SHARED(path->mnt) &&
1729 tree_contains_unbindable(old_path.mnt))
Ram Pai9676f0c2005-11-07 17:21:20 -05001730 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 err = -ELOOP;
Al Viro2d92ab32008-08-02 00:51:11 -04001732 for (p = path->mnt; p->mnt_parent != p; p = p->mnt_parent)
1733 if (p == old_path.mnt)
Ram Pai21444402005-11-07 17:20:03 -05001734 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Al Viro2d92ab32008-08-02 00:51:11 -04001736 err = attach_recursive_mnt(old_path.mnt, path, &parent_path);
Jan Blunck4ac91372008-02-14 19:34:32 -08001737 if (err)
Ram Pai21444402005-11-07 17:20:03 -05001738 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
1740 /* if the mount is moved, it should no longer be expire
1741 * automatically */
Al Viro2d92ab32008-08-02 00:51:11 -04001742 list_del_init(&old_path.mnt->mnt_expire);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743out1:
Al Viro2d92ab32008-08-02 00:51:11 -04001744 mutex_unlock(&path->dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745out:
Ram Pai390c6842005-11-07 17:17:51 -05001746 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 if (!err)
Al Viro1a390682008-03-21 20:48:19 -04001748 path_put(&parent_path);
Al Viro2d92ab32008-08-02 00:51:11 -04001749 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 return err;
1751}
1752
1753/*
1754 * create a new mount for userspace and request it to be added into the
1755 * namespace's tree
1756 */
Al Viro0a0d8a42008-08-02 00:55:27 -04001757static int do_new_mount(struct path *path, char *type, int flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 int mnt_flags, char *name, void *data)
1759{
1760 struct vfsmount *mnt;
1761
Vegard Nossumeca6f532009-09-18 13:05:45 -07001762 if (!type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 return -EINVAL;
1764
1765 /* we need capabilities... */
1766 if (!capable(CAP_SYS_ADMIN))
1767 return -EPERM;
1768
1769 mnt = do_kern_mount(type, flags, name, data);
1770 if (IS_ERR(mnt))
1771 return PTR_ERR(mnt);
1772
Al Viro2d92ab32008-08-02 00:51:11 -04001773 return do_add_mount(mnt, path, mnt_flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774}
1775
1776/*
1777 * add a mount into a namespace's mount tree
1778 * - provide the option of adding the new mount to an expiration list
1779 */
Al Viro8d66bf52008-08-01 09:05:54 -04001780int do_add_mount(struct vfsmount *newmnt, struct path *path,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 int mnt_flags, struct list_head *fslist)
1782{
1783 int err;
1784
Al Viro80893522010-02-05 09:30:46 -05001785 mnt_flags &= ~(MNT_SHARED | MNT_WRITE_HOLD | MNT_INTERNAL);
Al Viro27d55f12010-01-16 13:07:36 -05001786
Ram Pai390c6842005-11-07 17:17:51 -05001787 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 /* Something was mounted here while we slept */
Al Viro8d66bf52008-08-01 09:05:54 -04001789 while (d_mountpoint(path->dentry) &&
Al Viro9393bd02009-04-18 13:58:15 -04001790 follow_down(path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 ;
1792 err = -EINVAL;
Al Virodd5cae62009-04-07 12:21:18 -04001793 if (!(mnt_flags & MNT_SHRINKABLE) && !check_mnt(path->mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 goto unlock;
1795
1796 /* Refuse the same filesystem on the same mount point */
1797 err = -EBUSY;
Al Viro8d66bf52008-08-01 09:05:54 -04001798 if (path->mnt->mnt_sb == newmnt->mnt_sb &&
1799 path->mnt->mnt_root == path->dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 goto unlock;
1801
1802 err = -EINVAL;
1803 if (S_ISLNK(newmnt->mnt_root->d_inode->i_mode))
1804 goto unlock;
1805
1806 newmnt->mnt_flags = mnt_flags;
Al Viro8d66bf52008-08-01 09:05:54 -04001807 if ((err = graft_tree(newmnt, path)))
Ram Pai5b83d2c5c2005-11-07 17:16:29 -05001808 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Al Viro6758f952008-03-22 16:14:30 -04001810 if (fslist) /* add to the specified expiration list */
Miklos Szeredi55e700b2005-07-07 17:57:30 -07001811 list_add_tail(&newmnt->mnt_expire, fslist);
Al Viro6758f952008-03-22 16:14:30 -04001812
Ram Pai390c6842005-11-07 17:17:51 -05001813 up_write(&namespace_sem);
Ram Pai5b83d2c5c2005-11-07 17:16:29 -05001814 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
1816unlock:
Ram Pai390c6842005-11-07 17:17:51 -05001817 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 mntput(newmnt);
1819 return err;
1820}
1821
1822EXPORT_SYMBOL_GPL(do_add_mount);
1823
Trond Myklebust5528f9112006-06-09 09:34:17 -04001824/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 * process a list of expirable mountpoints with the intent of discarding any
1826 * mountpoints that aren't in use and haven't been touched since last we came
1827 * here
1828 */
1829void mark_mounts_for_expiry(struct list_head *mounts)
1830{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 struct vfsmount *mnt, *next;
1832 LIST_HEAD(graveyard);
Al Virobcc5c7d2008-03-22 00:21:53 -04001833 LIST_HEAD(umounts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
1835 if (list_empty(mounts))
1836 return;
1837
Al Virobcc5c7d2008-03-22 00:21:53 -04001838 down_write(&namespace_sem);
Nick Piggin99b7db72010-08-18 04:37:39 +10001839 br_write_lock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
1841 /* extract from the expiration list every vfsmount that matches the
1842 * following criteria:
1843 * - only referenced by its parent vfsmount
1844 * - still marked for expiry (marked on the last call here; marks are
1845 * cleared by mntput())
1846 */
Miklos Szeredi55e700b2005-07-07 17:57:30 -07001847 list_for_each_entry_safe(mnt, next, mounts, mnt_expire) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 if (!xchg(&mnt->mnt_expiry_mark, 1) ||
Al Virobcc5c7d2008-03-22 00:21:53 -04001849 propagate_mount_busy(mnt, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 continue;
Miklos Szeredi55e700b2005-07-07 17:57:30 -07001851 list_move(&mnt->mnt_expire, &graveyard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 }
Al Virobcc5c7d2008-03-22 00:21:53 -04001853 while (!list_empty(&graveyard)) {
1854 mnt = list_first_entry(&graveyard, struct vfsmount, mnt_expire);
1855 touch_mnt_namespace(mnt->mnt_ns);
1856 umount_tree(mnt, 1, &umounts);
1857 }
Nick Piggin99b7db72010-08-18 04:37:39 +10001858 br_write_unlock(vfsmount_lock);
Al Virobcc5c7d2008-03-22 00:21:53 -04001859 up_write(&namespace_sem);
1860
1861 release_mounts(&umounts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862}
1863
1864EXPORT_SYMBOL_GPL(mark_mounts_for_expiry);
1865
1866/*
Trond Myklebust5528f9112006-06-09 09:34:17 -04001867 * Ripoff of 'select_parent()'
1868 *
1869 * search the list of submounts for a given mountpoint, and move any
1870 * shrinkable submounts to the 'graveyard' list.
1871 */
1872static int select_submounts(struct vfsmount *parent, struct list_head *graveyard)
1873{
1874 struct vfsmount *this_parent = parent;
1875 struct list_head *next;
1876 int found = 0;
1877
1878repeat:
1879 next = this_parent->mnt_mounts.next;
1880resume:
1881 while (next != &this_parent->mnt_mounts) {
1882 struct list_head *tmp = next;
1883 struct vfsmount *mnt = list_entry(tmp, struct vfsmount, mnt_child);
1884
1885 next = tmp->next;
1886 if (!(mnt->mnt_flags & MNT_SHRINKABLE))
1887 continue;
1888 /*
1889 * Descend a level if the d_mounts list is non-empty.
1890 */
1891 if (!list_empty(&mnt->mnt_mounts)) {
1892 this_parent = mnt;
1893 goto repeat;
1894 }
1895
1896 if (!propagate_mount_busy(mnt, 1)) {
Trond Myklebust5528f9112006-06-09 09:34:17 -04001897 list_move_tail(&mnt->mnt_expire, graveyard);
1898 found++;
1899 }
1900 }
1901 /*
1902 * All done at this level ... ascend and resume the search
1903 */
1904 if (this_parent != parent) {
1905 next = this_parent->mnt_child.next;
1906 this_parent = this_parent->mnt_parent;
1907 goto resume;
1908 }
1909 return found;
1910}
1911
1912/*
1913 * process a list of expirable mountpoints with the intent of discarding any
1914 * submounts of a specific parent mountpoint
Nick Piggin99b7db72010-08-18 04:37:39 +10001915 *
1916 * vfsmount_lock must be held for write
Trond Myklebust5528f9112006-06-09 09:34:17 -04001917 */
Al Viroc35038b2008-03-22 00:46:23 -04001918static void shrink_submounts(struct vfsmount *mnt, struct list_head *umounts)
Trond Myklebust5528f9112006-06-09 09:34:17 -04001919{
1920 LIST_HEAD(graveyard);
Al Viroc35038b2008-03-22 00:46:23 -04001921 struct vfsmount *m;
Trond Myklebust5528f9112006-06-09 09:34:17 -04001922
Trond Myklebust5528f9112006-06-09 09:34:17 -04001923 /* extract submounts of 'mountpoint' from the expiration list */
Al Viroc35038b2008-03-22 00:46:23 -04001924 while (select_submounts(mnt, &graveyard)) {
Al Virobcc5c7d2008-03-22 00:21:53 -04001925 while (!list_empty(&graveyard)) {
Al Viroc35038b2008-03-22 00:46:23 -04001926 m = list_first_entry(&graveyard, struct vfsmount,
Al Virobcc5c7d2008-03-22 00:21:53 -04001927 mnt_expire);
Eric W. Biedermanafef80b2008-11-12 13:26:54 -08001928 touch_mnt_namespace(m->mnt_ns);
1929 umount_tree(m, 1, umounts);
Al Virobcc5c7d2008-03-22 00:21:53 -04001930 }
1931 }
Trond Myklebust5528f9112006-06-09 09:34:17 -04001932}
1933
Trond Myklebust5528f9112006-06-09 09:34:17 -04001934/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 * Some copy_from_user() implementations do not return the exact number of
1936 * bytes remaining to copy on a fault. But copy_mount_options() requires that.
1937 * Note that this function differs from copy_from_user() in that it will oops
1938 * on bad values of `to', rather than returning a short copy.
1939 */
Ram Paib58fed82005-11-07 17:16:09 -05001940static long exact_copy_from_user(void *to, const void __user * from,
1941 unsigned long n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942{
1943 char *t = to;
1944 const char __user *f = from;
1945 char c;
1946
1947 if (!access_ok(VERIFY_READ, from, n))
1948 return n;
1949
1950 while (n) {
1951 if (__get_user(c, f)) {
1952 memset(t, 0, n);
1953 break;
1954 }
1955 *t++ = c;
1956 f++;
1957 n--;
1958 }
1959 return n;
1960}
1961
Ram Paib58fed82005-11-07 17:16:09 -05001962int copy_mount_options(const void __user * data, unsigned long *where)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963{
1964 int i;
1965 unsigned long page;
1966 unsigned long size;
Ram Paib58fed82005-11-07 17:16:09 -05001967
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 *where = 0;
1969 if (!data)
1970 return 0;
1971
1972 if (!(page = __get_free_page(GFP_KERNEL)))
1973 return -ENOMEM;
1974
1975 /* We only care that *some* data at the address the user
1976 * gave us is valid. Just in case, we'll zero
1977 * the remainder of the page.
1978 */
1979 /* copy_from_user cannot cross TASK_SIZE ! */
1980 size = TASK_SIZE - (unsigned long)data;
1981 if (size > PAGE_SIZE)
1982 size = PAGE_SIZE;
1983
1984 i = size - exact_copy_from_user((void *)page, data, size);
1985 if (!i) {
Ram Paib58fed82005-11-07 17:16:09 -05001986 free_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 return -EFAULT;
1988 }
1989 if (i != PAGE_SIZE)
1990 memset((char *)page + i, 0, PAGE_SIZE - i);
1991 *where = page;
1992 return 0;
1993}
1994
Vegard Nossumeca6f532009-09-18 13:05:45 -07001995int copy_mount_string(const void __user *data, char **where)
1996{
1997 char *tmp;
1998
1999 if (!data) {
2000 *where = NULL;
2001 return 0;
2002 }
2003
2004 tmp = strndup_user(data, PAGE_SIZE);
2005 if (IS_ERR(tmp))
2006 return PTR_ERR(tmp);
2007
2008 *where = tmp;
2009 return 0;
2010}
2011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012/*
2013 * Flags is a 32-bit value that allows up to 31 non-fs dependent flags to
2014 * be given to the mount() call (ie: read-only, no-dev, no-suid etc).
2015 *
2016 * data is a (void *) that can point to any structure up to
2017 * PAGE_SIZE-1 bytes, which can contain arbitrary fs-dependent
2018 * information (or be NULL).
2019 *
2020 * Pre-0.97 versions of mount() didn't have a flags word.
2021 * When the flags word was introduced its top half was required
2022 * to have the magic value 0xC0ED, and this remained so until 2.4.0-test9.
2023 * Therefore, if this magic number is present, it carries no information
2024 * and must be discarded.
2025 */
Ram Paib58fed82005-11-07 17:16:09 -05002026long do_mount(char *dev_name, char *dir_name, char *type_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 unsigned long flags, void *data_page)
2028{
Al Viro2d92ab32008-08-02 00:51:11 -04002029 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 int retval = 0;
2031 int mnt_flags = 0;
2032
2033 /* Discard magic */
2034 if ((flags & MS_MGC_MSK) == MS_MGC_VAL)
2035 flags &= ~MS_MGC_MSK;
2036
2037 /* Basic sanity checks */
2038
2039 if (!dir_name || !*dir_name || !memchr(dir_name, 0, PAGE_SIZE))
2040 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
2042 if (data_page)
2043 ((char *)data_page)[PAGE_SIZE - 1] = 0;
2044
Tetsuo Handaa27ab9f22009-10-04 21:49:49 +09002045 /* ... and get the mountpoint */
2046 retval = kern_path(dir_name, LOOKUP_FOLLOW, &path);
2047 if (retval)
2048 return retval;
2049
2050 retval = security_sb_mount(dev_name, &path,
2051 type_page, flags, data_page);
2052 if (retval)
2053 goto dput_out;
2054
Andi Kleen613cbe32009-04-19 18:40:43 +02002055 /* Default to relatime unless overriden */
2056 if (!(flags & MS_NOATIME))
2057 mnt_flags |= MNT_RELATIME;
Matthew Garrett0a1c01c2009-03-26 17:53:14 +00002058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 /* Separate the per-mountpoint flags */
2060 if (flags & MS_NOSUID)
2061 mnt_flags |= MNT_NOSUID;
2062 if (flags & MS_NODEV)
2063 mnt_flags |= MNT_NODEV;
2064 if (flags & MS_NOEXEC)
2065 mnt_flags |= MNT_NOEXEC;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08002066 if (flags & MS_NOATIME)
2067 mnt_flags |= MNT_NOATIME;
2068 if (flags & MS_NODIRATIME)
2069 mnt_flags |= MNT_NODIRATIME;
Matthew Garrettd0adde52009-03-26 17:49:56 +00002070 if (flags & MS_STRICTATIME)
2071 mnt_flags &= ~(MNT_RELATIME | MNT_NOATIME);
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08002072 if (flags & MS_RDONLY)
2073 mnt_flags |= MNT_READONLY;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08002074
Al Viro7a4dec52010-08-09 12:05:43 -04002075 flags &= ~(MS_NOSUID | MS_NOEXEC | MS_NODEV | MS_ACTIVE | MS_BORN |
Matthew Garrettd0adde52009-03-26 17:49:56 +00002076 MS_NOATIME | MS_NODIRATIME | MS_RELATIME| MS_KERNMOUNT |
2077 MS_STRICTATIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 if (flags & MS_REMOUNT)
Al Viro2d92ab32008-08-02 00:51:11 -04002080 retval = do_remount(&path, flags & ~MS_REMOUNT, mnt_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 data_page);
2082 else if (flags & MS_BIND)
Al Viro2d92ab32008-08-02 00:51:11 -04002083 retval = do_loopback(&path, dev_name, flags & MS_REC);
Ram Pai9676f0c2005-11-07 17:21:20 -05002084 else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
Al Viro2d92ab32008-08-02 00:51:11 -04002085 retval = do_change_type(&path, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 else if (flags & MS_MOVE)
Al Viro2d92ab32008-08-02 00:51:11 -04002087 retval = do_move_mount(&path, dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 else
Al Viro2d92ab32008-08-02 00:51:11 -04002089 retval = do_new_mount(&path, type_page, flags, mnt_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 dev_name, data_page);
2091dput_out:
Al Viro2d92ab32008-08-02 00:51:11 -04002092 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 return retval;
2094}
2095
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002096static struct mnt_namespace *alloc_mnt_ns(void)
2097{
2098 struct mnt_namespace *new_ns;
2099
2100 new_ns = kmalloc(sizeof(struct mnt_namespace), GFP_KERNEL);
2101 if (!new_ns)
2102 return ERR_PTR(-ENOMEM);
2103 atomic_set(&new_ns->count, 1);
2104 new_ns->root = NULL;
2105 INIT_LIST_HEAD(&new_ns->list);
2106 init_waitqueue_head(&new_ns->poll);
2107 new_ns->event = 0;
2108 return new_ns;
2109}
2110
JANAK DESAI741a2952006-02-07 12:59:00 -08002111/*
2112 * Allocate a new namespace structure and populate it with contents
2113 * copied from the namespace of the passed in task structure.
2114 */
Badari Pulavartye3222c42007-05-08 00:25:21 -07002115static struct mnt_namespace *dup_mnt_ns(struct mnt_namespace *mnt_ns,
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002116 struct fs_struct *fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002118 struct mnt_namespace *new_ns;
Al Viro7f2da1e2008-05-10 20:44:54 -04002119 struct vfsmount *rootmnt = NULL, *pwdmnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 struct vfsmount *p, *q;
2121
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002122 new_ns = alloc_mnt_ns();
2123 if (IS_ERR(new_ns))
2124 return new_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
Ram Pai390c6842005-11-07 17:17:51 -05002126 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 /* First pass: copy the tree topology */
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002128 new_ns->root = copy_tree(mnt_ns->root, mnt_ns->root->mnt_root,
Ram Pai9676f0c2005-11-07 17:21:20 -05002129 CL_COPY_ALL | CL_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 if (!new_ns->root) {
Ram Pai390c6842005-11-07 17:17:51 -05002131 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 kfree(new_ns);
Julia Lawall5cc4a032008-12-01 14:34:51 -08002133 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 }
Nick Piggin99b7db72010-08-18 04:37:39 +10002135 br_write_lock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 list_add_tail(&new_ns->list, &new_ns->root->mnt_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10002137 br_write_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
2139 /*
2140 * Second pass: switch the tsk->fs->* elements and mark new vfsmounts
2141 * as belonging to new namespace. We have already acquired a private
2142 * fs_struct, so tsk->fs->lock is not needed.
2143 */
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002144 p = mnt_ns->root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 q = new_ns->root;
2146 while (p) {
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002147 q->mnt_ns = new_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 if (fs) {
Jan Blunck6ac08c32008-02-14 19:34:38 -08002149 if (p == fs->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 rootmnt = p;
Jan Blunck6ac08c32008-02-14 19:34:38 -08002151 fs->root.mnt = mntget(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 }
Jan Blunck6ac08c32008-02-14 19:34:38 -08002153 if (p == fs->pwd.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 pwdmnt = p;
Jan Blunck6ac08c32008-02-14 19:34:38 -08002155 fs->pwd.mnt = mntget(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 }
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002158 p = next_mnt(p, mnt_ns->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 q = next_mnt(q, new_ns->root);
2160 }
Ram Pai390c6842005-11-07 17:17:51 -05002161 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 if (rootmnt)
2164 mntput(rootmnt);
2165 if (pwdmnt)
2166 mntput(pwdmnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
JANAK DESAI741a2952006-02-07 12:59:00 -08002168 return new_ns;
2169}
2170
Eric W. Biederman213dd262007-07-15 23:41:15 -07002171struct mnt_namespace *copy_mnt_ns(unsigned long flags, struct mnt_namespace *ns,
Badari Pulavartye3222c42007-05-08 00:25:21 -07002172 struct fs_struct *new_fs)
JANAK DESAI741a2952006-02-07 12:59:00 -08002173{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002174 struct mnt_namespace *new_ns;
JANAK DESAI741a2952006-02-07 12:59:00 -08002175
Badari Pulavartye3222c42007-05-08 00:25:21 -07002176 BUG_ON(!ns);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002177 get_mnt_ns(ns);
JANAK DESAI741a2952006-02-07 12:59:00 -08002178
2179 if (!(flags & CLONE_NEWNS))
Badari Pulavartye3222c42007-05-08 00:25:21 -07002180 return ns;
JANAK DESAI741a2952006-02-07 12:59:00 -08002181
Badari Pulavartye3222c42007-05-08 00:25:21 -07002182 new_ns = dup_mnt_ns(ns, new_fs);
JANAK DESAI741a2952006-02-07 12:59:00 -08002183
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002184 put_mnt_ns(ns);
Badari Pulavartye3222c42007-05-08 00:25:21 -07002185 return new_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186}
2187
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002188/**
2189 * create_mnt_ns - creates a private namespace and adds a root filesystem
2190 * @mnt: pointer to the new root filesystem mountpoint
2191 */
Linus Torvaldsa2770d82009-12-17 12:51:05 -08002192struct mnt_namespace *create_mnt_ns(struct vfsmount *mnt)
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002193{
2194 struct mnt_namespace *new_ns;
2195
2196 new_ns = alloc_mnt_ns();
2197 if (!IS_ERR(new_ns)) {
2198 mnt->mnt_ns = new_ns;
2199 new_ns->root = mnt;
2200 list_add(&new_ns->list, &new_ns->root->mnt_list);
2201 }
2202 return new_ns;
2203}
Linus Torvaldsa2770d82009-12-17 12:51:05 -08002204EXPORT_SYMBOL(create_mnt_ns);
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002205
Heiko Carstensbdc480e2009-01-14 14:14:12 +01002206SYSCALL_DEFINE5(mount, char __user *, dev_name, char __user *, dir_name,
2207 char __user *, type, unsigned long, flags, void __user *, data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208{
Vegard Nossumeca6f532009-09-18 13:05:45 -07002209 int ret;
2210 char *kernel_type;
2211 char *kernel_dir;
2212 char *kernel_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 unsigned long data_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
Vegard Nossumeca6f532009-09-18 13:05:45 -07002215 ret = copy_mount_string(type, &kernel_type);
2216 if (ret < 0)
2217 goto out_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
Vegard Nossumeca6f532009-09-18 13:05:45 -07002219 kernel_dir = getname(dir_name);
2220 if (IS_ERR(kernel_dir)) {
2221 ret = PTR_ERR(kernel_dir);
2222 goto out_dir;
2223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
Vegard Nossumeca6f532009-09-18 13:05:45 -07002225 ret = copy_mount_string(dev_name, &kernel_dev);
2226 if (ret < 0)
2227 goto out_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
Vegard Nossumeca6f532009-09-18 13:05:45 -07002229 ret = copy_mount_options(data, &data_page);
2230 if (ret < 0)
2231 goto out_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
Vegard Nossumeca6f532009-09-18 13:05:45 -07002233 ret = do_mount(kernel_dev, kernel_dir, kernel_type, flags,
2234 (void *) data_page);
2235
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 free_page(data_page);
Vegard Nossumeca6f532009-09-18 13:05:45 -07002237out_data:
2238 kfree(kernel_dev);
2239out_dev:
2240 putname(kernel_dir);
2241out_dir:
2242 kfree(kernel_type);
2243out_type:
2244 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245}
2246
2247/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 * pivot_root Semantics:
2249 * Moves the root file system of the current process to the directory put_old,
2250 * makes new_root as the new root file system of the current process, and sets
2251 * root/cwd of all processes which had them on the current root to new_root.
2252 *
2253 * Restrictions:
2254 * The new_root and put_old must be directories, and must not be on the
2255 * same file system as the current process root. The put_old must be
2256 * underneath new_root, i.e. adding a non-zero number of /.. to the string
2257 * pointed to by put_old must yield the same directory as new_root. No other
2258 * file system may be mounted on put_old. After all, new_root is a mountpoint.
2259 *
Neil Brown4a0d11f2006-01-08 01:03:18 -08002260 * Also, the current root cannot be on the 'rootfs' (initial ramfs) filesystem.
2261 * See Documentation/filesystems/ramfs-rootfs-initramfs.txt for alternatives
2262 * in this situation.
2263 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 * Notes:
2265 * - we don't move root/cwd if they are not at the root (reason: if something
2266 * cared enough to change them, it's probably wrong to force them elsewhere)
2267 * - it's okay to pick a root that isn't the root of a file system, e.g.
2268 * /nfs/my_root where /nfs is the mount point. It must be a mountpoint,
2269 * though, so you may need to say mount --bind /nfs/my_root /nfs/my_root
2270 * first.
2271 */
Heiko Carstens3480b252009-01-14 14:14:16 +01002272SYSCALL_DEFINE2(pivot_root, const char __user *, new_root,
2273 const char __user *, put_old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274{
2275 struct vfsmount *tmp;
Al Viro2d8f3032008-07-22 09:59:21 -04002276 struct path new, old, parent_path, root_parent, root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 int error;
2278
2279 if (!capable(CAP_SYS_ADMIN))
2280 return -EPERM;
2281
Al Viro2d8f3032008-07-22 09:59:21 -04002282 error = user_path_dir(new_root, &new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 if (error)
2284 goto out0;
2285 error = -EINVAL;
Al Viro2d8f3032008-07-22 09:59:21 -04002286 if (!check_mnt(new.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 goto out1;
2288
Al Viro2d8f3032008-07-22 09:59:21 -04002289 error = user_path_dir(put_old, &old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 if (error)
2291 goto out1;
2292
Al Viro2d8f3032008-07-22 09:59:21 -04002293 error = security_sb_pivotroot(&old, &new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 if (error) {
Al Viro2d8f3032008-07-22 09:59:21 -04002295 path_put(&old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 goto out1;
2297 }
2298
Miklos Szeredif7ad3c62010-08-10 11:41:36 +02002299 get_fs_root(current->fs, &root);
Ram Pai390c6842005-11-07 17:17:51 -05002300 down_write(&namespace_sem);
Al Viro2d8f3032008-07-22 09:59:21 -04002301 mutex_lock(&old.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 error = -EINVAL;
Al Viro2d8f3032008-07-22 09:59:21 -04002303 if (IS_MNT_SHARED(old.mnt) ||
2304 IS_MNT_SHARED(new.mnt->mnt_parent) ||
Al Viro8c3ee422008-03-22 18:00:39 -04002305 IS_MNT_SHARED(root.mnt->mnt_parent))
Ram Pai21444402005-11-07 17:20:03 -05002306 goto out2;
Al Viro8c3ee422008-03-22 18:00:39 -04002307 if (!check_mnt(root.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 goto out2;
2309 error = -ENOENT;
Al Virod83c49f2010-04-30 17:17:09 -04002310 if (cant_mount(old.dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 goto out2;
Alexey Dobriyanf3da3922009-05-04 03:32:03 +04002312 if (d_unlinked(new.dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 goto out2;
Alexey Dobriyanf3da3922009-05-04 03:32:03 +04002314 if (d_unlinked(old.dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 goto out2;
2316 error = -EBUSY;
Al Viro2d8f3032008-07-22 09:59:21 -04002317 if (new.mnt == root.mnt ||
2318 old.mnt == root.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 goto out2; /* loop, on the same file system */
2320 error = -EINVAL;
Al Viro8c3ee422008-03-22 18:00:39 -04002321 if (root.mnt->mnt_root != root.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 goto out2; /* not a mountpoint */
Al Viro8c3ee422008-03-22 18:00:39 -04002323 if (root.mnt->mnt_parent == root.mnt)
Miklos Szeredi0bb6fcc2005-09-06 15:19:36 -07002324 goto out2; /* not attached */
Al Viro2d8f3032008-07-22 09:59:21 -04002325 if (new.mnt->mnt_root != new.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 goto out2; /* not a mountpoint */
Al Viro2d8f3032008-07-22 09:59:21 -04002327 if (new.mnt->mnt_parent == new.mnt)
Miklos Szeredi0bb6fcc2005-09-06 15:19:36 -07002328 goto out2; /* not attached */
Jan Blunck4ac91372008-02-14 19:34:32 -08002329 /* make sure we can reach put_old from new_root */
Al Viro2d8f3032008-07-22 09:59:21 -04002330 tmp = old.mnt;
Nick Piggin99b7db72010-08-18 04:37:39 +10002331 br_write_lock(vfsmount_lock);
Al Viro2d8f3032008-07-22 09:59:21 -04002332 if (tmp != new.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 for (;;) {
2334 if (tmp->mnt_parent == tmp)
2335 goto out3; /* already mounted on put_old */
Al Viro2d8f3032008-07-22 09:59:21 -04002336 if (tmp->mnt_parent == new.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 break;
2338 tmp = tmp->mnt_parent;
2339 }
Al Viro2d8f3032008-07-22 09:59:21 -04002340 if (!is_subdir(tmp->mnt_mountpoint, new.dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 goto out3;
Al Viro2d8f3032008-07-22 09:59:21 -04002342 } else if (!is_subdir(old.dentry, new.dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 goto out3;
Al Viro2d8f3032008-07-22 09:59:21 -04002344 detach_mnt(new.mnt, &parent_path);
Al Viro8c3ee422008-03-22 18:00:39 -04002345 detach_mnt(root.mnt, &root_parent);
Jan Blunck4ac91372008-02-14 19:34:32 -08002346 /* mount old root on put_old */
Al Viro2d8f3032008-07-22 09:59:21 -04002347 attach_mnt(root.mnt, &old);
Jan Blunck4ac91372008-02-14 19:34:32 -08002348 /* mount new_root on / */
Al Viro2d8f3032008-07-22 09:59:21 -04002349 attach_mnt(new.mnt, &root_parent);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002350 touch_mnt_namespace(current->nsproxy->mnt_ns);
Nick Piggin99b7db72010-08-18 04:37:39 +10002351 br_write_unlock(vfsmount_lock);
Al Viro2d8f3032008-07-22 09:59:21 -04002352 chroot_fs_refs(&root, &new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 error = 0;
Al Viro1a390682008-03-21 20:48:19 -04002354 path_put(&root_parent);
2355 path_put(&parent_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356out2:
Al Viro2d8f3032008-07-22 09:59:21 -04002357 mutex_unlock(&old.dentry->d_inode->i_mutex);
Ram Pai390c6842005-11-07 17:17:51 -05002358 up_write(&namespace_sem);
Al Viro8c3ee422008-03-22 18:00:39 -04002359 path_put(&root);
Al Viro2d8f3032008-07-22 09:59:21 -04002360 path_put(&old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361out1:
Al Viro2d8f3032008-07-22 09:59:21 -04002362 path_put(&new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363out0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 return error;
2365out3:
Nick Piggin99b7db72010-08-18 04:37:39 +10002366 br_write_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 goto out2;
2368}
2369
2370static void __init init_mount_tree(void)
2371{
2372 struct vfsmount *mnt;
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002373 struct mnt_namespace *ns;
Jan Blunckac748a02008-02-14 19:34:39 -08002374 struct path root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375
2376 mnt = do_kern_mount("rootfs", 0, "rootfs", NULL);
2377 if (IS_ERR(mnt))
2378 panic("Can't create rootfs");
Trond Myklebust3b22edc2009-06-23 17:29:49 -04002379 ns = create_mnt_ns(mnt);
2380 if (IS_ERR(ns))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 panic("Can't allocate initial namespace");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002383 init_task.nsproxy->mnt_ns = ns;
2384 get_mnt_ns(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385
Jan Blunckac748a02008-02-14 19:34:39 -08002386 root.mnt = ns->root;
2387 root.dentry = ns->root->mnt_root;
2388
2389 set_fs_pwd(current->fs, &root);
2390 set_fs_root(current->fs, &root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391}
2392
Denis Cheng74bf17c2007-10-16 23:26:30 -07002393void __init mnt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394{
Eric Dumazet13f14b42008-02-06 01:37:57 -08002395 unsigned u;
Randy Dunlap15a67dd2006-09-29 01:58:57 -07002396 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
Ram Pai390c6842005-11-07 17:17:51 -05002398 init_rwsem(&namespace_sem);
2399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 mnt_cache = kmem_cache_create("mnt_cache", sizeof(struct vfsmount),
Paul Mundt20c2df82007-07-20 10:11:58 +09002401 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
Ram Paib58fed82005-11-07 17:16:09 -05002403 mount_hashtable = (struct list_head *)__get_free_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
2405 if (!mount_hashtable)
2406 panic("Failed to allocate mount hash table\n");
2407
Eric Dumazet13f14b42008-02-06 01:37:57 -08002408 printk("Mount-cache hash table entries: %lu\n", HASH_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
Eric Dumazet13f14b42008-02-06 01:37:57 -08002410 for (u = 0; u < HASH_SIZE; u++)
2411 INIT_LIST_HEAD(&mount_hashtable[u]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
Nick Piggin99b7db72010-08-18 04:37:39 +10002413 br_lock_init(vfsmount_lock);
2414
Randy Dunlap15a67dd2006-09-29 01:58:57 -07002415 err = sysfs_init();
2416 if (err)
2417 printk(KERN_WARNING "%s: sysfs_init error: %d\n",
Harvey Harrison8e24eea2008-04-30 00:55:09 -07002418 __func__, err);
Greg Kroah-Hartman00d26662007-10-29 14:17:23 -06002419 fs_kobj = kobject_create_and_add("fs", NULL);
2420 if (!fs_kobj)
Harvey Harrison8e24eea2008-04-30 00:55:09 -07002421 printk(KERN_WARNING "%s: kobj create error\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 init_rootfs();
2423 init_mount_tree();
2424}
2425
Trond Myklebust616511d2009-06-22 15:09:13 -04002426void put_mnt_ns(struct mnt_namespace *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427{
Ram Pai70fbcdf2005-11-07 17:17:04 -05002428 LIST_HEAD(umount_list);
Trond Myklebust616511d2009-06-22 15:09:13 -04002429
Al Virod498b252010-02-05 02:21:06 -05002430 if (!atomic_dec_and_test(&ns->count))
Trond Myklebust616511d2009-06-22 15:09:13 -04002431 return;
Ram Pai390c6842005-11-07 17:17:51 -05002432 down_write(&namespace_sem);
Nick Piggin99b7db72010-08-18 04:37:39 +10002433 br_write_lock(vfsmount_lock);
Al Virod498b252010-02-05 02:21:06 -05002434 umount_tree(ns->root, 0, &umount_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10002435 br_write_unlock(vfsmount_lock);
Ram Pai390c6842005-11-07 17:17:51 -05002436 up_write(&namespace_sem);
Ram Pai70fbcdf2005-11-07 17:17:04 -05002437 release_mounts(&umount_list);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002438 kfree(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439}
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002440EXPORT_SYMBOL(put_mnt_ns);