]> asedeno.scripts.mit.edu Git - linux.git/blob - fs/super.c
fs: Add user namespace member to struct super_block
[linux.git] / fs / super.c
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:
18  *    Torbjörn Lindh (torbjorn.lindh@gopta.se), April 14, 1996.
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
23 #include <linux/export.h>
24 #include <linux/slab.h>
25 #include <linux/blkdev.h>
26 #include <linux/mount.h>
27 #include <linux/security.h>
28 #include <linux/writeback.h>            /* for the emergency remount stuff */
29 #include <linux/idr.h>
30 #include <linux/mutex.h>
31 #include <linux/backing-dev.h>
32 #include <linux/rculist_bl.h>
33 #include <linux/cleancache.h>
34 #include <linux/fsnotify.h>
35 #include <linux/lockdep.h>
36 #include <linux/user_namespace.h>
37 #include "internal.h"
38
39
40 static LIST_HEAD(super_blocks);
41 static DEFINE_SPINLOCK(sb_lock);
42
43 static char *sb_writers_name[SB_FREEZE_LEVELS] = {
44         "sb_writers",
45         "sb_pagefaults",
46         "sb_internal",
47 };
48
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  */
56 static unsigned long super_cache_scan(struct shrinker *shrink,
57                                       struct shrink_control *sc)
58 {
59         struct super_block *sb;
60         long    fs_objects = 0;
61         long    total_objects;
62         long    freed = 0;
63         long    dentries;
64         long    inodes;
65
66         sb = container_of(shrink, struct super_block, s_shrink);
67
68         /*
69          * Deadlock avoidance.  We may hold various FS locks, and we don't want
70          * to recurse into the FS that called us in clear_inode() and friends..
71          */
72         if (!(sc->gfp_mask & __GFP_FS))
73                 return SHRINK_STOP;
74
75         if (!trylock_super(sb))
76                 return SHRINK_STOP;
77
78         if (sb->s_op->nr_cached_objects)
79                 fs_objects = sb->s_op->nr_cached_objects(sb, sc);
80
81         inodes = list_lru_shrink_count(&sb->s_inode_lru, sc);
82         dentries = list_lru_shrink_count(&sb->s_dentry_lru, sc);
83         total_objects = dentries + inodes + fs_objects + 1;
84         if (!total_objects)
85                 total_objects = 1;
86
87         /* proportion the scan between the caches */
88         dentries = mult_frac(sc->nr_to_scan, dentries, total_objects);
89         inodes = mult_frac(sc->nr_to_scan, inodes, total_objects);
90         fs_objects = mult_frac(sc->nr_to_scan, fs_objects, total_objects);
91
92         /*
93          * prune the dcache first as the icache is pinned by it, then
94          * prune the icache, followed by the filesystem specific caches
95          *
96          * Ensure that we always scan at least one object - memcg kmem
97          * accounting uses this to fully empty the caches.
98          */
99         sc->nr_to_scan = dentries + 1;
100         freed = prune_dcache_sb(sb, sc);
101         sc->nr_to_scan = inodes + 1;
102         freed += prune_icache_sb(sb, sc);
103
104         if (fs_objects) {
105                 sc->nr_to_scan = fs_objects + 1;
106                 freed += sb->s_op->free_cached_objects(sb, sc);
107         }
108
109         up_read(&sb->s_umount);
110         return freed;
111 }
112
113 static unsigned long super_cache_count(struct shrinker *shrink,
114                                        struct shrink_control *sc)
115 {
116         struct super_block *sb;
117         long    total_objects = 0;
118
119         sb = container_of(shrink, struct super_block, s_shrink);
120
121         /*
122          * Don't call trylock_super as it is a potential
123          * scalability bottleneck. The counts could get updated
124          * between super_cache_count and super_cache_scan anyway.
125          * Call to super_cache_count with shrinker_rwsem held
126          * ensures the safety of call to list_lru_shrink_count() and
127          * s_op->nr_cached_objects().
128          */
129         if (sb->s_op && sb->s_op->nr_cached_objects)
130                 total_objects = sb->s_op->nr_cached_objects(sb, sc);
131
132         total_objects += list_lru_shrink_count(&sb->s_dentry_lru, sc);
133         total_objects += list_lru_shrink_count(&sb->s_inode_lru, sc);
134
135         total_objects = vfs_pressure_ratio(total_objects);
136         return total_objects;
137 }
138
139 static void destroy_super_work(struct work_struct *work)
140 {
141         struct super_block *s = container_of(work, struct super_block,
142                                                         destroy_work);
143         int i;
144
145         for (i = 0; i < SB_FREEZE_LEVELS; i++)
146                 percpu_free_rwsem(&s->s_writers.rw_sem[i]);
147         kfree(s);
148 }
149
150 static void destroy_super_rcu(struct rcu_head *head)
151 {
152         struct super_block *s = container_of(head, struct super_block, rcu);
153         INIT_WORK(&s->destroy_work, destroy_super_work);
154         schedule_work(&s->destroy_work);
155 }
156
157 /**
158  *      destroy_super   -       frees a superblock
159  *      @s: superblock to free
160  *
161  *      Frees a superblock.
162  */
163 static void destroy_super(struct super_block *s)
164 {
165         list_lru_destroy(&s->s_dentry_lru);
166         list_lru_destroy(&s->s_inode_lru);
167         security_sb_free(s);
168         WARN_ON(!list_empty(&s->s_mounts));
169         put_user_ns(s->s_user_ns);
170         kfree(s->s_subtype);
171         kfree(s->s_options);
172         call_rcu(&s->rcu, destroy_super_rcu);
173 }
174
175 /**
176  *      alloc_super     -       create new superblock
177  *      @type:  filesystem type superblock should belong to
178  *      @flags: the mount flags
179  *      @user_ns: User namespace for the super_block
180  *
181  *      Allocates and initializes a new &struct super_block.  alloc_super()
182  *      returns a pointer new superblock or %NULL if allocation had failed.
183  */
184 static struct super_block *alloc_super(struct file_system_type *type, int flags,
185                                        struct user_namespace *user_ns)
186 {
187         struct super_block *s = kzalloc(sizeof(struct super_block),  GFP_USER);
188         static const struct super_operations default_op;
189         int i;
190
191         if (!s)
192                 return NULL;
193
194         INIT_LIST_HEAD(&s->s_mounts);
195         s->s_user_ns = get_user_ns(user_ns);
196
197         if (security_sb_alloc(s))
198                 goto fail;
199
200         for (i = 0; i < SB_FREEZE_LEVELS; i++) {
201                 if (__percpu_init_rwsem(&s->s_writers.rw_sem[i],
202                                         sb_writers_name[i],
203                                         &type->s_writers_key[i]))
204                         goto fail;
205         }
206         init_waitqueue_head(&s->s_writers.wait_unfrozen);
207         s->s_bdi = &noop_backing_dev_info;
208         s->s_flags = flags;
209         INIT_HLIST_NODE(&s->s_instances);
210         INIT_HLIST_BL_HEAD(&s->s_anon);
211         mutex_init(&s->s_sync_lock);
212         INIT_LIST_HEAD(&s->s_inodes);
213         spin_lock_init(&s->s_inode_list_lock);
214
215         if (list_lru_init_memcg(&s->s_dentry_lru))
216                 goto fail;
217         if (list_lru_init_memcg(&s->s_inode_lru))
218                 goto fail;
219
220         init_rwsem(&s->s_umount);
221         lockdep_set_class(&s->s_umount, &type->s_umount_key);
222         /*
223          * sget() can have s_umount recursion.
224          *
225          * When it cannot find a suitable sb, it allocates a new
226          * one (this one), and tries again to find a suitable old
227          * one.
228          *
229          * In case that succeeds, it will acquire the s_umount
230          * lock of the old one. Since these are clearly distrinct
231          * locks, and this object isn't exposed yet, there's no
232          * risk of deadlocks.
233          *
234          * Annotate this by putting this lock in a different
235          * subclass.
236          */
237         down_write_nested(&s->s_umount, SINGLE_DEPTH_NESTING);
238         s->s_count = 1;
239         atomic_set(&s->s_active, 1);
240         mutex_init(&s->s_vfs_rename_mutex);
241         lockdep_set_class(&s->s_vfs_rename_mutex, &type->s_vfs_rename_key);
242         mutex_init(&s->s_dquot.dqio_mutex);
243         mutex_init(&s->s_dquot.dqonoff_mutex);
244         s->s_maxbytes = MAX_NON_LFS;
245         s->s_op = &default_op;
246         s->s_time_gran = 1000000000;
247         s->cleancache_poolid = CLEANCACHE_NO_POOL;
248
249         s->s_shrink.seeks = DEFAULT_SEEKS;
250         s->s_shrink.scan_objects = super_cache_scan;
251         s->s_shrink.count_objects = super_cache_count;
252         s->s_shrink.batch = 1024;
253         s->s_shrink.flags = SHRINKER_NUMA_AWARE | SHRINKER_MEMCG_AWARE;
254         return s;
255
256 fail:
257         destroy_super(s);
258         return NULL;
259 }
260
261 /* Superblock refcounting  */
262
263 /*
264  * Drop a superblock's refcount.  The caller must hold sb_lock.
265  */
266 static void __put_super(struct super_block *sb)
267 {
268         if (!--sb->s_count) {
269                 list_del_init(&sb->s_list);
270                 destroy_super(sb);
271         }
272 }
273
274 /**
275  *      put_super       -       drop a temporary reference to superblock
276  *      @sb: superblock in question
277  *
278  *      Drops a temporary reference, frees superblock if there's no
279  *      references left.
280  */
281 static void put_super(struct super_block *sb)
282 {
283         spin_lock(&sb_lock);
284         __put_super(sb);
285         spin_unlock(&sb_lock);
286 }
287
288
289 /**
290  *      deactivate_locked_super -       drop an active reference to superblock
291  *      @s: superblock to deactivate
292  *
293  *      Drops an active reference to superblock, converting it into a temporary
294  *      one if there is no other active references left.  In that case we
295  *      tell fs driver to shut it down and drop the temporary reference we
296  *      had just acquired.
297  *
298  *      Caller holds exclusive lock on superblock; that lock is released.
299  */
300 void deactivate_locked_super(struct super_block *s)
301 {
302         struct file_system_type *fs = s->s_type;
303         if (atomic_dec_and_test(&s->s_active)) {
304                 cleancache_invalidate_fs(s);
305                 unregister_shrinker(&s->s_shrink);
306                 fs->kill_sb(s);
307
308                 /*
309                  * Since list_lru_destroy() may sleep, we cannot call it from
310                  * put_super(), where we hold the sb_lock. Therefore we destroy
311                  * the lru lists right now.
312                  */
313                 list_lru_destroy(&s->s_dentry_lru);
314                 list_lru_destroy(&s->s_inode_lru);
315
316                 put_filesystem(fs);
317                 put_super(s);
318         } else {
319                 up_write(&s->s_umount);
320         }
321 }
322
323 EXPORT_SYMBOL(deactivate_locked_super);
324
325 /**
326  *      deactivate_super        -       drop an active reference to superblock
327  *      @s: superblock to deactivate
328  *
329  *      Variant of deactivate_locked_super(), except that superblock is *not*
330  *      locked by caller.  If we are going to drop the final active reference,
331  *      lock will be acquired prior to that.
332  */
333 void deactivate_super(struct super_block *s)
334 {
335         if (!atomic_add_unless(&s->s_active, -1, 1)) {
336                 down_write(&s->s_umount);
337                 deactivate_locked_super(s);
338         }
339 }
340
341 EXPORT_SYMBOL(deactivate_super);
342
343 /**
344  *      grab_super - acquire an active reference
345  *      @s: reference we are trying to make active
346  *
347  *      Tries to acquire an active reference.  grab_super() is used when we
348  *      had just found a superblock in super_blocks or fs_type->fs_supers
349  *      and want to turn it into a full-blown active reference.  grab_super()
350  *      is called with sb_lock held and drops it.  Returns 1 in case of
351  *      success, 0 if we had failed (superblock contents was already dead or
352  *      dying when grab_super() had been called).  Note that this is only
353  *      called for superblocks not in rundown mode (== ones still on ->fs_supers
354  *      of their type), so increment of ->s_count is OK here.
355  */
356 static int grab_super(struct super_block *s) __releases(sb_lock)
357 {
358         s->s_count++;
359         spin_unlock(&sb_lock);
360         down_write(&s->s_umount);
361         if ((s->s_flags & MS_BORN) && atomic_inc_not_zero(&s->s_active)) {
362                 put_super(s);
363                 return 1;
364         }
365         up_write(&s->s_umount);
366         put_super(s);
367         return 0;
368 }
369
370 /*
371  *      trylock_super - try to grab ->s_umount shared
372  *      @sb: reference we are trying to grab
373  *
374  *      Try to prevent fs shutdown.  This is used in places where we
375  *      cannot take an active reference but we need to ensure that the
376  *      filesystem is not shut down while we are working on it. It returns
377  *      false if we cannot acquire s_umount or if we lose the race and
378  *      filesystem already got into shutdown, and returns true with the s_umount
379  *      lock held in read mode in case of success. On successful return,
380  *      the caller must drop the s_umount lock when done.
381  *
382  *      Note that unlike get_super() et.al. this one does *not* bump ->s_count.
383  *      The reason why it's safe is that we are OK with doing trylock instead
384  *      of down_read().  There's a couple of places that are OK with that, but
385  *      it's very much not a general-purpose interface.
386  */
387 bool trylock_super(struct super_block *sb)
388 {
389         if (down_read_trylock(&sb->s_umount)) {
390                 if (!hlist_unhashed(&sb->s_instances) &&
391                     sb->s_root && (sb->s_flags & MS_BORN))
392                         return true;
393                 up_read(&sb->s_umount);
394         }
395
396         return false;
397 }
398
399 /**
400  *      generic_shutdown_super  -       common helper for ->kill_sb()
401  *      @sb: superblock to kill
402  *
403  *      generic_shutdown_super() does all fs-independent work on superblock
404  *      shutdown.  Typical ->kill_sb() should pick all fs-specific objects
405  *      that need destruction out of superblock, call generic_shutdown_super()
406  *      and release aforementioned objects.  Note: dentries and inodes _are_
407  *      taken care of and do not need specific handling.
408  *
409  *      Upon calling this function, the filesystem may no longer alter or
410  *      rearrange the set of dentries belonging to this super_block, nor may it
411  *      change the attachments of dentries to inodes.
412  */
413 void generic_shutdown_super(struct super_block *sb)
414 {
415         const struct super_operations *sop = sb->s_op;
416
417         if (sb->s_root) {
418                 shrink_dcache_for_umount(sb);
419                 sync_filesystem(sb);
420                 sb->s_flags &= ~MS_ACTIVE;
421
422                 fsnotify_unmount_inodes(sb);
423                 cgroup_writeback_umount();
424
425                 evict_inodes(sb);
426
427                 if (sb->s_dio_done_wq) {
428                         destroy_workqueue(sb->s_dio_done_wq);
429                         sb->s_dio_done_wq = NULL;
430                 }
431
432                 if (sop->put_super)
433                         sop->put_super(sb);
434
435                 if (!list_empty(&sb->s_inodes)) {
436                         printk("VFS: Busy inodes after unmount of %s. "
437                            "Self-destruct in 5 seconds.  Have a nice day...\n",
438                            sb->s_id);
439                 }
440         }
441         spin_lock(&sb_lock);
442         /* should be initialized for __put_super_and_need_restart() */
443         hlist_del_init(&sb->s_instances);
444         spin_unlock(&sb_lock);
445         up_write(&sb->s_umount);
446 }
447
448 EXPORT_SYMBOL(generic_shutdown_super);
449
450 /**
451  *      sget_userns -   find or create a superblock
452  *      @type:  filesystem type superblock should belong to
453  *      @test:  comparison callback
454  *      @set:   setup callback
455  *      @flags: mount flags
456  *      @user_ns: User namespace for the super_block
457  *      @data:  argument to each of them
458  */
459 struct super_block *sget_userns(struct file_system_type *type,
460                         int (*test)(struct super_block *,void *),
461                         int (*set)(struct super_block *,void *),
462                         int flags, struct user_namespace *user_ns,
463                         void *data)
464 {
465         struct super_block *s = NULL;
466         struct super_block *old;
467         int err;
468
469 retry:
470         spin_lock(&sb_lock);
471         if (test) {
472                 hlist_for_each_entry(old, &type->fs_supers, s_instances) {
473                         if (!test(old, data))
474                                 continue;
475                         if (user_ns != old->s_user_ns) {
476                                 spin_unlock(&sb_lock);
477                                 if (s) {
478                                         up_write(&s->s_umount);
479                                         destroy_super(s);
480                                 }
481                                 return ERR_PTR(-EBUSY);
482                         }
483                         if (!grab_super(old))
484                                 goto retry;
485                         if (s) {
486                                 up_write(&s->s_umount);
487                                 destroy_super(s);
488                                 s = NULL;
489                         }
490                         return old;
491                 }
492         }
493         if (!s) {
494                 spin_unlock(&sb_lock);
495                 s = alloc_super(type, flags, user_ns);
496                 if (!s)
497                         return ERR_PTR(-ENOMEM);
498                 goto retry;
499         }
500                 
501         err = set(s, data);
502         if (err) {
503                 spin_unlock(&sb_lock);
504                 up_write(&s->s_umount);
505                 destroy_super(s);
506                 return ERR_PTR(err);
507         }
508         s->s_type = type;
509         strlcpy(s->s_id, type->name, sizeof(s->s_id));
510         list_add_tail(&s->s_list, &super_blocks);
511         hlist_add_head(&s->s_instances, &type->fs_supers);
512         spin_unlock(&sb_lock);
513         get_filesystem(type);
514         register_shrinker(&s->s_shrink);
515         return s;
516 }
517
518 EXPORT_SYMBOL(sget_userns);
519
520 /**
521  *      sget    -       find or create a superblock
522  *      @type:    filesystem type superblock should belong to
523  *      @test:    comparison callback
524  *      @set:     setup callback
525  *      @flags:   mount flags
526  *      @data:    argument to each of them
527  */
528 struct super_block *sget(struct file_system_type *type,
529                         int (*test)(struct super_block *,void *),
530                         int (*set)(struct super_block *,void *),
531                         int flags,
532                         void *data)
533 {
534         struct user_namespace *user_ns = current_user_ns();
535
536         /* Ensure the requestor has permissions over the target filesystem */
537         if (!(flags & MS_KERNMOUNT) && !ns_capable(user_ns, CAP_SYS_ADMIN))
538                 return ERR_PTR(-EPERM);
539
540         return sget_userns(type, test, set, flags, user_ns, data);
541 }
542
543 EXPORT_SYMBOL(sget);
544
545 void drop_super(struct super_block *sb)
546 {
547         up_read(&sb->s_umount);
548         put_super(sb);
549 }
550
551 EXPORT_SYMBOL(drop_super);
552
553 /**
554  *      iterate_supers - call function for all active superblocks
555  *      @f: function to call
556  *      @arg: argument to pass to it
557  *
558  *      Scans the superblock list and calls given function, passing it
559  *      locked superblock and given argument.
560  */
561 void iterate_supers(void (*f)(struct super_block *, void *), void *arg)
562 {
563         struct super_block *sb, *p = NULL;
564
565         spin_lock(&sb_lock);
566         list_for_each_entry(sb, &super_blocks, s_list) {
567                 if (hlist_unhashed(&sb->s_instances))
568                         continue;
569                 sb->s_count++;
570                 spin_unlock(&sb_lock);
571
572                 down_read(&sb->s_umount);
573                 if (sb->s_root && (sb->s_flags & MS_BORN))
574                         f(sb, arg);
575                 up_read(&sb->s_umount);
576
577                 spin_lock(&sb_lock);
578                 if (p)
579                         __put_super(p);
580                 p = sb;
581         }
582         if (p)
583                 __put_super(p);
584         spin_unlock(&sb_lock);
585 }
586
587 /**
588  *      iterate_supers_type - call function for superblocks of given type
589  *      @type: fs type
590  *      @f: function to call
591  *      @arg: argument to pass to it
592  *
593  *      Scans the superblock list and calls given function, passing it
594  *      locked superblock and given argument.
595  */
596 void iterate_supers_type(struct file_system_type *type,
597         void (*f)(struct super_block *, void *), void *arg)
598 {
599         struct super_block *sb, *p = NULL;
600
601         spin_lock(&sb_lock);
602         hlist_for_each_entry(sb, &type->fs_supers, s_instances) {
603                 sb->s_count++;
604                 spin_unlock(&sb_lock);
605
606                 down_read(&sb->s_umount);
607                 if (sb->s_root && (sb->s_flags & MS_BORN))
608                         f(sb, arg);
609                 up_read(&sb->s_umount);
610
611                 spin_lock(&sb_lock);
612                 if (p)
613                         __put_super(p);
614                 p = sb;
615         }
616         if (p)
617                 __put_super(p);
618         spin_unlock(&sb_lock);
619 }
620
621 EXPORT_SYMBOL(iterate_supers_type);
622
623 /**
624  *      get_super - get the superblock of a device
625  *      @bdev: device to get the superblock for
626  *      
627  *      Scans the superblock list and finds the superblock of the file system
628  *      mounted on the device given. %NULL is returned if no match is found.
629  */
630
631 struct super_block *get_super(struct block_device *bdev)
632 {
633         struct super_block *sb;
634
635         if (!bdev)
636                 return NULL;
637
638         spin_lock(&sb_lock);
639 rescan:
640         list_for_each_entry(sb, &super_blocks, s_list) {
641                 if (hlist_unhashed(&sb->s_instances))
642                         continue;
643                 if (sb->s_bdev == bdev) {
644                         sb->s_count++;
645                         spin_unlock(&sb_lock);
646                         down_read(&sb->s_umount);
647                         /* still alive? */
648                         if (sb->s_root && (sb->s_flags & MS_BORN))
649                                 return sb;
650                         up_read(&sb->s_umount);
651                         /* nope, got unmounted */
652                         spin_lock(&sb_lock);
653                         __put_super(sb);
654                         goto rescan;
655                 }
656         }
657         spin_unlock(&sb_lock);
658         return NULL;
659 }
660
661 EXPORT_SYMBOL(get_super);
662
663 /**
664  *      get_super_thawed - get thawed superblock of a device
665  *      @bdev: device to get the superblock for
666  *
667  *      Scans the superblock list and finds the superblock of the file system
668  *      mounted on the device. The superblock is returned once it is thawed
669  *      (or immediately if it was not frozen). %NULL is returned if no match
670  *      is found.
671  */
672 struct super_block *get_super_thawed(struct block_device *bdev)
673 {
674         while (1) {
675                 struct super_block *s = get_super(bdev);
676                 if (!s || s->s_writers.frozen == SB_UNFROZEN)
677                         return s;
678                 up_read(&s->s_umount);
679                 wait_event(s->s_writers.wait_unfrozen,
680                            s->s_writers.frozen == SB_UNFROZEN);
681                 put_super(s);
682         }
683 }
684 EXPORT_SYMBOL(get_super_thawed);
685
686 /**
687  * get_active_super - get an active reference to the superblock of a device
688  * @bdev: device to get the superblock for
689  *
690  * Scans the superblock list and finds the superblock of the file system
691  * mounted on the device given.  Returns the superblock with an active
692  * reference or %NULL if none was found.
693  */
694 struct super_block *get_active_super(struct block_device *bdev)
695 {
696         struct super_block *sb;
697
698         if (!bdev)
699                 return NULL;
700
701 restart:
702         spin_lock(&sb_lock);
703         list_for_each_entry(sb, &super_blocks, s_list) {
704                 if (hlist_unhashed(&sb->s_instances))
705                         continue;
706                 if (sb->s_bdev == bdev) {
707                         if (!grab_super(sb))
708                                 goto restart;
709                         up_write(&sb->s_umount);
710                         return sb;
711                 }
712         }
713         spin_unlock(&sb_lock);
714         return NULL;
715 }
716  
717 struct super_block *user_get_super(dev_t dev)
718 {
719         struct super_block *sb;
720
721         spin_lock(&sb_lock);
722 rescan:
723         list_for_each_entry(sb, &super_blocks, s_list) {
724                 if (hlist_unhashed(&sb->s_instances))
725                         continue;
726                 if (sb->s_dev ==  dev) {
727                         sb->s_count++;
728                         spin_unlock(&sb_lock);
729                         down_read(&sb->s_umount);
730                         /* still alive? */
731                         if (sb->s_root && (sb->s_flags & MS_BORN))
732                                 return sb;
733                         up_read(&sb->s_umount);
734                         /* nope, got unmounted */
735                         spin_lock(&sb_lock);
736                         __put_super(sb);
737                         goto rescan;
738                 }
739         }
740         spin_unlock(&sb_lock);
741         return NULL;
742 }
743
744 /**
745  *      do_remount_sb - asks filesystem to change mount options.
746  *      @sb:    superblock in question
747  *      @flags: numeric part of options
748  *      @data:  the rest of options
749  *      @force: whether or not to force the change
750  *
751  *      Alters the mount options of a mounted file system.
752  */
753 int do_remount_sb(struct super_block *sb, int flags, void *data, int force)
754 {
755         int retval;
756         int remount_ro;
757
758         if (sb->s_writers.frozen != SB_UNFROZEN)
759                 return -EBUSY;
760
761 #ifdef CONFIG_BLOCK
762         if (!(flags & MS_RDONLY) && bdev_read_only(sb->s_bdev))
763                 return -EACCES;
764 #endif
765
766         remount_ro = (flags & MS_RDONLY) && !(sb->s_flags & MS_RDONLY);
767
768         if (remount_ro) {
769                 if (!hlist_empty(&sb->s_pins)) {
770                         up_write(&sb->s_umount);
771                         group_pin_kill(&sb->s_pins);
772                         down_write(&sb->s_umount);
773                         if (!sb->s_root)
774                                 return 0;
775                         if (sb->s_writers.frozen != SB_UNFROZEN)
776                                 return -EBUSY;
777                         remount_ro = (flags & MS_RDONLY) && !(sb->s_flags & MS_RDONLY);
778                 }
779         }
780         shrink_dcache_sb(sb);
781
782         /* If we are remounting RDONLY and current sb is read/write,
783            make sure there are no rw files opened */
784         if (remount_ro) {
785                 if (force) {
786                         sb->s_readonly_remount = 1;
787                         smp_wmb();
788                 } else {
789                         retval = sb_prepare_remount_readonly(sb);
790                         if (retval)
791                                 return retval;
792                 }
793         }
794
795         if (sb->s_op->remount_fs) {
796                 retval = sb->s_op->remount_fs(sb, &flags, data);
797                 if (retval) {
798                         if (!force)
799                                 goto cancel_readonly;
800                         /* If forced remount, go ahead despite any errors */
801                         WARN(1, "forced remount of a %s fs returned %i\n",
802                              sb->s_type->name, retval);
803                 }
804         }
805         sb->s_flags = (sb->s_flags & ~MS_RMT_MASK) | (flags & MS_RMT_MASK);
806         /* Needs to be ordered wrt mnt_is_readonly() */
807         smp_wmb();
808         sb->s_readonly_remount = 0;
809
810         /*
811          * Some filesystems modify their metadata via some other path than the
812          * bdev buffer cache (eg. use a private mapping, or directories in
813          * pagecache, etc). Also file data modifications go via their own
814          * mappings. So If we try to mount readonly then copy the filesystem
815          * from bdev, we could get stale data, so invalidate it to give a best
816          * effort at coherency.
817          */
818         if (remount_ro && sb->s_bdev)
819                 invalidate_bdev(sb->s_bdev);
820         return 0;
821
822 cancel_readonly:
823         sb->s_readonly_remount = 0;
824         return retval;
825 }
826
827 static void do_emergency_remount(struct work_struct *work)
828 {
829         struct super_block *sb, *p = NULL;
830
831         spin_lock(&sb_lock);
832         list_for_each_entry(sb, &super_blocks, s_list) {
833                 if (hlist_unhashed(&sb->s_instances))
834                         continue;
835                 sb->s_count++;
836                 spin_unlock(&sb_lock);
837                 down_write(&sb->s_umount);
838                 if (sb->s_root && sb->s_bdev && (sb->s_flags & MS_BORN) &&
839                     !(sb->s_flags & MS_RDONLY)) {
840                         /*
841                          * What lock protects sb->s_flags??
842                          */
843                         do_remount_sb(sb, MS_RDONLY, NULL, 1);
844                 }
845                 up_write(&sb->s_umount);
846                 spin_lock(&sb_lock);
847                 if (p)
848                         __put_super(p);
849                 p = sb;
850         }
851         if (p)
852                 __put_super(p);
853         spin_unlock(&sb_lock);
854         kfree(work);
855         printk("Emergency Remount complete\n");
856 }
857
858 void emergency_remount(void)
859 {
860         struct work_struct *work;
861
862         work = kmalloc(sizeof(*work), GFP_ATOMIC);
863         if (work) {
864                 INIT_WORK(work, do_emergency_remount);
865                 schedule_work(work);
866         }
867 }
868
869 /*
870  * Unnamed block devices are dummy devices used by virtual
871  * filesystems which don't use real block-devices.  -- jrs
872  */
873
874 static DEFINE_IDA(unnamed_dev_ida);
875 static DEFINE_SPINLOCK(unnamed_dev_lock);/* protects the above */
876 /* Many userspace utilities consider an FSID of 0 invalid.
877  * Always return at least 1 from get_anon_bdev.
878  */
879 static int unnamed_dev_start = 1;
880
881 int get_anon_bdev(dev_t *p)
882 {
883         int dev;
884         int error;
885
886  retry:
887         if (ida_pre_get(&unnamed_dev_ida, GFP_ATOMIC) == 0)
888                 return -ENOMEM;
889         spin_lock(&unnamed_dev_lock);
890         error = ida_get_new_above(&unnamed_dev_ida, unnamed_dev_start, &dev);
891         if (!error)
892                 unnamed_dev_start = dev + 1;
893         spin_unlock(&unnamed_dev_lock);
894         if (error == -EAGAIN)
895                 /* We raced and lost with another CPU. */
896                 goto retry;
897         else if (error)
898                 return -EAGAIN;
899
900         if (dev >= (1 << MINORBITS)) {
901                 spin_lock(&unnamed_dev_lock);
902                 ida_remove(&unnamed_dev_ida, dev);
903                 if (unnamed_dev_start > dev)
904                         unnamed_dev_start = dev;
905                 spin_unlock(&unnamed_dev_lock);
906                 return -EMFILE;
907         }
908         *p = MKDEV(0, dev & MINORMASK);
909         return 0;
910 }
911 EXPORT_SYMBOL(get_anon_bdev);
912
913 void free_anon_bdev(dev_t dev)
914 {
915         int slot = MINOR(dev);
916         spin_lock(&unnamed_dev_lock);
917         ida_remove(&unnamed_dev_ida, slot);
918         if (slot < unnamed_dev_start)
919                 unnamed_dev_start = slot;
920         spin_unlock(&unnamed_dev_lock);
921 }
922 EXPORT_SYMBOL(free_anon_bdev);
923
924 int set_anon_super(struct super_block *s, void *data)
925 {
926         return get_anon_bdev(&s->s_dev);
927 }
928
929 EXPORT_SYMBOL(set_anon_super);
930
931 void kill_anon_super(struct super_block *sb)
932 {
933         dev_t dev = sb->s_dev;
934         generic_shutdown_super(sb);
935         free_anon_bdev(dev);
936 }
937
938 EXPORT_SYMBOL(kill_anon_super);
939
940 void kill_litter_super(struct super_block *sb)
941 {
942         if (sb->s_root)
943                 d_genocide(sb->s_root);
944         kill_anon_super(sb);
945 }
946
947 EXPORT_SYMBOL(kill_litter_super);
948
949 static int ns_test_super(struct super_block *sb, void *data)
950 {
951         return sb->s_fs_info == data;
952 }
953
954 static int ns_set_super(struct super_block *sb, void *data)
955 {
956         sb->s_fs_info = data;
957         return set_anon_super(sb, NULL);
958 }
959
960 struct dentry *mount_ns(struct file_system_type *fs_type,
961         int flags, void *data, void *ns, struct user_namespace *user_ns,
962         int (*fill_super)(struct super_block *, void *, int))
963 {
964         struct super_block *sb;
965
966         /* Don't allow mounting unless the caller has CAP_SYS_ADMIN
967          * over the namespace.
968          */
969         if (!(flags & MS_KERNMOUNT) && !ns_capable(user_ns, CAP_SYS_ADMIN))
970                 return ERR_PTR(-EPERM);
971
972         sb = sget_userns(fs_type, ns_test_super, ns_set_super, flags,
973                          user_ns, ns);
974         if (IS_ERR(sb))
975                 return ERR_CAST(sb);
976
977         if (!sb->s_root) {
978                 int err;
979                 err = fill_super(sb, data, flags & MS_SILENT ? 1 : 0);
980                 if (err) {
981                         deactivate_locked_super(sb);
982                         return ERR_PTR(err);
983                 }
984
985                 sb->s_flags |= MS_ACTIVE;
986         }
987
988         return dget(sb->s_root);
989 }
990
991 EXPORT_SYMBOL(mount_ns);
992
993 #ifdef CONFIG_BLOCK
994 static int set_bdev_super(struct super_block *s, void *data)
995 {
996         s->s_bdev = data;
997         s->s_dev = s->s_bdev->bd_dev;
998
999         /*
1000          * We set the bdi here to the queue backing, file systems can
1001          * overwrite this in ->fill_super()
1002          */
1003         s->s_bdi = &bdev_get_queue(s->s_bdev)->backing_dev_info;
1004         return 0;
1005 }
1006
1007 static int test_bdev_super(struct super_block *s, void *data)
1008 {
1009         return (void *)s->s_bdev == data;
1010 }
1011
1012 struct dentry *mount_bdev(struct file_system_type *fs_type,
1013         int flags, const char *dev_name, void *data,
1014         int (*fill_super)(struct super_block *, void *, int))
1015 {
1016         struct block_device *bdev;
1017         struct super_block *s;
1018         fmode_t mode = FMODE_READ | FMODE_EXCL;
1019         int error = 0;
1020
1021         if (!(flags & MS_RDONLY))
1022                 mode |= FMODE_WRITE;
1023
1024         bdev = blkdev_get_by_path(dev_name, mode, fs_type);
1025         if (IS_ERR(bdev))
1026                 return ERR_CAST(bdev);
1027
1028         /*
1029          * once the super is inserted into the list by sget, s_umount
1030          * will protect the lockfs code from trying to start a snapshot
1031          * while we are mounting
1032          */
1033         mutex_lock(&bdev->bd_fsfreeze_mutex);
1034         if (bdev->bd_fsfreeze_count > 0) {
1035                 mutex_unlock(&bdev->bd_fsfreeze_mutex);
1036                 error = -EBUSY;
1037                 goto error_bdev;
1038         }
1039         s = sget(fs_type, test_bdev_super, set_bdev_super, flags | MS_NOSEC,
1040                  bdev);
1041         mutex_unlock(&bdev->bd_fsfreeze_mutex);
1042         if (IS_ERR(s))
1043                 goto error_s;
1044
1045         if (s->s_root) {
1046                 if ((flags ^ s->s_flags) & MS_RDONLY) {
1047                         deactivate_locked_super(s);
1048                         error = -EBUSY;
1049                         goto error_bdev;
1050                 }
1051
1052                 /*
1053                  * s_umount nests inside bd_mutex during
1054                  * __invalidate_device().  blkdev_put() acquires
1055                  * bd_mutex and can't be called under s_umount.  Drop
1056                  * s_umount temporarily.  This is safe as we're
1057                  * holding an active reference.
1058                  */
1059                 up_write(&s->s_umount);
1060                 blkdev_put(bdev, mode);
1061                 down_write(&s->s_umount);
1062         } else {
1063                 s->s_mode = mode;
1064                 snprintf(s->s_id, sizeof(s->s_id), "%pg", bdev);
1065                 sb_set_blocksize(s, block_size(bdev));
1066                 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
1067                 if (error) {
1068                         deactivate_locked_super(s);
1069                         goto error;
1070                 }
1071
1072                 s->s_flags |= MS_ACTIVE;
1073                 bdev->bd_super = s;
1074         }
1075
1076         return dget(s->s_root);
1077
1078 error_s:
1079         error = PTR_ERR(s);
1080 error_bdev:
1081         blkdev_put(bdev, mode);
1082 error:
1083         return ERR_PTR(error);
1084 }
1085 EXPORT_SYMBOL(mount_bdev);
1086
1087 void kill_block_super(struct super_block *sb)
1088 {
1089         struct block_device *bdev = sb->s_bdev;
1090         fmode_t mode = sb->s_mode;
1091
1092         bdev->bd_super = NULL;
1093         generic_shutdown_super(sb);
1094         sync_blockdev(bdev);
1095         WARN_ON_ONCE(!(mode & FMODE_EXCL));
1096         blkdev_put(bdev, mode | FMODE_EXCL);
1097 }
1098
1099 EXPORT_SYMBOL(kill_block_super);
1100 #endif
1101
1102 struct dentry *mount_nodev(struct file_system_type *fs_type,
1103         int flags, void *data,
1104         int (*fill_super)(struct super_block *, void *, int))
1105 {
1106         int error;
1107         struct super_block *s = sget(fs_type, NULL, set_anon_super, flags, NULL);
1108
1109         if (IS_ERR(s))
1110                 return ERR_CAST(s);
1111
1112         error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
1113         if (error) {
1114                 deactivate_locked_super(s);
1115                 return ERR_PTR(error);
1116         }
1117         s->s_flags |= MS_ACTIVE;
1118         return dget(s->s_root);
1119 }
1120 EXPORT_SYMBOL(mount_nodev);
1121
1122 static int compare_single(struct super_block *s, void *p)
1123 {
1124         return 1;
1125 }
1126
1127 struct dentry *mount_single(struct file_system_type *fs_type,
1128         int flags, void *data,
1129         int (*fill_super)(struct super_block *, void *, int))
1130 {
1131         struct super_block *s;
1132         int error;
1133
1134         s = sget(fs_type, compare_single, set_anon_super, flags, NULL);
1135         if (IS_ERR(s))
1136                 return ERR_CAST(s);
1137         if (!s->s_root) {
1138                 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
1139                 if (error) {
1140                         deactivate_locked_super(s);
1141                         return ERR_PTR(error);
1142                 }
1143                 s->s_flags |= MS_ACTIVE;
1144         } else {
1145                 do_remount_sb(s, flags, data, 0);
1146         }
1147         return dget(s->s_root);
1148 }
1149 EXPORT_SYMBOL(mount_single);
1150
1151 struct dentry *
1152 mount_fs(struct file_system_type *type, int flags, const char *name, void *data)
1153 {
1154         struct dentry *root;
1155         struct super_block *sb;
1156         char *secdata = NULL;
1157         int error = -ENOMEM;
1158
1159         if (data && !(type->fs_flags & FS_BINARY_MOUNTDATA)) {
1160                 secdata = alloc_secdata();
1161                 if (!secdata)
1162                         goto out;
1163
1164                 error = security_sb_copy_data(data, secdata);
1165                 if (error)
1166                         goto out_free_secdata;
1167         }
1168
1169         root = type->mount(type, flags, name, data);
1170         if (IS_ERR(root)) {
1171                 error = PTR_ERR(root);
1172                 goto out_free_secdata;
1173         }
1174         sb = root->d_sb;
1175         BUG_ON(!sb);
1176         WARN_ON(!sb->s_bdi);
1177         sb->s_flags |= MS_BORN;
1178
1179         error = security_sb_kern_mount(sb, flags, secdata);
1180         if (error)
1181                 goto out_sb;
1182
1183         /*
1184          * filesystems should never set s_maxbytes larger than MAX_LFS_FILESIZE
1185          * but s_maxbytes was an unsigned long long for many releases. Throw
1186          * this warning for a little while to try and catch filesystems that
1187          * violate this rule.
1188          */
1189         WARN((sb->s_maxbytes < 0), "%s set sb->s_maxbytes to "
1190                 "negative value (%lld)\n", type->name, sb->s_maxbytes);
1191
1192         up_write(&sb->s_umount);
1193         free_secdata(secdata);
1194         return root;
1195 out_sb:
1196         dput(root);
1197         deactivate_locked_super(sb);
1198 out_free_secdata:
1199         free_secdata(secdata);
1200 out:
1201         return ERR_PTR(error);
1202 }
1203
1204 /*
1205  * This is an internal function, please use sb_end_{write,pagefault,intwrite}
1206  * instead.
1207  */
1208 void __sb_end_write(struct super_block *sb, int level)
1209 {
1210         percpu_up_read(sb->s_writers.rw_sem + level-1);
1211 }
1212 EXPORT_SYMBOL(__sb_end_write);
1213
1214 /*
1215  * This is an internal function, please use sb_start_{write,pagefault,intwrite}
1216  * instead.
1217  */
1218 int __sb_start_write(struct super_block *sb, int level, bool wait)
1219 {
1220         bool force_trylock = false;
1221         int ret = 1;
1222
1223 #ifdef CONFIG_LOCKDEP
1224         /*
1225          * We want lockdep to tell us about possible deadlocks with freezing
1226          * but it's it bit tricky to properly instrument it. Getting a freeze
1227          * protection works as getting a read lock but there are subtle
1228          * problems. XFS for example gets freeze protection on internal level
1229          * twice in some cases, which is OK only because we already hold a
1230          * freeze protection also on higher level. Due to these cases we have
1231          * to use wait == F (trylock mode) which must not fail.
1232          */
1233         if (wait) {
1234                 int i;
1235
1236                 for (i = 0; i < level - 1; i++)
1237                         if (percpu_rwsem_is_held(sb->s_writers.rw_sem + i)) {
1238                                 force_trylock = true;
1239                                 break;
1240                         }
1241         }
1242 #endif
1243         if (wait && !force_trylock)
1244                 percpu_down_read(sb->s_writers.rw_sem + level-1);
1245         else
1246                 ret = percpu_down_read_trylock(sb->s_writers.rw_sem + level-1);
1247
1248         WARN_ON(force_trylock && !ret);
1249         return ret;
1250 }
1251 EXPORT_SYMBOL(__sb_start_write);
1252
1253 /**
1254  * sb_wait_write - wait until all writers to given file system finish
1255  * @sb: the super for which we wait
1256  * @level: type of writers we wait for (normal vs page fault)
1257  *
1258  * This function waits until there are no writers of given type to given file
1259  * system.
1260  */
1261 static void sb_wait_write(struct super_block *sb, int level)
1262 {
1263         percpu_down_write(sb->s_writers.rw_sem + level-1);
1264         /*
1265          * We are going to return to userspace and forget about this lock, the
1266          * ownership goes to the caller of thaw_super() which does unlock.
1267          *
1268          * FIXME: we should do this before return from freeze_super() after we
1269          * called sync_filesystem(sb) and s_op->freeze_fs(sb), and thaw_super()
1270          * should re-acquire these locks before s_op->unfreeze_fs(sb). However
1271          * this leads to lockdep false-positives, so currently we do the early
1272          * release right after acquire.
1273          */
1274         percpu_rwsem_release(sb->s_writers.rw_sem + level-1, 0, _THIS_IP_);
1275 }
1276
1277 static void sb_freeze_unlock(struct super_block *sb)
1278 {
1279         int level;
1280
1281         for (level = 0; level < SB_FREEZE_LEVELS; ++level)
1282                 percpu_rwsem_acquire(sb->s_writers.rw_sem + level, 0, _THIS_IP_);
1283
1284         for (level = SB_FREEZE_LEVELS - 1; level >= 0; level--)
1285                 percpu_up_write(sb->s_writers.rw_sem + level);
1286 }
1287
1288 /**
1289  * freeze_super - lock the filesystem and force it into a consistent state
1290  * @sb: the super to lock
1291  *
1292  * Syncs the super to make sure the filesystem is consistent and calls the fs's
1293  * freeze_fs.  Subsequent calls to this without first thawing the fs will return
1294  * -EBUSY.
1295  *
1296  * During this function, sb->s_writers.frozen goes through these values:
1297  *
1298  * SB_UNFROZEN: File system is normal, all writes progress as usual.
1299  *
1300  * SB_FREEZE_WRITE: The file system is in the process of being frozen.  New
1301  * writes should be blocked, though page faults are still allowed. We wait for
1302  * all writes to complete and then proceed to the next stage.
1303  *
1304  * SB_FREEZE_PAGEFAULT: Freezing continues. Now also page faults are blocked
1305  * but internal fs threads can still modify the filesystem (although they
1306  * should not dirty new pages or inodes), writeback can run etc. After waiting
1307  * for all running page faults we sync the filesystem which will clean all
1308  * dirty pages and inodes (no new dirty pages or inodes can be created when
1309  * sync is running).
1310  *
1311  * SB_FREEZE_FS: The file system is frozen. Now all internal sources of fs
1312  * modification are blocked (e.g. XFS preallocation truncation on inode
1313  * reclaim). This is usually implemented by blocking new transactions for
1314  * filesystems that have them and need this additional guard. After all
1315  * internal writers are finished we call ->freeze_fs() to finish filesystem
1316  * freezing. Then we transition to SB_FREEZE_COMPLETE state. This state is
1317  * mostly auxiliary for filesystems to verify they do not modify frozen fs.
1318  *
1319  * sb->s_writers.frozen is protected by sb->s_umount.
1320  */
1321 int freeze_super(struct super_block *sb)
1322 {
1323         int ret;
1324
1325         atomic_inc(&sb->s_active);
1326         down_write(&sb->s_umount);
1327         if (sb->s_writers.frozen != SB_UNFROZEN) {
1328                 deactivate_locked_super(sb);
1329                 return -EBUSY;
1330         }
1331
1332         if (!(sb->s_flags & MS_BORN)) {
1333                 up_write(&sb->s_umount);
1334                 return 0;       /* sic - it's "nothing to do" */
1335         }
1336
1337         if (sb->s_flags & MS_RDONLY) {
1338                 /* Nothing to do really... */
1339                 sb->s_writers.frozen = SB_FREEZE_COMPLETE;
1340                 up_write(&sb->s_umount);
1341                 return 0;
1342         }
1343
1344         sb->s_writers.frozen = SB_FREEZE_WRITE;
1345         /* Release s_umount to preserve sb_start_write -> s_umount ordering */
1346         up_write(&sb->s_umount);
1347         sb_wait_write(sb, SB_FREEZE_WRITE);
1348         down_write(&sb->s_umount);
1349
1350         /* Now we go and block page faults... */
1351         sb->s_writers.frozen = SB_FREEZE_PAGEFAULT;
1352         sb_wait_write(sb, SB_FREEZE_PAGEFAULT);
1353
1354         /* All writers are done so after syncing there won't be dirty data */
1355         sync_filesystem(sb);
1356
1357         /* Now wait for internal filesystem counter */
1358         sb->s_writers.frozen = SB_FREEZE_FS;
1359         sb_wait_write(sb, SB_FREEZE_FS);
1360
1361         if (sb->s_op->freeze_fs) {
1362                 ret = sb->s_op->freeze_fs(sb);
1363                 if (ret) {
1364                         printk(KERN_ERR
1365                                 "VFS:Filesystem freeze failed\n");
1366                         sb->s_writers.frozen = SB_UNFROZEN;
1367                         sb_freeze_unlock(sb);
1368                         wake_up(&sb->s_writers.wait_unfrozen);
1369                         deactivate_locked_super(sb);
1370                         return ret;
1371                 }
1372         }
1373         /*
1374          * This is just for debugging purposes so that fs can warn if it
1375          * sees write activity when frozen is set to SB_FREEZE_COMPLETE.
1376          */
1377         sb->s_writers.frozen = SB_FREEZE_COMPLETE;
1378         up_write(&sb->s_umount);
1379         return 0;
1380 }
1381 EXPORT_SYMBOL(freeze_super);
1382
1383 /**
1384  * thaw_super -- unlock filesystem
1385  * @sb: the super to thaw
1386  *
1387  * Unlocks the filesystem and marks it writeable again after freeze_super().
1388  */
1389 int thaw_super(struct super_block *sb)
1390 {
1391         int error;
1392
1393         down_write(&sb->s_umount);
1394         if (sb->s_writers.frozen == SB_UNFROZEN) {
1395                 up_write(&sb->s_umount);
1396                 return -EINVAL;
1397         }
1398
1399         if (sb->s_flags & MS_RDONLY) {
1400                 sb->s_writers.frozen = SB_UNFROZEN;
1401                 goto out;
1402         }
1403
1404         if (sb->s_op->unfreeze_fs) {
1405                 error = sb->s_op->unfreeze_fs(sb);
1406                 if (error) {
1407                         printk(KERN_ERR
1408                                 "VFS:Filesystem thaw failed\n");
1409                         up_write(&sb->s_umount);
1410                         return error;
1411                 }
1412         }
1413
1414         sb->s_writers.frozen = SB_UNFROZEN;
1415         sb_freeze_unlock(sb);
1416 out:
1417         wake_up(&sb->s_writers.wait_unfrozen);
1418         deactivate_locked_super(sb);
1419         return 0;
1420 }
1421 EXPORT_SYMBOL(thaw_super);