Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/syscalls.h> |
| 12 | #include <linux/slab.h> |
| 13 | #include <linux/sched.h> |
| 14 | #include <linux/smp_lock.h> |
| 15 | #include <linux/init.h> |
Randy Dunlap | 15a67dd | 2006-09-29 01:58:57 -0700 | [diff] [blame] | 16 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/quotaops.h> |
| 18 | #include <linux/acct.h> |
Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 19 | #include <linux/capability.h> |
Dave Hansen | 3d73363 | 2008-02-15 14:37:59 -0800 | [diff] [blame^] | 20 | #include <linux/cpumask.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/module.h> |
Andrew Morton | f20a9ea | 2006-08-14 22:43:23 -0700 | [diff] [blame] | 22 | #include <linux/sysfs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/seq_file.h> |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 24 | #include <linux/mnt_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/namei.h> |
| 26 | #include <linux/security.h> |
| 27 | #include <linux/mount.h> |
David Howells | 07f3f05 | 2006-09-30 20:52:18 +0200 | [diff] [blame] | 28 | #include <linux/ramfs.h> |
Eric Dumazet | 13f14b4 | 2008-02-06 01:37:57 -0800 | [diff] [blame] | 29 | #include <linux/log2.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <asm/uaccess.h> |
| 31 | #include <asm/unistd.h> |
Ram Pai | 07b2088 | 2005-11-07 17:19:07 -0500 | [diff] [blame] | 32 | #include "pnode.h" |
Adrian Bunk | 948730b | 2007-07-15 23:41:25 -0700 | [diff] [blame] | 33 | #include "internal.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Eric Dumazet | 13f14b4 | 2008-02-06 01:37:57 -0800 | [diff] [blame] | 35 | #define HASH_SHIFT ilog2(PAGE_SIZE / sizeof(struct list_head)) |
| 36 | #define HASH_SIZE (1UL << HASH_SHIFT) |
| 37 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | /* spinlock for vfsmount related operations, inplace of dcache_lock */ |
Al Viro | 5addc5d | 2005-11-07 17:15:49 -0500 | [diff] [blame] | 39 | __cacheline_aligned_in_smp DEFINE_SPINLOCK(vfsmount_lock); |
| 40 | |
| 41 | static int event; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
Eric Dumazet | fa3536c | 2006-03-26 01:37:24 -0800 | [diff] [blame] | 43 | static struct list_head *mount_hashtable __read_mostly; |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 44 | static struct kmem_cache *mnt_cache __read_mostly; |
Ram Pai | 390c684 | 2005-11-07 17:17:51 -0500 | [diff] [blame] | 45 | static struct rw_semaphore namespace_sem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Miklos Szeredi | f87fd4c | 2006-01-16 22:14:23 -0800 | [diff] [blame] | 47 | /* /sys/fs */ |
Greg Kroah-Hartman | 00d2666 | 2007-10-29 14:17:23 -0600 | [diff] [blame] | 48 | struct kobject *fs_kobj; |
| 49 | EXPORT_SYMBOL_GPL(fs_kobj); |
Miklos Szeredi | f87fd4c | 2006-01-16 22:14:23 -0800 | [diff] [blame] | 50 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | static inline unsigned long hash(struct vfsmount *mnt, struct dentry *dentry) |
| 52 | { |
Ram Pai | b58fed8 | 2005-11-07 17:16:09 -0500 | [diff] [blame] | 53 | unsigned long tmp = ((unsigned long)mnt / L1_CACHE_BYTES); |
| 54 | tmp += ((unsigned long)dentry / L1_CACHE_BYTES); |
Eric Dumazet | 13f14b4 | 2008-02-06 01:37:57 -0800 | [diff] [blame] | 55 | tmp = tmp + (tmp >> HASH_SHIFT); |
| 56 | return tmp & (HASH_SIZE - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | } |
| 58 | |
Dave Hansen | 3d73363 | 2008-02-15 14:37:59 -0800 | [diff] [blame^] | 59 | #define MNT_WRITER_UNDERFLOW_LIMIT -(1<<16) |
| 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | struct vfsmount *alloc_vfsmnt(const char *name) |
| 62 | { |
Robert P. J. Day | c376222 | 2007-02-10 01:45:03 -0800 | [diff] [blame] | 63 | struct vfsmount *mnt = kmem_cache_zalloc(mnt_cache, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | if (mnt) { |
Ram Pai | b58fed8 | 2005-11-07 17:16:09 -0500 | [diff] [blame] | 65 | atomic_set(&mnt->mnt_count, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | INIT_LIST_HEAD(&mnt->mnt_hash); |
| 67 | INIT_LIST_HEAD(&mnt->mnt_child); |
| 68 | INIT_LIST_HEAD(&mnt->mnt_mounts); |
| 69 | INIT_LIST_HEAD(&mnt->mnt_list); |
Miklos Szeredi | 55e700b | 2005-07-07 17:57:30 -0700 | [diff] [blame] | 70 | INIT_LIST_HEAD(&mnt->mnt_expire); |
Ram Pai | 03e06e6 | 2005-11-07 17:19:33 -0500 | [diff] [blame] | 71 | INIT_LIST_HEAD(&mnt->mnt_share); |
Ram Pai | a58b0eb | 2005-11-07 17:20:48 -0500 | [diff] [blame] | 72 | INIT_LIST_HEAD(&mnt->mnt_slave_list); |
| 73 | INIT_LIST_HEAD(&mnt->mnt_slave); |
Dave Hansen | 3d73363 | 2008-02-15 14:37:59 -0800 | [diff] [blame^] | 74 | atomic_set(&mnt->__mnt_writers, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | if (name) { |
Ram Pai | b58fed8 | 2005-11-07 17:16:09 -0500 | [diff] [blame] | 76 | int size = strlen(name) + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | char *newname = kmalloc(size, GFP_KERNEL); |
| 78 | if (newname) { |
| 79 | memcpy(newname, name, size); |
| 80 | mnt->mnt_devname = newname; |
| 81 | } |
| 82 | } |
| 83 | } |
| 84 | return mnt; |
| 85 | } |
| 86 | |
Dave Hansen | 8366025 | 2008-02-15 14:37:30 -0800 | [diff] [blame] | 87 | /* |
| 88 | * Most r/o checks on a fs are for operations that take |
| 89 | * discrete amounts of time, like a write() or unlink(). |
| 90 | * We must keep track of when those operations start |
| 91 | * (for permission checks) and when they end, so that |
| 92 | * we can determine when writes are able to occur to |
| 93 | * a filesystem. |
| 94 | */ |
Dave Hansen | 3d73363 | 2008-02-15 14:37:59 -0800 | [diff] [blame^] | 95 | /* |
| 96 | * __mnt_is_readonly: check whether a mount is read-only |
| 97 | * @mnt: the mount to check for its write status |
| 98 | * |
| 99 | * This shouldn't be used directly ouside of the VFS. |
| 100 | * It does not guarantee that the filesystem will stay |
| 101 | * r/w, just that it is right *now*. This can not and |
| 102 | * should not be used in place of IS_RDONLY(inode). |
| 103 | * mnt_want/drop_write() will _keep_ the filesystem |
| 104 | * r/w. |
| 105 | */ |
| 106 | int __mnt_is_readonly(struct vfsmount *mnt) |
| 107 | { |
| 108 | return (mnt->mnt_sb->s_flags & MS_RDONLY); |
| 109 | } |
| 110 | EXPORT_SYMBOL_GPL(__mnt_is_readonly); |
| 111 | |
| 112 | struct mnt_writer { |
| 113 | /* |
| 114 | * If holding multiple instances of this lock, they |
| 115 | * must be ordered by cpu number. |
| 116 | */ |
| 117 | spinlock_t lock; |
| 118 | struct lock_class_key lock_class; /* compiles out with !lockdep */ |
| 119 | unsigned long count; |
| 120 | struct vfsmount *mnt; |
| 121 | } ____cacheline_aligned_in_smp; |
| 122 | static DEFINE_PER_CPU(struct mnt_writer, mnt_writers); |
| 123 | |
| 124 | static int __init init_mnt_writers(void) |
| 125 | { |
| 126 | int cpu; |
| 127 | for_each_possible_cpu(cpu) { |
| 128 | struct mnt_writer *writer = &per_cpu(mnt_writers, cpu); |
| 129 | spin_lock_init(&writer->lock); |
| 130 | lockdep_set_class(&writer->lock, &writer->lock_class); |
| 131 | writer->count = 0; |
| 132 | } |
| 133 | return 0; |
| 134 | } |
| 135 | fs_initcall(init_mnt_writers); |
| 136 | |
| 137 | static void unlock_mnt_writers(void) |
| 138 | { |
| 139 | int cpu; |
| 140 | struct mnt_writer *cpu_writer; |
| 141 | |
| 142 | for_each_possible_cpu(cpu) { |
| 143 | cpu_writer = &per_cpu(mnt_writers, cpu); |
| 144 | spin_unlock(&cpu_writer->lock); |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | static inline void __clear_mnt_count(struct mnt_writer *cpu_writer) |
| 149 | { |
| 150 | if (!cpu_writer->mnt) |
| 151 | return; |
| 152 | /* |
| 153 | * This is in case anyone ever leaves an invalid, |
| 154 | * old ->mnt and a count of 0. |
| 155 | */ |
| 156 | if (!cpu_writer->count) |
| 157 | return; |
| 158 | atomic_add(cpu_writer->count, &cpu_writer->mnt->__mnt_writers); |
| 159 | cpu_writer->count = 0; |
| 160 | } |
| 161 | /* |
| 162 | * must hold cpu_writer->lock |
| 163 | */ |
| 164 | static inline void use_cpu_writer_for_mount(struct mnt_writer *cpu_writer, |
| 165 | struct vfsmount *mnt) |
| 166 | { |
| 167 | if (cpu_writer->mnt == mnt) |
| 168 | return; |
| 169 | __clear_mnt_count(cpu_writer); |
| 170 | cpu_writer->mnt = mnt; |
| 171 | } |
| 172 | |
| 173 | /* |
| 174 | * Most r/o checks on a fs are for operations that take |
| 175 | * discrete amounts of time, like a write() or unlink(). |
| 176 | * We must keep track of when those operations start |
| 177 | * (for permission checks) and when they end, so that |
| 178 | * we can determine when writes are able to occur to |
| 179 | * a filesystem. |
| 180 | */ |
Dave Hansen | 8366025 | 2008-02-15 14:37:30 -0800 | [diff] [blame] | 181 | /** |
| 182 | * mnt_want_write - get write access to a mount |
| 183 | * @mnt: the mount on which to take a write |
| 184 | * |
| 185 | * This tells the low-level filesystem that a write is |
| 186 | * about to be performed to it, and makes sure that |
| 187 | * writes are allowed before returning success. When |
| 188 | * the write operation is finished, mnt_drop_write() |
| 189 | * must be called. This is effectively a refcount. |
| 190 | */ |
| 191 | int mnt_want_write(struct vfsmount *mnt) |
| 192 | { |
Dave Hansen | 3d73363 | 2008-02-15 14:37:59 -0800 | [diff] [blame^] | 193 | int ret = 0; |
| 194 | struct mnt_writer *cpu_writer; |
| 195 | |
| 196 | cpu_writer = &get_cpu_var(mnt_writers); |
| 197 | spin_lock(&cpu_writer->lock); |
| 198 | if (__mnt_is_readonly(mnt)) { |
| 199 | ret = -EROFS; |
| 200 | goto out; |
| 201 | } |
| 202 | use_cpu_writer_for_mount(cpu_writer, mnt); |
| 203 | cpu_writer->count++; |
| 204 | out: |
| 205 | spin_unlock(&cpu_writer->lock); |
| 206 | put_cpu_var(mnt_writers); |
| 207 | return ret; |
Dave Hansen | 8366025 | 2008-02-15 14:37:30 -0800 | [diff] [blame] | 208 | } |
| 209 | EXPORT_SYMBOL_GPL(mnt_want_write); |
| 210 | |
Dave Hansen | 3d73363 | 2008-02-15 14:37:59 -0800 | [diff] [blame^] | 211 | static void lock_mnt_writers(void) |
| 212 | { |
| 213 | int cpu; |
| 214 | struct mnt_writer *cpu_writer; |
| 215 | |
| 216 | for_each_possible_cpu(cpu) { |
| 217 | cpu_writer = &per_cpu(mnt_writers, cpu); |
| 218 | spin_lock(&cpu_writer->lock); |
| 219 | __clear_mnt_count(cpu_writer); |
| 220 | cpu_writer->mnt = NULL; |
| 221 | } |
| 222 | } |
| 223 | |
| 224 | /* |
| 225 | * These per-cpu write counts are not guaranteed to have |
| 226 | * matched increments and decrements on any given cpu. |
| 227 | * A file open()ed for write on one cpu and close()d on |
| 228 | * another cpu will imbalance this count. Make sure it |
| 229 | * does not get too far out of whack. |
| 230 | */ |
| 231 | static void handle_write_count_underflow(struct vfsmount *mnt) |
| 232 | { |
| 233 | if (atomic_read(&mnt->__mnt_writers) >= |
| 234 | MNT_WRITER_UNDERFLOW_LIMIT) |
| 235 | return; |
| 236 | /* |
| 237 | * It isn't necessary to hold all of the locks |
| 238 | * at the same time, but doing it this way makes |
| 239 | * us share a lot more code. |
| 240 | */ |
| 241 | lock_mnt_writers(); |
| 242 | /* |
| 243 | * vfsmount_lock is for mnt_flags. |
| 244 | */ |
| 245 | spin_lock(&vfsmount_lock); |
| 246 | /* |
| 247 | * If coalescing the per-cpu writer counts did not |
| 248 | * get us back to a positive writer count, we have |
| 249 | * a bug. |
| 250 | */ |
| 251 | if ((atomic_read(&mnt->__mnt_writers) < 0) && |
| 252 | !(mnt->mnt_flags & MNT_IMBALANCED_WRITE_COUNT)) { |
| 253 | printk(KERN_DEBUG "leak detected on mount(%p) writers " |
| 254 | "count: %d\n", |
| 255 | mnt, atomic_read(&mnt->__mnt_writers)); |
| 256 | WARN_ON(1); |
| 257 | /* use the flag to keep the dmesg spam down */ |
| 258 | mnt->mnt_flags |= MNT_IMBALANCED_WRITE_COUNT; |
| 259 | } |
| 260 | spin_unlock(&vfsmount_lock); |
| 261 | unlock_mnt_writers(); |
| 262 | } |
| 263 | |
Dave Hansen | 8366025 | 2008-02-15 14:37:30 -0800 | [diff] [blame] | 264 | /** |
| 265 | * mnt_drop_write - give up write access to a mount |
| 266 | * @mnt: the mount on which to give up write access |
| 267 | * |
| 268 | * Tells the low-level filesystem that we are done |
| 269 | * performing writes to it. Must be matched with |
| 270 | * mnt_want_write() call above. |
| 271 | */ |
| 272 | void mnt_drop_write(struct vfsmount *mnt) |
| 273 | { |
Dave Hansen | 3d73363 | 2008-02-15 14:37:59 -0800 | [diff] [blame^] | 274 | int must_check_underflow = 0; |
| 275 | struct mnt_writer *cpu_writer; |
| 276 | |
| 277 | cpu_writer = &get_cpu_var(mnt_writers); |
| 278 | spin_lock(&cpu_writer->lock); |
| 279 | |
| 280 | use_cpu_writer_for_mount(cpu_writer, mnt); |
| 281 | if (cpu_writer->count > 0) { |
| 282 | cpu_writer->count--; |
| 283 | } else { |
| 284 | must_check_underflow = 1; |
| 285 | atomic_dec(&mnt->__mnt_writers); |
| 286 | } |
| 287 | |
| 288 | spin_unlock(&cpu_writer->lock); |
| 289 | /* |
| 290 | * Logically, we could call this each time, |
| 291 | * but the __mnt_writers cacheline tends to |
| 292 | * be cold, and makes this expensive. |
| 293 | */ |
| 294 | if (must_check_underflow) |
| 295 | handle_write_count_underflow(mnt); |
| 296 | /* |
| 297 | * This could be done right after the spinlock |
| 298 | * is taken because the spinlock keeps us on |
| 299 | * the cpu, and disables preemption. However, |
| 300 | * putting it here bounds the amount that |
| 301 | * __mnt_writers can underflow. Without it, |
| 302 | * we could theoretically wrap __mnt_writers. |
| 303 | */ |
| 304 | put_cpu_var(mnt_writers); |
Dave Hansen | 8366025 | 2008-02-15 14:37:30 -0800 | [diff] [blame] | 305 | } |
| 306 | EXPORT_SYMBOL_GPL(mnt_drop_write); |
| 307 | |
Dave Hansen | 3d73363 | 2008-02-15 14:37:59 -0800 | [diff] [blame^] | 308 | int mnt_make_readonly(struct vfsmount *mnt) |
Dave Hansen | 8366025 | 2008-02-15 14:37:30 -0800 | [diff] [blame] | 309 | { |
Dave Hansen | 3d73363 | 2008-02-15 14:37:59 -0800 | [diff] [blame^] | 310 | int ret = 0; |
| 311 | |
| 312 | lock_mnt_writers(); |
| 313 | /* |
| 314 | * With all the locks held, this value is stable |
| 315 | */ |
| 316 | if (atomic_read(&mnt->__mnt_writers) > 0) { |
| 317 | ret = -EBUSY; |
| 318 | goto out; |
| 319 | } |
| 320 | /* |
| 321 | * actually set mount's r/o flag here to make |
| 322 | * __mnt_is_readonly() true, which keeps anyone |
| 323 | * from doing a successful mnt_want_write(). |
| 324 | */ |
| 325 | out: |
| 326 | unlock_mnt_writers(); |
| 327 | return ret; |
Dave Hansen | 8366025 | 2008-02-15 14:37:30 -0800 | [diff] [blame] | 328 | } |
Dave Hansen | 8366025 | 2008-02-15 14:37:30 -0800 | [diff] [blame] | 329 | |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 330 | int simple_set_mnt(struct vfsmount *mnt, struct super_block *sb) |
| 331 | { |
| 332 | mnt->mnt_sb = sb; |
| 333 | mnt->mnt_root = dget(sb->s_root); |
| 334 | return 0; |
| 335 | } |
| 336 | |
| 337 | EXPORT_SYMBOL(simple_set_mnt); |
| 338 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | void free_vfsmnt(struct vfsmount *mnt) |
| 340 | { |
| 341 | kfree(mnt->mnt_devname); |
| 342 | kmem_cache_free(mnt_cache, mnt); |
| 343 | } |
| 344 | |
| 345 | /* |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 346 | * find the first or last mount at @dentry on vfsmount @mnt depending on |
| 347 | * @dir. If @dir is set return the first mount else return the last mount. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | */ |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 349 | struct vfsmount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry, |
| 350 | int dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | { |
Ram Pai | b58fed8 | 2005-11-07 17:16:09 -0500 | [diff] [blame] | 352 | struct list_head *head = mount_hashtable + hash(mnt, dentry); |
| 353 | struct list_head *tmp = head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | struct vfsmount *p, *found = NULL; |
| 355 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | for (;;) { |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 357 | tmp = dir ? tmp->next : tmp->prev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | p = NULL; |
| 359 | if (tmp == head) |
| 360 | break; |
| 361 | p = list_entry(tmp, struct vfsmount, mnt_hash); |
| 362 | if (p->mnt_parent == mnt && p->mnt_mountpoint == dentry) { |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 363 | found = p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | break; |
| 365 | } |
| 366 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | return found; |
| 368 | } |
| 369 | |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 370 | /* |
| 371 | * lookup_mnt increments the ref count before returning |
| 372 | * the vfsmount struct. |
| 373 | */ |
| 374 | struct vfsmount *lookup_mnt(struct vfsmount *mnt, struct dentry *dentry) |
| 375 | { |
| 376 | struct vfsmount *child_mnt; |
| 377 | spin_lock(&vfsmount_lock); |
| 378 | if ((child_mnt = __lookup_mnt(mnt, dentry, 1))) |
| 379 | mntget(child_mnt); |
| 380 | spin_unlock(&vfsmount_lock); |
| 381 | return child_mnt; |
| 382 | } |
| 383 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | static inline int check_mnt(struct vfsmount *mnt) |
| 385 | { |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 386 | return mnt->mnt_ns == current->nsproxy->mnt_ns; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | } |
| 388 | |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 389 | static void touch_mnt_namespace(struct mnt_namespace *ns) |
Al Viro | 5addc5d | 2005-11-07 17:15:49 -0500 | [diff] [blame] | 390 | { |
| 391 | if (ns) { |
| 392 | ns->event = ++event; |
| 393 | wake_up_interruptible(&ns->poll); |
| 394 | } |
| 395 | } |
| 396 | |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 397 | static void __touch_mnt_namespace(struct mnt_namespace *ns) |
Al Viro | 5addc5d | 2005-11-07 17:15:49 -0500 | [diff] [blame] | 398 | { |
| 399 | if (ns && ns->event != event) { |
| 400 | ns->event = event; |
| 401 | wake_up_interruptible(&ns->poll); |
| 402 | } |
| 403 | } |
| 404 | |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 405 | static void detach_mnt(struct vfsmount *mnt, struct path *old_path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | { |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 407 | old_path->dentry = mnt->mnt_mountpoint; |
| 408 | old_path->mnt = mnt->mnt_parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | mnt->mnt_parent = mnt; |
| 410 | mnt->mnt_mountpoint = mnt->mnt_root; |
| 411 | list_del_init(&mnt->mnt_child); |
| 412 | list_del_init(&mnt->mnt_hash); |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 413 | old_path->dentry->d_mounted--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | } |
| 415 | |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 416 | void mnt_set_mountpoint(struct vfsmount *mnt, struct dentry *dentry, |
| 417 | struct vfsmount *child_mnt) |
| 418 | { |
| 419 | child_mnt->mnt_parent = mntget(mnt); |
| 420 | child_mnt->mnt_mountpoint = dget(dentry); |
| 421 | dentry->d_mounted++; |
| 422 | } |
| 423 | |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 424 | static void attach_mnt(struct vfsmount *mnt, struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | { |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 426 | mnt_set_mountpoint(path->mnt, path->dentry, mnt); |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 427 | list_add_tail(&mnt->mnt_hash, mount_hashtable + |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 428 | hash(path->mnt, path->dentry)); |
| 429 | list_add_tail(&mnt->mnt_child, &path->mnt->mnt_mounts); |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 430 | } |
| 431 | |
| 432 | /* |
| 433 | * the caller must hold vfsmount_lock |
| 434 | */ |
| 435 | static void commit_tree(struct vfsmount *mnt) |
| 436 | { |
| 437 | struct vfsmount *parent = mnt->mnt_parent; |
| 438 | struct vfsmount *m; |
| 439 | LIST_HEAD(head); |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 440 | struct mnt_namespace *n = parent->mnt_ns; |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 441 | |
| 442 | BUG_ON(parent == mnt); |
| 443 | |
| 444 | list_add_tail(&head, &mnt->mnt_list); |
| 445 | list_for_each_entry(m, &head, mnt_list) |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 446 | m->mnt_ns = n; |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 447 | list_splice(&head, n->list.prev); |
| 448 | |
| 449 | list_add_tail(&mnt->mnt_hash, mount_hashtable + |
| 450 | hash(parent, mnt->mnt_mountpoint)); |
| 451 | list_add_tail(&mnt->mnt_child, &parent->mnt_mounts); |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 452 | touch_mnt_namespace(n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | } |
| 454 | |
| 455 | static struct vfsmount *next_mnt(struct vfsmount *p, struct vfsmount *root) |
| 456 | { |
| 457 | struct list_head *next = p->mnt_mounts.next; |
| 458 | if (next == &p->mnt_mounts) { |
| 459 | while (1) { |
| 460 | if (p == root) |
| 461 | return NULL; |
| 462 | next = p->mnt_child.next; |
| 463 | if (next != &p->mnt_parent->mnt_mounts) |
| 464 | break; |
| 465 | p = p->mnt_parent; |
| 466 | } |
| 467 | } |
| 468 | return list_entry(next, struct vfsmount, mnt_child); |
| 469 | } |
| 470 | |
Ram Pai | 9676f0c | 2005-11-07 17:21:20 -0500 | [diff] [blame] | 471 | static struct vfsmount *skip_mnt_tree(struct vfsmount *p) |
| 472 | { |
| 473 | struct list_head *prev = p->mnt_mounts.prev; |
| 474 | while (prev != &p->mnt_mounts) { |
| 475 | p = list_entry(prev, struct vfsmount, mnt_child); |
| 476 | prev = p->mnt_mounts.prev; |
| 477 | } |
| 478 | return p; |
| 479 | } |
| 480 | |
Ram Pai | 36341f6 | 2005-11-07 17:17:22 -0500 | [diff] [blame] | 481 | static struct vfsmount *clone_mnt(struct vfsmount *old, struct dentry *root, |
| 482 | int flag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | { |
| 484 | struct super_block *sb = old->mnt_sb; |
| 485 | struct vfsmount *mnt = alloc_vfsmnt(old->mnt_devname); |
| 486 | |
| 487 | if (mnt) { |
| 488 | mnt->mnt_flags = old->mnt_flags; |
| 489 | atomic_inc(&sb->s_active); |
| 490 | mnt->mnt_sb = sb; |
| 491 | mnt->mnt_root = dget(root); |
| 492 | mnt->mnt_mountpoint = mnt->mnt_root; |
| 493 | mnt->mnt_parent = mnt; |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 494 | |
Ram Pai | 5afe002 | 2005-11-07 17:21:01 -0500 | [diff] [blame] | 495 | if (flag & CL_SLAVE) { |
| 496 | list_add(&mnt->mnt_slave, &old->mnt_slave_list); |
| 497 | mnt->mnt_master = old; |
| 498 | CLEAR_MNT_SHARED(mnt); |
Al Viro | 8aec080 | 2007-06-07 12:20:32 -0400 | [diff] [blame] | 499 | } else if (!(flag & CL_PRIVATE)) { |
Ram Pai | 5afe002 | 2005-11-07 17:21:01 -0500 | [diff] [blame] | 500 | if ((flag & CL_PROPAGATION) || IS_MNT_SHARED(old)) |
| 501 | list_add(&mnt->mnt_share, &old->mnt_share); |
| 502 | if (IS_MNT_SLAVE(old)) |
| 503 | list_add(&mnt->mnt_slave, &old->mnt_slave); |
| 504 | mnt->mnt_master = old->mnt_master; |
| 505 | } |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 506 | if (flag & CL_MAKE_SHARED) |
| 507 | set_mnt_shared(mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | |
| 509 | /* stick the duplicate mount on the same expiry list |
| 510 | * as the original if that was on one */ |
Ram Pai | 36341f6 | 2005-11-07 17:17:22 -0500 | [diff] [blame] | 511 | if (flag & CL_EXPIRE) { |
Ram Pai | 36341f6 | 2005-11-07 17:17:22 -0500 | [diff] [blame] | 512 | if (!list_empty(&old->mnt_expire)) |
| 513 | list_add(&mnt->mnt_expire, &old->mnt_expire); |
Ram Pai | 36341f6 | 2005-11-07 17:17:22 -0500 | [diff] [blame] | 514 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | } |
| 516 | return mnt; |
| 517 | } |
| 518 | |
Al Viro | 7b7b1ac | 2005-11-07 17:13:39 -0500 | [diff] [blame] | 519 | static inline void __mntput(struct vfsmount *mnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | { |
Dave Hansen | 3d73363 | 2008-02-15 14:37:59 -0800 | [diff] [blame^] | 521 | int cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | struct super_block *sb = mnt->mnt_sb; |
Dave Hansen | 3d73363 | 2008-02-15 14:37:59 -0800 | [diff] [blame^] | 523 | /* |
| 524 | * We don't have to hold all of the locks at the |
| 525 | * same time here because we know that we're the |
| 526 | * last reference to mnt and that no new writers |
| 527 | * can come in. |
| 528 | */ |
| 529 | for_each_possible_cpu(cpu) { |
| 530 | struct mnt_writer *cpu_writer = &per_cpu(mnt_writers, cpu); |
| 531 | if (cpu_writer->mnt != mnt) |
| 532 | continue; |
| 533 | spin_lock(&cpu_writer->lock); |
| 534 | atomic_add(cpu_writer->count, &mnt->__mnt_writers); |
| 535 | cpu_writer->count = 0; |
| 536 | /* |
| 537 | * Might as well do this so that no one |
| 538 | * ever sees the pointer and expects |
| 539 | * it to be valid. |
| 540 | */ |
| 541 | cpu_writer->mnt = NULL; |
| 542 | spin_unlock(&cpu_writer->lock); |
| 543 | } |
| 544 | /* |
| 545 | * This probably indicates that somebody messed |
| 546 | * up a mnt_want/drop_write() pair. If this |
| 547 | * happens, the filesystem was probably unable |
| 548 | * to make r/w->r/o transitions. |
| 549 | */ |
| 550 | WARN_ON(atomic_read(&mnt->__mnt_writers)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | dput(mnt->mnt_root); |
| 552 | free_vfsmnt(mnt); |
| 553 | deactivate_super(sb); |
| 554 | } |
| 555 | |
Al Viro | 7b7b1ac | 2005-11-07 17:13:39 -0500 | [diff] [blame] | 556 | void mntput_no_expire(struct vfsmount *mnt) |
| 557 | { |
| 558 | repeat: |
| 559 | if (atomic_dec_and_lock(&mnt->mnt_count, &vfsmount_lock)) { |
| 560 | if (likely(!mnt->mnt_pinned)) { |
| 561 | spin_unlock(&vfsmount_lock); |
| 562 | __mntput(mnt); |
| 563 | return; |
| 564 | } |
| 565 | atomic_add(mnt->mnt_pinned + 1, &mnt->mnt_count); |
| 566 | mnt->mnt_pinned = 0; |
| 567 | spin_unlock(&vfsmount_lock); |
| 568 | acct_auto_close_mnt(mnt); |
| 569 | security_sb_umount_close(mnt); |
| 570 | goto repeat; |
| 571 | } |
| 572 | } |
| 573 | |
| 574 | EXPORT_SYMBOL(mntput_no_expire); |
| 575 | |
| 576 | void mnt_pin(struct vfsmount *mnt) |
| 577 | { |
| 578 | spin_lock(&vfsmount_lock); |
| 579 | mnt->mnt_pinned++; |
| 580 | spin_unlock(&vfsmount_lock); |
| 581 | } |
| 582 | |
| 583 | EXPORT_SYMBOL(mnt_pin); |
| 584 | |
| 585 | void mnt_unpin(struct vfsmount *mnt) |
| 586 | { |
| 587 | spin_lock(&vfsmount_lock); |
| 588 | if (mnt->mnt_pinned) { |
| 589 | atomic_inc(&mnt->mnt_count); |
| 590 | mnt->mnt_pinned--; |
| 591 | } |
| 592 | spin_unlock(&vfsmount_lock); |
| 593 | } |
| 594 | |
| 595 | EXPORT_SYMBOL(mnt_unpin); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | |
Miklos Szeredi | b3b304a | 2008-02-08 04:21:35 -0800 | [diff] [blame] | 597 | static inline void mangle(struct seq_file *m, const char *s) |
| 598 | { |
| 599 | seq_escape(m, s, " \t\n\\"); |
| 600 | } |
| 601 | |
| 602 | /* |
| 603 | * Simple .show_options callback for filesystems which don't want to |
| 604 | * implement more complex mount option showing. |
| 605 | * |
| 606 | * See also save_mount_options(). |
| 607 | */ |
| 608 | int generic_show_options(struct seq_file *m, struct vfsmount *mnt) |
| 609 | { |
| 610 | const char *options = mnt->mnt_sb->s_options; |
| 611 | |
| 612 | if (options != NULL && options[0]) { |
| 613 | seq_putc(m, ','); |
| 614 | mangle(m, options); |
| 615 | } |
| 616 | |
| 617 | return 0; |
| 618 | } |
| 619 | EXPORT_SYMBOL(generic_show_options); |
| 620 | |
| 621 | /* |
| 622 | * If filesystem uses generic_show_options(), this function should be |
| 623 | * called from the fill_super() callback. |
| 624 | * |
| 625 | * The .remount_fs callback usually needs to be handled in a special |
| 626 | * way, to make sure, that previous options are not overwritten if the |
| 627 | * remount fails. |
| 628 | * |
| 629 | * Also note, that if the filesystem's .remount_fs function doesn't |
| 630 | * reset all options to their default value, but changes only newly |
| 631 | * given options, then the displayed options will not reflect reality |
| 632 | * any more. |
| 633 | */ |
| 634 | void save_mount_options(struct super_block *sb, char *options) |
| 635 | { |
| 636 | kfree(sb->s_options); |
| 637 | sb->s_options = kstrdup(options, GFP_KERNEL); |
| 638 | } |
| 639 | EXPORT_SYMBOL(save_mount_options); |
| 640 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | /* iterator */ |
| 642 | static void *m_start(struct seq_file *m, loff_t *pos) |
| 643 | { |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 644 | struct mnt_namespace *n = m->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | |
Ram Pai | 390c684 | 2005-11-07 17:17:51 -0500 | [diff] [blame] | 646 | down_read(&namespace_sem); |
Pavel Emelianov | b0765fb | 2007-07-15 23:39:55 -0700 | [diff] [blame] | 647 | return seq_list_start(&n->list, *pos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | } |
| 649 | |
| 650 | static void *m_next(struct seq_file *m, void *v, loff_t *pos) |
| 651 | { |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 652 | struct mnt_namespace *n = m->private; |
Pavel Emelianov | b0765fb | 2007-07-15 23:39:55 -0700 | [diff] [blame] | 653 | |
| 654 | return seq_list_next(v, &n->list, pos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | } |
| 656 | |
| 657 | static void m_stop(struct seq_file *m, void *v) |
| 658 | { |
Ram Pai | 390c684 | 2005-11-07 17:17:51 -0500 | [diff] [blame] | 659 | up_read(&namespace_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | } |
| 661 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | static int show_vfsmnt(struct seq_file *m, void *v) |
| 663 | { |
Pavel Emelianov | b0765fb | 2007-07-15 23:39:55 -0700 | [diff] [blame] | 664 | struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | int err = 0; |
| 666 | static struct proc_fs_info { |
| 667 | int flag; |
| 668 | char *str; |
| 669 | } fs_info[] = { |
| 670 | { MS_SYNCHRONOUS, ",sync" }, |
| 671 | { MS_DIRSYNC, ",dirsync" }, |
| 672 | { MS_MANDLOCK, ",mand" }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | { 0, NULL } |
| 674 | }; |
| 675 | static struct proc_fs_info mnt_info[] = { |
| 676 | { MNT_NOSUID, ",nosuid" }, |
| 677 | { MNT_NODEV, ",nodev" }, |
| 678 | { MNT_NOEXEC, ",noexec" }, |
Christoph Hellwig | fc33a7b | 2006-01-09 20:52:17 -0800 | [diff] [blame] | 679 | { MNT_NOATIME, ",noatime" }, |
| 680 | { MNT_NODIRATIME, ",nodiratime" }, |
Valerie Henson | 47ae32d | 2006-12-13 00:34:34 -0800 | [diff] [blame] | 681 | { MNT_RELATIME, ",relatime" }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | { 0, NULL } |
| 683 | }; |
| 684 | struct proc_fs_info *fs_infop; |
Jan Blunck | c32c2f6 | 2008-02-14 19:38:43 -0800 | [diff] [blame] | 685 | struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | |
| 687 | mangle(m, mnt->mnt_devname ? mnt->mnt_devname : "none"); |
| 688 | seq_putc(m, ' '); |
Jan Blunck | c32c2f6 | 2008-02-14 19:38:43 -0800 | [diff] [blame] | 689 | seq_path(m, &mnt_path, " \t\n\\"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | seq_putc(m, ' '); |
| 691 | mangle(m, mnt->mnt_sb->s_type->name); |
Miklos Szeredi | 79c0b2d | 2007-05-08 00:25:43 -0700 | [diff] [blame] | 692 | if (mnt->mnt_sb->s_subtype && mnt->mnt_sb->s_subtype[0]) { |
| 693 | seq_putc(m, '.'); |
| 694 | mangle(m, mnt->mnt_sb->s_subtype); |
| 695 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | seq_puts(m, mnt->mnt_sb->s_flags & MS_RDONLY ? " ro" : " rw"); |
| 697 | for (fs_infop = fs_info; fs_infop->flag; fs_infop++) { |
| 698 | if (mnt->mnt_sb->s_flags & fs_infop->flag) |
| 699 | seq_puts(m, fs_infop->str); |
| 700 | } |
| 701 | for (fs_infop = mnt_info; fs_infop->flag; fs_infop++) { |
| 702 | if (mnt->mnt_flags & fs_infop->flag) |
| 703 | seq_puts(m, fs_infop->str); |
| 704 | } |
| 705 | if (mnt->mnt_sb->s_op->show_options) |
| 706 | err = mnt->mnt_sb->s_op->show_options(m, mnt); |
| 707 | seq_puts(m, " 0 0\n"); |
| 708 | return err; |
| 709 | } |
| 710 | |
| 711 | struct seq_operations mounts_op = { |
| 712 | .start = m_start, |
| 713 | .next = m_next, |
| 714 | .stop = m_stop, |
| 715 | .show = show_vfsmnt |
| 716 | }; |
| 717 | |
Chuck Lever | b4629fe | 2006-03-20 13:44:12 -0500 | [diff] [blame] | 718 | static int show_vfsstat(struct seq_file *m, void *v) |
| 719 | { |
Pavel Emelianov | b0765fb | 2007-07-15 23:39:55 -0700 | [diff] [blame] | 720 | struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list); |
Jan Blunck | c32c2f6 | 2008-02-14 19:38:43 -0800 | [diff] [blame] | 721 | struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt }; |
Chuck Lever | b4629fe | 2006-03-20 13:44:12 -0500 | [diff] [blame] | 722 | int err = 0; |
| 723 | |
| 724 | /* device */ |
| 725 | if (mnt->mnt_devname) { |
| 726 | seq_puts(m, "device "); |
| 727 | mangle(m, mnt->mnt_devname); |
| 728 | } else |
| 729 | seq_puts(m, "no device"); |
| 730 | |
| 731 | /* mount point */ |
| 732 | seq_puts(m, " mounted on "); |
Jan Blunck | c32c2f6 | 2008-02-14 19:38:43 -0800 | [diff] [blame] | 733 | seq_path(m, &mnt_path, " \t\n\\"); |
Chuck Lever | b4629fe | 2006-03-20 13:44:12 -0500 | [diff] [blame] | 734 | seq_putc(m, ' '); |
| 735 | |
| 736 | /* file system type */ |
| 737 | seq_puts(m, "with fstype "); |
| 738 | mangle(m, mnt->mnt_sb->s_type->name); |
| 739 | |
| 740 | /* optional statistics */ |
| 741 | if (mnt->mnt_sb->s_op->show_stats) { |
| 742 | seq_putc(m, ' '); |
| 743 | err = mnt->mnt_sb->s_op->show_stats(m, mnt); |
| 744 | } |
| 745 | |
| 746 | seq_putc(m, '\n'); |
| 747 | return err; |
| 748 | } |
| 749 | |
| 750 | struct seq_operations mountstats_op = { |
| 751 | .start = m_start, |
| 752 | .next = m_next, |
| 753 | .stop = m_stop, |
| 754 | .show = show_vfsstat, |
| 755 | }; |
| 756 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | /** |
| 758 | * may_umount_tree - check if a mount tree is busy |
| 759 | * @mnt: root of mount tree |
| 760 | * |
| 761 | * This is called to check if a tree of mounts has any |
| 762 | * open files, pwds, chroots or sub mounts that are |
| 763 | * busy. |
| 764 | */ |
| 765 | int may_umount_tree(struct vfsmount *mnt) |
| 766 | { |
Ram Pai | 36341f6 | 2005-11-07 17:17:22 -0500 | [diff] [blame] | 767 | int actual_refs = 0; |
| 768 | int minimum_refs = 0; |
| 769 | struct vfsmount *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | |
| 771 | spin_lock(&vfsmount_lock); |
Ram Pai | 36341f6 | 2005-11-07 17:17:22 -0500 | [diff] [blame] | 772 | for (p = mnt; p; p = next_mnt(p, mnt)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | actual_refs += atomic_read(&p->mnt_count); |
| 774 | minimum_refs += 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | } |
| 776 | spin_unlock(&vfsmount_lock); |
| 777 | |
| 778 | if (actual_refs > minimum_refs) |
Ian Kent | e3474a8 | 2006-03-27 01:14:51 -0800 | [diff] [blame] | 779 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | |
Ian Kent | e3474a8 | 2006-03-27 01:14:51 -0800 | [diff] [blame] | 781 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | } |
| 783 | |
| 784 | EXPORT_SYMBOL(may_umount_tree); |
| 785 | |
| 786 | /** |
| 787 | * may_umount - check if a mount point is busy |
| 788 | * @mnt: root of mount |
| 789 | * |
| 790 | * This is called to check if a mount point has any |
| 791 | * open files, pwds, chroots or sub mounts. If the |
| 792 | * mount has sub mounts this will return busy |
| 793 | * regardless of whether the sub mounts are busy. |
| 794 | * |
| 795 | * Doesn't take quota and stuff into account. IOW, in some cases it will |
| 796 | * give false negatives. The main reason why it's here is that we need |
| 797 | * a non-destructive way to look for easily umountable filesystems. |
| 798 | */ |
| 799 | int may_umount(struct vfsmount *mnt) |
| 800 | { |
Ian Kent | e3474a8 | 2006-03-27 01:14:51 -0800 | [diff] [blame] | 801 | int ret = 1; |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 802 | spin_lock(&vfsmount_lock); |
| 803 | if (propagate_mount_busy(mnt, 2)) |
Ian Kent | e3474a8 | 2006-03-27 01:14:51 -0800 | [diff] [blame] | 804 | ret = 0; |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 805 | spin_unlock(&vfsmount_lock); |
| 806 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | } |
| 808 | |
| 809 | EXPORT_SYMBOL(may_umount); |
| 810 | |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 811 | void release_mounts(struct list_head *head) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | { |
Ram Pai | 70fbcdf | 2005-11-07 17:17:04 -0500 | [diff] [blame] | 813 | struct vfsmount *mnt; |
Miklos Szeredi | bf066c7 | 2006-01-08 01:03:19 -0800 | [diff] [blame] | 814 | while (!list_empty(head)) { |
Pavel Emelianov | b5e6181 | 2007-05-08 00:30:19 -0700 | [diff] [blame] | 815 | mnt = list_first_entry(head, struct vfsmount, mnt_hash); |
Ram Pai | 70fbcdf | 2005-11-07 17:17:04 -0500 | [diff] [blame] | 816 | list_del_init(&mnt->mnt_hash); |
| 817 | if (mnt->mnt_parent != mnt) { |
| 818 | struct dentry *dentry; |
| 819 | struct vfsmount *m; |
| 820 | spin_lock(&vfsmount_lock); |
| 821 | dentry = mnt->mnt_mountpoint; |
| 822 | m = mnt->mnt_parent; |
| 823 | mnt->mnt_mountpoint = mnt->mnt_root; |
| 824 | mnt->mnt_parent = mnt; |
Al Viro | 7c4b93d | 2008-03-21 23:59:49 -0400 | [diff] [blame] | 825 | m->mnt_ghosts--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | spin_unlock(&vfsmount_lock); |
Ram Pai | 70fbcdf | 2005-11-07 17:17:04 -0500 | [diff] [blame] | 827 | dput(dentry); |
| 828 | mntput(m); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | } |
| 830 | mntput(mnt); |
Ram Pai | 70fbcdf | 2005-11-07 17:17:04 -0500 | [diff] [blame] | 831 | } |
| 832 | } |
| 833 | |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 834 | void umount_tree(struct vfsmount *mnt, int propagate, struct list_head *kill) |
Ram Pai | 70fbcdf | 2005-11-07 17:17:04 -0500 | [diff] [blame] | 835 | { |
| 836 | struct vfsmount *p; |
| 837 | |
Akinobu Mita | 1bfba4e | 2006-06-26 00:24:40 -0700 | [diff] [blame] | 838 | for (p = mnt; p; p = next_mnt(p, mnt)) |
| 839 | list_move(&p->mnt_hash, kill); |
Ram Pai | 70fbcdf | 2005-11-07 17:17:04 -0500 | [diff] [blame] | 840 | |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 841 | if (propagate) |
| 842 | propagate_umount(kill); |
| 843 | |
Ram Pai | 70fbcdf | 2005-11-07 17:17:04 -0500 | [diff] [blame] | 844 | list_for_each_entry(p, kill, mnt_hash) { |
| 845 | list_del_init(&p->mnt_expire); |
| 846 | list_del_init(&p->mnt_list); |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 847 | __touch_mnt_namespace(p->mnt_ns); |
| 848 | p->mnt_ns = NULL; |
Ram Pai | 70fbcdf | 2005-11-07 17:17:04 -0500 | [diff] [blame] | 849 | list_del_init(&p->mnt_child); |
Al Viro | 7c4b93d | 2008-03-21 23:59:49 -0400 | [diff] [blame] | 850 | if (p->mnt_parent != p) { |
| 851 | p->mnt_parent->mnt_ghosts++; |
Al Viro | f30ac31 | 2006-02-01 07:53:21 -0500 | [diff] [blame] | 852 | p->mnt_mountpoint->d_mounted--; |
Al Viro | 7c4b93d | 2008-03-21 23:59:49 -0400 | [diff] [blame] | 853 | } |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 854 | change_mnt_propagation(p, MS_PRIVATE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | } |
| 856 | } |
| 857 | |
Al Viro | c35038b | 2008-03-22 00:46:23 -0400 | [diff] [blame] | 858 | static void shrink_submounts(struct vfsmount *mnt, struct list_head *umounts); |
| 859 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | static int do_umount(struct vfsmount *mnt, int flags) |
| 861 | { |
Ram Pai | b58fed8 | 2005-11-07 17:16:09 -0500 | [diff] [blame] | 862 | struct super_block *sb = mnt->mnt_sb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | int retval; |
Ram Pai | 70fbcdf | 2005-11-07 17:17:04 -0500 | [diff] [blame] | 864 | LIST_HEAD(umount_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | |
| 866 | retval = security_sb_umount(mnt, flags); |
| 867 | if (retval) |
| 868 | return retval; |
| 869 | |
| 870 | /* |
| 871 | * Allow userspace to request a mountpoint be expired rather than |
| 872 | * unmounting unconditionally. Unmount only happens if: |
| 873 | * (1) the mark is already set (the mark is cleared by mntput()) |
| 874 | * (2) the usage count == 1 [parent vfsmount] + 1 [sys_umount] |
| 875 | */ |
| 876 | if (flags & MNT_EXPIRE) { |
Jan Blunck | 6ac08c3 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 877 | if (mnt == current->fs->root.mnt || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | flags & (MNT_FORCE | MNT_DETACH)) |
| 879 | return -EINVAL; |
| 880 | |
| 881 | if (atomic_read(&mnt->mnt_count) != 2) |
| 882 | return -EBUSY; |
| 883 | |
| 884 | if (!xchg(&mnt->mnt_expiry_mark, 1)) |
| 885 | return -EAGAIN; |
| 886 | } |
| 887 | |
| 888 | /* |
| 889 | * If we may have to abort operations to get out of this |
| 890 | * mount, and they will themselves hold resources we must |
| 891 | * allow the fs to do things. In the Unix tradition of |
| 892 | * 'Gee thats tricky lets do it in userspace' the umount_begin |
| 893 | * might fail to complete on the first run through as other tasks |
| 894 | * must return, and the like. Thats for the mount program to worry |
| 895 | * about for the moment. |
| 896 | */ |
| 897 | |
| 898 | lock_kernel(); |
Trond Myklebust | 8b512d9 | 2006-06-09 09:34:18 -0400 | [diff] [blame] | 899 | if (sb->s_op->umount_begin) |
| 900 | sb->s_op->umount_begin(mnt, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | unlock_kernel(); |
| 902 | |
| 903 | /* |
| 904 | * No sense to grab the lock for this test, but test itself looks |
| 905 | * somewhat bogus. Suggestions for better replacement? |
| 906 | * Ho-hum... In principle, we might treat that as umount + switch |
| 907 | * to rootfs. GC would eventually take care of the old vfsmount. |
| 908 | * Actually it makes sense, especially if rootfs would contain a |
| 909 | * /reboot - static binary that would close all descriptors and |
| 910 | * call reboot(9). Then init(8) could umount root and exec /reboot. |
| 911 | */ |
Jan Blunck | 6ac08c3 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 912 | if (mnt == current->fs->root.mnt && !(flags & MNT_DETACH)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | /* |
| 914 | * Special case for "unmounting" root ... |
| 915 | * we just try to remount it readonly. |
| 916 | */ |
| 917 | down_write(&sb->s_umount); |
| 918 | if (!(sb->s_flags & MS_RDONLY)) { |
| 919 | lock_kernel(); |
| 920 | DQUOT_OFF(sb); |
| 921 | retval = do_remount_sb(sb, MS_RDONLY, NULL, 0); |
| 922 | unlock_kernel(); |
| 923 | } |
| 924 | up_write(&sb->s_umount); |
| 925 | return retval; |
| 926 | } |
| 927 | |
Ram Pai | 390c684 | 2005-11-07 17:17:51 -0500 | [diff] [blame] | 928 | down_write(&namespace_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | spin_lock(&vfsmount_lock); |
Al Viro | 5addc5d | 2005-11-07 17:15:49 -0500 | [diff] [blame] | 930 | event++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | |
Al Viro | c35038b | 2008-03-22 00:46:23 -0400 | [diff] [blame] | 932 | if (!(flags & MNT_DETACH)) |
| 933 | shrink_submounts(mnt, &umount_list); |
| 934 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | retval = -EBUSY; |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 936 | if (flags & MNT_DETACH || !propagate_mount_busy(mnt, 2)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | if (!list_empty(&mnt->mnt_list)) |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 938 | umount_tree(mnt, 1, &umount_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | retval = 0; |
| 940 | } |
| 941 | spin_unlock(&vfsmount_lock); |
| 942 | if (retval) |
| 943 | security_sb_umount_busy(mnt); |
Ram Pai | 390c684 | 2005-11-07 17:17:51 -0500 | [diff] [blame] | 944 | up_write(&namespace_sem); |
Ram Pai | 70fbcdf | 2005-11-07 17:17:04 -0500 | [diff] [blame] | 945 | release_mounts(&umount_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | return retval; |
| 947 | } |
| 948 | |
| 949 | /* |
| 950 | * Now umount can handle mount points as well as block devices. |
| 951 | * This is important for filesystems which use unnamed block devices. |
| 952 | * |
| 953 | * We now support a flag for forced unmount like the other 'big iron' |
| 954 | * unixes. Our API is identical to OSF/1 to avoid making a mess of AMD |
| 955 | */ |
| 956 | |
| 957 | asmlinkage long sys_umount(char __user * name, int flags) |
| 958 | { |
| 959 | struct nameidata nd; |
| 960 | int retval; |
| 961 | |
| 962 | retval = __user_walk(name, LOOKUP_FOLLOW, &nd); |
| 963 | if (retval) |
| 964 | goto out; |
| 965 | retval = -EINVAL; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 966 | if (nd.path.dentry != nd.path.mnt->mnt_root) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | goto dput_and_out; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 968 | if (!check_mnt(nd.path.mnt)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | goto dput_and_out; |
| 970 | |
| 971 | retval = -EPERM; |
| 972 | if (!capable(CAP_SYS_ADMIN)) |
| 973 | goto dput_and_out; |
| 974 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 975 | retval = do_umount(nd.path.mnt, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | dput_and_out: |
Jan Blunck | 429731b | 2008-02-14 19:34:31 -0800 | [diff] [blame] | 977 | /* we mustn't call path_put() as that would clear mnt_expiry_mark */ |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 978 | dput(nd.path.dentry); |
| 979 | mntput_no_expire(nd.path.mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | out: |
| 981 | return retval; |
| 982 | } |
| 983 | |
| 984 | #ifdef __ARCH_WANT_SYS_OLDUMOUNT |
| 985 | |
| 986 | /* |
Ram Pai | b58fed8 | 2005-11-07 17:16:09 -0500 | [diff] [blame] | 987 | * The 2.0 compatible umount. No flags. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | asmlinkage long sys_oldumount(char __user * name) |
| 990 | { |
Ram Pai | b58fed8 | 2005-11-07 17:16:09 -0500 | [diff] [blame] | 991 | return sys_umount(name, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | } |
| 993 | |
| 994 | #endif |
| 995 | |
| 996 | static int mount_is_safe(struct nameidata *nd) |
| 997 | { |
| 998 | if (capable(CAP_SYS_ADMIN)) |
| 999 | return 0; |
| 1000 | return -EPERM; |
| 1001 | #ifdef notyet |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1002 | if (S_ISLNK(nd->path.dentry->d_inode->i_mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | return -EPERM; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1004 | if (nd->path.dentry->d_inode->i_mode & S_ISVTX) { |
| 1005 | if (current->uid != nd->path.dentry->d_inode->i_uid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | return -EPERM; |
| 1007 | } |
Christoph Hellwig | e4543ed | 2005-11-08 21:35:04 -0800 | [diff] [blame] | 1008 | if (vfs_permission(nd, MAY_WRITE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | return -EPERM; |
| 1010 | return 0; |
| 1011 | #endif |
| 1012 | } |
| 1013 | |
Ram Pai | b58fed8 | 2005-11-07 17:16:09 -0500 | [diff] [blame] | 1014 | static int lives_below_in_same_fs(struct dentry *d, struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | { |
| 1016 | while (1) { |
| 1017 | if (d == dentry) |
| 1018 | return 1; |
| 1019 | if (d == NULL || d == d->d_parent) |
| 1020 | return 0; |
| 1021 | d = d->d_parent; |
| 1022 | } |
| 1023 | } |
| 1024 | |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 1025 | struct vfsmount *copy_tree(struct vfsmount *mnt, struct dentry *dentry, |
Ram Pai | 36341f6 | 2005-11-07 17:17:22 -0500 | [diff] [blame] | 1026 | int flag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | { |
| 1028 | struct vfsmount *res, *p, *q, *r, *s; |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 1029 | struct path path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | |
Ram Pai | 9676f0c | 2005-11-07 17:21:20 -0500 | [diff] [blame] | 1031 | if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(mnt)) |
| 1032 | return NULL; |
| 1033 | |
Ram Pai | 36341f6 | 2005-11-07 17:17:22 -0500 | [diff] [blame] | 1034 | res = q = clone_mnt(mnt, dentry, flag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | if (!q) |
| 1036 | goto Enomem; |
| 1037 | q->mnt_mountpoint = mnt->mnt_mountpoint; |
| 1038 | |
| 1039 | p = mnt; |
Domen Puncer | fdadd65 | 2005-09-10 00:27:07 -0700 | [diff] [blame] | 1040 | list_for_each_entry(r, &mnt->mnt_mounts, mnt_child) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | if (!lives_below_in_same_fs(r->mnt_mountpoint, dentry)) |
| 1042 | continue; |
| 1043 | |
| 1044 | for (s = r; s; s = next_mnt(s, r)) { |
Ram Pai | 9676f0c | 2005-11-07 17:21:20 -0500 | [diff] [blame] | 1045 | if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(s)) { |
| 1046 | s = skip_mnt_tree(s); |
| 1047 | continue; |
| 1048 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | while (p != s->mnt_parent) { |
| 1050 | p = p->mnt_parent; |
| 1051 | q = q->mnt_parent; |
| 1052 | } |
| 1053 | p = s; |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 1054 | path.mnt = q; |
| 1055 | path.dentry = p->mnt_mountpoint; |
Ram Pai | 36341f6 | 2005-11-07 17:17:22 -0500 | [diff] [blame] | 1056 | q = clone_mnt(p, p->mnt_root, flag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | if (!q) |
| 1058 | goto Enomem; |
| 1059 | spin_lock(&vfsmount_lock); |
| 1060 | list_add_tail(&q->mnt_list, &res->mnt_list); |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 1061 | attach_mnt(q, &path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | spin_unlock(&vfsmount_lock); |
| 1063 | } |
| 1064 | } |
| 1065 | return res; |
Ram Pai | b58fed8 | 2005-11-07 17:16:09 -0500 | [diff] [blame] | 1066 | Enomem: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | if (res) { |
Ram Pai | 70fbcdf | 2005-11-07 17:17:04 -0500 | [diff] [blame] | 1068 | LIST_HEAD(umount_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | spin_lock(&vfsmount_lock); |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 1070 | umount_tree(res, 0, &umount_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | spin_unlock(&vfsmount_lock); |
Ram Pai | 70fbcdf | 2005-11-07 17:17:04 -0500 | [diff] [blame] | 1072 | release_mounts(&umount_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | } |
| 1074 | return NULL; |
| 1075 | } |
| 1076 | |
Al Viro | 8aec080 | 2007-06-07 12:20:32 -0400 | [diff] [blame] | 1077 | struct vfsmount *collect_mounts(struct vfsmount *mnt, struct dentry *dentry) |
| 1078 | { |
| 1079 | struct vfsmount *tree; |
| 1080 | down_read(&namespace_sem); |
| 1081 | tree = copy_tree(mnt, dentry, CL_COPY_ALL | CL_PRIVATE); |
| 1082 | up_read(&namespace_sem); |
| 1083 | return tree; |
| 1084 | } |
| 1085 | |
| 1086 | void drop_collected_mounts(struct vfsmount *mnt) |
| 1087 | { |
| 1088 | LIST_HEAD(umount_list); |
| 1089 | down_read(&namespace_sem); |
| 1090 | spin_lock(&vfsmount_lock); |
| 1091 | umount_tree(mnt, 0, &umount_list); |
| 1092 | spin_unlock(&vfsmount_lock); |
| 1093 | up_read(&namespace_sem); |
| 1094 | release_mounts(&umount_list); |
| 1095 | } |
| 1096 | |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 1097 | /* |
| 1098 | * @source_mnt : mount tree to be attached |
Ram Pai | 2144440 | 2005-11-07 17:20:03 -0500 | [diff] [blame] | 1099 | * @nd : place the mount tree @source_mnt is attached |
| 1100 | * @parent_nd : if non-null, detach the source_mnt from its parent and |
| 1101 | * store the parent mount and mountpoint dentry. |
| 1102 | * (done when source_mnt is moved) |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 1103 | * |
| 1104 | * NOTE: in the table below explains the semantics when a source mount |
| 1105 | * of a given type is attached to a destination mount of a given type. |
Ram Pai | 9676f0c | 2005-11-07 17:21:20 -0500 | [diff] [blame] | 1106 | * --------------------------------------------------------------------------- |
| 1107 | * | BIND MOUNT OPERATION | |
| 1108 | * |************************************************************************** |
| 1109 | * | source-->| shared | private | slave | unbindable | |
| 1110 | * | dest | | | | | |
| 1111 | * | | | | | | | |
| 1112 | * | v | | | | | |
| 1113 | * |************************************************************************** |
| 1114 | * | shared | shared (++) | shared (+) | shared(+++)| invalid | |
| 1115 | * | | | | | | |
| 1116 | * |non-shared| shared (+) | private | slave (*) | invalid | |
| 1117 | * *************************************************************************** |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 1118 | * A bind operation clones the source mount and mounts the clone on the |
| 1119 | * destination mount. |
| 1120 | * |
| 1121 | * (++) the cloned mount is propagated to all the mounts in the propagation |
| 1122 | * tree of the destination mount and the cloned mount is added to |
| 1123 | * the peer group of the source mount. |
| 1124 | * (+) the cloned mount is created under the destination mount and is marked |
| 1125 | * as shared. The cloned mount is added to the peer group of the source |
| 1126 | * mount. |
Ram Pai | 5afe002 | 2005-11-07 17:21:01 -0500 | [diff] [blame] | 1127 | * (+++) the mount is propagated to all the mounts in the propagation tree |
| 1128 | * of the destination mount and the cloned mount is made slave |
| 1129 | * of the same master as that of the source mount. The cloned mount |
| 1130 | * is marked as 'shared and slave'. |
| 1131 | * (*) the cloned mount is made a slave of the same master as that of the |
| 1132 | * source mount. |
| 1133 | * |
Ram Pai | 9676f0c | 2005-11-07 17:21:20 -0500 | [diff] [blame] | 1134 | * --------------------------------------------------------------------------- |
| 1135 | * | MOVE MOUNT OPERATION | |
| 1136 | * |************************************************************************** |
| 1137 | * | source-->| shared | private | slave | unbindable | |
| 1138 | * | dest | | | | | |
| 1139 | * | | | | | | | |
| 1140 | * | v | | | | | |
| 1141 | * |************************************************************************** |
| 1142 | * | shared | shared (+) | shared (+) | shared(+++) | invalid | |
| 1143 | * | | | | | | |
| 1144 | * |non-shared| shared (+*) | private | slave (*) | unbindable | |
| 1145 | * *************************************************************************** |
Ram Pai | 5afe002 | 2005-11-07 17:21:01 -0500 | [diff] [blame] | 1146 | * |
| 1147 | * (+) the mount is moved to the destination. And is then propagated to |
| 1148 | * all the mounts in the propagation tree of the destination mount. |
Ram Pai | 2144440 | 2005-11-07 17:20:03 -0500 | [diff] [blame] | 1149 | * (+*) the mount is moved to the destination. |
Ram Pai | 5afe002 | 2005-11-07 17:21:01 -0500 | [diff] [blame] | 1150 | * (+++) the mount is moved to the destination and is then propagated to |
| 1151 | * all the mounts belonging to the destination mount's propagation tree. |
| 1152 | * the mount is marked as 'shared and slave'. |
| 1153 | * (*) the mount continues to be a slave at the new location. |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 1154 | * |
| 1155 | * if the source mount is a tree, the operations explained above is |
| 1156 | * applied to each mount in the tree. |
| 1157 | * Must be called without spinlocks held, since this function can sleep |
| 1158 | * in allocations. |
| 1159 | */ |
| 1160 | static int attach_recursive_mnt(struct vfsmount *source_mnt, |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 1161 | struct path *path, struct path *parent_path) |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 1162 | { |
| 1163 | LIST_HEAD(tree_list); |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 1164 | struct vfsmount *dest_mnt = path->mnt; |
| 1165 | struct dentry *dest_dentry = path->dentry; |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 1166 | struct vfsmount *child, *p; |
| 1167 | |
| 1168 | if (propagate_mnt(dest_mnt, dest_dentry, source_mnt, &tree_list)) |
| 1169 | return -EINVAL; |
| 1170 | |
| 1171 | if (IS_MNT_SHARED(dest_mnt)) { |
| 1172 | for (p = source_mnt; p; p = next_mnt(p, source_mnt)) |
| 1173 | set_mnt_shared(p); |
| 1174 | } |
| 1175 | |
| 1176 | spin_lock(&vfsmount_lock); |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 1177 | if (parent_path) { |
| 1178 | detach_mnt(source_mnt, parent_path); |
| 1179 | attach_mnt(source_mnt, path); |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 1180 | touch_mnt_namespace(current->nsproxy->mnt_ns); |
Ram Pai | 2144440 | 2005-11-07 17:20:03 -0500 | [diff] [blame] | 1181 | } else { |
| 1182 | mnt_set_mountpoint(dest_mnt, dest_dentry, source_mnt); |
| 1183 | commit_tree(source_mnt); |
| 1184 | } |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 1185 | |
| 1186 | list_for_each_entry_safe(child, p, &tree_list, mnt_hash) { |
| 1187 | list_del_init(&child->mnt_hash); |
| 1188 | commit_tree(child); |
| 1189 | } |
| 1190 | spin_unlock(&vfsmount_lock); |
| 1191 | return 0; |
| 1192 | } |
| 1193 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | static int graft_tree(struct vfsmount *mnt, struct nameidata *nd) |
| 1195 | { |
| 1196 | int err; |
| 1197 | if (mnt->mnt_sb->s_flags & MS_NOUSER) |
| 1198 | return -EINVAL; |
| 1199 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1200 | if (S_ISDIR(nd->path.dentry->d_inode->i_mode) != |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1201 | S_ISDIR(mnt->mnt_root->d_inode->i_mode)) |
| 1202 | return -ENOTDIR; |
| 1203 | |
| 1204 | err = -ENOENT; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1205 | mutex_lock(&nd->path.dentry->d_inode->i_mutex); |
| 1206 | if (IS_DEADDIR(nd->path.dentry->d_inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1207 | goto out_unlock; |
| 1208 | |
| 1209 | err = security_sb_check_sb(mnt, nd); |
| 1210 | if (err) |
| 1211 | goto out_unlock; |
| 1212 | |
| 1213 | err = -ENOENT; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1214 | if (IS_ROOT(nd->path.dentry) || !d_unhashed(nd->path.dentry)) |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 1215 | err = attach_recursive_mnt(mnt, &nd->path, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | out_unlock: |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1217 | mutex_unlock(&nd->path.dentry->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1218 | if (!err) |
| 1219 | security_sb_post_addmount(mnt, nd); |
| 1220 | return err; |
| 1221 | } |
| 1222 | |
| 1223 | /* |
Ram Pai | 07b2088 | 2005-11-07 17:19:07 -0500 | [diff] [blame] | 1224 | * recursively change the type of the mountpoint. |
Eric Sandeen | 2dafe1c | 2008-02-08 04:22:12 -0800 | [diff] [blame] | 1225 | * noinline this do_mount helper to save do_mount stack space. |
Ram Pai | 07b2088 | 2005-11-07 17:19:07 -0500 | [diff] [blame] | 1226 | */ |
Eric Sandeen | 2dafe1c | 2008-02-08 04:22:12 -0800 | [diff] [blame] | 1227 | static noinline int do_change_type(struct nameidata *nd, int flag) |
Ram Pai | 07b2088 | 2005-11-07 17:19:07 -0500 | [diff] [blame] | 1228 | { |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1229 | struct vfsmount *m, *mnt = nd->path.mnt; |
Ram Pai | 07b2088 | 2005-11-07 17:19:07 -0500 | [diff] [blame] | 1230 | int recurse = flag & MS_REC; |
| 1231 | int type = flag & ~MS_REC; |
| 1232 | |
Miklos Szeredi | ee6f958 | 2007-05-08 00:30:40 -0700 | [diff] [blame] | 1233 | if (!capable(CAP_SYS_ADMIN)) |
| 1234 | return -EPERM; |
| 1235 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1236 | if (nd->path.dentry != nd->path.mnt->mnt_root) |
Ram Pai | 07b2088 | 2005-11-07 17:19:07 -0500 | [diff] [blame] | 1237 | return -EINVAL; |
| 1238 | |
| 1239 | down_write(&namespace_sem); |
| 1240 | spin_lock(&vfsmount_lock); |
| 1241 | for (m = mnt; m; m = (recurse ? next_mnt(m, mnt) : NULL)) |
| 1242 | change_mnt_propagation(m, type); |
| 1243 | spin_unlock(&vfsmount_lock); |
| 1244 | up_write(&namespace_sem); |
| 1245 | return 0; |
| 1246 | } |
| 1247 | |
| 1248 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | * do loopback mount. |
Eric Sandeen | 2dafe1c | 2008-02-08 04:22:12 -0800 | [diff] [blame] | 1250 | * noinline this do_mount helper to save do_mount stack space. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1251 | */ |
Eric Sandeen | 2dafe1c | 2008-02-08 04:22:12 -0800 | [diff] [blame] | 1252 | static noinline int do_loopback(struct nameidata *nd, char *old_name, |
| 1253 | int recurse) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1254 | { |
| 1255 | struct nameidata old_nd; |
| 1256 | struct vfsmount *mnt = NULL; |
| 1257 | int err = mount_is_safe(nd); |
| 1258 | if (err) |
| 1259 | return err; |
| 1260 | if (!old_name || !*old_name) |
| 1261 | return -EINVAL; |
| 1262 | err = path_lookup(old_name, LOOKUP_FOLLOW, &old_nd); |
| 1263 | if (err) |
| 1264 | return err; |
| 1265 | |
Ram Pai | 390c684 | 2005-11-07 17:17:51 -0500 | [diff] [blame] | 1266 | down_write(&namespace_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | err = -EINVAL; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1268 | if (IS_MNT_UNBINDABLE(old_nd.path.mnt)) |
| 1269 | goto out; |
Ram Pai | 9676f0c | 2005-11-07 17:21:20 -0500 | [diff] [blame] | 1270 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1271 | if (!check_mnt(nd->path.mnt) || !check_mnt(old_nd.path.mnt)) |
Al Viro | ccd48bc | 2005-11-07 17:15:04 -0500 | [diff] [blame] | 1272 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1273 | |
Al Viro | ccd48bc | 2005-11-07 17:15:04 -0500 | [diff] [blame] | 1274 | err = -ENOMEM; |
| 1275 | if (recurse) |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1276 | mnt = copy_tree(old_nd.path.mnt, old_nd.path.dentry, 0); |
Al Viro | ccd48bc | 2005-11-07 17:15:04 -0500 | [diff] [blame] | 1277 | else |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1278 | mnt = clone_mnt(old_nd.path.mnt, old_nd.path.dentry, 0); |
Al Viro | ccd48bc | 2005-11-07 17:15:04 -0500 | [diff] [blame] | 1279 | |
| 1280 | if (!mnt) |
| 1281 | goto out; |
| 1282 | |
Al Viro | ccd48bc | 2005-11-07 17:15:04 -0500 | [diff] [blame] | 1283 | err = graft_tree(mnt, nd); |
| 1284 | if (err) { |
Ram Pai | 70fbcdf | 2005-11-07 17:17:04 -0500 | [diff] [blame] | 1285 | LIST_HEAD(umount_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | spin_lock(&vfsmount_lock); |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 1287 | umount_tree(mnt, 0, &umount_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1288 | spin_unlock(&vfsmount_lock); |
Ram Pai | 70fbcdf | 2005-11-07 17:17:04 -0500 | [diff] [blame] | 1289 | release_mounts(&umount_list); |
Ram Pai | 5b83d2c5c | 2005-11-07 17:16:29 -0500 | [diff] [blame] | 1290 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1291 | |
Al Viro | ccd48bc | 2005-11-07 17:15:04 -0500 | [diff] [blame] | 1292 | out: |
Ram Pai | 390c684 | 2005-11-07 17:17:51 -0500 | [diff] [blame] | 1293 | up_write(&namespace_sem); |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 1294 | path_put(&old_nd.path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1295 | return err; |
| 1296 | } |
| 1297 | |
| 1298 | /* |
| 1299 | * change filesystem flags. dir should be a physical root of filesystem. |
| 1300 | * If you've mounted a non-root directory somewhere and want to do remount |
| 1301 | * on it - tough luck. |
Eric Sandeen | 2dafe1c | 2008-02-08 04:22:12 -0800 | [diff] [blame] | 1302 | * noinline this do_mount helper to save do_mount stack space. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1303 | */ |
Eric Sandeen | 2dafe1c | 2008-02-08 04:22:12 -0800 | [diff] [blame] | 1304 | static noinline int do_remount(struct nameidata *nd, int flags, int mnt_flags, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | void *data) |
| 1306 | { |
| 1307 | int err; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1308 | struct super_block *sb = nd->path.mnt->mnt_sb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | |
| 1310 | if (!capable(CAP_SYS_ADMIN)) |
| 1311 | return -EPERM; |
| 1312 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1313 | if (!check_mnt(nd->path.mnt)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | return -EINVAL; |
| 1315 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1316 | if (nd->path.dentry != nd->path.mnt->mnt_root) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | return -EINVAL; |
| 1318 | |
| 1319 | down_write(&sb->s_umount); |
| 1320 | err = do_remount_sb(sb, flags, data, 0); |
| 1321 | if (!err) |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1322 | nd->path.mnt->mnt_flags = mnt_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | up_write(&sb->s_umount); |
| 1324 | if (!err) |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1325 | security_sb_post_remount(nd->path.mnt, flags, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | return err; |
| 1327 | } |
| 1328 | |
Ram Pai | 9676f0c | 2005-11-07 17:21:20 -0500 | [diff] [blame] | 1329 | static inline int tree_contains_unbindable(struct vfsmount *mnt) |
| 1330 | { |
| 1331 | struct vfsmount *p; |
| 1332 | for (p = mnt; p; p = next_mnt(p, mnt)) { |
| 1333 | if (IS_MNT_UNBINDABLE(p)) |
| 1334 | return 1; |
| 1335 | } |
| 1336 | return 0; |
| 1337 | } |
| 1338 | |
Eric Sandeen | 2dafe1c | 2008-02-08 04:22:12 -0800 | [diff] [blame] | 1339 | /* |
| 1340 | * noinline this do_mount helper to save do_mount stack space. |
| 1341 | */ |
| 1342 | static noinline int do_move_mount(struct nameidata *nd, char *old_name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1343 | { |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 1344 | struct nameidata old_nd; |
| 1345 | struct path parent_path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1346 | struct vfsmount *p; |
| 1347 | int err = 0; |
| 1348 | if (!capable(CAP_SYS_ADMIN)) |
| 1349 | return -EPERM; |
| 1350 | if (!old_name || !*old_name) |
| 1351 | return -EINVAL; |
| 1352 | err = path_lookup(old_name, LOOKUP_FOLLOW, &old_nd); |
| 1353 | if (err) |
| 1354 | return err; |
| 1355 | |
Ram Pai | 390c684 | 2005-11-07 17:17:51 -0500 | [diff] [blame] | 1356 | down_write(&namespace_sem); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1357 | while (d_mountpoint(nd->path.dentry) && |
| 1358 | follow_down(&nd->path.mnt, &nd->path.dentry)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | ; |
| 1360 | err = -EINVAL; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1361 | if (!check_mnt(nd->path.mnt) || !check_mnt(old_nd.path.mnt)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | goto out; |
| 1363 | |
| 1364 | err = -ENOENT; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1365 | mutex_lock(&nd->path.dentry->d_inode->i_mutex); |
| 1366 | if (IS_DEADDIR(nd->path.dentry->d_inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1367 | goto out1; |
| 1368 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1369 | if (!IS_ROOT(nd->path.dentry) && d_unhashed(nd->path.dentry)) |
Ram Pai | 2144440 | 2005-11-07 17:20:03 -0500 | [diff] [blame] | 1370 | goto out1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1371 | |
| 1372 | err = -EINVAL; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1373 | if (old_nd.path.dentry != old_nd.path.mnt->mnt_root) |
Ram Pai | 2144440 | 2005-11-07 17:20:03 -0500 | [diff] [blame] | 1374 | goto out1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1375 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1376 | if (old_nd.path.mnt == old_nd.path.mnt->mnt_parent) |
Ram Pai | 2144440 | 2005-11-07 17:20:03 -0500 | [diff] [blame] | 1377 | goto out1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1379 | if (S_ISDIR(nd->path.dentry->d_inode->i_mode) != |
| 1380 | S_ISDIR(old_nd.path.dentry->d_inode->i_mode)) |
Ram Pai | 2144440 | 2005-11-07 17:20:03 -0500 | [diff] [blame] | 1381 | goto out1; |
| 1382 | /* |
| 1383 | * Don't move a mount residing in a shared parent. |
| 1384 | */ |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1385 | if (old_nd.path.mnt->mnt_parent && |
| 1386 | IS_MNT_SHARED(old_nd.path.mnt->mnt_parent)) |
Ram Pai | 2144440 | 2005-11-07 17:20:03 -0500 | [diff] [blame] | 1387 | goto out1; |
Ram Pai | 9676f0c | 2005-11-07 17:21:20 -0500 | [diff] [blame] | 1388 | /* |
| 1389 | * Don't move a mount tree containing unbindable mounts to a destination |
| 1390 | * mount which is shared. |
| 1391 | */ |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1392 | if (IS_MNT_SHARED(nd->path.mnt) && |
| 1393 | tree_contains_unbindable(old_nd.path.mnt)) |
Ram Pai | 9676f0c | 2005-11-07 17:21:20 -0500 | [diff] [blame] | 1394 | goto out1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1395 | err = -ELOOP; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1396 | for (p = nd->path.mnt; p->mnt_parent != p; p = p->mnt_parent) |
| 1397 | if (p == old_nd.path.mnt) |
Ram Pai | 2144440 | 2005-11-07 17:20:03 -0500 | [diff] [blame] | 1398 | goto out1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1399 | |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 1400 | err = attach_recursive_mnt(old_nd.path.mnt, &nd->path, &parent_path); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1401 | if (err) |
Ram Pai | 2144440 | 2005-11-07 17:20:03 -0500 | [diff] [blame] | 1402 | goto out1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | |
| 1404 | /* if the mount is moved, it should no longer be expire |
| 1405 | * automatically */ |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1406 | list_del_init(&old_nd.path.mnt->mnt_expire); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1407 | out1: |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1408 | mutex_unlock(&nd->path.dentry->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 | out: |
Ram Pai | 390c684 | 2005-11-07 17:17:51 -0500 | [diff] [blame] | 1410 | up_write(&namespace_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1411 | if (!err) |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 1412 | path_put(&parent_path); |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 1413 | path_put(&old_nd.path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1414 | return err; |
| 1415 | } |
| 1416 | |
| 1417 | /* |
| 1418 | * create a new mount for userspace and request it to be added into the |
| 1419 | * namespace's tree |
Eric Sandeen | 2dafe1c | 2008-02-08 04:22:12 -0800 | [diff] [blame] | 1420 | * noinline this do_mount helper to save do_mount stack space. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1421 | */ |
Eric Sandeen | 2dafe1c | 2008-02-08 04:22:12 -0800 | [diff] [blame] | 1422 | static noinline int do_new_mount(struct nameidata *nd, char *type, int flags, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1423 | int mnt_flags, char *name, void *data) |
| 1424 | { |
| 1425 | struct vfsmount *mnt; |
| 1426 | |
| 1427 | if (!type || !memchr(type, 0, PAGE_SIZE)) |
| 1428 | return -EINVAL; |
| 1429 | |
| 1430 | /* we need capabilities... */ |
| 1431 | if (!capable(CAP_SYS_ADMIN)) |
| 1432 | return -EPERM; |
| 1433 | |
| 1434 | mnt = do_kern_mount(type, flags, name, data); |
| 1435 | if (IS_ERR(mnt)) |
| 1436 | return PTR_ERR(mnt); |
| 1437 | |
| 1438 | return do_add_mount(mnt, nd, mnt_flags, NULL); |
| 1439 | } |
| 1440 | |
| 1441 | /* |
| 1442 | * add a mount into a namespace's mount tree |
| 1443 | * - provide the option of adding the new mount to an expiration list |
| 1444 | */ |
| 1445 | int do_add_mount(struct vfsmount *newmnt, struct nameidata *nd, |
| 1446 | int mnt_flags, struct list_head *fslist) |
| 1447 | { |
| 1448 | int err; |
| 1449 | |
Ram Pai | 390c684 | 2005-11-07 17:17:51 -0500 | [diff] [blame] | 1450 | down_write(&namespace_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1451 | /* Something was mounted here while we slept */ |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1452 | while (d_mountpoint(nd->path.dentry) && |
| 1453 | follow_down(&nd->path.mnt, &nd->path.dentry)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1454 | ; |
| 1455 | err = -EINVAL; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1456 | if (!check_mnt(nd->path.mnt)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1457 | goto unlock; |
| 1458 | |
| 1459 | /* Refuse the same filesystem on the same mount point */ |
| 1460 | err = -EBUSY; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1461 | if (nd->path.mnt->mnt_sb == newmnt->mnt_sb && |
| 1462 | nd->path.mnt->mnt_root == nd->path.dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1463 | goto unlock; |
| 1464 | |
| 1465 | err = -EINVAL; |
| 1466 | if (S_ISLNK(newmnt->mnt_root->d_inode->i_mode)) |
| 1467 | goto unlock; |
| 1468 | |
| 1469 | newmnt->mnt_flags = mnt_flags; |
Ram Pai | 5b83d2c5c | 2005-11-07 17:16:29 -0500 | [diff] [blame] | 1470 | if ((err = graft_tree(newmnt, nd))) |
| 1471 | goto unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | |
Al Viro | 6758f95 | 2008-03-22 16:14:30 -0400 | [diff] [blame] | 1473 | if (fslist) /* add to the specified expiration list */ |
Miklos Szeredi | 55e700b | 2005-07-07 17:57:30 -0700 | [diff] [blame] | 1474 | list_add_tail(&newmnt->mnt_expire, fslist); |
Al Viro | 6758f95 | 2008-03-22 16:14:30 -0400 | [diff] [blame] | 1475 | |
Ram Pai | 390c684 | 2005-11-07 17:17:51 -0500 | [diff] [blame] | 1476 | up_write(&namespace_sem); |
Ram Pai | 5b83d2c5c | 2005-11-07 17:16:29 -0500 | [diff] [blame] | 1477 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | |
| 1479 | unlock: |
Ram Pai | 390c684 | 2005-11-07 17:17:51 -0500 | [diff] [blame] | 1480 | up_write(&namespace_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1481 | mntput(newmnt); |
| 1482 | return err; |
| 1483 | } |
| 1484 | |
| 1485 | EXPORT_SYMBOL_GPL(do_add_mount); |
| 1486 | |
Trond Myklebust | 5528f911 | 2006-06-09 09:34:17 -0400 | [diff] [blame] | 1487 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1488 | * process a list of expirable mountpoints with the intent of discarding any |
| 1489 | * mountpoints that aren't in use and haven't been touched since last we came |
| 1490 | * here |
| 1491 | */ |
| 1492 | void mark_mounts_for_expiry(struct list_head *mounts) |
| 1493 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | struct vfsmount *mnt, *next; |
| 1495 | LIST_HEAD(graveyard); |
Al Viro | bcc5c7d | 2008-03-22 00:21:53 -0400 | [diff] [blame] | 1496 | LIST_HEAD(umounts); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1497 | |
| 1498 | if (list_empty(mounts)) |
| 1499 | return; |
| 1500 | |
Al Viro | bcc5c7d | 2008-03-22 00:21:53 -0400 | [diff] [blame] | 1501 | down_write(&namespace_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1502 | spin_lock(&vfsmount_lock); |
| 1503 | |
| 1504 | /* extract from the expiration list every vfsmount that matches the |
| 1505 | * following criteria: |
| 1506 | * - only referenced by its parent vfsmount |
| 1507 | * - still marked for expiry (marked on the last call here; marks are |
| 1508 | * cleared by mntput()) |
| 1509 | */ |
Miklos Szeredi | 55e700b | 2005-07-07 17:57:30 -0700 | [diff] [blame] | 1510 | list_for_each_entry_safe(mnt, next, mounts, mnt_expire) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | if (!xchg(&mnt->mnt_expiry_mark, 1) || |
Al Viro | bcc5c7d | 2008-03-22 00:21:53 -0400 | [diff] [blame] | 1512 | propagate_mount_busy(mnt, 1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1513 | continue; |
Miklos Szeredi | 55e700b | 2005-07-07 17:57:30 -0700 | [diff] [blame] | 1514 | list_move(&mnt->mnt_expire, &graveyard); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1515 | } |
Al Viro | bcc5c7d | 2008-03-22 00:21:53 -0400 | [diff] [blame] | 1516 | while (!list_empty(&graveyard)) { |
| 1517 | mnt = list_first_entry(&graveyard, struct vfsmount, mnt_expire); |
| 1518 | touch_mnt_namespace(mnt->mnt_ns); |
| 1519 | umount_tree(mnt, 1, &umounts); |
| 1520 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1521 | spin_unlock(&vfsmount_lock); |
Al Viro | bcc5c7d | 2008-03-22 00:21:53 -0400 | [diff] [blame] | 1522 | up_write(&namespace_sem); |
| 1523 | |
| 1524 | release_mounts(&umounts); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1525 | } |
| 1526 | |
| 1527 | EXPORT_SYMBOL_GPL(mark_mounts_for_expiry); |
| 1528 | |
| 1529 | /* |
Trond Myklebust | 5528f911 | 2006-06-09 09:34:17 -0400 | [diff] [blame] | 1530 | * Ripoff of 'select_parent()' |
| 1531 | * |
| 1532 | * search the list of submounts for a given mountpoint, and move any |
| 1533 | * shrinkable submounts to the 'graveyard' list. |
| 1534 | */ |
| 1535 | static int select_submounts(struct vfsmount *parent, struct list_head *graveyard) |
| 1536 | { |
| 1537 | struct vfsmount *this_parent = parent; |
| 1538 | struct list_head *next; |
| 1539 | int found = 0; |
| 1540 | |
| 1541 | repeat: |
| 1542 | next = this_parent->mnt_mounts.next; |
| 1543 | resume: |
| 1544 | while (next != &this_parent->mnt_mounts) { |
| 1545 | struct list_head *tmp = next; |
| 1546 | struct vfsmount *mnt = list_entry(tmp, struct vfsmount, mnt_child); |
| 1547 | |
| 1548 | next = tmp->next; |
| 1549 | if (!(mnt->mnt_flags & MNT_SHRINKABLE)) |
| 1550 | continue; |
| 1551 | /* |
| 1552 | * Descend a level if the d_mounts list is non-empty. |
| 1553 | */ |
| 1554 | if (!list_empty(&mnt->mnt_mounts)) { |
| 1555 | this_parent = mnt; |
| 1556 | goto repeat; |
| 1557 | } |
| 1558 | |
| 1559 | if (!propagate_mount_busy(mnt, 1)) { |
Trond Myklebust | 5528f911 | 2006-06-09 09:34:17 -0400 | [diff] [blame] | 1560 | list_move_tail(&mnt->mnt_expire, graveyard); |
| 1561 | found++; |
| 1562 | } |
| 1563 | } |
| 1564 | /* |
| 1565 | * All done at this level ... ascend and resume the search |
| 1566 | */ |
| 1567 | if (this_parent != parent) { |
| 1568 | next = this_parent->mnt_child.next; |
| 1569 | this_parent = this_parent->mnt_parent; |
| 1570 | goto resume; |
| 1571 | } |
| 1572 | return found; |
| 1573 | } |
| 1574 | |
| 1575 | /* |
| 1576 | * process a list of expirable mountpoints with the intent of discarding any |
| 1577 | * submounts of a specific parent mountpoint |
| 1578 | */ |
Al Viro | c35038b | 2008-03-22 00:46:23 -0400 | [diff] [blame] | 1579 | static void shrink_submounts(struct vfsmount *mnt, struct list_head *umounts) |
Trond Myklebust | 5528f911 | 2006-06-09 09:34:17 -0400 | [diff] [blame] | 1580 | { |
| 1581 | LIST_HEAD(graveyard); |
Al Viro | c35038b | 2008-03-22 00:46:23 -0400 | [diff] [blame] | 1582 | struct vfsmount *m; |
Trond Myklebust | 5528f911 | 2006-06-09 09:34:17 -0400 | [diff] [blame] | 1583 | |
Trond Myklebust | 5528f911 | 2006-06-09 09:34:17 -0400 | [diff] [blame] | 1584 | /* extract submounts of 'mountpoint' from the expiration list */ |
Al Viro | c35038b | 2008-03-22 00:46:23 -0400 | [diff] [blame] | 1585 | while (select_submounts(mnt, &graveyard)) { |
Al Viro | bcc5c7d | 2008-03-22 00:21:53 -0400 | [diff] [blame] | 1586 | while (!list_empty(&graveyard)) { |
Al Viro | c35038b | 2008-03-22 00:46:23 -0400 | [diff] [blame] | 1587 | m = list_first_entry(&graveyard, struct vfsmount, |
Al Viro | bcc5c7d | 2008-03-22 00:21:53 -0400 | [diff] [blame] | 1588 | mnt_expire); |
| 1589 | touch_mnt_namespace(mnt->mnt_ns); |
Al Viro | c35038b | 2008-03-22 00:46:23 -0400 | [diff] [blame] | 1590 | umount_tree(mnt, 1, umounts); |
Al Viro | bcc5c7d | 2008-03-22 00:21:53 -0400 | [diff] [blame] | 1591 | } |
| 1592 | } |
Trond Myklebust | 5528f911 | 2006-06-09 09:34:17 -0400 | [diff] [blame] | 1593 | } |
| 1594 | |
Trond Myklebust | 5528f911 | 2006-06-09 09:34:17 -0400 | [diff] [blame] | 1595 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1596 | * Some copy_from_user() implementations do not return the exact number of |
| 1597 | * bytes remaining to copy on a fault. But copy_mount_options() requires that. |
| 1598 | * Note that this function differs from copy_from_user() in that it will oops |
| 1599 | * on bad values of `to', rather than returning a short copy. |
| 1600 | */ |
Ram Pai | b58fed8 | 2005-11-07 17:16:09 -0500 | [diff] [blame] | 1601 | static long exact_copy_from_user(void *to, const void __user * from, |
| 1602 | unsigned long n) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1603 | { |
| 1604 | char *t = to; |
| 1605 | const char __user *f = from; |
| 1606 | char c; |
| 1607 | |
| 1608 | if (!access_ok(VERIFY_READ, from, n)) |
| 1609 | return n; |
| 1610 | |
| 1611 | while (n) { |
| 1612 | if (__get_user(c, f)) { |
| 1613 | memset(t, 0, n); |
| 1614 | break; |
| 1615 | } |
| 1616 | *t++ = c; |
| 1617 | f++; |
| 1618 | n--; |
| 1619 | } |
| 1620 | return n; |
| 1621 | } |
| 1622 | |
Ram Pai | b58fed8 | 2005-11-07 17:16:09 -0500 | [diff] [blame] | 1623 | int copy_mount_options(const void __user * data, unsigned long *where) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | { |
| 1625 | int i; |
| 1626 | unsigned long page; |
| 1627 | unsigned long size; |
Ram Pai | b58fed8 | 2005-11-07 17:16:09 -0500 | [diff] [blame] | 1628 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1629 | *where = 0; |
| 1630 | if (!data) |
| 1631 | return 0; |
| 1632 | |
| 1633 | if (!(page = __get_free_page(GFP_KERNEL))) |
| 1634 | return -ENOMEM; |
| 1635 | |
| 1636 | /* We only care that *some* data at the address the user |
| 1637 | * gave us is valid. Just in case, we'll zero |
| 1638 | * the remainder of the page. |
| 1639 | */ |
| 1640 | /* copy_from_user cannot cross TASK_SIZE ! */ |
| 1641 | size = TASK_SIZE - (unsigned long)data; |
| 1642 | if (size > PAGE_SIZE) |
| 1643 | size = PAGE_SIZE; |
| 1644 | |
| 1645 | i = size - exact_copy_from_user((void *)page, data, size); |
| 1646 | if (!i) { |
Ram Pai | b58fed8 | 2005-11-07 17:16:09 -0500 | [diff] [blame] | 1647 | free_page(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 | return -EFAULT; |
| 1649 | } |
| 1650 | if (i != PAGE_SIZE) |
| 1651 | memset((char *)page + i, 0, PAGE_SIZE - i); |
| 1652 | *where = page; |
| 1653 | return 0; |
| 1654 | } |
| 1655 | |
| 1656 | /* |
| 1657 | * Flags is a 32-bit value that allows up to 31 non-fs dependent flags to |
| 1658 | * be given to the mount() call (ie: read-only, no-dev, no-suid etc). |
| 1659 | * |
| 1660 | * data is a (void *) that can point to any structure up to |
| 1661 | * PAGE_SIZE-1 bytes, which can contain arbitrary fs-dependent |
| 1662 | * information (or be NULL). |
| 1663 | * |
| 1664 | * Pre-0.97 versions of mount() didn't have a flags word. |
| 1665 | * When the flags word was introduced its top half was required |
| 1666 | * to have the magic value 0xC0ED, and this remained so until 2.4.0-test9. |
| 1667 | * Therefore, if this magic number is present, it carries no information |
| 1668 | * and must be discarded. |
| 1669 | */ |
Ram Pai | b58fed8 | 2005-11-07 17:16:09 -0500 | [diff] [blame] | 1670 | long do_mount(char *dev_name, char *dir_name, char *type_page, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1671 | unsigned long flags, void *data_page) |
| 1672 | { |
| 1673 | struct nameidata nd; |
| 1674 | int retval = 0; |
| 1675 | int mnt_flags = 0; |
| 1676 | |
| 1677 | /* Discard magic */ |
| 1678 | if ((flags & MS_MGC_MSK) == MS_MGC_VAL) |
| 1679 | flags &= ~MS_MGC_MSK; |
| 1680 | |
| 1681 | /* Basic sanity checks */ |
| 1682 | |
| 1683 | if (!dir_name || !*dir_name || !memchr(dir_name, 0, PAGE_SIZE)) |
| 1684 | return -EINVAL; |
| 1685 | if (dev_name && !memchr(dev_name, 0, PAGE_SIZE)) |
| 1686 | return -EINVAL; |
| 1687 | |
| 1688 | if (data_page) |
| 1689 | ((char *)data_page)[PAGE_SIZE - 1] = 0; |
| 1690 | |
| 1691 | /* Separate the per-mountpoint flags */ |
| 1692 | if (flags & MS_NOSUID) |
| 1693 | mnt_flags |= MNT_NOSUID; |
| 1694 | if (flags & MS_NODEV) |
| 1695 | mnt_flags |= MNT_NODEV; |
| 1696 | if (flags & MS_NOEXEC) |
| 1697 | mnt_flags |= MNT_NOEXEC; |
Christoph Hellwig | fc33a7b | 2006-01-09 20:52:17 -0800 | [diff] [blame] | 1698 | if (flags & MS_NOATIME) |
| 1699 | mnt_flags |= MNT_NOATIME; |
| 1700 | if (flags & MS_NODIRATIME) |
| 1701 | mnt_flags |= MNT_NODIRATIME; |
Valerie Henson | 47ae32d | 2006-12-13 00:34:34 -0800 | [diff] [blame] | 1702 | if (flags & MS_RELATIME) |
| 1703 | mnt_flags |= MNT_RELATIME; |
Christoph Hellwig | fc33a7b | 2006-01-09 20:52:17 -0800 | [diff] [blame] | 1704 | |
| 1705 | flags &= ~(MS_NOSUID | MS_NOEXEC | MS_NODEV | MS_ACTIVE | |
Pavel Emelyanov | 8bf9725 | 2007-10-18 23:40:02 -0700 | [diff] [blame] | 1706 | MS_NOATIME | MS_NODIRATIME | MS_RELATIME| MS_KERNMOUNT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1707 | |
| 1708 | /* ... and get the mountpoint */ |
| 1709 | retval = path_lookup(dir_name, LOOKUP_FOLLOW, &nd); |
| 1710 | if (retval) |
| 1711 | return retval; |
| 1712 | |
| 1713 | retval = security_sb_mount(dev_name, &nd, type_page, flags, data_page); |
| 1714 | if (retval) |
| 1715 | goto dput_out; |
| 1716 | |
| 1717 | if (flags & MS_REMOUNT) |
| 1718 | retval = do_remount(&nd, flags & ~MS_REMOUNT, mnt_flags, |
| 1719 | data_page); |
| 1720 | else if (flags & MS_BIND) |
Andrew Morton | eee391a | 2006-05-15 09:44:30 -0700 | [diff] [blame] | 1721 | retval = do_loopback(&nd, dev_name, flags & MS_REC); |
Ram Pai | 9676f0c | 2005-11-07 17:21:20 -0500 | [diff] [blame] | 1722 | else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE)) |
Ram Pai | 07b2088 | 2005-11-07 17:19:07 -0500 | [diff] [blame] | 1723 | retval = do_change_type(&nd, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1724 | else if (flags & MS_MOVE) |
| 1725 | retval = do_move_mount(&nd, dev_name); |
| 1726 | else |
| 1727 | retval = do_new_mount(&nd, type_page, flags, mnt_flags, |
| 1728 | dev_name, data_page); |
| 1729 | dput_out: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 1730 | path_put(&nd.path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1731 | return retval; |
| 1732 | } |
| 1733 | |
JANAK DESAI | 741a295 | 2006-02-07 12:59:00 -0800 | [diff] [blame] | 1734 | /* |
| 1735 | * Allocate a new namespace structure and populate it with contents |
| 1736 | * copied from the namespace of the passed in task structure. |
| 1737 | */ |
Badari Pulavarty | e3222c4 | 2007-05-08 00:25:21 -0700 | [diff] [blame] | 1738 | static struct mnt_namespace *dup_mnt_ns(struct mnt_namespace *mnt_ns, |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 1739 | struct fs_struct *fs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1740 | { |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 1741 | struct mnt_namespace *new_ns; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1742 | struct vfsmount *rootmnt = NULL, *pwdmnt = NULL, *altrootmnt = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1743 | struct vfsmount *p, *q; |
| 1744 | |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 1745 | new_ns = kmalloc(sizeof(struct mnt_namespace), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1746 | if (!new_ns) |
Cedric Le Goater | 467e9f4 | 2007-07-15 23:41:06 -0700 | [diff] [blame] | 1747 | return ERR_PTR(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1748 | |
| 1749 | atomic_set(&new_ns->count, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1750 | INIT_LIST_HEAD(&new_ns->list); |
Al Viro | 5addc5d | 2005-11-07 17:15:49 -0500 | [diff] [blame] | 1751 | init_waitqueue_head(&new_ns->poll); |
| 1752 | new_ns->event = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1753 | |
Ram Pai | 390c684 | 2005-11-07 17:17:51 -0500 | [diff] [blame] | 1754 | down_write(&namespace_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1755 | /* First pass: copy the tree topology */ |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 1756 | new_ns->root = copy_tree(mnt_ns->root, mnt_ns->root->mnt_root, |
Ram Pai | 9676f0c | 2005-11-07 17:21:20 -0500 | [diff] [blame] | 1757 | CL_COPY_ALL | CL_EXPIRE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1758 | if (!new_ns->root) { |
Ram Pai | 390c684 | 2005-11-07 17:17:51 -0500 | [diff] [blame] | 1759 | up_write(&namespace_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1760 | kfree(new_ns); |
Cedric Le Goater | 467e9f4 | 2007-07-15 23:41:06 -0700 | [diff] [blame] | 1761 | return ERR_PTR(-ENOMEM);; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1762 | } |
| 1763 | spin_lock(&vfsmount_lock); |
| 1764 | list_add_tail(&new_ns->list, &new_ns->root->mnt_list); |
| 1765 | spin_unlock(&vfsmount_lock); |
| 1766 | |
| 1767 | /* |
| 1768 | * Second pass: switch the tsk->fs->* elements and mark new vfsmounts |
| 1769 | * as belonging to new namespace. We have already acquired a private |
| 1770 | * fs_struct, so tsk->fs->lock is not needed. |
| 1771 | */ |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 1772 | p = mnt_ns->root; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1773 | q = new_ns->root; |
| 1774 | while (p) { |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 1775 | q->mnt_ns = new_ns; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1776 | if (fs) { |
Jan Blunck | 6ac08c3 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 1777 | if (p == fs->root.mnt) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1778 | rootmnt = p; |
Jan Blunck | 6ac08c3 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 1779 | fs->root.mnt = mntget(q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1780 | } |
Jan Blunck | 6ac08c3 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 1781 | if (p == fs->pwd.mnt) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1782 | pwdmnt = p; |
Jan Blunck | 6ac08c3 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 1783 | fs->pwd.mnt = mntget(q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1784 | } |
Jan Blunck | 6ac08c3 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 1785 | if (p == fs->altroot.mnt) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1786 | altrootmnt = p; |
Jan Blunck | 6ac08c3 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 1787 | fs->altroot.mnt = mntget(q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1788 | } |
| 1789 | } |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 1790 | p = next_mnt(p, mnt_ns->root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1791 | q = next_mnt(q, new_ns->root); |
| 1792 | } |
Ram Pai | 390c684 | 2005-11-07 17:17:51 -0500 | [diff] [blame] | 1793 | up_write(&namespace_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1794 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1795 | if (rootmnt) |
| 1796 | mntput(rootmnt); |
| 1797 | if (pwdmnt) |
| 1798 | mntput(pwdmnt); |
| 1799 | if (altrootmnt) |
| 1800 | mntput(altrootmnt); |
| 1801 | |
JANAK DESAI | 741a295 | 2006-02-07 12:59:00 -0800 | [diff] [blame] | 1802 | return new_ns; |
| 1803 | } |
| 1804 | |
Eric W. Biederman | 213dd26 | 2007-07-15 23:41:15 -0700 | [diff] [blame] | 1805 | struct mnt_namespace *copy_mnt_ns(unsigned long flags, struct mnt_namespace *ns, |
Badari Pulavarty | e3222c4 | 2007-05-08 00:25:21 -0700 | [diff] [blame] | 1806 | struct fs_struct *new_fs) |
JANAK DESAI | 741a295 | 2006-02-07 12:59:00 -0800 | [diff] [blame] | 1807 | { |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 1808 | struct mnt_namespace *new_ns; |
JANAK DESAI | 741a295 | 2006-02-07 12:59:00 -0800 | [diff] [blame] | 1809 | |
Badari Pulavarty | e3222c4 | 2007-05-08 00:25:21 -0700 | [diff] [blame] | 1810 | BUG_ON(!ns); |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 1811 | get_mnt_ns(ns); |
JANAK DESAI | 741a295 | 2006-02-07 12:59:00 -0800 | [diff] [blame] | 1812 | |
| 1813 | if (!(flags & CLONE_NEWNS)) |
Badari Pulavarty | e3222c4 | 2007-05-08 00:25:21 -0700 | [diff] [blame] | 1814 | return ns; |
JANAK DESAI | 741a295 | 2006-02-07 12:59:00 -0800 | [diff] [blame] | 1815 | |
Badari Pulavarty | e3222c4 | 2007-05-08 00:25:21 -0700 | [diff] [blame] | 1816 | new_ns = dup_mnt_ns(ns, new_fs); |
JANAK DESAI | 741a295 | 2006-02-07 12:59:00 -0800 | [diff] [blame] | 1817 | |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 1818 | put_mnt_ns(ns); |
Badari Pulavarty | e3222c4 | 2007-05-08 00:25:21 -0700 | [diff] [blame] | 1819 | return new_ns; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1820 | } |
| 1821 | |
| 1822 | asmlinkage long sys_mount(char __user * dev_name, char __user * dir_name, |
| 1823 | char __user * type, unsigned long flags, |
| 1824 | void __user * data) |
| 1825 | { |
| 1826 | int retval; |
| 1827 | unsigned long data_page; |
| 1828 | unsigned long type_page; |
| 1829 | unsigned long dev_page; |
| 1830 | char *dir_page; |
| 1831 | |
Ram Pai | b58fed8 | 2005-11-07 17:16:09 -0500 | [diff] [blame] | 1832 | retval = copy_mount_options(type, &type_page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1833 | if (retval < 0) |
| 1834 | return retval; |
| 1835 | |
| 1836 | dir_page = getname(dir_name); |
| 1837 | retval = PTR_ERR(dir_page); |
| 1838 | if (IS_ERR(dir_page)) |
| 1839 | goto out1; |
| 1840 | |
Ram Pai | b58fed8 | 2005-11-07 17:16:09 -0500 | [diff] [blame] | 1841 | retval = copy_mount_options(dev_name, &dev_page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1842 | if (retval < 0) |
| 1843 | goto out2; |
| 1844 | |
Ram Pai | b58fed8 | 2005-11-07 17:16:09 -0500 | [diff] [blame] | 1845 | retval = copy_mount_options(data, &data_page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1846 | if (retval < 0) |
| 1847 | goto out3; |
| 1848 | |
| 1849 | lock_kernel(); |
Ram Pai | b58fed8 | 2005-11-07 17:16:09 -0500 | [diff] [blame] | 1850 | retval = do_mount((char *)dev_page, dir_page, (char *)type_page, |
| 1851 | flags, (void *)data_page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1852 | unlock_kernel(); |
| 1853 | free_page(data_page); |
| 1854 | |
| 1855 | out3: |
| 1856 | free_page(dev_page); |
| 1857 | out2: |
| 1858 | putname(dir_page); |
| 1859 | out1: |
| 1860 | free_page(type_page); |
| 1861 | return retval; |
| 1862 | } |
| 1863 | |
| 1864 | /* |
| 1865 | * Replace the fs->{rootmnt,root} with {mnt,dentry}. Put the old values. |
| 1866 | * It can block. Requires the big lock held. |
| 1867 | */ |
Jan Blunck | ac748a0 | 2008-02-14 19:34:39 -0800 | [diff] [blame] | 1868 | void set_fs_root(struct fs_struct *fs, struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1869 | { |
Jan Blunck | 6ac08c3 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 1870 | struct path old_root; |
| 1871 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1872 | write_lock(&fs->lock); |
| 1873 | old_root = fs->root; |
Jan Blunck | ac748a0 | 2008-02-14 19:34:39 -0800 | [diff] [blame] | 1874 | fs->root = *path; |
| 1875 | path_get(path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1876 | write_unlock(&fs->lock); |
Jan Blunck | 6ac08c3 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 1877 | if (old_root.dentry) |
| 1878 | path_put(&old_root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1879 | } |
| 1880 | |
| 1881 | /* |
| 1882 | * Replace the fs->{pwdmnt,pwd} with {mnt,dentry}. Put the old values. |
| 1883 | * It can block. Requires the big lock held. |
| 1884 | */ |
Jan Blunck | ac748a0 | 2008-02-14 19:34:39 -0800 | [diff] [blame] | 1885 | void set_fs_pwd(struct fs_struct *fs, struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1886 | { |
Jan Blunck | 6ac08c3 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 1887 | struct path old_pwd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | |
| 1889 | write_lock(&fs->lock); |
| 1890 | old_pwd = fs->pwd; |
Jan Blunck | ac748a0 | 2008-02-14 19:34:39 -0800 | [diff] [blame] | 1891 | fs->pwd = *path; |
| 1892 | path_get(path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1893 | write_unlock(&fs->lock); |
| 1894 | |
Jan Blunck | 6ac08c3 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 1895 | if (old_pwd.dentry) |
| 1896 | path_put(&old_pwd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1897 | } |
| 1898 | |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 1899 | static void chroot_fs_refs(struct path *old_root, struct path *new_root) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | { |
| 1901 | struct task_struct *g, *p; |
| 1902 | struct fs_struct *fs; |
| 1903 | |
| 1904 | read_lock(&tasklist_lock); |
| 1905 | do_each_thread(g, p) { |
| 1906 | task_lock(p); |
| 1907 | fs = p->fs; |
| 1908 | if (fs) { |
| 1909 | atomic_inc(&fs->count); |
| 1910 | task_unlock(p); |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 1911 | if (fs->root.dentry == old_root->dentry |
| 1912 | && fs->root.mnt == old_root->mnt) |
| 1913 | set_fs_root(fs, new_root); |
| 1914 | if (fs->pwd.dentry == old_root->dentry |
| 1915 | && fs->pwd.mnt == old_root->mnt) |
| 1916 | set_fs_pwd(fs, new_root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1917 | put_fs_struct(fs); |
| 1918 | } else |
| 1919 | task_unlock(p); |
| 1920 | } while_each_thread(g, p); |
| 1921 | read_unlock(&tasklist_lock); |
| 1922 | } |
| 1923 | |
| 1924 | /* |
| 1925 | * pivot_root Semantics: |
| 1926 | * Moves the root file system of the current process to the directory put_old, |
| 1927 | * makes new_root as the new root file system of the current process, and sets |
| 1928 | * root/cwd of all processes which had them on the current root to new_root. |
| 1929 | * |
| 1930 | * Restrictions: |
| 1931 | * The new_root and put_old must be directories, and must not be on the |
| 1932 | * same file system as the current process root. The put_old must be |
| 1933 | * underneath new_root, i.e. adding a non-zero number of /.. to the string |
| 1934 | * pointed to by put_old must yield the same directory as new_root. No other |
| 1935 | * file system may be mounted on put_old. After all, new_root is a mountpoint. |
| 1936 | * |
Neil Brown | 4a0d11f | 2006-01-08 01:03:18 -0800 | [diff] [blame] | 1937 | * Also, the current root cannot be on the 'rootfs' (initial ramfs) filesystem. |
| 1938 | * See Documentation/filesystems/ramfs-rootfs-initramfs.txt for alternatives |
| 1939 | * in this situation. |
| 1940 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1941 | * Notes: |
| 1942 | * - we don't move root/cwd if they are not at the root (reason: if something |
| 1943 | * cared enough to change them, it's probably wrong to force them elsewhere) |
| 1944 | * - it's okay to pick a root that isn't the root of a file system, e.g. |
| 1945 | * /nfs/my_root where /nfs is the mount point. It must be a mountpoint, |
| 1946 | * though, so you may need to say mount --bind /nfs/my_root /nfs/my_root |
| 1947 | * first. |
| 1948 | */ |
Ram Pai | b58fed8 | 2005-11-07 17:16:09 -0500 | [diff] [blame] | 1949 | asmlinkage long sys_pivot_root(const char __user * new_root, |
| 1950 | const char __user * put_old) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1951 | { |
| 1952 | struct vfsmount *tmp; |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 1953 | struct nameidata new_nd, old_nd, user_nd; |
| 1954 | struct path parent_path, root_parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1955 | int error; |
| 1956 | |
| 1957 | if (!capable(CAP_SYS_ADMIN)) |
| 1958 | return -EPERM; |
| 1959 | |
| 1960 | lock_kernel(); |
| 1961 | |
Ram Pai | b58fed8 | 2005-11-07 17:16:09 -0500 | [diff] [blame] | 1962 | error = __user_walk(new_root, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, |
| 1963 | &new_nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1964 | if (error) |
| 1965 | goto out0; |
| 1966 | error = -EINVAL; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1967 | if (!check_mnt(new_nd.path.mnt)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1968 | goto out1; |
| 1969 | |
Ram Pai | b58fed8 | 2005-11-07 17:16:09 -0500 | [diff] [blame] | 1970 | error = __user_walk(put_old, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, &old_nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1971 | if (error) |
| 1972 | goto out1; |
| 1973 | |
| 1974 | error = security_sb_pivotroot(&old_nd, &new_nd); |
| 1975 | if (error) { |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 1976 | path_put(&old_nd.path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1977 | goto out1; |
| 1978 | } |
| 1979 | |
| 1980 | read_lock(¤t->fs->lock); |
Jan Blunck | 6ac08c3 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 1981 | user_nd.path = current->fs->root; |
| 1982 | path_get(¤t->fs->root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1983 | read_unlock(¤t->fs->lock); |
Ram Pai | 390c684 | 2005-11-07 17:17:51 -0500 | [diff] [blame] | 1984 | down_write(&namespace_sem); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1985 | mutex_lock(&old_nd.path.dentry->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1986 | error = -EINVAL; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1987 | if (IS_MNT_SHARED(old_nd.path.mnt) || |
| 1988 | IS_MNT_SHARED(new_nd.path.mnt->mnt_parent) || |
| 1989 | IS_MNT_SHARED(user_nd.path.mnt->mnt_parent)) |
Ram Pai | 2144440 | 2005-11-07 17:20:03 -0500 | [diff] [blame] | 1990 | goto out2; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1991 | if (!check_mnt(user_nd.path.mnt)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1992 | goto out2; |
| 1993 | error = -ENOENT; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1994 | if (IS_DEADDIR(new_nd.path.dentry->d_inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | goto out2; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1996 | if (d_unhashed(new_nd.path.dentry) && !IS_ROOT(new_nd.path.dentry)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | goto out2; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1998 | if (d_unhashed(old_nd.path.dentry) && !IS_ROOT(old_nd.path.dentry)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1999 | goto out2; |
| 2000 | error = -EBUSY; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2001 | if (new_nd.path.mnt == user_nd.path.mnt || |
| 2002 | old_nd.path.mnt == user_nd.path.mnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2003 | goto out2; /* loop, on the same file system */ |
| 2004 | error = -EINVAL; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2005 | if (user_nd.path.mnt->mnt_root != user_nd.path.dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2006 | goto out2; /* not a mountpoint */ |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2007 | if (user_nd.path.mnt->mnt_parent == user_nd.path.mnt) |
Miklos Szeredi | 0bb6fcc | 2005-09-06 15:19:36 -0700 | [diff] [blame] | 2008 | goto out2; /* not attached */ |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2009 | if (new_nd.path.mnt->mnt_root != new_nd.path.dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2010 | goto out2; /* not a mountpoint */ |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2011 | if (new_nd.path.mnt->mnt_parent == new_nd.path.mnt) |
Miklos Szeredi | 0bb6fcc | 2005-09-06 15:19:36 -0700 | [diff] [blame] | 2012 | goto out2; /* not attached */ |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2013 | /* make sure we can reach put_old from new_root */ |
| 2014 | tmp = old_nd.path.mnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2015 | spin_lock(&vfsmount_lock); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2016 | if (tmp != new_nd.path.mnt) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2017 | for (;;) { |
| 2018 | if (tmp->mnt_parent == tmp) |
| 2019 | goto out3; /* already mounted on put_old */ |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2020 | if (tmp->mnt_parent == new_nd.path.mnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2021 | break; |
| 2022 | tmp = tmp->mnt_parent; |
| 2023 | } |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2024 | if (!is_subdir(tmp->mnt_mountpoint, new_nd.path.dentry)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2025 | goto out3; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2026 | } else if (!is_subdir(old_nd.path.dentry, new_nd.path.dentry)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2027 | goto out3; |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 2028 | detach_mnt(new_nd.path.mnt, &parent_path); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2029 | detach_mnt(user_nd.path.mnt, &root_parent); |
| 2030 | /* mount old root on put_old */ |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 2031 | attach_mnt(user_nd.path.mnt, &old_nd.path); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2032 | /* mount new_root on / */ |
| 2033 | attach_mnt(new_nd.path.mnt, &root_parent); |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 2034 | touch_mnt_namespace(current->nsproxy->mnt_ns); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2035 | spin_unlock(&vfsmount_lock); |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 2036 | chroot_fs_refs(&user_nd.path, &new_nd.path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2037 | security_sb_post_pivotroot(&user_nd, &new_nd); |
| 2038 | error = 0; |
Al Viro | 1a39068 | 2008-03-21 20:48:19 -0400 | [diff] [blame] | 2039 | path_put(&root_parent); |
| 2040 | path_put(&parent_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2041 | out2: |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2042 | mutex_unlock(&old_nd.path.dentry->d_inode->i_mutex); |
Ram Pai | 390c684 | 2005-11-07 17:17:51 -0500 | [diff] [blame] | 2043 | up_write(&namespace_sem); |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 2044 | path_put(&user_nd.path); |
| 2045 | path_put(&old_nd.path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2046 | out1: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 2047 | path_put(&new_nd.path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2048 | out0: |
| 2049 | unlock_kernel(); |
| 2050 | return error; |
| 2051 | out3: |
| 2052 | spin_unlock(&vfsmount_lock); |
| 2053 | goto out2; |
| 2054 | } |
| 2055 | |
| 2056 | static void __init init_mount_tree(void) |
| 2057 | { |
| 2058 | struct vfsmount *mnt; |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 2059 | struct mnt_namespace *ns; |
Jan Blunck | ac748a0 | 2008-02-14 19:34:39 -0800 | [diff] [blame] | 2060 | struct path root; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2061 | |
| 2062 | mnt = do_kern_mount("rootfs", 0, "rootfs", NULL); |
| 2063 | if (IS_ERR(mnt)) |
| 2064 | panic("Can't create rootfs"); |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 2065 | ns = kmalloc(sizeof(*ns), GFP_KERNEL); |
| 2066 | if (!ns) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2067 | panic("Can't allocate initial namespace"); |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 2068 | atomic_set(&ns->count, 1); |
| 2069 | INIT_LIST_HEAD(&ns->list); |
| 2070 | init_waitqueue_head(&ns->poll); |
| 2071 | ns->event = 0; |
| 2072 | list_add(&mnt->mnt_list, &ns->list); |
| 2073 | ns->root = mnt; |
| 2074 | mnt->mnt_ns = ns; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2075 | |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 2076 | init_task.nsproxy->mnt_ns = ns; |
| 2077 | get_mnt_ns(ns); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2078 | |
Jan Blunck | ac748a0 | 2008-02-14 19:34:39 -0800 | [diff] [blame] | 2079 | root.mnt = ns->root; |
| 2080 | root.dentry = ns->root->mnt_root; |
| 2081 | |
| 2082 | set_fs_pwd(current->fs, &root); |
| 2083 | set_fs_root(current->fs, &root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2084 | } |
| 2085 | |
Denis Cheng | 74bf17c | 2007-10-16 23:26:30 -0700 | [diff] [blame] | 2086 | void __init mnt_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2087 | { |
Eric Dumazet | 13f14b4 | 2008-02-06 01:37:57 -0800 | [diff] [blame] | 2088 | unsigned u; |
Randy Dunlap | 15a67dd | 2006-09-29 01:58:57 -0700 | [diff] [blame] | 2089 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | |
Ram Pai | 390c684 | 2005-11-07 17:17:51 -0500 | [diff] [blame] | 2091 | init_rwsem(&namespace_sem); |
| 2092 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2093 | mnt_cache = kmem_cache_create("mnt_cache", sizeof(struct vfsmount), |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 2094 | 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2095 | |
Ram Pai | b58fed8 | 2005-11-07 17:16:09 -0500 | [diff] [blame] | 2096 | mount_hashtable = (struct list_head *)__get_free_page(GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2097 | |
| 2098 | if (!mount_hashtable) |
| 2099 | panic("Failed to allocate mount hash table\n"); |
| 2100 | |
Eric Dumazet | 13f14b4 | 2008-02-06 01:37:57 -0800 | [diff] [blame] | 2101 | printk("Mount-cache hash table entries: %lu\n", HASH_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2102 | |
Eric Dumazet | 13f14b4 | 2008-02-06 01:37:57 -0800 | [diff] [blame] | 2103 | for (u = 0; u < HASH_SIZE; u++) |
| 2104 | INIT_LIST_HEAD(&mount_hashtable[u]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2105 | |
Randy Dunlap | 15a67dd | 2006-09-29 01:58:57 -0700 | [diff] [blame] | 2106 | err = sysfs_init(); |
| 2107 | if (err) |
| 2108 | printk(KERN_WARNING "%s: sysfs_init error: %d\n", |
| 2109 | __FUNCTION__, err); |
Greg Kroah-Hartman | 00d2666 | 2007-10-29 14:17:23 -0600 | [diff] [blame] | 2110 | fs_kobj = kobject_create_and_add("fs", NULL); |
| 2111 | if (!fs_kobj) |
| 2112 | printk(KERN_WARNING "%s: kobj create error\n", __FUNCTION__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2113 | init_rootfs(); |
| 2114 | init_mount_tree(); |
| 2115 | } |
| 2116 | |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 2117 | void __put_mnt_ns(struct mnt_namespace *ns) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2118 | { |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 2119 | struct vfsmount *root = ns->root; |
Ram Pai | 70fbcdf | 2005-11-07 17:17:04 -0500 | [diff] [blame] | 2120 | LIST_HEAD(umount_list); |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 2121 | ns->root = NULL; |
Miklos Szeredi | 1ce88cf | 2005-07-07 17:57:24 -0700 | [diff] [blame] | 2122 | spin_unlock(&vfsmount_lock); |
Ram Pai | 390c684 | 2005-11-07 17:17:51 -0500 | [diff] [blame] | 2123 | down_write(&namespace_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2124 | spin_lock(&vfsmount_lock); |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 2125 | umount_tree(root, 0, &umount_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2126 | spin_unlock(&vfsmount_lock); |
Ram Pai | 390c684 | 2005-11-07 17:17:51 -0500 | [diff] [blame] | 2127 | up_write(&namespace_sem); |
Ram Pai | 70fbcdf | 2005-11-07 17:17:04 -0500 | [diff] [blame] | 2128 | release_mounts(&umount_list); |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 2129 | kfree(ns); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2130 | } |