Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/super.c |
| 3 | * |
| 4 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 5 | * |
| 6 | * super.c contains code to handle: - mount structures |
| 7 | * - super-block tables |
| 8 | * - filesystem drivers list |
| 9 | * - mount system call |
| 10 | * - umount system call |
| 11 | * - ustat system call |
| 12 | * |
| 13 | * GK 2/5/95 - Changed to support mounting the root fs via NFS |
| 14 | * |
| 15 | * Added kerneld support: Jacques Gelinas and Bjorn Ekwall |
| 16 | * Added change_root: Werner Almesberger & Hans Lermen, Feb '96 |
| 17 | * Added options to /proc/mounts: |
Jan Engelhardt | 96de0e2 | 2007-10-19 23:21:04 +0200 | [diff] [blame] | 18 | * Torbjörn Lindh (torbjorn.lindh@gopta.se), April 14, 1996. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | * Added devfs support: Richard Gooch <rgooch@atnf.csiro.au>, 13-JAN-1998 |
| 20 | * Heavily rewritten for 'one fs - one tree' dcache architecture. AV, Mar 2000 |
| 21 | */ |
| 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/module.h> |
| 24 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/acct.h> |
| 26 | #include <linux/blkdev.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/mount.h> |
| 28 | #include <linux/security.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/writeback.h> /* for the emergency remount stuff */ |
| 30 | #include <linux/idr.h> |
Ingo Molnar | 353ab6e | 2006-03-26 01:37:12 -0800 | [diff] [blame] | 31 | #include <linux/mutex.h> |
Jens Axboe | 5477d0f | 2010-04-29 20:33:35 +0200 | [diff] [blame] | 32 | #include <linux/backing-dev.h> |
Al Viro | 6d59e7f | 2008-03-22 15:48:17 -0400 | [diff] [blame] | 33 | #include "internal.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | LIST_HEAD(super_blocks); |
| 37 | DEFINE_SPINLOCK(sb_lock); |
| 38 | |
| 39 | /** |
| 40 | * alloc_super - create new superblock |
Henrik Kretzschmar | fe2bbc4 | 2006-09-06 00:03:41 -0700 | [diff] [blame] | 41 | * @type: filesystem type superblock should belong to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | * |
| 43 | * Allocates and initializes a new &struct super_block. alloc_super() |
| 44 | * returns a pointer new superblock or %NULL if allocation had failed. |
| 45 | */ |
Ingo Molnar | cf51624 | 2006-07-03 00:25:27 -0700 | [diff] [blame] | 46 | static struct super_block *alloc_super(struct file_system_type *type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | { |
Oliver Neukum | 11b0b5a | 2006-03-25 03:08:13 -0800 | [diff] [blame] | 48 | struct super_block *s = kzalloc(sizeof(struct super_block), GFP_USER); |
Alexey Dobriyan | b87221d | 2009-09-21 17:01:09 -0700 | [diff] [blame] | 49 | static const struct super_operations default_op; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
| 51 | if (s) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | if (security_sb_alloc(s)) { |
| 53 | kfree(s); |
| 54 | s = NULL; |
| 55 | goto out; |
| 56 | } |
Nick Piggin | 6416ccb | 2010-08-18 04:37:38 +1000 | [diff] [blame] | 57 | #ifdef CONFIG_SMP |
| 58 | s->s_files = alloc_percpu(struct list_head); |
| 59 | if (!s->s_files) { |
| 60 | security_sb_free(s); |
| 61 | kfree(s); |
| 62 | s = NULL; |
| 63 | goto out; |
| 64 | } else { |
| 65 | int i; |
| 66 | |
| 67 | for_each_possible_cpu(i) |
| 68 | INIT_LIST_HEAD(per_cpu_ptr(s->s_files, i)); |
| 69 | } |
| 70 | #else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | INIT_LIST_HEAD(&s->s_files); |
Nick Piggin | 6416ccb | 2010-08-18 04:37:38 +1000 | [diff] [blame] | 72 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | INIT_LIST_HEAD(&s->s_instances); |
| 74 | INIT_HLIST_HEAD(&s->s_anon); |
| 75 | INIT_LIST_HEAD(&s->s_inodes); |
Kentaro Makita | da3bbdd | 2008-07-23 21:27:13 -0700 | [diff] [blame] | 76 | INIT_LIST_HEAD(&s->s_dentry_lru); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | init_rwsem(&s->s_umount); |
Ingo Molnar | 7892f2f | 2006-01-09 15:59:25 -0800 | [diff] [blame] | 78 | mutex_init(&s->s_lock); |
Arjan van de Ven | 897c6ff | 2006-07-03 00:25:28 -0700 | [diff] [blame] | 79 | lockdep_set_class(&s->s_umount, &type->s_umount_key); |
Ingo Molnar | cf51624 | 2006-07-03 00:25:27 -0700 | [diff] [blame] | 80 | /* |
| 81 | * The locking rules for s_lock are up to the |
| 82 | * filesystem. For example ext3fs has different |
| 83 | * lock ordering than usbfs: |
| 84 | */ |
| 85 | lockdep_set_class(&s->s_lock, &type->s_lock_key); |
Peter Zijlstra | ada723d | 2009-02-18 14:48:30 -0800 | [diff] [blame] | 86 | /* |
| 87 | * sget() can have s_umount recursion. |
| 88 | * |
| 89 | * When it cannot find a suitable sb, it allocates a new |
| 90 | * one (this one), and tries again to find a suitable old |
| 91 | * one. |
| 92 | * |
| 93 | * In case that succeeds, it will acquire the s_umount |
| 94 | * lock of the old one. Since these are clearly distrinct |
| 95 | * locks, and this object isn't exposed yet, there's no |
| 96 | * risk of deadlocks. |
| 97 | * |
| 98 | * Annotate this by putting this lock in a different |
| 99 | * subclass. |
| 100 | */ |
| 101 | down_write_nested(&s->s_umount, SINGLE_DEPTH_NESTING); |
Al Viro | b20bd1a | 2010-03-22 08:53:19 -0400 | [diff] [blame] | 102 | s->s_count = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | atomic_set(&s->s_active, 1); |
Arjan van de Ven | a11f3a0 | 2006-03-23 03:00:33 -0800 | [diff] [blame] | 104 | mutex_init(&s->s_vfs_rename_mutex); |
Roland Dreier | 51ee049 | 2010-04-27 14:23:57 -0700 | [diff] [blame] | 105 | lockdep_set_class(&s->s_vfs_rename_mutex, &type->s_vfs_rename_key); |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 106 | mutex_init(&s->s_dquot.dqio_mutex); |
| 107 | mutex_init(&s->s_dquot.dqonoff_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | init_rwsem(&s->s_dquot.dqptr_sem); |
| 109 | init_waitqueue_head(&s->s_wait_unfrozen); |
| 110 | s->s_maxbytes = MAX_NON_LFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | s->s_op = &default_op; |
| 112 | s->s_time_gran = 1000000000; |
| 113 | } |
| 114 | out: |
| 115 | return s; |
| 116 | } |
| 117 | |
| 118 | /** |
| 119 | * destroy_super - frees a superblock |
| 120 | * @s: superblock to free |
| 121 | * |
| 122 | * Frees a superblock. |
| 123 | */ |
| 124 | static inline void destroy_super(struct super_block *s) |
| 125 | { |
Nick Piggin | 6416ccb | 2010-08-18 04:37:38 +1000 | [diff] [blame] | 126 | #ifdef CONFIG_SMP |
| 127 | free_percpu(s->s_files); |
| 128 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | security_sb_free(s); |
Miklos Szeredi | 79c0b2d | 2007-05-08 00:25:43 -0700 | [diff] [blame] | 130 | kfree(s->s_subtype); |
Miklos Szeredi | b3b304a | 2008-02-08 04:21:35 -0800 | [diff] [blame] | 131 | kfree(s->s_options); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | kfree(s); |
| 133 | } |
| 134 | |
| 135 | /* Superblock refcounting */ |
| 136 | |
| 137 | /* |
Al Viro | 35cf7ba | 2010-03-22 21:13:53 -0400 | [diff] [blame] | 138 | * Drop a superblock's refcount. The caller must hold sb_lock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | */ |
Al Viro | 35cf7ba | 2010-03-22 21:13:53 -0400 | [diff] [blame] | 140 | void __put_super(struct super_block *sb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | if (!--sb->s_count) { |
Al Viro | 551de6f | 2010-03-22 19:36:35 -0400 | [diff] [blame] | 143 | list_del_init(&sb->s_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | destroy_super(sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | /** |
| 149 | * put_super - drop a temporary reference to superblock |
| 150 | * @sb: superblock in question |
| 151 | * |
| 152 | * Drops a temporary reference, frees superblock if there's no |
| 153 | * references left. |
| 154 | */ |
Jens Axboe | 03ba378 | 2009-09-09 09:08:54 +0200 | [diff] [blame] | 155 | void put_super(struct super_block *sb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | { |
| 157 | spin_lock(&sb_lock); |
| 158 | __put_super(sb); |
| 159 | spin_unlock(&sb_lock); |
| 160 | } |
| 161 | |
| 162 | |
| 163 | /** |
Al Viro | 74dbbdd | 2009-05-06 01:07:50 -0400 | [diff] [blame] | 164 | * deactivate_locked_super - drop an active reference to superblock |
| 165 | * @s: superblock to deactivate |
| 166 | * |
Al Viro | 1712ac8 | 2010-03-22 15:22:31 -0400 | [diff] [blame] | 167 | * Drops an active reference to superblock, converting it into a temprory |
| 168 | * one if there is no other active references left. In that case we |
| 169 | * tell fs driver to shut it down and drop the temporary reference we |
| 170 | * had just acquired. |
| 171 | * |
| 172 | * Caller holds exclusive lock on superblock; that lock is released. |
Al Viro | 74dbbdd | 2009-05-06 01:07:50 -0400 | [diff] [blame] | 173 | */ |
| 174 | void deactivate_locked_super(struct super_block *s) |
| 175 | { |
| 176 | struct file_system_type *fs = s->s_type; |
Al Viro | b20bd1a | 2010-03-22 08:53:19 -0400 | [diff] [blame] | 177 | if (atomic_dec_and_test(&s->s_active)) { |
Al Viro | 74dbbdd | 2009-05-06 01:07:50 -0400 | [diff] [blame] | 178 | fs->kill_sb(s); |
| 179 | put_filesystem(fs); |
| 180 | put_super(s); |
| 181 | } else { |
| 182 | up_write(&s->s_umount); |
| 183 | } |
| 184 | } |
| 185 | |
| 186 | EXPORT_SYMBOL(deactivate_locked_super); |
| 187 | |
| 188 | /** |
Al Viro | 1712ac8 | 2010-03-22 15:22:31 -0400 | [diff] [blame] | 189 | * deactivate_super - drop an active reference to superblock |
| 190 | * @s: superblock to deactivate |
| 191 | * |
| 192 | * Variant of deactivate_locked_super(), except that superblock is *not* |
| 193 | * locked by caller. If we are going to drop the final active reference, |
| 194 | * lock will be acquired prior to that. |
| 195 | */ |
| 196 | void deactivate_super(struct super_block *s) |
| 197 | { |
| 198 | if (!atomic_add_unless(&s->s_active, -1, 1)) { |
| 199 | down_write(&s->s_umount); |
| 200 | deactivate_locked_super(s); |
| 201 | } |
| 202 | } |
| 203 | |
| 204 | EXPORT_SYMBOL(deactivate_super); |
| 205 | |
| 206 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | * grab_super - acquire an active reference |
| 208 | * @s: reference we are trying to make active |
| 209 | * |
| 210 | * Tries to acquire an active reference. grab_super() is used when we |
| 211 | * had just found a superblock in super_blocks or fs_type->fs_supers |
| 212 | * and want to turn it into a full-blown active reference. grab_super() |
| 213 | * is called with sb_lock held and drops it. Returns 1 in case of |
| 214 | * success, 0 if we had failed (superblock contents was already dead or |
| 215 | * dying when grab_super() had been called). |
| 216 | */ |
Josh Triplett | 9c4dbee | 2006-09-29 01:59:29 -0700 | [diff] [blame] | 217 | static int grab_super(struct super_block *s) __releases(sb_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | { |
Al Viro | b20bd1a | 2010-03-22 08:53:19 -0400 | [diff] [blame] | 219 | if (atomic_inc_not_zero(&s->s_active)) { |
| 220 | spin_unlock(&sb_lock); |
Al Viro | b20bd1a | 2010-03-22 08:53:19 -0400 | [diff] [blame] | 221 | return 1; |
| 222 | } |
| 223 | /* it's going away */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | s->s_count++; |
| 225 | spin_unlock(&sb_lock); |
Al Viro | 1712ac8 | 2010-03-22 15:22:31 -0400 | [diff] [blame] | 226 | /* wait for it to die */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | down_write(&s->s_umount); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | up_write(&s->s_umount); |
| 229 | put_super(s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | return 0; |
| 231 | } |
| 232 | |
David Howells | cf9a2ae | 2006-08-29 19:05:54 +0100 | [diff] [blame] | 233 | /* |
Al Viro | 914e263 | 2006-10-18 13:55:46 -0400 | [diff] [blame] | 234 | * Superblock locking. We really ought to get rid of these two. |
| 235 | */ |
| 236 | void lock_super(struct super_block * sb) |
| 237 | { |
| 238 | get_fs_excl(); |
| 239 | mutex_lock(&sb->s_lock); |
| 240 | } |
| 241 | |
| 242 | void unlock_super(struct super_block * sb) |
| 243 | { |
| 244 | put_fs_excl(); |
| 245 | mutex_unlock(&sb->s_lock); |
| 246 | } |
| 247 | |
| 248 | EXPORT_SYMBOL(lock_super); |
| 249 | EXPORT_SYMBOL(unlock_super); |
| 250 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | /** |
| 252 | * generic_shutdown_super - common helper for ->kill_sb() |
| 253 | * @sb: superblock to kill |
| 254 | * |
| 255 | * generic_shutdown_super() does all fs-independent work on superblock |
| 256 | * shutdown. Typical ->kill_sb() should pick all fs-specific objects |
| 257 | * that need destruction out of superblock, call generic_shutdown_super() |
| 258 | * and release aforementioned objects. Note: dentries and inodes _are_ |
| 259 | * taken care of and do not need specific handling. |
David Howells | c636ebd | 2006-10-11 01:22:19 -0700 | [diff] [blame] | 260 | * |
| 261 | * Upon calling this function, the filesystem may no longer alter or |
| 262 | * rearrange the set of dentries belonging to this super_block, nor may it |
| 263 | * change the attachments of dentries to inodes. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | */ |
| 265 | void generic_shutdown_super(struct super_block *sb) |
| 266 | { |
Josef 'Jeff' Sipek | ee9b6d6 | 2007-02-12 00:55:41 -0800 | [diff] [blame] | 267 | const struct super_operations *sop = sb->s_op; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | |
Arjan van de Ven | efaee19 | 2009-01-06 07:20:54 -0800 | [diff] [blame] | 269 | |
David Howells | c636ebd | 2006-10-11 01:22:19 -0700 | [diff] [blame] | 270 | if (sb->s_root) { |
| 271 | shrink_dcache_for_umount(sb); |
Jan Kara | 60b0680 | 2009-04-27 16:43:53 +0200 | [diff] [blame] | 272 | sync_filesystem(sb); |
Al Viro | a9e220f | 2009-05-05 22:10:44 -0400 | [diff] [blame] | 273 | get_fs_excl(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | sb->s_flags &= ~MS_ACTIVE; |
Arjan van de Ven | efaee19 | 2009-01-06 07:20:54 -0800 | [diff] [blame] | 275 | |
Al Viro | 63997e9 | 2010-10-25 20:49:35 -0400 | [diff] [blame] | 276 | fsnotify_unmount_inodes(&sb->s_inodes); |
| 277 | |
| 278 | evict_inodes(sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | if (sop->put_super) |
| 281 | sop->put_super(sb); |
| 282 | |
Al Viro | 63997e9 | 2010-10-25 20:49:35 -0400 | [diff] [blame] | 283 | if (!list_empty(&sb->s_inodes)) { |
Dave Jones | 7b4fe29 | 2006-02-07 12:58:48 -0800 | [diff] [blame] | 284 | printk("VFS: Busy inodes after unmount of %s. " |
| 285 | "Self-destruct in 5 seconds. Have a nice day...\n", |
| 286 | sb->s_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | } |
Al Viro | a9e220f | 2009-05-05 22:10:44 -0400 | [diff] [blame] | 288 | put_fs_excl(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | } |
| 290 | spin_lock(&sb_lock); |
| 291 | /* should be initialized for __put_super_and_need_restart() */ |
Al Viro | 551de6f | 2010-03-22 19:36:35 -0400 | [diff] [blame] | 292 | list_del_init(&sb->s_instances); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | spin_unlock(&sb_lock); |
| 294 | up_write(&sb->s_umount); |
| 295 | } |
| 296 | |
| 297 | EXPORT_SYMBOL(generic_shutdown_super); |
| 298 | |
| 299 | /** |
| 300 | * sget - find or create a superblock |
| 301 | * @type: filesystem type superblock should belong to |
| 302 | * @test: comparison callback |
| 303 | * @set: setup callback |
| 304 | * @data: argument to each of them |
| 305 | */ |
| 306 | struct super_block *sget(struct file_system_type *type, |
| 307 | int (*test)(struct super_block *,void *), |
| 308 | int (*set)(struct super_block *,void *), |
| 309 | void *data) |
| 310 | { |
| 311 | struct super_block *s = NULL; |
Matthias Kaehlcke | d473012 | 2007-10-18 23:39:57 -0700 | [diff] [blame] | 312 | struct super_block *old; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | int err; |
| 314 | |
| 315 | retry: |
| 316 | spin_lock(&sb_lock); |
Matthias Kaehlcke | d473012 | 2007-10-18 23:39:57 -0700 | [diff] [blame] | 317 | if (test) { |
| 318 | list_for_each_entry(old, &type->fs_supers, s_instances) { |
| 319 | if (!test(old, data)) |
| 320 | continue; |
| 321 | if (!grab_super(old)) |
| 322 | goto retry; |
Li Zefan | a3cfbb5 | 2009-03-12 14:31:29 -0700 | [diff] [blame] | 323 | if (s) { |
| 324 | up_write(&s->s_umount); |
Matthias Kaehlcke | d473012 | 2007-10-18 23:39:57 -0700 | [diff] [blame] | 325 | destroy_super(s); |
Al Viro | 7a4dec5 | 2010-08-09 12:05:43 -0400 | [diff] [blame] | 326 | s = NULL; |
Li Zefan | a3cfbb5 | 2009-03-12 14:31:29 -0700 | [diff] [blame] | 327 | } |
Al Viro | d3f2147 | 2010-03-23 11:11:05 -0400 | [diff] [blame] | 328 | down_write(&old->s_umount); |
Al Viro | 7a4dec5 | 2010-08-09 12:05:43 -0400 | [diff] [blame] | 329 | if (unlikely(!(old->s_flags & MS_BORN))) { |
| 330 | deactivate_locked_super(old); |
| 331 | goto retry; |
| 332 | } |
Matthias Kaehlcke | d473012 | 2007-10-18 23:39:57 -0700 | [diff] [blame] | 333 | return old; |
| 334 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | } |
| 336 | if (!s) { |
| 337 | spin_unlock(&sb_lock); |
Ingo Molnar | cf51624 | 2006-07-03 00:25:27 -0700 | [diff] [blame] | 338 | s = alloc_super(type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | if (!s) |
| 340 | return ERR_PTR(-ENOMEM); |
| 341 | goto retry; |
| 342 | } |
| 343 | |
| 344 | err = set(s, data); |
| 345 | if (err) { |
| 346 | spin_unlock(&sb_lock); |
Li Zefan | a3cfbb5 | 2009-03-12 14:31:29 -0700 | [diff] [blame] | 347 | up_write(&s->s_umount); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | destroy_super(s); |
| 349 | return ERR_PTR(err); |
| 350 | } |
| 351 | s->s_type = type; |
| 352 | strlcpy(s->s_id, type->name, sizeof(s->s_id)); |
| 353 | list_add_tail(&s->s_list, &super_blocks); |
| 354 | list_add(&s->s_instances, &type->fs_supers); |
| 355 | spin_unlock(&sb_lock); |
| 356 | get_filesystem(type); |
| 357 | return s; |
| 358 | } |
| 359 | |
| 360 | EXPORT_SYMBOL(sget); |
| 361 | |
| 362 | void drop_super(struct super_block *sb) |
| 363 | { |
| 364 | up_read(&sb->s_umount); |
| 365 | put_super(sb); |
| 366 | } |
| 367 | |
| 368 | EXPORT_SYMBOL(drop_super); |
| 369 | |
Christoph Hellwig | e500475 | 2009-05-05 16:08:56 +0200 | [diff] [blame] | 370 | /** |
| 371 | * sync_supers - helper for periodic superblock writeback |
| 372 | * |
| 373 | * Call the write_super method if present on all dirty superblocks in |
| 374 | * the system. This is for the periodic writeback used by most older |
| 375 | * filesystems. For data integrity superblock writeback use |
| 376 | * sync_filesystems() instead. |
| 377 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | * Note: check the dirty flag before waiting, so we don't |
| 379 | * hold up the sync while mounting a device. (The newly |
| 380 | * mounted device won't need syncing.) |
| 381 | */ |
| 382 | void sync_supers(void) |
| 383 | { |
Al Viro | dca3325 | 2010-07-25 02:31:46 +0400 | [diff] [blame] | 384 | struct super_block *sb, *p = NULL; |
Kirill Korotaev | 618f063 | 2005-06-23 00:09:54 -0700 | [diff] [blame] | 385 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | spin_lock(&sb_lock); |
Al Viro | dca3325 | 2010-07-25 02:31:46 +0400 | [diff] [blame] | 387 | list_for_each_entry(sb, &super_blocks, s_list) { |
Al Viro | 551de6f | 2010-03-22 19:36:35 -0400 | [diff] [blame] | 388 | if (list_empty(&sb->s_instances)) |
| 389 | continue; |
Christoph Hellwig | e500475 | 2009-05-05 16:08:56 +0200 | [diff] [blame] | 390 | if (sb->s_op->write_super && sb->s_dirt) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | sb->s_count++; |
| 392 | spin_unlock(&sb_lock); |
Christoph Hellwig | e500475 | 2009-05-05 16:08:56 +0200 | [diff] [blame] | 393 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | down_read(&sb->s_umount); |
Christoph Hellwig | e500475 | 2009-05-05 16:08:56 +0200 | [diff] [blame] | 395 | if (sb->s_root && sb->s_dirt) |
| 396 | sb->s_op->write_super(sb); |
Kirill Korotaev | 618f063 | 2005-06-23 00:09:54 -0700 | [diff] [blame] | 397 | up_read(&sb->s_umount); |
Christoph Hellwig | e500475 | 2009-05-05 16:08:56 +0200 | [diff] [blame] | 398 | |
Kirill Korotaev | 618f063 | 2005-06-23 00:09:54 -0700 | [diff] [blame] | 399 | spin_lock(&sb_lock); |
Al Viro | dca3325 | 2010-07-25 02:31:46 +0400 | [diff] [blame] | 400 | if (p) |
| 401 | __put_super(p); |
| 402 | p = sb; |
Kirill Korotaev | 618f063 | 2005-06-23 00:09:54 -0700 | [diff] [blame] | 403 | } |
| 404 | } |
Al Viro | dca3325 | 2010-07-25 02:31:46 +0400 | [diff] [blame] | 405 | if (p) |
| 406 | __put_super(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | spin_unlock(&sb_lock); |
| 408 | } |
| 409 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | /** |
Al Viro | 01a05b3 | 2010-03-23 06:06:58 -0400 | [diff] [blame] | 411 | * iterate_supers - call function for all active superblocks |
| 412 | * @f: function to call |
| 413 | * @arg: argument to pass to it |
| 414 | * |
| 415 | * Scans the superblock list and calls given function, passing it |
| 416 | * locked superblock and given argument. |
| 417 | */ |
| 418 | void iterate_supers(void (*f)(struct super_block *, void *), void *arg) |
| 419 | { |
Al Viro | dca3325 | 2010-07-25 02:31:46 +0400 | [diff] [blame] | 420 | struct super_block *sb, *p = NULL; |
Al Viro | 01a05b3 | 2010-03-23 06:06:58 -0400 | [diff] [blame] | 421 | |
| 422 | spin_lock(&sb_lock); |
Al Viro | dca3325 | 2010-07-25 02:31:46 +0400 | [diff] [blame] | 423 | list_for_each_entry(sb, &super_blocks, s_list) { |
Al Viro | 01a05b3 | 2010-03-23 06:06:58 -0400 | [diff] [blame] | 424 | if (list_empty(&sb->s_instances)) |
| 425 | continue; |
| 426 | sb->s_count++; |
| 427 | spin_unlock(&sb_lock); |
| 428 | |
| 429 | down_read(&sb->s_umount); |
| 430 | if (sb->s_root) |
| 431 | f(sb, arg); |
| 432 | up_read(&sb->s_umount); |
| 433 | |
| 434 | spin_lock(&sb_lock); |
Al Viro | dca3325 | 2010-07-25 02:31:46 +0400 | [diff] [blame] | 435 | if (p) |
| 436 | __put_super(p); |
| 437 | p = sb; |
Al Viro | 01a05b3 | 2010-03-23 06:06:58 -0400 | [diff] [blame] | 438 | } |
Al Viro | dca3325 | 2010-07-25 02:31:46 +0400 | [diff] [blame] | 439 | if (p) |
| 440 | __put_super(p); |
Al Viro | 01a05b3 | 2010-03-23 06:06:58 -0400 | [diff] [blame] | 441 | spin_unlock(&sb_lock); |
| 442 | } |
| 443 | |
| 444 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | * get_super - get the superblock of a device |
| 446 | * @bdev: device to get the superblock for |
| 447 | * |
| 448 | * Scans the superblock list and finds the superblock of the file system |
| 449 | * mounted on the device given. %NULL is returned if no match is found. |
| 450 | */ |
| 451 | |
Al Viro | df40c01 | 2010-03-22 20:23:25 -0400 | [diff] [blame] | 452 | struct super_block *get_super(struct block_device *bdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | { |
Kirill Korotaev | 618f063 | 2005-06-23 00:09:54 -0700 | [diff] [blame] | 454 | struct super_block *sb; |
| 455 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | if (!bdev) |
| 457 | return NULL; |
Kirill Korotaev | 618f063 | 2005-06-23 00:09:54 -0700 | [diff] [blame] | 458 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | spin_lock(&sb_lock); |
Kirill Korotaev | 618f063 | 2005-06-23 00:09:54 -0700 | [diff] [blame] | 460 | rescan: |
| 461 | list_for_each_entry(sb, &super_blocks, s_list) { |
Al Viro | 551de6f | 2010-03-22 19:36:35 -0400 | [diff] [blame] | 462 | if (list_empty(&sb->s_instances)) |
| 463 | continue; |
Kirill Korotaev | 618f063 | 2005-06-23 00:09:54 -0700 | [diff] [blame] | 464 | if (sb->s_bdev == bdev) { |
| 465 | sb->s_count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | spin_unlock(&sb_lock); |
Kirill Korotaev | 618f063 | 2005-06-23 00:09:54 -0700 | [diff] [blame] | 467 | down_read(&sb->s_umount); |
Al Viro | df40c01 | 2010-03-22 20:23:25 -0400 | [diff] [blame] | 468 | /* still alive? */ |
Kirill Korotaev | 618f063 | 2005-06-23 00:09:54 -0700 | [diff] [blame] | 469 | if (sb->s_root) |
| 470 | return sb; |
| 471 | up_read(&sb->s_umount); |
Al Viro | df40c01 | 2010-03-22 20:23:25 -0400 | [diff] [blame] | 472 | /* nope, got unmounted */ |
Kirill Korotaev | 618f063 | 2005-06-23 00:09:54 -0700 | [diff] [blame] | 473 | spin_lock(&sb_lock); |
Al Viro | df40c01 | 2010-03-22 20:23:25 -0400 | [diff] [blame] | 474 | __put_super(sb); |
| 475 | goto rescan; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | } |
| 477 | } |
| 478 | spin_unlock(&sb_lock); |
| 479 | return NULL; |
| 480 | } |
| 481 | |
| 482 | EXPORT_SYMBOL(get_super); |
Christoph Hellwig | 4504230 | 2009-08-03 23:28:35 +0200 | [diff] [blame] | 483 | |
| 484 | /** |
| 485 | * get_active_super - get an active reference to the superblock of a device |
| 486 | * @bdev: device to get the superblock for |
| 487 | * |
| 488 | * Scans the superblock list and finds the superblock of the file system |
| 489 | * mounted on the device given. Returns the superblock with an active |
Al Viro | d3f2147 | 2010-03-23 11:11:05 -0400 | [diff] [blame] | 490 | * reference or %NULL if none was found. |
Christoph Hellwig | 4504230 | 2009-08-03 23:28:35 +0200 | [diff] [blame] | 491 | */ |
| 492 | struct super_block *get_active_super(struct block_device *bdev) |
| 493 | { |
| 494 | struct super_block *sb; |
| 495 | |
| 496 | if (!bdev) |
| 497 | return NULL; |
| 498 | |
Al Viro | 1494583 | 2010-03-22 20:15:33 -0400 | [diff] [blame] | 499 | restart: |
Christoph Hellwig | 4504230 | 2009-08-03 23:28:35 +0200 | [diff] [blame] | 500 | spin_lock(&sb_lock); |
| 501 | list_for_each_entry(sb, &super_blocks, s_list) { |
Al Viro | 551de6f | 2010-03-22 19:36:35 -0400 | [diff] [blame] | 502 | if (list_empty(&sb->s_instances)) |
| 503 | continue; |
Al Viro | 1494583 | 2010-03-22 20:15:33 -0400 | [diff] [blame] | 504 | if (sb->s_bdev == bdev) { |
| 505 | if (grab_super(sb)) /* drops sb_lock */ |
| 506 | return sb; |
| 507 | else |
| 508 | goto restart; |
| 509 | } |
Christoph Hellwig | 4504230 | 2009-08-03 23:28:35 +0200 | [diff] [blame] | 510 | } |
| 511 | spin_unlock(&sb_lock); |
| 512 | return NULL; |
| 513 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | |
Al Viro | df40c01 | 2010-03-22 20:23:25 -0400 | [diff] [blame] | 515 | struct super_block *user_get_super(dev_t dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | { |
Kirill Korotaev | 618f063 | 2005-06-23 00:09:54 -0700 | [diff] [blame] | 517 | struct super_block *sb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | spin_lock(&sb_lock); |
Kirill Korotaev | 618f063 | 2005-06-23 00:09:54 -0700 | [diff] [blame] | 520 | rescan: |
| 521 | list_for_each_entry(sb, &super_blocks, s_list) { |
Al Viro | 551de6f | 2010-03-22 19:36:35 -0400 | [diff] [blame] | 522 | if (list_empty(&sb->s_instances)) |
| 523 | continue; |
Kirill Korotaev | 618f063 | 2005-06-23 00:09:54 -0700 | [diff] [blame] | 524 | if (sb->s_dev == dev) { |
| 525 | sb->s_count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | spin_unlock(&sb_lock); |
Kirill Korotaev | 618f063 | 2005-06-23 00:09:54 -0700 | [diff] [blame] | 527 | down_read(&sb->s_umount); |
Al Viro | df40c01 | 2010-03-22 20:23:25 -0400 | [diff] [blame] | 528 | /* still alive? */ |
Kirill Korotaev | 618f063 | 2005-06-23 00:09:54 -0700 | [diff] [blame] | 529 | if (sb->s_root) |
| 530 | return sb; |
| 531 | up_read(&sb->s_umount); |
Al Viro | df40c01 | 2010-03-22 20:23:25 -0400 | [diff] [blame] | 532 | /* nope, got unmounted */ |
Kirill Korotaev | 618f063 | 2005-06-23 00:09:54 -0700 | [diff] [blame] | 533 | spin_lock(&sb_lock); |
Al Viro | df40c01 | 2010-03-22 20:23:25 -0400 | [diff] [blame] | 534 | __put_super(sb); |
| 535 | goto rescan; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | } |
| 537 | } |
| 538 | spin_unlock(&sb_lock); |
| 539 | return NULL; |
| 540 | } |
| 541 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | * do_remount_sb - asks filesystem to change mount options. |
| 544 | * @sb: superblock in question |
| 545 | * @flags: numeric part of options |
| 546 | * @data: the rest of options |
| 547 | * @force: whether or not to force the change |
| 548 | * |
| 549 | * Alters the mount options of a mounted file system. |
| 550 | */ |
| 551 | int do_remount_sb(struct super_block *sb, int flags, void *data, int force) |
| 552 | { |
| 553 | int retval; |
Christoph Hellwig | c79d967 | 2010-05-19 07:16:40 -0400 | [diff] [blame] | 554 | int remount_ro; |
Christoph Hellwig | 4504230 | 2009-08-03 23:28:35 +0200 | [diff] [blame] | 555 | |
| 556 | if (sb->s_frozen != SB_UNFROZEN) |
| 557 | return -EBUSY; |
| 558 | |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 559 | #ifdef CONFIG_BLOCK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | if (!(flags & MS_RDONLY) && bdev_read_only(sb->s_bdev)) |
| 561 | return -EACCES; |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 562 | #endif |
Christoph Hellwig | 4504230 | 2009-08-03 23:28:35 +0200 | [diff] [blame] | 563 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | if (flags & MS_RDONLY) |
| 565 | acct_auto_close(sb); |
| 566 | shrink_dcache_sb(sb); |
Jan Kara | 60b0680 | 2009-04-27 16:43:53 +0200 | [diff] [blame] | 567 | sync_filesystem(sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | |
Nick Piggin | d208bbd | 2009-12-21 16:28:53 -0800 | [diff] [blame] | 569 | remount_ro = (flags & MS_RDONLY) && !(sb->s_flags & MS_RDONLY); |
Nick Piggin | d208bbd | 2009-12-21 16:28:53 -0800 | [diff] [blame] | 570 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | /* If we are remounting RDONLY and current sb is read/write, |
| 572 | make sure there are no rw files opened */ |
Nick Piggin | d208bbd | 2009-12-21 16:28:53 -0800 | [diff] [blame] | 573 | if (remount_ro) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | if (force) |
| 575 | mark_files_ro(sb); |
J. R. Okajima | b089551 | 2009-06-17 01:16:50 +0900 | [diff] [blame] | 576 | else if (!fs_may_remount_ro(sb)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | return -EBUSY; |
| 578 | } |
| 579 | |
| 580 | if (sb->s_op->remount_fs) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | retval = sb->s_op->remount_fs(sb, &flags, data); |
J. R. Okajima | b089551 | 2009-06-17 01:16:50 +0900 | [diff] [blame] | 582 | if (retval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | return retval; |
| 584 | } |
| 585 | sb->s_flags = (sb->s_flags & ~MS_RMT_MASK) | (flags & MS_RMT_MASK); |
Christoph Hellwig | c79d967 | 2010-05-19 07:16:40 -0400 | [diff] [blame] | 586 | |
Nick Piggin | d208bbd | 2009-12-21 16:28:53 -0800 | [diff] [blame] | 587 | /* |
| 588 | * Some filesystems modify their metadata via some other path than the |
| 589 | * bdev buffer cache (eg. use a private mapping, or directories in |
| 590 | * pagecache, etc). Also file data modifications go via their own |
| 591 | * mappings. So If we try to mount readonly then copy the filesystem |
| 592 | * from bdev, we could get stale data, so invalidate it to give a best |
| 593 | * effort at coherency. |
| 594 | */ |
| 595 | if (remount_ro && sb->s_bdev) |
| 596 | invalidate_bdev(sb->s_bdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | return 0; |
| 598 | } |
| 599 | |
Jens Axboe | a2a9537 | 2009-03-17 09:38:40 +0100 | [diff] [blame] | 600 | static void do_emergency_remount(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | { |
Al Viro | dca3325 | 2010-07-25 02:31:46 +0400 | [diff] [blame] | 602 | struct super_block *sb, *p = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | |
| 604 | spin_lock(&sb_lock); |
Al Viro | dca3325 | 2010-07-25 02:31:46 +0400 | [diff] [blame] | 605 | list_for_each_entry(sb, &super_blocks, s_list) { |
Al Viro | 551de6f | 2010-03-22 19:36:35 -0400 | [diff] [blame] | 606 | if (list_empty(&sb->s_instances)) |
| 607 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | sb->s_count++; |
| 609 | spin_unlock(&sb_lock); |
Al Viro | 443b94b | 2009-05-05 23:48:50 -0400 | [diff] [blame] | 610 | down_write(&sb->s_umount); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | if (sb->s_root && sb->s_bdev && !(sb->s_flags & MS_RDONLY)) { |
| 612 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | * What lock protects sb->s_flags?? |
| 614 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | do_remount_sb(sb, MS_RDONLY, NULL, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | } |
Al Viro | 443b94b | 2009-05-05 23:48:50 -0400 | [diff] [blame] | 617 | up_write(&sb->s_umount); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | spin_lock(&sb_lock); |
Al Viro | dca3325 | 2010-07-25 02:31:46 +0400 | [diff] [blame] | 619 | if (p) |
| 620 | __put_super(p); |
| 621 | p = sb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | } |
Al Viro | dca3325 | 2010-07-25 02:31:46 +0400 | [diff] [blame] | 623 | if (p) |
| 624 | __put_super(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | spin_unlock(&sb_lock); |
Jens Axboe | a2a9537 | 2009-03-17 09:38:40 +0100 | [diff] [blame] | 626 | kfree(work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | printk("Emergency Remount complete\n"); |
| 628 | } |
| 629 | |
| 630 | void emergency_remount(void) |
| 631 | { |
Jens Axboe | a2a9537 | 2009-03-17 09:38:40 +0100 | [diff] [blame] | 632 | struct work_struct *work; |
| 633 | |
| 634 | work = kmalloc(sizeof(*work), GFP_ATOMIC); |
| 635 | if (work) { |
| 636 | INIT_WORK(work, do_emergency_remount); |
| 637 | schedule_work(work); |
| 638 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | } |
| 640 | |
| 641 | /* |
| 642 | * Unnamed block devices are dummy devices used by virtual |
| 643 | * filesystems which don't use real block-devices. -- jrs |
| 644 | */ |
| 645 | |
Alexey Dobriyan | ad76cbc | 2008-08-28 06:26:23 +0400 | [diff] [blame] | 646 | static DEFINE_IDA(unnamed_dev_ida); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | static DEFINE_SPINLOCK(unnamed_dev_lock);/* protects the above */ |
Al Viro | c63e09e | 2009-06-24 02:05:18 -0400 | [diff] [blame] | 648 | static int unnamed_dev_start = 0; /* don't bother trying below it */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | |
| 650 | int set_anon_super(struct super_block *s, void *data) |
| 651 | { |
| 652 | int dev; |
| 653 | int error; |
| 654 | |
| 655 | retry: |
Alexey Dobriyan | ad76cbc | 2008-08-28 06:26:23 +0400 | [diff] [blame] | 656 | if (ida_pre_get(&unnamed_dev_ida, GFP_ATOMIC) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | return -ENOMEM; |
| 658 | spin_lock(&unnamed_dev_lock); |
Al Viro | c63e09e | 2009-06-24 02:05:18 -0400 | [diff] [blame] | 659 | error = ida_get_new_above(&unnamed_dev_ida, unnamed_dev_start, &dev); |
Al Viro | f21f622 | 2009-06-24 03:12:00 -0400 | [diff] [blame] | 660 | if (!error) |
| 661 | unnamed_dev_start = dev + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | spin_unlock(&unnamed_dev_lock); |
| 663 | if (error == -EAGAIN) |
| 664 | /* We raced and lost with another CPU. */ |
| 665 | goto retry; |
| 666 | else if (error) |
| 667 | return -EAGAIN; |
| 668 | |
| 669 | if ((dev & MAX_ID_MASK) == (1 << MINORBITS)) { |
| 670 | spin_lock(&unnamed_dev_lock); |
Alexey Dobriyan | ad76cbc | 2008-08-28 06:26:23 +0400 | [diff] [blame] | 671 | ida_remove(&unnamed_dev_ida, dev); |
Al Viro | f21f622 | 2009-06-24 03:12:00 -0400 | [diff] [blame] | 672 | if (unnamed_dev_start > dev) |
| 673 | unnamed_dev_start = dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | spin_unlock(&unnamed_dev_lock); |
| 675 | return -EMFILE; |
| 676 | } |
| 677 | s->s_dev = MKDEV(0, dev & MINORMASK); |
Jörn Engel | 5129a46 | 2010-04-25 08:54:42 +0200 | [diff] [blame] | 678 | s->s_bdi = &noop_backing_dev_info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | return 0; |
| 680 | } |
| 681 | |
| 682 | EXPORT_SYMBOL(set_anon_super); |
| 683 | |
| 684 | void kill_anon_super(struct super_block *sb) |
| 685 | { |
| 686 | int slot = MINOR(sb->s_dev); |
| 687 | |
| 688 | generic_shutdown_super(sb); |
| 689 | spin_lock(&unnamed_dev_lock); |
Alexey Dobriyan | ad76cbc | 2008-08-28 06:26:23 +0400 | [diff] [blame] | 690 | ida_remove(&unnamed_dev_ida, slot); |
Al Viro | c63e09e | 2009-06-24 02:05:18 -0400 | [diff] [blame] | 691 | if (slot < unnamed_dev_start) |
| 692 | unnamed_dev_start = slot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | spin_unlock(&unnamed_dev_lock); |
| 694 | } |
| 695 | |
| 696 | EXPORT_SYMBOL(kill_anon_super); |
| 697 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | void kill_litter_super(struct super_block *sb) |
| 699 | { |
| 700 | if (sb->s_root) |
| 701 | d_genocide(sb->s_root); |
| 702 | kill_anon_super(sb); |
| 703 | } |
| 704 | |
| 705 | EXPORT_SYMBOL(kill_litter_super); |
| 706 | |
Serge E. Hallyn | 909e6d9 | 2009-04-06 19:01:07 -0700 | [diff] [blame] | 707 | static int ns_test_super(struct super_block *sb, void *data) |
| 708 | { |
| 709 | return sb->s_fs_info == data; |
| 710 | } |
| 711 | |
| 712 | static int ns_set_super(struct super_block *sb, void *data) |
| 713 | { |
| 714 | sb->s_fs_info = data; |
| 715 | return set_anon_super(sb, NULL); |
| 716 | } |
| 717 | |
Al Viro | ceefda6 | 2010-07-26 13:16:50 +0400 | [diff] [blame] | 718 | struct dentry *mount_ns(struct file_system_type *fs_type, int flags, |
| 719 | void *data, int (*fill_super)(struct super_block *, void *, int)) |
Serge E. Hallyn | 909e6d9 | 2009-04-06 19:01:07 -0700 | [diff] [blame] | 720 | { |
| 721 | struct super_block *sb; |
| 722 | |
| 723 | sb = sget(fs_type, ns_test_super, ns_set_super, data); |
| 724 | if (IS_ERR(sb)) |
Al Viro | ceefda6 | 2010-07-26 13:16:50 +0400 | [diff] [blame] | 725 | return ERR_CAST(sb); |
Serge E. Hallyn | 909e6d9 | 2009-04-06 19:01:07 -0700 | [diff] [blame] | 726 | |
| 727 | if (!sb->s_root) { |
| 728 | int err; |
| 729 | sb->s_flags = flags; |
| 730 | err = fill_super(sb, data, flags & MS_SILENT ? 1 : 0); |
| 731 | if (err) { |
Al Viro | 74dbbdd | 2009-05-06 01:07:50 -0400 | [diff] [blame] | 732 | deactivate_locked_super(sb); |
Al Viro | ceefda6 | 2010-07-26 13:16:50 +0400 | [diff] [blame] | 733 | return ERR_PTR(err); |
Serge E. Hallyn | 909e6d9 | 2009-04-06 19:01:07 -0700 | [diff] [blame] | 734 | } |
| 735 | |
| 736 | sb->s_flags |= MS_ACTIVE; |
| 737 | } |
| 738 | |
Al Viro | ceefda6 | 2010-07-26 13:16:50 +0400 | [diff] [blame] | 739 | return dget(sb->s_root); |
Serge E. Hallyn | 909e6d9 | 2009-04-06 19:01:07 -0700 | [diff] [blame] | 740 | } |
| 741 | |
Al Viro | ceefda6 | 2010-07-26 13:16:50 +0400 | [diff] [blame] | 742 | EXPORT_SYMBOL(mount_ns); |
Serge E. Hallyn | 909e6d9 | 2009-04-06 19:01:07 -0700 | [diff] [blame] | 743 | |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 744 | #ifdef CONFIG_BLOCK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | static int set_bdev_super(struct super_block *s, void *data) |
| 746 | { |
| 747 | s->s_bdev = data; |
| 748 | s->s_dev = s->s_bdev->bd_dev; |
Jens Axboe | 32a88aa | 2009-09-16 15:02:33 +0200 | [diff] [blame] | 749 | |
| 750 | /* |
| 751 | * We set the bdi here to the queue backing, file systems can |
| 752 | * overwrite this in ->fill_super() |
| 753 | */ |
| 754 | s->s_bdi = &bdev_get_queue(s->s_bdev)->backing_dev_info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | return 0; |
| 756 | } |
| 757 | |
| 758 | static int test_bdev_super(struct super_block *s, void *data) |
| 759 | { |
| 760 | return (void *)s->s_bdev == data; |
| 761 | } |
| 762 | |
Al Viro | 152a083 | 2010-07-25 00:46:55 +0400 | [diff] [blame] | 763 | struct dentry *mount_bdev(struct file_system_type *fs_type, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | int flags, const char *dev_name, void *data, |
Al Viro | 152a083 | 2010-07-25 00:46:55 +0400 | [diff] [blame] | 765 | int (*fill_super)(struct super_block *, void *, int)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | { |
| 767 | struct block_device *bdev; |
| 768 | struct super_block *s; |
Al Viro | 30c40d2 | 2008-02-22 19:50:45 -0500 | [diff] [blame] | 769 | fmode_t mode = FMODE_READ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | int error = 0; |
| 771 | |
Al Viro | 30c40d2 | 2008-02-22 19:50:45 -0500 | [diff] [blame] | 772 | if (!(flags & MS_RDONLY)) |
| 773 | mode |= FMODE_WRITE; |
| 774 | |
| 775 | bdev = open_bdev_exclusive(dev_name, mode, fs_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | if (IS_ERR(bdev)) |
Al Viro | 152a083 | 2010-07-25 00:46:55 +0400 | [diff] [blame] | 777 | return ERR_CAST(bdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | |
| 779 | /* |
| 780 | * once the super is inserted into the list by sget, s_umount |
| 781 | * will protect the lockfs code from trying to start a snapshot |
| 782 | * while we are mounting |
| 783 | */ |
Christoph Hellwig | 4fadd7b | 2009-08-03 23:28:06 +0200 | [diff] [blame] | 784 | mutex_lock(&bdev->bd_fsfreeze_mutex); |
| 785 | if (bdev->bd_fsfreeze_count > 0) { |
| 786 | mutex_unlock(&bdev->bd_fsfreeze_mutex); |
| 787 | error = -EBUSY; |
| 788 | goto error_bdev; |
| 789 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | s = sget(fs_type, test_bdev_super, set_bdev_super, bdev); |
Christoph Hellwig | 4fadd7b | 2009-08-03 23:28:06 +0200 | [diff] [blame] | 791 | mutex_unlock(&bdev->bd_fsfreeze_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | if (IS_ERR(s)) |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 793 | goto error_s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | |
| 795 | if (s->s_root) { |
| 796 | if ((flags ^ s->s_flags) & MS_RDONLY) { |
Al Viro | 74dbbdd | 2009-05-06 01:07:50 -0400 | [diff] [blame] | 797 | deactivate_locked_super(s); |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 798 | error = -EBUSY; |
| 799 | goto error_bdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | } |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 801 | |
Tejun Heo | 4f331f0 | 2010-07-20 15:18:07 -0700 | [diff] [blame] | 802 | /* |
| 803 | * s_umount nests inside bd_mutex during |
| 804 | * __invalidate_device(). close_bdev_exclusive() |
| 805 | * acquires bd_mutex and can't be called under |
| 806 | * s_umount. Drop s_umount temporarily. This is safe |
| 807 | * as we're holding an active reference. |
| 808 | */ |
| 809 | up_write(&s->s_umount); |
Al Viro | 30c40d2 | 2008-02-22 19:50:45 -0500 | [diff] [blame] | 810 | close_bdev_exclusive(bdev, mode); |
Tejun Heo | 4f331f0 | 2010-07-20 15:18:07 -0700 | [diff] [blame] | 811 | down_write(&s->s_umount); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | } else { |
| 813 | char b[BDEVNAME_SIZE]; |
| 814 | |
| 815 | s->s_flags = flags; |
Al Viro | 30c40d2 | 2008-02-22 19:50:45 -0500 | [diff] [blame] | 816 | s->s_mode = mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id)); |
Pekka Enberg | e78c9a0 | 2006-01-08 01:03:39 -0800 | [diff] [blame] | 818 | sb_set_blocksize(s, block_size(bdev)); |
Theodore Ts'o | 9b04c99 | 2006-03-24 03:15:10 -0800 | [diff] [blame] | 819 | error = fill_super(s, data, flags & MS_SILENT ? 1 : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | if (error) { |
Al Viro | 74dbbdd | 2009-05-06 01:07:50 -0400 | [diff] [blame] | 821 | deactivate_locked_super(s); |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 822 | goto error; |
Greg Kroah-Hartman | fa67576 | 2006-02-22 09:39:02 -0800 | [diff] [blame] | 823 | } |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 824 | |
| 825 | s->s_flags |= MS_ACTIVE; |
Theodore Ts'o | 87d8fe1 | 2009-01-03 09:47:09 -0500 | [diff] [blame] | 826 | bdev->bd_super = s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | } |
| 828 | |
Al Viro | 152a083 | 2010-07-25 00:46:55 +0400 | [diff] [blame] | 829 | return dget(s->s_root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 831 | error_s: |
| 832 | error = PTR_ERR(s); |
| 833 | error_bdev: |
Al Viro | 30c40d2 | 2008-02-22 19:50:45 -0500 | [diff] [blame] | 834 | close_bdev_exclusive(bdev, mode); |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 835 | error: |
Al Viro | 152a083 | 2010-07-25 00:46:55 +0400 | [diff] [blame] | 836 | return ERR_PTR(error); |
| 837 | } |
| 838 | EXPORT_SYMBOL(mount_bdev); |
| 839 | |
| 840 | int get_sb_bdev(struct file_system_type *fs_type, |
| 841 | int flags, const char *dev_name, void *data, |
| 842 | int (*fill_super)(struct super_block *, void *, int), |
| 843 | struct vfsmount *mnt) |
| 844 | { |
| 845 | struct dentry *root; |
| 846 | |
| 847 | root = mount_bdev(fs_type, flags, dev_name, data, fill_super); |
| 848 | if (IS_ERR(root)) |
| 849 | return PTR_ERR(root); |
| 850 | mnt->mnt_root = root; |
| 851 | mnt->mnt_sb = root->d_sb; |
| 852 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | } |
| 854 | |
| 855 | EXPORT_SYMBOL(get_sb_bdev); |
| 856 | |
| 857 | void kill_block_super(struct super_block *sb) |
| 858 | { |
| 859 | struct block_device *bdev = sb->s_bdev; |
Al Viro | 30c40d2 | 2008-02-22 19:50:45 -0500 | [diff] [blame] | 860 | fmode_t mode = sb->s_mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | |
H Hartley Sweeten | ddbaaf3 | 2009-04-29 20:14:57 -0400 | [diff] [blame] | 862 | bdev->bd_super = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | generic_shutdown_super(sb); |
| 864 | sync_blockdev(bdev); |
Al Viro | 30c40d2 | 2008-02-22 19:50:45 -0500 | [diff] [blame] | 865 | close_bdev_exclusive(bdev, mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | } |
| 867 | |
| 868 | EXPORT_SYMBOL(kill_block_super); |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 869 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | |
Al Viro | 3c26ff6 | 2010-07-25 11:46:36 +0400 | [diff] [blame] | 871 | struct dentry *mount_nodev(struct file_system_type *fs_type, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | int flags, void *data, |
Al Viro | 3c26ff6 | 2010-07-25 11:46:36 +0400 | [diff] [blame] | 873 | int (*fill_super)(struct super_block *, void *, int)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | { |
| 875 | int error; |
| 876 | struct super_block *s = sget(fs_type, NULL, set_anon_super, NULL); |
| 877 | |
| 878 | if (IS_ERR(s)) |
Al Viro | 3c26ff6 | 2010-07-25 11:46:36 +0400 | [diff] [blame] | 879 | return ERR_CAST(s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | |
| 881 | s->s_flags = flags; |
| 882 | |
Theodore Ts'o | 9b04c99 | 2006-03-24 03:15:10 -0800 | [diff] [blame] | 883 | error = fill_super(s, data, flags & MS_SILENT ? 1 : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | if (error) { |
Al Viro | 74dbbdd | 2009-05-06 01:07:50 -0400 | [diff] [blame] | 885 | deactivate_locked_super(s); |
Al Viro | 3c26ff6 | 2010-07-25 11:46:36 +0400 | [diff] [blame] | 886 | return ERR_PTR(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | } |
| 888 | s->s_flags |= MS_ACTIVE; |
Al Viro | 3c26ff6 | 2010-07-25 11:46:36 +0400 | [diff] [blame] | 889 | return dget(s->s_root); |
| 890 | } |
| 891 | EXPORT_SYMBOL(mount_nodev); |
| 892 | |
| 893 | int get_sb_nodev(struct file_system_type *fs_type, |
| 894 | int flags, void *data, |
| 895 | int (*fill_super)(struct super_block *, void *, int), |
| 896 | struct vfsmount *mnt) |
| 897 | { |
| 898 | struct dentry *root; |
| 899 | |
| 900 | root = mount_nodev(fs_type, flags, data, fill_super); |
| 901 | if (IS_ERR(root)) |
| 902 | return PTR_ERR(root); |
| 903 | mnt->mnt_root = root; |
| 904 | mnt->mnt_sb = root->d_sb; |
Sukadev Bhattiprolu | a3ec947 | 2009-03-04 12:06:34 -0800 | [diff] [blame] | 905 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | EXPORT_SYMBOL(get_sb_nodev); |
| 908 | |
| 909 | static int compare_single(struct super_block *s, void *p) |
| 910 | { |
| 911 | return 1; |
| 912 | } |
| 913 | |
Al Viro | fc14f2f | 2010-07-25 01:48:30 +0400 | [diff] [blame] | 914 | struct dentry *mount_single(struct file_system_type *fs_type, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | int flags, void *data, |
Al Viro | fc14f2f | 2010-07-25 01:48:30 +0400 | [diff] [blame] | 916 | int (*fill_super)(struct super_block *, void *, int)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | { |
| 918 | struct super_block *s; |
| 919 | int error; |
| 920 | |
| 921 | s = sget(fs_type, compare_single, set_anon_super, NULL); |
| 922 | if (IS_ERR(s)) |
Al Viro | fc14f2f | 2010-07-25 01:48:30 +0400 | [diff] [blame] | 923 | return ERR_CAST(s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 | if (!s->s_root) { |
| 925 | s->s_flags = flags; |
Theodore Ts'o | 9b04c99 | 2006-03-24 03:15:10 -0800 | [diff] [blame] | 926 | error = fill_super(s, data, flags & MS_SILENT ? 1 : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | if (error) { |
Al Viro | 74dbbdd | 2009-05-06 01:07:50 -0400 | [diff] [blame] | 928 | deactivate_locked_super(s); |
Al Viro | fc14f2f | 2010-07-25 01:48:30 +0400 | [diff] [blame] | 929 | return ERR_PTR(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | } |
| 931 | s->s_flags |= MS_ACTIVE; |
Kay Sievers | 9329d1b | 2009-12-18 21:18:15 +0100 | [diff] [blame] | 932 | } else { |
| 933 | do_remount_sb(s, flags, data, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | } |
Al Viro | fc14f2f | 2010-07-25 01:48:30 +0400 | [diff] [blame] | 935 | return dget(s->s_root); |
| 936 | } |
| 937 | EXPORT_SYMBOL(mount_single); |
| 938 | |
| 939 | int get_sb_single(struct file_system_type *fs_type, |
| 940 | int flags, void *data, |
| 941 | int (*fill_super)(struct super_block *, void *, int), |
| 942 | struct vfsmount *mnt) |
| 943 | { |
| 944 | struct dentry *root; |
| 945 | root = mount_single(fs_type, flags, data, fill_super); |
| 946 | if (IS_ERR(root)) |
| 947 | return PTR_ERR(root); |
| 948 | mnt->mnt_root = root; |
| 949 | mnt->mnt_sb = root->d_sb; |
Sukadev Bhattiprolu | a3ec947 | 2009-03-04 12:06:34 -0800 | [diff] [blame] | 950 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | } |
| 952 | |
| 953 | EXPORT_SYMBOL(get_sb_single); |
| 954 | |
| 955 | struct vfsmount * |
Trond Myklebust | bb4a58b | 2006-06-09 09:34:15 -0400 | [diff] [blame] | 956 | vfs_kern_mount(struct file_system_type *type, int flags, const char *name, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | struct vfsmount *mnt; |
Al Viro | c96e41e | 2010-07-25 00:17:56 +0400 | [diff] [blame] | 959 | struct dentry *root; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | char *secdata = NULL; |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 961 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | |
| 963 | if (!type) |
| 964 | return ERR_PTR(-ENODEV); |
| 965 | |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 966 | error = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | mnt = alloc_vfsmnt(name); |
| 968 | if (!mnt) |
| 969 | goto out; |
| 970 | |
Al Viro | 8089352 | 2010-02-05 09:30:46 -0500 | [diff] [blame] | 971 | if (flags & MS_KERNMOUNT) |
| 972 | mnt->mnt_flags = MNT_INTERNAL; |
| 973 | |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 974 | if (data && !(type->fs_flags & FS_BINARY_MOUNTDATA)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | secdata = alloc_secdata(); |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 976 | if (!secdata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | goto out_mnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 979 | error = security_sb_copy_data(data, secdata); |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 980 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | goto out_free_secdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | } |
| 983 | |
Al Viro | c96e41e | 2010-07-25 00:17:56 +0400 | [diff] [blame] | 984 | if (type->mount) { |
| 985 | root = type->mount(type, flags, name, data); |
| 986 | if (IS_ERR(root)) { |
| 987 | error = PTR_ERR(root); |
| 988 | goto out_free_secdata; |
| 989 | } |
| 990 | mnt->mnt_root = root; |
| 991 | mnt->mnt_sb = root->d_sb; |
| 992 | } else { |
| 993 | error = type->get_sb(type, flags, name, data, mnt); |
| 994 | if (error < 0) |
| 995 | goto out_free_secdata; |
| 996 | } |
Lee Schermerhorn | b4c07bc | 2007-07-15 23:40:54 -0700 | [diff] [blame] | 997 | BUG_ON(!mnt->mnt_sb); |
Jörn Engel | 5129a46 | 2010-04-25 08:54:42 +0200 | [diff] [blame] | 998 | WARN_ON(!mnt->mnt_sb->s_bdi); |
Al Viro | 7a4dec5 | 2010-08-09 12:05:43 -0400 | [diff] [blame] | 999 | mnt->mnt_sb->s_flags |= MS_BORN; |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 1000 | |
Jörn Engel | 5129a46 | 2010-04-25 08:54:42 +0200 | [diff] [blame] | 1001 | error = security_sb_kern_mount(mnt->mnt_sb, flags, secdata); |
| 1002 | if (error) |
| 1003 | goto out_sb; |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 1004 | |
Jeff Layton | 42cb56a | 2009-09-18 13:05:53 -0700 | [diff] [blame] | 1005 | /* |
| 1006 | * filesystems should never set s_maxbytes larger than MAX_LFS_FILESIZE |
| 1007 | * but s_maxbytes was an unsigned long long for many releases. Throw |
| 1008 | * this warning for a little while to try and catch filesystems that |
| 1009 | * violate this rule. This warning should be either removed or |
| 1010 | * converted to a BUG() in 2.6.34. |
| 1011 | */ |
| 1012 | WARN((mnt->mnt_sb->s_maxbytes < 0), "%s set sb->s_maxbytes to " |
| 1013 | "negative value (%lld)\n", type->name, mnt->mnt_sb->s_maxbytes); |
| 1014 | |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 1015 | mnt->mnt_mountpoint = mnt->mnt_root; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | mnt->mnt_parent = mnt; |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 1017 | up_write(&mnt->mnt_sb->s_umount); |
Gerald Schaefer | 8680e22 | 2005-06-21 17:15:16 -0700 | [diff] [blame] | 1018 | free_secdata(secdata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | return mnt; |
| 1020 | out_sb: |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 1021 | dput(mnt->mnt_root); |
Al Viro | 74dbbdd | 2009-05-06 01:07:50 -0400 | [diff] [blame] | 1022 | deactivate_locked_super(mnt->mnt_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | out_free_secdata: |
| 1024 | free_secdata(secdata); |
| 1025 | out_mnt: |
| 1026 | free_vfsmnt(mnt); |
| 1027 | out: |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 1028 | return ERR_PTR(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 | } |
| 1030 | |
Trond Myklebust | bb4a58b | 2006-06-09 09:34:15 -0400 | [diff] [blame] | 1031 | EXPORT_SYMBOL_GPL(vfs_kern_mount); |
| 1032 | |
Josef Bacik | 18e9e51 | 2010-03-23 10:34:56 -0400 | [diff] [blame] | 1033 | /** |
Randy Dunlap | 7000d3c | 2010-05-24 22:22:34 -0700 | [diff] [blame] | 1034 | * freeze_super - lock the filesystem and force it into a consistent state |
| 1035 | * @sb: the super to lock |
Josef Bacik | 18e9e51 | 2010-03-23 10:34:56 -0400 | [diff] [blame] | 1036 | * |
| 1037 | * Syncs the super to make sure the filesystem is consistent and calls the fs's |
| 1038 | * freeze_fs. Subsequent calls to this without first thawing the fs will return |
| 1039 | * -EBUSY. |
| 1040 | */ |
| 1041 | int freeze_super(struct super_block *sb) |
| 1042 | { |
| 1043 | int ret; |
| 1044 | |
| 1045 | atomic_inc(&sb->s_active); |
| 1046 | down_write(&sb->s_umount); |
| 1047 | if (sb->s_frozen) { |
| 1048 | deactivate_locked_super(sb); |
| 1049 | return -EBUSY; |
| 1050 | } |
| 1051 | |
| 1052 | if (sb->s_flags & MS_RDONLY) { |
| 1053 | sb->s_frozen = SB_FREEZE_TRANS; |
| 1054 | smp_wmb(); |
| 1055 | up_write(&sb->s_umount); |
| 1056 | return 0; |
| 1057 | } |
| 1058 | |
| 1059 | sb->s_frozen = SB_FREEZE_WRITE; |
| 1060 | smp_wmb(); |
| 1061 | |
| 1062 | sync_filesystem(sb); |
| 1063 | |
| 1064 | sb->s_frozen = SB_FREEZE_TRANS; |
| 1065 | smp_wmb(); |
| 1066 | |
| 1067 | sync_blockdev(sb->s_bdev); |
| 1068 | if (sb->s_op->freeze_fs) { |
| 1069 | ret = sb->s_op->freeze_fs(sb); |
| 1070 | if (ret) { |
| 1071 | printk(KERN_ERR |
| 1072 | "VFS:Filesystem freeze failed\n"); |
| 1073 | sb->s_frozen = SB_UNFROZEN; |
| 1074 | deactivate_locked_super(sb); |
| 1075 | return ret; |
| 1076 | } |
| 1077 | } |
| 1078 | up_write(&sb->s_umount); |
| 1079 | return 0; |
| 1080 | } |
| 1081 | EXPORT_SYMBOL(freeze_super); |
| 1082 | |
| 1083 | /** |
| 1084 | * thaw_super -- unlock filesystem |
| 1085 | * @sb: the super to thaw |
| 1086 | * |
| 1087 | * Unlocks the filesystem and marks it writeable again after freeze_super(). |
| 1088 | */ |
| 1089 | int thaw_super(struct super_block *sb) |
| 1090 | { |
| 1091 | int error; |
| 1092 | |
| 1093 | down_write(&sb->s_umount); |
| 1094 | if (sb->s_frozen == SB_UNFROZEN) { |
| 1095 | up_write(&sb->s_umount); |
| 1096 | return -EINVAL; |
| 1097 | } |
| 1098 | |
| 1099 | if (sb->s_flags & MS_RDONLY) |
| 1100 | goto out; |
| 1101 | |
| 1102 | if (sb->s_op->unfreeze_fs) { |
| 1103 | error = sb->s_op->unfreeze_fs(sb); |
| 1104 | if (error) { |
| 1105 | printk(KERN_ERR |
| 1106 | "VFS:Filesystem thaw failed\n"); |
| 1107 | sb->s_frozen = SB_FREEZE_TRANS; |
| 1108 | up_write(&sb->s_umount); |
| 1109 | return error; |
| 1110 | } |
| 1111 | } |
| 1112 | |
| 1113 | out: |
| 1114 | sb->s_frozen = SB_UNFROZEN; |
| 1115 | smp_wmb(); |
| 1116 | wake_up(&sb->s_wait_unfrozen); |
| 1117 | deactivate_locked_super(sb); |
| 1118 | |
| 1119 | return 0; |
| 1120 | } |
| 1121 | EXPORT_SYMBOL(thaw_super); |
| 1122 | |
Miklos Szeredi | 79c0b2d | 2007-05-08 00:25:43 -0700 | [diff] [blame] | 1123 | static struct vfsmount *fs_set_subtype(struct vfsmount *mnt, const char *fstype) |
| 1124 | { |
| 1125 | int err; |
| 1126 | const char *subtype = strchr(fstype, '.'); |
| 1127 | if (subtype) { |
| 1128 | subtype++; |
| 1129 | err = -EINVAL; |
| 1130 | if (!subtype[0]) |
| 1131 | goto err; |
| 1132 | } else |
| 1133 | subtype = ""; |
| 1134 | |
| 1135 | mnt->mnt_sb->s_subtype = kstrdup(subtype, GFP_KERNEL); |
| 1136 | err = -ENOMEM; |
| 1137 | if (!mnt->mnt_sb->s_subtype) |
| 1138 | goto err; |
| 1139 | return mnt; |
| 1140 | |
| 1141 | err: |
| 1142 | mntput(mnt); |
| 1143 | return ERR_PTR(err); |
| 1144 | } |
| 1145 | |
Trond Myklebust | bb4a58b | 2006-06-09 09:34:15 -0400 | [diff] [blame] | 1146 | struct vfsmount * |
| 1147 | do_kern_mount(const char *fstype, int flags, const char *name, void *data) |
| 1148 | { |
| 1149 | struct file_system_type *type = get_fs_type(fstype); |
| 1150 | struct vfsmount *mnt; |
| 1151 | if (!type) |
| 1152 | return ERR_PTR(-ENODEV); |
| 1153 | mnt = vfs_kern_mount(type, flags, name, data); |
Miklos Szeredi | 79c0b2d | 2007-05-08 00:25:43 -0700 | [diff] [blame] | 1154 | if (!IS_ERR(mnt) && (type->fs_flags & FS_HAS_SUBTYPE) && |
| 1155 | !mnt->mnt_sb->s_subtype) |
| 1156 | mnt = fs_set_subtype(mnt, fstype); |
Trond Myklebust | bb4a58b | 2006-06-09 09:34:15 -0400 | [diff] [blame] | 1157 | put_filesystem(type); |
| 1158 | return mnt; |
| 1159 | } |
Al Viro | 8a4e98d | 2008-02-24 01:43:03 -0500 | [diff] [blame] | 1160 | EXPORT_SYMBOL_GPL(do_kern_mount); |
Trond Myklebust | bb4a58b | 2006-06-09 09:34:15 -0400 | [diff] [blame] | 1161 | |
Pavel Emelyanov | 8bf9725 | 2007-10-18 23:40:02 -0700 | [diff] [blame] | 1162 | struct vfsmount *kern_mount_data(struct file_system_type *type, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | { |
Pavel Emelyanov | 8bf9725 | 2007-10-18 23:40:02 -0700 | [diff] [blame] | 1164 | return vfs_kern_mount(type, MS_KERNMOUNT, type->name, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1165 | } |
| 1166 | |
Pavel Emelyanov | 8bf9725 | 2007-10-18 23:40:02 -0700 | [diff] [blame] | 1167 | EXPORT_SYMBOL_GPL(kern_mount_data); |