get rid of pointless checks for dentry->sb == NULL
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / super.c
CommitLineData
1da177e4
LT
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:
96de0e25 18 * Torbjörn Lindh (torbjorn.lindh@gopta.se), April 14, 1996.
1da177e4
LT
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
1da177e4
LT
23#include <linux/module.h>
24#include <linux/slab.h>
1da177e4
LT
25#include <linux/acct.h>
26#include <linux/blkdev.h>
1da177e4
LT
27#include <linux/mount.h>
28#include <linux/security.h>
1da177e4
LT
29#include <linux/writeback.h> /* for the emergency remount stuff */
30#include <linux/idr.h>
353ab6e9 31#include <linux/mutex.h>
5477d0fa 32#include <linux/backing-dev.h>
ceb5bdc2 33#include <linux/rculist_bl.h>
c515e1fd 34#include <linux/cleancache.h>
6d59e7f5 35#include "internal.h"
1da177e4
LT
36
37
1da177e4
LT
38LIST_HEAD(super_blocks);
39DEFINE_SPINLOCK(sb_lock);
40
41/**
42 * alloc_super - create new superblock
fe2bbc48 43 * @type: filesystem type superblock should belong to
1da177e4
LT
44 *
45 * Allocates and initializes a new &struct super_block. alloc_super()
46 * returns a pointer new superblock or %NULL if allocation had failed.
47 */
cf516249 48static struct super_block *alloc_super(struct file_system_type *type)
1da177e4 49{
11b0b5ab 50 struct super_block *s = kzalloc(sizeof(struct super_block), GFP_USER);
b87221de 51 static const struct super_operations default_op;
1da177e4
LT
52
53 if (s) {
1da177e4
LT
54 if (security_sb_alloc(s)) {
55 kfree(s);
56 s = NULL;
57 goto out;
58 }
6416ccb7
NP
59#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
1da177e4 73 INIT_LIST_HEAD(&s->s_files);
6416ccb7 74#endif
95f28604 75 s->s_bdi = &default_backing_dev_info;
1da177e4 76 INIT_LIST_HEAD(&s->s_instances);
ceb5bdc2 77 INIT_HLIST_BL_HEAD(&s->s_anon);
1da177e4 78 INIT_LIST_HEAD(&s->s_inodes);
da3bbdd4 79 INIT_LIST_HEAD(&s->s_dentry_lru);
1da177e4 80 init_rwsem(&s->s_umount);
7892f2f4 81 mutex_init(&s->s_lock);
897c6ff9 82 lockdep_set_class(&s->s_umount, &type->s_umount_key);
cf516249
IM
83 /*
84 * The locking rules for s_lock are up to the
85 * filesystem. For example ext3fs has different
86 * lock ordering than usbfs:
87 */
88 lockdep_set_class(&s->s_lock, &type->s_lock_key);
ada723dc
PZ
89 /*
90 * sget() can have s_umount recursion.
91 *
92 * When it cannot find a suitable sb, it allocates a new
93 * one (this one), and tries again to find a suitable old
94 * one.
95 *
96 * In case that succeeds, it will acquire the s_umount
97 * lock of the old one. Since these are clearly distrinct
98 * locks, and this object isn't exposed yet, there's no
99 * risk of deadlocks.
100 *
101 * Annotate this by putting this lock in a different
102 * subclass.
103 */
104 down_write_nested(&s->s_umount, SINGLE_DEPTH_NESTING);
b20bd1a5 105 s->s_count = 1;
1da177e4 106 atomic_set(&s->s_active, 1);
a11f3a05 107 mutex_init(&s->s_vfs_rename_mutex);
51ee049e 108 lockdep_set_class(&s->s_vfs_rename_mutex, &type->s_vfs_rename_key);
d3be915f
IM
109 mutex_init(&s->s_dquot.dqio_mutex);
110 mutex_init(&s->s_dquot.dqonoff_mutex);
1da177e4
LT
111 init_rwsem(&s->s_dquot.dqptr_sem);
112 init_waitqueue_head(&s->s_wait_unfrozen);
113 s->s_maxbytes = MAX_NON_LFS;
1da177e4
LT
114 s->s_op = &default_op;
115 s->s_time_gran = 1000000000;
c515e1fd 116 s->cleancache_poolid = -1;
1da177e4
LT
117 }
118out:
119 return s;
120}
121
122/**
123 * destroy_super - frees a superblock
124 * @s: superblock to free
125 *
126 * Frees a superblock.
127 */
128static inline void destroy_super(struct super_block *s)
129{
6416ccb7
NP
130#ifdef CONFIG_SMP
131 free_percpu(s->s_files);
132#endif
1da177e4 133 security_sb_free(s);
79c0b2df 134 kfree(s->s_subtype);
b3b304a2 135 kfree(s->s_options);
1da177e4
LT
136 kfree(s);
137}
138
139/* Superblock refcounting */
140
141/*
35cf7ba0 142 * Drop a superblock's refcount. The caller must hold sb_lock.
1da177e4 143 */
35cf7ba0 144void __put_super(struct super_block *sb)
1da177e4 145{
1da177e4 146 if (!--sb->s_count) {
551de6f3 147 list_del_init(&sb->s_list);
1da177e4 148 destroy_super(sb);
1da177e4 149 }
1da177e4
LT
150}
151
152/**
153 * put_super - drop a temporary reference to superblock
154 * @sb: superblock in question
155 *
156 * Drops a temporary reference, frees superblock if there's no
157 * references left.
158 */
03ba3782 159void put_super(struct super_block *sb)
1da177e4
LT
160{
161 spin_lock(&sb_lock);
162 __put_super(sb);
163 spin_unlock(&sb_lock);
164}
165
166
167/**
1712ac8f 168 * deactivate_locked_super - drop an active reference to superblock
1da177e4
LT
169 * @s: superblock to deactivate
170 *
1712ac8f
AV
171 * Drops an active reference to superblock, converting it into a temprory
172 * one if there is no other active references left. In that case we
1da177e4
LT
173 * tell fs driver to shut it down and drop the temporary reference we
174 * had just acquired.
1712ac8f
AV
175 *
176 * Caller holds exclusive lock on superblock; that lock is released.
1da177e4 177 */
1712ac8f 178void deactivate_locked_super(struct super_block *s)
1da177e4
LT
179{
180 struct file_system_type *fs = s->s_type;
b20bd1a5 181 if (atomic_dec_and_test(&s->s_active)) {
c515e1fd 182 cleancache_flush_fs(s);
1da177e4 183 fs->kill_sb(s);
d863b50a
BH
184 /*
185 * We need to call rcu_barrier so all the delayed rcu free
186 * inodes are flushed before we release the fs module.
187 */
188 rcu_barrier();
1da177e4
LT
189 put_filesystem(fs);
190 put_super(s);
1712ac8f
AV
191 } else {
192 up_write(&s->s_umount);
1da177e4
LT
193 }
194}
195
1712ac8f 196EXPORT_SYMBOL(deactivate_locked_super);
1da177e4 197
74dbbdd7 198/**
1712ac8f 199 * deactivate_super - drop an active reference to superblock
74dbbdd7
AV
200 * @s: superblock to deactivate
201 *
1712ac8f
AV
202 * Variant of deactivate_locked_super(), except that superblock is *not*
203 * locked by caller. If we are going to drop the final active reference,
204 * lock will be acquired prior to that.
74dbbdd7 205 */
1712ac8f 206void deactivate_super(struct super_block *s)
74dbbdd7 207{
1712ac8f
AV
208 if (!atomic_add_unless(&s->s_active, -1, 1)) {
209 down_write(&s->s_umount);
210 deactivate_locked_super(s);
74dbbdd7
AV
211 }
212}
213
1712ac8f 214EXPORT_SYMBOL(deactivate_super);
74dbbdd7 215
1da177e4
LT
216/**
217 * grab_super - acquire an active reference
218 * @s: reference we are trying to make active
219 *
220 * Tries to acquire an active reference. grab_super() is used when we
221 * had just found a superblock in super_blocks or fs_type->fs_supers
222 * and want to turn it into a full-blown active reference. grab_super()
223 * is called with sb_lock held and drops it. Returns 1 in case of
224 * success, 0 if we had failed (superblock contents was already dead or
225 * dying when grab_super() had been called).
226 */
9c4dbee7 227static int grab_super(struct super_block *s) __releases(sb_lock)
1da177e4 228{
b20bd1a5
AV
229 if (atomic_inc_not_zero(&s->s_active)) {
230 spin_unlock(&sb_lock);
b20bd1a5
AV
231 return 1;
232 }
233 /* it's going away */
1da177e4
LT
234 s->s_count++;
235 spin_unlock(&sb_lock);
1712ac8f 236 /* wait for it to die */
1da177e4 237 down_write(&s->s_umount);
1da177e4
LT
238 up_write(&s->s_umount);
239 put_super(s);
1da177e4
LT
240 return 0;
241}
242
914e2637
AV
243/*
244 * Superblock locking. We really ought to get rid of these two.
245 */
246void lock_super(struct super_block * sb)
247{
248 get_fs_excl();
249 mutex_lock(&sb->s_lock);
250}
251
252void unlock_super(struct super_block * sb)
253{
254 put_fs_excl();
255 mutex_unlock(&sb->s_lock);
256}
257
258EXPORT_SYMBOL(lock_super);
259EXPORT_SYMBOL(unlock_super);
260
1da177e4
LT
261/**
262 * generic_shutdown_super - common helper for ->kill_sb()
263 * @sb: superblock to kill
264 *
265 * generic_shutdown_super() does all fs-independent work on superblock
266 * shutdown. Typical ->kill_sb() should pick all fs-specific objects
267 * that need destruction out of superblock, call generic_shutdown_super()
268 * and release aforementioned objects. Note: dentries and inodes _are_
269 * taken care of and do not need specific handling.
c636ebdb
DH
270 *
271 * Upon calling this function, the filesystem may no longer alter or
272 * rearrange the set of dentries belonging to this super_block, nor may it
273 * change the attachments of dentries to inodes.
1da177e4
LT
274 */
275void generic_shutdown_super(struct super_block *sb)
276{
ee9b6d61 277 const struct super_operations *sop = sb->s_op;
1da177e4 278
efaee192 279
c636ebdb
DH
280 if (sb->s_root) {
281 shrink_dcache_for_umount(sb);
60b0680f 282 sync_filesystem(sb);
a9e220f8 283 get_fs_excl();
1da177e4 284 sb->s_flags &= ~MS_ACTIVE;
efaee192 285
63997e98
AV
286 fsnotify_unmount_inodes(&sb->s_inodes);
287
288 evict_inodes(sb);
1da177e4 289
1da177e4
LT
290 if (sop->put_super)
291 sop->put_super(sb);
292
63997e98 293 if (!list_empty(&sb->s_inodes)) {
7b4fe29e
DJ
294 printk("VFS: Busy inodes after unmount of %s. "
295 "Self-destruct in 5 seconds. Have a nice day...\n",
296 sb->s_id);
1da177e4 297 }
a9e220f8 298 put_fs_excl();
1da177e4
LT
299 }
300 spin_lock(&sb_lock);
301 /* should be initialized for __put_super_and_need_restart() */
551de6f3 302 list_del_init(&sb->s_instances);
1da177e4
LT
303 spin_unlock(&sb_lock);
304 up_write(&sb->s_umount);
305}
306
307EXPORT_SYMBOL(generic_shutdown_super);
308
309/**
310 * sget - find or create a superblock
311 * @type: filesystem type superblock should belong to
312 * @test: comparison callback
313 * @set: setup callback
314 * @data: argument to each of them
315 */
316struct super_block *sget(struct file_system_type *type,
317 int (*test)(struct super_block *,void *),
318 int (*set)(struct super_block *,void *),
319 void *data)
320{
321 struct super_block *s = NULL;
d4730127 322 struct super_block *old;
1da177e4
LT
323 int err;
324
325retry:
326 spin_lock(&sb_lock);
d4730127
MK
327 if (test) {
328 list_for_each_entry(old, &type->fs_supers, s_instances) {
329 if (!test(old, data))
330 continue;
331 if (!grab_super(old))
332 goto retry;
a3cfbb53
LZ
333 if (s) {
334 up_write(&s->s_umount);
d4730127 335 destroy_super(s);
7a4dec53 336 s = NULL;
a3cfbb53 337 }
d3f21473 338 down_write(&old->s_umount);
7a4dec53
AV
339 if (unlikely(!(old->s_flags & MS_BORN))) {
340 deactivate_locked_super(old);
341 goto retry;
342 }
d4730127
MK
343 return old;
344 }
1da177e4
LT
345 }
346 if (!s) {
347 spin_unlock(&sb_lock);
cf516249 348 s = alloc_super(type);
1da177e4
LT
349 if (!s)
350 return ERR_PTR(-ENOMEM);
351 goto retry;
352 }
353
354 err = set(s, data);
355 if (err) {
356 spin_unlock(&sb_lock);
a3cfbb53 357 up_write(&s->s_umount);
1da177e4
LT
358 destroy_super(s);
359 return ERR_PTR(err);
360 }
361 s->s_type = type;
362 strlcpy(s->s_id, type->name, sizeof(s->s_id));
363 list_add_tail(&s->s_list, &super_blocks);
364 list_add(&s->s_instances, &type->fs_supers);
365 spin_unlock(&sb_lock);
366 get_filesystem(type);
367 return s;
368}
369
370EXPORT_SYMBOL(sget);
371
372void drop_super(struct super_block *sb)
373{
374 up_read(&sb->s_umount);
375 put_super(sb);
376}
377
378EXPORT_SYMBOL(drop_super);
379
e5004753
CH
380/**
381 * sync_supers - helper for periodic superblock writeback
382 *
383 * Call the write_super method if present on all dirty superblocks in
384 * the system. This is for the periodic writeback used by most older
385 * filesystems. For data integrity superblock writeback use
386 * sync_filesystems() instead.
387 *
1da177e4
LT
388 * Note: check the dirty flag before waiting, so we don't
389 * hold up the sync while mounting a device. (The newly
390 * mounted device won't need syncing.)
391 */
392void sync_supers(void)
393{
dca33252 394 struct super_block *sb, *p = NULL;
618f0636 395
1da177e4 396 spin_lock(&sb_lock);
dca33252 397 list_for_each_entry(sb, &super_blocks, s_list) {
551de6f3
AV
398 if (list_empty(&sb->s_instances))
399 continue;
e5004753 400 if (sb->s_op->write_super && sb->s_dirt) {
1da177e4
LT
401 sb->s_count++;
402 spin_unlock(&sb_lock);
e5004753 403
1da177e4 404 down_read(&sb->s_umount);
e5004753
CH
405 if (sb->s_root && sb->s_dirt)
406 sb->s_op->write_super(sb);
618f0636 407 up_read(&sb->s_umount);
e5004753 408
618f0636 409 spin_lock(&sb_lock);
dca33252
AV
410 if (p)
411 __put_super(p);
412 p = sb;
618f0636
KK
413 }
414 }
dca33252
AV
415 if (p)
416 __put_super(p);
1da177e4
LT
417 spin_unlock(&sb_lock);
418}
419
01a05b33
AV
420/**
421 * iterate_supers - call function for all active superblocks
422 * @f: function to call
423 * @arg: argument to pass to it
424 *
425 * Scans the superblock list and calls given function, passing it
426 * locked superblock and given argument.
427 */
428void iterate_supers(void (*f)(struct super_block *, void *), void *arg)
429{
dca33252 430 struct super_block *sb, *p = NULL;
01a05b33
AV
431
432 spin_lock(&sb_lock);
dca33252 433 list_for_each_entry(sb, &super_blocks, s_list) {
01a05b33
AV
434 if (list_empty(&sb->s_instances))
435 continue;
436 sb->s_count++;
437 spin_unlock(&sb_lock);
438
439 down_read(&sb->s_umount);
440 if (sb->s_root)
441 f(sb, arg);
442 up_read(&sb->s_umount);
443
444 spin_lock(&sb_lock);
dca33252
AV
445 if (p)
446 __put_super(p);
447 p = sb;
01a05b33 448 }
dca33252
AV
449 if (p)
450 __put_super(p);
01a05b33
AV
451 spin_unlock(&sb_lock);
452}
453
43e15cdb
AV
454/**
455 * iterate_supers_type - call function for superblocks of given type
456 * @type: fs type
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_type(struct file_system_type *type,
464 void (*f)(struct super_block *, void *), void *arg)
465{
466 struct super_block *sb, *p = NULL;
467
468 spin_lock(&sb_lock);
469 list_for_each_entry(sb, &type->fs_supers, s_instances) {
470 sb->s_count++;
471 spin_unlock(&sb_lock);
472
473 down_read(&sb->s_umount);
474 if (sb->s_root)
475 f(sb, arg);
476 up_read(&sb->s_umount);
477
478 spin_lock(&sb_lock);
479 if (p)
480 __put_super(p);
481 p = sb;
482 }
483 if (p)
484 __put_super(p);
485 spin_unlock(&sb_lock);
486}
487
488EXPORT_SYMBOL(iterate_supers_type);
489
1da177e4
LT
490/**
491 * get_super - get the superblock of a device
492 * @bdev: device to get the superblock for
493 *
494 * Scans the superblock list and finds the superblock of the file system
495 * mounted on the device given. %NULL is returned if no match is found.
496 */
497
df40c01a 498struct super_block *get_super(struct block_device *bdev)
1da177e4 499{
618f0636
KK
500 struct super_block *sb;
501
1da177e4
LT
502 if (!bdev)
503 return NULL;
618f0636 504
1da177e4 505 spin_lock(&sb_lock);
618f0636
KK
506rescan:
507 list_for_each_entry(sb, &super_blocks, s_list) {
551de6f3
AV
508 if (list_empty(&sb->s_instances))
509 continue;
618f0636
KK
510 if (sb->s_bdev == bdev) {
511 sb->s_count++;
1da177e4 512 spin_unlock(&sb_lock);
618f0636 513 down_read(&sb->s_umount);
df40c01a 514 /* still alive? */
618f0636
KK
515 if (sb->s_root)
516 return sb;
517 up_read(&sb->s_umount);
df40c01a 518 /* nope, got unmounted */
618f0636 519 spin_lock(&sb_lock);
df40c01a
AV
520 __put_super(sb);
521 goto rescan;
1da177e4
LT
522 }
523 }
524 spin_unlock(&sb_lock);
525 return NULL;
526}
527
528EXPORT_SYMBOL(get_super);
4504230a
CH
529
530/**
531 * get_active_super - get an active reference to the superblock of a device
532 * @bdev: device to get the superblock for
533 *
534 * Scans the superblock list and finds the superblock of the file system
535 * mounted on the device given. Returns the superblock with an active
d3f21473 536 * reference or %NULL if none was found.
4504230a
CH
537 */
538struct super_block *get_active_super(struct block_device *bdev)
539{
540 struct super_block *sb;
541
542 if (!bdev)
543 return NULL;
544
1494583d 545restart:
4504230a
CH
546 spin_lock(&sb_lock);
547 list_for_each_entry(sb, &super_blocks, s_list) {
551de6f3
AV
548 if (list_empty(&sb->s_instances))
549 continue;
1494583d
AV
550 if (sb->s_bdev == bdev) {
551 if (grab_super(sb)) /* drops sb_lock */
552 return sb;
553 else
554 goto restart;
555 }
4504230a
CH
556 }
557 spin_unlock(&sb_lock);
558 return NULL;
559}
1da177e4 560
df40c01a 561struct super_block *user_get_super(dev_t dev)
1da177e4 562{
618f0636 563 struct super_block *sb;
1da177e4 564
1da177e4 565 spin_lock(&sb_lock);
618f0636
KK
566rescan:
567 list_for_each_entry(sb, &super_blocks, s_list) {
551de6f3
AV
568 if (list_empty(&sb->s_instances))
569 continue;
618f0636
KK
570 if (sb->s_dev == dev) {
571 sb->s_count++;
1da177e4 572 spin_unlock(&sb_lock);
618f0636 573 down_read(&sb->s_umount);
df40c01a 574 /* still alive? */
618f0636
KK
575 if (sb->s_root)
576 return sb;
577 up_read(&sb->s_umount);
df40c01a 578 /* nope, got unmounted */
618f0636 579 spin_lock(&sb_lock);
df40c01a
AV
580 __put_super(sb);
581 goto rescan;
1da177e4
LT
582 }
583 }
584 spin_unlock(&sb_lock);
585 return NULL;
586}
587
1da177e4
LT
588/**
589 * do_remount_sb - asks filesystem to change mount options.
590 * @sb: superblock in question
591 * @flags: numeric part of options
592 * @data: the rest of options
593 * @force: whether or not to force the change
594 *
595 * Alters the mount options of a mounted file system.
596 */
597int do_remount_sb(struct super_block *sb, int flags, void *data, int force)
598{
599 int retval;
c79d967d 600 int remount_ro;
4504230a
CH
601
602 if (sb->s_frozen != SB_UNFROZEN)
603 return -EBUSY;
604
9361401e 605#ifdef CONFIG_BLOCK
1da177e4
LT
606 if (!(flags & MS_RDONLY) && bdev_read_only(sb->s_bdev))
607 return -EACCES;
9361401e 608#endif
4504230a 609
1da177e4
LT
610 if (flags & MS_RDONLY)
611 acct_auto_close(sb);
612 shrink_dcache_sb(sb);
60b0680f 613 sync_filesystem(sb);
1da177e4 614
d208bbdd 615 remount_ro = (flags & MS_RDONLY) && !(sb->s_flags & MS_RDONLY);
d208bbdd 616
1da177e4
LT
617 /* If we are remounting RDONLY and current sb is read/write,
618 make sure there are no rw files opened */
d208bbdd 619 if (remount_ro) {
1da177e4
LT
620 if (force)
621 mark_files_ro(sb);
b0895513 622 else if (!fs_may_remount_ro(sb))
1da177e4
LT
623 return -EBUSY;
624 }
625
626 if (sb->s_op->remount_fs) {
1da177e4 627 retval = sb->s_op->remount_fs(sb, &flags, data);
b0895513 628 if (retval)
1da177e4
LT
629 return retval;
630 }
631 sb->s_flags = (sb->s_flags & ~MS_RMT_MASK) | (flags & MS_RMT_MASK);
c79d967d 632
d208bbdd
NP
633 /*
634 * Some filesystems modify their metadata via some other path than the
635 * bdev buffer cache (eg. use a private mapping, or directories in
636 * pagecache, etc). Also file data modifications go via their own
637 * mappings. So If we try to mount readonly then copy the filesystem
638 * from bdev, we could get stale data, so invalidate it to give a best
639 * effort at coherency.
640 */
641 if (remount_ro && sb->s_bdev)
642 invalidate_bdev(sb->s_bdev);
1da177e4
LT
643 return 0;
644}
645
a2a9537a 646static void do_emergency_remount(struct work_struct *work)
1da177e4 647{
dca33252 648 struct super_block *sb, *p = NULL;
1da177e4
LT
649
650 spin_lock(&sb_lock);
dca33252 651 list_for_each_entry(sb, &super_blocks, s_list) {
551de6f3
AV
652 if (list_empty(&sb->s_instances))
653 continue;
1da177e4
LT
654 sb->s_count++;
655 spin_unlock(&sb_lock);
443b94ba 656 down_write(&sb->s_umount);
1da177e4
LT
657 if (sb->s_root && sb->s_bdev && !(sb->s_flags & MS_RDONLY)) {
658 /*
1da177e4
LT
659 * What lock protects sb->s_flags??
660 */
1da177e4 661 do_remount_sb(sb, MS_RDONLY, NULL, 1);
1da177e4 662 }
443b94ba 663 up_write(&sb->s_umount);
1da177e4 664 spin_lock(&sb_lock);
dca33252
AV
665 if (p)
666 __put_super(p);
667 p = sb;
1da177e4 668 }
dca33252
AV
669 if (p)
670 __put_super(p);
1da177e4 671 spin_unlock(&sb_lock);
a2a9537a 672 kfree(work);
1da177e4
LT
673 printk("Emergency Remount complete\n");
674}
675
676void emergency_remount(void)
677{
a2a9537a
JA
678 struct work_struct *work;
679
680 work = kmalloc(sizeof(*work), GFP_ATOMIC);
681 if (work) {
682 INIT_WORK(work, do_emergency_remount);
683 schedule_work(work);
684 }
1da177e4
LT
685}
686
687/*
688 * Unnamed block devices are dummy devices used by virtual
689 * filesystems which don't use real block-devices. -- jrs
690 */
691
ad76cbc6 692static DEFINE_IDA(unnamed_dev_ida);
1da177e4 693static DEFINE_SPINLOCK(unnamed_dev_lock);/* protects the above */
c63e09ec 694static int unnamed_dev_start = 0; /* don't bother trying below it */
1da177e4
LT
695
696int set_anon_super(struct super_block *s, void *data)
697{
698 int dev;
699 int error;
700
701 retry:
ad76cbc6 702 if (ida_pre_get(&unnamed_dev_ida, GFP_ATOMIC) == 0)
1da177e4
LT
703 return -ENOMEM;
704 spin_lock(&unnamed_dev_lock);
c63e09ec 705 error = ida_get_new_above(&unnamed_dev_ida, unnamed_dev_start, &dev);
f21f6220
AV
706 if (!error)
707 unnamed_dev_start = dev + 1;
1da177e4
LT
708 spin_unlock(&unnamed_dev_lock);
709 if (error == -EAGAIN)
710 /* We raced and lost with another CPU. */
711 goto retry;
712 else if (error)
713 return -EAGAIN;
714
715 if ((dev & MAX_ID_MASK) == (1 << MINORBITS)) {
716 spin_lock(&unnamed_dev_lock);
ad76cbc6 717 ida_remove(&unnamed_dev_ida, dev);
f21f6220
AV
718 if (unnamed_dev_start > dev)
719 unnamed_dev_start = dev;
1da177e4
LT
720 spin_unlock(&unnamed_dev_lock);
721 return -EMFILE;
722 }
723 s->s_dev = MKDEV(0, dev & MINORMASK);
5129a469 724 s->s_bdi = &noop_backing_dev_info;
1da177e4
LT
725 return 0;
726}
727
728EXPORT_SYMBOL(set_anon_super);
729
730void kill_anon_super(struct super_block *sb)
731{
732 int slot = MINOR(sb->s_dev);
733
734 generic_shutdown_super(sb);
735 spin_lock(&unnamed_dev_lock);
ad76cbc6 736 ida_remove(&unnamed_dev_ida, slot);
c63e09ec
AV
737 if (slot < unnamed_dev_start)
738 unnamed_dev_start = slot;
1da177e4
LT
739 spin_unlock(&unnamed_dev_lock);
740}
741
742EXPORT_SYMBOL(kill_anon_super);
743
1da177e4
LT
744void kill_litter_super(struct super_block *sb)
745{
746 if (sb->s_root)
747 d_genocide(sb->s_root);
748 kill_anon_super(sb);
749}
750
751EXPORT_SYMBOL(kill_litter_super);
752
909e6d94
SH
753static int ns_test_super(struct super_block *sb, void *data)
754{
755 return sb->s_fs_info == data;
756}
757
758static int ns_set_super(struct super_block *sb, void *data)
759{
760 sb->s_fs_info = data;
761 return set_anon_super(sb, NULL);
762}
763
ceefda69
AV
764struct dentry *mount_ns(struct file_system_type *fs_type, int flags,
765 void *data, int (*fill_super)(struct super_block *, void *, int))
909e6d94
SH
766{
767 struct super_block *sb;
768
769 sb = sget(fs_type, ns_test_super, ns_set_super, data);
770 if (IS_ERR(sb))
ceefda69 771 return ERR_CAST(sb);
909e6d94
SH
772
773 if (!sb->s_root) {
774 int err;
775 sb->s_flags = flags;
776 err = fill_super(sb, data, flags & MS_SILENT ? 1 : 0);
777 if (err) {
74dbbdd7 778 deactivate_locked_super(sb);
ceefda69 779 return ERR_PTR(err);
909e6d94
SH
780 }
781
782 sb->s_flags |= MS_ACTIVE;
783 }
784
ceefda69 785 return dget(sb->s_root);
909e6d94
SH
786}
787
ceefda69 788EXPORT_SYMBOL(mount_ns);
909e6d94 789
9361401e 790#ifdef CONFIG_BLOCK
1da177e4
LT
791static int set_bdev_super(struct super_block *s, void *data)
792{
793 s->s_bdev = data;
794 s->s_dev = s->s_bdev->bd_dev;
32a88aa1
JA
795
796 /*
797 * We set the bdi here to the queue backing, file systems can
798 * overwrite this in ->fill_super()
799 */
800 s->s_bdi = &bdev_get_queue(s->s_bdev)->backing_dev_info;
1da177e4
LT
801 return 0;
802}
803
804static int test_bdev_super(struct super_block *s, void *data)
805{
806 return (void *)s->s_bdev == data;
807}
808
152a0836 809struct dentry *mount_bdev(struct file_system_type *fs_type,
1da177e4 810 int flags, const char *dev_name, void *data,
152a0836 811 int (*fill_super)(struct super_block *, void *, int))
1da177e4
LT
812{
813 struct block_device *bdev;
814 struct super_block *s;
d4d77629 815 fmode_t mode = FMODE_READ | FMODE_EXCL;
1da177e4
LT
816 int error = 0;
817
30c40d2c
AV
818 if (!(flags & MS_RDONLY))
819 mode |= FMODE_WRITE;
820
d4d77629 821 bdev = blkdev_get_by_path(dev_name, mode, fs_type);
1da177e4 822 if (IS_ERR(bdev))
152a0836 823 return ERR_CAST(bdev);
1da177e4
LT
824
825 /*
826 * once the super is inserted into the list by sget, s_umount
827 * will protect the lockfs code from trying to start a snapshot
828 * while we are mounting
829 */
4fadd7bb
CH
830 mutex_lock(&bdev->bd_fsfreeze_mutex);
831 if (bdev->bd_fsfreeze_count > 0) {
832 mutex_unlock(&bdev->bd_fsfreeze_mutex);
833 error = -EBUSY;
834 goto error_bdev;
835 }
1da177e4 836 s = sget(fs_type, test_bdev_super, set_bdev_super, bdev);
4fadd7bb 837 mutex_unlock(&bdev->bd_fsfreeze_mutex);
1da177e4 838 if (IS_ERR(s))
454e2398 839 goto error_s;
1da177e4
LT
840
841 if (s->s_root) {
842 if ((flags ^ s->s_flags) & MS_RDONLY) {
74dbbdd7 843 deactivate_locked_super(s);
454e2398
DH
844 error = -EBUSY;
845 goto error_bdev;
1da177e4 846 }
454e2398 847
4f331f01
TH
848 /*
849 * s_umount nests inside bd_mutex during
e525fd89
TH
850 * __invalidate_device(). blkdev_put() acquires
851 * bd_mutex and can't be called under s_umount. Drop
852 * s_umount temporarily. This is safe as we're
853 * holding an active reference.
4f331f01
TH
854 */
855 up_write(&s->s_umount);
d4d77629 856 blkdev_put(bdev, mode);
4f331f01 857 down_write(&s->s_umount);
1da177e4
LT
858 } else {
859 char b[BDEVNAME_SIZE];
860
9e1f1de0 861 s->s_flags = flags | MS_NOSEC;
30c40d2c 862 s->s_mode = mode;
1da177e4 863 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
e78c9a00 864 sb_set_blocksize(s, block_size(bdev));
9b04c997 865 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
1da177e4 866 if (error) {
74dbbdd7 867 deactivate_locked_super(s);
454e2398 868 goto error;
fa675765 869 }
454e2398
DH
870
871 s->s_flags |= MS_ACTIVE;
87d8fe1e 872 bdev->bd_super = s;
1da177e4
LT
873 }
874
152a0836 875 return dget(s->s_root);
1da177e4 876
454e2398
DH
877error_s:
878 error = PTR_ERR(s);
879error_bdev:
d4d77629 880 blkdev_put(bdev, mode);
454e2398 881error:
152a0836
AV
882 return ERR_PTR(error);
883}
884EXPORT_SYMBOL(mount_bdev);
885
1da177e4
LT
886void kill_block_super(struct super_block *sb)
887{
888 struct block_device *bdev = sb->s_bdev;
30c40d2c 889 fmode_t mode = sb->s_mode;
1da177e4 890
ddbaaf30 891 bdev->bd_super = NULL;
1da177e4
LT
892 generic_shutdown_super(sb);
893 sync_blockdev(bdev);
d4d77629 894 WARN_ON_ONCE(!(mode & FMODE_EXCL));
e525fd89 895 blkdev_put(bdev, mode | FMODE_EXCL);
1da177e4
LT
896}
897
898EXPORT_SYMBOL(kill_block_super);
9361401e 899#endif
1da177e4 900
3c26ff6e 901struct dentry *mount_nodev(struct file_system_type *fs_type,
1da177e4 902 int flags, void *data,
3c26ff6e 903 int (*fill_super)(struct super_block *, void *, int))
1da177e4
LT
904{
905 int error;
906 struct super_block *s = sget(fs_type, NULL, set_anon_super, NULL);
907
908 if (IS_ERR(s))
3c26ff6e 909 return ERR_CAST(s);
1da177e4
LT
910
911 s->s_flags = flags;
912
9b04c997 913 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
1da177e4 914 if (error) {
74dbbdd7 915 deactivate_locked_super(s);
3c26ff6e 916 return ERR_PTR(error);
1da177e4
LT
917 }
918 s->s_flags |= MS_ACTIVE;
3c26ff6e 919 return dget(s->s_root);
1da177e4 920}
3c26ff6e
AV
921EXPORT_SYMBOL(mount_nodev);
922
1da177e4
LT
923static int compare_single(struct super_block *s, void *p)
924{
925 return 1;
926}
927
fc14f2fe 928struct dentry *mount_single(struct file_system_type *fs_type,
1da177e4 929 int flags, void *data,
fc14f2fe 930 int (*fill_super)(struct super_block *, void *, int))
1da177e4
LT
931{
932 struct super_block *s;
933 int error;
934
935 s = sget(fs_type, compare_single, set_anon_super, NULL);
936 if (IS_ERR(s))
fc14f2fe 937 return ERR_CAST(s);
1da177e4
LT
938 if (!s->s_root) {
939 s->s_flags = flags;
9b04c997 940 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
1da177e4 941 if (error) {
74dbbdd7 942 deactivate_locked_super(s);
fc14f2fe 943 return ERR_PTR(error);
1da177e4
LT
944 }
945 s->s_flags |= MS_ACTIVE;
9329d1be
KS
946 } else {
947 do_remount_sb(s, flags, data, 0);
1da177e4 948 }
fc14f2fe
AV
949 return dget(s->s_root);
950}
951EXPORT_SYMBOL(mount_single);
952
9d412a43
AV
953struct dentry *
954mount_fs(struct file_system_type *type, int flags, const char *name, void *data)
1da177e4 955{
c96e41e9 956 struct dentry *root;
9d412a43 957 struct super_block *sb;
1da177e4 958 char *secdata = NULL;
9d412a43 959 int error = -ENOMEM;
8089352a 960
e0007529 961 if (data && !(type->fs_flags & FS_BINARY_MOUNTDATA)) {
1da177e4 962 secdata = alloc_secdata();
454e2398 963 if (!secdata)
9d412a43 964 goto out;
1da177e4 965
e0007529 966 error = security_sb_copy_data(data, secdata);
454e2398 967 if (error)
1da177e4 968 goto out_free_secdata;
1da177e4
LT
969 }
970
1a102ff9
AV
971 root = type->mount(type, flags, name, data);
972 if (IS_ERR(root)) {
973 error = PTR_ERR(root);
974 goto out_free_secdata;
c96e41e9 975 }
9d412a43
AV
976 sb = root->d_sb;
977 BUG_ON(!sb);
978 WARN_ON(!sb->s_bdi);
6c510389 979 WARN_ON(sb->s_bdi == &default_backing_dev_info);
9d412a43 980 sb->s_flags |= MS_BORN;
454e2398 981
9d412a43 982 error = security_sb_kern_mount(sb, flags, secdata);
5129a469
JE
983 if (error)
984 goto out_sb;
454e2398 985
42cb56ae
JL
986 /*
987 * filesystems should never set s_maxbytes larger than MAX_LFS_FILESIZE
988 * but s_maxbytes was an unsigned long long for many releases. Throw
989 * this warning for a little while to try and catch filesystems that
4358b567 990 * violate this rule.
42cb56ae 991 */
9d412a43
AV
992 WARN((sb->s_maxbytes < 0), "%s set sb->s_maxbytes to "
993 "negative value (%lld)\n", type->name, sb->s_maxbytes);
42cb56ae 994
9d412a43 995 up_write(&sb->s_umount);
8680e22f 996 free_secdata(secdata);
9d412a43 997 return root;
1da177e4 998out_sb:
9d412a43
AV
999 dput(root);
1000 deactivate_locked_super(sb);
1da177e4
LT
1001out_free_secdata:
1002 free_secdata(secdata);
1da177e4 1003out:
454e2398 1004 return ERR_PTR(error);
1da177e4
LT
1005}
1006
18e9e510 1007/**
7000d3c4
RD
1008 * freeze_super - lock the filesystem and force it into a consistent state
1009 * @sb: the super to lock
18e9e510
JB
1010 *
1011 * Syncs the super to make sure the filesystem is consistent and calls the fs's
1012 * freeze_fs. Subsequent calls to this without first thawing the fs will return
1013 * -EBUSY.
1014 */
1015int freeze_super(struct super_block *sb)
1016{
1017 int ret;
1018
1019 atomic_inc(&sb->s_active);
1020 down_write(&sb->s_umount);
1021 if (sb->s_frozen) {
1022 deactivate_locked_super(sb);
1023 return -EBUSY;
1024 }
1025
1026 if (sb->s_flags & MS_RDONLY) {
1027 sb->s_frozen = SB_FREEZE_TRANS;
1028 smp_wmb();
1029 up_write(&sb->s_umount);
1030 return 0;
1031 }
1032
1033 sb->s_frozen = SB_FREEZE_WRITE;
1034 smp_wmb();
1035
1036 sync_filesystem(sb);
1037
1038 sb->s_frozen = SB_FREEZE_TRANS;
1039 smp_wmb();
1040
1041 sync_blockdev(sb->s_bdev);
1042 if (sb->s_op->freeze_fs) {
1043 ret = sb->s_op->freeze_fs(sb);
1044 if (ret) {
1045 printk(KERN_ERR
1046 "VFS:Filesystem freeze failed\n");
1047 sb->s_frozen = SB_UNFROZEN;
1048 deactivate_locked_super(sb);
1049 return ret;
1050 }
1051 }
1052 up_write(&sb->s_umount);
1053 return 0;
1054}
1055EXPORT_SYMBOL(freeze_super);
1056
1057/**
1058 * thaw_super -- unlock filesystem
1059 * @sb: the super to thaw
1060 *
1061 * Unlocks the filesystem and marks it writeable again after freeze_super().
1062 */
1063int thaw_super(struct super_block *sb)
1064{
1065 int error;
1066
1067 down_write(&sb->s_umount);
1068 if (sb->s_frozen == SB_UNFROZEN) {
1069 up_write(&sb->s_umount);
1070 return -EINVAL;
1071 }
1072
1073 if (sb->s_flags & MS_RDONLY)
1074 goto out;
1075
1076 if (sb->s_op->unfreeze_fs) {
1077 error = sb->s_op->unfreeze_fs(sb);
1078 if (error) {
1079 printk(KERN_ERR
1080 "VFS:Filesystem thaw failed\n");
1081 sb->s_frozen = SB_FREEZE_TRANS;
1082 up_write(&sb->s_umount);
1083 return error;
1084 }
1085 }
1086
1087out:
1088 sb->s_frozen = SB_UNFROZEN;
1089 smp_wmb();
1090 wake_up(&sb->s_wait_unfrozen);
1091 deactivate_locked_super(sb);
1092
1093 return 0;
1094}
1095EXPORT_SYMBOL(thaw_super);