iscsi-target: Drop work-around for legacy GlobalSAN initiator
[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
630d9c47 23#include <linux/export.h>
1da177e4 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>
40401530 35#include <linux/fsnotify.h>
5accdf82 36#include <linux/lockdep.h>
6d59e7f5 37#include "internal.h"
1da177e4
LT
38
39
1da177e4
LT
40LIST_HEAD(super_blocks);
41DEFINE_SPINLOCK(sb_lock);
42
5accdf82
JK
43static char *sb_writers_name[SB_FREEZE_LEVELS] = {
44 "sb_writers",
45 "sb_pagefaults",
46 "sb_internal",
47};
48
b0d40c92
DC
49/*
50 * One thing we have to be careful of with a per-sb shrinker is that we don't
51 * drop the last active reference to the superblock from within the shrinker.
52 * If that happens we could trigger unregistering the shrinker from within the
53 * shrinker path and that leads to deadlock on the shrinker_rwsem. Hence we
54 * take a passive reference to the superblock to avoid this from occurring.
55 */
56static int prune_super(struct shrinker *shrink, struct shrink_control *sc)
57{
58 struct super_block *sb;
0e1fdafd
DC
59 int fs_objects = 0;
60 int total_objects;
b0d40c92
DC
61
62 sb = container_of(shrink, struct super_block, s_shrink);
63
64 /*
65 * Deadlock avoidance. We may hold various FS locks, and we don't want
66 * to recurse into the FS that called us in clear_inode() and friends..
67 */
68 if (sc->nr_to_scan && !(sc->gfp_mask & __GFP_FS))
69 return -1;
70
71 if (!grab_super_passive(sb))
8e125cd8 72 return -1;
b0d40c92 73
0e1fdafd
DC
74 if (sb->s_op && sb->s_op->nr_cached_objects)
75 fs_objects = sb->s_op->nr_cached_objects(sb);
76
77 total_objects = sb->s_nr_dentry_unused +
78 sb->s_nr_inodes_unused + fs_objects + 1;
d016a08a
TH
79 if (!total_objects)
80 total_objects = 1;
0e1fdafd 81
b0d40c92 82 if (sc->nr_to_scan) {
0e1fdafd
DC
83 int dentries;
84 int inodes;
b0d40c92 85
0e1fdafd
DC
86 /* proportion the scan between the caches */
87 dentries = (sc->nr_to_scan * sb->s_nr_dentry_unused) /
88 total_objects;
89 inodes = (sc->nr_to_scan * sb->s_nr_inodes_unused) /
90 total_objects;
91 if (fs_objects)
92 fs_objects = (sc->nr_to_scan * fs_objects) /
93 total_objects;
94 /*
95 * prune the dcache first as the icache is pinned by it, then
96 * prune the icache, followed by the filesystem specific caches
97 */
98 prune_dcache_sb(sb, dentries);
99 prune_icache_sb(sb, inodes);
b0d40c92 100
0e1fdafd
DC
101 if (fs_objects && sb->s_op->free_cached_objects) {
102 sb->s_op->free_cached_objects(sb, fs_objects);
103 fs_objects = sb->s_op->nr_cached_objects(sb);
104 }
105 total_objects = sb->s_nr_dentry_unused +
106 sb->s_nr_inodes_unused + fs_objects;
b0d40c92
DC
107 }
108
0e1fdafd 109 total_objects = (total_objects / 100) * sysctl_vfs_cache_pressure;
b0d40c92 110 drop_super(sb);
0e1fdafd 111 return total_objects;
b0d40c92
DC
112}
113
5accdf82
JK
114static int init_sb_writers(struct super_block *s, struct file_system_type *type)
115{
116 int err;
117 int i;
118
119 for (i = 0; i < SB_FREEZE_LEVELS; i++) {
120 err = percpu_counter_init(&s->s_writers.counter[i], 0);
121 if (err < 0)
122 goto err_out;
123 lockdep_init_map(&s->s_writers.lock_map[i], sb_writers_name[i],
124 &type->s_writers_key[i], 0);
125 }
126 init_waitqueue_head(&s->s_writers.wait);
127 init_waitqueue_head(&s->s_writers.wait_unfrozen);
128 return 0;
129err_out:
130 while (--i >= 0)
131 percpu_counter_destroy(&s->s_writers.counter[i]);
132 return err;
133}
134
135static void destroy_sb_writers(struct super_block *s)
136{
137 int i;
138
139 for (i = 0; i < SB_FREEZE_LEVELS; i++)
140 percpu_counter_destroy(&s->s_writers.counter[i]);
141}
142
1da177e4
LT
143/**
144 * alloc_super - create new superblock
fe2bbc48 145 * @type: filesystem type superblock should belong to
9249e17f 146 * @flags: the mount flags
1da177e4
LT
147 *
148 * Allocates and initializes a new &struct super_block. alloc_super()
149 * returns a pointer new superblock or %NULL if allocation had failed.
150 */
9249e17f 151static struct super_block *alloc_super(struct file_system_type *type, int flags)
1da177e4 152{
11b0b5ab 153 struct super_block *s = kzalloc(sizeof(struct super_block), GFP_USER);
b87221de 154 static const struct super_operations default_op;
1da177e4
LT
155
156 if (s) {
1da177e4 157 if (security_sb_alloc(s)) {
5accdf82
JK
158 /*
159 * We cannot call security_sb_free() without
160 * security_sb_alloc() succeeding. So bail out manually
161 */
1da177e4
LT
162 kfree(s);
163 s = NULL;
164 goto out;
165 }
5accdf82
JK
166 if (init_sb_writers(s, type))
167 goto err_out;
9249e17f 168 s->s_flags = flags;
95f28604 169 s->s_bdi = &default_backing_dev_info;
a5166169 170 INIT_HLIST_NODE(&s->s_instances);
ceb5bdc2 171 INIT_HLIST_BL_HEAD(&s->s_anon);
1da177e4 172 INIT_LIST_HEAD(&s->s_inodes);
da3bbdd4 173 INIT_LIST_HEAD(&s->s_dentry_lru);
98b745c6 174 INIT_LIST_HEAD(&s->s_inode_lru);
09cc9fc7 175 spin_lock_init(&s->s_inode_lru_lock);
39f7c4db 176 INIT_LIST_HEAD(&s->s_mounts);
1da177e4 177 init_rwsem(&s->s_umount);
897c6ff9 178 lockdep_set_class(&s->s_umount, &type->s_umount_key);
ada723dc
PZ
179 /*
180 * sget() can have s_umount recursion.
181 *
182 * When it cannot find a suitable sb, it allocates a new
183 * one (this one), and tries again to find a suitable old
184 * one.
185 *
186 * In case that succeeds, it will acquire the s_umount
187 * lock of the old one. Since these are clearly distrinct
188 * locks, and this object isn't exposed yet, there's no
189 * risk of deadlocks.
190 *
191 * Annotate this by putting this lock in a different
192 * subclass.
193 */
194 down_write_nested(&s->s_umount, SINGLE_DEPTH_NESTING);
b20bd1a5 195 s->s_count = 1;
1da177e4 196 atomic_set(&s->s_active, 1);
a11f3a05 197 mutex_init(&s->s_vfs_rename_mutex);
51ee049e 198 lockdep_set_class(&s->s_vfs_rename_mutex, &type->s_vfs_rename_key);
d3be915f
IM
199 mutex_init(&s->s_dquot.dqio_mutex);
200 mutex_init(&s->s_dquot.dqonoff_mutex);
1da177e4 201 init_rwsem(&s->s_dquot.dqptr_sem);
1da177e4 202 s->s_maxbytes = MAX_NON_LFS;
1da177e4
LT
203 s->s_op = &default_op;
204 s->s_time_gran = 1000000000;
c515e1fd 205 s->cleancache_poolid = -1;
b0d40c92
DC
206
207 s->s_shrink.seeks = DEFAULT_SEEKS;
208 s->s_shrink.shrink = prune_super;
8ab47664 209 s->s_shrink.batch = 1024;
1da177e4
LT
210 }
211out:
212 return s;
5accdf82
JK
213err_out:
214 security_sb_free(s);
5accdf82
JK
215 destroy_sb_writers(s);
216 kfree(s);
217 s = NULL;
218 goto out;
1da177e4
LT
219}
220
221/**
222 * destroy_super - frees a superblock
223 * @s: superblock to free
224 *
225 * Frees a superblock.
226 */
227static inline void destroy_super(struct super_block *s)
228{
5accdf82 229 destroy_sb_writers(s);
1da177e4 230 security_sb_free(s);
39f7c4db 231 WARN_ON(!list_empty(&s->s_mounts));
79c0b2df 232 kfree(s->s_subtype);
b3b304a2 233 kfree(s->s_options);
1da177e4
LT
234 kfree(s);
235}
236
237/* Superblock refcounting */
238
239/*
35cf7ba0 240 * Drop a superblock's refcount. The caller must hold sb_lock.
1da177e4 241 */
f47ec3f2 242static void __put_super(struct super_block *sb)
1da177e4 243{
1da177e4 244 if (!--sb->s_count) {
551de6f3 245 list_del_init(&sb->s_list);
1da177e4 246 destroy_super(sb);
1da177e4 247 }
1da177e4
LT
248}
249
250/**
251 * put_super - drop a temporary reference to superblock
252 * @sb: superblock in question
253 *
254 * Drops a temporary reference, frees superblock if there's no
255 * references left.
256 */
f47ec3f2 257static void put_super(struct super_block *sb)
1da177e4
LT
258{
259 spin_lock(&sb_lock);
260 __put_super(sb);
261 spin_unlock(&sb_lock);
262}
263
264
265/**
1712ac8f 266 * deactivate_locked_super - drop an active reference to superblock
1da177e4
LT
267 * @s: superblock to deactivate
268 *
1712ac8f
AV
269 * Drops an active reference to superblock, converting it into a temprory
270 * one if there is no other active references left. In that case we
1da177e4
LT
271 * tell fs driver to shut it down and drop the temporary reference we
272 * had just acquired.
1712ac8f
AV
273 *
274 * Caller holds exclusive lock on superblock; that lock is released.
1da177e4 275 */
1712ac8f 276void deactivate_locked_super(struct super_block *s)
1da177e4
LT
277{
278 struct file_system_type *fs = s->s_type;
b20bd1a5 279 if (atomic_dec_and_test(&s->s_active)) {
3167760f 280 cleancache_invalidate_fs(s);
1da177e4 281 fs->kill_sb(s);
b0d40c92
DC
282
283 /* caches are now gone, we can safely kill the shrinker now */
284 unregister_shrinker(&s->s_shrink);
1da177e4
LT
285 put_filesystem(fs);
286 put_super(s);
1712ac8f
AV
287 } else {
288 up_write(&s->s_umount);
1da177e4
LT
289 }
290}
291
1712ac8f 292EXPORT_SYMBOL(deactivate_locked_super);
1da177e4 293
74dbbdd7 294/**
1712ac8f 295 * deactivate_super - drop an active reference to superblock
74dbbdd7
AV
296 * @s: superblock to deactivate
297 *
1712ac8f
AV
298 * Variant of deactivate_locked_super(), except that superblock is *not*
299 * locked by caller. If we are going to drop the final active reference,
300 * lock will be acquired prior to that.
74dbbdd7 301 */
1712ac8f 302void deactivate_super(struct super_block *s)
74dbbdd7 303{
1712ac8f
AV
304 if (!atomic_add_unless(&s->s_active, -1, 1)) {
305 down_write(&s->s_umount);
306 deactivate_locked_super(s);
74dbbdd7
AV
307 }
308}
309
1712ac8f 310EXPORT_SYMBOL(deactivate_super);
74dbbdd7 311
1da177e4
LT
312/**
313 * grab_super - acquire an active reference
314 * @s: reference we are trying to make active
315 *
316 * Tries to acquire an active reference. grab_super() is used when we
317 * had just found a superblock in super_blocks or fs_type->fs_supers
318 * and want to turn it into a full-blown active reference. grab_super()
319 * is called with sb_lock held and drops it. Returns 1 in case of
320 * success, 0 if we had failed (superblock contents was already dead or
d0f1a6e5
AV
321 * dying when grab_super() had been called). Note that this is only
322 * called for superblocks not in rundown mode (== ones still on ->fs_supers
323 * of their type), so increment of ->s_count is OK here.
1da177e4 324 */
9c4dbee7 325static int grab_super(struct super_block *s) __releases(sb_lock)
1da177e4
LT
326{
327 s->s_count++;
328 spin_unlock(&sb_lock);
329 down_write(&s->s_umount);
d0f1a6e5
AV
330 if ((s->s_flags & MS_BORN) && atomic_inc_not_zero(&s->s_active)) {
331 put_super(s);
332 return 1;
333 }
1da177e4
LT
334 up_write(&s->s_umount);
335 put_super(s);
1da177e4
LT
336 return 0;
337}
338
12ad3ab6
DC
339/*
340 * grab_super_passive - acquire a passive reference
331cbdee 341 * @sb: reference we are trying to grab
12ad3ab6
DC
342 *
343 * Tries to acquire a passive reference. This is used in places where we
344 * cannot take an active reference but we need to ensure that the
345 * superblock does not go away while we are working on it. It returns
346 * false if a reference was not gained, and returns true with the s_umount
347 * lock held in read mode if a reference is gained. On successful return,
348 * the caller must drop the s_umount lock and the passive reference when
349 * done.
350 */
351bool grab_super_passive(struct super_block *sb)
352{
353 spin_lock(&sb_lock);
a5166169 354 if (hlist_unhashed(&sb->s_instances)) {
12ad3ab6
DC
355 spin_unlock(&sb_lock);
356 return false;
357 }
358
359 sb->s_count++;
360 spin_unlock(&sb_lock);
361
362 if (down_read_trylock(&sb->s_umount)) {
dabe0dc1 363 if (sb->s_root && (sb->s_flags & MS_BORN))
12ad3ab6
DC
364 return true;
365 up_read(&sb->s_umount);
366 }
367
368 put_super(sb);
369 return false;
370}
371
1da177e4
LT
372/**
373 * generic_shutdown_super - common helper for ->kill_sb()
374 * @sb: superblock to kill
375 *
376 * generic_shutdown_super() does all fs-independent work on superblock
377 * shutdown. Typical ->kill_sb() should pick all fs-specific objects
378 * that need destruction out of superblock, call generic_shutdown_super()
379 * and release aforementioned objects. Note: dentries and inodes _are_
380 * taken care of and do not need specific handling.
c636ebdb
DH
381 *
382 * Upon calling this function, the filesystem may no longer alter or
383 * rearrange the set of dentries belonging to this super_block, nor may it
384 * change the attachments of dentries to inodes.
1da177e4
LT
385 */
386void generic_shutdown_super(struct super_block *sb)
387{
ee9b6d61 388 const struct super_operations *sop = sb->s_op;
1da177e4 389
c636ebdb
DH
390 if (sb->s_root) {
391 shrink_dcache_for_umount(sb);
60b0680f 392 sync_filesystem(sb);
1da177e4 393 sb->s_flags &= ~MS_ACTIVE;
efaee192 394
63997e98
AV
395 fsnotify_unmount_inodes(&sb->s_inodes);
396
397 evict_inodes(sb);
1da177e4 398
1da177e4
LT
399 if (sop->put_super)
400 sop->put_super(sb);
401
63997e98 402 if (!list_empty(&sb->s_inodes)) {
7b4fe29e
DJ
403 printk("VFS: Busy inodes after unmount of %s. "
404 "Self-destruct in 5 seconds. Have a nice day...\n",
405 sb->s_id);
1da177e4 406 }
1da177e4
LT
407 }
408 spin_lock(&sb_lock);
409 /* should be initialized for __put_super_and_need_restart() */
a5166169 410 hlist_del_init(&sb->s_instances);
1da177e4
LT
411 spin_unlock(&sb_lock);
412 up_write(&sb->s_umount);
413}
414
415EXPORT_SYMBOL(generic_shutdown_super);
416
417/**
418 * sget - find or create a superblock
419 * @type: filesystem type superblock should belong to
420 * @test: comparison callback
421 * @set: setup callback
9249e17f 422 * @flags: mount flags
1da177e4
LT
423 * @data: argument to each of them
424 */
425struct super_block *sget(struct file_system_type *type,
426 int (*test)(struct super_block *,void *),
427 int (*set)(struct super_block *,void *),
9249e17f 428 int flags,
1da177e4
LT
429 void *data)
430{
431 struct super_block *s = NULL;
d4730127 432 struct super_block *old;
1da177e4
LT
433 int err;
434
435retry:
436 spin_lock(&sb_lock);
d4730127 437 if (test) {
b67bfe0d 438 hlist_for_each_entry(old, &type->fs_supers, s_instances) {
d4730127
MK
439 if (!test(old, data))
440 continue;
441 if (!grab_super(old))
442 goto retry;
a3cfbb53
LZ
443 if (s) {
444 up_write(&s->s_umount);
d4730127 445 destroy_super(s);
7a4dec53 446 s = NULL;
a3cfbb53 447 }
d4730127
MK
448 return old;
449 }
1da177e4
LT
450 }
451 if (!s) {
452 spin_unlock(&sb_lock);
9249e17f 453 s = alloc_super(type, flags);
1da177e4
LT
454 if (!s)
455 return ERR_PTR(-ENOMEM);
456 goto retry;
457 }
458
459 err = set(s, data);
460 if (err) {
461 spin_unlock(&sb_lock);
a3cfbb53 462 up_write(&s->s_umount);
1da177e4
LT
463 destroy_super(s);
464 return ERR_PTR(err);
465 }
466 s->s_type = type;
467 strlcpy(s->s_id, type->name, sizeof(s->s_id));
468 list_add_tail(&s->s_list, &super_blocks);
a5166169 469 hlist_add_head(&s->s_instances, &type->fs_supers);
1da177e4
LT
470 spin_unlock(&sb_lock);
471 get_filesystem(type);
b0d40c92 472 register_shrinker(&s->s_shrink);
1da177e4
LT
473 return s;
474}
475
476EXPORT_SYMBOL(sget);
477
478void drop_super(struct super_block *sb)
479{
480 up_read(&sb->s_umount);
481 put_super(sb);
482}
483
484EXPORT_SYMBOL(drop_super);
485
01a05b33
AV
486/**
487 * iterate_supers - call function for all active superblocks
488 * @f: function to call
489 * @arg: argument to pass to it
490 *
491 * Scans the superblock list and calls given function, passing it
492 * locked superblock and given argument.
493 */
494void iterate_supers(void (*f)(struct super_block *, void *), void *arg)
495{
dca33252 496 struct super_block *sb, *p = NULL;
01a05b33
AV
497
498 spin_lock(&sb_lock);
dca33252 499 list_for_each_entry(sb, &super_blocks, s_list) {
a5166169 500 if (hlist_unhashed(&sb->s_instances))
01a05b33
AV
501 continue;
502 sb->s_count++;
503 spin_unlock(&sb_lock);
504
505 down_read(&sb->s_umount);
dabe0dc1 506 if (sb->s_root && (sb->s_flags & MS_BORN))
01a05b33
AV
507 f(sb, arg);
508 up_read(&sb->s_umount);
509
510 spin_lock(&sb_lock);
dca33252
AV
511 if (p)
512 __put_super(p);
513 p = sb;
01a05b33 514 }
dca33252
AV
515 if (p)
516 __put_super(p);
01a05b33
AV
517 spin_unlock(&sb_lock);
518}
519
43e15cdb
AV
520/**
521 * iterate_supers_type - call function for superblocks of given type
522 * @type: fs type
523 * @f: function to call
524 * @arg: argument to pass to it
525 *
526 * Scans the superblock list and calls given function, passing it
527 * locked superblock and given argument.
528 */
529void iterate_supers_type(struct file_system_type *type,
530 void (*f)(struct super_block *, void *), void *arg)
531{
532 struct super_block *sb, *p = NULL;
533
534 spin_lock(&sb_lock);
b67bfe0d 535 hlist_for_each_entry(sb, &type->fs_supers, s_instances) {
43e15cdb
AV
536 sb->s_count++;
537 spin_unlock(&sb_lock);
538
539 down_read(&sb->s_umount);
dabe0dc1 540 if (sb->s_root && (sb->s_flags & MS_BORN))
43e15cdb
AV
541 f(sb, arg);
542 up_read(&sb->s_umount);
543
544 spin_lock(&sb_lock);
545 if (p)
546 __put_super(p);
547 p = sb;
548 }
549 if (p)
550 __put_super(p);
551 spin_unlock(&sb_lock);
552}
553
554EXPORT_SYMBOL(iterate_supers_type);
555
1da177e4
LT
556/**
557 * get_super - get the superblock of a device
558 * @bdev: device to get the superblock for
559 *
560 * Scans the superblock list and finds the superblock of the file system
561 * mounted on the device given. %NULL is returned if no match is found.
562 */
563
df40c01a 564struct super_block *get_super(struct block_device *bdev)
1da177e4 565{
618f0636
KK
566 struct super_block *sb;
567
1da177e4
LT
568 if (!bdev)
569 return NULL;
618f0636 570
1da177e4 571 spin_lock(&sb_lock);
618f0636
KK
572rescan:
573 list_for_each_entry(sb, &super_blocks, s_list) {
a5166169 574 if (hlist_unhashed(&sb->s_instances))
551de6f3 575 continue;
618f0636
KK
576 if (sb->s_bdev == bdev) {
577 sb->s_count++;
1da177e4 578 spin_unlock(&sb_lock);
618f0636 579 down_read(&sb->s_umount);
df40c01a 580 /* still alive? */
dabe0dc1 581 if (sb->s_root && (sb->s_flags & MS_BORN))
618f0636
KK
582 return sb;
583 up_read(&sb->s_umount);
df40c01a 584 /* nope, got unmounted */
618f0636 585 spin_lock(&sb_lock);
df40c01a
AV
586 __put_super(sb);
587 goto rescan;
1da177e4
LT
588 }
589 }
590 spin_unlock(&sb_lock);
591 return NULL;
592}
593
594EXPORT_SYMBOL(get_super);
4504230a 595
6b6dc836
JK
596/**
597 * get_super_thawed - get thawed superblock of a device
598 * @bdev: device to get the superblock for
599 *
600 * Scans the superblock list and finds the superblock of the file system
601 * mounted on the device. The superblock is returned once it is thawed
602 * (or immediately if it was not frozen). %NULL is returned if no match
603 * is found.
604 */
605struct super_block *get_super_thawed(struct block_device *bdev)
606{
607 while (1) {
608 struct super_block *s = get_super(bdev);
5accdf82 609 if (!s || s->s_writers.frozen == SB_UNFROZEN)
6b6dc836
JK
610 return s;
611 up_read(&s->s_umount);
5accdf82
JK
612 wait_event(s->s_writers.wait_unfrozen,
613 s->s_writers.frozen == SB_UNFROZEN);
6b6dc836
JK
614 put_super(s);
615 }
616}
617EXPORT_SYMBOL(get_super_thawed);
618
4504230a
CH
619/**
620 * get_active_super - get an active reference to the superblock of a device
621 * @bdev: device to get the superblock for
622 *
623 * Scans the superblock list and finds the superblock of the file system
624 * mounted on the device given. Returns the superblock with an active
d3f21473 625 * reference or %NULL if none was found.
4504230a
CH
626 */
627struct super_block *get_active_super(struct block_device *bdev)
628{
629 struct super_block *sb;
630
631 if (!bdev)
632 return NULL;
633
1494583d 634restart:
4504230a
CH
635 spin_lock(&sb_lock);
636 list_for_each_entry(sb, &super_blocks, s_list) {
a5166169 637 if (hlist_unhashed(&sb->s_instances))
551de6f3 638 continue;
1494583d 639 if (sb->s_bdev == bdev) {
d0f1a6e5 640 if (!grab_super(sb))
1494583d 641 goto restart;
d0f1a6e5
AV
642 up_write(&sb->s_umount);
643 return sb;
1494583d 644 }
4504230a
CH
645 }
646 spin_unlock(&sb_lock);
647 return NULL;
648}
1da177e4 649
df40c01a 650struct super_block *user_get_super(dev_t dev)
1da177e4 651{
618f0636 652 struct super_block *sb;
1da177e4 653
1da177e4 654 spin_lock(&sb_lock);
618f0636
KK
655rescan:
656 list_for_each_entry(sb, &super_blocks, s_list) {
a5166169 657 if (hlist_unhashed(&sb->s_instances))
551de6f3 658 continue;
618f0636
KK
659 if (sb->s_dev == dev) {
660 sb->s_count++;
1da177e4 661 spin_unlock(&sb_lock);
618f0636 662 down_read(&sb->s_umount);
df40c01a 663 /* still alive? */
dabe0dc1 664 if (sb->s_root && (sb->s_flags & MS_BORN))
618f0636
KK
665 return sb;
666 up_read(&sb->s_umount);
df40c01a 667 /* nope, got unmounted */
618f0636 668 spin_lock(&sb_lock);
df40c01a
AV
669 __put_super(sb);
670 goto rescan;
1da177e4
LT
671 }
672 }
673 spin_unlock(&sb_lock);
674 return NULL;
675}
676
1da177e4
LT
677/**
678 * do_remount_sb - asks filesystem to change mount options.
679 * @sb: superblock in question
680 * @flags: numeric part of options
681 * @data: the rest of options
682 * @force: whether or not to force the change
683 *
684 * Alters the mount options of a mounted file system.
685 */
686int do_remount_sb(struct super_block *sb, int flags, void *data, int force)
687{
688 int retval;
c79d967d 689 int remount_ro;
4504230a 690
5accdf82 691 if (sb->s_writers.frozen != SB_UNFROZEN)
4504230a
CH
692 return -EBUSY;
693
9361401e 694#ifdef CONFIG_BLOCK
1da177e4
LT
695 if (!(flags & MS_RDONLY) && bdev_read_only(sb->s_bdev))
696 return -EACCES;
9361401e 697#endif
4504230a 698
1da177e4
LT
699 if (flags & MS_RDONLY)
700 acct_auto_close(sb);
701 shrink_dcache_sb(sb);
60b0680f 702 sync_filesystem(sb);
1da177e4 703
d208bbdd 704 remount_ro = (flags & MS_RDONLY) && !(sb->s_flags & MS_RDONLY);
d208bbdd 705
1da177e4
LT
706 /* If we are remounting RDONLY and current sb is read/write,
707 make sure there are no rw files opened */
d208bbdd 708 if (remount_ro) {
4ed5e82f 709 if (force) {
68c8a7ae
AV
710 sb->s_readonly_remount = 1;
711 smp_wmb();
4ed5e82f
MS
712 } else {
713 retval = sb_prepare_remount_readonly(sb);
714 if (retval)
715 return retval;
4ed5e82f 716 }
1da177e4
LT
717 }
718
719 if (sb->s_op->remount_fs) {
1da177e4 720 retval = sb->s_op->remount_fs(sb, &flags, data);
2833eb2b
MS
721 if (retval) {
722 if (!force)
4ed5e82f 723 goto cancel_readonly;
2833eb2b
MS
724 /* If forced remount, go ahead despite any errors */
725 WARN(1, "forced remount of a %s fs returned %i\n",
726 sb->s_type->name, retval);
727 }
1da177e4
LT
728 }
729 sb->s_flags = (sb->s_flags & ~MS_RMT_MASK) | (flags & MS_RMT_MASK);
4ed5e82f
MS
730 /* Needs to be ordered wrt mnt_is_readonly() */
731 smp_wmb();
732 sb->s_readonly_remount = 0;
c79d967d 733
d208bbdd
NP
734 /*
735 * Some filesystems modify their metadata via some other path than the
736 * bdev buffer cache (eg. use a private mapping, or directories in
737 * pagecache, etc). Also file data modifications go via their own
738 * mappings. So If we try to mount readonly then copy the filesystem
739 * from bdev, we could get stale data, so invalidate it to give a best
740 * effort at coherency.
741 */
742 if (remount_ro && sb->s_bdev)
743 invalidate_bdev(sb->s_bdev);
1da177e4 744 return 0;
4ed5e82f
MS
745
746cancel_readonly:
747 sb->s_readonly_remount = 0;
748 return retval;
1da177e4
LT
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) {
a5166169 757 if (hlist_unhashed(&sb->s_instances))
551de6f3 758 continue;
1da177e4
LT
759 sb->s_count++;
760 spin_unlock(&sb_lock);
443b94ba 761 down_write(&sb->s_umount);
dabe0dc1
AV
762 if (sb->s_root && sb->s_bdev && (sb->s_flags & MS_BORN) &&
763 !(sb->s_flags & MS_RDONLY)) {
1da177e4 764 /*
1da177e4
LT
765 * What lock protects sb->s_flags??
766 */
1da177e4 767 do_remount_sb(sb, MS_RDONLY, NULL, 1);
1da177e4 768 }
443b94ba 769 up_write(&sb->s_umount);
1da177e4 770 spin_lock(&sb_lock);
dca33252
AV
771 if (p)
772 __put_super(p);
773 p = sb;
1da177e4 774 }
dca33252
AV
775 if (p)
776 __put_super(p);
1da177e4 777 spin_unlock(&sb_lock);
a2a9537a 778 kfree(work);
1da177e4
LT
779 printk("Emergency Remount complete\n");
780}
781
782void emergency_remount(void)
783{
a2a9537a
JA
784 struct work_struct *work;
785
786 work = kmalloc(sizeof(*work), GFP_ATOMIC);
787 if (work) {
788 INIT_WORK(work, do_emergency_remount);
789 schedule_work(work);
790 }
1da177e4
LT
791}
792
793/*
794 * Unnamed block devices are dummy devices used by virtual
795 * filesystems which don't use real block-devices. -- jrs
796 */
797
ad76cbc6 798static DEFINE_IDA(unnamed_dev_ida);
1da177e4 799static DEFINE_SPINLOCK(unnamed_dev_lock);/* protects the above */
c63e09ec 800static int unnamed_dev_start = 0; /* don't bother trying below it */
1da177e4 801
0ee5dc67 802int get_anon_bdev(dev_t *p)
1da177e4
LT
803{
804 int dev;
805 int error;
806
807 retry:
ad76cbc6 808 if (ida_pre_get(&unnamed_dev_ida, GFP_ATOMIC) == 0)
1da177e4
LT
809 return -ENOMEM;
810 spin_lock(&unnamed_dev_lock);
c63e09ec 811 error = ida_get_new_above(&unnamed_dev_ida, unnamed_dev_start, &dev);
f21f6220
AV
812 if (!error)
813 unnamed_dev_start = dev + 1;
1da177e4
LT
814 spin_unlock(&unnamed_dev_lock);
815 if (error == -EAGAIN)
816 /* We raced and lost with another CPU. */
817 goto retry;
818 else if (error)
819 return -EAGAIN;
820
e8c8d1bc 821 if (dev == (1 << MINORBITS)) {
1da177e4 822 spin_lock(&unnamed_dev_lock);
ad76cbc6 823 ida_remove(&unnamed_dev_ida, dev);
f21f6220
AV
824 if (unnamed_dev_start > dev)
825 unnamed_dev_start = dev;
1da177e4
LT
826 spin_unlock(&unnamed_dev_lock);
827 return -EMFILE;
828 }
0ee5dc67 829 *p = MKDEV(0, dev & MINORMASK);
1da177e4
LT
830 return 0;
831}
0ee5dc67 832EXPORT_SYMBOL(get_anon_bdev);
1da177e4 833
0ee5dc67 834void free_anon_bdev(dev_t dev)
1da177e4 835{
0ee5dc67 836 int slot = MINOR(dev);
1da177e4 837 spin_lock(&unnamed_dev_lock);
ad76cbc6 838 ida_remove(&unnamed_dev_ida, slot);
c63e09ec
AV
839 if (slot < unnamed_dev_start)
840 unnamed_dev_start = slot;
1da177e4
LT
841 spin_unlock(&unnamed_dev_lock);
842}
0ee5dc67
AV
843EXPORT_SYMBOL(free_anon_bdev);
844
845int set_anon_super(struct super_block *s, void *data)
846{
847 int error = get_anon_bdev(&s->s_dev);
848 if (!error)
849 s->s_bdi = &noop_backing_dev_info;
850 return error;
851}
852
853EXPORT_SYMBOL(set_anon_super);
854
855void kill_anon_super(struct super_block *sb)
856{
857 dev_t dev = sb->s_dev;
858 generic_shutdown_super(sb);
859 free_anon_bdev(dev);
860}
1da177e4
LT
861
862EXPORT_SYMBOL(kill_anon_super);
863
1da177e4
LT
864void kill_litter_super(struct super_block *sb)
865{
866 if (sb->s_root)
867 d_genocide(sb->s_root);
868 kill_anon_super(sb);
869}
870
871EXPORT_SYMBOL(kill_litter_super);
872
909e6d94
SH
873static int ns_test_super(struct super_block *sb, void *data)
874{
875 return sb->s_fs_info == data;
876}
877
878static int ns_set_super(struct super_block *sb, void *data)
879{
880 sb->s_fs_info = data;
881 return set_anon_super(sb, NULL);
882}
883
ceefda69
AV
884struct dentry *mount_ns(struct file_system_type *fs_type, int flags,
885 void *data, int (*fill_super)(struct super_block *, void *, int))
909e6d94
SH
886{
887 struct super_block *sb;
888
9249e17f 889 sb = sget(fs_type, ns_test_super, ns_set_super, flags, data);
909e6d94 890 if (IS_ERR(sb))
ceefda69 891 return ERR_CAST(sb);
909e6d94
SH
892
893 if (!sb->s_root) {
894 int err;
909e6d94
SH
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 }
9249e17f
DH
955 s = sget(fs_type, test_bdev_super, set_bdev_super, flags | MS_NOSEC,
956 bdev);
4fadd7bb 957 mutex_unlock(&bdev->bd_fsfreeze_mutex);
1da177e4 958 if (IS_ERR(s))
454e2398 959 goto error_s;
1da177e4
LT
960
961 if (s->s_root) {
962 if ((flags ^ s->s_flags) & MS_RDONLY) {
74dbbdd7 963 deactivate_locked_super(s);
454e2398
DH
964 error = -EBUSY;
965 goto error_bdev;
1da177e4 966 }
454e2398 967
4f331f01
TH
968 /*
969 * s_umount nests inside bd_mutex during
e525fd89
TH
970 * __invalidate_device(). blkdev_put() acquires
971 * bd_mutex and can't be called under s_umount. Drop
972 * s_umount temporarily. This is safe as we're
973 * holding an active reference.
4f331f01
TH
974 */
975 up_write(&s->s_umount);
d4d77629 976 blkdev_put(bdev, mode);
4f331f01 977 down_write(&s->s_umount);
1da177e4
LT
978 } else {
979 char b[BDEVNAME_SIZE];
980
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;
9249e17f 1025 struct super_block *s = sget(fs_type, NULL, set_anon_super, flags, NULL);
1da177e4
LT
1026
1027 if (IS_ERR(s))
3c26ff6e 1028 return ERR_CAST(s);
1da177e4 1029
9b04c997 1030 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
1da177e4 1031 if (error) {
74dbbdd7 1032 deactivate_locked_super(s);
3c26ff6e 1033 return ERR_PTR(error);
1da177e4
LT
1034 }
1035 s->s_flags |= MS_ACTIVE;
3c26ff6e 1036 return dget(s->s_root);
1da177e4 1037}
3c26ff6e
AV
1038EXPORT_SYMBOL(mount_nodev);
1039
1da177e4
LT
1040static int compare_single(struct super_block *s, void *p)
1041{
1042 return 1;
1043}
1044
fc14f2fe 1045struct dentry *mount_single(struct file_system_type *fs_type,
1da177e4 1046 int flags, void *data,
fc14f2fe 1047 int (*fill_super)(struct super_block *, void *, int))
1da177e4
LT
1048{
1049 struct super_block *s;
1050 int error;
1051
9249e17f 1052 s = sget(fs_type, compare_single, set_anon_super, flags, NULL);
1da177e4 1053 if (IS_ERR(s))
fc14f2fe 1054 return ERR_CAST(s);
1da177e4 1055 if (!s->s_root) {
9b04c997 1056 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
1da177e4 1057 if (error) {
74dbbdd7 1058 deactivate_locked_super(s);
fc14f2fe 1059 return ERR_PTR(error);
1da177e4
LT
1060 }
1061 s->s_flags |= MS_ACTIVE;
9329d1be
KS
1062 } else {
1063 do_remount_sb(s, flags, data, 0);
1da177e4 1064 }
fc14f2fe
AV
1065 return dget(s->s_root);
1066}
1067EXPORT_SYMBOL(mount_single);
1068
9d412a43
AV
1069struct dentry *
1070mount_fs(struct file_system_type *type, int flags, const char *name, void *data)
1da177e4 1071{
c96e41e9 1072 struct dentry *root;
9d412a43 1073 struct super_block *sb;
1da177e4 1074 char *secdata = NULL;
9d412a43 1075 int error = -ENOMEM;
8089352a 1076
e0007529 1077 if (data && !(type->fs_flags & FS_BINARY_MOUNTDATA)) {
1da177e4 1078 secdata = alloc_secdata();
454e2398 1079 if (!secdata)
9d412a43 1080 goto out;
1da177e4 1081
e0007529 1082 error = security_sb_copy_data(data, secdata);
454e2398 1083 if (error)
1da177e4 1084 goto out_free_secdata;
1da177e4
LT
1085 }
1086
1a102ff9
AV
1087 root = type->mount(type, flags, name, data);
1088 if (IS_ERR(root)) {
1089 error = PTR_ERR(root);
1090 goto out_free_secdata;
c96e41e9 1091 }
9d412a43
AV
1092 sb = root->d_sb;
1093 BUG_ON(!sb);
1094 WARN_ON(!sb->s_bdi);
6c510389 1095 WARN_ON(sb->s_bdi == &default_backing_dev_info);
9d412a43 1096 sb->s_flags |= MS_BORN;
454e2398 1097
9d412a43 1098 error = security_sb_kern_mount(sb, flags, secdata);
5129a469
JE
1099 if (error)
1100 goto out_sb;
454e2398 1101
42cb56ae
JL
1102 /*
1103 * filesystems should never set s_maxbytes larger than MAX_LFS_FILESIZE
1104 * but s_maxbytes was an unsigned long long for many releases. Throw
1105 * this warning for a little while to try and catch filesystems that
4358b567 1106 * violate this rule.
42cb56ae 1107 */
9d412a43
AV
1108 WARN((sb->s_maxbytes < 0), "%s set sb->s_maxbytes to "
1109 "negative value (%lld)\n", type->name, sb->s_maxbytes);
42cb56ae 1110
9d412a43 1111 up_write(&sb->s_umount);
8680e22f 1112 free_secdata(secdata);
9d412a43 1113 return root;
1da177e4 1114out_sb:
9d412a43
AV
1115 dput(root);
1116 deactivate_locked_super(sb);
1da177e4
LT
1117out_free_secdata:
1118 free_secdata(secdata);
1da177e4 1119out:
454e2398 1120 return ERR_PTR(error);
1da177e4
LT
1121}
1122
5accdf82
JK
1123/*
1124 * This is an internal function, please use sb_end_{write,pagefault,intwrite}
1125 * instead.
1126 */
1127void __sb_end_write(struct super_block *sb, int level)
1128{
1129 percpu_counter_dec(&sb->s_writers.counter[level-1]);
1130 /*
1131 * Make sure s_writers are updated before we wake up waiters in
1132 * freeze_super().
1133 */
1134 smp_mb();
1135 if (waitqueue_active(&sb->s_writers.wait))
1136 wake_up(&sb->s_writers.wait);
1137 rwsem_release(&sb->s_writers.lock_map[level-1], 1, _RET_IP_);
1138}
1139EXPORT_SYMBOL(__sb_end_write);
1140
1141#ifdef CONFIG_LOCKDEP
1142/*
1143 * We want lockdep to tell us about possible deadlocks with freezing but
1144 * it's it bit tricky to properly instrument it. Getting a freeze protection
1145 * works as getting a read lock but there are subtle problems. XFS for example
1146 * gets freeze protection on internal level twice in some cases, which is OK
1147 * only because we already hold a freeze protection also on higher level. Due
1148 * to these cases we have to tell lockdep we are doing trylock when we
1149 * already hold a freeze protection for a higher freeze level.
1150 */
1151static void acquire_freeze_lock(struct super_block *sb, int level, bool trylock,
1152 unsigned long ip)
1153{
1154 int i;
1155
1156 if (!trylock) {
1157 for (i = 0; i < level - 1; i++)
1158 if (lock_is_held(&sb->s_writers.lock_map[i])) {
1159 trylock = true;
1160 break;
1161 }
1162 }
1163 rwsem_acquire_read(&sb->s_writers.lock_map[level-1], 0, trylock, ip);
1164}
1165#endif
1166
1167/*
1168 * This is an internal function, please use sb_start_{write,pagefault,intwrite}
1169 * instead.
1170 */
1171int __sb_start_write(struct super_block *sb, int level, bool wait)
1172{
1173retry:
1174 if (unlikely(sb->s_writers.frozen >= level)) {
1175 if (!wait)
1176 return 0;
1177 wait_event(sb->s_writers.wait_unfrozen,
1178 sb->s_writers.frozen < level);
1179 }
1180
1181#ifdef CONFIG_LOCKDEP
1182 acquire_freeze_lock(sb, level, !wait, _RET_IP_);
1183#endif
1184 percpu_counter_inc(&sb->s_writers.counter[level-1]);
1185 /*
1186 * Make sure counter is updated before we check for frozen.
1187 * freeze_super() first sets frozen and then checks the counter.
1188 */
1189 smp_mb();
1190 if (unlikely(sb->s_writers.frozen >= level)) {
1191 __sb_end_write(sb, level);
1192 goto retry;
1193 }
1194 return 1;
1195}
1196EXPORT_SYMBOL(__sb_start_write);
1197
1198/**
1199 * sb_wait_write - wait until all writers to given file system finish
1200 * @sb: the super for which we wait
1201 * @level: type of writers we wait for (normal vs page fault)
1202 *
1203 * This function waits until there are no writers of given type to given file
1204 * system. Caller of this function should make sure there can be no new writers
1205 * of type @level before calling this function. Otherwise this function can
1206 * livelock.
1207 */
1208static void sb_wait_write(struct super_block *sb, int level)
1209{
1210 s64 writers;
1211
1212 /*
1213 * We just cycle-through lockdep here so that it does not complain
1214 * about returning with lock to userspace
1215 */
1216 rwsem_acquire(&sb->s_writers.lock_map[level-1], 0, 0, _THIS_IP_);
1217 rwsem_release(&sb->s_writers.lock_map[level-1], 1, _THIS_IP_);
1218
1219 do {
1220 DEFINE_WAIT(wait);
1221
1222 /*
1223 * We use a barrier in prepare_to_wait() to separate setting
1224 * of frozen and checking of the counter
1225 */
1226 prepare_to_wait(&sb->s_writers.wait, &wait,
1227 TASK_UNINTERRUPTIBLE);
1228
1229 writers = percpu_counter_sum(&sb->s_writers.counter[level-1]);
1230 if (writers)
1231 schedule();
1232
1233 finish_wait(&sb->s_writers.wait, &wait);
1234 } while (writers);
1235}
1236
18e9e510 1237/**
7000d3c4
RD
1238 * freeze_super - lock the filesystem and force it into a consistent state
1239 * @sb: the super to lock
18e9e510
JB
1240 *
1241 * Syncs the super to make sure the filesystem is consistent and calls the fs's
1242 * freeze_fs. Subsequent calls to this without first thawing the fs will return
1243 * -EBUSY.
5accdf82
JK
1244 *
1245 * During this function, sb->s_writers.frozen goes through these values:
1246 *
1247 * SB_UNFROZEN: File system is normal, all writes progress as usual.
1248 *
1249 * SB_FREEZE_WRITE: The file system is in the process of being frozen. New
1250 * writes should be blocked, though page faults are still allowed. We wait for
1251 * all writes to complete and then proceed to the next stage.
1252 *
1253 * SB_FREEZE_PAGEFAULT: Freezing continues. Now also page faults are blocked
1254 * but internal fs threads can still modify the filesystem (although they
1255 * should not dirty new pages or inodes), writeback can run etc. After waiting
1256 * for all running page faults we sync the filesystem which will clean all
1257 * dirty pages and inodes (no new dirty pages or inodes can be created when
1258 * sync is running).
1259 *
1260 * SB_FREEZE_FS: The file system is frozen. Now all internal sources of fs
1261 * modification are blocked (e.g. XFS preallocation truncation on inode
1262 * reclaim). This is usually implemented by blocking new transactions for
1263 * filesystems that have them and need this additional guard. After all
1264 * internal writers are finished we call ->freeze_fs() to finish filesystem
1265 * freezing. Then we transition to SB_FREEZE_COMPLETE state. This state is
1266 * mostly auxiliary for filesystems to verify they do not modify frozen fs.
1267 *
1268 * sb->s_writers.frozen is protected by sb->s_umount.
18e9e510
JB
1269 */
1270int freeze_super(struct super_block *sb)
1271{
1272 int ret;
1273
1274 atomic_inc(&sb->s_active);
1275 down_write(&sb->s_umount);
5accdf82 1276 if (sb->s_writers.frozen != SB_UNFROZEN) {
18e9e510
JB
1277 deactivate_locked_super(sb);
1278 return -EBUSY;
1279 }
1280
dabe0dc1
AV
1281 if (!(sb->s_flags & MS_BORN)) {
1282 up_write(&sb->s_umount);
1283 return 0; /* sic - it's "nothing to do" */
1284 }
1285
18e9e510 1286 if (sb->s_flags & MS_RDONLY) {
5accdf82
JK
1287 /* Nothing to do really... */
1288 sb->s_writers.frozen = SB_FREEZE_COMPLETE;
18e9e510
JB
1289 up_write(&sb->s_umount);
1290 return 0;
1291 }
1292
5accdf82
JK
1293 /* From now on, no new normal writers can start */
1294 sb->s_writers.frozen = SB_FREEZE_WRITE;
1295 smp_wmb();
1296
1297 /* Release s_umount to preserve sb_start_write -> s_umount ordering */
1298 up_write(&sb->s_umount);
1299
1300 sb_wait_write(sb, SB_FREEZE_WRITE);
1301
1302 /* Now we go and block page faults... */
1303 down_write(&sb->s_umount);
1304 sb->s_writers.frozen = SB_FREEZE_PAGEFAULT;
18e9e510
JB
1305 smp_wmb();
1306
5accdf82
JK
1307 sb_wait_write(sb, SB_FREEZE_PAGEFAULT);
1308
1309 /* All writers are done so after syncing there won't be dirty data */
18e9e510
JB
1310 sync_filesystem(sb);
1311
5accdf82
JK
1312 /* Now wait for internal filesystem counter */
1313 sb->s_writers.frozen = SB_FREEZE_FS;
18e9e510 1314 smp_wmb();
5accdf82 1315 sb_wait_write(sb, SB_FREEZE_FS);
18e9e510 1316
18e9e510
JB
1317 if (sb->s_op->freeze_fs) {
1318 ret = sb->s_op->freeze_fs(sb);
1319 if (ret) {
1320 printk(KERN_ERR
1321 "VFS:Filesystem freeze failed\n");
5accdf82 1322 sb->s_writers.frozen = SB_UNFROZEN;
e1616300 1323 smp_wmb();
5accdf82 1324 wake_up(&sb->s_writers.wait_unfrozen);
18e9e510
JB
1325 deactivate_locked_super(sb);
1326 return ret;
1327 }
1328 }
5accdf82 1329 /*
b24eac86
ON
1330 * For debugging purposes so that fs can warn if it sees write activity
1331 * when frozen is set to SB_FREEZE_COMPLETE, and for thaw_super().
5accdf82
JK
1332 */
1333 sb->s_writers.frozen = SB_FREEZE_COMPLETE;
18e9e510
JB
1334 up_write(&sb->s_umount);
1335 return 0;
1336}
1337EXPORT_SYMBOL(freeze_super);
1338
1339/**
1340 * thaw_super -- unlock filesystem
1341 * @sb: the super to thaw
1342 *
1343 * Unlocks the filesystem and marks it writeable again after freeze_super().
1344 */
1345int thaw_super(struct super_block *sb)
1346{
1347 int error;
1348
1349 down_write(&sb->s_umount);
b24eac86 1350 if (sb->s_writers.frozen != SB_FREEZE_COMPLETE) {
18e9e510
JB
1351 up_write(&sb->s_umount);
1352 return -EINVAL;
1353 }
1354
1355 if (sb->s_flags & MS_RDONLY)
1356 goto out;
1357
1358 if (sb->s_op->unfreeze_fs) {
1359 error = sb->s_op->unfreeze_fs(sb);
1360 if (error) {
1361 printk(KERN_ERR
1362 "VFS:Filesystem thaw failed\n");
18e9e510
JB
1363 up_write(&sb->s_umount);
1364 return error;
1365 }
1366 }
1367
1368out:
5accdf82 1369 sb->s_writers.frozen = SB_UNFROZEN;
18e9e510 1370 smp_wmb();
5accdf82 1371 wake_up(&sb->s_writers.wait_unfrozen);
18e9e510
JB
1372 deactivate_locked_super(sb);
1373
1374 return 0;
1375}
1376EXPORT_SYMBOL(thaw_super);