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