blob: e63c754447ce05431655b0026195c3ec33e00c3a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Engelhardt96de0e22007-10-19 23:21:04 +020018 * Torbjörn Lindh (torbjorn.lindh@gopta.se), April 14, 1996.
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * 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 Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/module.h>
24#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/acct.h>
26#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/mount.h>
28#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/writeback.h> /* for the emergency remount stuff */
30#include <linux/idr.h>
Ingo Molnar353ab6e2006-03-26 01:37:12 -080031#include <linux/mutex.h>
Jens Axboe5477d0f2010-04-29 20:33:35 +020032#include <linux/backing-dev.h>
Nick Pigginceb5bdc2011-01-07 17:50:05 +110033#include <linux/rculist_bl.h>
Dan Magenheimerc515e1f2011-05-26 10:01:43 -060034#include <linux/cleancache.h>
Al Viro6d59e7f2008-03-22 15:48:17 -040035#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038LIST_HEAD(super_blocks);
39DEFINE_SPINLOCK(sb_lock);
40
41/**
42 * alloc_super - create new superblock
Henrik Kretzschmarfe2bbc42006-09-06 00:03:41 -070043 * @type: filesystem type superblock should belong to
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 *
45 * Allocates and initializes a new &struct super_block. alloc_super()
46 * returns a pointer new superblock or %NULL if allocation had failed.
47 */
Ingo Molnarcf516242006-07-03 00:25:27 -070048static struct super_block *alloc_super(struct file_system_type *type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
Oliver Neukum11b0b5a2006-03-25 03:08:13 -080050 struct super_block *s = kzalloc(sizeof(struct super_block), GFP_USER);
Alexey Dobriyanb87221d2009-09-21 17:01:09 -070051 static const struct super_operations default_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53 if (s) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 if (security_sb_alloc(s)) {
55 kfree(s);
56 s = NULL;
57 goto out;
58 }
Nick Piggin6416ccb2010-08-18 04:37:38 +100059#ifdef CONFIG_SMP
60 s->s_files = alloc_percpu(struct list_head);
61 if (!s->s_files) {
62 security_sb_free(s);
63 kfree(s);
64 s = NULL;
65 goto out;
66 } else {
67 int i;
68
69 for_each_possible_cpu(i)
70 INIT_LIST_HEAD(per_cpu_ptr(s->s_files, i));
71 }
72#else
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 INIT_LIST_HEAD(&s->s_files);
Nick Piggin6416ccb2010-08-18 04:37:38 +100074#endif
Jens Axboe95f28602011-03-17 11:13:12 +010075 s->s_bdi = &default_backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 INIT_LIST_HEAD(&s->s_instances);
Nick Pigginceb5bdc2011-01-07 17:50:05 +110077 INIT_HLIST_BL_HEAD(&s->s_anon);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 INIT_LIST_HEAD(&s->s_inodes);
Kentaro Makitada3bbdd2008-07-23 21:27:13 -070079 INIT_LIST_HEAD(&s->s_dentry_lru);
Dave Chinner98b745c2011-07-08 14:14:39 +100080 INIT_LIST_HEAD(&s->s_inode_lru);
Dave Chinner09cc9fc2011-07-08 14:14:40 +100081 spin_lock_init(&s->s_inode_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 init_rwsem(&s->s_umount);
Ingo Molnar7892f2f2006-01-09 15:59:25 -080083 mutex_init(&s->s_lock);
Arjan van de Ven897c6ff2006-07-03 00:25:28 -070084 lockdep_set_class(&s->s_umount, &type->s_umount_key);
Ingo Molnarcf516242006-07-03 00:25:27 -070085 /*
86 * The locking rules for s_lock are up to the
87 * filesystem. For example ext3fs has different
88 * lock ordering than usbfs:
89 */
90 lockdep_set_class(&s->s_lock, &type->s_lock_key);
Peter Zijlstraada723d2009-02-18 14:48:30 -080091 /*
92 * sget() can have s_umount recursion.
93 *
94 * When it cannot find a suitable sb, it allocates a new
95 * one (this one), and tries again to find a suitable old
96 * one.
97 *
98 * In case that succeeds, it will acquire the s_umount
99 * lock of the old one. Since these are clearly distrinct
100 * locks, and this object isn't exposed yet, there's no
101 * risk of deadlocks.
102 *
103 * Annotate this by putting this lock in a different
104 * subclass.
105 */
106 down_write_nested(&s->s_umount, SINGLE_DEPTH_NESTING);
Al Virob20bd1a2010-03-22 08:53:19 -0400107 s->s_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 atomic_set(&s->s_active, 1);
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800109 mutex_init(&s->s_vfs_rename_mutex);
Roland Dreier51ee0492010-04-27 14:23:57 -0700110 lockdep_set_class(&s->s_vfs_rename_mutex, &type->s_vfs_rename_key);
Ingo Molnard3be9152006-03-23 03:00:29 -0800111 mutex_init(&s->s_dquot.dqio_mutex);
112 mutex_init(&s->s_dquot.dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 init_rwsem(&s->s_dquot.dqptr_sem);
114 init_waitqueue_head(&s->s_wait_unfrozen);
115 s->s_maxbytes = MAX_NON_LFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 s->s_op = &default_op;
117 s->s_time_gran = 1000000000;
Dan Magenheimerc515e1f2011-05-26 10:01:43 -0600118 s->cleancache_poolid = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
120out:
121 return s;
122}
123
124/**
125 * destroy_super - frees a superblock
126 * @s: superblock to free
127 *
128 * Frees a superblock.
129 */
130static inline void destroy_super(struct super_block *s)
131{
Nick Piggin6416ccb2010-08-18 04:37:38 +1000132#ifdef CONFIG_SMP
133 free_percpu(s->s_files);
134#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 security_sb_free(s);
Miklos Szeredi79c0b2d2007-05-08 00:25:43 -0700136 kfree(s->s_subtype);
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800137 kfree(s->s_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 kfree(s);
139}
140
141/* Superblock refcounting */
142
143/*
Al Viro35cf7ba2010-03-22 21:13:53 -0400144 * Drop a superblock's refcount. The caller must hold sb_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 */
Al Viro35cf7ba2010-03-22 21:13:53 -0400146void __put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 if (!--sb->s_count) {
Al Viro551de6f2010-03-22 19:36:35 -0400149 list_del_init(&sb->s_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 destroy_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
153
154/**
155 * put_super - drop a temporary reference to superblock
156 * @sb: superblock in question
157 *
158 * Drops a temporary reference, frees superblock if there's no
159 * references left.
160 */
Jens Axboe03ba3782009-09-09 09:08:54 +0200161void put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
163 spin_lock(&sb_lock);
164 __put_super(sb);
165 spin_unlock(&sb_lock);
166}
167
168
169/**
Al Viro74dbbdd2009-05-06 01:07:50 -0400170 * deactivate_locked_super - drop an active reference to superblock
171 * @s: superblock to deactivate
172 *
Al Viro1712ac82010-03-22 15:22:31 -0400173 * Drops an active reference to superblock, converting it into a temprory
174 * one if there is no other active references left. In that case we
175 * tell fs driver to shut it down and drop the temporary reference we
176 * had just acquired.
177 *
178 * Caller holds exclusive lock on superblock; that lock is released.
Al Viro74dbbdd2009-05-06 01:07:50 -0400179 */
180void deactivate_locked_super(struct super_block *s)
181{
182 struct file_system_type *fs = s->s_type;
Al Virob20bd1a2010-03-22 08:53:19 -0400183 if (atomic_dec_and_test(&s->s_active)) {
Dan Magenheimerc515e1f2011-05-26 10:01:43 -0600184 cleancache_flush_fs(s);
Al Viro74dbbdd2009-05-06 01:07:50 -0400185 fs->kill_sb(s);
Boaz Harroshd863b502011-02-10 15:01:20 -0800186 /*
187 * We need to call rcu_barrier so all the delayed rcu free
188 * inodes are flushed before we release the fs module.
189 */
190 rcu_barrier();
Al Viro74dbbdd2009-05-06 01:07:50 -0400191 put_filesystem(fs);
192 put_super(s);
193 } else {
194 up_write(&s->s_umount);
195 }
196}
197
198EXPORT_SYMBOL(deactivate_locked_super);
199
200/**
Al Viro1712ac82010-03-22 15:22:31 -0400201 * deactivate_super - drop an active reference to superblock
202 * @s: superblock to deactivate
203 *
204 * Variant of deactivate_locked_super(), except that superblock is *not*
205 * locked by caller. If we are going to drop the final active reference,
206 * lock will be acquired prior to that.
207 */
208void deactivate_super(struct super_block *s)
209{
210 if (!atomic_add_unless(&s->s_active, -1, 1)) {
211 down_write(&s->s_umount);
212 deactivate_locked_super(s);
213 }
214}
215
216EXPORT_SYMBOL(deactivate_super);
217
218/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 * grab_super - acquire an active reference
220 * @s: reference we are trying to make active
221 *
222 * Tries to acquire an active reference. grab_super() is used when we
223 * had just found a superblock in super_blocks or fs_type->fs_supers
224 * and want to turn it into a full-blown active reference. grab_super()
225 * is called with sb_lock held and drops it. Returns 1 in case of
226 * success, 0 if we had failed (superblock contents was already dead or
227 * dying when grab_super() had been called).
228 */
Josh Triplett9c4dbee2006-09-29 01:59:29 -0700229static int grab_super(struct super_block *s) __releases(sb_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Al Virob20bd1a2010-03-22 08:53:19 -0400231 if (atomic_inc_not_zero(&s->s_active)) {
232 spin_unlock(&sb_lock);
Al Virob20bd1a2010-03-22 08:53:19 -0400233 return 1;
234 }
235 /* it's going away */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 s->s_count++;
237 spin_unlock(&sb_lock);
Al Viro1712ac82010-03-22 15:22:31 -0400238 /* wait for it to die */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 down_write(&s->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 up_write(&s->s_umount);
241 put_super(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return 0;
243}
244
David Howellscf9a2ae2006-08-29 19:05:54 +0100245/*
Dave Chinner12ad3ab2011-07-08 14:14:41 +1000246 * grab_super_passive - acquire a passive reference
247 * @s: reference we are trying to grab
248 *
249 * Tries to acquire a passive reference. This is used in places where we
250 * cannot take an active reference but we need to ensure that the
251 * superblock does not go away while we are working on it. It returns
252 * false if a reference was not gained, and returns true with the s_umount
253 * lock held in read mode if a reference is gained. On successful return,
254 * the caller must drop the s_umount lock and the passive reference when
255 * done.
256 */
257bool grab_super_passive(struct super_block *sb)
258{
259 spin_lock(&sb_lock);
260 if (list_empty(&sb->s_instances)) {
261 spin_unlock(&sb_lock);
262 return false;
263 }
264
265 sb->s_count++;
266 spin_unlock(&sb_lock);
267
268 if (down_read_trylock(&sb->s_umount)) {
269 if (sb->s_root)
270 return true;
271 up_read(&sb->s_umount);
272 }
273
274 put_super(sb);
275 return false;
276}
277
278/*
Al Viro914e2632006-10-18 13:55:46 -0400279 * Superblock locking. We really ought to get rid of these two.
280 */
281void lock_super(struct super_block * sb)
282{
283 get_fs_excl();
284 mutex_lock(&sb->s_lock);
285}
286
287void unlock_super(struct super_block * sb)
288{
289 put_fs_excl();
290 mutex_unlock(&sb->s_lock);
291}
292
293EXPORT_SYMBOL(lock_super);
294EXPORT_SYMBOL(unlock_super);
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296/**
297 * generic_shutdown_super - common helper for ->kill_sb()
298 * @sb: superblock to kill
299 *
300 * generic_shutdown_super() does all fs-independent work on superblock
301 * shutdown. Typical ->kill_sb() should pick all fs-specific objects
302 * that need destruction out of superblock, call generic_shutdown_super()
303 * and release aforementioned objects. Note: dentries and inodes _are_
304 * taken care of and do not need specific handling.
David Howellsc636ebd2006-10-11 01:22:19 -0700305 *
306 * Upon calling this function, the filesystem may no longer alter or
307 * rearrange the set of dentries belonging to this super_block, nor may it
308 * change the attachments of dentries to inodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 */
310void generic_shutdown_super(struct super_block *sb)
311{
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800312 const struct super_operations *sop = sb->s_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Arjan van de Venefaee192009-01-06 07:20:54 -0800314
David Howellsc636ebd2006-10-11 01:22:19 -0700315 if (sb->s_root) {
316 shrink_dcache_for_umount(sb);
Jan Kara60b06802009-04-27 16:43:53 +0200317 sync_filesystem(sb);
Al Viroa9e220f2009-05-05 22:10:44 -0400318 get_fs_excl();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 sb->s_flags &= ~MS_ACTIVE;
Arjan van de Venefaee192009-01-06 07:20:54 -0800320
Al Viro63997e92010-10-25 20:49:35 -0400321 fsnotify_unmount_inodes(&sb->s_inodes);
322
323 evict_inodes(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 if (sop->put_super)
326 sop->put_super(sb);
327
Al Viro63997e92010-10-25 20:49:35 -0400328 if (!list_empty(&sb->s_inodes)) {
Dave Jones7b4fe292006-02-07 12:58:48 -0800329 printk("VFS: Busy inodes after unmount of %s. "
330 "Self-destruct in 5 seconds. Have a nice day...\n",
331 sb->s_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
Al Viroa9e220f2009-05-05 22:10:44 -0400333 put_fs_excl();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
335 spin_lock(&sb_lock);
336 /* should be initialized for __put_super_and_need_restart() */
Al Viro551de6f2010-03-22 19:36:35 -0400337 list_del_init(&sb->s_instances);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 spin_unlock(&sb_lock);
339 up_write(&sb->s_umount);
340}
341
342EXPORT_SYMBOL(generic_shutdown_super);
343
344/**
345 * sget - find or create a superblock
346 * @type: filesystem type superblock should belong to
347 * @test: comparison callback
348 * @set: setup callback
349 * @data: argument to each of them
350 */
351struct super_block *sget(struct file_system_type *type,
352 int (*test)(struct super_block *,void *),
353 int (*set)(struct super_block *,void *),
354 void *data)
355{
356 struct super_block *s = NULL;
Matthias Kaehlcked4730122007-10-18 23:39:57 -0700357 struct super_block *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 int err;
359
360retry:
361 spin_lock(&sb_lock);
Matthias Kaehlcked4730122007-10-18 23:39:57 -0700362 if (test) {
363 list_for_each_entry(old, &type->fs_supers, s_instances) {
364 if (!test(old, data))
365 continue;
366 if (!grab_super(old))
367 goto retry;
Li Zefana3cfbb52009-03-12 14:31:29 -0700368 if (s) {
369 up_write(&s->s_umount);
Matthias Kaehlcked4730122007-10-18 23:39:57 -0700370 destroy_super(s);
Al Viro7a4dec52010-08-09 12:05:43 -0400371 s = NULL;
Li Zefana3cfbb52009-03-12 14:31:29 -0700372 }
Al Virod3f21472010-03-23 11:11:05 -0400373 down_write(&old->s_umount);
Al Viro7a4dec52010-08-09 12:05:43 -0400374 if (unlikely(!(old->s_flags & MS_BORN))) {
375 deactivate_locked_super(old);
376 goto retry;
377 }
Matthias Kaehlcked4730122007-10-18 23:39:57 -0700378 return old;
379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
381 if (!s) {
382 spin_unlock(&sb_lock);
Ingo Molnarcf516242006-07-03 00:25:27 -0700383 s = alloc_super(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 if (!s)
385 return ERR_PTR(-ENOMEM);
386 goto retry;
387 }
388
389 err = set(s, data);
390 if (err) {
391 spin_unlock(&sb_lock);
Li Zefana3cfbb52009-03-12 14:31:29 -0700392 up_write(&s->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 destroy_super(s);
394 return ERR_PTR(err);
395 }
396 s->s_type = type;
397 strlcpy(s->s_id, type->name, sizeof(s->s_id));
398 list_add_tail(&s->s_list, &super_blocks);
399 list_add(&s->s_instances, &type->fs_supers);
400 spin_unlock(&sb_lock);
401 get_filesystem(type);
402 return s;
403}
404
405EXPORT_SYMBOL(sget);
406
407void drop_super(struct super_block *sb)
408{
409 up_read(&sb->s_umount);
410 put_super(sb);
411}
412
413EXPORT_SYMBOL(drop_super);
414
Christoph Hellwige5004752009-05-05 16:08:56 +0200415/**
416 * sync_supers - helper for periodic superblock writeback
417 *
418 * Call the write_super method if present on all dirty superblocks in
419 * the system. This is for the periodic writeback used by most older
420 * filesystems. For data integrity superblock writeback use
421 * sync_filesystems() instead.
422 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 * Note: check the dirty flag before waiting, so we don't
424 * hold up the sync while mounting a device. (The newly
425 * mounted device won't need syncing.)
426 */
427void sync_supers(void)
428{
Al Virodca33252010-07-25 02:31:46 +0400429 struct super_block *sb, *p = NULL;
Kirill Korotaev618f0632005-06-23 00:09:54 -0700430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 spin_lock(&sb_lock);
Al Virodca33252010-07-25 02:31:46 +0400432 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400433 if (list_empty(&sb->s_instances))
434 continue;
Christoph Hellwige5004752009-05-05 16:08:56 +0200435 if (sb->s_op->write_super && sb->s_dirt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 sb->s_count++;
437 spin_unlock(&sb_lock);
Christoph Hellwige5004752009-05-05 16:08:56 +0200438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 down_read(&sb->s_umount);
Christoph Hellwige5004752009-05-05 16:08:56 +0200440 if (sb->s_root && sb->s_dirt)
441 sb->s_op->write_super(sb);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700442 up_read(&sb->s_umount);
Christoph Hellwige5004752009-05-05 16:08:56 +0200443
Kirill Korotaev618f0632005-06-23 00:09:54 -0700444 spin_lock(&sb_lock);
Al Virodca33252010-07-25 02:31:46 +0400445 if (p)
446 __put_super(p);
447 p = sb;
Kirill Korotaev618f0632005-06-23 00:09:54 -0700448 }
449 }
Al Virodca33252010-07-25 02:31:46 +0400450 if (p)
451 __put_super(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 spin_unlock(&sb_lock);
453}
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455/**
Al Viro01a05b32010-03-23 06:06:58 -0400456 * iterate_supers - call function for all active superblocks
457 * @f: function to call
458 * @arg: argument to pass to it
459 *
460 * Scans the superblock list and calls given function, passing it
461 * locked superblock and given argument.
462 */
463void iterate_supers(void (*f)(struct super_block *, void *), void *arg)
464{
Al Virodca33252010-07-25 02:31:46 +0400465 struct super_block *sb, *p = NULL;
Al Viro01a05b32010-03-23 06:06:58 -0400466
467 spin_lock(&sb_lock);
Al Virodca33252010-07-25 02:31:46 +0400468 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro01a05b32010-03-23 06:06:58 -0400469 if (list_empty(&sb->s_instances))
470 continue;
471 sb->s_count++;
472 spin_unlock(&sb_lock);
473
474 down_read(&sb->s_umount);
475 if (sb->s_root)
476 f(sb, arg);
477 up_read(&sb->s_umount);
478
479 spin_lock(&sb_lock);
Al Virodca33252010-07-25 02:31:46 +0400480 if (p)
481 __put_super(p);
482 p = sb;
Al Viro01a05b32010-03-23 06:06:58 -0400483 }
Al Virodca33252010-07-25 02:31:46 +0400484 if (p)
485 __put_super(p);
Al Viro01a05b32010-03-23 06:06:58 -0400486 spin_unlock(&sb_lock);
487}
488
489/**
Al Viro43e15cd2011-06-03 20:16:57 -0400490 * iterate_supers_type - call function for superblocks of given type
491 * @type: fs type
492 * @f: function to call
493 * @arg: argument to pass to it
494 *
495 * Scans the superblock list and calls given function, passing it
496 * locked superblock and given argument.
497 */
498void iterate_supers_type(struct file_system_type *type,
499 void (*f)(struct super_block *, void *), void *arg)
500{
501 struct super_block *sb, *p = NULL;
502
503 spin_lock(&sb_lock);
504 list_for_each_entry(sb, &type->fs_supers, s_instances) {
505 sb->s_count++;
506 spin_unlock(&sb_lock);
507
508 down_read(&sb->s_umount);
509 if (sb->s_root)
510 f(sb, arg);
511 up_read(&sb->s_umount);
512
513 spin_lock(&sb_lock);
514 if (p)
515 __put_super(p);
516 p = sb;
517 }
518 if (p)
519 __put_super(p);
520 spin_unlock(&sb_lock);
521}
522
523EXPORT_SYMBOL(iterate_supers_type);
524
525/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 * get_super - get the superblock of a device
527 * @bdev: device to get the superblock for
528 *
529 * Scans the superblock list and finds the superblock of the file system
530 * mounted on the device given. %NULL is returned if no match is found.
531 */
532
Al Virodf40c012010-03-22 20:23:25 -0400533struct super_block *get_super(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Kirill Korotaev618f0632005-06-23 00:09:54 -0700535 struct super_block *sb;
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (!bdev)
538 return NULL;
Kirill Korotaev618f0632005-06-23 00:09:54 -0700539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 spin_lock(&sb_lock);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700541rescan:
542 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400543 if (list_empty(&sb->s_instances))
544 continue;
Kirill Korotaev618f0632005-06-23 00:09:54 -0700545 if (sb->s_bdev == bdev) {
546 sb->s_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 spin_unlock(&sb_lock);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700548 down_read(&sb->s_umount);
Al Virodf40c012010-03-22 20:23:25 -0400549 /* still alive? */
Kirill Korotaev618f0632005-06-23 00:09:54 -0700550 if (sb->s_root)
551 return sb;
552 up_read(&sb->s_umount);
Al Virodf40c012010-03-22 20:23:25 -0400553 /* nope, got unmounted */
Kirill Korotaev618f0632005-06-23 00:09:54 -0700554 spin_lock(&sb_lock);
Al Virodf40c012010-03-22 20:23:25 -0400555 __put_super(sb);
556 goto rescan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
558 }
559 spin_unlock(&sb_lock);
560 return NULL;
561}
562
563EXPORT_SYMBOL(get_super);
Christoph Hellwig45042302009-08-03 23:28:35 +0200564
565/**
566 * get_active_super - get an active reference to the superblock of a device
567 * @bdev: device to get the superblock for
568 *
569 * Scans the superblock list and finds the superblock of the file system
570 * mounted on the device given. Returns the superblock with an active
Al Virod3f21472010-03-23 11:11:05 -0400571 * reference or %NULL if none was found.
Christoph Hellwig45042302009-08-03 23:28:35 +0200572 */
573struct super_block *get_active_super(struct block_device *bdev)
574{
575 struct super_block *sb;
576
577 if (!bdev)
578 return NULL;
579
Al Viro14945832010-03-22 20:15:33 -0400580restart:
Christoph Hellwig45042302009-08-03 23:28:35 +0200581 spin_lock(&sb_lock);
582 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400583 if (list_empty(&sb->s_instances))
584 continue;
Al Viro14945832010-03-22 20:15:33 -0400585 if (sb->s_bdev == bdev) {
586 if (grab_super(sb)) /* drops sb_lock */
587 return sb;
588 else
589 goto restart;
590 }
Christoph Hellwig45042302009-08-03 23:28:35 +0200591 }
592 spin_unlock(&sb_lock);
593 return NULL;
594}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Al Virodf40c012010-03-22 20:23:25 -0400596struct super_block *user_get_super(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Kirill Korotaev618f0632005-06-23 00:09:54 -0700598 struct super_block *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 spin_lock(&sb_lock);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700601rescan:
602 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400603 if (list_empty(&sb->s_instances))
604 continue;
Kirill Korotaev618f0632005-06-23 00:09:54 -0700605 if (sb->s_dev == dev) {
606 sb->s_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 spin_unlock(&sb_lock);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700608 down_read(&sb->s_umount);
Al Virodf40c012010-03-22 20:23:25 -0400609 /* still alive? */
Kirill Korotaev618f0632005-06-23 00:09:54 -0700610 if (sb->s_root)
611 return sb;
612 up_read(&sb->s_umount);
Al Virodf40c012010-03-22 20:23:25 -0400613 /* nope, got unmounted */
Kirill Korotaev618f0632005-06-23 00:09:54 -0700614 spin_lock(&sb_lock);
Al Virodf40c012010-03-22 20:23:25 -0400615 __put_super(sb);
616 goto rescan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
618 }
619 spin_unlock(&sb_lock);
620 return NULL;
621}
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 * do_remount_sb - asks filesystem to change mount options.
625 * @sb: superblock in question
626 * @flags: numeric part of options
627 * @data: the rest of options
628 * @force: whether or not to force the change
629 *
630 * Alters the mount options of a mounted file system.
631 */
632int do_remount_sb(struct super_block *sb, int flags, void *data, int force)
633{
634 int retval;
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400635 int remount_ro;
Christoph Hellwig45042302009-08-03 23:28:35 +0200636
637 if (sb->s_frozen != SB_UNFROZEN)
638 return -EBUSY;
639
David Howells93614012006-09-30 20:45:40 +0200640#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if (!(flags & MS_RDONLY) && bdev_read_only(sb->s_bdev))
642 return -EACCES;
David Howells93614012006-09-30 20:45:40 +0200643#endif
Christoph Hellwig45042302009-08-03 23:28:35 +0200644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (flags & MS_RDONLY)
646 acct_auto_close(sb);
647 shrink_dcache_sb(sb);
Jan Kara60b06802009-04-27 16:43:53 +0200648 sync_filesystem(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Nick Piggind208bbd2009-12-21 16:28:53 -0800650 remount_ro = (flags & MS_RDONLY) && !(sb->s_flags & MS_RDONLY);
Nick Piggind208bbd2009-12-21 16:28:53 -0800651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 /* If we are remounting RDONLY and current sb is read/write,
653 make sure there are no rw files opened */
Nick Piggind208bbd2009-12-21 16:28:53 -0800654 if (remount_ro) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 if (force)
656 mark_files_ro(sb);
J. R. Okajimab0895512009-06-17 01:16:50 +0900657 else if (!fs_may_remount_ro(sb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 return -EBUSY;
659 }
660
661 if (sb->s_op->remount_fs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 retval = sb->s_op->remount_fs(sb, &flags, data);
J. R. Okajimab0895512009-06-17 01:16:50 +0900663 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return retval;
665 }
666 sb->s_flags = (sb->s_flags & ~MS_RMT_MASK) | (flags & MS_RMT_MASK);
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400667
Nick Piggind208bbd2009-12-21 16:28:53 -0800668 /*
669 * Some filesystems modify their metadata via some other path than the
670 * bdev buffer cache (eg. use a private mapping, or directories in
671 * pagecache, etc). Also file data modifications go via their own
672 * mappings. So If we try to mount readonly then copy the filesystem
673 * from bdev, we could get stale data, so invalidate it to give a best
674 * effort at coherency.
675 */
676 if (remount_ro && sb->s_bdev)
677 invalidate_bdev(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 return 0;
679}
680
Jens Axboea2a95372009-03-17 09:38:40 +0100681static void do_emergency_remount(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
Al Virodca33252010-07-25 02:31:46 +0400683 struct super_block *sb, *p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 spin_lock(&sb_lock);
Al Virodca33252010-07-25 02:31:46 +0400686 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400687 if (list_empty(&sb->s_instances))
688 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 sb->s_count++;
690 spin_unlock(&sb_lock);
Al Viro443b94b2009-05-05 23:48:50 -0400691 down_write(&sb->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 if (sb->s_root && sb->s_bdev && !(sb->s_flags & MS_RDONLY)) {
693 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 * What lock protects sb->s_flags??
695 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 do_remount_sb(sb, MS_RDONLY, NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
Al Viro443b94b2009-05-05 23:48:50 -0400698 up_write(&sb->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 spin_lock(&sb_lock);
Al Virodca33252010-07-25 02:31:46 +0400700 if (p)
701 __put_super(p);
702 p = sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
Al Virodca33252010-07-25 02:31:46 +0400704 if (p)
705 __put_super(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 spin_unlock(&sb_lock);
Jens Axboea2a95372009-03-17 09:38:40 +0100707 kfree(work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 printk("Emergency Remount complete\n");
709}
710
711void emergency_remount(void)
712{
Jens Axboea2a95372009-03-17 09:38:40 +0100713 struct work_struct *work;
714
715 work = kmalloc(sizeof(*work), GFP_ATOMIC);
716 if (work) {
717 INIT_WORK(work, do_emergency_remount);
718 schedule_work(work);
719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
722/*
723 * Unnamed block devices are dummy devices used by virtual
724 * filesystems which don't use real block-devices. -- jrs
725 */
726
Alexey Dobriyanad76cbc2008-08-28 06:26:23 +0400727static DEFINE_IDA(unnamed_dev_ida);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728static DEFINE_SPINLOCK(unnamed_dev_lock);/* protects the above */
Al Viroc63e09e2009-06-24 02:05:18 -0400729static int unnamed_dev_start = 0; /* don't bother trying below it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Al Viro0ee5dc62011-07-07 15:44:25 -0400731int get_anon_bdev(dev_t *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
733 int dev;
734 int error;
735
736 retry:
Alexey Dobriyanad76cbc2008-08-28 06:26:23 +0400737 if (ida_pre_get(&unnamed_dev_ida, GFP_ATOMIC) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return -ENOMEM;
739 spin_lock(&unnamed_dev_lock);
Al Viroc63e09e2009-06-24 02:05:18 -0400740 error = ida_get_new_above(&unnamed_dev_ida, unnamed_dev_start, &dev);
Al Virof21f6222009-06-24 03:12:00 -0400741 if (!error)
742 unnamed_dev_start = dev + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 spin_unlock(&unnamed_dev_lock);
744 if (error == -EAGAIN)
745 /* We raced and lost with another CPU. */
746 goto retry;
747 else if (error)
748 return -EAGAIN;
749
750 if ((dev & MAX_ID_MASK) == (1 << MINORBITS)) {
751 spin_lock(&unnamed_dev_lock);
Alexey Dobriyanad76cbc2008-08-28 06:26:23 +0400752 ida_remove(&unnamed_dev_ida, dev);
Al Virof21f6222009-06-24 03:12:00 -0400753 if (unnamed_dev_start > dev)
754 unnamed_dev_start = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 spin_unlock(&unnamed_dev_lock);
756 return -EMFILE;
757 }
Al Viro0ee5dc62011-07-07 15:44:25 -0400758 *p = MKDEV(0, dev & MINORMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return 0;
760}
Al Viro0ee5dc62011-07-07 15:44:25 -0400761EXPORT_SYMBOL(get_anon_bdev);
762
763void free_anon_bdev(dev_t dev)
764{
765 int slot = MINOR(dev);
766 spin_lock(&unnamed_dev_lock);
767 ida_remove(&unnamed_dev_ida, slot);
768 if (slot < unnamed_dev_start)
769 unnamed_dev_start = slot;
770 spin_unlock(&unnamed_dev_lock);
771}
772EXPORT_SYMBOL(free_anon_bdev);
773
774int set_anon_super(struct super_block *s, void *data)
775{
776 int error = get_anon_bdev(&s->s_dev);
777 if (!error)
778 s->s_bdi = &noop_backing_dev_info;
779 return error;
780}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782EXPORT_SYMBOL(set_anon_super);
783
784void kill_anon_super(struct super_block *sb)
785{
Al Viro0ee5dc62011-07-07 15:44:25 -0400786 dev_t dev = sb->s_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 generic_shutdown_super(sb);
Al Viro0ee5dc62011-07-07 15:44:25 -0400788 free_anon_bdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789}
790
791EXPORT_SYMBOL(kill_anon_super);
792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793void kill_litter_super(struct super_block *sb)
794{
795 if (sb->s_root)
796 d_genocide(sb->s_root);
797 kill_anon_super(sb);
798}
799
800EXPORT_SYMBOL(kill_litter_super);
801
Serge E. Hallyn909e6d92009-04-06 19:01:07 -0700802static int ns_test_super(struct super_block *sb, void *data)
803{
804 return sb->s_fs_info == data;
805}
806
807static int ns_set_super(struct super_block *sb, void *data)
808{
809 sb->s_fs_info = data;
810 return set_anon_super(sb, NULL);
811}
812
Al Viroceefda62010-07-26 13:16:50 +0400813struct dentry *mount_ns(struct file_system_type *fs_type, int flags,
814 void *data, int (*fill_super)(struct super_block *, void *, int))
Serge E. Hallyn909e6d92009-04-06 19:01:07 -0700815{
816 struct super_block *sb;
817
818 sb = sget(fs_type, ns_test_super, ns_set_super, data);
819 if (IS_ERR(sb))
Al Viroceefda62010-07-26 13:16:50 +0400820 return ERR_CAST(sb);
Serge E. Hallyn909e6d92009-04-06 19:01:07 -0700821
822 if (!sb->s_root) {
823 int err;
824 sb->s_flags = flags;
825 err = fill_super(sb, data, flags & MS_SILENT ? 1 : 0);
826 if (err) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400827 deactivate_locked_super(sb);
Al Viroceefda62010-07-26 13:16:50 +0400828 return ERR_PTR(err);
Serge E. Hallyn909e6d92009-04-06 19:01:07 -0700829 }
830
831 sb->s_flags |= MS_ACTIVE;
832 }
833
Al Viroceefda62010-07-26 13:16:50 +0400834 return dget(sb->s_root);
Serge E. Hallyn909e6d92009-04-06 19:01:07 -0700835}
836
Al Viroceefda62010-07-26 13:16:50 +0400837EXPORT_SYMBOL(mount_ns);
Serge E. Hallyn909e6d92009-04-06 19:01:07 -0700838
David Howells93614012006-09-30 20:45:40 +0200839#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840static int set_bdev_super(struct super_block *s, void *data)
841{
842 s->s_bdev = data;
843 s->s_dev = s->s_bdev->bd_dev;
Jens Axboe32a88aa2009-09-16 15:02:33 +0200844
845 /*
846 * We set the bdi here to the queue backing, file systems can
847 * overwrite this in ->fill_super()
848 */
849 s->s_bdi = &bdev_get_queue(s->s_bdev)->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 return 0;
851}
852
853static int test_bdev_super(struct super_block *s, void *data)
854{
855 return (void *)s->s_bdev == data;
856}
857
Al Viro152a0832010-07-25 00:46:55 +0400858struct dentry *mount_bdev(struct file_system_type *fs_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 int flags, const char *dev_name, void *data,
Al Viro152a0832010-07-25 00:46:55 +0400860 int (*fill_super)(struct super_block *, void *, int))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
862 struct block_device *bdev;
863 struct super_block *s;
Tejun Heod4d77622010-11-13 11:55:18 +0100864 fmode_t mode = FMODE_READ | FMODE_EXCL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 int error = 0;
866
Al Viro30c40d22008-02-22 19:50:45 -0500867 if (!(flags & MS_RDONLY))
868 mode |= FMODE_WRITE;
869
Tejun Heod4d77622010-11-13 11:55:18 +0100870 bdev = blkdev_get_by_path(dev_name, mode, fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 if (IS_ERR(bdev))
Al Viro152a0832010-07-25 00:46:55 +0400872 return ERR_CAST(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 /*
875 * once the super is inserted into the list by sget, s_umount
876 * will protect the lockfs code from trying to start a snapshot
877 * while we are mounting
878 */
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200879 mutex_lock(&bdev->bd_fsfreeze_mutex);
880 if (bdev->bd_fsfreeze_count > 0) {
881 mutex_unlock(&bdev->bd_fsfreeze_mutex);
882 error = -EBUSY;
883 goto error_bdev;
884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 s = sget(fs_type, test_bdev_super, set_bdev_super, bdev);
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200886 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 if (IS_ERR(s))
David Howells454e2392006-06-23 02:02:57 -0700888 goto error_s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
890 if (s->s_root) {
891 if ((flags ^ s->s_flags) & MS_RDONLY) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400892 deactivate_locked_super(s);
David Howells454e2392006-06-23 02:02:57 -0700893 error = -EBUSY;
894 goto error_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 }
David Howells454e2392006-06-23 02:02:57 -0700896
Tejun Heo4f331f02010-07-20 15:18:07 -0700897 /*
898 * s_umount nests inside bd_mutex during
Tejun Heoe525fd82010-11-13 11:55:17 +0100899 * __invalidate_device(). blkdev_put() acquires
900 * bd_mutex and can't be called under s_umount. Drop
901 * s_umount temporarily. This is safe as we're
902 * holding an active reference.
Tejun Heo4f331f02010-07-20 15:18:07 -0700903 */
904 up_write(&s->s_umount);
Tejun Heod4d77622010-11-13 11:55:18 +0100905 blkdev_put(bdev, mode);
Tejun Heo4f331f02010-07-20 15:18:07 -0700906 down_write(&s->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 } else {
908 char b[BDEVNAME_SIZE];
909
Al Viro9e1f1de2011-06-03 18:24:58 -0400910 s->s_flags = flags | MS_NOSEC;
Al Viro30c40d22008-02-22 19:50:45 -0500911 s->s_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
Pekka Enberge78c9a02006-01-08 01:03:39 -0800913 sb_set_blocksize(s, block_size(bdev));
Theodore Ts'o9b04c992006-03-24 03:15:10 -0800914 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 if (error) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400916 deactivate_locked_super(s);
David Howells454e2392006-06-23 02:02:57 -0700917 goto error;
Greg Kroah-Hartmanfa675762006-02-22 09:39:02 -0800918 }
David Howells454e2392006-06-23 02:02:57 -0700919
920 s->s_flags |= MS_ACTIVE;
Theodore Ts'o87d8fe12009-01-03 09:47:09 -0500921 bdev->bd_super = s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
923
Al Viro152a0832010-07-25 00:46:55 +0400924 return dget(s->s_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
David Howells454e2392006-06-23 02:02:57 -0700926error_s:
927 error = PTR_ERR(s);
928error_bdev:
Tejun Heod4d77622010-11-13 11:55:18 +0100929 blkdev_put(bdev, mode);
David Howells454e2392006-06-23 02:02:57 -0700930error:
Al Viro152a0832010-07-25 00:46:55 +0400931 return ERR_PTR(error);
932}
933EXPORT_SYMBOL(mount_bdev);
934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935void kill_block_super(struct super_block *sb)
936{
937 struct block_device *bdev = sb->s_bdev;
Al Viro30c40d22008-02-22 19:50:45 -0500938 fmode_t mode = sb->s_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
H Hartley Sweetenddbaaf32009-04-29 20:14:57 -0400940 bdev->bd_super = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 generic_shutdown_super(sb);
942 sync_blockdev(bdev);
Tejun Heod4d77622010-11-13 11:55:18 +0100943 WARN_ON_ONCE(!(mode & FMODE_EXCL));
Tejun Heoe525fd82010-11-13 11:55:17 +0100944 blkdev_put(bdev, mode | FMODE_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
946
947EXPORT_SYMBOL(kill_block_super);
David Howells93614012006-09-30 20:45:40 +0200948#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Al Viro3c26ff62010-07-25 11:46:36 +0400950struct dentry *mount_nodev(struct file_system_type *fs_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 int flags, void *data,
Al Viro3c26ff62010-07-25 11:46:36 +0400952 int (*fill_super)(struct super_block *, void *, int))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
954 int error;
955 struct super_block *s = sget(fs_type, NULL, set_anon_super, NULL);
956
957 if (IS_ERR(s))
Al Viro3c26ff62010-07-25 11:46:36 +0400958 return ERR_CAST(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960 s->s_flags = flags;
961
Theodore Ts'o9b04c992006-03-24 03:15:10 -0800962 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 if (error) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400964 deactivate_locked_super(s);
Al Viro3c26ff62010-07-25 11:46:36 +0400965 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
967 s->s_flags |= MS_ACTIVE;
Al Viro3c26ff62010-07-25 11:46:36 +0400968 return dget(s->s_root);
969}
970EXPORT_SYMBOL(mount_nodev);
971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972static int compare_single(struct super_block *s, void *p)
973{
974 return 1;
975}
976
Al Virofc14f2f2010-07-25 01:48:30 +0400977struct dentry *mount_single(struct file_system_type *fs_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 int flags, void *data,
Al Virofc14f2f2010-07-25 01:48:30 +0400979 int (*fill_super)(struct super_block *, void *, int))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980{
981 struct super_block *s;
982 int error;
983
984 s = sget(fs_type, compare_single, set_anon_super, NULL);
985 if (IS_ERR(s))
Al Virofc14f2f2010-07-25 01:48:30 +0400986 return ERR_CAST(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 if (!s->s_root) {
988 s->s_flags = flags;
Theodore Ts'o9b04c992006-03-24 03:15:10 -0800989 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 if (error) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400991 deactivate_locked_super(s);
Al Virofc14f2f2010-07-25 01:48:30 +0400992 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 }
994 s->s_flags |= MS_ACTIVE;
Kay Sievers9329d1b2009-12-18 21:18:15 +0100995 } else {
996 do_remount_sb(s, flags, data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 }
Al Virofc14f2f2010-07-25 01:48:30 +0400998 return dget(s->s_root);
999}
1000EXPORT_SYMBOL(mount_single);
1001
Al Viro9d412a42011-03-17 22:08:28 -04001002struct dentry *
1003mount_fs(struct file_system_type *type, int flags, const char *name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004{
Al Viroc96e41e2010-07-25 00:17:56 +04001005 struct dentry *root;
Al Viro9d412a42011-03-17 22:08:28 -04001006 struct super_block *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 char *secdata = NULL;
Al Viro9d412a42011-03-17 22:08:28 -04001008 int error = -ENOMEM;
Al Viro80893522010-02-05 09:30:46 -05001009
Eric Parise0007522008-03-05 10:31:54 -05001010 if (data && !(type->fs_flags & FS_BINARY_MOUNTDATA)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 secdata = alloc_secdata();
David Howells454e2392006-06-23 02:02:57 -07001012 if (!secdata)
Al Viro9d412a42011-03-17 22:08:28 -04001013 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Eric Parise0007522008-03-05 10:31:54 -05001015 error = security_sb_copy_data(data, secdata);
David Howells454e2392006-06-23 02:02:57 -07001016 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 goto out_free_secdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 }
1019
Al Viro1a102ff2011-03-16 09:07:58 -04001020 root = type->mount(type, flags, name, data);
1021 if (IS_ERR(root)) {
1022 error = PTR_ERR(root);
1023 goto out_free_secdata;
Al Viroc96e41e2010-07-25 00:17:56 +04001024 }
Al Viro9d412a42011-03-17 22:08:28 -04001025 sb = root->d_sb;
1026 BUG_ON(!sb);
1027 WARN_ON(!sb->s_bdi);
Linus Torvalds6c510382011-03-24 10:16:26 -07001028 WARN_ON(sb->s_bdi == &default_backing_dev_info);
Al Viro9d412a42011-03-17 22:08:28 -04001029 sb->s_flags |= MS_BORN;
David Howells454e2392006-06-23 02:02:57 -07001030
Al Viro9d412a42011-03-17 22:08:28 -04001031 error = security_sb_kern_mount(sb, flags, secdata);
Jörn Engel5129a462010-04-25 08:54:42 +02001032 if (error)
1033 goto out_sb;
David Howells454e2392006-06-23 02:02:57 -07001034
Jeff Layton42cb56a2009-09-18 13:05:53 -07001035 /*
1036 * filesystems should never set s_maxbytes larger than MAX_LFS_FILESIZE
1037 * but s_maxbytes was an unsigned long long for many releases. Throw
1038 * this warning for a little while to try and catch filesystems that
Jeff Layton4358b562011-03-29 09:33:31 -04001039 * violate this rule.
Jeff Layton42cb56a2009-09-18 13:05:53 -07001040 */
Al Viro9d412a42011-03-17 22:08:28 -04001041 WARN((sb->s_maxbytes < 0), "%s set sb->s_maxbytes to "
1042 "negative value (%lld)\n", type->name, sb->s_maxbytes);
Jeff Layton42cb56a2009-09-18 13:05:53 -07001043
Al Viro9d412a42011-03-17 22:08:28 -04001044 up_write(&sb->s_umount);
Gerald Schaefer8680e222005-06-21 17:15:16 -07001045 free_secdata(secdata);
Al Viro9d412a42011-03-17 22:08:28 -04001046 return root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047out_sb:
Al Viro9d412a42011-03-17 22:08:28 -04001048 dput(root);
1049 deactivate_locked_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050out_free_secdata:
1051 free_secdata(secdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052out:
David Howells454e2392006-06-23 02:02:57 -07001053 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054}
1055
Josef Bacik18e9e512010-03-23 10:34:56 -04001056/**
Randy Dunlap7000d3c2010-05-24 22:22:34 -07001057 * freeze_super - lock the filesystem and force it into a consistent state
1058 * @sb: the super to lock
Josef Bacik18e9e512010-03-23 10:34:56 -04001059 *
1060 * Syncs the super to make sure the filesystem is consistent and calls the fs's
1061 * freeze_fs. Subsequent calls to this without first thawing the fs will return
1062 * -EBUSY.
1063 */
1064int freeze_super(struct super_block *sb)
1065{
1066 int ret;
1067
1068 atomic_inc(&sb->s_active);
1069 down_write(&sb->s_umount);
1070 if (sb->s_frozen) {
1071 deactivate_locked_super(sb);
1072 return -EBUSY;
1073 }
1074
1075 if (sb->s_flags & MS_RDONLY) {
1076 sb->s_frozen = SB_FREEZE_TRANS;
1077 smp_wmb();
1078 up_write(&sb->s_umount);
1079 return 0;
1080 }
1081
1082 sb->s_frozen = SB_FREEZE_WRITE;
1083 smp_wmb();
1084
1085 sync_filesystem(sb);
1086
1087 sb->s_frozen = SB_FREEZE_TRANS;
1088 smp_wmb();
1089
1090 sync_blockdev(sb->s_bdev);
1091 if (sb->s_op->freeze_fs) {
1092 ret = sb->s_op->freeze_fs(sb);
1093 if (ret) {
1094 printk(KERN_ERR
1095 "VFS:Filesystem freeze failed\n");
1096 sb->s_frozen = SB_UNFROZEN;
1097 deactivate_locked_super(sb);
1098 return ret;
1099 }
1100 }
1101 up_write(&sb->s_umount);
1102 return 0;
1103}
1104EXPORT_SYMBOL(freeze_super);
1105
1106/**
1107 * thaw_super -- unlock filesystem
1108 * @sb: the super to thaw
1109 *
1110 * Unlocks the filesystem and marks it writeable again after freeze_super().
1111 */
1112int thaw_super(struct super_block *sb)
1113{
1114 int error;
1115
1116 down_write(&sb->s_umount);
1117 if (sb->s_frozen == SB_UNFROZEN) {
1118 up_write(&sb->s_umount);
1119 return -EINVAL;
1120 }
1121
1122 if (sb->s_flags & MS_RDONLY)
1123 goto out;
1124
1125 if (sb->s_op->unfreeze_fs) {
1126 error = sb->s_op->unfreeze_fs(sb);
1127 if (error) {
1128 printk(KERN_ERR
1129 "VFS:Filesystem thaw failed\n");
1130 sb->s_frozen = SB_FREEZE_TRANS;
1131 up_write(&sb->s_umount);
1132 return error;
1133 }
1134 }
1135
1136out:
1137 sb->s_frozen = SB_UNFROZEN;
1138 smp_wmb();
1139 wake_up(&sb->s_wait_unfrozen);
1140 deactivate_locked_super(sb);
1141
1142 return 0;
1143}
1144EXPORT_SYMBOL(thaw_super);