blob: 4cdb7f6986139c7a8c69b1c4357b1860710740e2 [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 */
Al Virob105e272011-11-24 20:38:33 -050081static int mnt_alloc_id(struct mount *mnt)
Miklos Szeredi73cd49e2008-03-26 22:11:34 +010082{
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 Virob105e272011-11-24 20:38:33 -050088 res = ida_get_new_above(&mnt_id_ida, mnt_id_start, &mnt->mnt.mnt_id);
Al Virof21f6222009-06-24 03:12:00 -040089 if (!res)
Al Virob105e272011-11-24 20:38:33 -050090 mnt_id_start = mnt->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
Al Virob105e272011-11-24 20:38:33 -050098static void mnt_free_id(struct mount *mnt)
Miklos Szeredi73cd49e2008-03-26 22:11:34 +010099{
Al Virob105e272011-11-24 20:38:33 -0500100 int id = mnt->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 */
Al Viro4b8b21f2011-11-24 19:54:23 -0500113static int mnt_alloc_group_id(struct mount *mnt)
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100114{
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,
Al Viro4b8b21f2011-11-24 19:54:23 -0500122 &mnt->mnt.mnt_group_id);
Al Virof21f6222009-06-24 03:12:00 -0400123 if (!res)
Al Viro4b8b21f2011-11-24 19:54:23 -0500124 mnt_group_start = mnt->mnt.mnt_group_id + 1;
Al Virof21f6222009-06-24 03:12:00 -0400125
126 return res;
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100127}
128
129/*
130 * Release a peer group ID
131 */
Al Viro4b8b21f2011-11-24 19:54:23 -0500132void mnt_release_group_id(struct mount *mnt)
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100133{
Al Viro4b8b21f2011-11-24 19:54:23 -0500134 int id = mnt->mnt.mnt_group_id;
Al Virof21f6222009-06-24 03:12:00 -0400135 ida_remove(&mnt_group_ida, id);
136 if (mnt_group_start > id)
137 mnt_group_start = id;
Al Viro4b8b21f2011-11-24 19:54:23 -0500138 mnt->mnt.mnt_group_id = 0;
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100139}
140
Nick Pigginb3e19d92011-01-07 17:50:11 +1100141/*
142 * vfsmount lock must be held for read
143 */
Al Viro83adc752011-11-24 22:37:54 -0500144static inline void mnt_add_count(struct mount *mnt, int n)
Nick Pigginb3e19d92011-01-07 17:50:11 +1100145{
146#ifdef CONFIG_SMP
Al Viro68e8a9f2011-11-24 22:53:09 -0500147 this_cpu_add(mnt->mnt_pcp->mnt_count, n);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100148#else
149 preempt_disable();
Al Viro68e8a9f2011-11-24 22:53:09 -0500150 mnt->mnt_count += n;
Nick Pigginb3e19d92011-01-07 17:50:11 +1100151 preempt_enable();
152#endif
153}
154
Nick Pigginb3e19d92011-01-07 17:50:11 +1100155/*
156 * vfsmount lock must be held for write
157 */
Al Viro83adc752011-11-24 22:37:54 -0500158unsigned int mnt_get_count(struct mount *mnt)
Nick Pigginb3e19d92011-01-07 17:50:11 +1100159{
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) {
Al Viro68e8a9f2011-11-24 22:53:09 -0500165 count += per_cpu_ptr(mnt->mnt_pcp, cpu)->mnt_count;
Nick Pigginb3e19d92011-01-07 17:50:11 +1100166 }
167
168 return count;
169#else
Al Viro68e8a9f2011-11-24 22:53:09 -0500170 return mnt->mnt_count;
Nick Pigginb3e19d92011-01-07 17:50:11 +1100171#endif
172}
173
Al Virob105e272011-11-24 20:38:33 -0500174static struct mount *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
Al Virob105e272011-11-24 20:38:33 -0500181 err = mnt_alloc_id(p);
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
Al Viro68e8a9f2011-11-24 22:53:09 -0500192 p->mnt_pcp = alloc_percpu(struct mnt_pcp);
193 if (!p->mnt_pcp)
Nick Pigginb3e19d92011-01-07 17:50:11 +1100194 goto out_free_devname;
195
Al Viro68e8a9f2011-11-24 22:53:09 -0500196 this_cpu_add(p->mnt_pcp->mnt_count, 1);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100197#else
Al Viro68e8a9f2011-11-24 22:53:09 -0500198 p->mnt_count = 1;
199 p->mnt_writers = 0;
Nick Pigginb3e19d92011-01-07 17:50:11 +1100200#endif
201
Al Viro1b8e5562011-11-24 21:01:32 -0500202 INIT_LIST_HEAD(&p->mnt_hash);
Al Viro6b41d532011-11-24 23:24:33 -0500203 INIT_LIST_HEAD(&p->mnt_child);
204 INIT_LIST_HEAD(&p->mnt_mounts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 INIT_LIST_HEAD(&mnt->mnt_list);
Al Viro6776db3d2011-11-25 00:22:05 -0500206 INIT_LIST_HEAD(&p->mnt_expire);
207 INIT_LIST_HEAD(&p->mnt_share);
208 INIT_LIST_HEAD(&p->mnt_slave_list);
209 INIT_LIST_HEAD(&p->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 Virob105e272011-11-24 20:38:33 -0500214 return p;
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 Virob105e272011-11-24 20:38:33 -0500221 mnt_free_id(p);
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
Al Viro83adc752011-11-24 22:37:54 -0500256static inline void mnt_inc_writers(struct mount *mnt)
Dave Hansen3d733632008-02-15 14:37:59 -0800257{
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000258#ifdef CONFIG_SMP
Al Viro68e8a9f2011-11-24 22:53:09 -0500259 this_cpu_inc(mnt->mnt_pcp->mnt_writers);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000260#else
Al Viro68e8a9f2011-11-24 22:53:09 -0500261 mnt->mnt_writers++;
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000262#endif
Dave Hansen3d733632008-02-15 14:37:59 -0800263}
Dave Hansen3d733632008-02-15 14:37:59 -0800264
Al Viro83adc752011-11-24 22:37:54 -0500265static inline void mnt_dec_writers(struct mount *mnt)
Dave Hansen3d733632008-02-15 14:37:59 -0800266{
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000267#ifdef CONFIG_SMP
Al Viro68e8a9f2011-11-24 22:53:09 -0500268 this_cpu_dec(mnt->mnt_pcp->mnt_writers);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000269#else
Al Viro68e8a9f2011-11-24 22:53:09 -0500270 mnt->mnt_writers--;
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000271#endif
272}
273
Al Viro83adc752011-11-24 22:37:54 -0500274static unsigned int mnt_get_writers(struct mount *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) {
Al Viro68e8a9f2011-11-24 22:53:09 -0500281 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
Al Viro83adc752011-11-24 22:37:54 -0500300 * @m: the mount on which to take a write
Dave Hansen83660252008-02-15 14:37:30 -0800301 *
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 */
Al Viro83adc752011-11-24 22:37:54 -0500308int mnt_want_write(struct vfsmount *m)
Dave Hansen83660252008-02-15 14:37:30 -0800309{
Al Viro83adc752011-11-24 22:37:54 -0500310 struct mount *mnt = real_mount(m);
Dave Hansen3d733632008-02-15 14:37:59 -0800311 int ret = 0;
Dave Hansen3d733632008-02-15 14:37:59 -0800312
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000313 preempt_disable();
Nick Pigginc6653a82011-01-07 17:50:10 +1100314 mnt_inc_writers(mnt);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000315 /*
Nick Pigginc6653a82011-01-07 17:50:10 +1100316 * The store to mnt_inc_writers must be visible before we pass
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000317 * MNT_WRITE_HOLD loop below, so that the slowpath can see our
318 * incremented count after it has set MNT_WRITE_HOLD.
319 */
320 smp_mb();
Al Viro83adc752011-11-24 22:37:54 -0500321 while (mnt->mnt.mnt_flags & MNT_WRITE_HOLD)
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000322 cpu_relax();
323 /*
324 * After the slowpath clears MNT_WRITE_HOLD, mnt_is_readonly will
325 * be set to match its requirements. So we must not load that until
326 * MNT_WRITE_HOLD is cleared.
327 */
328 smp_rmb();
Al Viro83adc752011-11-24 22:37:54 -0500329 if (__mnt_is_readonly(m)) {
Nick Pigginc6653a82011-01-07 17:50:10 +1100330 mnt_dec_writers(mnt);
Dave Hansen3d733632008-02-15 14:37:59 -0800331 ret = -EROFS;
332 goto out;
333 }
Dave Hansen3d733632008-02-15 14:37:59 -0800334out:
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000335 preempt_enable();
Dave Hansen3d733632008-02-15 14:37:59 -0800336 return ret;
Dave Hansen83660252008-02-15 14:37:30 -0800337}
338EXPORT_SYMBOL_GPL(mnt_want_write);
339
340/**
npiggin@suse.de96029c42009-04-26 20:25:55 +1000341 * mnt_clone_write - get write access to a mount
342 * @mnt: the mount on which to take a write
343 *
344 * This is effectively like mnt_want_write, except
345 * it must only be used to take an extra write reference
346 * on a mountpoint that we already know has a write reference
347 * on it. This allows some optimisation.
348 *
349 * After finished, mnt_drop_write must be called as usual to
350 * drop the reference.
351 */
352int mnt_clone_write(struct vfsmount *mnt)
353{
354 /* superblock may be r/o */
355 if (__mnt_is_readonly(mnt))
356 return -EROFS;
357 preempt_disable();
Al Viro83adc752011-11-24 22:37:54 -0500358 mnt_inc_writers(real_mount(mnt));
npiggin@suse.de96029c42009-04-26 20:25:55 +1000359 preempt_enable();
360 return 0;
361}
362EXPORT_SYMBOL_GPL(mnt_clone_write);
363
364/**
365 * mnt_want_write_file - get write access to a file's mount
366 * @file: the file who's mount on which to take a write
367 *
368 * This is like mnt_want_write, but it takes a file and can
369 * do some optimisations if the file is open for write already
370 */
371int mnt_want_write_file(struct file *file)
372{
OGAWA Hirofumi2d8dd382009-08-06 15:07:39 -0700373 struct inode *inode = file->f_dentry->d_inode;
374 if (!(file->f_mode & FMODE_WRITE) || special_file(inode->i_mode))
npiggin@suse.de96029c42009-04-26 20:25:55 +1000375 return mnt_want_write(file->f_path.mnt);
376 else
377 return mnt_clone_write(file->f_path.mnt);
378}
379EXPORT_SYMBOL_GPL(mnt_want_write_file);
380
381/**
Dave Hansen83660252008-02-15 14:37:30 -0800382 * mnt_drop_write - give up write access to a mount
383 * @mnt: the mount on which to give up write access
384 *
385 * Tells the low-level filesystem that we are done
386 * performing writes to it. Must be matched with
387 * mnt_want_write() call above.
388 */
389void mnt_drop_write(struct vfsmount *mnt)
390{
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000391 preempt_disable();
Al Viro83adc752011-11-24 22:37:54 -0500392 mnt_dec_writers(real_mount(mnt));
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000393 preempt_enable();
Dave Hansen83660252008-02-15 14:37:30 -0800394}
395EXPORT_SYMBOL_GPL(mnt_drop_write);
396
Al Viro2a79f172011-12-09 08:06:57 -0500397void mnt_drop_write_file(struct file *file)
398{
399 mnt_drop_write(file->f_path.mnt);
400}
401EXPORT_SYMBOL(mnt_drop_write_file);
402
Al Viro83adc752011-11-24 22:37:54 -0500403static int mnt_make_readonly(struct mount *mnt)
Dave Hansen83660252008-02-15 14:37:30 -0800404{
Dave Hansen3d733632008-02-15 14:37:59 -0800405 int ret = 0;
406
Nick Piggin99b7db72010-08-18 04:37:39 +1000407 br_write_lock(vfsmount_lock);
Al Viro83adc752011-11-24 22:37:54 -0500408 mnt->mnt.mnt_flags |= MNT_WRITE_HOLD;
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000409 /*
410 * After storing MNT_WRITE_HOLD, we'll read the counters. This store
411 * should be visible before we do.
412 */
413 smp_mb();
414
415 /*
416 * With writers on hold, if this value is zero, then there are
417 * definitely no active writers (although held writers may subsequently
418 * increment the count, they'll have to wait, and decrement it after
419 * seeing MNT_READONLY).
420 *
421 * It is OK to have counter incremented on one CPU and decremented on
422 * another: the sum will add up correctly. The danger would be when we
423 * sum up each counter, if we read a counter before it is incremented,
424 * but then read another CPU's count which it has been subsequently
425 * decremented from -- we would see more decrements than we should.
426 * MNT_WRITE_HOLD protects against this scenario, because
427 * mnt_want_write first increments count, then smp_mb, then spins on
428 * MNT_WRITE_HOLD, so it can't be decremented by another CPU while
429 * we're counting up here.
430 */
Nick Pigginc6653a82011-01-07 17:50:10 +1100431 if (mnt_get_writers(mnt) > 0)
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000432 ret = -EBUSY;
433 else
Al Viro83adc752011-11-24 22:37:54 -0500434 mnt->mnt.mnt_flags |= MNT_READONLY;
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000435 /*
436 * MNT_READONLY must become visible before ~MNT_WRITE_HOLD, so writers
437 * that become unheld will see MNT_READONLY.
438 */
439 smp_wmb();
Al Viro83adc752011-11-24 22:37:54 -0500440 mnt->mnt.mnt_flags &= ~MNT_WRITE_HOLD;
Nick Piggin99b7db72010-08-18 04:37:39 +1000441 br_write_unlock(vfsmount_lock);
Dave Hansen3d733632008-02-15 14:37:59 -0800442 return ret;
Dave Hansen83660252008-02-15 14:37:30 -0800443}
Dave Hansen83660252008-02-15 14:37:30 -0800444
Al Viro83adc752011-11-24 22:37:54 -0500445static void __mnt_unmake_readonly(struct mount *mnt)
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800446{
Nick Piggin99b7db72010-08-18 04:37:39 +1000447 br_write_lock(vfsmount_lock);
Al Viro83adc752011-11-24 22:37:54 -0500448 mnt->mnt.mnt_flags &= ~MNT_READONLY;
Nick Piggin99b7db72010-08-18 04:37:39 +1000449 br_write_unlock(vfsmount_lock);
Dave Hansen2e4b7fc2008-02-15 14:38:00 -0800450}
451
Al Virob105e272011-11-24 20:38:33 -0500452static void free_vfsmnt(struct mount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Al Virob105e272011-11-24 20:38:33 -0500454 kfree(mnt->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
Al Viro68e8a9f2011-11-24 22:53:09 -0500457 free_percpu(mnt->mnt_pcp);
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000458#endif
Al Virob105e272011-11-24 20:38:33 -0500459 kmem_cache_free(mnt_cache, mnt);
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 */
Al Viroc7105362011-11-24 18:22:03 -0500467struct mount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry,
Ram Paia05964f2005-11-07 17:20:17 -0500468 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;
Al Viroc7105362011-11-24 18:22:03 -0500472 struct mount *p, *found = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
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;
Al Viro1b8e5562011-11-24 21:01:32 -0500479 p = list_entry(tmp, struct mount, mnt_hash);
Al Viroa73324d2011-11-24 22:25:07 -0500480 if (&p->mnt_parent->mnt == 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{
Al Viroc7105362011-11-24 18:22:03 -0500494 struct mount *child_mnt;
Nick Piggin99b7db72010-08-18 04:37:39 +1000495
496 br_read_lock(vfsmount_lock);
Al Viroc7105362011-11-24 18:22:03 -0500497 child_mnt = __lookup_mnt(path->mnt, path->dentry, 1);
498 if (child_mnt) {
499 mnt_add_count(child_mnt, 1);
500 br_read_unlock(vfsmount_lock);
501 return &child_mnt->mnt;
502 } else {
503 br_read_unlock(vfsmount_lock);
504 return NULL;
505 }
Ram Paia05964f2005-11-07 17:20:17 -0500506}
507
Al Viro143c8c92011-11-25 00:46:35 -0500508static inline int check_mnt(struct mount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800510 return mnt->mnt_ns == current->nsproxy->mnt_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511}
512
Nick Piggin99b7db72010-08-18 04:37:39 +1000513/*
514 * vfsmount lock must be held for write
515 */
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800516static void touch_mnt_namespace(struct mnt_namespace *ns)
Al Viro5addc5d2005-11-07 17:15:49 -0500517{
518 if (ns) {
519 ns->event = ++event;
520 wake_up_interruptible(&ns->poll);
521 }
522}
523
Nick Piggin99b7db72010-08-18 04:37:39 +1000524/*
525 * vfsmount lock must be held for write
526 */
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800527static void __touch_mnt_namespace(struct mnt_namespace *ns)
Al Viro5addc5d2005-11-07 17:15:49 -0500528{
529 if (ns && ns->event != event) {
530 ns->event = event;
531 wake_up_interruptible(&ns->poll);
532 }
533}
534
Nick Piggin99b7db72010-08-18 04:37:39 +1000535/*
Nick Piggin5f57cbc2011-01-07 17:49:54 +1100536 * Clear dentry's mounted state if it has no remaining mounts.
537 * vfsmount_lock must be held for write.
538 */
Al Viroaa0a4cf2011-11-24 19:31:36 -0500539static void dentry_reset_mounted(struct dentry *dentry)
Nick Piggin5f57cbc2011-01-07 17:49:54 +1100540{
541 unsigned u;
542
543 for (u = 0; u < HASH_SIZE; u++) {
Al Virod5e50f72011-11-24 20:58:57 -0500544 struct mount *p;
Nick Piggin5f57cbc2011-01-07 17:49:54 +1100545
Al Viro1b8e5562011-11-24 21:01:32 -0500546 list_for_each_entry(p, &mount_hashtable[u], mnt_hash) {
Al Viroa73324d2011-11-24 22:25:07 -0500547 if (p->mnt_mountpoint == dentry)
Nick Piggin5f57cbc2011-01-07 17:49:54 +1100548 return;
549 }
550 }
551 spin_lock(&dentry->d_lock);
552 dentry->d_flags &= ~DCACHE_MOUNTED;
553 spin_unlock(&dentry->d_lock);
554}
555
556/*
Nick Piggin99b7db72010-08-18 04:37:39 +1000557 * vfsmount lock must be held for write
558 */
Al Viro419148d2011-11-24 19:41:16 -0500559static void detach_mnt(struct mount *mnt, struct path *old_path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
Al Viroa73324d2011-11-24 22:25:07 -0500561 old_path->dentry = mnt->mnt_mountpoint;
Al Viro0714a532011-11-24 22:19:58 -0500562 old_path->mnt = &mnt->mnt_parent->mnt;
563 mnt->mnt_parent = mnt;
Al Viroa73324d2011-11-24 22:25:07 -0500564 mnt->mnt_mountpoint = mnt->mnt.mnt_root;
Al Viro6b41d532011-11-24 23:24:33 -0500565 list_del_init(&mnt->mnt_child);
Al Viro1b8e5562011-11-24 21:01:32 -0500566 list_del_init(&mnt->mnt_hash);
Al Viroaa0a4cf2011-11-24 19:31:36 -0500567 dentry_reset_mounted(old_path->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
Nick Piggin99b7db72010-08-18 04:37:39 +1000570/*
571 * vfsmount lock must be held for write
572 */
Al Viro14cf1fa2011-11-25 00:01:17 -0500573void mnt_set_mountpoint(struct mount *mnt, struct dentry *dentry,
Al Viro44d964d62011-11-24 21:28:22 -0500574 struct mount *child_mnt)
Ram Paib90fa9a2005-11-07 17:19:50 -0500575{
Al Viro14cf1fa2011-11-25 00:01:17 -0500576 child_mnt->mnt_parent = real_mount(mntget(&mnt->mnt));
Al Viroa73324d2011-11-24 22:25:07 -0500577 child_mnt->mnt_mountpoint = dget(dentry);
Nick Piggin5f57cbc2011-01-07 17:49:54 +1100578 spin_lock(&dentry->d_lock);
579 dentry->d_flags |= DCACHE_MOUNTED;
580 spin_unlock(&dentry->d_lock);
Ram Paib90fa9a2005-11-07 17:19:50 -0500581}
582
Nick Piggin99b7db72010-08-18 04:37:39 +1000583/*
584 * vfsmount lock must be held for write
585 */
Al Viro419148d2011-11-24 19:41:16 -0500586static void attach_mnt(struct mount *mnt, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Al Viro14cf1fa2011-11-25 00:01:17 -0500588 mnt_set_mountpoint(real_mount(path->mnt), path->dentry, mnt);
Al Viro1b8e5562011-11-24 21:01:32 -0500589 list_add_tail(&mnt->mnt_hash, mount_hashtable +
Al Viro1a390682008-03-21 20:48:19 -0400590 hash(path->mnt, path->dentry));
Al Viro6b41d532011-11-24 23:24:33 -0500591 list_add_tail(&mnt->mnt_child, &real_mount(path->mnt)->mnt_mounts);
Ram Paib90fa9a2005-11-07 17:19:50 -0500592}
593
Al Viro83adc752011-11-24 22:37:54 -0500594static inline void __mnt_make_longterm(struct mount *mnt)
Al Viro7e3d0eb02011-01-16 16:32:11 -0500595{
596#ifdef CONFIG_SMP
Al Viro68e8a9f2011-11-24 22:53:09 -0500597 atomic_inc(&mnt->mnt_longterm);
Al Viro7e3d0eb02011-01-16 16:32:11 -0500598#endif
599}
600
601/* needs vfsmount lock for write */
Al Viro83adc752011-11-24 22:37:54 -0500602static inline void __mnt_make_shortterm(struct mount *mnt)
Al Viro7e3d0eb02011-01-16 16:32:11 -0500603{
604#ifdef CONFIG_SMP
Al Viro68e8a9f2011-11-24 22:53:09 -0500605 atomic_dec(&mnt->mnt_longterm);
Al Viro7e3d0eb02011-01-16 16:32:11 -0500606#endif
607}
608
Ram Paib90fa9a2005-11-07 17:19:50 -0500609/*
Nick Piggin99b7db72010-08-18 04:37:39 +1000610 * vfsmount lock must be held for write
Ram Paib90fa9a2005-11-07 17:19:50 -0500611 */
Al Viro4b2619a2011-11-24 19:47:15 -0500612static void commit_tree(struct mount *mnt)
Ram Paib90fa9a2005-11-07 17:19:50 -0500613{
Al Viro0714a532011-11-24 22:19:58 -0500614 struct mount *parent = mnt->mnt_parent;
Al Viro83adc752011-11-24 22:37:54 -0500615 struct mount *m;
Ram Paib90fa9a2005-11-07 17:19:50 -0500616 LIST_HEAD(head);
Al Viro143c8c92011-11-25 00:46:35 -0500617 struct mnt_namespace *n = parent->mnt_ns;
Ram Paib90fa9a2005-11-07 17:19:50 -0500618
Al Viro0714a532011-11-24 22:19:58 -0500619 BUG_ON(parent == mnt);
Ram Paib90fa9a2005-11-07 17:19:50 -0500620
Al Viro4b2619a2011-11-24 19:47:15 -0500621 list_add_tail(&head, &mnt->mnt.mnt_list);
Al Viro83adc752011-11-24 22:37:54 -0500622 list_for_each_entry(m, &head, mnt.mnt_list) {
Al Viro143c8c92011-11-25 00:46:35 -0500623 m->mnt_ns = n;
Al Viro7e3d0eb02011-01-16 16:32:11 -0500624 __mnt_make_longterm(m);
Al Virof03c6592011-01-14 22:30:21 -0500625 }
626
Ram Paib90fa9a2005-11-07 17:19:50 -0500627 list_splice(&head, n->list.prev);
628
Al Viro1b8e5562011-11-24 21:01:32 -0500629 list_add_tail(&mnt->mnt_hash, mount_hashtable +
Al Viroa73324d2011-11-24 22:25:07 -0500630 hash(&parent->mnt, mnt->mnt_mountpoint));
Al Viro6b41d532011-11-24 23:24:33 -0500631 list_add_tail(&mnt->mnt_child, &parent->mnt_mounts);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -0800632 touch_mnt_namespace(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
Al Viro315fc832011-11-24 18:57:30 -0500635static struct mount *next_mnt(struct mount *p, struct vfsmount *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
Al Viro6b41d532011-11-24 23:24:33 -0500637 struct list_head *next = p->mnt_mounts.next;
638 if (next == &p->mnt_mounts) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 while (1) {
Al Viro315fc832011-11-24 18:57:30 -0500640 if (&p->mnt == root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 return NULL;
Al Viro6b41d532011-11-24 23:24:33 -0500642 next = p->mnt_child.next;
643 if (next != &p->mnt_parent->mnt_mounts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 break;
Al Viro0714a532011-11-24 22:19:58 -0500645 p = p->mnt_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 }
647 }
Al Viro6b41d532011-11-24 23:24:33 -0500648 return list_entry(next, struct mount, mnt_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
650
Al Viro315fc832011-11-24 18:57:30 -0500651static struct mount *skip_mnt_tree(struct mount *p)
Ram Pai9676f0c2005-11-07 17:21:20 -0500652{
Al Viro6b41d532011-11-24 23:24:33 -0500653 struct list_head *prev = p->mnt_mounts.prev;
654 while (prev != &p->mnt_mounts) {
655 p = list_entry(prev, struct mount, mnt_child);
656 prev = p->mnt_mounts.prev;
Ram Pai9676f0c2005-11-07 17:21:20 -0500657 }
658 return p;
659}
660
Al Viro9d412a42011-03-17 22:08:28 -0400661struct vfsmount *
662vfs_kern_mount(struct file_system_type *type, int flags, const char *name, void *data)
663{
Al Virob105e272011-11-24 20:38:33 -0500664 struct mount *mnt;
Al Viro9d412a42011-03-17 22:08:28 -0400665 struct dentry *root;
666
667 if (!type)
668 return ERR_PTR(-ENODEV);
669
670 mnt = alloc_vfsmnt(name);
671 if (!mnt)
672 return ERR_PTR(-ENOMEM);
673
674 if (flags & MS_KERNMOUNT)
Al Virob105e272011-11-24 20:38:33 -0500675 mnt->mnt.mnt_flags = MNT_INTERNAL;
Al Viro9d412a42011-03-17 22:08:28 -0400676
677 root = mount_fs(type, flags, name, data);
678 if (IS_ERR(root)) {
679 free_vfsmnt(mnt);
680 return ERR_CAST(root);
681 }
682
Al Virob105e272011-11-24 20:38:33 -0500683 mnt->mnt.mnt_root = root;
684 mnt->mnt.mnt_sb = root->d_sb;
Al Viroa73324d2011-11-24 22:25:07 -0500685 mnt->mnt_mountpoint = mnt->mnt.mnt_root;
Al Viro0714a532011-11-24 22:19:58 -0500686 mnt->mnt_parent = mnt;
Al Virob105e272011-11-24 20:38:33 -0500687 return &mnt->mnt;
Al Viro9d412a42011-03-17 22:08:28 -0400688}
689EXPORT_SYMBOL_GPL(vfs_kern_mount);
690
Al Viro87129cc2011-11-24 21:24:27 -0500691static struct mount *clone_mnt(struct mount *old, struct dentry *root,
Ram Pai36341f62005-11-07 17:17:22 -0500692 int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Al Viro87129cc2011-11-24 21:24:27 -0500694 struct super_block *sb = old->mnt.mnt_sb;
695 struct mount *mnt = alloc_vfsmnt(old->mnt.mnt_devname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 if (mnt) {
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100698 if (flag & (CL_SLAVE | CL_PRIVATE))
Al Virob105e272011-11-24 20:38:33 -0500699 mnt->mnt.mnt_group_id = 0; /* not a peer of original */
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100700 else
Al Viro87129cc2011-11-24 21:24:27 -0500701 mnt->mnt.mnt_group_id = old->mnt.mnt_group_id;
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100702
Al Virob105e272011-11-24 20:38:33 -0500703 if ((flag & CL_MAKE_SHARED) && !mnt->mnt.mnt_group_id) {
704 int err = mnt_alloc_group_id(mnt);
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100705 if (err)
706 goto out_free;
707 }
708
Al Viro87129cc2011-11-24 21:24:27 -0500709 mnt->mnt.mnt_flags = old->mnt.mnt_flags & ~MNT_WRITE_HOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 atomic_inc(&sb->s_active);
Al Virob105e272011-11-24 20:38:33 -0500711 mnt->mnt.mnt_sb = sb;
712 mnt->mnt.mnt_root = dget(root);
Al Viroa73324d2011-11-24 22:25:07 -0500713 mnt->mnt_mountpoint = mnt->mnt.mnt_root;
Al Viro0714a532011-11-24 22:19:58 -0500714 mnt->mnt_parent = mnt;
Ram Paib90fa9a2005-11-07 17:19:50 -0500715
Ram Pai5afe0022005-11-07 17:21:01 -0500716 if (flag & CL_SLAVE) {
Al Viro6776db3d2011-11-25 00:22:05 -0500717 list_add(&mnt->mnt_slave, &old->mnt_slave_list);
Al Viro32301922011-11-25 00:10:28 -0500718 mnt->mnt_master = old;
Al Virob105e272011-11-24 20:38:33 -0500719 CLEAR_MNT_SHARED(&mnt->mnt);
Al Viro8aec0802007-06-07 12:20:32 -0400720 } else if (!(flag & CL_PRIVATE)) {
Al Viro87129cc2011-11-24 21:24:27 -0500721 if ((flag & CL_MAKE_SHARED) || IS_MNT_SHARED(&old->mnt))
Al Viro6776db3d2011-11-25 00:22:05 -0500722 list_add(&mnt->mnt_share, &old->mnt_share);
Al Virod10e8de2011-11-25 00:07:16 -0500723 if (IS_MNT_SLAVE(old))
Al Viro6776db3d2011-11-25 00:22:05 -0500724 list_add(&mnt->mnt_slave, &old->mnt_slave);
Al Virod10e8de2011-11-25 00:07:16 -0500725 mnt->mnt_master = old->mnt_master;
Ram Pai5afe0022005-11-07 17:21:01 -0500726 }
Ram Paib90fa9a2005-11-07 17:19:50 -0500727 if (flag & CL_MAKE_SHARED)
Al Viro0f0afb12011-11-24 20:43:10 -0500728 set_mnt_shared(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 /* stick the duplicate mount on the same expiry list
731 * as the original if that was on one */
Ram Pai36341f62005-11-07 17:17:22 -0500732 if (flag & CL_EXPIRE) {
Al Viro6776db3d2011-11-25 00:22:05 -0500733 if (!list_empty(&old->mnt_expire))
734 list_add(&mnt->mnt_expire, &old->mnt_expire);
Ram Pai36341f62005-11-07 17:17:22 -0500735 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 }
Al Virocb338d02011-11-24 20:55:08 -0500737 return mnt;
Miklos Szeredi719f5d72008-03-27 13:06:23 +0100738
739 out_free:
740 free_vfsmnt(mnt);
741 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742}
743
Al Viro83adc752011-11-24 22:37:54 -0500744static inline void mntfree(struct mount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745{
Al Viro83adc752011-11-24 22:37:54 -0500746 struct vfsmount *m = &mnt->mnt;
747 struct super_block *sb = m->mnt_sb;
Nick Pigginb3e19d92011-01-07 17:50:11 +1100748
Dave Hansen3d733632008-02-15 14:37:59 -0800749 /*
Dave Hansen3d733632008-02-15 14:37:59 -0800750 * This probably indicates that somebody messed
751 * up a mnt_want/drop_write() pair. If this
752 * happens, the filesystem was probably unable
753 * to make r/w->r/o transitions.
754 */
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000755 /*
Nick Pigginb3e19d92011-01-07 17:50:11 +1100756 * The locking used to deal with mnt_count decrement provides barriers,
757 * so mnt_get_writers() below is safe.
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +1000758 */
Nick Pigginc6653a82011-01-07 17:50:10 +1100759 WARN_ON(mnt_get_writers(mnt));
Al Viro83adc752011-11-24 22:37:54 -0500760 fsnotify_vfsmount_delete(m);
761 dput(m->mnt_root);
762 free_vfsmnt(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 deactivate_super(sb);
764}
765
Al Viro900148d2011-11-25 00:33:11 -0500766static void mntput_no_expire(struct mount *mnt)
Al Viro7b7b1ac2005-11-07 17:13:39 -0500767{
Nick Pigginb3e19d92011-01-07 17:50:11 +1100768put_again:
Al Virof03c6592011-01-14 22:30:21 -0500769#ifdef CONFIG_SMP
770 br_read_lock(vfsmount_lock);
Al Viro68e8a9f2011-11-24 22:53:09 -0500771 if (likely(atomic_read(&mnt->mnt_longterm))) {
Al Viroaa9c0e02011-11-23 19:04:52 -0500772 mnt_add_count(mnt, -1);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100773 br_read_unlock(vfsmount_lock);
Al Virof03c6592011-01-14 22:30:21 -0500774 return;
Nick Pigginb3e19d92011-01-07 17:50:11 +1100775 }
Al Virof03c6592011-01-14 22:30:21 -0500776 br_read_unlock(vfsmount_lock);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100777
778 br_write_lock(vfsmount_lock);
Al Viroaa9c0e02011-11-23 19:04:52 -0500779 mnt_add_count(mnt, -1);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100780 if (mnt_get_count(mnt)) {
781 br_write_unlock(vfsmount_lock);
782 return;
783 }
Nick Pigginb3e19d92011-01-07 17:50:11 +1100784#else
Al Viroaa9c0e02011-11-23 19:04:52 -0500785 mnt_add_count(mnt, -1);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100786 if (likely(mnt_get_count(mnt)))
Nick Piggin99b7db72010-08-18 04:37:39 +1000787 return;
788 br_write_lock(vfsmount_lock);
Al Virof03c6592011-01-14 22:30:21 -0500789#endif
Al Viro83adc752011-11-24 22:37:54 -0500790 if (unlikely(mnt->mnt.mnt_pinned)) {
791 mnt_add_count(mnt, mnt->mnt.mnt_pinned + 1);
792 mnt->mnt.mnt_pinned = 0;
Nick Piggin99b7db72010-08-18 04:37:39 +1000793 br_write_unlock(vfsmount_lock);
Al Viro900148d2011-11-25 00:33:11 -0500794 acct_auto_close_mnt(&mnt->mnt);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100795 goto put_again;
Al Viro7b7b1ac2005-11-07 17:13:39 -0500796 }
Nick Piggin99b7db72010-08-18 04:37:39 +1000797 br_write_unlock(vfsmount_lock);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100798 mntfree(mnt);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500799}
Nick Pigginb3e19d92011-01-07 17:50:11 +1100800
801void mntput(struct vfsmount *mnt)
802{
803 if (mnt) {
804 /* avoid cacheline pingpong, hope gcc doesn't get "smart" */
805 if (unlikely(mnt->mnt_expiry_mark))
806 mnt->mnt_expiry_mark = 0;
Al Viro900148d2011-11-25 00:33:11 -0500807 mntput_no_expire(real_mount(mnt));
Nick Pigginb3e19d92011-01-07 17:50:11 +1100808 }
809}
810EXPORT_SYMBOL(mntput);
811
812struct vfsmount *mntget(struct vfsmount *mnt)
813{
814 if (mnt)
Al Viro83adc752011-11-24 22:37:54 -0500815 mnt_add_count(real_mount(mnt), 1);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100816 return mnt;
817}
818EXPORT_SYMBOL(mntget);
819
Al Viro7b7b1ac2005-11-07 17:13:39 -0500820void mnt_pin(struct vfsmount *mnt)
821{
Nick Piggin99b7db72010-08-18 04:37:39 +1000822 br_write_lock(vfsmount_lock);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500823 mnt->mnt_pinned++;
Nick Piggin99b7db72010-08-18 04:37:39 +1000824 br_write_unlock(vfsmount_lock);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500825}
Al Viro7b7b1ac2005-11-07 17:13:39 -0500826EXPORT_SYMBOL(mnt_pin);
827
828void mnt_unpin(struct vfsmount *mnt)
829{
Nick Piggin99b7db72010-08-18 04:37:39 +1000830 br_write_lock(vfsmount_lock);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500831 if (mnt->mnt_pinned) {
Al Viro83adc752011-11-24 22:37:54 -0500832 mnt_add_count(real_mount(mnt), 1);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500833 mnt->mnt_pinned--;
834 }
Nick Piggin99b7db72010-08-18 04:37:39 +1000835 br_write_unlock(vfsmount_lock);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500836}
Al Viro7b7b1ac2005-11-07 17:13:39 -0500837EXPORT_SYMBOL(mnt_unpin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800839static inline void mangle(struct seq_file *m, const char *s)
840{
841 seq_escape(m, s, " \t\n\\");
842}
843
844/*
845 * Simple .show_options callback for filesystems which don't want to
846 * implement more complex mount option showing.
847 *
848 * See also save_mount_options().
849 */
850int generic_show_options(struct seq_file *m, struct vfsmount *mnt)
851{
Al Viro2a32ceb2009-05-08 16:05:57 -0400852 const char *options;
853
854 rcu_read_lock();
855 options = rcu_dereference(mnt->mnt_sb->s_options);
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800856
857 if (options != NULL && options[0]) {
858 seq_putc(m, ',');
859 mangle(m, options);
860 }
Al Viro2a32ceb2009-05-08 16:05:57 -0400861 rcu_read_unlock();
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800862
863 return 0;
864}
865EXPORT_SYMBOL(generic_show_options);
866
867/*
868 * If filesystem uses generic_show_options(), this function should be
869 * called from the fill_super() callback.
870 *
871 * The .remount_fs callback usually needs to be handled in a special
872 * way, to make sure, that previous options are not overwritten if the
873 * remount fails.
874 *
875 * Also note, that if the filesystem's .remount_fs function doesn't
876 * reset all options to their default value, but changes only newly
877 * given options, then the displayed options will not reflect reality
878 * any more.
879 */
880void save_mount_options(struct super_block *sb, char *options)
881{
Al Viro2a32ceb2009-05-08 16:05:57 -0400882 BUG_ON(sb->s_options);
883 rcu_assign_pointer(sb->s_options, kstrdup(options, GFP_KERNEL));
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800884}
885EXPORT_SYMBOL(save_mount_options);
886
Al Viro2a32ceb2009-05-08 16:05:57 -0400887void replace_mount_options(struct super_block *sb, char *options)
888{
889 char *old = sb->s_options;
890 rcu_assign_pointer(sb->s_options, options);
891 if (old) {
892 synchronize_rcu();
893 kfree(old);
894 }
895}
896EXPORT_SYMBOL(replace_mount_options);
897
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100898#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899/* iterator */
900static void *m_start(struct seq_file *m, loff_t *pos)
901{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100902 struct proc_mounts *p = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Ram Pai390c6842005-11-07 17:17:51 -0500904 down_read(&namespace_sem);
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100905 return seq_list_start(&p->ns->list, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906}
907
908static void *m_next(struct seq_file *m, void *v, loff_t *pos)
909{
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100910 struct proc_mounts *p = m->private;
Pavel Emelianovb0765fb2007-07-15 23:39:55 -0700911
Miklos Szeredia1a2c402008-03-27 13:06:24 +0100912 return seq_list_next(v, &p->ns->list, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
914
915static void m_stop(struct seq_file *m, void *v)
916{
Ram Pai390c6842005-11-07 17:17:51 -0500917 up_read(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918}
919
Al Viro9f5596a2010-02-05 00:40:25 -0500920int mnt_had_events(struct proc_mounts *p)
921{
922 struct mnt_namespace *ns = p->ns;
923 int res = 0;
924
Nick Piggin99b7db72010-08-18 04:37:39 +1000925 br_read_lock(vfsmount_lock);
Kay Sieversf1514632011-07-12 20:48:39 +0200926 if (p->m.poll_event != ns->event) {
927 p->m.poll_event = ns->event;
Al Viro9f5596a2010-02-05 00:40:25 -0500928 res = 1;
929 }
Nick Piggin99b7db72010-08-18 04:37:39 +1000930 br_read_unlock(vfsmount_lock);
Al Viro9f5596a2010-02-05 00:40:25 -0500931
932 return res;
933}
934
Ram Pai2d4d4862008-03-27 13:06:25 +0100935struct proc_fs_info {
936 int flag;
937 const char *str;
938};
939
Eric Paris2069f452008-07-04 09:47:13 +1000940static int show_sb_opts(struct seq_file *m, struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
Ram Pai2d4d4862008-03-27 13:06:25 +0100942 static const struct proc_fs_info fs_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 { MS_SYNCHRONOUS, ",sync" },
944 { MS_DIRSYNC, ",dirsync" },
945 { MS_MANDLOCK, ",mand" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 { 0, NULL }
947 };
Ram Pai2d4d4862008-03-27 13:06:25 +0100948 const struct proc_fs_info *fs_infop;
949
950 for (fs_infop = fs_info; fs_infop->flag; fs_infop++) {
951 if (sb->s_flags & fs_infop->flag)
952 seq_puts(m, fs_infop->str);
953 }
Eric Paris2069f452008-07-04 09:47:13 +1000954
955 return security_sb_show_options(m, sb);
Ram Pai2d4d4862008-03-27 13:06:25 +0100956}
957
958static void show_mnt_opts(struct seq_file *m, struct vfsmount *mnt)
959{
960 static const struct proc_fs_info mnt_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 { MNT_NOSUID, ",nosuid" },
962 { MNT_NODEV, ",nodev" },
963 { MNT_NOEXEC, ",noexec" },
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -0800964 { MNT_NOATIME, ",noatime" },
965 { MNT_NODIRATIME, ",nodiratime" },
Valerie Henson47ae32d2006-12-13 00:34:34 -0800966 { MNT_RELATIME, ",relatime" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 { 0, NULL }
968 };
Ram Pai2d4d4862008-03-27 13:06:25 +0100969 const struct proc_fs_info *fs_infop;
970
971 for (fs_infop = mnt_info; fs_infop->flag; fs_infop++) {
972 if (mnt->mnt_flags & fs_infop->flag)
973 seq_puts(m, fs_infop->str);
974 }
975}
976
977static void show_type(struct seq_file *m, struct super_block *sb)
978{
979 mangle(m, sb->s_type->name);
980 if (sb->s_subtype && sb->s_subtype[0]) {
981 seq_putc(m, '.');
982 mangle(m, sb->s_subtype);
983 }
984}
985
986static int show_vfsmnt(struct seq_file *m, void *v)
987{
988 struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
989 int err = 0;
Jan Blunckc32c2f62008-02-14 19:38:43 -0800990 struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Al Viroc7f404b2011-03-16 06:59:40 -0400992 if (mnt->mnt_sb->s_op->show_devname) {
993 err = mnt->mnt_sb->s_op->show_devname(m, mnt);
994 if (err)
995 goto out;
996 } else {
997 mangle(m, mnt->mnt_devname ? mnt->mnt_devname : "none");
998 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 seq_putc(m, ' ');
Jan Blunckc32c2f62008-02-14 19:38:43 -08001000 seq_path(m, &mnt_path, " \t\n\\");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 seq_putc(m, ' ');
Ram Pai2d4d4862008-03-27 13:06:25 +01001002 show_type(m, mnt->mnt_sb);
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08001003 seq_puts(m, __mnt_is_readonly(mnt) ? " ro" : " rw");
Eric Paris2069f452008-07-04 09:47:13 +10001004 err = show_sb_opts(m, mnt->mnt_sb);
1005 if (err)
1006 goto out;
Ram Pai2d4d4862008-03-27 13:06:25 +01001007 show_mnt_opts(m, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if (mnt->mnt_sb->s_op->show_options)
1009 err = mnt->mnt_sb->s_op->show_options(m, mnt);
1010 seq_puts(m, " 0 0\n");
Eric Paris2069f452008-07-04 09:47:13 +10001011out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 return err;
1013}
1014
Miklos Szeredia1a2c402008-03-27 13:06:24 +01001015const struct seq_operations mounts_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 .start = m_start,
1017 .next = m_next,
1018 .stop = m_stop,
1019 .show = show_vfsmnt
1020};
1021
Ram Pai2d4d4862008-03-27 13:06:25 +01001022static int show_mountinfo(struct seq_file *m, void *v)
1023{
1024 struct proc_mounts *p = m->private;
1025 struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
Al Viro3376f342011-11-24 22:05:19 -05001026 struct mount *r = real_mount(mnt);
Ram Pai2d4d4862008-03-27 13:06:25 +01001027 struct super_block *sb = mnt->mnt_sb;
1028 struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
1029 struct path root = p->root;
1030 int err = 0;
1031
Al Viro0714a532011-11-24 22:19:58 -05001032 seq_printf(m, "%i %i %u:%u ", mnt->mnt_id, r->mnt_parent->mnt.mnt_id,
Ram Pai2d4d4862008-03-27 13:06:25 +01001033 MAJOR(sb->s_dev), MINOR(sb->s_dev));
Al Viroc7f404b2011-03-16 06:59:40 -04001034 if (sb->s_op->show_path)
1035 err = sb->s_op->show_path(m, mnt);
1036 else
1037 seq_dentry(m, mnt->mnt_root, " \t\n\\");
1038 if (err)
1039 goto out;
Ram Pai2d4d4862008-03-27 13:06:25 +01001040 seq_putc(m, ' ');
Al Viro02125a82011-12-05 08:43:34 -05001041
1042 /* mountpoints outside of chroot jail will give SEQ_SKIP on this */
1043 err = seq_path_root(m, &mnt_path, &root, " \t\n\\");
1044 if (err)
1045 goto out;
1046
Ram Pai2d4d4862008-03-27 13:06:25 +01001047 seq_puts(m, mnt->mnt_flags & MNT_READONLY ? " ro" : " rw");
1048 show_mnt_opts(m, mnt);
1049
1050 /* Tagged fields ("foo:X" or "bar") */
1051 if (IS_MNT_SHARED(mnt))
1052 seq_printf(m, " shared:%i", mnt->mnt_group_id);
Al Virod10e8de2011-11-25 00:07:16 -05001053 if (IS_MNT_SLAVE(r)) {
Al Viro32301922011-11-25 00:10:28 -05001054 int master = r->mnt_master->mnt.mnt_group_id;
Al Viro6fc78712011-11-24 23:35:54 -05001055 int dom = get_dominating_id(r, &p->root);
Miklos Szeredi97e7e0f2008-03-27 13:06:26 +01001056 seq_printf(m, " master:%i", master);
1057 if (dom && dom != master)
1058 seq_printf(m, " propagate_from:%i", dom);
1059 }
Ram Pai2d4d4862008-03-27 13:06:25 +01001060 if (IS_MNT_UNBINDABLE(mnt))
1061 seq_puts(m, " unbindable");
1062
1063 /* Filesystem specific data */
1064 seq_puts(m, " - ");
1065 show_type(m, sb);
1066 seq_putc(m, ' ');
Al Viroc7f404b2011-03-16 06:59:40 -04001067 if (sb->s_op->show_devname)
1068 err = sb->s_op->show_devname(m, mnt);
1069 else
1070 mangle(m, mnt->mnt_devname ? mnt->mnt_devname : "none");
1071 if (err)
1072 goto out;
Ram Pai2d4d4862008-03-27 13:06:25 +01001073 seq_puts(m, sb->s_flags & MS_RDONLY ? " ro" : " rw");
Eric Paris2069f452008-07-04 09:47:13 +10001074 err = show_sb_opts(m, sb);
1075 if (err)
1076 goto out;
Ram Pai2d4d4862008-03-27 13:06:25 +01001077 if (sb->s_op->show_options)
1078 err = sb->s_op->show_options(m, mnt);
1079 seq_putc(m, '\n');
Eric Paris2069f452008-07-04 09:47:13 +10001080out:
Ram Pai2d4d4862008-03-27 13:06:25 +01001081 return err;
1082}
1083
1084const struct seq_operations mountinfo_op = {
1085 .start = m_start,
1086 .next = m_next,
1087 .stop = m_stop,
1088 .show = show_mountinfo,
1089};
1090
Chuck Leverb4629fe2006-03-20 13:44:12 -05001091static int show_vfsstat(struct seq_file *m, void *v)
1092{
Pavel Emelianovb0765fb2007-07-15 23:39:55 -07001093 struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
Jan Blunckc32c2f62008-02-14 19:38:43 -08001094 struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
Chuck Leverb4629fe2006-03-20 13:44:12 -05001095 int err = 0;
1096
1097 /* device */
Al Viroc7f404b2011-03-16 06:59:40 -04001098 if (mnt->mnt_sb->s_op->show_devname) {
Bryan Schumakera877ee02011-10-07 13:41:15 -04001099 seq_puts(m, "device ");
Al Viroc7f404b2011-03-16 06:59:40 -04001100 err = mnt->mnt_sb->s_op->show_devname(m, mnt);
1101 } else {
1102 if (mnt->mnt_devname) {
1103 seq_puts(m, "device ");
1104 mangle(m, mnt->mnt_devname);
1105 } else
1106 seq_puts(m, "no device");
1107 }
Chuck Leverb4629fe2006-03-20 13:44:12 -05001108
1109 /* mount point */
1110 seq_puts(m, " mounted on ");
Jan Blunckc32c2f62008-02-14 19:38:43 -08001111 seq_path(m, &mnt_path, " \t\n\\");
Chuck Leverb4629fe2006-03-20 13:44:12 -05001112 seq_putc(m, ' ');
1113
1114 /* file system type */
1115 seq_puts(m, "with fstype ");
Ram Pai2d4d4862008-03-27 13:06:25 +01001116 show_type(m, mnt->mnt_sb);
Chuck Leverb4629fe2006-03-20 13:44:12 -05001117
1118 /* optional statistics */
1119 if (mnt->mnt_sb->s_op->show_stats) {
1120 seq_putc(m, ' ');
Al Viroc7f404b2011-03-16 06:59:40 -04001121 if (!err)
1122 err = mnt->mnt_sb->s_op->show_stats(m, mnt);
Chuck Leverb4629fe2006-03-20 13:44:12 -05001123 }
1124
1125 seq_putc(m, '\n');
1126 return err;
1127}
1128
Miklos Szeredia1a2c402008-03-27 13:06:24 +01001129const struct seq_operations mountstats_op = {
Chuck Leverb4629fe2006-03-20 13:44:12 -05001130 .start = m_start,
1131 .next = m_next,
1132 .stop = m_stop,
1133 .show = show_vfsstat,
1134};
Miklos Szeredia1a2c402008-03-27 13:06:24 +01001135#endif /* CONFIG_PROC_FS */
Chuck Leverb4629fe2006-03-20 13:44:12 -05001136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137/**
1138 * may_umount_tree - check if a mount tree is busy
1139 * @mnt: root of mount tree
1140 *
1141 * This is called to check if a tree of mounts has any
1142 * open files, pwds, chroots or sub mounts that are
1143 * busy.
1144 */
1145int may_umount_tree(struct vfsmount *mnt)
1146{
Ram Pai36341f62005-11-07 17:17:22 -05001147 int actual_refs = 0;
1148 int minimum_refs = 0;
Al Viro315fc832011-11-24 18:57:30 -05001149 struct mount *p;
1150 BUG_ON(!mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
Nick Pigginb3e19d92011-01-07 17:50:11 +11001152 /* write lock needed for mnt_get_count */
1153 br_write_lock(vfsmount_lock);
Al Viro315fc832011-11-24 18:57:30 -05001154 for (p = real_mount(mnt); p; p = next_mnt(p, mnt)) {
Al Viro83adc752011-11-24 22:37:54 -05001155 actual_refs += mnt_get_count(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 minimum_refs += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 }
Nick Pigginb3e19d92011-01-07 17:50:11 +11001158 br_write_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 if (actual_refs > minimum_refs)
Ian Kente3474a82006-03-27 01:14:51 -08001161 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Ian Kente3474a82006-03-27 01:14:51 -08001163 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164}
1165
1166EXPORT_SYMBOL(may_umount_tree);
1167
1168/**
1169 * may_umount - check if a mount point is busy
1170 * @mnt: root of mount
1171 *
1172 * This is called to check if a mount point has any
1173 * open files, pwds, chroots or sub mounts. If the
1174 * mount has sub mounts this will return busy
1175 * regardless of whether the sub mounts are busy.
1176 *
1177 * Doesn't take quota and stuff into account. IOW, in some cases it will
1178 * give false negatives. The main reason why it's here is that we need
1179 * a non-destructive way to look for easily umountable filesystems.
1180 */
1181int may_umount(struct vfsmount *mnt)
1182{
Ian Kente3474a82006-03-27 01:14:51 -08001183 int ret = 1;
Al Viro8ad08d82010-01-16 12:56:08 -05001184 down_read(&namespace_sem);
Nick Pigginb3e19d92011-01-07 17:50:11 +11001185 br_write_lock(vfsmount_lock);
Al Viro1ab59732011-11-24 21:35:16 -05001186 if (propagate_mount_busy(real_mount(mnt), 2))
Ian Kente3474a82006-03-27 01:14:51 -08001187 ret = 0;
Nick Pigginb3e19d92011-01-07 17:50:11 +11001188 br_write_unlock(vfsmount_lock);
Al Viro8ad08d82010-01-16 12:56:08 -05001189 up_read(&namespace_sem);
Ram Paia05964f2005-11-07 17:20:17 -05001190 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191}
1192
1193EXPORT_SYMBOL(may_umount);
1194
Ram Paib90fa9a2005-11-07 17:19:50 -05001195void release_mounts(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
Al Virod5e50f72011-11-24 20:58:57 -05001197 struct mount *mnt;
Miklos Szeredibf066c72006-01-08 01:03:19 -08001198 while (!list_empty(head)) {
Al Viro1b8e5562011-11-24 21:01:32 -05001199 mnt = list_first_entry(head, struct mount, mnt_hash);
1200 list_del_init(&mnt->mnt_hash);
Al Viro676da582011-11-24 21:47:05 -05001201 if (mnt_has_parent(mnt)) {
Ram Pai70fbcdf2005-11-07 17:17:04 -05001202 struct dentry *dentry;
1203 struct vfsmount *m;
Nick Piggin99b7db72010-08-18 04:37:39 +10001204
1205 br_write_lock(vfsmount_lock);
Al Viroa73324d2011-11-24 22:25:07 -05001206 dentry = mnt->mnt_mountpoint;
Al Viro0714a532011-11-24 22:19:58 -05001207 m = &mnt->mnt_parent->mnt;
Al Viroa73324d2011-11-24 22:25:07 -05001208 mnt->mnt_mountpoint = mnt->mnt.mnt_root;
Al Viro0714a532011-11-24 22:19:58 -05001209 mnt->mnt_parent = mnt;
Al Viro7c4b93d2008-03-21 23:59:49 -04001210 m->mnt_ghosts--;
Nick Piggin99b7db72010-08-18 04:37:39 +10001211 br_write_unlock(vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001212 dput(dentry);
1213 mntput(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 }
Al Virod5e50f72011-11-24 20:58:57 -05001215 mntput(&mnt->mnt);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001216 }
1217}
1218
Nick Piggin99b7db72010-08-18 04:37:39 +10001219/*
1220 * vfsmount lock must be held for write
1221 * namespace_sem must be held for write
1222 */
Al Viro761d5c32011-11-24 21:07:43 -05001223void umount_tree(struct mount *mnt, int propagate, struct list_head *kill)
Ram Pai70fbcdf2005-11-07 17:17:04 -05001224{
Al Viro7b8a53f2011-01-15 20:08:44 -05001225 LIST_HEAD(tmp_list);
Al Viro315fc832011-11-24 18:57:30 -05001226 struct mount *p;
Ram Pai70fbcdf2005-11-07 17:17:04 -05001227
Al Viro761d5c32011-11-24 21:07:43 -05001228 for (p = mnt; p; p = next_mnt(p, &mnt->mnt))
Al Viro1b8e5562011-11-24 21:01:32 -05001229 list_move(&p->mnt_hash, &tmp_list);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001230
Ram Paia05964f2005-11-07 17:20:17 -05001231 if (propagate)
Al Viro7b8a53f2011-01-15 20:08:44 -05001232 propagate_umount(&tmp_list);
Ram Paia05964f2005-11-07 17:20:17 -05001233
Al Viro1b8e5562011-11-24 21:01:32 -05001234 list_for_each_entry(p, &tmp_list, mnt_hash) {
Al Viro6776db3d2011-11-25 00:22:05 -05001235 list_del_init(&p->mnt_expire);
Al Viro315fc832011-11-24 18:57:30 -05001236 list_del_init(&p->mnt.mnt_list);
Al Viro143c8c92011-11-25 00:46:35 -05001237 __touch_mnt_namespace(p->mnt_ns);
1238 p->mnt_ns = NULL;
Al Viro83adc752011-11-24 22:37:54 -05001239 __mnt_make_shortterm(p);
Al Viro6b41d532011-11-24 23:24:33 -05001240 list_del_init(&p->mnt_child);
Al Viro676da582011-11-24 21:47:05 -05001241 if (mnt_has_parent(p)) {
Al Viro0714a532011-11-24 22:19:58 -05001242 p->mnt_parent->mnt.mnt_ghosts++;
Al Viroa73324d2011-11-24 22:25:07 -05001243 dentry_reset_mounted(p->mnt_mountpoint);
Al Viro7c4b93d2008-03-21 23:59:49 -04001244 }
Al Viro0f0afb12011-11-24 20:43:10 -05001245 change_mnt_propagation(p, MS_PRIVATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 }
Al Viro7b8a53f2011-01-15 20:08:44 -05001247 list_splice(&tmp_list, kill);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248}
1249
Al Viro692afc32011-11-24 21:15:14 -05001250static void shrink_submounts(struct mount *mnt, struct list_head *umounts);
Al Viroc35038b2008-03-22 00:46:23 -04001251
Al Viro1ab59732011-11-24 21:35:16 -05001252static int do_umount(struct mount *mnt, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253{
Al Viro1ab59732011-11-24 21:35:16 -05001254 struct super_block *sb = mnt->mnt.mnt_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 int retval;
Ram Pai70fbcdf2005-11-07 17:17:04 -05001256 LIST_HEAD(umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Al Viro1ab59732011-11-24 21:35:16 -05001258 retval = security_sb_umount(&mnt->mnt, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 if (retval)
1260 return retval;
1261
1262 /*
1263 * Allow userspace to request a mountpoint be expired rather than
1264 * unmounting unconditionally. Unmount only happens if:
1265 * (1) the mark is already set (the mark is cleared by mntput())
1266 * (2) the usage count == 1 [parent vfsmount] + 1 [sys_umount]
1267 */
1268 if (flags & MNT_EXPIRE) {
Al Viro1ab59732011-11-24 21:35:16 -05001269 if (&mnt->mnt == current->fs->root.mnt ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 flags & (MNT_FORCE | MNT_DETACH))
1271 return -EINVAL;
1272
Nick Pigginb3e19d92011-01-07 17:50:11 +11001273 /*
1274 * probably don't strictly need the lock here if we examined
1275 * all race cases, but it's a slowpath.
1276 */
1277 br_write_lock(vfsmount_lock);
Al Viro83adc752011-11-24 22:37:54 -05001278 if (mnt_get_count(mnt) != 2) {
J. R. Okajimabf9faa22011-02-23 16:59:49 +09001279 br_write_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 return -EBUSY;
Nick Pigginb3e19d92011-01-07 17:50:11 +11001281 }
1282 br_write_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Al Viro1ab59732011-11-24 21:35:16 -05001284 if (!xchg(&mnt->mnt.mnt_expiry_mark, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 return -EAGAIN;
1286 }
1287
1288 /*
1289 * If we may have to abort operations to get out of this
1290 * mount, and they will themselves hold resources we must
1291 * allow the fs to do things. In the Unix tradition of
1292 * 'Gee thats tricky lets do it in userspace' the umount_begin
1293 * might fail to complete on the first run through as other tasks
1294 * must return, and the like. Thats for the mount program to worry
1295 * about for the moment.
1296 */
1297
Al Viro42faad92008-04-24 07:21:56 -04001298 if (flags & MNT_FORCE && sb->s_op->umount_begin) {
Al Viro42faad92008-04-24 07:21:56 -04001299 sb->s_op->umount_begin(sb);
Al Viro42faad92008-04-24 07:21:56 -04001300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
1302 /*
1303 * No sense to grab the lock for this test, but test itself looks
1304 * somewhat bogus. Suggestions for better replacement?
1305 * Ho-hum... In principle, we might treat that as umount + switch
1306 * to rootfs. GC would eventually take care of the old vfsmount.
1307 * Actually it makes sense, especially if rootfs would contain a
1308 * /reboot - static binary that would close all descriptors and
1309 * call reboot(9). Then init(8) could umount root and exec /reboot.
1310 */
Al Viro1ab59732011-11-24 21:35:16 -05001311 if (&mnt->mnt == current->fs->root.mnt && !(flags & MNT_DETACH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 /*
1313 * Special case for "unmounting" root ...
1314 * we just try to remount it readonly.
1315 */
1316 down_write(&sb->s_umount);
Al Viro4aa98cf2009-05-08 13:36:58 -04001317 if (!(sb->s_flags & MS_RDONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 retval = do_remount_sb(sb, MS_RDONLY, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 up_write(&sb->s_umount);
1320 return retval;
1321 }
1322
Ram Pai390c6842005-11-07 17:17:51 -05001323 down_write(&namespace_sem);
Nick Piggin99b7db72010-08-18 04:37:39 +10001324 br_write_lock(vfsmount_lock);
Al Viro5addc5d2005-11-07 17:15:49 -05001325 event++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Al Viroc35038b2008-03-22 00:46:23 -04001327 if (!(flags & MNT_DETACH))
Al Viro1ab59732011-11-24 21:35:16 -05001328 shrink_submounts(mnt, &umount_list);
Al Viroc35038b2008-03-22 00:46:23 -04001329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 retval = -EBUSY;
Ram Paia05964f2005-11-07 17:20:17 -05001331 if (flags & MNT_DETACH || !propagate_mount_busy(mnt, 2)) {
Al Viro1ab59732011-11-24 21:35:16 -05001332 if (!list_empty(&mnt->mnt.mnt_list))
1333 umount_tree(mnt, 1, &umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 retval = 0;
1335 }
Nick Piggin99b7db72010-08-18 04:37:39 +10001336 br_write_unlock(vfsmount_lock);
Ram Pai390c6842005-11-07 17:17:51 -05001337 up_write(&namespace_sem);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001338 release_mounts(&umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 return retval;
1340}
1341
1342/*
1343 * Now umount can handle mount points as well as block devices.
1344 * This is important for filesystems which use unnamed block devices.
1345 *
1346 * We now support a flag for forced unmount like the other 'big iron'
1347 * unixes. Our API is identical to OSF/1 to avoid making a mess of AMD
1348 */
1349
Heiko Carstensbdc480e2009-01-14 14:14:12 +01001350SYSCALL_DEFINE2(umount, char __user *, name, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351{
Al Viro2d8f3032008-07-22 09:59:21 -04001352 struct path path;
Al Viro900148d2011-11-25 00:33:11 -05001353 struct mount *mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 int retval;
Miklos Szeredidb1f05b2010-02-10 12:15:53 +01001355 int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Miklos Szeredidb1f05b2010-02-10 12:15:53 +01001357 if (flags & ~(MNT_FORCE | MNT_DETACH | MNT_EXPIRE | UMOUNT_NOFOLLOW))
1358 return -EINVAL;
1359
1360 if (!(flags & UMOUNT_NOFOLLOW))
1361 lookup_flags |= LOOKUP_FOLLOW;
1362
1363 retval = user_path_at(AT_FDCWD, name, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 if (retval)
1365 goto out;
Al Viro900148d2011-11-25 00:33:11 -05001366 mnt = real_mount(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 retval = -EINVAL;
Al Viro2d8f3032008-07-22 09:59:21 -04001368 if (path.dentry != path.mnt->mnt_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 goto dput_and_out;
Al Viro143c8c92011-11-25 00:46:35 -05001370 if (!check_mnt(mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 goto dput_and_out;
1372
1373 retval = -EPERM;
1374 if (!capable(CAP_SYS_ADMIN))
1375 goto dput_and_out;
1376
Al Viro900148d2011-11-25 00:33:11 -05001377 retval = do_umount(mnt, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378dput_and_out:
Jan Blunck429731b2008-02-14 19:34:31 -08001379 /* we mustn't call path_put() as that would clear mnt_expiry_mark */
Al Viro2d8f3032008-07-22 09:59:21 -04001380 dput(path.dentry);
Al Viro900148d2011-11-25 00:33:11 -05001381 mntput_no_expire(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382out:
1383 return retval;
1384}
1385
1386#ifdef __ARCH_WANT_SYS_OLDUMOUNT
1387
1388/*
Ram Paib58fed82005-11-07 17:16:09 -05001389 * The 2.0 compatible umount. No flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 */
Heiko Carstensbdc480e2009-01-14 14:14:12 +01001391SYSCALL_DEFINE1(oldumount, char __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
Ram Paib58fed82005-11-07 17:16:09 -05001393 return sys_umount(name, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394}
1395
1396#endif
1397
Al Viro2d92ab32008-08-02 00:51:11 -04001398static int mount_is_safe(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399{
1400 if (capable(CAP_SYS_ADMIN))
1401 return 0;
1402 return -EPERM;
1403#ifdef notyet
Al Viro2d92ab32008-08-02 00:51:11 -04001404 if (S_ISLNK(path->dentry->d_inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 return -EPERM;
Al Viro2d92ab32008-08-02 00:51:11 -04001406 if (path->dentry->d_inode->i_mode & S_ISVTX) {
David Howellsda9592e2008-11-14 10:39:05 +11001407 if (current_uid() != path->dentry->d_inode->i_uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 return -EPERM;
1409 }
Al Viro2d92ab32008-08-02 00:51:11 -04001410 if (inode_permission(path->dentry->d_inode, MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 return -EPERM;
1412 return 0;
1413#endif
1414}
1415
Al Viro87129cc2011-11-24 21:24:27 -05001416struct mount *copy_tree(struct mount *mnt, struct dentry *dentry,
Ram Pai36341f62005-11-07 17:17:22 -05001417 int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418{
Al Viroa73324d2011-11-24 22:25:07 -05001419 struct mount *res, *p, *q, *r;
Al Viro1a390682008-03-21 20:48:19 -04001420 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Al Viro87129cc2011-11-24 21:24:27 -05001422 if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(&mnt->mnt))
Ram Pai9676f0c2005-11-07 17:21:20 -05001423 return NULL;
1424
Ram Pai36341f62005-11-07 17:17:22 -05001425 res = q = clone_mnt(mnt, dentry, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 if (!q)
1427 goto Enomem;
Al Viroa73324d2011-11-24 22:25:07 -05001428 q->mnt_mountpoint = mnt->mnt_mountpoint;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 p = mnt;
Al Viro6b41d532011-11-24 23:24:33 -05001431 list_for_each_entry(r, &mnt->mnt_mounts, mnt_child) {
Al Viro315fc832011-11-24 18:57:30 -05001432 struct mount *s;
Jan Blunck7ec02ef2008-04-29 00:59:40 -07001433 if (!is_subdir(r->mnt_mountpoint, dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 continue;
1435
Al Viroa73324d2011-11-24 22:25:07 -05001436 for (s = r; s; s = next_mnt(s, &r->mnt)) {
Al Viro315fc832011-11-24 18:57:30 -05001437 if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(&s->mnt)) {
Ram Pai9676f0c2005-11-07 17:21:20 -05001438 s = skip_mnt_tree(s);
1439 continue;
1440 }
Al Viro0714a532011-11-24 22:19:58 -05001441 while (p != s->mnt_parent) {
1442 p = p->mnt_parent;
1443 q = q->mnt_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 }
Al Viro87129cc2011-11-24 21:24:27 -05001445 p = s;
Al Virocb338d02011-11-24 20:55:08 -05001446 path.mnt = &q->mnt;
Al Viroa73324d2011-11-24 22:25:07 -05001447 path.dentry = p->mnt_mountpoint;
Al Viro87129cc2011-11-24 21:24:27 -05001448 q = clone_mnt(p, p->mnt.mnt_root, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 if (!q)
1450 goto Enomem;
Nick Piggin99b7db72010-08-18 04:37:39 +10001451 br_write_lock(vfsmount_lock);
Al Virocb338d02011-11-24 20:55:08 -05001452 list_add_tail(&q->mnt.mnt_list, &res->mnt.mnt_list);
1453 attach_mnt(q, &path);
Nick Piggin99b7db72010-08-18 04:37:39 +10001454 br_write_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 }
1456 }
1457 return res;
Ram Paib58fed82005-11-07 17:16:09 -05001458Enomem:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 if (res) {
Ram Pai70fbcdf2005-11-07 17:17:04 -05001460 LIST_HEAD(umount_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10001461 br_write_lock(vfsmount_lock);
Al Viro761d5c32011-11-24 21:07:43 -05001462 umount_tree(res, 0, &umount_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10001463 br_write_unlock(vfsmount_lock);
Ram Pai70fbcdf2005-11-07 17:17:04 -05001464 release_mounts(&umount_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 }
1466 return NULL;
1467}
1468
Al Viro589ff872009-04-18 03:28:19 -04001469struct vfsmount *collect_mounts(struct path *path)
Al Viro8aec0802007-06-07 12:20:32 -04001470{
Al Virocb338d02011-11-24 20:55:08 -05001471 struct mount *tree;
Al Viro1a60a282008-03-22 16:19:49 -04001472 down_write(&namespace_sem);
Al Viro87129cc2011-11-24 21:24:27 -05001473 tree = copy_tree(real_mount(path->mnt), path->dentry,
1474 CL_COPY_ALL | CL_PRIVATE);
Al Viro1a60a282008-03-22 16:19:49 -04001475 up_write(&namespace_sem);
Al Virocb338d02011-11-24 20:55:08 -05001476 return tree ? &tree->mnt : NULL;
Al Viro8aec0802007-06-07 12:20:32 -04001477}
1478
1479void drop_collected_mounts(struct vfsmount *mnt)
1480{
1481 LIST_HEAD(umount_list);
Al Viro1a60a282008-03-22 16:19:49 -04001482 down_write(&namespace_sem);
Nick Piggin99b7db72010-08-18 04:37:39 +10001483 br_write_lock(vfsmount_lock);
Al Viro761d5c32011-11-24 21:07:43 -05001484 umount_tree(real_mount(mnt), 0, &umount_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10001485 br_write_unlock(vfsmount_lock);
Al Viro1a60a282008-03-22 16:19:49 -04001486 up_write(&namespace_sem);
Al Viro8aec0802007-06-07 12:20:32 -04001487 release_mounts(&umount_list);
1488}
1489
Al Viro1f707132010-01-30 22:51:25 -05001490int iterate_mounts(int (*f)(struct vfsmount *, void *), void *arg,
1491 struct vfsmount *root)
1492{
1493 struct vfsmount *mnt;
1494 int res = f(root, arg);
1495 if (res)
1496 return res;
1497 list_for_each_entry(mnt, &root->mnt_list, mnt_list) {
1498 res = f(mnt, arg);
1499 if (res)
1500 return res;
1501 }
1502 return 0;
1503}
1504
Al Viro4b8b21f2011-11-24 19:54:23 -05001505static void cleanup_group_ids(struct mount *mnt, struct mount *end)
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001506{
Al Viro315fc832011-11-24 18:57:30 -05001507 struct mount *p;
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001508
Al Viro4b8b21f2011-11-24 19:54:23 -05001509 for (p = mnt; p != end; p = next_mnt(p, &mnt->mnt)) {
Al Viro315fc832011-11-24 18:57:30 -05001510 if (p->mnt.mnt_group_id && !IS_MNT_SHARED(&p->mnt))
Al Viro4b8b21f2011-11-24 19:54:23 -05001511 mnt_release_group_id(p);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001512 }
1513}
1514
Al Viro4b8b21f2011-11-24 19:54:23 -05001515static int invent_group_ids(struct mount *mnt, bool recurse)
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001516{
Al Viro315fc832011-11-24 18:57:30 -05001517 struct mount *p;
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001518
Al Viro4b8b21f2011-11-24 19:54:23 -05001519 for (p = mnt; p; p = recurse ? next_mnt(p, &mnt->mnt) : NULL) {
Al Viro315fc832011-11-24 18:57:30 -05001520 if (!p->mnt.mnt_group_id && !IS_MNT_SHARED(&p->mnt)) {
Al Viro4b8b21f2011-11-24 19:54:23 -05001521 int err = mnt_alloc_group_id(p);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001522 if (err) {
Al Viro4b8b21f2011-11-24 19:54:23 -05001523 cleanup_group_ids(mnt, p);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001524 return err;
1525 }
1526 }
1527 }
1528
1529 return 0;
1530}
1531
Ram Paib90fa9a2005-11-07 17:19:50 -05001532/*
1533 * @source_mnt : mount tree to be attached
Ram Pai21444402005-11-07 17:20:03 -05001534 * @nd : place the mount tree @source_mnt is attached
1535 * @parent_nd : if non-null, detach the source_mnt from its parent and
1536 * store the parent mount and mountpoint dentry.
1537 * (done when source_mnt is moved)
Ram Paib90fa9a2005-11-07 17:19:50 -05001538 *
1539 * NOTE: in the table below explains the semantics when a source mount
1540 * of a given type is attached to a destination mount of a given type.
Ram Pai9676f0c2005-11-07 17:21:20 -05001541 * ---------------------------------------------------------------------------
1542 * | BIND MOUNT OPERATION |
1543 * |**************************************************************************
1544 * | source-->| shared | private | slave | unbindable |
1545 * | dest | | | | |
1546 * | | | | | | |
1547 * | v | | | | |
1548 * |**************************************************************************
1549 * | shared | shared (++) | shared (+) | shared(+++)| invalid |
1550 * | | | | | |
1551 * |non-shared| shared (+) | private | slave (*) | invalid |
1552 * ***************************************************************************
Ram Paib90fa9a2005-11-07 17:19:50 -05001553 * A bind operation clones the source mount and mounts the clone on the
1554 * destination mount.
1555 *
1556 * (++) the cloned mount is propagated to all the mounts in the propagation
1557 * tree of the destination mount and the cloned mount is added to
1558 * the peer group of the source mount.
1559 * (+) the cloned mount is created under the destination mount and is marked
1560 * as shared. The cloned mount is added to the peer group of the source
1561 * mount.
Ram Pai5afe0022005-11-07 17:21:01 -05001562 * (+++) the mount is propagated to all the mounts in the propagation tree
1563 * of the destination mount and the cloned mount is made slave
1564 * of the same master as that of the source mount. The cloned mount
1565 * is marked as 'shared and slave'.
1566 * (*) the cloned mount is made a slave of the same master as that of the
1567 * source mount.
1568 *
Ram Pai9676f0c2005-11-07 17:21:20 -05001569 * ---------------------------------------------------------------------------
1570 * | MOVE MOUNT OPERATION |
1571 * |**************************************************************************
1572 * | source-->| shared | private | slave | unbindable |
1573 * | dest | | | | |
1574 * | | | | | | |
1575 * | v | | | | |
1576 * |**************************************************************************
1577 * | shared | shared (+) | shared (+) | shared(+++) | invalid |
1578 * | | | | | |
1579 * |non-shared| shared (+*) | private | slave (*) | unbindable |
1580 * ***************************************************************************
Ram Pai5afe0022005-11-07 17:21:01 -05001581 *
1582 * (+) the mount is moved to the destination. And is then propagated to
1583 * all the mounts in the propagation tree of the destination mount.
Ram Pai21444402005-11-07 17:20:03 -05001584 * (+*) the mount is moved to the destination.
Ram Pai5afe0022005-11-07 17:21:01 -05001585 * (+++) the mount is moved to the destination and is then propagated to
1586 * all the mounts belonging to the destination mount's propagation tree.
1587 * the mount is marked as 'shared and slave'.
1588 * (*) the mount continues to be a slave at the new location.
Ram Paib90fa9a2005-11-07 17:19:50 -05001589 *
1590 * if the source mount is a tree, the operations explained above is
1591 * applied to each mount in the tree.
1592 * Must be called without spinlocks held, since this function can sleep
1593 * in allocations.
1594 */
Al Viro0fb54e52011-11-24 19:59:16 -05001595static int attach_recursive_mnt(struct mount *source_mnt,
Al Viro1a390682008-03-21 20:48:19 -04001596 struct path *path, struct path *parent_path)
Ram Paib90fa9a2005-11-07 17:19:50 -05001597{
1598 LIST_HEAD(tree_list);
Al Viroa8d56d82011-11-24 23:59:29 -05001599 struct mount *dest_mnt = real_mount(path->mnt);
Al Viro1a390682008-03-21 20:48:19 -04001600 struct dentry *dest_dentry = path->dentry;
Al Viro315fc832011-11-24 18:57:30 -05001601 struct mount *child, *p;
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001602 int err;
Ram Paib90fa9a2005-11-07 17:19:50 -05001603
Al Viroa8d56d82011-11-24 23:59:29 -05001604 if (IS_MNT_SHARED(&dest_mnt->mnt)) {
Al Viro0fb54e52011-11-24 19:59:16 -05001605 err = invent_group_ids(source_mnt, true);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001606 if (err)
1607 goto out;
1608 }
Al Viroa8d56d82011-11-24 23:59:29 -05001609 err = propagate_mnt(dest_mnt, dest_dentry, source_mnt, &tree_list);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001610 if (err)
1611 goto out_cleanup_ids;
Ram Paib90fa9a2005-11-07 17:19:50 -05001612
Nick Piggin99b7db72010-08-18 04:37:39 +10001613 br_write_lock(vfsmount_lock);
Al Virodf1a1ad2010-01-16 12:57:40 -05001614
Al Viroa8d56d82011-11-24 23:59:29 -05001615 if (IS_MNT_SHARED(&dest_mnt->mnt)) {
Al Viro0fb54e52011-11-24 19:59:16 -05001616 for (p = source_mnt; p; p = next_mnt(p, &source_mnt->mnt))
Al Viro0f0afb12011-11-24 20:43:10 -05001617 set_mnt_shared(p);
Ram Paib90fa9a2005-11-07 17:19:50 -05001618 }
Al Viro1a390682008-03-21 20:48:19 -04001619 if (parent_path) {
Al Viro0fb54e52011-11-24 19:59:16 -05001620 detach_mnt(source_mnt, parent_path);
1621 attach_mnt(source_mnt, path);
Al Viro143c8c92011-11-25 00:46:35 -05001622 touch_mnt_namespace(source_mnt->mnt_ns);
Ram Pai21444402005-11-07 17:20:03 -05001623 } else {
Al Viro14cf1fa2011-11-25 00:01:17 -05001624 mnt_set_mountpoint(dest_mnt, dest_dentry, source_mnt);
Al Viro0fb54e52011-11-24 19:59:16 -05001625 commit_tree(source_mnt);
Ram Pai21444402005-11-07 17:20:03 -05001626 }
Ram Paib90fa9a2005-11-07 17:19:50 -05001627
Al Viro1b8e5562011-11-24 21:01:32 -05001628 list_for_each_entry_safe(child, p, &tree_list, mnt_hash) {
1629 list_del_init(&child->mnt_hash);
Al Viro4b2619a2011-11-24 19:47:15 -05001630 commit_tree(child);
Ram Paib90fa9a2005-11-07 17:19:50 -05001631 }
Nick Piggin99b7db72010-08-18 04:37:39 +10001632 br_write_unlock(vfsmount_lock);
1633
Ram Paib90fa9a2005-11-07 17:19:50 -05001634 return 0;
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001635
1636 out_cleanup_ids:
Al Viroa8d56d82011-11-24 23:59:29 -05001637 if (IS_MNT_SHARED(&dest_mnt->mnt))
Al Viro0fb54e52011-11-24 19:59:16 -05001638 cleanup_group_ids(source_mnt, NULL);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001639 out:
1640 return err;
Ram Paib90fa9a2005-11-07 17:19:50 -05001641}
1642
Al Virob12cea92011-03-18 08:55:38 -04001643static int lock_mount(struct path *path)
1644{
1645 struct vfsmount *mnt;
1646retry:
1647 mutex_lock(&path->dentry->d_inode->i_mutex);
1648 if (unlikely(cant_mount(path->dentry))) {
1649 mutex_unlock(&path->dentry->d_inode->i_mutex);
1650 return -ENOENT;
1651 }
1652 down_write(&namespace_sem);
1653 mnt = lookup_mnt(path);
1654 if (likely(!mnt))
1655 return 0;
1656 up_write(&namespace_sem);
1657 mutex_unlock(&path->dentry->d_inode->i_mutex);
1658 path_put(path);
1659 path->mnt = mnt;
1660 path->dentry = dget(mnt->mnt_root);
1661 goto retry;
1662}
1663
1664static void unlock_mount(struct path *path)
1665{
1666 up_write(&namespace_sem);
1667 mutex_unlock(&path->dentry->d_inode->i_mutex);
1668}
1669
Al Viro95bc5f22011-11-25 00:30:56 -05001670static int graft_tree(struct mount *mnt, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671{
Al Viro95bc5f22011-11-25 00:30:56 -05001672 if (mnt->mnt.mnt_sb->s_flags & MS_NOUSER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 return -EINVAL;
1674
Al Viro8c3ee422008-03-22 18:00:39 -04001675 if (S_ISDIR(path->dentry->d_inode->i_mode) !=
Al Viro95bc5f22011-11-25 00:30:56 -05001676 S_ISDIR(mnt->mnt.mnt_root->d_inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 return -ENOTDIR;
1678
Al Virob12cea92011-03-18 08:55:38 -04001679 if (d_unlinked(path->dentry))
1680 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Al Viro95bc5f22011-11-25 00:30:56 -05001682 return attach_recursive_mnt(mnt, path, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683}
1684
1685/*
Valerie Aurora7a2e8a82010-08-26 11:07:22 -07001686 * Sanity check the flags to change_mnt_propagation.
1687 */
1688
1689static int flags_to_propagation_type(int flags)
1690{
Roman Borisov7c6e9842011-05-25 16:26:48 -07001691 int type = flags & ~(MS_REC | MS_SILENT);
Valerie Aurora7a2e8a82010-08-26 11:07:22 -07001692
1693 /* Fail if any non-propagation flags are set */
1694 if (type & ~(MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
1695 return 0;
1696 /* Only one propagation flag should be set */
1697 if (!is_power_of_2(type))
1698 return 0;
1699 return type;
1700}
1701
1702/*
Ram Pai07b20882005-11-07 17:19:07 -05001703 * recursively change the type of the mountpoint.
1704 */
Al Viro0a0d8a42008-08-02 00:55:27 -04001705static int do_change_type(struct path *path, int flag)
Ram Pai07b20882005-11-07 17:19:07 -05001706{
Al Viro315fc832011-11-24 18:57:30 -05001707 struct mount *m;
Al Viro4b8b21f2011-11-24 19:54:23 -05001708 struct mount *mnt = real_mount(path->mnt);
Ram Pai07b20882005-11-07 17:19:07 -05001709 int recurse = flag & MS_REC;
Valerie Aurora7a2e8a82010-08-26 11:07:22 -07001710 int type;
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001711 int err = 0;
Ram Pai07b20882005-11-07 17:19:07 -05001712
Miklos Szerediee6f9582007-05-08 00:30:40 -07001713 if (!capable(CAP_SYS_ADMIN))
1714 return -EPERM;
1715
Al Viro2d92ab32008-08-02 00:51:11 -04001716 if (path->dentry != path->mnt->mnt_root)
Ram Pai07b20882005-11-07 17:19:07 -05001717 return -EINVAL;
1718
Valerie Aurora7a2e8a82010-08-26 11:07:22 -07001719 type = flags_to_propagation_type(flag);
1720 if (!type)
1721 return -EINVAL;
1722
Ram Pai07b20882005-11-07 17:19:07 -05001723 down_write(&namespace_sem);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001724 if (type == MS_SHARED) {
1725 err = invent_group_ids(mnt, recurse);
1726 if (err)
1727 goto out_unlock;
1728 }
1729
Nick Piggin99b7db72010-08-18 04:37:39 +10001730 br_write_lock(vfsmount_lock);
Al Viro4b8b21f2011-11-24 19:54:23 -05001731 for (m = mnt; m; m = (recurse ? next_mnt(m, &mnt->mnt) : NULL))
Al Viro0f0afb12011-11-24 20:43:10 -05001732 change_mnt_propagation(m, type);
Nick Piggin99b7db72010-08-18 04:37:39 +10001733 br_write_unlock(vfsmount_lock);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001734
1735 out_unlock:
Ram Pai07b20882005-11-07 17:19:07 -05001736 up_write(&namespace_sem);
Miklos Szeredi719f5d72008-03-27 13:06:23 +01001737 return err;
Ram Pai07b20882005-11-07 17:19:07 -05001738}
1739
1740/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 * do loopback mount.
1742 */
Al Viro0a0d8a42008-08-02 00:55:27 -04001743static int do_loopback(struct path *path, char *old_name,
Eric Sandeen2dafe1c2008-02-08 04:22:12 -08001744 int recurse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745{
Al Virob12cea92011-03-18 08:55:38 -04001746 LIST_HEAD(umount_list);
Al Viro2d92ab32008-08-02 00:51:11 -04001747 struct path old_path;
Al Viro87129cc2011-11-24 21:24:27 -05001748 struct mount *mnt = NULL, *old;
Al Viro2d92ab32008-08-02 00:51:11 -04001749 int err = mount_is_safe(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 if (err)
1751 return err;
1752 if (!old_name || !*old_name)
1753 return -EINVAL;
Trond Myklebust815d4052011-09-26 20:36:09 -04001754 err = kern_path(old_name, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 if (err)
1756 return err;
1757
Al Virob12cea92011-03-18 08:55:38 -04001758 err = lock_mount(path);
1759 if (err)
Jan Blunck4ac91372008-02-14 19:34:32 -08001760 goto out;
Ram Pai9676f0c2005-11-07 17:21:20 -05001761
Al Viro87129cc2011-11-24 21:24:27 -05001762 old = real_mount(old_path.mnt);
1763
Al Virob12cea92011-03-18 08:55:38 -04001764 err = -EINVAL;
1765 if (IS_MNT_UNBINDABLE(old_path.mnt))
1766 goto out2;
1767
Al Viro143c8c92011-11-25 00:46:35 -05001768 if (!check_mnt(real_mount(path->mnt)) || !check_mnt(old))
Al Virob12cea92011-03-18 08:55:38 -04001769 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Al Viroccd48bc2005-11-07 17:15:04 -05001771 err = -ENOMEM;
1772 if (recurse)
Al Viro87129cc2011-11-24 21:24:27 -05001773 mnt = copy_tree(old, old_path.dentry, 0);
Al Viroccd48bc2005-11-07 17:15:04 -05001774 else
Al Viro87129cc2011-11-24 21:24:27 -05001775 mnt = clone_mnt(old, old_path.dentry, 0);
Al Viroccd48bc2005-11-07 17:15:04 -05001776
1777 if (!mnt)
Al Virob12cea92011-03-18 08:55:38 -04001778 goto out2;
Al Viroccd48bc2005-11-07 17:15:04 -05001779
Al Viro95bc5f22011-11-25 00:30:56 -05001780 err = graft_tree(mnt, path);
Al Viroccd48bc2005-11-07 17:15:04 -05001781 if (err) {
Nick Piggin99b7db72010-08-18 04:37:39 +10001782 br_write_lock(vfsmount_lock);
Al Viro761d5c32011-11-24 21:07:43 -05001783 umount_tree(mnt, 0, &umount_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10001784 br_write_unlock(vfsmount_lock);
Ram Pai5b83d2c5c2005-11-07 17:16:29 -05001785 }
Al Virob12cea92011-03-18 08:55:38 -04001786out2:
1787 unlock_mount(path);
1788 release_mounts(&umount_list);
Al Viroccd48bc2005-11-07 17:15:04 -05001789out:
Al Viro2d92ab32008-08-02 00:51:11 -04001790 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 return err;
1792}
1793
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08001794static int change_mount_flags(struct vfsmount *mnt, int ms_flags)
1795{
1796 int error = 0;
1797 int readonly_request = 0;
1798
1799 if (ms_flags & MS_RDONLY)
1800 readonly_request = 1;
1801 if (readonly_request == __mnt_is_readonly(mnt))
1802 return 0;
1803
1804 if (readonly_request)
Al Viro83adc752011-11-24 22:37:54 -05001805 error = mnt_make_readonly(real_mount(mnt));
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08001806 else
Al Viro83adc752011-11-24 22:37:54 -05001807 __mnt_unmake_readonly(real_mount(mnt));
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08001808 return error;
1809}
1810
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811/*
1812 * change filesystem flags. dir should be a physical root of filesystem.
1813 * If you've mounted a non-root directory somewhere and want to do remount
1814 * on it - tough luck.
1815 */
Al Viro0a0d8a42008-08-02 00:55:27 -04001816static int do_remount(struct path *path, int flags, int mnt_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 void *data)
1818{
1819 int err;
Al Viro2d92ab32008-08-02 00:51:11 -04001820 struct super_block *sb = path->mnt->mnt_sb;
Al Viro143c8c92011-11-25 00:46:35 -05001821 struct mount *mnt = real_mount(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
1823 if (!capable(CAP_SYS_ADMIN))
1824 return -EPERM;
1825
Al Viro143c8c92011-11-25 00:46:35 -05001826 if (!check_mnt(mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 return -EINVAL;
1828
Al Viro2d92ab32008-08-02 00:51:11 -04001829 if (path->dentry != path->mnt->mnt_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 return -EINVAL;
1831
Eric Parisff36fe22011-03-03 16:09:14 -05001832 err = security_sb_remount(sb, data);
1833 if (err)
1834 return err;
1835
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 down_write(&sb->s_umount);
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08001837 if (flags & MS_BIND)
Al Viro2d92ab32008-08-02 00:51:11 -04001838 err = change_mount_flags(path->mnt, flags);
Al Viro4aa98cf2009-05-08 13:36:58 -04001839 else
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08001840 err = do_remount_sb(sb, flags, data, 0);
Al Viro7b43a792010-01-16 13:01:26 -05001841 if (!err) {
Nick Piggin99b7db72010-08-18 04:37:39 +10001842 br_write_lock(vfsmount_lock);
Al Viro143c8c92011-11-25 00:46:35 -05001843 mnt_flags |= mnt->mnt.mnt_flags & MNT_PROPAGATION_MASK;
1844 mnt->mnt.mnt_flags = mnt_flags;
Nick Piggin99b7db72010-08-18 04:37:39 +10001845 br_write_unlock(vfsmount_lock);
Al Viro7b43a792010-01-16 13:01:26 -05001846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 up_write(&sb->s_umount);
Dan Williams0e55a7c2008-09-26 19:01:20 -07001848 if (!err) {
Nick Piggin99b7db72010-08-18 04:37:39 +10001849 br_write_lock(vfsmount_lock);
Al Viro143c8c92011-11-25 00:46:35 -05001850 touch_mnt_namespace(mnt->mnt_ns);
Nick Piggin99b7db72010-08-18 04:37:39 +10001851 br_write_unlock(vfsmount_lock);
Dan Williams0e55a7c2008-09-26 19:01:20 -07001852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 return err;
1854}
1855
Al Virocbbe3622011-11-24 20:01:19 -05001856static inline int tree_contains_unbindable(struct mount *mnt)
Ram Pai9676f0c2005-11-07 17:21:20 -05001857{
Al Viro315fc832011-11-24 18:57:30 -05001858 struct mount *p;
Al Virocbbe3622011-11-24 20:01:19 -05001859 for (p = mnt; p; p = next_mnt(p, &mnt->mnt)) {
Al Viro315fc832011-11-24 18:57:30 -05001860 if (IS_MNT_UNBINDABLE(&p->mnt))
Ram Pai9676f0c2005-11-07 17:21:20 -05001861 return 1;
1862 }
1863 return 0;
1864}
1865
Al Viro0a0d8a42008-08-02 00:55:27 -04001866static int do_move_mount(struct path *path, char *old_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867{
Al Viro2d92ab32008-08-02 00:51:11 -04001868 struct path old_path, parent_path;
Al Viro676da582011-11-24 21:47:05 -05001869 struct mount *p;
Al Viro0fb54e52011-11-24 19:59:16 -05001870 struct mount *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 int err = 0;
1872 if (!capable(CAP_SYS_ADMIN))
1873 return -EPERM;
1874 if (!old_name || !*old_name)
1875 return -EINVAL;
Al Viro2d92ab32008-08-02 00:51:11 -04001876 err = kern_path(old_name, LOOKUP_FOLLOW, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 if (err)
1878 return err;
1879
Al Virob12cea92011-03-18 08:55:38 -04001880 err = lock_mount(path);
David Howellscc53ce52011-01-14 18:45:26 +00001881 if (err < 0)
1882 goto out;
1883
Al Viro143c8c92011-11-25 00:46:35 -05001884 old = real_mount(old_path.mnt);
1885
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 err = -EINVAL;
Al Viro143c8c92011-11-25 00:46:35 -05001887 if (!check_mnt(real_mount(path->mnt)) || !check_mnt(old))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 goto out1;
1889
Alexey Dobriyanf3da3922009-05-04 03:32:03 +04001890 if (d_unlinked(path->dentry))
Ram Pai21444402005-11-07 17:20:03 -05001891 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
1893 err = -EINVAL;
Al Viro2d92ab32008-08-02 00:51:11 -04001894 if (old_path.dentry != old_path.mnt->mnt_root)
Ram Pai21444402005-11-07 17:20:03 -05001895 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
Al Viro676da582011-11-24 21:47:05 -05001897 if (!mnt_has_parent(old))
Ram Pai21444402005-11-07 17:20:03 -05001898 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
Al Viro2d92ab32008-08-02 00:51:11 -04001900 if (S_ISDIR(path->dentry->d_inode->i_mode) !=
1901 S_ISDIR(old_path.dentry->d_inode->i_mode))
Ram Pai21444402005-11-07 17:20:03 -05001902 goto out1;
1903 /*
1904 * Don't move a mount residing in a shared parent.
1905 */
Al Viro0714a532011-11-24 22:19:58 -05001906 if (IS_MNT_SHARED(&old->mnt_parent->mnt))
Ram Pai21444402005-11-07 17:20:03 -05001907 goto out1;
Ram Pai9676f0c2005-11-07 17:21:20 -05001908 /*
1909 * Don't move a mount tree containing unbindable mounts to a destination
1910 * mount which is shared.
1911 */
Al Viro2d92ab32008-08-02 00:51:11 -04001912 if (IS_MNT_SHARED(path->mnt) &&
Al Virocbbe3622011-11-24 20:01:19 -05001913 tree_contains_unbindable(old))
Ram Pai9676f0c2005-11-07 17:21:20 -05001914 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 err = -ELOOP;
Al Viro0714a532011-11-24 22:19:58 -05001916 for (p = real_mount(path->mnt); mnt_has_parent(p); p = p->mnt_parent)
Al Viro676da582011-11-24 21:47:05 -05001917 if (p == old)
Ram Pai21444402005-11-07 17:20:03 -05001918 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Al Viro0fb54e52011-11-24 19:59:16 -05001920 err = attach_recursive_mnt(old, path, &parent_path);
Jan Blunck4ac91372008-02-14 19:34:32 -08001921 if (err)
Ram Pai21444402005-11-07 17:20:03 -05001922 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
1924 /* if the mount is moved, it should no longer be expire
1925 * automatically */
Al Viro6776db3d2011-11-25 00:22:05 -05001926 list_del_init(&old->mnt_expire);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927out1:
Al Virob12cea92011-03-18 08:55:38 -04001928 unlock_mount(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 if (!err)
Al Viro1a390682008-03-21 20:48:19 -04001931 path_put(&parent_path);
Al Viro2d92ab32008-08-02 00:51:11 -04001932 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 return err;
1934}
1935
Al Viro9d412a42011-03-17 22:08:28 -04001936static struct vfsmount *fs_set_subtype(struct vfsmount *mnt, const char *fstype)
1937{
1938 int err;
1939 const char *subtype = strchr(fstype, '.');
1940 if (subtype) {
1941 subtype++;
1942 err = -EINVAL;
1943 if (!subtype[0])
1944 goto err;
1945 } else
1946 subtype = "";
1947
1948 mnt->mnt_sb->s_subtype = kstrdup(subtype, GFP_KERNEL);
1949 err = -ENOMEM;
1950 if (!mnt->mnt_sb->s_subtype)
1951 goto err;
1952 return mnt;
1953
1954 err:
1955 mntput(mnt);
1956 return ERR_PTR(err);
1957}
1958
Al Viro79e801a2011-12-12 23:07:05 -05001959static struct vfsmount *
Al Viro9d412a42011-03-17 22:08:28 -04001960do_kern_mount(const char *fstype, int flags, const char *name, void *data)
1961{
1962 struct file_system_type *type = get_fs_type(fstype);
1963 struct vfsmount *mnt;
1964 if (!type)
1965 return ERR_PTR(-ENODEV);
1966 mnt = vfs_kern_mount(type, flags, name, data);
1967 if (!IS_ERR(mnt) && (type->fs_flags & FS_HAS_SUBTYPE) &&
1968 !mnt->mnt_sb->s_subtype)
1969 mnt = fs_set_subtype(mnt, fstype);
1970 put_filesystem(type);
1971 return mnt;
1972}
Al Viro9d412a42011-03-17 22:08:28 -04001973
1974/*
1975 * add a mount into a namespace's mount tree
1976 */
Al Viro95bc5f22011-11-25 00:30:56 -05001977static int do_add_mount(struct mount *newmnt, struct path *path, int mnt_flags)
Al Viro9d412a42011-03-17 22:08:28 -04001978{
1979 int err;
1980
1981 mnt_flags &= ~(MNT_SHARED | MNT_WRITE_HOLD | MNT_INTERNAL);
1982
Al Virob12cea92011-03-18 08:55:38 -04001983 err = lock_mount(path);
1984 if (err)
1985 return err;
Al Viro9d412a42011-03-17 22:08:28 -04001986
1987 err = -EINVAL;
Al Viro143c8c92011-11-25 00:46:35 -05001988 if (!(mnt_flags & MNT_SHRINKABLE) && !check_mnt(real_mount(path->mnt)))
Al Viro9d412a42011-03-17 22:08:28 -04001989 goto unlock;
1990
1991 /* Refuse the same filesystem on the same mount point */
1992 err = -EBUSY;
Al Viro95bc5f22011-11-25 00:30:56 -05001993 if (path->mnt->mnt_sb == newmnt->mnt.mnt_sb &&
Al Viro9d412a42011-03-17 22:08:28 -04001994 path->mnt->mnt_root == path->dentry)
1995 goto unlock;
1996
1997 err = -EINVAL;
Al Viro95bc5f22011-11-25 00:30:56 -05001998 if (S_ISLNK(newmnt->mnt.mnt_root->d_inode->i_mode))
Al Viro9d412a42011-03-17 22:08:28 -04001999 goto unlock;
2000
Al Viro95bc5f22011-11-25 00:30:56 -05002001 newmnt->mnt.mnt_flags = mnt_flags;
Al Viro9d412a42011-03-17 22:08:28 -04002002 err = graft_tree(newmnt, path);
2003
2004unlock:
Al Virob12cea92011-03-18 08:55:38 -04002005 unlock_mount(path);
Al Viro9d412a42011-03-17 22:08:28 -04002006 return err;
2007}
Al Virob1e75df2011-01-17 01:47:59 -05002008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009/*
2010 * create a new mount for userspace and request it to be added into the
2011 * namespace's tree
2012 */
Al Viro0a0d8a42008-08-02 00:55:27 -04002013static int do_new_mount(struct path *path, char *type, int flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 int mnt_flags, char *name, void *data)
2015{
2016 struct vfsmount *mnt;
Al Viro15f9a3f2011-01-17 01:41:58 -05002017 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Vegard Nossumeca6f532009-09-18 13:05:45 -07002019 if (!type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 return -EINVAL;
2021
2022 /* we need capabilities... */
2023 if (!capable(CAP_SYS_ADMIN))
2024 return -EPERM;
2025
2026 mnt = do_kern_mount(type, flags, name, data);
2027 if (IS_ERR(mnt))
2028 return PTR_ERR(mnt);
2029
Al Viro95bc5f22011-11-25 00:30:56 -05002030 err = do_add_mount(real_mount(mnt), path, mnt_flags);
Al Viro15f9a3f2011-01-17 01:41:58 -05002031 if (err)
2032 mntput(mnt);
2033 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034}
2035
Al Viro19a167a2011-01-17 01:35:23 -05002036int finish_automount(struct vfsmount *m, struct path *path)
2037{
Al Viro6776db3d2011-11-25 00:22:05 -05002038 struct mount *mnt = real_mount(m);
Al Viro19a167a2011-01-17 01:35:23 -05002039 int err;
2040 /* The new mount record should have at least 2 refs to prevent it being
2041 * expired before we get a chance to add it
2042 */
Al Viro6776db3d2011-11-25 00:22:05 -05002043 BUG_ON(mnt_get_count(mnt) < 2);
Al Viro19a167a2011-01-17 01:35:23 -05002044
2045 if (m->mnt_sb == path->mnt->mnt_sb &&
2046 m->mnt_root == path->dentry) {
Al Virob1e75df2011-01-17 01:47:59 -05002047 err = -ELOOP;
2048 goto fail;
Al Viro19a167a2011-01-17 01:35:23 -05002049 }
2050
Al Viro95bc5f22011-11-25 00:30:56 -05002051 err = do_add_mount(mnt, path, path->mnt->mnt_flags | MNT_SHRINKABLE);
Al Virob1e75df2011-01-17 01:47:59 -05002052 if (!err)
2053 return 0;
2054fail:
2055 /* remove m from any expiration list it may be on */
Al Viro6776db3d2011-11-25 00:22:05 -05002056 if (!list_empty(&mnt->mnt_expire)) {
Al Virob1e75df2011-01-17 01:47:59 -05002057 down_write(&namespace_sem);
2058 br_write_lock(vfsmount_lock);
Al Viro6776db3d2011-11-25 00:22:05 -05002059 list_del_init(&mnt->mnt_expire);
Al Virob1e75df2011-01-17 01:47:59 -05002060 br_write_unlock(vfsmount_lock);
2061 up_write(&namespace_sem);
Al Viro19a167a2011-01-17 01:35:23 -05002062 }
Al Virob1e75df2011-01-17 01:47:59 -05002063 mntput(m);
2064 mntput(m);
Al Viro19a167a2011-01-17 01:35:23 -05002065 return err;
2066}
2067
David Howellsea5b7782011-01-14 19:10:03 +00002068/**
2069 * mnt_set_expiry - Put a mount on an expiration list
2070 * @mnt: The mount to list.
2071 * @expiry_list: The list to add the mount to.
2072 */
2073void mnt_set_expiry(struct vfsmount *mnt, struct list_head *expiry_list)
2074{
2075 down_write(&namespace_sem);
2076 br_write_lock(vfsmount_lock);
2077
Al Viro6776db3d2011-11-25 00:22:05 -05002078 list_add_tail(&real_mount(mnt)->mnt_expire, expiry_list);
David Howellsea5b7782011-01-14 19:10:03 +00002079
2080 br_write_unlock(vfsmount_lock);
2081 up_write(&namespace_sem);
2082}
2083EXPORT_SYMBOL(mnt_set_expiry);
2084
2085/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 * process a list of expirable mountpoints with the intent of discarding any
2087 * mountpoints that aren't in use and haven't been touched since last we came
2088 * here
2089 */
2090void mark_mounts_for_expiry(struct list_head *mounts)
2091{
Al Viro761d5c32011-11-24 21:07:43 -05002092 struct mount *mnt, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 LIST_HEAD(graveyard);
Al Virobcc5c7d2008-03-22 00:21:53 -04002094 LIST_HEAD(umounts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
2096 if (list_empty(mounts))
2097 return;
2098
Al Virobcc5c7d2008-03-22 00:21:53 -04002099 down_write(&namespace_sem);
Nick Piggin99b7db72010-08-18 04:37:39 +10002100 br_write_lock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
2102 /* extract from the expiration list every vfsmount that matches the
2103 * following criteria:
2104 * - only referenced by its parent vfsmount
2105 * - still marked for expiry (marked on the last call here; marks are
2106 * cleared by mntput())
2107 */
Al Viro6776db3d2011-11-25 00:22:05 -05002108 list_for_each_entry_safe(mnt, next, mounts, mnt_expire) {
Al Viro761d5c32011-11-24 21:07:43 -05002109 if (!xchg(&mnt->mnt.mnt_expiry_mark, 1) ||
Al Viro1ab59732011-11-24 21:35:16 -05002110 propagate_mount_busy(mnt, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 continue;
Al Viro6776db3d2011-11-25 00:22:05 -05002112 list_move(&mnt->mnt_expire, &graveyard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 }
Al Virobcc5c7d2008-03-22 00:21:53 -04002114 while (!list_empty(&graveyard)) {
Al Viro6776db3d2011-11-25 00:22:05 -05002115 mnt = list_first_entry(&graveyard, struct mount, mnt_expire);
Al Viro143c8c92011-11-25 00:46:35 -05002116 touch_mnt_namespace(mnt->mnt_ns);
Al Virobcc5c7d2008-03-22 00:21:53 -04002117 umount_tree(mnt, 1, &umounts);
2118 }
Nick Piggin99b7db72010-08-18 04:37:39 +10002119 br_write_unlock(vfsmount_lock);
Al Virobcc5c7d2008-03-22 00:21:53 -04002120 up_write(&namespace_sem);
2121
2122 release_mounts(&umounts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123}
2124
2125EXPORT_SYMBOL_GPL(mark_mounts_for_expiry);
2126
2127/*
Trond Myklebust5528f9112006-06-09 09:34:17 -04002128 * Ripoff of 'select_parent()'
2129 *
2130 * search the list of submounts for a given mountpoint, and move any
2131 * shrinkable submounts to the 'graveyard' list.
2132 */
Al Viro692afc32011-11-24 21:15:14 -05002133static int select_submounts(struct mount *parent, struct list_head *graveyard)
Trond Myklebust5528f9112006-06-09 09:34:17 -04002134{
Al Viro692afc32011-11-24 21:15:14 -05002135 struct mount *this_parent = parent;
Trond Myklebust5528f9112006-06-09 09:34:17 -04002136 struct list_head *next;
2137 int found = 0;
2138
2139repeat:
Al Viro6b41d532011-11-24 23:24:33 -05002140 next = this_parent->mnt_mounts.next;
Trond Myklebust5528f9112006-06-09 09:34:17 -04002141resume:
Al Viro6b41d532011-11-24 23:24:33 -05002142 while (next != &this_parent->mnt_mounts) {
Trond Myklebust5528f9112006-06-09 09:34:17 -04002143 struct list_head *tmp = next;
Al Viro6b41d532011-11-24 23:24:33 -05002144 struct mount *mnt = list_entry(tmp, struct mount, mnt_child);
Trond Myklebust5528f9112006-06-09 09:34:17 -04002145
2146 next = tmp->next;
Al Viro692afc32011-11-24 21:15:14 -05002147 if (!(mnt->mnt.mnt_flags & MNT_SHRINKABLE))
Trond Myklebust5528f9112006-06-09 09:34:17 -04002148 continue;
2149 /*
2150 * Descend a level if the d_mounts list is non-empty.
2151 */
Al Viro6b41d532011-11-24 23:24:33 -05002152 if (!list_empty(&mnt->mnt_mounts)) {
Trond Myklebust5528f9112006-06-09 09:34:17 -04002153 this_parent = mnt;
2154 goto repeat;
2155 }
2156
Al Viro1ab59732011-11-24 21:35:16 -05002157 if (!propagate_mount_busy(mnt, 1)) {
Al Viro6776db3d2011-11-25 00:22:05 -05002158 list_move_tail(&mnt->mnt_expire, graveyard);
Trond Myklebust5528f9112006-06-09 09:34:17 -04002159 found++;
2160 }
2161 }
2162 /*
2163 * All done at this level ... ascend and resume the search
2164 */
2165 if (this_parent != parent) {
Al Viro6b41d532011-11-24 23:24:33 -05002166 next = this_parent->mnt_child.next;
Al Viro0714a532011-11-24 22:19:58 -05002167 this_parent = this_parent->mnt_parent;
Trond Myklebust5528f9112006-06-09 09:34:17 -04002168 goto resume;
2169 }
2170 return found;
2171}
2172
2173/*
2174 * process a list of expirable mountpoints with the intent of discarding any
2175 * submounts of a specific parent mountpoint
Nick Piggin99b7db72010-08-18 04:37:39 +10002176 *
2177 * vfsmount_lock must be held for write
Trond Myklebust5528f9112006-06-09 09:34:17 -04002178 */
Al Viro692afc32011-11-24 21:15:14 -05002179static void shrink_submounts(struct mount *mnt, struct list_head *umounts)
Trond Myklebust5528f9112006-06-09 09:34:17 -04002180{
2181 LIST_HEAD(graveyard);
Al Viro761d5c32011-11-24 21:07:43 -05002182 struct mount *m;
Trond Myklebust5528f9112006-06-09 09:34:17 -04002183
Trond Myklebust5528f9112006-06-09 09:34:17 -04002184 /* extract submounts of 'mountpoint' from the expiration list */
Al Viroc35038b2008-03-22 00:46:23 -04002185 while (select_submounts(mnt, &graveyard)) {
Al Virobcc5c7d2008-03-22 00:21:53 -04002186 while (!list_empty(&graveyard)) {
Al Viro761d5c32011-11-24 21:07:43 -05002187 m = list_first_entry(&graveyard, struct mount,
Al Viro6776db3d2011-11-25 00:22:05 -05002188 mnt_expire);
Al Viro143c8c92011-11-25 00:46:35 -05002189 touch_mnt_namespace(m->mnt_ns);
Eric W. Biedermanafef80b2008-11-12 13:26:54 -08002190 umount_tree(m, 1, umounts);
Al Virobcc5c7d2008-03-22 00:21:53 -04002191 }
2192 }
Trond Myklebust5528f9112006-06-09 09:34:17 -04002193}
2194
Trond Myklebust5528f9112006-06-09 09:34:17 -04002195/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 * Some copy_from_user() implementations do not return the exact number of
2197 * bytes remaining to copy on a fault. But copy_mount_options() requires that.
2198 * Note that this function differs from copy_from_user() in that it will oops
2199 * on bad values of `to', rather than returning a short copy.
2200 */
Ram Paib58fed82005-11-07 17:16:09 -05002201static long exact_copy_from_user(void *to, const void __user * from,
2202 unsigned long n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203{
2204 char *t = to;
2205 const char __user *f = from;
2206 char c;
2207
2208 if (!access_ok(VERIFY_READ, from, n))
2209 return n;
2210
2211 while (n) {
2212 if (__get_user(c, f)) {
2213 memset(t, 0, n);
2214 break;
2215 }
2216 *t++ = c;
2217 f++;
2218 n--;
2219 }
2220 return n;
2221}
2222
Ram Paib58fed82005-11-07 17:16:09 -05002223int copy_mount_options(const void __user * data, unsigned long *where)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224{
2225 int i;
2226 unsigned long page;
2227 unsigned long size;
Ram Paib58fed82005-11-07 17:16:09 -05002228
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 *where = 0;
2230 if (!data)
2231 return 0;
2232
2233 if (!(page = __get_free_page(GFP_KERNEL)))
2234 return -ENOMEM;
2235
2236 /* We only care that *some* data at the address the user
2237 * gave us is valid. Just in case, we'll zero
2238 * the remainder of the page.
2239 */
2240 /* copy_from_user cannot cross TASK_SIZE ! */
2241 size = TASK_SIZE - (unsigned long)data;
2242 if (size > PAGE_SIZE)
2243 size = PAGE_SIZE;
2244
2245 i = size - exact_copy_from_user((void *)page, data, size);
2246 if (!i) {
Ram Paib58fed82005-11-07 17:16:09 -05002247 free_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 return -EFAULT;
2249 }
2250 if (i != PAGE_SIZE)
2251 memset((char *)page + i, 0, PAGE_SIZE - i);
2252 *where = page;
2253 return 0;
2254}
2255
Vegard Nossumeca6f532009-09-18 13:05:45 -07002256int copy_mount_string(const void __user *data, char **where)
2257{
2258 char *tmp;
2259
2260 if (!data) {
2261 *where = NULL;
2262 return 0;
2263 }
2264
2265 tmp = strndup_user(data, PAGE_SIZE);
2266 if (IS_ERR(tmp))
2267 return PTR_ERR(tmp);
2268
2269 *where = tmp;
2270 return 0;
2271}
2272
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273/*
2274 * Flags is a 32-bit value that allows up to 31 non-fs dependent flags to
2275 * be given to the mount() call (ie: read-only, no-dev, no-suid etc).
2276 *
2277 * data is a (void *) that can point to any structure up to
2278 * PAGE_SIZE-1 bytes, which can contain arbitrary fs-dependent
2279 * information (or be NULL).
2280 *
2281 * Pre-0.97 versions of mount() didn't have a flags word.
2282 * When the flags word was introduced its top half was required
2283 * to have the magic value 0xC0ED, and this remained so until 2.4.0-test9.
2284 * Therefore, if this magic number is present, it carries no information
2285 * and must be discarded.
2286 */
Ram Paib58fed82005-11-07 17:16:09 -05002287long do_mount(char *dev_name, char *dir_name, char *type_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 unsigned long flags, void *data_page)
2289{
Al Viro2d92ab32008-08-02 00:51:11 -04002290 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 int retval = 0;
2292 int mnt_flags = 0;
2293
2294 /* Discard magic */
2295 if ((flags & MS_MGC_MSK) == MS_MGC_VAL)
2296 flags &= ~MS_MGC_MSK;
2297
2298 /* Basic sanity checks */
2299
2300 if (!dir_name || !*dir_name || !memchr(dir_name, 0, PAGE_SIZE))
2301 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
2303 if (data_page)
2304 ((char *)data_page)[PAGE_SIZE - 1] = 0;
2305
Tetsuo Handaa27ab9f22009-10-04 21:49:49 +09002306 /* ... and get the mountpoint */
2307 retval = kern_path(dir_name, LOOKUP_FOLLOW, &path);
2308 if (retval)
2309 return retval;
2310
2311 retval = security_sb_mount(dev_name, &path,
2312 type_page, flags, data_page);
2313 if (retval)
2314 goto dput_out;
2315
Andi Kleen613cbe32009-04-19 18:40:43 +02002316 /* Default to relatime unless overriden */
2317 if (!(flags & MS_NOATIME))
2318 mnt_flags |= MNT_RELATIME;
Matthew Garrett0a1c01c2009-03-26 17:53:14 +00002319
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 /* Separate the per-mountpoint flags */
2321 if (flags & MS_NOSUID)
2322 mnt_flags |= MNT_NOSUID;
2323 if (flags & MS_NODEV)
2324 mnt_flags |= MNT_NODEV;
2325 if (flags & MS_NOEXEC)
2326 mnt_flags |= MNT_NOEXEC;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08002327 if (flags & MS_NOATIME)
2328 mnt_flags |= MNT_NOATIME;
2329 if (flags & MS_NODIRATIME)
2330 mnt_flags |= MNT_NODIRATIME;
Matthew Garrettd0adde52009-03-26 17:49:56 +00002331 if (flags & MS_STRICTATIME)
2332 mnt_flags &= ~(MNT_RELATIME | MNT_NOATIME);
Dave Hansen2e4b7fc2008-02-15 14:38:00 -08002333 if (flags & MS_RDONLY)
2334 mnt_flags |= MNT_READONLY;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08002335
Al Viro7a4dec52010-08-09 12:05:43 -04002336 flags &= ~(MS_NOSUID | MS_NOEXEC | MS_NODEV | MS_ACTIVE | MS_BORN |
Matthew Garrettd0adde52009-03-26 17:49:56 +00002337 MS_NOATIME | MS_NODIRATIME | MS_RELATIME| MS_KERNMOUNT |
2338 MS_STRICTATIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 if (flags & MS_REMOUNT)
Al Viro2d92ab32008-08-02 00:51:11 -04002341 retval = do_remount(&path, flags & ~MS_REMOUNT, mnt_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 data_page);
2343 else if (flags & MS_BIND)
Al Viro2d92ab32008-08-02 00:51:11 -04002344 retval = do_loopback(&path, dev_name, flags & MS_REC);
Ram Pai9676f0c2005-11-07 17:21:20 -05002345 else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
Al Viro2d92ab32008-08-02 00:51:11 -04002346 retval = do_change_type(&path, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 else if (flags & MS_MOVE)
Al Viro2d92ab32008-08-02 00:51:11 -04002348 retval = do_move_mount(&path, dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 else
Al Viro2d92ab32008-08-02 00:51:11 -04002350 retval = do_new_mount(&path, type_page, flags, mnt_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 dev_name, data_page);
2352dput_out:
Al Viro2d92ab32008-08-02 00:51:11 -04002353 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 return retval;
2355}
2356
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002357static struct mnt_namespace *alloc_mnt_ns(void)
2358{
2359 struct mnt_namespace *new_ns;
2360
2361 new_ns = kmalloc(sizeof(struct mnt_namespace), GFP_KERNEL);
2362 if (!new_ns)
2363 return ERR_PTR(-ENOMEM);
2364 atomic_set(&new_ns->count, 1);
2365 new_ns->root = NULL;
2366 INIT_LIST_HEAD(&new_ns->list);
2367 init_waitqueue_head(&new_ns->poll);
2368 new_ns->event = 0;
2369 return new_ns;
2370}
2371
Al Virof03c6592011-01-14 22:30:21 -05002372void mnt_make_longterm(struct vfsmount *mnt)
2373{
Al Viro83adc752011-11-24 22:37:54 -05002374 __mnt_make_longterm(real_mount(mnt));
Al Virof03c6592011-01-14 22:30:21 -05002375}
2376
Al Viro83adc752011-11-24 22:37:54 -05002377void mnt_make_shortterm(struct vfsmount *m)
Al Virof03c6592011-01-14 22:30:21 -05002378{
Al Viro7e3d0eb02011-01-16 16:32:11 -05002379#ifdef CONFIG_SMP
Al Viro83adc752011-11-24 22:37:54 -05002380 struct mount *mnt = real_mount(m);
Al Viro68e8a9f2011-11-24 22:53:09 -05002381 if (atomic_add_unless(&mnt->mnt_longterm, -1, 1))
Al Virof03c6592011-01-14 22:30:21 -05002382 return;
2383 br_write_lock(vfsmount_lock);
Al Viro68e8a9f2011-11-24 22:53:09 -05002384 atomic_dec(&mnt->mnt_longterm);
Al Virof03c6592011-01-14 22:30:21 -05002385 br_write_unlock(vfsmount_lock);
Al Viro7e3d0eb02011-01-16 16:32:11 -05002386#endif
Al Virof03c6592011-01-14 22:30:21 -05002387}
2388
JANAK DESAI741a2952006-02-07 12:59:00 -08002389/*
2390 * Allocate a new namespace structure and populate it with contents
2391 * copied from the namespace of the passed in task structure.
2392 */
Badari Pulavartye3222c42007-05-08 00:25:21 -07002393static struct mnt_namespace *dup_mnt_ns(struct mnt_namespace *mnt_ns,
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002394 struct fs_struct *fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002396 struct mnt_namespace *new_ns;
Al Viro7f2da1e2008-05-10 20:44:54 -04002397 struct vfsmount *rootmnt = NULL, *pwdmnt = NULL;
Al Viro315fc832011-11-24 18:57:30 -05002398 struct mount *p, *q;
Al Virocb338d02011-11-24 20:55:08 -05002399 struct mount *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002401 new_ns = alloc_mnt_ns();
2402 if (IS_ERR(new_ns))
2403 return new_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
Ram Pai390c6842005-11-07 17:17:51 -05002405 down_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 /* First pass: copy the tree topology */
Al Viro87129cc2011-11-24 21:24:27 -05002407 new = copy_tree(real_mount(mnt_ns->root), mnt_ns->root->mnt_root,
Ram Pai9676f0c2005-11-07 17:21:20 -05002408 CL_COPY_ALL | CL_EXPIRE);
Al Virocb338d02011-11-24 20:55:08 -05002409 if (!new) {
Ram Pai390c6842005-11-07 17:17:51 -05002410 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 kfree(new_ns);
Julia Lawall5cc4a032008-12-01 14:34:51 -08002412 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 }
Al Virocb338d02011-11-24 20:55:08 -05002414 new_ns->root = &new->mnt;
Nick Piggin99b7db72010-08-18 04:37:39 +10002415 br_write_lock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 list_add_tail(&new_ns->list, &new_ns->root->mnt_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10002417 br_write_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
2419 /*
2420 * Second pass: switch the tsk->fs->* elements and mark new vfsmounts
2421 * as belonging to new namespace. We have already acquired a private
2422 * fs_struct, so tsk->fs->lock is not needed.
2423 */
Al Viro315fc832011-11-24 18:57:30 -05002424 p = real_mount(mnt_ns->root);
Al Virocb338d02011-11-24 20:55:08 -05002425 q = new;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 while (p) {
Al Viro143c8c92011-11-25 00:46:35 -05002427 q->mnt_ns = new_ns;
Al Viro83adc752011-11-24 22:37:54 -05002428 __mnt_make_longterm(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 if (fs) {
Al Viro315fc832011-11-24 18:57:30 -05002430 if (&p->mnt == fs->root.mnt) {
2431 fs->root.mnt = mntget(&q->mnt);
Al Viro83adc752011-11-24 22:37:54 -05002432 __mnt_make_longterm(q);
Al Viro315fc832011-11-24 18:57:30 -05002433 mnt_make_shortterm(&p->mnt);
2434 rootmnt = &p->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 }
Al Viro315fc832011-11-24 18:57:30 -05002436 if (&p->mnt == fs->pwd.mnt) {
2437 fs->pwd.mnt = mntget(&q->mnt);
Al Viro83adc752011-11-24 22:37:54 -05002438 __mnt_make_longterm(q);
Al Viro315fc832011-11-24 18:57:30 -05002439 mnt_make_shortterm(&p->mnt);
2440 pwdmnt = &p->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 }
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002443 p = next_mnt(p, mnt_ns->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 q = next_mnt(q, new_ns->root);
2445 }
Ram Pai390c6842005-11-07 17:17:51 -05002446 up_write(&namespace_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 if (rootmnt)
Al Virof03c6592011-01-14 22:30:21 -05002449 mntput(rootmnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 if (pwdmnt)
Al Virof03c6592011-01-14 22:30:21 -05002451 mntput(pwdmnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
JANAK DESAI741a2952006-02-07 12:59:00 -08002453 return new_ns;
2454}
2455
Eric W. Biederman213dd262007-07-15 23:41:15 -07002456struct mnt_namespace *copy_mnt_ns(unsigned long flags, struct mnt_namespace *ns,
Badari Pulavartye3222c42007-05-08 00:25:21 -07002457 struct fs_struct *new_fs)
JANAK DESAI741a2952006-02-07 12:59:00 -08002458{
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002459 struct mnt_namespace *new_ns;
JANAK DESAI741a2952006-02-07 12:59:00 -08002460
Badari Pulavartye3222c42007-05-08 00:25:21 -07002461 BUG_ON(!ns);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002462 get_mnt_ns(ns);
JANAK DESAI741a2952006-02-07 12:59:00 -08002463
2464 if (!(flags & CLONE_NEWNS))
Badari Pulavartye3222c42007-05-08 00:25:21 -07002465 return ns;
JANAK DESAI741a2952006-02-07 12:59:00 -08002466
Badari Pulavartye3222c42007-05-08 00:25:21 -07002467 new_ns = dup_mnt_ns(ns, new_fs);
JANAK DESAI741a2952006-02-07 12:59:00 -08002468
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002469 put_mnt_ns(ns);
Badari Pulavartye3222c42007-05-08 00:25:21 -07002470 return new_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471}
2472
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002473/**
2474 * create_mnt_ns - creates a private namespace and adds a root filesystem
2475 * @mnt: pointer to the new root filesystem mountpoint
2476 */
Al Viro6c449c82011-11-16 22:01:36 -05002477static struct mnt_namespace *create_mnt_ns(struct vfsmount *mnt)
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002478{
2479 struct mnt_namespace *new_ns;
2480
2481 new_ns = alloc_mnt_ns();
2482 if (!IS_ERR(new_ns)) {
Al Viro143c8c92011-11-25 00:46:35 -05002483 real_mount(mnt)->mnt_ns = new_ns;
Al Viro83adc752011-11-24 22:37:54 -05002484 __mnt_make_longterm(real_mount(mnt));
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002485 new_ns->root = mnt;
2486 list_add(&new_ns->list, &new_ns->root->mnt_list);
Al Viroc1334492011-11-16 16:12:14 -05002487 } else {
2488 mntput(mnt);
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002489 }
2490 return new_ns;
2491}
Trond Myklebustcf8d2c12009-06-22 15:09:13 -04002492
Al Viroea441d12011-11-16 21:43:59 -05002493struct dentry *mount_subtree(struct vfsmount *mnt, const char *name)
2494{
2495 struct mnt_namespace *ns;
Al Virod31da0f2011-11-22 12:31:21 -05002496 struct super_block *s;
Al Viroea441d12011-11-16 21:43:59 -05002497 struct path path;
2498 int err;
2499
2500 ns = create_mnt_ns(mnt);
2501 if (IS_ERR(ns))
2502 return ERR_CAST(ns);
2503
2504 err = vfs_path_lookup(mnt->mnt_root, mnt,
2505 name, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &path);
2506
2507 put_mnt_ns(ns);
2508
2509 if (err)
2510 return ERR_PTR(err);
2511
2512 /* trade a vfsmount reference for active sb one */
Al Virod31da0f2011-11-22 12:31:21 -05002513 s = path.mnt->mnt_sb;
2514 atomic_inc(&s->s_active);
Al Viroea441d12011-11-16 21:43:59 -05002515 mntput(path.mnt);
2516 /* lock the sucker */
Al Virod31da0f2011-11-22 12:31:21 -05002517 down_write(&s->s_umount);
Al Viroea441d12011-11-16 21:43:59 -05002518 /* ... and return the root of (sub)tree on it */
2519 return path.dentry;
2520}
2521EXPORT_SYMBOL(mount_subtree);
2522
Heiko Carstensbdc480e2009-01-14 14:14:12 +01002523SYSCALL_DEFINE5(mount, char __user *, dev_name, char __user *, dir_name,
2524 char __user *, type, unsigned long, flags, void __user *, data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525{
Vegard Nossumeca6f532009-09-18 13:05:45 -07002526 int ret;
2527 char *kernel_type;
2528 char *kernel_dir;
2529 char *kernel_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 unsigned long data_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
Vegard Nossumeca6f532009-09-18 13:05:45 -07002532 ret = copy_mount_string(type, &kernel_type);
2533 if (ret < 0)
2534 goto out_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535
Vegard Nossumeca6f532009-09-18 13:05:45 -07002536 kernel_dir = getname(dir_name);
2537 if (IS_ERR(kernel_dir)) {
2538 ret = PTR_ERR(kernel_dir);
2539 goto out_dir;
2540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541
Vegard Nossumeca6f532009-09-18 13:05:45 -07002542 ret = copy_mount_string(dev_name, &kernel_dev);
2543 if (ret < 0)
2544 goto out_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
Vegard Nossumeca6f532009-09-18 13:05:45 -07002546 ret = copy_mount_options(data, &data_page);
2547 if (ret < 0)
2548 goto out_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549
Vegard Nossumeca6f532009-09-18 13:05:45 -07002550 ret = do_mount(kernel_dev, kernel_dir, kernel_type, flags,
2551 (void *) data_page);
2552
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 free_page(data_page);
Vegard Nossumeca6f532009-09-18 13:05:45 -07002554out_data:
2555 kfree(kernel_dev);
2556out_dev:
2557 putname(kernel_dir);
2558out_dir:
2559 kfree(kernel_type);
2560out_type:
2561 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562}
2563
2564/*
Al Viroafac7cb2011-11-23 19:34:49 -05002565 * Return true if path is reachable from root
2566 *
2567 * namespace_sem or vfsmount_lock is held
2568 */
Al Viro643822b2011-11-24 22:00:28 -05002569bool is_path_reachable(struct mount *mnt, struct dentry *dentry,
Al Viroafac7cb2011-11-23 19:34:49 -05002570 const struct path *root)
2571{
Al Viro643822b2011-11-24 22:00:28 -05002572 while (&mnt->mnt != root->mnt && mnt_has_parent(mnt)) {
Al Viroa73324d2011-11-24 22:25:07 -05002573 dentry = mnt->mnt_mountpoint;
Al Viro0714a532011-11-24 22:19:58 -05002574 mnt = mnt->mnt_parent;
Al Viroafac7cb2011-11-23 19:34:49 -05002575 }
Al Viro643822b2011-11-24 22:00:28 -05002576 return &mnt->mnt == root->mnt && is_subdir(dentry, root->dentry);
Al Viroafac7cb2011-11-23 19:34:49 -05002577}
2578
2579int path_is_under(struct path *path1, struct path *path2)
2580{
2581 int res;
2582 br_read_lock(vfsmount_lock);
Al Viro643822b2011-11-24 22:00:28 -05002583 res = is_path_reachable(real_mount(path1->mnt), path1->dentry, path2);
Al Viroafac7cb2011-11-23 19:34:49 -05002584 br_read_unlock(vfsmount_lock);
2585 return res;
2586}
2587EXPORT_SYMBOL(path_is_under);
2588
2589/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 * pivot_root Semantics:
2591 * Moves the root file system of the current process to the directory put_old,
2592 * makes new_root as the new root file system of the current process, and sets
2593 * root/cwd of all processes which had them on the current root to new_root.
2594 *
2595 * Restrictions:
2596 * The new_root and put_old must be directories, and must not be on the
2597 * same file system as the current process root. The put_old must be
2598 * underneath new_root, i.e. adding a non-zero number of /.. to the string
2599 * pointed to by put_old must yield the same directory as new_root. No other
2600 * file system may be mounted on put_old. After all, new_root is a mountpoint.
2601 *
Neil Brown4a0d11f2006-01-08 01:03:18 -08002602 * Also, the current root cannot be on the 'rootfs' (initial ramfs) filesystem.
2603 * See Documentation/filesystems/ramfs-rootfs-initramfs.txt for alternatives
2604 * in this situation.
2605 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 * Notes:
2607 * - we don't move root/cwd if they are not at the root (reason: if something
2608 * cared enough to change them, it's probably wrong to force them elsewhere)
2609 * - it's okay to pick a root that isn't the root of a file system, e.g.
2610 * /nfs/my_root where /nfs is the mount point. It must be a mountpoint,
2611 * though, so you may need to say mount --bind /nfs/my_root /nfs/my_root
2612 * first.
2613 */
Heiko Carstens3480b252009-01-14 14:14:16 +01002614SYSCALL_DEFINE2(pivot_root, const char __user *, new_root,
2615 const char __user *, put_old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616{
Al Viro2d8f3032008-07-22 09:59:21 -04002617 struct path new, old, parent_path, root_parent, root;
Al Viro419148d2011-11-24 19:41:16 -05002618 struct mount *new_mnt, *root_mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 int error;
2620
2621 if (!capable(CAP_SYS_ADMIN))
2622 return -EPERM;
2623
Al Viro2d8f3032008-07-22 09:59:21 -04002624 error = user_path_dir(new_root, &new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 if (error)
2626 goto out0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627
Al Viro2d8f3032008-07-22 09:59:21 -04002628 error = user_path_dir(put_old, &old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 if (error)
2630 goto out1;
2631
Al Viro2d8f3032008-07-22 09:59:21 -04002632 error = security_sb_pivotroot(&old, &new);
Al Virob12cea92011-03-18 08:55:38 -04002633 if (error)
2634 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635
Miklos Szeredif7ad3c62010-08-10 11:41:36 +02002636 get_fs_root(current->fs, &root);
Al Virob12cea92011-03-18 08:55:38 -04002637 error = lock_mount(&old);
2638 if (error)
2639 goto out3;
2640
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 error = -EINVAL;
Al Viro419148d2011-11-24 19:41:16 -05002642 new_mnt = real_mount(new.mnt);
2643 root_mnt = real_mount(root.mnt);
Al Viro2d8f3032008-07-22 09:59:21 -04002644 if (IS_MNT_SHARED(old.mnt) ||
Al Viro0714a532011-11-24 22:19:58 -05002645 IS_MNT_SHARED(&new_mnt->mnt_parent->mnt) ||
2646 IS_MNT_SHARED(&root_mnt->mnt_parent->mnt))
Al Virob12cea92011-03-18 08:55:38 -04002647 goto out4;
Al Viro143c8c92011-11-25 00:46:35 -05002648 if (!check_mnt(root_mnt) || !check_mnt(new_mnt))
Al Virob12cea92011-03-18 08:55:38 -04002649 goto out4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 error = -ENOENT;
Alexey Dobriyanf3da3922009-05-04 03:32:03 +04002651 if (d_unlinked(new.dentry))
Al Virob12cea92011-03-18 08:55:38 -04002652 goto out4;
Alexey Dobriyanf3da3922009-05-04 03:32:03 +04002653 if (d_unlinked(old.dentry))
Al Virob12cea92011-03-18 08:55:38 -04002654 goto out4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 error = -EBUSY;
Al Viro2d8f3032008-07-22 09:59:21 -04002656 if (new.mnt == root.mnt ||
2657 old.mnt == root.mnt)
Al Virob12cea92011-03-18 08:55:38 -04002658 goto out4; /* loop, on the same file system */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 error = -EINVAL;
Al Viro8c3ee422008-03-22 18:00:39 -04002660 if (root.mnt->mnt_root != root.dentry)
Al Virob12cea92011-03-18 08:55:38 -04002661 goto out4; /* not a mountpoint */
Al Viro676da582011-11-24 21:47:05 -05002662 if (!mnt_has_parent(root_mnt))
Al Virob12cea92011-03-18 08:55:38 -04002663 goto out4; /* not attached */
Al Viro2d8f3032008-07-22 09:59:21 -04002664 if (new.mnt->mnt_root != new.dentry)
Al Virob12cea92011-03-18 08:55:38 -04002665 goto out4; /* not a mountpoint */
Al Viro676da582011-11-24 21:47:05 -05002666 if (!mnt_has_parent(new_mnt))
Al Virob12cea92011-03-18 08:55:38 -04002667 goto out4; /* not attached */
Jan Blunck4ac91372008-02-14 19:34:32 -08002668 /* make sure we can reach put_old from new_root */
Al Viro643822b2011-11-24 22:00:28 -05002669 if (!is_path_reachable(real_mount(old.mnt), old.dentry, &new))
Al Virob12cea92011-03-18 08:55:38 -04002670 goto out4;
Al Viro27cb1572011-03-18 08:29:36 -04002671 br_write_lock(vfsmount_lock);
Al Viro419148d2011-11-24 19:41:16 -05002672 detach_mnt(new_mnt, &parent_path);
2673 detach_mnt(root_mnt, &root_parent);
Jan Blunck4ac91372008-02-14 19:34:32 -08002674 /* mount old root on put_old */
Al Viro419148d2011-11-24 19:41:16 -05002675 attach_mnt(root_mnt, &old);
Jan Blunck4ac91372008-02-14 19:34:32 -08002676 /* mount new_root on / */
Al Viro419148d2011-11-24 19:41:16 -05002677 attach_mnt(new_mnt, &root_parent);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002678 touch_mnt_namespace(current->nsproxy->mnt_ns);
Nick Piggin99b7db72010-08-18 04:37:39 +10002679 br_write_unlock(vfsmount_lock);
Al Viro2d8f3032008-07-22 09:59:21 -04002680 chroot_fs_refs(&root, &new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 error = 0;
Al Virob12cea92011-03-18 08:55:38 -04002682out4:
2683 unlock_mount(&old);
2684 if (!error) {
2685 path_put(&root_parent);
2686 path_put(&parent_path);
2687 }
2688out3:
Al Viro8c3ee422008-03-22 18:00:39 -04002689 path_put(&root);
Al Virob12cea92011-03-18 08:55:38 -04002690out2:
Al Viro2d8f3032008-07-22 09:59:21 -04002691 path_put(&old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692out1:
Al Viro2d8f3032008-07-22 09:59:21 -04002693 path_put(&new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694out0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696}
2697
2698static void __init init_mount_tree(void)
2699{
2700 struct vfsmount *mnt;
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002701 struct mnt_namespace *ns;
Jan Blunckac748a02008-02-14 19:34:39 -08002702 struct path root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703
2704 mnt = do_kern_mount("rootfs", 0, "rootfs", NULL);
2705 if (IS_ERR(mnt))
2706 panic("Can't create rootfs");
Nick Pigginb3e19d92011-01-07 17:50:11 +11002707
Trond Myklebust3b22edc2009-06-23 17:29:49 -04002708 ns = create_mnt_ns(mnt);
2709 if (IS_ERR(ns))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 panic("Can't allocate initial namespace");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002712 init_task.nsproxy->mnt_ns = ns;
2713 get_mnt_ns(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
Jan Blunckac748a02008-02-14 19:34:39 -08002715 root.mnt = ns->root;
2716 root.dentry = ns->root->mnt_root;
2717
2718 set_fs_pwd(current->fs, &root);
2719 set_fs_root(current->fs, &root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720}
2721
Denis Cheng74bf17c2007-10-16 23:26:30 -07002722void __init mnt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723{
Eric Dumazet13f14b42008-02-06 01:37:57 -08002724 unsigned u;
Randy Dunlap15a67dd2006-09-29 01:58:57 -07002725 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
Ram Pai390c6842005-11-07 17:17:51 -05002727 init_rwsem(&namespace_sem);
2728
Al Viro7d6fec42011-11-23 12:14:10 -05002729 mnt_cache = kmem_cache_create("mnt_cache", sizeof(struct mount),
Paul Mundt20c2df82007-07-20 10:11:58 +09002730 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731
Ram Paib58fed82005-11-07 17:16:09 -05002732 mount_hashtable = (struct list_head *)__get_free_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733
2734 if (!mount_hashtable)
2735 panic("Failed to allocate mount hash table\n");
2736
Mandeep Singh Baines80cdc6d2011-03-22 16:33:54 -07002737 printk(KERN_INFO "Mount-cache hash table entries: %lu\n", HASH_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738
Eric Dumazet13f14b42008-02-06 01:37:57 -08002739 for (u = 0; u < HASH_SIZE; u++)
2740 INIT_LIST_HEAD(&mount_hashtable[u]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741
Nick Piggin99b7db72010-08-18 04:37:39 +10002742 br_lock_init(vfsmount_lock);
2743
Randy Dunlap15a67dd2006-09-29 01:58:57 -07002744 err = sysfs_init();
2745 if (err)
2746 printk(KERN_WARNING "%s: sysfs_init error: %d\n",
Harvey Harrison8e24eea2008-04-30 00:55:09 -07002747 __func__, err);
Greg Kroah-Hartman00d26662007-10-29 14:17:23 -06002748 fs_kobj = kobject_create_and_add("fs", NULL);
2749 if (!fs_kobj)
Harvey Harrison8e24eea2008-04-30 00:55:09 -07002750 printk(KERN_WARNING "%s: kobj create error\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 init_rootfs();
2752 init_mount_tree();
2753}
2754
Trond Myklebust616511d2009-06-22 15:09:13 -04002755void put_mnt_ns(struct mnt_namespace *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756{
Ram Pai70fbcdf2005-11-07 17:17:04 -05002757 LIST_HEAD(umount_list);
Trond Myklebust616511d2009-06-22 15:09:13 -04002758
Al Virod498b252010-02-05 02:21:06 -05002759 if (!atomic_dec_and_test(&ns->count))
Trond Myklebust616511d2009-06-22 15:09:13 -04002760 return;
Ram Pai390c6842005-11-07 17:17:51 -05002761 down_write(&namespace_sem);
Nick Piggin99b7db72010-08-18 04:37:39 +10002762 br_write_lock(vfsmount_lock);
Al Viro761d5c32011-11-24 21:07:43 -05002763 umount_tree(real_mount(ns->root), 0, &umount_list);
Nick Piggin99b7db72010-08-18 04:37:39 +10002764 br_write_unlock(vfsmount_lock);
Ram Pai390c6842005-11-07 17:17:51 -05002765 up_write(&namespace_sem);
Ram Pai70fbcdf2005-11-07 17:17:04 -05002766 release_mounts(&umount_list);
Kirill Korotaev6b3286e2006-12-08 02:37:56 -08002767 kfree(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768}
Al Viro9d412a42011-03-17 22:08:28 -04002769
2770struct vfsmount *kern_mount_data(struct file_system_type *type, void *data)
2771{
Tim Chen423e0ab2011-07-19 09:32:38 -07002772 struct vfsmount *mnt;
2773 mnt = vfs_kern_mount(type, MS_KERNMOUNT, type->name, data);
2774 if (!IS_ERR(mnt)) {
2775 /*
2776 * it is a longterm mount, don't release mnt until
2777 * we unmount before file sys is unregistered
2778 */
2779 mnt_make_longterm(mnt);
2780 }
2781 return mnt;
Al Viro9d412a42011-03-17 22:08:28 -04002782}
2783EXPORT_SYMBOL_GPL(kern_mount_data);
Tim Chen423e0ab2011-07-19 09:32:38 -07002784
2785void kern_unmount(struct vfsmount *mnt)
2786{
2787 /* release long term mount so mount point can be released */
2788 if (!IS_ERR_OR_NULL(mnt)) {
2789 mnt_make_shortterm(mnt);
2790 mntput(mnt);
2791 }
2792}
2793EXPORT_SYMBOL(kern_unmount);
Al Viro02125a82011-12-05 08:43:34 -05002794
2795bool our_mnt(struct vfsmount *mnt)
2796{
Al Viro143c8c92011-11-25 00:46:35 -05002797 return check_mnt(real_mount(mnt));
Al Viro02125a82011-12-05 08:43:34 -05002798}