blob: dda47fee6fdf6b8f1dff58a5b535cec00bcd3ca8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/namespace.c
3 *
4 * (C) Copyright Al Viro 2000, 2001
5 * Released under GPL v2.
6 *
7 * Based on code from fs/super.c, copyright Linus Torvalds and others.
8 * Heavily rewritten.
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/syscalls.h>
12#include <linux/slab.h>
13#include <linux/sched.h>
Nick Piggin99b7db72010-08-18 04:37:39 +100014#include <linux/spinlock.h>
15#include <linux/percpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/init.h>
Randy Dunlap15a67dd2006-09-29 01:58:57 -070017#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/acct.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080019#include <linux/capability.h>
Dave Hansen3d733632008-02-15 14:37:59 -080020#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/module.h>
Andrew Mortonf20a9ea2006-08-14 22:43:23 -070022#include <linux/sysfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/seq_file.h>
Kirill Korotaev6b3286e2006-12-08 02:37:56 -080024#include <linux/mnt_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/namei.h>
Alexey Dobriyanb43f3cb2009-07-08 01:54:37 +040026#include <linux/nsproxy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/security.h>
28#include <linux/mount.h>
David Howells07f3f052006-09-30 20:52:18 +020029#include <linux/ramfs.h>
Eric Dumazet13f14b42008-02-06 01:37:57 -080030#include <linux/log2.h>
Miklos Szeredi73cd49e2008-03-26 22:11:34 +010031#include <linux/idr.h>
Al Viro5ad4e532009-03-29 19:50:06 -040032#include <linux/fs_struct.h>
Andreas Gruenbacher2504c5d2009-12-17 21:24:27 -050033#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/uaccess.h>
35#include <asm/unistd.h>
Ram Pai07b20882005-11-07 17:19:07 -050036#include "pnode.h"
Adrian Bunk948730b2007-07-15 23:41:25 -070037#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Eric Dumazet13f14b42008-02-06 01:37:57 -080039#define HASH_SHIFT ilog2(PAGE_SIZE / sizeof(struct list_head))
40#define HASH_SIZE (1UL << HASH_SHIFT)
41
Al Viro5addc5d2005-11-07 17:15:49 -050042static int event;
Miklos Szeredi73cd49e2008-03-26 22:11:34 +010043static DEFINE_IDA(mnt_id_ida);
Miklos Szeredi719f5d72008-03-27 13:06:23 +010044static DEFINE_IDA(mnt_group_ida);
Nick Piggin99b7db72010-08-18 04:37:39 +100045static DEFINE_SPINLOCK(mnt_id_lock);
Al Virof21f6222009-06-24 03:12:00 -040046static int mnt_id_start = 0;
47static int mnt_group_start = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Eric Dumazetfa3536c2006-03-26 01:37:24 -080049static struct list_head *mount_hashtable __read_mostly;
Christoph Lametere18b8902006-12-06 20:33:20 -080050static struct kmem_cache *mnt_cache __read_mostly;
Ram Pai390c6842005-11-07 17:17:51 -050051static struct rw_semaphore namespace_sem;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Miklos Szeredif87fd4c2006-01-16 22:14:23 -080053/* /sys/fs */
Greg Kroah-Hartman00d26662007-10-29 14:17:23 -060054struct kobject *fs_kobj;
55EXPORT_SYMBOL_GPL(fs_kobj);
Miklos Szeredif87fd4c2006-01-16 22:14:23 -080056
Nick Piggin99b7db72010-08-18 04:37:39 +100057/*
58 * vfsmount lock may be taken for read to prevent changes to the
59 * vfsmount hash, ie. during mountpoint lookups or walking back
60 * up the tree.
61 *
62 * It should be taken for write in all cases where the vfsmount
63 * tree or hash is modified or when a vfsmount structure is modified.
64 */
65DEFINE_BRLOCK(vfsmount_lock);
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static inline unsigned long hash(struct vfsmount *mnt, struct dentry *dentry)
68{
Ram Paib58fed82005-11-07 17:16:09 -050069 unsigned long tmp = ((unsigned long)mnt / L1_CACHE_BYTES);
70 tmp += ((unsigned long)dentry / L1_CACHE_BYTES);
Eric Dumazet13f14b42008-02-06 01:37:57 -080071 tmp = tmp + (tmp >> HASH_SHIFT);
72 return tmp & (HASH_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
Dave Hansen3d733632008-02-15 14:37:59 -080075#define MNT_WRITER_UNDERFLOW_LIMIT -(1<<16)
76
Nick Piggin99b7db72010-08-18 04:37:39 +100077/*
78 * allocation is serialized by namespace_sem, but we need the spinlock to
79 * serialize with freeing.
80 */
Miklos Szeredi73cd49e2008-03-26 22:11:34 +010081static int mnt_alloc_id(struct vfsmount *mnt)
82{
83 int res;
84
85retry:
86 ida_pre_get(&mnt_id_ida, GFP_KERNEL);
Nick Piggin99b7db72010-08-18 04:37:39 +100087 spin_lock(&mnt_id_lock);
Al Virof21f6222009-06-24 03:12:00 -040088 res = ida_get_new_above(&mnt_id_ida, mnt_id_start, &mnt->mnt_id);
89 if (!res)
90 mnt_id_start = mnt->mnt_id + 1;
Nick Piggin99b7db72010-08-18 04:37:39 +100091 spin_unlock(&mnt_id_lock);
Miklos Szeredi73cd49e2008-03-26 22:11:34 +010092 if (res == -EAGAIN)
93 goto retry;
94
95 return res;
96}
97
98static void mnt_free_id(struct vfsmount *mnt)
99{
Al Virof21f6222009-06-24 03:12:00 -0400100 int id = mnt->mnt_id;
Nick Piggin99b7db72010-08-18 04:37:39 +1000101 spin_lock(&mnt_id_lock);
Al Virof21f6222009-06-24 03:12:00 -0400102 ida_remove(&mnt_id_ida, id);
103 if (mnt_id_start > id)
104 mnt_id_start = id;
Nick Piggin99b7db72010-08-18 04:37:39 +1000105 spin_unlock(&mnt_id_lock);
Miklos Szeredi73cd49e2008-03-26 22:11:34 +0100106}
107
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100108/*
109 * Allocate a new peer group ID
110 *
111 * mnt_group_ida is protected by namespace_sem
112 */
113static int mnt_alloc_group_id(struct vfsmount *mnt)
114{
Al Virof21f6222009-06-24 03:12:00 -0400115 int res;
116
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100117 if (!ida_pre_get(&mnt_group_ida, GFP_KERNEL))
118 return -ENOMEM;
119
Al Virof21f6222009-06-24 03:12:00 -0400120 res = ida_get_new_above(&mnt_group_ida,
121 mnt_group_start,
122 &mnt->mnt_group_id);
123 if (!res)
124 mnt_group_start = mnt->mnt_group_id + 1;
125
126 return res;
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100127}
128
129/*
130 * Release a peer group ID
131 */
132void mnt_release_group_id(struct vfsmount *mnt)
133{
Al Virof21f6222009-06-24 03:12:00 -0400134 int id = mnt->mnt_group_id;
135 ida_remove(&mnt_group_ida, id);
136 if (mnt_group_start > id)
137 mnt_group_start = id;
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100138 mnt->mnt_group_id = 0;
139}
140
Nick Pigginb3e19d92011-01-07 17:50:11 +1100141/*
142 * vfsmount lock must be held for read
143 */
144static inline void mnt_add_count(struct vfsmount *mnt, int n)
145{
146#ifdef CONFIG_SMP
147 this_cpu_add(mnt->mnt_pcp->mnt_count, n);
148#else
149 preempt_disable();
150 mnt->mnt_count += n;
151 preempt_enable();
152#endif
153}
154
Nick Pigginb3e19d92011-01-07 17:50:11 +1100155/*
156 * vfsmount lock must be held for write
157 */
158unsigned int mnt_get_count(struct vfsmount *mnt)
159{
160#ifdef CONFIG_SMP
Al Virof03c6592011-01-14 22:30:21 -0500161 unsigned int count = 0;
Nick Pigginb3e19d92011-01-07 17:50:11 +1100162 int cpu;
163
164 for_each_possible_cpu(cpu) {
165 count += per_cpu_ptr(mnt->mnt_pcp, cpu)->mnt_count;
166 }
167
168 return count;
169#else
170 return mnt->mnt_count;
171#endif
172}
173
Al Viro9d412a42011-03-17 22:08:28 -0400174static struct vfsmount *alloc_vfsmnt(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Al Viro7d6fec42011-11-23 12:14:10 -0500176 struct mount *p = kmem_cache_zalloc(mnt_cache, GFP_KERNEL);
177 if (p) {
178 struct vfsmount *mnt = &p->mnt;
Miklos Szeredi73cd49e2008-03-26 22:11:34 +0100179 int err;
180
181 err = mnt_alloc_id(mnt);
Li Zefan88b38782008-07-21 18:06:36 +0800182 if (err)
183 goto out_free_cache;
184
185 if (name) {
186 mnt->mnt_devname = kstrdup(name, GFP_KERNEL);
187 if (!mnt->mnt_devname)
188 goto out_free_id;
Miklos Szeredi73cd49e2008-03-26 22:11:34 +0100189 }
190
Nick Pigginb3e19d92011-01-07 17:50:11 +1100191#ifdef CONFIG_SMP
192 mnt->mnt_pcp = alloc_percpu(struct mnt_pcp);
193 if (!mnt->mnt_pcp)
194 goto out_free_devname;
195
Al Virof03c6592011-01-14 22:30:21 -0500196 this_cpu_add(mnt->mnt_pcp->mnt_count, 1);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100197#else
198 mnt->mnt_count = 1;
199 mnt->mnt_writers = 0;
200#endif
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 INIT_LIST_HEAD(&mnt->mnt_hash);
203 INIT_LIST_HEAD(&mnt->mnt_child);
204 INIT_LIST_HEAD(&mnt->mnt_mounts);
205 INIT_LIST_HEAD(&mnt->mnt_list);
Miklos Szeredi55e700b2005-07-07 17:57:30 -0700206 INIT_LIST_HEAD(&mnt->mnt_expire);
Ram Pai03e06e62005-11-07 17:19:33 -0500207 INIT_LIST_HEAD(&mnt->mnt_share);
Ram Paia58b0eb2005-11-07 17:20:48 -0500208 INIT_LIST_HEAD(&mnt->mnt_slave_list);
209 INIT_LIST_HEAD(&mnt->mnt_slave);
Andreas Gruenbacher2504c5d2009-12-17 21:24:27 -0500210#ifdef CONFIG_FSNOTIFY
211 INIT_HLIST_HEAD(&mnt->mnt_fsnotify_marks);
212#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
Al Viro7d6fec42011-11-23 12:14:10 -0500214 return &p->mnt;
Li Zefan88b38782008-07-21 18:06:36 +0800215
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000216#ifdef CONFIG_SMP
217out_free_devname:
Al Viro7d6fec42011-11-23 12:14:10 -0500218 kfree(p->mnt.mnt_devname);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000219#endif
Li Zefan88b38782008-07-21 18:06:36 +0800220out_free_id:
Al Viro7d6fec42011-11-23 12:14:10 -0500221 mnt_free_id(&p->mnt);
Li Zefan88b38782008-07-21 18:06:36 +0800222out_free_cache:
Al Viro7d6fec42011-11-23 12:14:10 -0500223 kmem_cache_free(mnt_cache, p);
Li Zefan88b38782008-07-21 18:06:36 +0800224 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
226
Dave Hansen83660252008-02-15 14:37:30 -0800227/*
228 * Most r/o checks on a fs are for operations that take
229 * discrete amounts of time, like a write() or unlink().
230 * We must keep track of when those operations start
231 * (for permission checks) and when they end, so that
232 * we can determine when writes are able to occur to
233 * a filesystem.
234 */
Dave Hansen3d733632008-02-15 14:37:59 -0800235/*
236 * __mnt_is_readonly: check whether a mount is read-only
237 * @mnt: the mount to check for its write status
238 *
239 * This shouldn't be used directly ouside of the VFS.
240 * It does not guarantee that the filesystem will stay
241 * r/w, just that it is right *now*. This can not and
242 * should not be used in place of IS_RDONLY(inode).
243 * mnt_want/drop_write() will _keep_ the filesystem
244 * r/w.
245 */
246int __mnt_is_readonly(struct vfsmount *mnt)
247{
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800248 if (mnt->mnt_flags & MNT_READONLY)
249 return 1;
250 if (mnt->mnt_sb->s_flags & MS_RDONLY)
251 return 1;
252 return 0;
Dave Hansen3d733632008-02-15 14:37:59 -0800253}
254EXPORT_SYMBOL_GPL(__mnt_is_readonly);
255
Nick Pigginc6653a82011-01-07 17:50:10 +1100256static inline void mnt_inc_writers(struct vfsmount *mnt)
Dave Hansen3d733632008-02-15 14:37:59 -0800257{
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000258#ifdef CONFIG_SMP
Nick Pigginb3e19d92011-01-07 17:50:11 +1100259 this_cpu_inc(mnt->mnt_pcp->mnt_writers);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000260#else
261 mnt->mnt_writers++;
262#endif
Dave Hansen3d733632008-02-15 14:37:59 -0800263}
Dave Hansen3d733632008-02-15 14:37:59 -0800264
Nick Pigginc6653a82011-01-07 17:50:10 +1100265static inline void mnt_dec_writers(struct vfsmount *mnt)
Dave Hansen3d733632008-02-15 14:37:59 -0800266{
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000267#ifdef CONFIG_SMP
Nick Pigginb3e19d92011-01-07 17:50:11 +1100268 this_cpu_dec(mnt->mnt_pcp->mnt_writers);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000269#else
270 mnt->mnt_writers--;
271#endif
272}
273
Nick Pigginc6653a82011-01-07 17:50:10 +1100274static unsigned int mnt_get_writers(struct vfsmount *mnt)
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000275{
276#ifdef CONFIG_SMP
277 unsigned int count = 0;
Dave Hansen3d733632008-02-15 14:37:59 -0800278 int cpu;
Dave Hansen3d733632008-02-15 14:37:59 -0800279
280 for_each_possible_cpu(cpu) {
Nick Pigginb3e19d92011-01-07 17:50:11 +1100281 count += per_cpu_ptr(mnt->mnt_pcp, cpu)->mnt_writers;
Dave Hansen3d733632008-02-15 14:37:59 -0800282 }
Dave Hansen3d733632008-02-15 14:37:59 -0800283
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000284 return count;
285#else
286 return mnt->mnt_writers;
287#endif
Dave Hansen3d733632008-02-15 14:37:59 -0800288}
289
290/*
291 * Most r/o checks on a fs are for operations that take
292 * discrete amounts of time, like a write() or unlink().
293 * We must keep track of when those operations start
294 * (for permission checks) and when they end, so that
295 * we can determine when writes are able to occur to
296 * a filesystem.
297 */
Dave Hansen83660252008-02-15 14:37:30 -0800298/**
299 * mnt_want_write - get write access to a mount
300 * @mnt: the mount on which to take a write
301 *
302 * This tells the low-level filesystem that a write is
303 * about to be performed to it, and makes sure that
304 * writes are allowed before returning success. When
305 * the write operation is finished, mnt_drop_write()
306 * must be called. This is effectively a refcount.
307 */
308int mnt_want_write(struct vfsmount *mnt)
309{
Dave Hansen3d733632008-02-15 14:37:59 -0800310 int ret = 0;
Dave Hansen3d733632008-02-15 14:37:59 -0800311
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000312 preempt_disable();
Nick Pigginc6653a82011-01-07 17:50:10 +1100313 mnt_inc_writers(mnt);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000314 /*
Nick Pigginc6653a82011-01-07 17:50:10 +1100315 * The store to mnt_inc_writers must be visible before we pass
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000316 * MNT_WRITE_HOLD loop below, so that the slowpath can see our
317 * incremented count after it has set MNT_WRITE_HOLD.
318 */
319 smp_mb();
320 while (mnt->mnt_flags & MNT_WRITE_HOLD)
321 cpu_relax();
322 /*
323 * After the slowpath clears MNT_WRITE_HOLD, mnt_is_readonly will
324 * be set to match its requirements. So we must not load that until
325 * MNT_WRITE_HOLD is cleared.
326 */
327 smp_rmb();
Dave Hansen3d733632008-02-15 14:37:59 -0800328 if (__mnt_is_readonly(mnt)) {
Nick Pigginc6653a82011-01-07 17:50:10 +1100329 mnt_dec_writers(mnt);
Dave Hansen3d733632008-02-15 14:37:59 -0800330 ret = -EROFS;
331 goto out;
332 }
Dave Hansen3d733632008-02-15 14:37:59 -0800333out:
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000334 preempt_enable();
Dave Hansen3d733632008-02-15 14:37:59 -0800335 return ret;
Dave Hansen83660252008-02-15 14:37:30 -0800336}
337EXPORT_SYMBOL_GPL(mnt_want_write);
338
339/**
npiggin@suse.de96029c42009-04-26 20:25:55 +1000340 * mnt_clone_write - get write access to a mount
341 * @mnt: the mount on which to take a write
342 *
343 * This is effectively like mnt_want_write, except
344 * it must only be used to take an extra write reference
345 * on a mountpoint that we already know has a write reference
346 * on it. This allows some optimisation.
347 *
348 * After finished, mnt_drop_write must be called as usual to
349 * drop the reference.
350 */
351int mnt_clone_write(struct vfsmount *mnt)
352{
353 /* superblock may be r/o */
354 if (__mnt_is_readonly(mnt))
355 return -EROFS;
356 preempt_disable();
Nick Pigginc6653a82011-01-07 17:50:10 +1100357 mnt_inc_writers(mnt);
npiggin@suse.de96029c42009-04-26 20:25:55 +1000358 preempt_enable();
359 return 0;
360}
361EXPORT_SYMBOL_GPL(mnt_clone_write);
362
363/**
364 * mnt_want_write_file - get write access to a file's mount
365 * @file: the file who's mount on which to take a write
366 *
367 * This is like mnt_want_write, but it takes a file and can
368 * do some optimisations if the file is open for write already
369 */
370int mnt_want_write_file(struct file *file)
371{
OGAWA Hirofumi2d8dd382009-08-06 15:07:39 -0700372 struct inode *inode = file->f_dentry->d_inode;
373 if (!(file->f_mode & FMODE_WRITE) || special_file(inode->i_mode))
npiggin@suse.de96029c42009-04-26 20:25:55 +1000374 return mnt_want_write(file->f_path.mnt);
375 else
376 return mnt_clone_write(file->f_path.mnt);
377}
378EXPORT_SYMBOL_GPL(mnt_want_write_file);
379
380/**
Dave Hansen83660252008-02-15 14:37:30 -0800381 * mnt_drop_write - give up write access to a mount
382 * @mnt: the mount on which to give up write access
383 *
384 * Tells the low-level filesystem that we are done
385 * performing writes to it. Must be matched with
386 * mnt_want_write() call above.
387 */
388void mnt_drop_write(struct vfsmount *mnt)
389{
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000390 preempt_disable();
Nick Pigginc6653a82011-01-07 17:50:10 +1100391 mnt_dec_writers(mnt);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000392 preempt_enable();
Dave Hansen83660252008-02-15 14:37:30 -0800393}
394EXPORT_SYMBOL_GPL(mnt_drop_write);
395
Al Viro2a79f172011-12-09 08:06:57 -0500396void mnt_drop_write_file(struct file *file)
397{
398 mnt_drop_write(file->f_path.mnt);
399}
400EXPORT_SYMBOL(mnt_drop_write_file);
401
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800402static int mnt_make_readonly(struct vfsmount *mnt)
Dave Hansen83660252008-02-15 14:37:30 -0800403{
Dave Hansen3d733632008-02-15 14:37:59 -0800404 int ret = 0;
405
Nick Piggin99b7db72010-08-18 04:37:39 +1000406 br_write_lock(vfsmount_lock);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000407 mnt->mnt_flags |= MNT_WRITE_HOLD;
408 /*
409 * After storing MNT_WRITE_HOLD, we'll read the counters. This store
410 * should be visible before we do.
411 */
412 smp_mb();
413
414 /*
415 * With writers on hold, if this value is zero, then there are
416 * definitely no active writers (although held writers may subsequently
417 * increment the count, they'll have to wait, and decrement it after
418 * seeing MNT_READONLY).
419 *
420 * It is OK to have counter incremented on one CPU and decremented on
421 * another: the sum will add up correctly. The danger would be when we
422 * sum up each counter, if we read a counter before it is incremented,
423 * but then read another CPU's count which it has been subsequently
424 * decremented from -- we would see more decrements than we should.
425 * MNT_WRITE_HOLD protects against this scenario, because
426 * mnt_want_write first increments count, then smp_mb, then spins on
427 * MNT_WRITE_HOLD, so it can't be decremented by another CPU while
428 * we're counting up here.
429 */
Nick Pigginc6653a82011-01-07 17:50:10 +1100430 if (mnt_get_writers(mnt) > 0)
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000431 ret = -EBUSY;
432 else
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800433 mnt->mnt_flags |= MNT_READONLY;
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000434 /*
435 * MNT_READONLY must become visible before ~MNT_WRITE_HOLD, so writers
436 * that become unheld will see MNT_READONLY.
437 */
438 smp_wmb();
439 mnt->mnt_flags &= ~MNT_WRITE_HOLD;
Nick Piggin99b7db72010-08-18 04:37:39 +1000440 br_write_unlock(vfsmount_lock);
Dave Hansen3d733632008-02-15 14:37:59 -0800441 return ret;
Dave Hansen83660252008-02-15 14:37:30 -0800442}
Dave Hansen83660252008-02-15 14:37:30 -0800443
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800444static void __mnt_unmake_readonly(struct vfsmount *mnt)
445{
Nick Piggin99b7db72010-08-18 04:37:39 +1000446 br_write_lock(vfsmount_lock);
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800447 mnt->mnt_flags &= ~MNT_READONLY;
Nick Piggin99b7db72010-08-18 04:37:39 +1000448 br_write_unlock(vfsmount_lock);
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800449}
450
Al Viro9d412a42011-03-17 22:08:28 -0400451static void free_vfsmnt(struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
Al Viro7d6fec42011-11-23 12:14:10 -0500453 struct mount *p = real_mount(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 kfree(mnt->mnt_devname);
Miklos Szeredi73cd49e2008-03-26 22:11:34 +0100455 mnt_free_id(mnt);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000456#ifdef CONFIG_SMP
Nick Pigginb3e19d92011-01-07 17:50:11 +1100457 free_percpu(mnt->mnt_pcp);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000458#endif
Al Viro7d6fec42011-11-23 12:14:10 -0500459 kmem_cache_free(mnt_cache, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
462/*
Ram Paia05964f2005-11-07 17:20:17 -0500463 * find the first or last mount at @dentry on vfsmount @mnt depending on
464 * @dir. If @dir is set return the first mount else return the last mount.
Nick Piggin99b7db72010-08-18 04:37:39 +1000465 * vfsmount_lock must be held for read or write.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 */
Ram Paia05964f2005-11-07 17:20:17 -0500467struct vfsmount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry,
468 int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Ram Paib58fed82005-11-07 17:16:09 -0500470 struct list_head *head = mount_hashtable + hash(mnt, dentry);
471 struct list_head *tmp = head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 struct vfsmount *p, *found = NULL;
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 for (;;) {
Ram Paia05964f2005-11-07 17:20:17 -0500475 tmp = dir ? tmp->next : tmp->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 p = NULL;
477 if (tmp == head)
478 break;
479 p = list_entry(tmp, struct vfsmount, mnt_hash);
480 if (p->mnt_parent == mnt && p->mnt_mountpoint == dentry) {
Ram Paia05964f2005-11-07 17:20:17 -0500481 found = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 break;
483 }
484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 return found;
486}
487
Ram Paia05964f2005-11-07 17:20:17 -0500488/*
489 * lookup_mnt increments the ref count before returning
490 * the vfsmount struct.
491 */
Al Viro1c755af2009-04-18 14:06:57 -0400492struct vfsmount *lookup_mnt(struct path *path)
Ram Paia05964f2005-11-07 17:20:17 -0500493{
494 struct vfsmount *child_mnt;
Nick Piggin99b7db72010-08-18 04:37:39 +1000495
496 br_read_lock(vfsmount_lock);
Al Viro1c755af2009-04-18 14:06:57 -0400497 if ((child_mnt = __lookup_mnt(path->mnt, path->dentry, 1)))
Ram Paia05964f2005-11-07 17:20:17 -0500498 mntget(child_mnt);
Nick Piggin99b7db72010-08-18 04:37:39 +1000499 br_read_unlock(vfsmount_lock);
Ram Paia05964f2005-11-07 17:20:17 -0500500 return child_mnt;
501}
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503static inline int check_mnt(struct vfsmount *mnt)
504{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800505 return mnt->mnt_ns == current->nsproxy->mnt_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
Nick Piggin99b7db72010-08-18 04:37:39 +1000508/*
509 * vfsmount lock must be held for write
510 */
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800511static void touch_mnt_namespace(struct mnt_namespace *ns)
Al Viro5addc5d2005-11-07 17:15:49 -0500512{
513 if (ns) {
514 ns->event = ++event;
515 wake_up_interruptible(&ns->poll);
516 }
517}
518
Nick Piggin99b7db72010-08-18 04:37:39 +1000519/*
520 * vfsmount lock must be held for write
521 */
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800522static void __touch_mnt_namespace(struct mnt_namespace *ns)
Al Viro5addc5d2005-11-07 17:15:49 -0500523{
524 if (ns && ns->event != event) {
525 ns->event = event;
526 wake_up_interruptible(&ns->poll);
527 }
528}
529
Nick Piggin99b7db72010-08-18 04:37:39 +1000530/*
Nick Piggin5f57cbc2011-01-07 17:49:54 +1100531 * Clear dentry's mounted state if it has no remaining mounts.
532 * vfsmount_lock must be held for write.
533 */
Al Viroaa0a4cf2011-11-24 19:31:36 -0500534static void dentry_reset_mounted(struct dentry *dentry)
Nick Piggin5f57cbc2011-01-07 17:49:54 +1100535{
536 unsigned u;
537
538 for (u = 0; u < HASH_SIZE; u++) {
539 struct vfsmount *p;
540
541 list_for_each_entry(p, &mount_hashtable[u], mnt_hash) {
542 if (p->mnt_mountpoint == dentry)
543 return;
544 }
545 }
546 spin_lock(&dentry->d_lock);
547 dentry->d_flags &= ~DCACHE_MOUNTED;
548 spin_unlock(&dentry->d_lock);
549}
550
551/*
Nick Piggin99b7db72010-08-18 04:37:39 +1000552 * vfsmount lock must be held for write
553 */
Al Viro1a390682008-03-21 20:48:19 -0400554static void detach_mnt(struct vfsmount *mnt, struct path *old_path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
Al Viro1a390682008-03-21 20:48:19 -0400556 old_path->dentry = mnt->mnt_mountpoint;
557 old_path->mnt = mnt->mnt_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 mnt->mnt_parent = mnt;
559 mnt->mnt_mountpoint = mnt->mnt_root;
560 list_del_init(&mnt->mnt_child);
561 list_del_init(&mnt->mnt_hash);
Al Viroaa0a4cf2011-11-24 19:31:36 -0500562 dentry_reset_mounted(old_path->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
Nick Piggin99b7db72010-08-18 04:37:39 +1000565/*
566 * vfsmount lock must be held for write
567 */
Ram Paib90fa9a2005-11-07 17:19:50 -0500568void mnt_set_mountpoint(struct vfsmount *mnt, struct dentry *dentry,
569 struct vfsmount *child_mnt)
570{
571 child_mnt->mnt_parent = mntget(mnt);
572 child_mnt->mnt_mountpoint = dget(dentry);
Nick Piggin5f57cbc2011-01-07 17:49:54 +1100573 spin_lock(&dentry->d_lock);
574 dentry->d_flags |= DCACHE_MOUNTED;
575 spin_unlock(&dentry->d_lock);
Ram Paib90fa9a2005-11-07 17:19:50 -0500576}
577
Nick Piggin99b7db72010-08-18 04:37:39 +1000578/*
579 * vfsmount lock must be held for write
580 */
Al Viro1a390682008-03-21 20:48:19 -0400581static void attach_mnt(struct vfsmount *mnt, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
Al Viro1a390682008-03-21 20:48:19 -0400583 mnt_set_mountpoint(path->mnt, path->dentry, mnt);
Ram Paib90fa9a2005-11-07 17:19:50 -0500584 list_add_tail(&mnt->mnt_hash, mount_hashtable +
Al Viro1a390682008-03-21 20:48:19 -0400585 hash(path->mnt, path->dentry));
586 list_add_tail(&mnt->mnt_child, &path->mnt->mnt_mounts);
Ram Paib90fa9a2005-11-07 17:19:50 -0500587}
588
Al Viro7e3d0eb02011-01-16 16:32:11 -0500589static inline void __mnt_make_longterm(struct vfsmount *mnt)
590{
591#ifdef CONFIG_SMP
592 atomic_inc(&mnt->mnt_longterm);
593#endif
594}
595
596/* needs vfsmount lock for write */
597static inline void __mnt_make_shortterm(struct vfsmount *mnt)
598{
599#ifdef CONFIG_SMP
600 atomic_dec(&mnt->mnt_longterm);
601#endif
602}
603
Ram Paib90fa9a2005-11-07 17:19:50 -0500604/*
Nick Piggin99b7db72010-08-18 04:37:39 +1000605 * vfsmount lock must be held for write
Ram Paib90fa9a2005-11-07 17:19:50 -0500606 */
607static void commit_tree(struct vfsmount *mnt)
608{
609 struct vfsmount *parent = mnt->mnt_parent;
610 struct vfsmount *m;
611 LIST_HEAD(head);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800612 struct mnt_namespace *n = parent->mnt_ns;
Ram Paib90fa9a2005-11-07 17:19:50 -0500613
614 BUG_ON(parent == mnt);
615
616 list_add_tail(&head, &mnt->mnt_list);
Al Virof03c6592011-01-14 22:30:21 -0500617 list_for_each_entry(m, &head, mnt_list) {
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800618 m->mnt_ns = n;
Al Viro7e3d0eb02011-01-16 16:32:11 -0500619 __mnt_make_longterm(m);
Al Virof03c6592011-01-14 22:30:21 -0500620 }
621
Ram Paib90fa9a2005-11-07 17:19:50 -0500622 list_splice(&head, n->list.prev);
623
624 list_add_tail(&mnt->mnt_hash, mount_hashtable +
625 hash(parent, mnt->mnt_mountpoint));
626 list_add_tail(&mnt->mnt_child, &parent->mnt_mounts);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800627 touch_mnt_namespace(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628}
629
630static struct vfsmount *next_mnt(struct vfsmount *p, struct vfsmount *root)
631{
632 struct list_head *next = p->mnt_mounts.next;
633 if (next == &p->mnt_mounts) {
634 while (1) {
635 if (p == root)
636 return NULL;
637 next = p->mnt_child.next;
638 if (next != &p->mnt_parent->mnt_mounts)
639 break;
640 p = p->mnt_parent;
641 }
642 }
643 return list_entry(next, struct vfsmount, mnt_child);
644}
645
Ram Pai9676f0c2005-11-07 17:21:20 -0500646static struct vfsmount *skip_mnt_tree(struct vfsmount *p)
647{
648 struct list_head *prev = p->mnt_mounts.prev;
649 while (prev != &p->mnt_mounts) {
650 p = list_entry(prev, struct vfsmount, mnt_child);
651 prev = p->mnt_mounts.prev;
652 }
653 return p;
654}
655
Al Viro9d412a42011-03-17 22:08:28 -0400656struct vfsmount *
657vfs_kern_mount(struct file_system_type *type, int flags, const char *name, void *data)
658{
659 struct vfsmount *mnt;
660 struct dentry *root;
661
662 if (!type)
663 return ERR_PTR(-ENODEV);
664
665 mnt = alloc_vfsmnt(name);
666 if (!mnt)
667 return ERR_PTR(-ENOMEM);
668
669 if (flags & MS_KERNMOUNT)
670 mnt->mnt_flags = MNT_INTERNAL;
671
672 root = mount_fs(type, flags, name, data);
673 if (IS_ERR(root)) {
674 free_vfsmnt(mnt);
675 return ERR_CAST(root);
676 }
677
678 mnt->mnt_root = root;
679 mnt->mnt_sb = root->d_sb;
680 mnt->mnt_mountpoint = mnt->mnt_root;
681 mnt->mnt_parent = mnt;
682 return mnt;
683}
684EXPORT_SYMBOL_GPL(vfs_kern_mount);
685
Ram Pai36341f62005-11-07 17:17:22 -0500686static struct vfsmount *clone_mnt(struct vfsmount *old, struct dentry *root,
687 int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
689 struct super_block *sb = old->mnt_sb;
690 struct vfsmount *mnt = alloc_vfsmnt(old->mnt_devname);
691
692 if (mnt) {
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100693 if (flag & (CL_SLAVE | CL_PRIVATE))
694 mnt->mnt_group_id = 0; /* not a peer of original */
695 else
696 mnt->mnt_group_id = old->mnt_group_id;
697
698 if ((flag & CL_MAKE_SHARED) && !mnt->mnt_group_id) {
699 int err = mnt_alloc_group_id(mnt);
700 if (err)
701 goto out_free;
702 }
703
Miklos Szeredibe1a16a2010-10-05 12:31:09 +0200704 mnt->mnt_flags = old->mnt_flags & ~MNT_WRITE_HOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 atomic_inc(&sb->s_active);
706 mnt->mnt_sb = sb;
707 mnt->mnt_root = dget(root);
708 mnt->mnt_mountpoint = mnt->mnt_root;
709 mnt->mnt_parent = mnt;
Ram Paib90fa9a2005-11-07 17:19:50 -0500710
Ram Pai5afe0022005-11-07 17:21:01 -0500711 if (flag & CL_SLAVE) {
712 list_add(&mnt->mnt_slave, &old->mnt_slave_list);
713 mnt->mnt_master = old;
714 CLEAR_MNT_SHARED(mnt);
Al Viro8aec0802007-06-07 12:20:32 -0400715 } else if (!(flag & CL_PRIVATE)) {
Al Viro796a6b52010-01-16 13:28:47 -0500716 if ((flag & CL_MAKE_SHARED) || IS_MNT_SHARED(old))
Ram Pai5afe0022005-11-07 17:21:01 -0500717 list_add(&mnt->mnt_share, &old->mnt_share);
718 if (IS_MNT_SLAVE(old))
719 list_add(&mnt->mnt_slave, &old->mnt_slave);
720 mnt->mnt_master = old->mnt_master;
721 }
Ram Paib90fa9a2005-11-07 17:19:50 -0500722 if (flag & CL_MAKE_SHARED)
723 set_mnt_shared(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 /* stick the duplicate mount on the same expiry list
726 * as the original if that was on one */
Ram Pai36341f62005-11-07 17:17:22 -0500727 if (flag & CL_EXPIRE) {
Ram Pai36341f62005-11-07 17:17:22 -0500728 if (!list_empty(&old->mnt_expire))
729 list_add(&mnt->mnt_expire, &old->mnt_expire);
Ram Pai36341f62005-11-07 17:17:22 -0500730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 }
732 return mnt;
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100733
734 out_free:
735 free_vfsmnt(mnt);
736 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737}
738
Nick Pigginb3e19d92011-01-07 17:50:11 +1100739static inline void mntfree(struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
741 struct super_block *sb = mnt->mnt_sb;
Nick Pigginb3e19d92011-01-07 17:50:11 +1100742
Dave Hansen3d733632008-02-15 14:37:59 -0800743 /*
Dave Hansen3d733632008-02-15 14:37:59 -0800744 * This probably indicates that somebody messed
745 * up a mnt_want/drop_write() pair. If this
746 * happens, the filesystem was probably unable
747 * to make r/w->r/o transitions.
748 */
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000749 /*
Nick Pigginb3e19d92011-01-07 17:50:11 +1100750 * The locking used to deal with mnt_count decrement provides barriers,
751 * so mnt_get_writers() below is safe.
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000752 */
Nick Pigginc6653a82011-01-07 17:50:10 +1100753 WARN_ON(mnt_get_writers(mnt));
Andreas Gruenbacherca9c7262009-12-17 21:24:27 -0500754 fsnotify_vfsmount_delete(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 dput(mnt->mnt_root);
756 free_vfsmnt(mnt);
757 deactivate_super(sb);
758}
759
Al Virof03c6592011-01-14 22:30:21 -0500760static void mntput_no_expire(struct vfsmount *mnt)
Al Viro7b7b1ac2005-11-07 17:13:39 -0500761{
Nick Pigginb3e19d92011-01-07 17:50:11 +1100762put_again:
Al Virof03c6592011-01-14 22:30:21 -0500763#ifdef CONFIG_SMP
764 br_read_lock(vfsmount_lock);
765 if (likely(atomic_read(&mnt->mnt_longterm))) {
Al Viroaa9c0e02011-11-23 19:04:52 -0500766 mnt_add_count(mnt, -1);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100767 br_read_unlock(vfsmount_lock);
Al Virof03c6592011-01-14 22:30:21 -0500768 return;
Nick Pigginb3e19d92011-01-07 17:50:11 +1100769 }
Al Virof03c6592011-01-14 22:30:21 -0500770 br_read_unlock(vfsmount_lock);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100771
772 br_write_lock(vfsmount_lock);
Al Viroaa9c0e02011-11-23 19:04:52 -0500773 mnt_add_count(mnt, -1);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100774 if (mnt_get_count(mnt)) {
775 br_write_unlock(vfsmount_lock);
776 return;
777 }
Nick Pigginb3e19d92011-01-07 17:50:11 +1100778#else
Al Viroaa9c0e02011-11-23 19:04:52 -0500779 mnt_add_count(mnt, -1);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100780 if (likely(mnt_get_count(mnt)))
Nick Piggin99b7db72010-08-18 04:37:39 +1000781 return;
782 br_write_lock(vfsmount_lock);
Al Virof03c6592011-01-14 22:30:21 -0500783#endif
Nick Pigginb3e19d92011-01-07 17:50:11 +1100784 if (unlikely(mnt->mnt_pinned)) {
785 mnt_add_count(mnt, mnt->mnt_pinned + 1);
786 mnt->mnt_pinned = 0;
Nick Piggin99b7db72010-08-18 04:37:39 +1000787 br_write_unlock(vfsmount_lock);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100788 acct_auto_close_mnt(mnt);
789 goto put_again;
Al Viro7b7b1ac2005-11-07 17:13:39 -0500790 }
Nick Piggin99b7db72010-08-18 04:37:39 +1000791 br_write_unlock(vfsmount_lock);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100792 mntfree(mnt);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500793}
Nick Pigginb3e19d92011-01-07 17:50:11 +1100794
795void mntput(struct vfsmount *mnt)
796{
797 if (mnt) {
798 /* avoid cacheline pingpong, hope gcc doesn't get "smart" */
799 if (unlikely(mnt->mnt_expiry_mark))
800 mnt->mnt_expiry_mark = 0;
Al Virof03c6592011-01-14 22:30:21 -0500801 mntput_no_expire(mnt);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100802 }
803}
804EXPORT_SYMBOL(mntput);
805
806struct vfsmount *mntget(struct vfsmount *mnt)
807{
808 if (mnt)
Al Viroaa9c0e02011-11-23 19:04:52 -0500809 mnt_add_count(mnt, 1);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100810 return mnt;
811}
812EXPORT_SYMBOL(mntget);
813
Al Viro7b7b1ac2005-11-07 17:13:39 -0500814void mnt_pin(struct vfsmount *mnt)
815{
Nick Piggin99b7db72010-08-18 04:37:39 +1000816 br_write_lock(vfsmount_lock);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500817 mnt->mnt_pinned++;
Nick Piggin99b7db72010-08-18 04:37:39 +1000818 br_write_unlock(vfsmount_lock);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500819}
Al Viro7b7b1ac2005-11-07 17:13:39 -0500820EXPORT_SYMBOL(mnt_pin);
821
822void mnt_unpin(struct vfsmount *mnt)
823{
Nick Piggin99b7db72010-08-18 04:37:39 +1000824 br_write_lock(vfsmount_lock);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500825 if (mnt->mnt_pinned) {
Al Viroaa9c0e02011-11-23 19:04:52 -0500826 mnt_add_count(mnt, 1);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500827 mnt->mnt_pinned--;
828 }
Nick Piggin99b7db72010-08-18 04:37:39 +1000829 br_write_unlock(vfsmount_lock);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500830}
Al Viro7b7b1ac2005-11-07 17:13:39 -0500831EXPORT_SYMBOL(mnt_unpin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800833static inline void mangle(struct seq_file *m, const char *s)
834{
835 seq_escape(m, s, " \t\n\\");
836}
837
838/*
839 * Simple .show_options callback for filesystems which don't want to
840 * implement more complex mount option showing.
841 *
842 * See also save_mount_options().
843 */
844int generic_show_options(struct seq_file *m, struct vfsmount *mnt)
845{
Al Viro2a32ceb2009-05-08 16:05:57 -0400846 const char *options;
847
848 rcu_read_lock();
849 options = rcu_dereference(mnt->mnt_sb->s_options);
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800850
851 if (options != NULL && options[0]) {
852 seq_putc(m, ',');
853 mangle(m, options);
854 }
Al Viro2a32ceb2009-05-08 16:05:57 -0400855 rcu_read_unlock();
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800856
857 return 0;
858}
859EXPORT_SYMBOL(generic_show_options);
860
861/*
862 * If filesystem uses generic_show_options(), this function should be
863 * called from the fill_super() callback.
864 *
865 * The .remount_fs callback usually needs to be handled in a special
866 * way, to make sure, that previous options are not overwritten if the
867 * remount fails.
868 *
869 * Also note, that if the filesystem's .remount_fs function doesn't
870 * reset all options to their default value, but changes only newly
871 * given options, then the displayed options will not reflect reality
872 * any more.
873 */
874void save_mount_options(struct super_block *sb, char *options)
875{
Al Viro2a32ceb2009-05-08 16:05:57 -0400876 BUG_ON(sb->s_options);
877 rcu_assign_pointer(sb->s_options, kstrdup(options, GFP_KERNEL));
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800878}
879EXPORT_SYMBOL(save_mount_options);
880
Al Viro2a32ceb2009-05-08 16:05:57 -0400881void replace_mount_options(struct super_block *sb, char *options)
882{
883 char *old = sb->s_options;
884 rcu_assign_pointer(sb->s_options, options);
885 if (old) {
886 synchronize_rcu();
887 kfree(old);
888 }
889}
890EXPORT_SYMBOL(replace_mount_options);
891
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100892#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893/* iterator */
894static void *m_start(struct seq_file *m, loff_t *pos)
895{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100896 struct proc_mounts *p = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Ram Pai390c6842005-11-07 17:17:51 -0500898 down_read(&namespace_sem);
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100899 return seq_list_start(&p->ns->list, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
901
902static void *m_next(struct seq_file *m, void *v, loff_t *pos)
903{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100904 struct proc_mounts *p = m->private;
Pavel Emelianovb0765fb2007-07-15 23:39:55 -0700905
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100906 return seq_list_next(v, &p->ns->list, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
908
909static void m_stop(struct seq_file *m, void *v)
910{
Ram Pai390c6842005-11-07 17:17:51 -0500911 up_read(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}
913
Al Viro9f5596a2010-02-05 00:40:25 -0500914int mnt_had_events(struct proc_mounts *p)
915{
916 struct mnt_namespace *ns = p->ns;
917 int res = 0;
918
Nick Piggin99b7db72010-08-18 04:37:39 +1000919 br_read_lock(vfsmount_lock);
Kay Sieversf1514632011-07-12 20:48:39 +0200920 if (p->m.poll_event != ns->event) {
921 p->m.poll_event = ns->event;
Al Viro9f5596a2010-02-05 00:40:25 -0500922 res = 1;
923 }
Nick Piggin99b7db72010-08-18 04:37:39 +1000924 br_read_unlock(vfsmount_lock);
Al Viro9f5596a2010-02-05 00:40:25 -0500925
926 return res;
927}
928
Ram Pai2d4d4862008-03-27 13:06:25 +0100929struct proc_fs_info {
930 int flag;
931 const char *str;
932};
933
Eric Paris2069f452008-07-04 09:47:13 +1000934static int show_sb_opts(struct seq_file *m, struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
Ram Pai2d4d4862008-03-27 13:06:25 +0100936 static const struct proc_fs_info fs_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 { MS_SYNCHRONOUS, ",sync" },
938 { MS_DIRSYNC, ",dirsync" },
939 { MS_MANDLOCK, ",mand" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 { 0, NULL }
941 };
Ram Pai2d4d4862008-03-27 13:06:25 +0100942 const struct proc_fs_info *fs_infop;
943
944 for (fs_infop = fs_info; fs_infop->flag; fs_infop++) {
945 if (sb->s_flags & fs_infop->flag)
946 seq_puts(m, fs_infop->str);
947 }
Eric Paris2069f452008-07-04 09:47:13 +1000948
949 return security_sb_show_options(m, sb);
Ram Pai2d4d4862008-03-27 13:06:25 +0100950}
951
952static void show_mnt_opts(struct seq_file *m, struct vfsmount *mnt)
953{
954 static const struct proc_fs_info mnt_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 { MNT_NOSUID, ",nosuid" },
956 { MNT_NODEV, ",nodev" },
957 { MNT_NOEXEC, ",noexec" },
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -0800958 { MNT_NOATIME, ",noatime" },
959 { MNT_NODIRATIME, ",nodiratime" },
Valerie Henson47ae32d2006-12-13 00:34:34 -0800960 { MNT_RELATIME, ",relatime" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 { 0, NULL }
962 };
Ram Pai2d4d4862008-03-27 13:06:25 +0100963 const struct proc_fs_info *fs_infop;
964
965 for (fs_infop = mnt_info; fs_infop->flag; fs_infop++) {
966 if (mnt->mnt_flags & fs_infop->flag)
967 seq_puts(m, fs_infop->str);
968 }
969}
970
971static void show_type(struct seq_file *m, struct super_block *sb)
972{
973 mangle(m, sb->s_type->name);
974 if (sb->s_subtype && sb->s_subtype[0]) {
975 seq_putc(m, '.');
976 mangle(m, sb->s_subtype);
977 }
978}
979
980static int show_vfsmnt(struct seq_file *m, void *v)
981{
982 struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
983 int err = 0;
Jan Blunckc32c2f62008-02-14 19:38:43 -0800984 struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Al Viroc7f404b2011-03-16 06:59:40 -0400986 if (mnt->mnt_sb->s_op->show_devname) {
987 err = mnt->mnt_sb->s_op->show_devname(m, mnt);
988 if (err)
989 goto out;
990 } else {
991 mangle(m, mnt->mnt_devname ? mnt->mnt_devname : "none");
992 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 seq_putc(m, ' ');
Jan Blunckc32c2f62008-02-14 19:38:43 -0800994 seq_path(m, &mnt_path, " \t\n\\");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 seq_putc(m, ' ');
Ram Pai2d4d4862008-03-27 13:06:25 +0100996 show_type(m, mnt->mnt_sb);
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800997 seq_puts(m, __mnt_is_readonly(mnt) ? " ro" : " rw");
Eric Paris2069f452008-07-04 09:47:13 +1000998 err = show_sb_opts(m, mnt->mnt_sb);
999 if (err)
1000 goto out;
Ram Pai2d4d4862008-03-27 13:06:25 +01001001 show_mnt_opts(m, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 if (mnt->mnt_sb->s_op->show_options)
1003 err = mnt->mnt_sb->s_op->show_options(m, mnt);
1004 seq_puts(m, " 0 0\n");
Eric Paris2069f452008-07-04 09:47:13 +10001005out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return err;
1007}
1008
Miklos Szeredia1a2c402008-03-27 13:06:24 +01001009const struct seq_operations mounts_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 .start = m_start,
1011 .next = m_next,
1012 .stop = m_stop,
1013 .show = show_vfsmnt
1014};
1015
Ram Pai2d4d4862008-03-27 13:06:25 +01001016static int show_mountinfo(struct seq_file *m, void *v)
1017{
1018 struct proc_mounts *p = m->private;
1019 struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
1020 struct super_block *sb = mnt->mnt_sb;
1021 struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
1022 struct path root = p->root;
1023 int err = 0;
1024
1025 seq_printf(m, "%i %i %u:%u ", mnt->mnt_id, mnt->mnt_parent->mnt_id,
1026 MAJOR(sb->s_dev), MINOR(sb->s_dev));
Al Viroc7f404b2011-03-16 06:59:40 -04001027 if (sb->s_op->show_path)
1028 err = sb->s_op->show_path(m, mnt);
1029 else
1030 seq_dentry(m, mnt->mnt_root, " \t\n\\");
1031 if (err)
1032 goto out;
Ram Pai2d4d4862008-03-27 13:06:25 +01001033 seq_putc(m, ' ');
Al Viro02125a82011-12-05 08:43:34 -05001034
1035 /* mountpoints outside of chroot jail will give SEQ_SKIP on this */
1036 err = seq_path_root(m, &mnt_path, &root, " \t\n\\");
1037 if (err)
1038 goto out;
1039
Ram Pai2d4d4862008-03-27 13:06:25 +01001040 seq_puts(m, mnt->mnt_flags & MNT_READONLY ? " ro" : " rw");
1041 show_mnt_opts(m, mnt);
1042
1043 /* Tagged fields ("foo:X" or "bar") */
1044 if (IS_MNT_SHARED(mnt))
1045 seq_printf(m, " shared:%i", mnt->mnt_group_id);
Miklos Szeredi97e7e0f2008-03-27 13:06:26 +01001046 if (IS_MNT_SLAVE(mnt)) {
1047 int master = mnt->mnt_master->mnt_group_id;
1048 int dom = get_dominating_id(mnt, &p->root);
1049 seq_printf(m, " master:%i", master);
1050 if (dom && dom != master)
1051 seq_printf(m, " propagate_from:%i", dom);
1052 }
Ram Pai2d4d4862008-03-27 13:06:25 +01001053 if (IS_MNT_UNBINDABLE(mnt))
1054 seq_puts(m, " unbindable");
1055
1056 /* Filesystem specific data */
1057 seq_puts(m, " - ");
1058 show_type(m, sb);
1059 seq_putc(m, ' ');
Al Viroc7f404b2011-03-16 06:59:40 -04001060 if (sb->s_op->show_devname)
1061 err = sb->s_op->show_devname(m, mnt);
1062 else
1063 mangle(m, mnt->mnt_devname ? mnt->mnt_devname : "none");
1064 if (err)
1065 goto out;
Ram Pai2d4d4862008-03-27 13:06:25 +01001066 seq_puts(m, sb->s_flags & MS_RDONLY ? " ro" : " rw");
Eric Paris2069f452008-07-04 09:47:13 +10001067 err = show_sb_opts(m, sb);
1068 if (err)
1069 goto out;
Ram Pai2d4d4862008-03-27 13:06:25 +01001070 if (sb->s_op->show_options)
1071 err = sb->s_op->show_options(m, mnt);
1072 seq_putc(m, '\n');
Eric Paris2069f452008-07-04 09:47:13 +10001073out:
Ram Pai2d4d4862008-03-27 13:06:25 +01001074 return err;
1075}
1076
1077const struct seq_operations mountinfo_op = {
1078 .start = m_start,
1079 .next = m_next,
1080 .stop = m_stop,
1081 .show = show_mountinfo,
1082};
1083
Chuck Leverb4629fe2006-03-20 13:44:12 -05001084static int show_vfsstat(struct seq_file *m, void *v)
1085{
Pavel Emelianovb0765fb2007-07-15 23:39:55 -07001086 struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
Jan Blunckc32c2f62008-02-14 19:38:43 -08001087 struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
Chuck Leverb4629fe2006-03-20 13:44:12 -05001088 int err = 0;
1089
1090 /* device */
Al Viroc7f404b2011-03-16 06:59:40 -04001091 if (mnt->mnt_sb->s_op->show_devname) {
Bryan Schumakera877ee02011-10-07 13:41:15 -04001092 seq_puts(m, "device ");
Al Viroc7f404b2011-03-16 06:59:40 -04001093 err = mnt->mnt_sb->s_op->show_devname(m, mnt);
1094 } else {
1095 if (mnt->mnt_devname) {
1096 seq_puts(m, "device ");
1097 mangle(m, mnt->mnt_devname);
1098 } else
1099 seq_puts(m, "no device");
1100 }
Chuck Leverb4629fe2006-03-20 13:44:12 -05001101
1102 /* mount point */
1103 seq_puts(m, " mounted on ");
Jan Blunckc32c2f62008-02-14 19:38:43 -08001104 seq_path(m, &mnt_path, " \t\n\\");
Chuck Leverb4629fe2006-03-20 13:44:12 -05001105 seq_putc(m, ' ');
1106
1107 /* file system type */
1108 seq_puts(m, "with fstype ");
Ram Pai2d4d4862008-03-27 13:06:25 +01001109 show_type(m, mnt->mnt_sb);
Chuck Leverb4629fe2006-03-20 13:44:12 -05001110
1111 /* optional statistics */
1112 if (mnt->mnt_sb->s_op->show_stats) {
1113 seq_putc(m, ' ');
Al Viroc7f404b2011-03-16 06:59:40 -04001114 if (!err)
1115 err = mnt->mnt_sb->s_op->show_stats(m, mnt);
Chuck Leverb4629fe2006-03-20 13:44:12 -05001116 }
1117
1118 seq_putc(m, '\n');
1119 return err;
1120}
1121
Miklos Szeredia1a2c402008-03-27 13:06:24 +01001122const struct seq_operations mountstats_op = {
Chuck Leverb4629fe2006-03-20 13:44:12 -05001123 .start = m_start,
1124 .next = m_next,
1125 .stop = m_stop,
1126 .show = show_vfsstat,
1127};
Miklos Szeredia1a2c402008-03-27 13:06:24 +01001128#endif /* CONFIG_PROC_FS */
Chuck Leverb4629fe2006-03-20 13:44:12 -05001129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130/**
1131 * may_umount_tree - check if a mount tree is busy
1132 * @mnt: root of mount tree
1133 *
1134 * This is called to check if a tree of mounts has any
1135 * open files, pwds, chroots or sub mounts that are
1136 * busy.
1137 */
1138int may_umount_tree(struct vfsmount *mnt)
1139{
Ram Pai36341f62005-11-07 17:17:22 -05001140 int actual_refs = 0;
1141 int minimum_refs = 0;
1142 struct vfsmount *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Nick Pigginb3e19d92011-01-07 17:50:11 +11001144 /* write lock needed for mnt_get_count */
1145 br_write_lock(vfsmount_lock);
Ram Pai36341f62005-11-07 17:17:22 -05001146 for (p = mnt; p; p = next_mnt(p, mnt)) {
Nick Pigginb3e19d92011-01-07 17:50:11 +11001147 actual_refs += mnt_get_count(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 minimum_refs += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 }
Nick Pigginb3e19d92011-01-07 17:50:11 +11001150 br_write_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
1152 if (actual_refs > minimum_refs)
Ian Kente3474a82006-03-27 01:14:51 -08001153 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Ian Kente3474a82006-03-27 01:14:51 -08001155 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156}
1157
1158EXPORT_SYMBOL(may_umount_tree);
1159
1160/**
1161 * may_umount - check if a mount point is busy
1162 * @mnt: root of mount
1163 *
1164 * This is called to check if a mount point has any
1165 * open files, pwds, chroots or sub mounts. If the
1166 * mount has sub mounts this will return busy
1167 * regardless of whether the sub mounts are busy.
1168 *
1169 * Doesn't take quota and stuff into account. IOW, in some cases it will
1170 * give false negatives. The main reason why it's here is that we need
1171 * a non-destructive way to look for easily umountable filesystems.
1172 */
1173int may_umount(struct vfsmount *mnt)
1174{
Ian Kente3474a82006-03-27 01:14:51 -08001175 int ret = 1;
Al Viro8ad08d82010-01-16 12:56:08 -05001176 down_read(&namespace_sem);
Nick Pigginb3e19d92011-01-07 17:50:11 +11001177 br_write_lock(vfsmount_lock);
Ram Paia05964f2005-11-07 17:20:17 -05001178 if (propagate_mount_busy(mnt, 2))
Ian Kente3474a82006-03-27 01:14:51 -08001179 ret = 0;
Nick Pigginb3e19d92011-01-07 17:50:11 +11001180 br_write_unlock(vfsmount_lock);
Al Viro8ad08d82010-01-16 12:56:08 -05001181 up_read(&namespace_sem);
Ram Paia05964f2005-11-07 17:20:17 -05001182 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183}
1184
1185EXPORT_SYMBOL(may_umount);
1186
Ram Paib90fa9a2005-11-07 17:19:50 -05001187void release_mounts(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188{
Ram Pai70fbcdf2005-11-07 17:17:04 -05001189 struct vfsmount *mnt;
Miklos Szeredibf066c72006-01-08 01:03:19 -08001190 while (!list_empty(head)) {
Pavel Emelianovb5e61812007-05-08 00:30:19 -07001191 mnt = list_first_entry(head, struct vfsmount, mnt_hash);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001192 list_del_init(&mnt->mnt_hash);
Al Virob2dba1a2011-11-23 19:26:23 -05001193 if (mnt_has_parent(mnt)) {
Ram Pai70fbcdf2005-11-07 17:17:04 -05001194 struct dentry *dentry;
1195 struct vfsmount *m;
Nick Piggin99b7db72010-08-18 04:37:39 +10001196
1197 br_write_lock(vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001198 dentry = mnt->mnt_mountpoint;
1199 m = mnt->mnt_parent;
1200 mnt->mnt_mountpoint = mnt->mnt_root;
1201 mnt->mnt_parent = mnt;
Al Viro7c4b93d2008-03-21 23:59:49 -04001202 m->mnt_ghosts--;
Nick Piggin99b7db72010-08-18 04:37:39 +10001203 br_write_unlock(vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001204 dput(dentry);
1205 mntput(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 }
Al Virof03c6592011-01-14 22:30:21 -05001207 mntput(mnt);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001208 }
1209}
1210
Nick Piggin99b7db72010-08-18 04:37:39 +10001211/*
1212 * vfsmount lock must be held for write
1213 * namespace_sem must be held for write
1214 */
Ram Paia05964f2005-11-07 17:20:17 -05001215void umount_tree(struct vfsmount *mnt, int propagate, struct list_head *kill)
Ram Pai70fbcdf2005-11-07 17:17:04 -05001216{
Al Viro7b8a53f2011-01-15 20:08:44 -05001217 LIST_HEAD(tmp_list);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001218 struct vfsmount *p;
1219
Akinobu Mita1bfba4e2006-06-26 00:24:40 -07001220 for (p = mnt; p; p = next_mnt(p, mnt))
Al Viro7b8a53f2011-01-15 20:08:44 -05001221 list_move(&p->mnt_hash, &tmp_list);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001222
Ram Paia05964f2005-11-07 17:20:17 -05001223 if (propagate)
Al Viro7b8a53f2011-01-15 20:08:44 -05001224 propagate_umount(&tmp_list);
Ram Paia05964f2005-11-07 17:20:17 -05001225
Al Viro7b8a53f2011-01-15 20:08:44 -05001226 list_for_each_entry(p, &tmp_list, mnt_hash) {
Ram Pai70fbcdf2005-11-07 17:17:04 -05001227 list_del_init(&p->mnt_expire);
1228 list_del_init(&p->mnt_list);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08001229 __touch_mnt_namespace(p->mnt_ns);
1230 p->mnt_ns = NULL;
Al Viro7e3d0eb02011-01-16 16:32:11 -05001231 __mnt_make_shortterm(p);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001232 list_del_init(&p->mnt_child);
Al Virob2dba1a2011-11-23 19:26:23 -05001233 if (mnt_has_parent(p)) {
Al Viro7c4b93d2008-03-21 23:59:49 -04001234 p->mnt_parent->mnt_ghosts++;
Al Viroaa0a4cf2011-11-24 19:31:36 -05001235 dentry_reset_mounted(p->mnt_mountpoint);
Al Viro7c4b93d2008-03-21 23:59:49 -04001236 }
Ram Paia05964f2005-11-07 17:20:17 -05001237 change_mnt_propagation(p, MS_PRIVATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
Al Viro7b8a53f2011-01-15 20:08:44 -05001239 list_splice(&tmp_list, kill);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240}
1241
Al Viroc35038b2008-03-22 00:46:23 -04001242static void shrink_submounts(struct vfsmount *mnt, struct list_head *umounts);
1243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244static int do_umount(struct vfsmount *mnt, int flags)
1245{
Ram Paib58fed82005-11-07 17:16:09 -05001246 struct super_block *sb = mnt->mnt_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 int retval;
Ram Pai70fbcdf2005-11-07 17:17:04 -05001248 LIST_HEAD(umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 retval = security_sb_umount(mnt, flags);
1251 if (retval)
1252 return retval;
1253
1254 /*
1255 * Allow userspace to request a mountpoint be expired rather than
1256 * unmounting unconditionally. Unmount only happens if:
1257 * (1) the mark is already set (the mark is cleared by mntput())
1258 * (2) the usage count == 1 [parent vfsmount] + 1 [sys_umount]
1259 */
1260 if (flags & MNT_EXPIRE) {
Jan Blunck6ac08c32008-02-14 19:34:38 -08001261 if (mnt == current->fs->root.mnt ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 flags & (MNT_FORCE | MNT_DETACH))
1263 return -EINVAL;
1264
Nick Pigginb3e19d92011-01-07 17:50:11 +11001265 /*
1266 * probably don't strictly need the lock here if we examined
1267 * all race cases, but it's a slowpath.
1268 */
1269 br_write_lock(vfsmount_lock);
1270 if (mnt_get_count(mnt) != 2) {
J. R. Okajimabf9faa22011-02-23 16:59:49 +09001271 br_write_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 return -EBUSY;
Nick Pigginb3e19d92011-01-07 17:50:11 +11001273 }
1274 br_write_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 if (!xchg(&mnt->mnt_expiry_mark, 1))
1277 return -EAGAIN;
1278 }
1279
1280 /*
1281 * If we may have to abort operations to get out of this
1282 * mount, and they will themselves hold resources we must
1283 * allow the fs to do things. In the Unix tradition of
1284 * 'Gee thats tricky lets do it in userspace' the umount_begin
1285 * might fail to complete on the first run through as other tasks
1286 * must return, and the like. Thats for the mount program to worry
1287 * about for the moment.
1288 */
1289
Al Viro42faad92008-04-24 07:21:56 -04001290 if (flags & MNT_FORCE && sb->s_op->umount_begin) {
Al Viro42faad92008-04-24 07:21:56 -04001291 sb->s_op->umount_begin(sb);
Al Viro42faad92008-04-24 07:21:56 -04001292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
1294 /*
1295 * No sense to grab the lock for this test, but test itself looks
1296 * somewhat bogus. Suggestions for better replacement?
1297 * Ho-hum... In principle, we might treat that as umount + switch
1298 * to rootfs. GC would eventually take care of the old vfsmount.
1299 * Actually it makes sense, especially if rootfs would contain a
1300 * /reboot - static binary that would close all descriptors and
1301 * call reboot(9). Then init(8) could umount root and exec /reboot.
1302 */
Jan Blunck6ac08c32008-02-14 19:34:38 -08001303 if (mnt == current->fs->root.mnt && !(flags & MNT_DETACH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 /*
1305 * Special case for "unmounting" root ...
1306 * we just try to remount it readonly.
1307 */
1308 down_write(&sb->s_umount);
Al Viro4aa98cf2009-05-08 13:36:58 -04001309 if (!(sb->s_flags & MS_RDONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 retval = do_remount_sb(sb, MS_RDONLY, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 up_write(&sb->s_umount);
1312 return retval;
1313 }
1314
Ram Pai390c6842005-11-07 17:17:51 -05001315 down_write(&namespace_sem);
Nick Piggin99b7db72010-08-18 04:37:39 +10001316 br_write_lock(vfsmount_lock);
Al Viro5addc5d2005-11-07 17:15:49 -05001317 event++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Al Viroc35038b2008-03-22 00:46:23 -04001319 if (!(flags & MNT_DETACH))
1320 shrink_submounts(mnt, &umount_list);
1321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 retval = -EBUSY;
Ram Paia05964f2005-11-07 17:20:17 -05001323 if (flags & MNT_DETACH || !propagate_mount_busy(mnt, 2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 if (!list_empty(&mnt->mnt_list))
Ram Paia05964f2005-11-07 17:20:17 -05001325 umount_tree(mnt, 1, &umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 retval = 0;
1327 }
Nick Piggin99b7db72010-08-18 04:37:39 +10001328 br_write_unlock(vfsmount_lock);
Ram Pai390c6842005-11-07 17:17:51 -05001329 up_write(&namespace_sem);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001330 release_mounts(&umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 return retval;
1332}
1333
1334/*
1335 * Now umount can handle mount points as well as block devices.
1336 * This is important for filesystems which use unnamed block devices.
1337 *
1338 * We now support a flag for forced unmount like the other 'big iron'
1339 * unixes. Our API is identical to OSF/1 to avoid making a mess of AMD
1340 */
1341
Heiko Carstensbdc480e2009-01-14 14:14:12 +01001342SYSCALL_DEFINE2(umount, char __user *, name, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
Al Viro2d8f3032008-07-22 09:59:21 -04001344 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 int retval;
Miklos Szeredidb1f05b2010-02-10 12:15:53 +01001346 int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Miklos Szeredidb1f05b2010-02-10 12:15:53 +01001348 if (flags & ~(MNT_FORCE | MNT_DETACH | MNT_EXPIRE | UMOUNT_NOFOLLOW))
1349 return -EINVAL;
1350
1351 if (!(flags & UMOUNT_NOFOLLOW))
1352 lookup_flags |= LOOKUP_FOLLOW;
1353
1354 retval = user_path_at(AT_FDCWD, name, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 if (retval)
1356 goto out;
1357 retval = -EINVAL;
Al Viro2d8f3032008-07-22 09:59:21 -04001358 if (path.dentry != path.mnt->mnt_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 goto dput_and_out;
Al Viro2d8f3032008-07-22 09:59:21 -04001360 if (!check_mnt(path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 goto dput_and_out;
1362
1363 retval = -EPERM;
1364 if (!capable(CAP_SYS_ADMIN))
1365 goto dput_and_out;
1366
Al Viro2d8f3032008-07-22 09:59:21 -04001367 retval = do_umount(path.mnt, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368dput_and_out:
Jan Blunck429731b2008-02-14 19:34:31 -08001369 /* we mustn't call path_put() as that would clear mnt_expiry_mark */
Al Viro2d8f3032008-07-22 09:59:21 -04001370 dput(path.dentry);
1371 mntput_no_expire(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372out:
1373 return retval;
1374}
1375
1376#ifdef __ARCH_WANT_SYS_OLDUMOUNT
1377
1378/*
Ram Paib58fed82005-11-07 17:16:09 -05001379 * The 2.0 compatible umount. No flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 */
Heiko Carstensbdc480e2009-01-14 14:14:12 +01001381SYSCALL_DEFINE1(oldumount, char __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382{
Ram Paib58fed82005-11-07 17:16:09 -05001383 return sys_umount(name, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384}
1385
1386#endif
1387
Al Viro2d92ab32008-08-02 00:51:11 -04001388static int mount_is_safe(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389{
1390 if (capable(CAP_SYS_ADMIN))
1391 return 0;
1392 return -EPERM;
1393#ifdef notyet
Al Viro2d92ab32008-08-02 00:51:11 -04001394 if (S_ISLNK(path->dentry->d_inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 return -EPERM;
Al Viro2d92ab32008-08-02 00:51:11 -04001396 if (path->dentry->d_inode->i_mode & S_ISVTX) {
David Howellsda9592e2008-11-14 10:39:05 +11001397 if (current_uid() != path->dentry->d_inode->i_uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 return -EPERM;
1399 }
Al Viro2d92ab32008-08-02 00:51:11 -04001400 if (inode_permission(path->dentry->d_inode, MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 return -EPERM;
1402 return 0;
1403#endif
1404}
1405
Ram Paib90fa9a2005-11-07 17:19:50 -05001406struct vfsmount *copy_tree(struct vfsmount *mnt, struct dentry *dentry,
Ram Pai36341f62005-11-07 17:17:22 -05001407 int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408{
1409 struct vfsmount *res, *p, *q, *r, *s;
Al Viro1a390682008-03-21 20:48:19 -04001410 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Ram Pai9676f0c2005-11-07 17:21:20 -05001412 if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(mnt))
1413 return NULL;
1414
Ram Pai36341f62005-11-07 17:17:22 -05001415 res = q = clone_mnt(mnt, dentry, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 if (!q)
1417 goto Enomem;
1418 q->mnt_mountpoint = mnt->mnt_mountpoint;
1419
1420 p = mnt;
Domen Puncerfdadd652005-09-10 00:27:07 -07001421 list_for_each_entry(r, &mnt->mnt_mounts, mnt_child) {
Jan Blunck7ec02ef2008-04-29 00:59:40 -07001422 if (!is_subdir(r->mnt_mountpoint, dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 continue;
1424
1425 for (s = r; s; s = next_mnt(s, r)) {
Ram Pai9676f0c2005-11-07 17:21:20 -05001426 if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(s)) {
1427 s = skip_mnt_tree(s);
1428 continue;
1429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 while (p != s->mnt_parent) {
1431 p = p->mnt_parent;
1432 q = q->mnt_parent;
1433 }
1434 p = s;
Al Viro1a390682008-03-21 20:48:19 -04001435 path.mnt = q;
1436 path.dentry = p->mnt_mountpoint;
Ram Pai36341f62005-11-07 17:17:22 -05001437 q = clone_mnt(p, p->mnt_root, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 if (!q)
1439 goto Enomem;
Nick Piggin99b7db72010-08-18 04:37:39 +10001440 br_write_lock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 list_add_tail(&q->mnt_list, &res->mnt_list);
Al Viro1a390682008-03-21 20:48:19 -04001442 attach_mnt(q, &path);
Nick Piggin99b7db72010-08-18 04:37:39 +10001443 br_write_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 }
1445 }
1446 return res;
Ram Paib58fed82005-11-07 17:16:09 -05001447Enomem:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 if (res) {
Ram Pai70fbcdf2005-11-07 17:17:04 -05001449 LIST_HEAD(umount_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10001450 br_write_lock(vfsmount_lock);
Ram Paia05964f2005-11-07 17:20:17 -05001451 umount_tree(res, 0, &umount_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10001452 br_write_unlock(vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001453 release_mounts(&umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 }
1455 return NULL;
1456}
1457
Al Viro589ff872009-04-18 03:28:19 -04001458struct vfsmount *collect_mounts(struct path *path)
Al Viro8aec0802007-06-07 12:20:32 -04001459{
1460 struct vfsmount *tree;
Al Viro1a60a282008-03-22 16:19:49 -04001461 down_write(&namespace_sem);
Al Viro589ff872009-04-18 03:28:19 -04001462 tree = copy_tree(path->mnt, path->dentry, CL_COPY_ALL | CL_PRIVATE);
Al Viro1a60a282008-03-22 16:19:49 -04001463 up_write(&namespace_sem);
Al Viro8aec0802007-06-07 12:20:32 -04001464 return tree;
1465}
1466
1467void drop_collected_mounts(struct vfsmount *mnt)
1468{
1469 LIST_HEAD(umount_list);
Al Viro1a60a282008-03-22 16:19:49 -04001470 down_write(&namespace_sem);
Nick Piggin99b7db72010-08-18 04:37:39 +10001471 br_write_lock(vfsmount_lock);
Al Viro8aec0802007-06-07 12:20:32 -04001472 umount_tree(mnt, 0, &umount_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10001473 br_write_unlock(vfsmount_lock);
Al Viro1a60a282008-03-22 16:19:49 -04001474 up_write(&namespace_sem);
Al Viro8aec0802007-06-07 12:20:32 -04001475 release_mounts(&umount_list);
1476}
1477
Al Viro1f707132010-01-30 22:51:25 -05001478int iterate_mounts(int (*f)(struct vfsmount *, void *), void *arg,
1479 struct vfsmount *root)
1480{
1481 struct vfsmount *mnt;
1482 int res = f(root, arg);
1483 if (res)
1484 return res;
1485 list_for_each_entry(mnt, &root->mnt_list, mnt_list) {
1486 res = f(mnt, arg);
1487 if (res)
1488 return res;
1489 }
1490 return 0;
1491}
1492
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001493static void cleanup_group_ids(struct vfsmount *mnt, struct vfsmount *end)
1494{
1495 struct vfsmount *p;
1496
1497 for (p = mnt; p != end; p = next_mnt(p, mnt)) {
1498 if (p->mnt_group_id && !IS_MNT_SHARED(p))
1499 mnt_release_group_id(p);
1500 }
1501}
1502
1503static int invent_group_ids(struct vfsmount *mnt, bool recurse)
1504{
1505 struct vfsmount *p;
1506
1507 for (p = mnt; p; p = recurse ? next_mnt(p, mnt) : NULL) {
1508 if (!p->mnt_group_id && !IS_MNT_SHARED(p)) {
1509 int err = mnt_alloc_group_id(p);
1510 if (err) {
1511 cleanup_group_ids(mnt, p);
1512 return err;
1513 }
1514 }
1515 }
1516
1517 return 0;
1518}
1519
Ram Paib90fa9a2005-11-07 17:19:50 -05001520/*
1521 * @source_mnt : mount tree to be attached
Ram Pai21444402005-11-07 17:20:03 -05001522 * @nd : place the mount tree @source_mnt is attached
1523 * @parent_nd : if non-null, detach the source_mnt from its parent and
1524 * store the parent mount and mountpoint dentry.
1525 * (done when source_mnt is moved)
Ram Paib90fa9a2005-11-07 17:19:50 -05001526 *
1527 * NOTE: in the table below explains the semantics when a source mount
1528 * of a given type is attached to a destination mount of a given type.
Ram Pai9676f0c2005-11-07 17:21:20 -05001529 * ---------------------------------------------------------------------------
1530 * | BIND MOUNT OPERATION |
1531 * |**************************************************************************
1532 * | source-->| shared | private | slave | unbindable |
1533 * | dest | | | | |
1534 * | | | | | | |
1535 * | v | | | | |
1536 * |**************************************************************************
1537 * | shared | shared (++) | shared (+) | shared(+++)| invalid |
1538 * | | | | | |
1539 * |non-shared| shared (+) | private | slave (*) | invalid |
1540 * ***************************************************************************
Ram Paib90fa9a2005-11-07 17:19:50 -05001541 * A bind operation clones the source mount and mounts the clone on the
1542 * destination mount.
1543 *
1544 * (++) the cloned mount is propagated to all the mounts in the propagation
1545 * tree of the destination mount and the cloned mount is added to
1546 * the peer group of the source mount.
1547 * (+) the cloned mount is created under the destination mount and is marked
1548 * as shared. The cloned mount is added to the peer group of the source
1549 * mount.
Ram Pai5afe0022005-11-07 17:21:01 -05001550 * (+++) the mount is propagated to all the mounts in the propagation tree
1551 * of the destination mount and the cloned mount is made slave
1552 * of the same master as that of the source mount. The cloned mount
1553 * is marked as 'shared and slave'.
1554 * (*) the cloned mount is made a slave of the same master as that of the
1555 * source mount.
1556 *
Ram Pai9676f0c2005-11-07 17:21:20 -05001557 * ---------------------------------------------------------------------------
1558 * | MOVE MOUNT OPERATION |
1559 * |**************************************************************************
1560 * | source-->| shared | private | slave | unbindable |
1561 * | dest | | | | |
1562 * | | | | | | |
1563 * | v | | | | |
1564 * |**************************************************************************
1565 * | shared | shared (+) | shared (+) | shared(+++) | invalid |
1566 * | | | | | |
1567 * |non-shared| shared (+*) | private | slave (*) | unbindable |
1568 * ***************************************************************************
Ram Pai5afe0022005-11-07 17:21:01 -05001569 *
1570 * (+) the mount is moved to the destination. And is then propagated to
1571 * all the mounts in the propagation tree of the destination mount.
Ram Pai21444402005-11-07 17:20:03 -05001572 * (+*) the mount is moved to the destination.
Ram Pai5afe0022005-11-07 17:21:01 -05001573 * (+++) the mount is moved to the destination and is then propagated to
1574 * all the mounts belonging to the destination mount's propagation tree.
1575 * the mount is marked as 'shared and slave'.
1576 * (*) the mount continues to be a slave at the new location.
Ram Paib90fa9a2005-11-07 17:19:50 -05001577 *
1578 * if the source mount is a tree, the operations explained above is
1579 * applied to each mount in the tree.
1580 * Must be called without spinlocks held, since this function can sleep
1581 * in allocations.
1582 */
1583static int attach_recursive_mnt(struct vfsmount *source_mnt,
Al Viro1a390682008-03-21 20:48:19 -04001584 struct path *path, struct path *parent_path)
Ram Paib90fa9a2005-11-07 17:19:50 -05001585{
1586 LIST_HEAD(tree_list);
Al Viro1a390682008-03-21 20:48:19 -04001587 struct vfsmount *dest_mnt = path->mnt;
1588 struct dentry *dest_dentry = path->dentry;
Ram Paib90fa9a2005-11-07 17:19:50 -05001589 struct vfsmount *child, *p;
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001590 int err;
Ram Paib90fa9a2005-11-07 17:19:50 -05001591
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001592 if (IS_MNT_SHARED(dest_mnt)) {
1593 err = invent_group_ids(source_mnt, true);
1594 if (err)
1595 goto out;
1596 }
1597 err = propagate_mnt(dest_mnt, dest_dentry, source_mnt, &tree_list);
1598 if (err)
1599 goto out_cleanup_ids;
Ram Paib90fa9a2005-11-07 17:19:50 -05001600
Nick Piggin99b7db72010-08-18 04:37:39 +10001601 br_write_lock(vfsmount_lock);
Al Virodf1a1ad2010-01-16 12:57:40 -05001602
Ram Paib90fa9a2005-11-07 17:19:50 -05001603 if (IS_MNT_SHARED(dest_mnt)) {
1604 for (p = source_mnt; p; p = next_mnt(p, source_mnt))
1605 set_mnt_shared(p);
1606 }
Al Viro1a390682008-03-21 20:48:19 -04001607 if (parent_path) {
1608 detach_mnt(source_mnt, parent_path);
1609 attach_mnt(source_mnt, path);
Al Viroe5d67f02009-04-07 12:15:39 -04001610 touch_mnt_namespace(parent_path->mnt->mnt_ns);
Ram Pai21444402005-11-07 17:20:03 -05001611 } else {
1612 mnt_set_mountpoint(dest_mnt, dest_dentry, source_mnt);
1613 commit_tree(source_mnt);
1614 }
Ram Paib90fa9a2005-11-07 17:19:50 -05001615
1616 list_for_each_entry_safe(child, p, &tree_list, mnt_hash) {
1617 list_del_init(&child->mnt_hash);
1618 commit_tree(child);
1619 }
Nick Piggin99b7db72010-08-18 04:37:39 +10001620 br_write_unlock(vfsmount_lock);
1621
Ram Paib90fa9a2005-11-07 17:19:50 -05001622 return 0;
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001623
1624 out_cleanup_ids:
1625 if (IS_MNT_SHARED(dest_mnt))
1626 cleanup_group_ids(source_mnt, NULL);
1627 out:
1628 return err;
Ram Paib90fa9a2005-11-07 17:19:50 -05001629}
1630
Al Virob12cea92011-03-18 08:55:38 -04001631static int lock_mount(struct path *path)
1632{
1633 struct vfsmount *mnt;
1634retry:
1635 mutex_lock(&path->dentry->d_inode->i_mutex);
1636 if (unlikely(cant_mount(path->dentry))) {
1637 mutex_unlock(&path->dentry->d_inode->i_mutex);
1638 return -ENOENT;
1639 }
1640 down_write(&namespace_sem);
1641 mnt = lookup_mnt(path);
1642 if (likely(!mnt))
1643 return 0;
1644 up_write(&namespace_sem);
1645 mutex_unlock(&path->dentry->d_inode->i_mutex);
1646 path_put(path);
1647 path->mnt = mnt;
1648 path->dentry = dget(mnt->mnt_root);
1649 goto retry;
1650}
1651
1652static void unlock_mount(struct path *path)
1653{
1654 up_write(&namespace_sem);
1655 mutex_unlock(&path->dentry->d_inode->i_mutex);
1656}
1657
Al Viro8c3ee422008-03-22 18:00:39 -04001658static int graft_tree(struct vfsmount *mnt, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 if (mnt->mnt_sb->s_flags & MS_NOUSER)
1661 return -EINVAL;
1662
Al Viro8c3ee422008-03-22 18:00:39 -04001663 if (S_ISDIR(path->dentry->d_inode->i_mode) !=
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 S_ISDIR(mnt->mnt_root->d_inode->i_mode))
1665 return -ENOTDIR;
1666
Al Virob12cea92011-03-18 08:55:38 -04001667 if (d_unlinked(path->dentry))
1668 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Al Virob12cea92011-03-18 08:55:38 -04001670 return attach_recursive_mnt(mnt, path, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671}
1672
1673/*
Valerie Aurora7a2e8a82010-08-26 11:07:22 -07001674 * Sanity check the flags to change_mnt_propagation.
1675 */
1676
1677static int flags_to_propagation_type(int flags)
1678{
Roman Borisov7c6e9842011-05-25 16:26:48 -07001679 int type = flags & ~(MS_REC | MS_SILENT);
Valerie Aurora7a2e8a82010-08-26 11:07:22 -07001680
1681 /* Fail if any non-propagation flags are set */
1682 if (type & ~(MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
1683 return 0;
1684 /* Only one propagation flag should be set */
1685 if (!is_power_of_2(type))
1686 return 0;
1687 return type;
1688}
1689
1690/*
Ram Pai07b20882005-11-07 17:19:07 -05001691 * recursively change the type of the mountpoint.
1692 */
Al Viro0a0d8a42008-08-02 00:55:27 -04001693static int do_change_type(struct path *path, int flag)
Ram Pai07b20882005-11-07 17:19:07 -05001694{
Al Viro2d92ab32008-08-02 00:51:11 -04001695 struct vfsmount *m, *mnt = path->mnt;
Ram Pai07b20882005-11-07 17:19:07 -05001696 int recurse = flag & MS_REC;
Valerie Aurora7a2e8a82010-08-26 11:07:22 -07001697 int type;
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001698 int err = 0;
Ram Pai07b20882005-11-07 17:19:07 -05001699
Miklos Szerediee6f9582007-05-08 00:30:40 -07001700 if (!capable(CAP_SYS_ADMIN))
1701 return -EPERM;
1702
Al Viro2d92ab32008-08-02 00:51:11 -04001703 if (path->dentry != path->mnt->mnt_root)
Ram Pai07b20882005-11-07 17:19:07 -05001704 return -EINVAL;
1705
Valerie Aurora7a2e8a82010-08-26 11:07:22 -07001706 type = flags_to_propagation_type(flag);
1707 if (!type)
1708 return -EINVAL;
1709
Ram Pai07b20882005-11-07 17:19:07 -05001710 down_write(&namespace_sem);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001711 if (type == MS_SHARED) {
1712 err = invent_group_ids(mnt, recurse);
1713 if (err)
1714 goto out_unlock;
1715 }
1716
Nick Piggin99b7db72010-08-18 04:37:39 +10001717 br_write_lock(vfsmount_lock);
Ram Pai07b20882005-11-07 17:19:07 -05001718 for (m = mnt; m; m = (recurse ? next_mnt(m, mnt) : NULL))
1719 change_mnt_propagation(m, type);
Nick Piggin99b7db72010-08-18 04:37:39 +10001720 br_write_unlock(vfsmount_lock);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001721
1722 out_unlock:
Ram Pai07b20882005-11-07 17:19:07 -05001723 up_write(&namespace_sem);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001724 return err;
Ram Pai07b20882005-11-07 17:19:07 -05001725}
1726
1727/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 * do loopback mount.
1729 */
Al Viro0a0d8a42008-08-02 00:55:27 -04001730static int do_loopback(struct path *path, char *old_name,
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001731 int recurse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732{
Al Virob12cea92011-03-18 08:55:38 -04001733 LIST_HEAD(umount_list);
Al Viro2d92ab32008-08-02 00:51:11 -04001734 struct path old_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 struct vfsmount *mnt = NULL;
Al Viro2d92ab32008-08-02 00:51:11 -04001736 int err = mount_is_safe(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 if (err)
1738 return err;
1739 if (!old_name || !*old_name)
1740 return -EINVAL;
Trond Myklebust815d4052011-09-26 20:36:09 -04001741 err = kern_path(old_name, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 if (err)
1743 return err;
1744
Al Virob12cea92011-03-18 08:55:38 -04001745 err = lock_mount(path);
1746 if (err)
Jan Blunck4ac91372008-02-14 19:34:32 -08001747 goto out;
Ram Pai9676f0c2005-11-07 17:21:20 -05001748
Al Virob12cea92011-03-18 08:55:38 -04001749 err = -EINVAL;
1750 if (IS_MNT_UNBINDABLE(old_path.mnt))
1751 goto out2;
1752
Al Viro2d92ab32008-08-02 00:51:11 -04001753 if (!check_mnt(path->mnt) || !check_mnt(old_path.mnt))
Al Virob12cea92011-03-18 08:55:38 -04001754 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
Al Viroccd48bc2005-11-07 17:15:04 -05001756 err = -ENOMEM;
1757 if (recurse)
Al Viro2d92ab32008-08-02 00:51:11 -04001758 mnt = copy_tree(old_path.mnt, old_path.dentry, 0);
Al Viroccd48bc2005-11-07 17:15:04 -05001759 else
Al Viro2d92ab32008-08-02 00:51:11 -04001760 mnt = clone_mnt(old_path.mnt, old_path.dentry, 0);
Al Viroccd48bc2005-11-07 17:15:04 -05001761
1762 if (!mnt)
Al Virob12cea92011-03-18 08:55:38 -04001763 goto out2;
Al Viroccd48bc2005-11-07 17:15:04 -05001764
Al Viro2d92ab32008-08-02 00:51:11 -04001765 err = graft_tree(mnt, path);
Al Viroccd48bc2005-11-07 17:15:04 -05001766 if (err) {
Nick Piggin99b7db72010-08-18 04:37:39 +10001767 br_write_lock(vfsmount_lock);
Ram Paia05964f2005-11-07 17:20:17 -05001768 umount_tree(mnt, 0, &umount_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10001769 br_write_unlock(vfsmount_lock);
Ram Pai5b83d2c5c2005-11-07 17:16:29 -05001770 }
Al Virob12cea92011-03-18 08:55:38 -04001771out2:
1772 unlock_mount(path);
1773 release_mounts(&umount_list);
Al Viroccd48bc2005-11-07 17:15:04 -05001774out:
Al Viro2d92ab32008-08-02 00:51:11 -04001775 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 return err;
1777}
1778
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08001779static int change_mount_flags(struct vfsmount *mnt, int ms_flags)
1780{
1781 int error = 0;
1782 int readonly_request = 0;
1783
1784 if (ms_flags & MS_RDONLY)
1785 readonly_request = 1;
1786 if (readonly_request == __mnt_is_readonly(mnt))
1787 return 0;
1788
1789 if (readonly_request)
1790 error = mnt_make_readonly(mnt);
1791 else
1792 __mnt_unmake_readonly(mnt);
1793 return error;
1794}
1795
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796/*
1797 * change filesystem flags. dir should be a physical root of filesystem.
1798 * If you've mounted a non-root directory somewhere and want to do remount
1799 * on it - tough luck.
1800 */
Al Viro0a0d8a42008-08-02 00:55:27 -04001801static int do_remount(struct path *path, int flags, int mnt_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 void *data)
1803{
1804 int err;
Al Viro2d92ab32008-08-02 00:51:11 -04001805 struct super_block *sb = path->mnt->mnt_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
1807 if (!capable(CAP_SYS_ADMIN))
1808 return -EPERM;
1809
Al Viro2d92ab32008-08-02 00:51:11 -04001810 if (!check_mnt(path->mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 return -EINVAL;
1812
Al Viro2d92ab32008-08-02 00:51:11 -04001813 if (path->dentry != path->mnt->mnt_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 return -EINVAL;
1815
Eric Parisff36fe22011-03-03 16:09:14 -05001816 err = security_sb_remount(sb, data);
1817 if (err)
1818 return err;
1819
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 down_write(&sb->s_umount);
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08001821 if (flags & MS_BIND)
Al Viro2d92ab32008-08-02 00:51:11 -04001822 err = change_mount_flags(path->mnt, flags);
Al Viro4aa98cf2009-05-08 13:36:58 -04001823 else
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08001824 err = do_remount_sb(sb, flags, data, 0);
Al Viro7b43a792010-01-16 13:01:26 -05001825 if (!err) {
Nick Piggin99b7db72010-08-18 04:37:39 +10001826 br_write_lock(vfsmount_lock);
Valerie Aurora495d6c92010-01-26 14:20:47 -05001827 mnt_flags |= path->mnt->mnt_flags & MNT_PROPAGATION_MASK;
Al Viro2d92ab32008-08-02 00:51:11 -04001828 path->mnt->mnt_flags = mnt_flags;
Nick Piggin99b7db72010-08-18 04:37:39 +10001829 br_write_unlock(vfsmount_lock);
Al Viro7b43a792010-01-16 13:01:26 -05001830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 up_write(&sb->s_umount);
Dan Williams0e55a7c2008-09-26 19:01:20 -07001832 if (!err) {
Nick Piggin99b7db72010-08-18 04:37:39 +10001833 br_write_lock(vfsmount_lock);
Dan Williams0e55a7c2008-09-26 19:01:20 -07001834 touch_mnt_namespace(path->mnt->mnt_ns);
Nick Piggin99b7db72010-08-18 04:37:39 +10001835 br_write_unlock(vfsmount_lock);
Dan Williams0e55a7c2008-09-26 19:01:20 -07001836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 return err;
1838}
1839
Ram Pai9676f0c2005-11-07 17:21:20 -05001840static inline int tree_contains_unbindable(struct vfsmount *mnt)
1841{
1842 struct vfsmount *p;
1843 for (p = mnt; p; p = next_mnt(p, mnt)) {
1844 if (IS_MNT_UNBINDABLE(p))
1845 return 1;
1846 }
1847 return 0;
1848}
1849
Al Viro0a0d8a42008-08-02 00:55:27 -04001850static int do_move_mount(struct path *path, char *old_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851{
Al Viro2d92ab32008-08-02 00:51:11 -04001852 struct path old_path, parent_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 struct vfsmount *p;
1854 int err = 0;
1855 if (!capable(CAP_SYS_ADMIN))
1856 return -EPERM;
1857 if (!old_name || !*old_name)
1858 return -EINVAL;
Al Viro2d92ab32008-08-02 00:51:11 -04001859 err = kern_path(old_name, LOOKUP_FOLLOW, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 if (err)
1861 return err;
1862
Al Virob12cea92011-03-18 08:55:38 -04001863 err = lock_mount(path);
David Howellscc53ce52011-01-14 18:45:26 +00001864 if (err < 0)
1865 goto out;
1866
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 err = -EINVAL;
Al Viro2d92ab32008-08-02 00:51:11 -04001868 if (!check_mnt(path->mnt) || !check_mnt(old_path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 goto out1;
1870
Alexey Dobriyanf3da3922009-05-04 03:32:03 +04001871 if (d_unlinked(path->dentry))
Ram Pai21444402005-11-07 17:20:03 -05001872 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
1874 err = -EINVAL;
Al Viro2d92ab32008-08-02 00:51:11 -04001875 if (old_path.dentry != old_path.mnt->mnt_root)
Ram Pai21444402005-11-07 17:20:03 -05001876 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Al Virob2dba1a2011-11-23 19:26:23 -05001878 if (!mnt_has_parent(old_path.mnt))
Ram Pai21444402005-11-07 17:20:03 -05001879 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
Al Viro2d92ab32008-08-02 00:51:11 -04001881 if (S_ISDIR(path->dentry->d_inode->i_mode) !=
1882 S_ISDIR(old_path.dentry->d_inode->i_mode))
Ram Pai21444402005-11-07 17:20:03 -05001883 goto out1;
1884 /*
1885 * Don't move a mount residing in a shared parent.
1886 */
Al Viroafac7cb2011-11-23 19:34:49 -05001887 if (IS_MNT_SHARED(old_path.mnt->mnt_parent))
Ram Pai21444402005-11-07 17:20:03 -05001888 goto out1;
Ram Pai9676f0c2005-11-07 17:21:20 -05001889 /*
1890 * Don't move a mount tree containing unbindable mounts to a destination
1891 * mount which is shared.
1892 */
Al Viro2d92ab32008-08-02 00:51:11 -04001893 if (IS_MNT_SHARED(path->mnt) &&
1894 tree_contains_unbindable(old_path.mnt))
Ram Pai9676f0c2005-11-07 17:21:20 -05001895 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 err = -ELOOP;
Al Virob2dba1a2011-11-23 19:26:23 -05001897 for (p = path->mnt; mnt_has_parent(p); p = p->mnt_parent)
Al Viro2d92ab32008-08-02 00:51:11 -04001898 if (p == old_path.mnt)
Ram Pai21444402005-11-07 17:20:03 -05001899 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
Al Viro2d92ab32008-08-02 00:51:11 -04001901 err = attach_recursive_mnt(old_path.mnt, path, &parent_path);
Jan Blunck4ac91372008-02-14 19:34:32 -08001902 if (err)
Ram Pai21444402005-11-07 17:20:03 -05001903 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
1905 /* if the mount is moved, it should no longer be expire
1906 * automatically */
Al Viro2d92ab32008-08-02 00:51:11 -04001907 list_del_init(&old_path.mnt->mnt_expire);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908out1:
Al Virob12cea92011-03-18 08:55:38 -04001909 unlock_mount(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 if (!err)
Al Viro1a390682008-03-21 20:48:19 -04001912 path_put(&parent_path);
Al Viro2d92ab32008-08-02 00:51:11 -04001913 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 return err;
1915}
1916
Al Viro9d412a42011-03-17 22:08:28 -04001917static struct vfsmount *fs_set_subtype(struct vfsmount *mnt, const char *fstype)
1918{
1919 int err;
1920 const char *subtype = strchr(fstype, '.');
1921 if (subtype) {
1922 subtype++;
1923 err = -EINVAL;
1924 if (!subtype[0])
1925 goto err;
1926 } else
1927 subtype = "";
1928
1929 mnt->mnt_sb->s_subtype = kstrdup(subtype, GFP_KERNEL);
1930 err = -ENOMEM;
1931 if (!mnt->mnt_sb->s_subtype)
1932 goto err;
1933 return mnt;
1934
1935 err:
1936 mntput(mnt);
1937 return ERR_PTR(err);
1938}
1939
Al Viro79e801a2011-12-12 23:07:05 -05001940static struct vfsmount *
Al Viro9d412a42011-03-17 22:08:28 -04001941do_kern_mount(const char *fstype, int flags, const char *name, void *data)
1942{
1943 struct file_system_type *type = get_fs_type(fstype);
1944 struct vfsmount *mnt;
1945 if (!type)
1946 return ERR_PTR(-ENODEV);
1947 mnt = vfs_kern_mount(type, flags, name, data);
1948 if (!IS_ERR(mnt) && (type->fs_flags & FS_HAS_SUBTYPE) &&
1949 !mnt->mnt_sb->s_subtype)
1950 mnt = fs_set_subtype(mnt, fstype);
1951 put_filesystem(type);
1952 return mnt;
1953}
Al Viro9d412a42011-03-17 22:08:28 -04001954
1955/*
1956 * add a mount into a namespace's mount tree
1957 */
1958static int do_add_mount(struct vfsmount *newmnt, struct path *path, int mnt_flags)
1959{
1960 int err;
1961
1962 mnt_flags &= ~(MNT_SHARED | MNT_WRITE_HOLD | MNT_INTERNAL);
1963
Al Virob12cea92011-03-18 08:55:38 -04001964 err = lock_mount(path);
1965 if (err)
1966 return err;
Al Viro9d412a42011-03-17 22:08:28 -04001967
1968 err = -EINVAL;
1969 if (!(mnt_flags & MNT_SHRINKABLE) && !check_mnt(path->mnt))
1970 goto unlock;
1971
1972 /* Refuse the same filesystem on the same mount point */
1973 err = -EBUSY;
1974 if (path->mnt->mnt_sb == newmnt->mnt_sb &&
1975 path->mnt->mnt_root == path->dentry)
1976 goto unlock;
1977
1978 err = -EINVAL;
1979 if (S_ISLNK(newmnt->mnt_root->d_inode->i_mode))
1980 goto unlock;
1981
1982 newmnt->mnt_flags = mnt_flags;
1983 err = graft_tree(newmnt, path);
1984
1985unlock:
Al Virob12cea92011-03-18 08:55:38 -04001986 unlock_mount(path);
Al Viro9d412a42011-03-17 22:08:28 -04001987 return err;
1988}
Al Virob1e75df2011-01-17 01:47:59 -05001989
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990/*
1991 * create a new mount for userspace and request it to be added into the
1992 * namespace's tree
1993 */
Al Viro0a0d8a42008-08-02 00:55:27 -04001994static int do_new_mount(struct path *path, char *type, int flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 int mnt_flags, char *name, void *data)
1996{
1997 struct vfsmount *mnt;
Al Viro15f9a3f2011-01-17 01:41:58 -05001998 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
Vegard Nossumeca6f532009-09-18 13:05:45 -07002000 if (!type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 return -EINVAL;
2002
2003 /* we need capabilities... */
2004 if (!capable(CAP_SYS_ADMIN))
2005 return -EPERM;
2006
2007 mnt = do_kern_mount(type, flags, name, data);
2008 if (IS_ERR(mnt))
2009 return PTR_ERR(mnt);
2010
Al Viro15f9a3f2011-01-17 01:41:58 -05002011 err = do_add_mount(mnt, path, mnt_flags);
2012 if (err)
2013 mntput(mnt);
2014 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015}
2016
Al Viro19a167a2011-01-17 01:35:23 -05002017int finish_automount(struct vfsmount *m, struct path *path)
2018{
2019 int err;
2020 /* The new mount record should have at least 2 refs to prevent it being
2021 * expired before we get a chance to add it
2022 */
2023 BUG_ON(mnt_get_count(m) < 2);
2024
2025 if (m->mnt_sb == path->mnt->mnt_sb &&
2026 m->mnt_root == path->dentry) {
Al Virob1e75df2011-01-17 01:47:59 -05002027 err = -ELOOP;
2028 goto fail;
Al Viro19a167a2011-01-17 01:35:23 -05002029 }
2030
Al Viro19a167a2011-01-17 01:35:23 -05002031 err = do_add_mount(m, path, path->mnt->mnt_flags | MNT_SHRINKABLE);
Al Virob1e75df2011-01-17 01:47:59 -05002032 if (!err)
2033 return 0;
2034fail:
2035 /* remove m from any expiration list it may be on */
2036 if (!list_empty(&m->mnt_expire)) {
2037 down_write(&namespace_sem);
2038 br_write_lock(vfsmount_lock);
2039 list_del_init(&m->mnt_expire);
2040 br_write_unlock(vfsmount_lock);
2041 up_write(&namespace_sem);
Al Viro19a167a2011-01-17 01:35:23 -05002042 }
Al Virob1e75df2011-01-17 01:47:59 -05002043 mntput(m);
2044 mntput(m);
Al Viro19a167a2011-01-17 01:35:23 -05002045 return err;
2046}
2047
David Howellsea5b7782011-01-14 19:10:03 +00002048/**
2049 * mnt_set_expiry - Put a mount on an expiration list
2050 * @mnt: The mount to list.
2051 * @expiry_list: The list to add the mount to.
2052 */
2053void mnt_set_expiry(struct vfsmount *mnt, struct list_head *expiry_list)
2054{
2055 down_write(&namespace_sem);
2056 br_write_lock(vfsmount_lock);
2057
2058 list_add_tail(&mnt->mnt_expire, expiry_list);
2059
2060 br_write_unlock(vfsmount_lock);
2061 up_write(&namespace_sem);
2062}
2063EXPORT_SYMBOL(mnt_set_expiry);
2064
2065/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 * process a list of expirable mountpoints with the intent of discarding any
2067 * mountpoints that aren't in use and haven't been touched since last we came
2068 * here
2069 */
2070void mark_mounts_for_expiry(struct list_head *mounts)
2071{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 struct vfsmount *mnt, *next;
2073 LIST_HEAD(graveyard);
Al Virobcc5c7d2008-03-22 00:21:53 -04002074 LIST_HEAD(umounts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
2076 if (list_empty(mounts))
2077 return;
2078
Al Virobcc5c7d2008-03-22 00:21:53 -04002079 down_write(&namespace_sem);
Nick Piggin99b7db72010-08-18 04:37:39 +10002080 br_write_lock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
2082 /* extract from the expiration list every vfsmount that matches the
2083 * following criteria:
2084 * - only referenced by its parent vfsmount
2085 * - still marked for expiry (marked on the last call here; marks are
2086 * cleared by mntput())
2087 */
Miklos Szeredi55e700b2005-07-07 17:57:30 -07002088 list_for_each_entry_safe(mnt, next, mounts, mnt_expire) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 if (!xchg(&mnt->mnt_expiry_mark, 1) ||
Al Virobcc5c7d2008-03-22 00:21:53 -04002090 propagate_mount_busy(mnt, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 continue;
Miklos Szeredi55e700b2005-07-07 17:57:30 -07002092 list_move(&mnt->mnt_expire, &graveyard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 }
Al Virobcc5c7d2008-03-22 00:21:53 -04002094 while (!list_empty(&graveyard)) {
2095 mnt = list_first_entry(&graveyard, struct vfsmount, mnt_expire);
2096 touch_mnt_namespace(mnt->mnt_ns);
2097 umount_tree(mnt, 1, &umounts);
2098 }
Nick Piggin99b7db72010-08-18 04:37:39 +10002099 br_write_unlock(vfsmount_lock);
Al Virobcc5c7d2008-03-22 00:21:53 -04002100 up_write(&namespace_sem);
2101
2102 release_mounts(&umounts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103}
2104
2105EXPORT_SYMBOL_GPL(mark_mounts_for_expiry);
2106
2107/*
Trond Myklebust5528f9112006-06-09 09:34:17 -04002108 * Ripoff of 'select_parent()'
2109 *
2110 * search the list of submounts for a given mountpoint, and move any
2111 * shrinkable submounts to the 'graveyard' list.
2112 */
2113static int select_submounts(struct vfsmount *parent, struct list_head *graveyard)
2114{
2115 struct vfsmount *this_parent = parent;
2116 struct list_head *next;
2117 int found = 0;
2118
2119repeat:
2120 next = this_parent->mnt_mounts.next;
2121resume:
2122 while (next != &this_parent->mnt_mounts) {
2123 struct list_head *tmp = next;
2124 struct vfsmount *mnt = list_entry(tmp, struct vfsmount, mnt_child);
2125
2126 next = tmp->next;
2127 if (!(mnt->mnt_flags & MNT_SHRINKABLE))
2128 continue;
2129 /*
2130 * Descend a level if the d_mounts list is non-empty.
2131 */
2132 if (!list_empty(&mnt->mnt_mounts)) {
2133 this_parent = mnt;
2134 goto repeat;
2135 }
2136
2137 if (!propagate_mount_busy(mnt, 1)) {
Trond Myklebust5528f9112006-06-09 09:34:17 -04002138 list_move_tail(&mnt->mnt_expire, graveyard);
2139 found++;
2140 }
2141 }
2142 /*
2143 * All done at this level ... ascend and resume the search
2144 */
2145 if (this_parent != parent) {
2146 next = this_parent->mnt_child.next;
2147 this_parent = this_parent->mnt_parent;
2148 goto resume;
2149 }
2150 return found;
2151}
2152
2153/*
2154 * process a list of expirable mountpoints with the intent of discarding any
2155 * submounts of a specific parent mountpoint
Nick Piggin99b7db72010-08-18 04:37:39 +10002156 *
2157 * vfsmount_lock must be held for write
Trond Myklebust5528f9112006-06-09 09:34:17 -04002158 */
Al Viroc35038b2008-03-22 00:46:23 -04002159static void shrink_submounts(struct vfsmount *mnt, struct list_head *umounts)
Trond Myklebust5528f9112006-06-09 09:34:17 -04002160{
2161 LIST_HEAD(graveyard);
Al Viroc35038b2008-03-22 00:46:23 -04002162 struct vfsmount *m;
Trond Myklebust5528f9112006-06-09 09:34:17 -04002163
Trond Myklebust5528f9112006-06-09 09:34:17 -04002164 /* extract submounts of 'mountpoint' from the expiration list */
Al Viroc35038b2008-03-22 00:46:23 -04002165 while (select_submounts(mnt, &graveyard)) {
Al Virobcc5c7d2008-03-22 00:21:53 -04002166 while (!list_empty(&graveyard)) {
Al Viroc35038b2008-03-22 00:46:23 -04002167 m = list_first_entry(&graveyard, struct vfsmount,
Al Virobcc5c7d2008-03-22 00:21:53 -04002168 mnt_expire);
Eric W. Biedermanafef80b2008-11-12 13:26:54 -08002169 touch_mnt_namespace(m->mnt_ns);
2170 umount_tree(m, 1, umounts);
Al Virobcc5c7d2008-03-22 00:21:53 -04002171 }
2172 }
Trond Myklebust5528f9112006-06-09 09:34:17 -04002173}
2174
Trond Myklebust5528f9112006-06-09 09:34:17 -04002175/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 * Some copy_from_user() implementations do not return the exact number of
2177 * bytes remaining to copy on a fault. But copy_mount_options() requires that.
2178 * Note that this function differs from copy_from_user() in that it will oops
2179 * on bad values of `to', rather than returning a short copy.
2180 */
Ram Paib58fed82005-11-07 17:16:09 -05002181static long exact_copy_from_user(void *to, const void __user * from,
2182 unsigned long n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183{
2184 char *t = to;
2185 const char __user *f = from;
2186 char c;
2187
2188 if (!access_ok(VERIFY_READ, from, n))
2189 return n;
2190
2191 while (n) {
2192 if (__get_user(c, f)) {
2193 memset(t, 0, n);
2194 break;
2195 }
2196 *t++ = c;
2197 f++;
2198 n--;
2199 }
2200 return n;
2201}
2202
Ram Paib58fed82005-11-07 17:16:09 -05002203int copy_mount_options(const void __user * data, unsigned long *where)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204{
2205 int i;
2206 unsigned long page;
2207 unsigned long size;
Ram Paib58fed82005-11-07 17:16:09 -05002208
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 *where = 0;
2210 if (!data)
2211 return 0;
2212
2213 if (!(page = __get_free_page(GFP_KERNEL)))
2214 return -ENOMEM;
2215
2216 /* We only care that *some* data at the address the user
2217 * gave us is valid. Just in case, we'll zero
2218 * the remainder of the page.
2219 */
2220 /* copy_from_user cannot cross TASK_SIZE ! */
2221 size = TASK_SIZE - (unsigned long)data;
2222 if (size > PAGE_SIZE)
2223 size = PAGE_SIZE;
2224
2225 i = size - exact_copy_from_user((void *)page, data, size);
2226 if (!i) {
Ram Paib58fed82005-11-07 17:16:09 -05002227 free_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 return -EFAULT;
2229 }
2230 if (i != PAGE_SIZE)
2231 memset((char *)page + i, 0, PAGE_SIZE - i);
2232 *where = page;
2233 return 0;
2234}
2235
Vegard Nossumeca6f532009-09-18 13:05:45 -07002236int copy_mount_string(const void __user *data, char **where)
2237{
2238 char *tmp;
2239
2240 if (!data) {
2241 *where = NULL;
2242 return 0;
2243 }
2244
2245 tmp = strndup_user(data, PAGE_SIZE);
2246 if (IS_ERR(tmp))
2247 return PTR_ERR(tmp);
2248
2249 *where = tmp;
2250 return 0;
2251}
2252
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253/*
2254 * Flags is a 32-bit value that allows up to 31 non-fs dependent flags to
2255 * be given to the mount() call (ie: read-only, no-dev, no-suid etc).
2256 *
2257 * data is a (void *) that can point to any structure up to
2258 * PAGE_SIZE-1 bytes, which can contain arbitrary fs-dependent
2259 * information (or be NULL).
2260 *
2261 * Pre-0.97 versions of mount() didn't have a flags word.
2262 * When the flags word was introduced its top half was required
2263 * to have the magic value 0xC0ED, and this remained so until 2.4.0-test9.
2264 * Therefore, if this magic number is present, it carries no information
2265 * and must be discarded.
2266 */
Ram Paib58fed82005-11-07 17:16:09 -05002267long do_mount(char *dev_name, char *dir_name, char *type_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 unsigned long flags, void *data_page)
2269{
Al Viro2d92ab32008-08-02 00:51:11 -04002270 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 int retval = 0;
2272 int mnt_flags = 0;
2273
2274 /* Discard magic */
2275 if ((flags & MS_MGC_MSK) == MS_MGC_VAL)
2276 flags &= ~MS_MGC_MSK;
2277
2278 /* Basic sanity checks */
2279
2280 if (!dir_name || !*dir_name || !memchr(dir_name, 0, PAGE_SIZE))
2281 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
2283 if (data_page)
2284 ((char *)data_page)[PAGE_SIZE - 1] = 0;
2285
Tetsuo Handaa27ab9f22009-10-04 21:49:49 +09002286 /* ... and get the mountpoint */
2287 retval = kern_path(dir_name, LOOKUP_FOLLOW, &path);
2288 if (retval)
2289 return retval;
2290
2291 retval = security_sb_mount(dev_name, &path,
2292 type_page, flags, data_page);
2293 if (retval)
2294 goto dput_out;
2295
Andi Kleen613cbe32009-04-19 18:40:43 +02002296 /* Default to relatime unless overriden */
2297 if (!(flags & MS_NOATIME))
2298 mnt_flags |= MNT_RELATIME;
Matthew Garrett0a1c01c2009-03-26 17:53:14 +00002299
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 /* Separate the per-mountpoint flags */
2301 if (flags & MS_NOSUID)
2302 mnt_flags |= MNT_NOSUID;
2303 if (flags & MS_NODEV)
2304 mnt_flags |= MNT_NODEV;
2305 if (flags & MS_NOEXEC)
2306 mnt_flags |= MNT_NOEXEC;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08002307 if (flags & MS_NOATIME)
2308 mnt_flags |= MNT_NOATIME;
2309 if (flags & MS_NODIRATIME)
2310 mnt_flags |= MNT_NODIRATIME;
Matthew Garrettd0adde52009-03-26 17:49:56 +00002311 if (flags & MS_STRICTATIME)
2312 mnt_flags &= ~(MNT_RELATIME | MNT_NOATIME);
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08002313 if (flags & MS_RDONLY)
2314 mnt_flags |= MNT_READONLY;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08002315
Al Viro7a4dec52010-08-09 12:05:43 -04002316 flags &= ~(MS_NOSUID | MS_NOEXEC | MS_NODEV | MS_ACTIVE | MS_BORN |
Matthew Garrettd0adde52009-03-26 17:49:56 +00002317 MS_NOATIME | MS_NODIRATIME | MS_RELATIME| MS_KERNMOUNT |
2318 MS_STRICTATIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 if (flags & MS_REMOUNT)
Al Viro2d92ab32008-08-02 00:51:11 -04002321 retval = do_remount(&path, flags & ~MS_REMOUNT, mnt_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 data_page);
2323 else if (flags & MS_BIND)
Al Viro2d92ab32008-08-02 00:51:11 -04002324 retval = do_loopback(&path, dev_name, flags & MS_REC);
Ram Pai9676f0c2005-11-07 17:21:20 -05002325 else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
Al Viro2d92ab32008-08-02 00:51:11 -04002326 retval = do_change_type(&path, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 else if (flags & MS_MOVE)
Al Viro2d92ab32008-08-02 00:51:11 -04002328 retval = do_move_mount(&path, dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 else
Al Viro2d92ab32008-08-02 00:51:11 -04002330 retval = do_new_mount(&path, type_page, flags, mnt_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 dev_name, data_page);
2332dput_out:
Al Viro2d92ab32008-08-02 00:51:11 -04002333 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 return retval;
2335}
2336
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002337static struct mnt_namespace *alloc_mnt_ns(void)
2338{
2339 struct mnt_namespace *new_ns;
2340
2341 new_ns = kmalloc(sizeof(struct mnt_namespace), GFP_KERNEL);
2342 if (!new_ns)
2343 return ERR_PTR(-ENOMEM);
2344 atomic_set(&new_ns->count, 1);
2345 new_ns->root = NULL;
2346 INIT_LIST_HEAD(&new_ns->list);
2347 init_waitqueue_head(&new_ns->poll);
2348 new_ns->event = 0;
2349 return new_ns;
2350}
2351
Al Virof03c6592011-01-14 22:30:21 -05002352void mnt_make_longterm(struct vfsmount *mnt)
2353{
Al Viro7e3d0eb02011-01-16 16:32:11 -05002354 __mnt_make_longterm(mnt);
Al Virof03c6592011-01-14 22:30:21 -05002355}
2356
2357void mnt_make_shortterm(struct vfsmount *mnt)
2358{
Al Viro7e3d0eb02011-01-16 16:32:11 -05002359#ifdef CONFIG_SMP
Al Virof03c6592011-01-14 22:30:21 -05002360 if (atomic_add_unless(&mnt->mnt_longterm, -1, 1))
2361 return;
2362 br_write_lock(vfsmount_lock);
2363 atomic_dec(&mnt->mnt_longterm);
2364 br_write_unlock(vfsmount_lock);
Al Viro7e3d0eb02011-01-16 16:32:11 -05002365#endif
Al Virof03c6592011-01-14 22:30:21 -05002366}
2367
JANAK DESAI741a2952006-02-07 12:59:00 -08002368/*
2369 * Allocate a new namespace structure and populate it with contents
2370 * copied from the namespace of the passed in task structure.
2371 */
Badari Pulavartye3222c42007-05-08 00:25:21 -07002372static struct mnt_namespace *dup_mnt_ns(struct mnt_namespace *mnt_ns,
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002373 struct fs_struct *fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002375 struct mnt_namespace *new_ns;
Al Viro7f2da1e2008-05-10 20:44:54 -04002376 struct vfsmount *rootmnt = NULL, *pwdmnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 struct vfsmount *p, *q;
2378
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002379 new_ns = alloc_mnt_ns();
2380 if (IS_ERR(new_ns))
2381 return new_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
Ram Pai390c6842005-11-07 17:17:51 -05002383 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 /* First pass: copy the tree topology */
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002385 new_ns->root = copy_tree(mnt_ns->root, mnt_ns->root->mnt_root,
Ram Pai9676f0c2005-11-07 17:21:20 -05002386 CL_COPY_ALL | CL_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 if (!new_ns->root) {
Ram Pai390c6842005-11-07 17:17:51 -05002388 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 kfree(new_ns);
Julia Lawall5cc4a032008-12-01 14:34:51 -08002390 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 }
Nick Piggin99b7db72010-08-18 04:37:39 +10002392 br_write_lock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 list_add_tail(&new_ns->list, &new_ns->root->mnt_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10002394 br_write_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
2396 /*
2397 * Second pass: switch the tsk->fs->* elements and mark new vfsmounts
2398 * as belonging to new namespace. We have already acquired a private
2399 * fs_struct, so tsk->fs->lock is not needed.
2400 */
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002401 p = mnt_ns->root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 q = new_ns->root;
2403 while (p) {
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002404 q->mnt_ns = new_ns;
Al Viro7e3d0eb02011-01-16 16:32:11 -05002405 __mnt_make_longterm(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 if (fs) {
Jan Blunck6ac08c32008-02-14 19:34:38 -08002407 if (p == fs->root.mnt) {
Al Virof03c6592011-01-14 22:30:21 -05002408 fs->root.mnt = mntget(q);
Al Viro7e3d0eb02011-01-16 16:32:11 -05002409 __mnt_make_longterm(q);
Al Virof03c6592011-01-14 22:30:21 -05002410 mnt_make_shortterm(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 rootmnt = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 }
Jan Blunck6ac08c32008-02-14 19:34:38 -08002413 if (p == fs->pwd.mnt) {
Al Virof03c6592011-01-14 22:30:21 -05002414 fs->pwd.mnt = mntget(q);
Al Viro7e3d0eb02011-01-16 16:32:11 -05002415 __mnt_make_longterm(q);
Al Virof03c6592011-01-14 22:30:21 -05002416 mnt_make_shortterm(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 pwdmnt = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 }
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002420 p = next_mnt(p, mnt_ns->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 q = next_mnt(q, new_ns->root);
2422 }
Ram Pai390c6842005-11-07 17:17:51 -05002423 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 if (rootmnt)
Al Virof03c6592011-01-14 22:30:21 -05002426 mntput(rootmnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 if (pwdmnt)
Al Virof03c6592011-01-14 22:30:21 -05002428 mntput(pwdmnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
JANAK DESAI741a2952006-02-07 12:59:00 -08002430 return new_ns;
2431}
2432
Eric W. Biederman213dd262007-07-15 23:41:15 -07002433struct mnt_namespace *copy_mnt_ns(unsigned long flags, struct mnt_namespace *ns,
Badari Pulavartye3222c42007-05-08 00:25:21 -07002434 struct fs_struct *new_fs)
JANAK DESAI741a2952006-02-07 12:59:00 -08002435{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002436 struct mnt_namespace *new_ns;
JANAK DESAI741a2952006-02-07 12:59:00 -08002437
Badari Pulavartye3222c42007-05-08 00:25:21 -07002438 BUG_ON(!ns);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002439 get_mnt_ns(ns);
JANAK DESAI741a2952006-02-07 12:59:00 -08002440
2441 if (!(flags & CLONE_NEWNS))
Badari Pulavartye3222c42007-05-08 00:25:21 -07002442 return ns;
JANAK DESAI741a2952006-02-07 12:59:00 -08002443
Badari Pulavartye3222c42007-05-08 00:25:21 -07002444 new_ns = dup_mnt_ns(ns, new_fs);
JANAK DESAI741a2952006-02-07 12:59:00 -08002445
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002446 put_mnt_ns(ns);
Badari Pulavartye3222c42007-05-08 00:25:21 -07002447 return new_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448}
2449
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002450/**
2451 * create_mnt_ns - creates a private namespace and adds a root filesystem
2452 * @mnt: pointer to the new root filesystem mountpoint
2453 */
Al Viro6c449c82011-11-16 22:01:36 -05002454static struct mnt_namespace *create_mnt_ns(struct vfsmount *mnt)
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002455{
2456 struct mnt_namespace *new_ns;
2457
2458 new_ns = alloc_mnt_ns();
2459 if (!IS_ERR(new_ns)) {
2460 mnt->mnt_ns = new_ns;
Al Viro7e3d0eb02011-01-16 16:32:11 -05002461 __mnt_make_longterm(mnt);
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002462 new_ns->root = mnt;
2463 list_add(&new_ns->list, &new_ns->root->mnt_list);
Al Viroc1334492011-11-16 16:12:14 -05002464 } else {
2465 mntput(mnt);
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002466 }
2467 return new_ns;
2468}
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002469
Al Viroea441d12011-11-16 21:43:59 -05002470struct dentry *mount_subtree(struct vfsmount *mnt, const char *name)
2471{
2472 struct mnt_namespace *ns;
Al Virod31da0f2011-11-22 12:31:21 -05002473 struct super_block *s;
Al Viroea441d12011-11-16 21:43:59 -05002474 struct path path;
2475 int err;
2476
2477 ns = create_mnt_ns(mnt);
2478 if (IS_ERR(ns))
2479 return ERR_CAST(ns);
2480
2481 err = vfs_path_lookup(mnt->mnt_root, mnt,
2482 name, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &path);
2483
2484 put_mnt_ns(ns);
2485
2486 if (err)
2487 return ERR_PTR(err);
2488
2489 /* trade a vfsmount reference for active sb one */
Al Virod31da0f2011-11-22 12:31:21 -05002490 s = path.mnt->mnt_sb;
2491 atomic_inc(&s->s_active);
Al Viroea441d12011-11-16 21:43:59 -05002492 mntput(path.mnt);
2493 /* lock the sucker */
Al Virod31da0f2011-11-22 12:31:21 -05002494 down_write(&s->s_umount);
Al Viroea441d12011-11-16 21:43:59 -05002495 /* ... and return the root of (sub)tree on it */
2496 return path.dentry;
2497}
2498EXPORT_SYMBOL(mount_subtree);
2499
Heiko Carstensbdc480e2009-01-14 14:14:12 +01002500SYSCALL_DEFINE5(mount, char __user *, dev_name, char __user *, dir_name,
2501 char __user *, type, unsigned long, flags, void __user *, data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502{
Vegard Nossumeca6f532009-09-18 13:05:45 -07002503 int ret;
2504 char *kernel_type;
2505 char *kernel_dir;
2506 char *kernel_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 unsigned long data_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
Vegard Nossumeca6f532009-09-18 13:05:45 -07002509 ret = copy_mount_string(type, &kernel_type);
2510 if (ret < 0)
2511 goto out_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
Vegard Nossumeca6f532009-09-18 13:05:45 -07002513 kernel_dir = getname(dir_name);
2514 if (IS_ERR(kernel_dir)) {
2515 ret = PTR_ERR(kernel_dir);
2516 goto out_dir;
2517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
Vegard Nossumeca6f532009-09-18 13:05:45 -07002519 ret = copy_mount_string(dev_name, &kernel_dev);
2520 if (ret < 0)
2521 goto out_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
Vegard Nossumeca6f532009-09-18 13:05:45 -07002523 ret = copy_mount_options(data, &data_page);
2524 if (ret < 0)
2525 goto out_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
Vegard Nossumeca6f532009-09-18 13:05:45 -07002527 ret = do_mount(kernel_dev, kernel_dir, kernel_type, flags,
2528 (void *) data_page);
2529
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 free_page(data_page);
Vegard Nossumeca6f532009-09-18 13:05:45 -07002531out_data:
2532 kfree(kernel_dev);
2533out_dev:
2534 putname(kernel_dir);
2535out_dir:
2536 kfree(kernel_type);
2537out_type:
2538 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539}
2540
2541/*
Al Viroafac7cb2011-11-23 19:34:49 -05002542 * Return true if path is reachable from root
2543 *
2544 * namespace_sem or vfsmount_lock is held
2545 */
2546bool is_path_reachable(struct vfsmount *mnt, struct dentry *dentry,
2547 const struct path *root)
2548{
2549 while (mnt != root->mnt && mnt_has_parent(mnt)) {
2550 dentry = mnt->mnt_mountpoint;
2551 mnt = mnt->mnt_parent;
2552 }
2553 return mnt == root->mnt && is_subdir(dentry, root->dentry);
2554}
2555
2556int path_is_under(struct path *path1, struct path *path2)
2557{
2558 int res;
2559 br_read_lock(vfsmount_lock);
2560 res = is_path_reachable(path1->mnt, path1->dentry, path2);
2561 br_read_unlock(vfsmount_lock);
2562 return res;
2563}
2564EXPORT_SYMBOL(path_is_under);
2565
2566/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 * pivot_root Semantics:
2568 * Moves the root file system of the current process to the directory put_old,
2569 * makes new_root as the new root file system of the current process, and sets
2570 * root/cwd of all processes which had them on the current root to new_root.
2571 *
2572 * Restrictions:
2573 * The new_root and put_old must be directories, and must not be on the
2574 * same file system as the current process root. The put_old must be
2575 * underneath new_root, i.e. adding a non-zero number of /.. to the string
2576 * pointed to by put_old must yield the same directory as new_root. No other
2577 * file system may be mounted on put_old. After all, new_root is a mountpoint.
2578 *
Neil Brown4a0d11f2006-01-08 01:03:18 -08002579 * Also, the current root cannot be on the 'rootfs' (initial ramfs) filesystem.
2580 * See Documentation/filesystems/ramfs-rootfs-initramfs.txt for alternatives
2581 * in this situation.
2582 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 * Notes:
2584 * - we don't move root/cwd if they are not at the root (reason: if something
2585 * cared enough to change them, it's probably wrong to force them elsewhere)
2586 * - it's okay to pick a root that isn't the root of a file system, e.g.
2587 * /nfs/my_root where /nfs is the mount point. It must be a mountpoint,
2588 * though, so you may need to say mount --bind /nfs/my_root /nfs/my_root
2589 * first.
2590 */
Heiko Carstens3480b252009-01-14 14:14:16 +01002591SYSCALL_DEFINE2(pivot_root, const char __user *, new_root,
2592 const char __user *, put_old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593{
Al Viro2d8f3032008-07-22 09:59:21 -04002594 struct path new, old, parent_path, root_parent, root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 int error;
2596
2597 if (!capable(CAP_SYS_ADMIN))
2598 return -EPERM;
2599
Al Viro2d8f3032008-07-22 09:59:21 -04002600 error = user_path_dir(new_root, &new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 if (error)
2602 goto out0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
Al Viro2d8f3032008-07-22 09:59:21 -04002604 error = user_path_dir(put_old, &old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 if (error)
2606 goto out1;
2607
Al Viro2d8f3032008-07-22 09:59:21 -04002608 error = security_sb_pivotroot(&old, &new);
Al Virob12cea92011-03-18 08:55:38 -04002609 if (error)
2610 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611
Miklos Szeredif7ad3c62010-08-10 11:41:36 +02002612 get_fs_root(current->fs, &root);
Al Virob12cea92011-03-18 08:55:38 -04002613 error = lock_mount(&old);
2614 if (error)
2615 goto out3;
2616
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 error = -EINVAL;
Al Viro2d8f3032008-07-22 09:59:21 -04002618 if (IS_MNT_SHARED(old.mnt) ||
2619 IS_MNT_SHARED(new.mnt->mnt_parent) ||
Al Viro8c3ee422008-03-22 18:00:39 -04002620 IS_MNT_SHARED(root.mnt->mnt_parent))
Al Virob12cea92011-03-18 08:55:38 -04002621 goto out4;
Al Viro27cb1572011-03-18 08:29:36 -04002622 if (!check_mnt(root.mnt) || !check_mnt(new.mnt))
Al Virob12cea92011-03-18 08:55:38 -04002623 goto out4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 error = -ENOENT;
Alexey Dobriyanf3da3922009-05-04 03:32:03 +04002625 if (d_unlinked(new.dentry))
Al Virob12cea92011-03-18 08:55:38 -04002626 goto out4;
Alexey Dobriyanf3da3922009-05-04 03:32:03 +04002627 if (d_unlinked(old.dentry))
Al Virob12cea92011-03-18 08:55:38 -04002628 goto out4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 error = -EBUSY;
Al Viro2d8f3032008-07-22 09:59:21 -04002630 if (new.mnt == root.mnt ||
2631 old.mnt == root.mnt)
Al Virob12cea92011-03-18 08:55:38 -04002632 goto out4; /* loop, on the same file system */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 error = -EINVAL;
Al Viro8c3ee422008-03-22 18:00:39 -04002634 if (root.mnt->mnt_root != root.dentry)
Al Virob12cea92011-03-18 08:55:38 -04002635 goto out4; /* not a mountpoint */
Al Virob2dba1a2011-11-23 19:26:23 -05002636 if (!mnt_has_parent(root.mnt))
Al Virob12cea92011-03-18 08:55:38 -04002637 goto out4; /* not attached */
Al Viro2d8f3032008-07-22 09:59:21 -04002638 if (new.mnt->mnt_root != new.dentry)
Al Virob12cea92011-03-18 08:55:38 -04002639 goto out4; /* not a mountpoint */
Al Virob2dba1a2011-11-23 19:26:23 -05002640 if (!mnt_has_parent(new.mnt))
Al Virob12cea92011-03-18 08:55:38 -04002641 goto out4; /* not attached */
Jan Blunck4ac91372008-02-14 19:34:32 -08002642 /* make sure we can reach put_old from new_root */
Al Viroafac7cb2011-11-23 19:34:49 -05002643 if (!is_path_reachable(old.mnt, old.dentry, &new))
Al Virob12cea92011-03-18 08:55:38 -04002644 goto out4;
Al Viro27cb1572011-03-18 08:29:36 -04002645 br_write_lock(vfsmount_lock);
Al Viro2d8f3032008-07-22 09:59:21 -04002646 detach_mnt(new.mnt, &parent_path);
Al Viro8c3ee422008-03-22 18:00:39 -04002647 detach_mnt(root.mnt, &root_parent);
Jan Blunck4ac91372008-02-14 19:34:32 -08002648 /* mount old root on put_old */
Al Viro2d8f3032008-07-22 09:59:21 -04002649 attach_mnt(root.mnt, &old);
Jan Blunck4ac91372008-02-14 19:34:32 -08002650 /* mount new_root on / */
Al Viro2d8f3032008-07-22 09:59:21 -04002651 attach_mnt(new.mnt, &root_parent);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002652 touch_mnt_namespace(current->nsproxy->mnt_ns);
Nick Piggin99b7db72010-08-18 04:37:39 +10002653 br_write_unlock(vfsmount_lock);
Al Viro2d8f3032008-07-22 09:59:21 -04002654 chroot_fs_refs(&root, &new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 error = 0;
Al Virob12cea92011-03-18 08:55:38 -04002656out4:
2657 unlock_mount(&old);
2658 if (!error) {
2659 path_put(&root_parent);
2660 path_put(&parent_path);
2661 }
2662out3:
Al Viro8c3ee422008-03-22 18:00:39 -04002663 path_put(&root);
Al Virob12cea92011-03-18 08:55:38 -04002664out2:
Al Viro2d8f3032008-07-22 09:59:21 -04002665 path_put(&old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666out1:
Al Viro2d8f3032008-07-22 09:59:21 -04002667 path_put(&new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668out0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670}
2671
2672static void __init init_mount_tree(void)
2673{
2674 struct vfsmount *mnt;
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002675 struct mnt_namespace *ns;
Jan Blunckac748a02008-02-14 19:34:39 -08002676 struct path root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
2678 mnt = do_kern_mount("rootfs", 0, "rootfs", NULL);
2679 if (IS_ERR(mnt))
2680 panic("Can't create rootfs");
Nick Pigginb3e19d92011-01-07 17:50:11 +11002681
Trond Myklebust3b22edc2009-06-23 17:29:49 -04002682 ns = create_mnt_ns(mnt);
2683 if (IS_ERR(ns))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 panic("Can't allocate initial namespace");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002686 init_task.nsproxy->mnt_ns = ns;
2687 get_mnt_ns(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688
Jan Blunckac748a02008-02-14 19:34:39 -08002689 root.mnt = ns->root;
2690 root.dentry = ns->root->mnt_root;
2691
2692 set_fs_pwd(current->fs, &root);
2693 set_fs_root(current->fs, &root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694}
2695
Denis Cheng74bf17c2007-10-16 23:26:30 -07002696void __init mnt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697{
Eric Dumazet13f14b42008-02-06 01:37:57 -08002698 unsigned u;
Randy Dunlap15a67dd2006-09-29 01:58:57 -07002699 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700
Ram Pai390c6842005-11-07 17:17:51 -05002701 init_rwsem(&namespace_sem);
2702
Al Viro7d6fec42011-11-23 12:14:10 -05002703 mnt_cache = kmem_cache_create("mnt_cache", sizeof(struct mount),
Paul Mundt20c2df82007-07-20 10:11:58 +09002704 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705
Ram Paib58fed82005-11-07 17:16:09 -05002706 mount_hashtable = (struct list_head *)__get_free_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707
2708 if (!mount_hashtable)
2709 panic("Failed to allocate mount hash table\n");
2710
Mandeep Singh Baines80cdc6d2011-03-22 16:33:54 -07002711 printk(KERN_INFO "Mount-cache hash table entries: %lu\n", HASH_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
Eric Dumazet13f14b42008-02-06 01:37:57 -08002713 for (u = 0; u < HASH_SIZE; u++)
2714 INIT_LIST_HEAD(&mount_hashtable[u]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715
Nick Piggin99b7db72010-08-18 04:37:39 +10002716 br_lock_init(vfsmount_lock);
2717
Randy Dunlap15a67dd2006-09-29 01:58:57 -07002718 err = sysfs_init();
2719 if (err)
2720 printk(KERN_WARNING "%s: sysfs_init error: %d\n",
Harvey Harrison8e24eea2008-04-30 00:55:09 -07002721 __func__, err);
Greg Kroah-Hartman00d26662007-10-29 14:17:23 -06002722 fs_kobj = kobject_create_and_add("fs", NULL);
2723 if (!fs_kobj)
Harvey Harrison8e24eea2008-04-30 00:55:09 -07002724 printk(KERN_WARNING "%s: kobj create error\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 init_rootfs();
2726 init_mount_tree();
2727}
2728
Trond Myklebust616511d2009-06-22 15:09:13 -04002729void put_mnt_ns(struct mnt_namespace *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730{
Ram Pai70fbcdf2005-11-07 17:17:04 -05002731 LIST_HEAD(umount_list);
Trond Myklebust616511d2009-06-22 15:09:13 -04002732
Al Virod498b252010-02-05 02:21:06 -05002733 if (!atomic_dec_and_test(&ns->count))
Trond Myklebust616511d2009-06-22 15:09:13 -04002734 return;
Ram Pai390c6842005-11-07 17:17:51 -05002735 down_write(&namespace_sem);
Nick Piggin99b7db72010-08-18 04:37:39 +10002736 br_write_lock(vfsmount_lock);
Al Virod498b252010-02-05 02:21:06 -05002737 umount_tree(ns->root, 0, &umount_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10002738 br_write_unlock(vfsmount_lock);
Ram Pai390c6842005-11-07 17:17:51 -05002739 up_write(&namespace_sem);
Ram Pai70fbcdf2005-11-07 17:17:04 -05002740 release_mounts(&umount_list);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002741 kfree(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742}
Al Viro9d412a42011-03-17 22:08:28 -04002743
2744struct vfsmount *kern_mount_data(struct file_system_type *type, void *data)
2745{
Tim Chen423e0ab2011-07-19 09:32:38 -07002746 struct vfsmount *mnt;
2747 mnt = vfs_kern_mount(type, MS_KERNMOUNT, type->name, data);
2748 if (!IS_ERR(mnt)) {
2749 /*
2750 * it is a longterm mount, don't release mnt until
2751 * we unmount before file sys is unregistered
2752 */
2753 mnt_make_longterm(mnt);
2754 }
2755 return mnt;
Al Viro9d412a42011-03-17 22:08:28 -04002756}
2757EXPORT_SYMBOL_GPL(kern_mount_data);
Tim Chen423e0ab2011-07-19 09:32:38 -07002758
2759void kern_unmount(struct vfsmount *mnt)
2760{
2761 /* release long term mount so mount point can be released */
2762 if (!IS_ERR_OR_NULL(mnt)) {
2763 mnt_make_shortterm(mnt);
2764 mntput(mnt);
2765 }
2766}
2767EXPORT_SYMBOL(kern_unmount);
Al Viro02125a82011-12-05 08:43:34 -05002768
2769bool our_mnt(struct vfsmount *mnt)
2770{
2771 return check_mnt(mnt);
2772}