1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 1991, 1992 Linus Torvalds
7 * super.c contains code to handle: - mount structures
9 * - filesystem drivers list
11 * - umount system call
14 * GK 2/5/95 - Changed to support mounting the root fs via NFS
16 * Added kerneld support: Jacques Gelinas and Bjorn Ekwall
17 * Added change_root: Werner Almesberger & Hans Lermen, Feb '96
18 * Added options to /proc/mounts:
19 * Torbjörn Lindh (torbjorn.lindh@gopta.se), April 14, 1996.
20 * Added devfs support: Richard Gooch <rgooch@atnf.csiro.au>, 13-JAN-1998
21 * Heavily rewritten for 'one fs - one tree' dcache architecture. AV, Mar 2000
24 #include <linux/export.h>
25 #include <linux/slab.h>
26 #include <linux/blkdev.h>
27 #include <linux/mount.h>
28 #include <linux/security.h>
29 #include <linux/writeback.h> /* for the emergency remount stuff */
30 #include <linux/idr.h>
31 #include <linux/mutex.h>
32 #include <linux/backing-dev.h>
33 #include <linux/rculist_bl.h>
34 #include <linux/cleancache.h>
35 #include <linux/fsnotify.h>
36 #include <linux/lockdep.h>
37 #include <linux/user_namespace.h>
40 static int thaw_super_locked(struct super_block
*sb
);
42 static LIST_HEAD(super_blocks
);
43 static DEFINE_SPINLOCK(sb_lock
);
45 static char *sb_writers_name
[SB_FREEZE_LEVELS
] = {
52 * One thing we have to be careful of with a per-sb shrinker is that we don't
53 * drop the last active reference to the superblock from within the shrinker.
54 * If that happens we could trigger unregistering the shrinker from within the
55 * shrinker path and that leads to deadlock on the shrinker_rwsem. Hence we
56 * take a passive reference to the superblock to avoid this from occurring.
58 static unsigned long super_cache_scan(struct shrinker
*shrink
,
59 struct shrink_control
*sc
)
61 struct super_block
*sb
;
68 sb
= container_of(shrink
, struct super_block
, s_shrink
);
71 * Deadlock avoidance. We may hold various FS locks, and we don't want
72 * to recurse into the FS that called us in clear_inode() and friends..
74 if (!(sc
->gfp_mask
& __GFP_FS
))
77 if (!trylock_super(sb
))
80 if (sb
->s_op
->nr_cached_objects
)
81 fs_objects
= sb
->s_op
->nr_cached_objects(sb
, sc
);
83 inodes
= list_lru_shrink_count(&sb
->s_inode_lru
, sc
);
84 dentries
= list_lru_shrink_count(&sb
->s_dentry_lru
, sc
);
85 total_objects
= dentries
+ inodes
+ fs_objects
+ 1;
89 /* proportion the scan between the caches */
90 dentries
= mult_frac(sc
->nr_to_scan
, dentries
, total_objects
);
91 inodes
= mult_frac(sc
->nr_to_scan
, inodes
, total_objects
);
92 fs_objects
= mult_frac(sc
->nr_to_scan
, fs_objects
, total_objects
);
95 * prune the dcache first as the icache is pinned by it, then
96 * prune the icache, followed by the filesystem specific caches
98 * Ensure that we always scan at least one object - memcg kmem
99 * accounting uses this to fully empty the caches.
101 sc
->nr_to_scan
= dentries
+ 1;
102 freed
= prune_dcache_sb(sb
, sc
);
103 sc
->nr_to_scan
= inodes
+ 1;
104 freed
+= prune_icache_sb(sb
, sc
);
107 sc
->nr_to_scan
= fs_objects
+ 1;
108 freed
+= sb
->s_op
->free_cached_objects(sb
, sc
);
111 up_read(&sb
->s_umount
);
115 static unsigned long super_cache_count(struct shrinker
*shrink
,
116 struct shrink_control
*sc
)
118 struct super_block
*sb
;
119 long total_objects
= 0;
121 sb
= container_of(shrink
, struct super_block
, s_shrink
);
124 * We don't call trylock_super() here as it is a scalability bottleneck,
125 * so we're exposed to partial setup state. The shrinker rwsem does not
126 * protect filesystem operations backing list_lru_shrink_count() or
127 * s_op->nr_cached_objects(). Counts can change between
128 * super_cache_count and super_cache_scan, so we really don't need locks
131 * However, if we are currently mounting the superblock, the underlying
132 * filesystem might be in a state of partial construction and hence it
133 * is dangerous to access it. trylock_super() uses a SB_BORN check to
134 * avoid this situation, so do the same here. The memory barrier is
135 * matched with the one in mount_fs() as we don't hold locks here.
137 if (!(sb
->s_flags
& SB_BORN
))
141 if (sb
->s_op
&& sb
->s_op
->nr_cached_objects
)
142 total_objects
= sb
->s_op
->nr_cached_objects(sb
, sc
);
144 total_objects
+= list_lru_shrink_count(&sb
->s_dentry_lru
, sc
);
145 total_objects
+= list_lru_shrink_count(&sb
->s_inode_lru
, sc
);
150 total_objects
= vfs_pressure_ratio(total_objects
);
151 return total_objects
;
154 static void destroy_super_work(struct work_struct
*work
)
156 struct super_block
*s
= container_of(work
, struct super_block
,
160 for (i
= 0; i
< SB_FREEZE_LEVELS
; i
++)
161 percpu_free_rwsem(&s
->s_writers
.rw_sem
[i
]);
165 static void destroy_super_rcu(struct rcu_head
*head
)
167 struct super_block
*s
= container_of(head
, struct super_block
, rcu
);
168 INIT_WORK(&s
->destroy_work
, destroy_super_work
);
169 schedule_work(&s
->destroy_work
);
172 /* Free a superblock that has never been seen by anyone */
173 static void destroy_unused_super(struct super_block
*s
)
177 up_write(&s
->s_umount
);
178 list_lru_destroy(&s
->s_dentry_lru
);
179 list_lru_destroy(&s
->s_inode_lru
);
181 put_user_ns(s
->s_user_ns
);
183 free_prealloced_shrinker(&s
->s_shrink
);
184 /* no delays needed */
185 destroy_super_work(&s
->destroy_work
);
189 * alloc_super - create new superblock
190 * @type: filesystem type superblock should belong to
191 * @flags: the mount flags
192 * @user_ns: User namespace for the super_block
194 * Allocates and initializes a new &struct super_block. alloc_super()
195 * returns a pointer new superblock or %NULL if allocation had failed.
197 static struct super_block
*alloc_super(struct file_system_type
*type
, int flags
,
198 struct user_namespace
*user_ns
)
200 struct super_block
*s
= kzalloc(sizeof(struct super_block
), GFP_USER
);
201 static const struct super_operations default_op
;
207 INIT_LIST_HEAD(&s
->s_mounts
);
208 s
->s_user_ns
= get_user_ns(user_ns
);
209 init_rwsem(&s
->s_umount
);
210 lockdep_set_class(&s
->s_umount
, &type
->s_umount_key
);
212 * sget() can have s_umount recursion.
214 * When it cannot find a suitable sb, it allocates a new
215 * one (this one), and tries again to find a suitable old
218 * In case that succeeds, it will acquire the s_umount
219 * lock of the old one. Since these are clearly distrinct
220 * locks, and this object isn't exposed yet, there's no
223 * Annotate this by putting this lock in a different
226 down_write_nested(&s
->s_umount
, SINGLE_DEPTH_NESTING
);
228 if (security_sb_alloc(s
))
231 for (i
= 0; i
< SB_FREEZE_LEVELS
; i
++) {
232 if (__percpu_init_rwsem(&s
->s_writers
.rw_sem
[i
],
234 &type
->s_writers_key
[i
]))
237 init_waitqueue_head(&s
->s_writers
.wait_unfrozen
);
238 s
->s_bdi
= &noop_backing_dev_info
;
240 if (s
->s_user_ns
!= &init_user_ns
)
241 s
->s_iflags
|= SB_I_NODEV
;
242 INIT_HLIST_NODE(&s
->s_instances
);
243 INIT_HLIST_BL_HEAD(&s
->s_roots
);
244 mutex_init(&s
->s_sync_lock
);
245 INIT_LIST_HEAD(&s
->s_inodes
);
246 spin_lock_init(&s
->s_inode_list_lock
);
247 INIT_LIST_HEAD(&s
->s_inodes_wb
);
248 spin_lock_init(&s
->s_inode_wblist_lock
);
251 atomic_set(&s
->s_active
, 1);
252 mutex_init(&s
->s_vfs_rename_mutex
);
253 lockdep_set_class(&s
->s_vfs_rename_mutex
, &type
->s_vfs_rename_key
);
254 init_rwsem(&s
->s_dquot
.dqio_sem
);
255 s
->s_maxbytes
= MAX_NON_LFS
;
256 s
->s_op
= &default_op
;
257 s
->s_time_gran
= 1000000000;
258 s
->cleancache_poolid
= CLEANCACHE_NO_POOL
;
260 s
->s_shrink
.seeks
= DEFAULT_SEEKS
;
261 s
->s_shrink
.scan_objects
= super_cache_scan
;
262 s
->s_shrink
.count_objects
= super_cache_count
;
263 s
->s_shrink
.batch
= 1024;
264 s
->s_shrink
.flags
= SHRINKER_NUMA_AWARE
| SHRINKER_MEMCG_AWARE
;
265 if (prealloc_shrinker(&s
->s_shrink
))
267 if (list_lru_init_memcg(&s
->s_dentry_lru
, &s
->s_shrink
))
269 if (list_lru_init_memcg(&s
->s_inode_lru
, &s
->s_shrink
))
274 destroy_unused_super(s
);
278 /* Superblock refcounting */
281 * Drop a superblock's refcount. The caller must hold sb_lock.
283 static void __put_super(struct super_block
*s
)
286 list_del_init(&s
->s_list
);
287 WARN_ON(s
->s_dentry_lru
.node
);
288 WARN_ON(s
->s_inode_lru
.node
);
289 WARN_ON(!list_empty(&s
->s_mounts
));
291 put_user_ns(s
->s_user_ns
);
293 call_rcu(&s
->rcu
, destroy_super_rcu
);
298 * put_super - drop a temporary reference to superblock
299 * @sb: superblock in question
301 * Drops a temporary reference, frees superblock if there's no
304 static void put_super(struct super_block
*sb
)
308 spin_unlock(&sb_lock
);
313 * deactivate_locked_super - drop an active reference to superblock
314 * @s: superblock to deactivate
316 * Drops an active reference to superblock, converting it into a temporary
317 * one if there is no other active references left. In that case we
318 * tell fs driver to shut it down and drop the temporary reference we
321 * Caller holds exclusive lock on superblock; that lock is released.
323 void deactivate_locked_super(struct super_block
*s
)
325 struct file_system_type
*fs
= s
->s_type
;
326 if (atomic_dec_and_test(&s
->s_active
)) {
327 cleancache_invalidate_fs(s
);
328 unregister_shrinker(&s
->s_shrink
);
332 * Since list_lru_destroy() may sleep, we cannot call it from
333 * put_super(), where we hold the sb_lock. Therefore we destroy
334 * the lru lists right now.
336 list_lru_destroy(&s
->s_dentry_lru
);
337 list_lru_destroy(&s
->s_inode_lru
);
342 up_write(&s
->s_umount
);
346 EXPORT_SYMBOL(deactivate_locked_super
);
349 * deactivate_super - drop an active reference to superblock
350 * @s: superblock to deactivate
352 * Variant of deactivate_locked_super(), except that superblock is *not*
353 * locked by caller. If we are going to drop the final active reference,
354 * lock will be acquired prior to that.
356 void deactivate_super(struct super_block
*s
)
358 if (!atomic_add_unless(&s
->s_active
, -1, 1)) {
359 down_write(&s
->s_umount
);
360 deactivate_locked_super(s
);
364 EXPORT_SYMBOL(deactivate_super
);
367 * grab_super - acquire an active reference
368 * @s: reference we are trying to make active
370 * Tries to acquire an active reference. grab_super() is used when we
371 * had just found a superblock in super_blocks or fs_type->fs_supers
372 * and want to turn it into a full-blown active reference. grab_super()
373 * is called with sb_lock held and drops it. Returns 1 in case of
374 * success, 0 if we had failed (superblock contents was already dead or
375 * dying when grab_super() had been called). Note that this is only
376 * called for superblocks not in rundown mode (== ones still on ->fs_supers
377 * of their type), so increment of ->s_count is OK here.
379 static int grab_super(struct super_block
*s
) __releases(sb_lock
)
382 spin_unlock(&sb_lock
);
383 down_write(&s
->s_umount
);
384 if ((s
->s_flags
& SB_BORN
) && atomic_inc_not_zero(&s
->s_active
)) {
388 up_write(&s
->s_umount
);
394 * trylock_super - try to grab ->s_umount shared
395 * @sb: reference we are trying to grab
397 * Try to prevent fs shutdown. This is used in places where we
398 * cannot take an active reference but we need to ensure that the
399 * filesystem is not shut down while we are working on it. It returns
400 * false if we cannot acquire s_umount or if we lose the race and
401 * filesystem already got into shutdown, and returns true with the s_umount
402 * lock held in read mode in case of success. On successful return,
403 * the caller must drop the s_umount lock when done.
405 * Note that unlike get_super() et.al. this one does *not* bump ->s_count.
406 * The reason why it's safe is that we are OK with doing trylock instead
407 * of down_read(). There's a couple of places that are OK with that, but
408 * it's very much not a general-purpose interface.
410 bool trylock_super(struct super_block
*sb
)
412 if (down_read_trylock(&sb
->s_umount
)) {
413 if (!hlist_unhashed(&sb
->s_instances
) &&
414 sb
->s_root
&& (sb
->s_flags
& SB_BORN
))
416 up_read(&sb
->s_umount
);
423 * generic_shutdown_super - common helper for ->kill_sb()
424 * @sb: superblock to kill
426 * generic_shutdown_super() does all fs-independent work on superblock
427 * shutdown. Typical ->kill_sb() should pick all fs-specific objects
428 * that need destruction out of superblock, call generic_shutdown_super()
429 * and release aforementioned objects. Note: dentries and inodes _are_
430 * taken care of and do not need specific handling.
432 * Upon calling this function, the filesystem may no longer alter or
433 * rearrange the set of dentries belonging to this super_block, nor may it
434 * change the attachments of dentries to inodes.
436 void generic_shutdown_super(struct super_block
*sb
)
438 const struct super_operations
*sop
= sb
->s_op
;
441 shrink_dcache_for_umount(sb
);
443 sb
->s_flags
&= ~SB_ACTIVE
;
445 fsnotify_unmount_inodes(sb
);
446 cgroup_writeback_umount();
450 if (sb
->s_dio_done_wq
) {
451 destroy_workqueue(sb
->s_dio_done_wq
);
452 sb
->s_dio_done_wq
= NULL
;
458 if (!list_empty(&sb
->s_inodes
)) {
459 printk("VFS: Busy inodes after unmount of %s. "
460 "Self-destruct in 5 seconds. Have a nice day...\n",
465 /* should be initialized for __put_super_and_need_restart() */
466 hlist_del_init(&sb
->s_instances
);
467 spin_unlock(&sb_lock
);
468 up_write(&sb
->s_umount
);
469 if (sb
->s_bdi
!= &noop_backing_dev_info
) {
471 sb
->s_bdi
= &noop_backing_dev_info
;
475 EXPORT_SYMBOL(generic_shutdown_super
);
478 * sget_userns - find or create a superblock
479 * @type: filesystem type superblock should belong to
480 * @test: comparison callback
481 * @set: setup callback
482 * @flags: mount flags
483 * @user_ns: User namespace for the super_block
484 * @data: argument to each of them
486 struct super_block
*sget_userns(struct file_system_type
*type
,
487 int (*test
)(struct super_block
*,void *),
488 int (*set
)(struct super_block
*,void *),
489 int flags
, struct user_namespace
*user_ns
,
492 struct super_block
*s
= NULL
;
493 struct super_block
*old
;
496 if (!(flags
& (SB_KERNMOUNT
|SB_SUBMOUNT
)) &&
497 !(type
->fs_flags
& FS_USERNS_MOUNT
) &&
498 !capable(CAP_SYS_ADMIN
))
499 return ERR_PTR(-EPERM
);
503 hlist_for_each_entry(old
, &type
->fs_supers
, s_instances
) {
504 if (!test(old
, data
))
506 if (user_ns
!= old
->s_user_ns
) {
507 spin_unlock(&sb_lock
);
508 destroy_unused_super(s
);
509 return ERR_PTR(-EBUSY
);
511 if (!grab_super(old
))
513 destroy_unused_super(s
);
518 spin_unlock(&sb_lock
);
519 s
= alloc_super(type
, (flags
& ~SB_SUBMOUNT
), user_ns
);
521 return ERR_PTR(-ENOMEM
);
527 spin_unlock(&sb_lock
);
528 destroy_unused_super(s
);
532 strlcpy(s
->s_id
, type
->name
, sizeof(s
->s_id
));
533 list_add_tail(&s
->s_list
, &super_blocks
);
534 hlist_add_head(&s
->s_instances
, &type
->fs_supers
);
535 spin_unlock(&sb_lock
);
536 get_filesystem(type
);
537 register_shrinker_prepared(&s
->s_shrink
);
541 EXPORT_SYMBOL(sget_userns
);
544 * sget - find or create a superblock
545 * @type: filesystem type superblock should belong to
546 * @test: comparison callback
547 * @set: setup callback
548 * @flags: mount flags
549 * @data: argument to each of them
551 struct super_block
*sget(struct file_system_type
*type
,
552 int (*test
)(struct super_block
*,void *),
553 int (*set
)(struct super_block
*,void *),
557 struct user_namespace
*user_ns
= current_user_ns();
559 /* We don't yet pass the user namespace of the parent
560 * mount through to here so always use &init_user_ns
561 * until that changes.
563 if (flags
& SB_SUBMOUNT
)
564 user_ns
= &init_user_ns
;
566 /* Ensure the requestor has permissions over the target filesystem */
567 if (!(flags
& (SB_KERNMOUNT
|SB_SUBMOUNT
)) && !ns_capable(user_ns
, CAP_SYS_ADMIN
))
568 return ERR_PTR(-EPERM
);
570 return sget_userns(type
, test
, set
, flags
, user_ns
, data
);
575 void drop_super(struct super_block
*sb
)
577 up_read(&sb
->s_umount
);
581 EXPORT_SYMBOL(drop_super
);
583 void drop_super_exclusive(struct super_block
*sb
)
585 up_write(&sb
->s_umount
);
588 EXPORT_SYMBOL(drop_super_exclusive
);
590 static void __iterate_supers(void (*f
)(struct super_block
*))
592 struct super_block
*sb
, *p
= NULL
;
595 list_for_each_entry(sb
, &super_blocks
, s_list
) {
596 if (hlist_unhashed(&sb
->s_instances
))
599 spin_unlock(&sb_lock
);
610 spin_unlock(&sb_lock
);
613 * iterate_supers - call function for all active superblocks
614 * @f: function to call
615 * @arg: argument to pass to it
617 * Scans the superblock list and calls given function, passing it
618 * locked superblock and given argument.
620 void iterate_supers(void (*f
)(struct super_block
*, void *), void *arg
)
622 struct super_block
*sb
, *p
= NULL
;
625 list_for_each_entry(sb
, &super_blocks
, s_list
) {
626 if (hlist_unhashed(&sb
->s_instances
))
629 spin_unlock(&sb_lock
);
631 down_read(&sb
->s_umount
);
632 if (sb
->s_root
&& (sb
->s_flags
& SB_BORN
))
634 up_read(&sb
->s_umount
);
643 spin_unlock(&sb_lock
);
647 * iterate_supers_type - call function for superblocks of given type
649 * @f: function to call
650 * @arg: argument to pass to it
652 * Scans the superblock list and calls given function, passing it
653 * locked superblock and given argument.
655 void iterate_supers_type(struct file_system_type
*type
,
656 void (*f
)(struct super_block
*, void *), void *arg
)
658 struct super_block
*sb
, *p
= NULL
;
661 hlist_for_each_entry(sb
, &type
->fs_supers
, s_instances
) {
663 spin_unlock(&sb_lock
);
665 down_read(&sb
->s_umount
);
666 if (sb
->s_root
&& (sb
->s_flags
& SB_BORN
))
668 up_read(&sb
->s_umount
);
677 spin_unlock(&sb_lock
);
680 EXPORT_SYMBOL(iterate_supers_type
);
682 static struct super_block
*__get_super(struct block_device
*bdev
, bool excl
)
684 struct super_block
*sb
;
691 list_for_each_entry(sb
, &super_blocks
, s_list
) {
692 if (hlist_unhashed(&sb
->s_instances
))
694 if (sb
->s_bdev
== bdev
) {
696 spin_unlock(&sb_lock
);
698 down_read(&sb
->s_umount
);
700 down_write(&sb
->s_umount
);
702 if (sb
->s_root
&& (sb
->s_flags
& SB_BORN
))
705 up_read(&sb
->s_umount
);
707 up_write(&sb
->s_umount
);
708 /* nope, got unmounted */
714 spin_unlock(&sb_lock
);
719 * get_super - get the superblock of a device
720 * @bdev: device to get the superblock for
722 * Scans the superblock list and finds the superblock of the file system
723 * mounted on the device given. %NULL is returned if no match is found.
725 struct super_block
*get_super(struct block_device
*bdev
)
727 return __get_super(bdev
, false);
729 EXPORT_SYMBOL(get_super
);
731 static struct super_block
*__get_super_thawed(struct block_device
*bdev
,
735 struct super_block
*s
= __get_super(bdev
, excl
);
736 if (!s
|| s
->s_writers
.frozen
== SB_UNFROZEN
)
739 up_read(&s
->s_umount
);
741 up_write(&s
->s_umount
);
742 wait_event(s
->s_writers
.wait_unfrozen
,
743 s
->s_writers
.frozen
== SB_UNFROZEN
);
749 * get_super_thawed - get thawed superblock of a device
750 * @bdev: device to get the superblock for
752 * Scans the superblock list and finds the superblock of the file system
753 * mounted on the device. The superblock is returned once it is thawed
754 * (or immediately if it was not frozen). %NULL is returned if no match
757 struct super_block
*get_super_thawed(struct block_device
*bdev
)
759 return __get_super_thawed(bdev
, false);
761 EXPORT_SYMBOL(get_super_thawed
);
764 * get_super_exclusive_thawed - get thawed superblock of a device
765 * @bdev: device to get the superblock for
767 * Scans the superblock list and finds the superblock of the file system
768 * mounted on the device. The superblock is returned once it is thawed
769 * (or immediately if it was not frozen) and s_umount semaphore is held
770 * in exclusive mode. %NULL is returned if no match is found.
772 struct super_block
*get_super_exclusive_thawed(struct block_device
*bdev
)
774 return __get_super_thawed(bdev
, true);
776 EXPORT_SYMBOL(get_super_exclusive_thawed
);
779 * get_active_super - get an active reference to the superblock of a device
780 * @bdev: device to get the superblock for
782 * Scans the superblock list and finds the superblock of the file system
783 * mounted on the device given. Returns the superblock with an active
784 * reference or %NULL if none was found.
786 struct super_block
*get_active_super(struct block_device
*bdev
)
788 struct super_block
*sb
;
795 list_for_each_entry(sb
, &super_blocks
, s_list
) {
796 if (hlist_unhashed(&sb
->s_instances
))
798 if (sb
->s_bdev
== bdev
) {
801 up_write(&sb
->s_umount
);
805 spin_unlock(&sb_lock
);
809 struct super_block
*user_get_super(dev_t dev
)
811 struct super_block
*sb
;
815 list_for_each_entry(sb
, &super_blocks
, s_list
) {
816 if (hlist_unhashed(&sb
->s_instances
))
818 if (sb
->s_dev
== dev
) {
820 spin_unlock(&sb_lock
);
821 down_read(&sb
->s_umount
);
823 if (sb
->s_root
&& (sb
->s_flags
& SB_BORN
))
825 up_read(&sb
->s_umount
);
826 /* nope, got unmounted */
832 spin_unlock(&sb_lock
);
837 * do_remount_sb - asks filesystem to change mount options.
838 * @sb: superblock in question
839 * @sb_flags: revised superblock flags
840 * @data: the rest of options
841 * @force: whether or not to force the change
843 * Alters the mount options of a mounted file system.
845 int do_remount_sb(struct super_block
*sb
, int sb_flags
, void *data
, int force
)
850 if (sb
->s_writers
.frozen
!= SB_UNFROZEN
)
854 if (!(sb_flags
& SB_RDONLY
) && bdev_read_only(sb
->s_bdev
))
858 remount_ro
= (sb_flags
& SB_RDONLY
) && !sb_rdonly(sb
);
861 if (!hlist_empty(&sb
->s_pins
)) {
862 up_write(&sb
->s_umount
);
863 group_pin_kill(&sb
->s_pins
);
864 down_write(&sb
->s_umount
);
867 if (sb
->s_writers
.frozen
!= SB_UNFROZEN
)
869 remount_ro
= (sb_flags
& SB_RDONLY
) && !sb_rdonly(sb
);
872 shrink_dcache_sb(sb
);
874 /* If we are remounting RDONLY and current sb is read/write,
875 make sure there are no rw files opened */
878 sb
->s_readonly_remount
= 1;
881 retval
= sb_prepare_remount_readonly(sb
);
887 if (sb
->s_op
->remount_fs
) {
888 retval
= sb
->s_op
->remount_fs(sb
, &sb_flags
, data
);
891 goto cancel_readonly
;
892 /* If forced remount, go ahead despite any errors */
893 WARN(1, "forced remount of a %s fs returned %i\n",
894 sb
->s_type
->name
, retval
);
897 sb
->s_flags
= (sb
->s_flags
& ~MS_RMT_MASK
) | (sb_flags
& MS_RMT_MASK
);
898 /* Needs to be ordered wrt mnt_is_readonly() */
900 sb
->s_readonly_remount
= 0;
903 * Some filesystems modify their metadata via some other path than the
904 * bdev buffer cache (eg. use a private mapping, or directories in
905 * pagecache, etc). Also file data modifications go via their own
906 * mappings. So If we try to mount readonly then copy the filesystem
907 * from bdev, we could get stale data, so invalidate it to give a best
908 * effort at coherency.
910 if (remount_ro
&& sb
->s_bdev
)
911 invalidate_bdev(sb
->s_bdev
);
915 sb
->s_readonly_remount
= 0;
919 static void do_emergency_remount_callback(struct super_block
*sb
)
921 down_write(&sb
->s_umount
);
922 if (sb
->s_root
&& sb
->s_bdev
&& (sb
->s_flags
& SB_BORN
) &&
925 * What lock protects sb->s_flags??
927 do_remount_sb(sb
, SB_RDONLY
, NULL
, 1);
929 up_write(&sb
->s_umount
);
932 static void do_emergency_remount(struct work_struct
*work
)
934 __iterate_supers(do_emergency_remount_callback
);
936 printk("Emergency Remount complete\n");
939 void emergency_remount(void)
941 struct work_struct
*work
;
943 work
= kmalloc(sizeof(*work
), GFP_ATOMIC
);
945 INIT_WORK(work
, do_emergency_remount
);
950 static void do_thaw_all_callback(struct super_block
*sb
)
952 down_write(&sb
->s_umount
);
953 if (sb
->s_root
&& sb
->s_flags
& SB_BORN
) {
954 emergency_thaw_bdev(sb
);
955 thaw_super_locked(sb
);
957 up_write(&sb
->s_umount
);
961 static void do_thaw_all(struct work_struct
*work
)
963 __iterate_supers(do_thaw_all_callback
);
965 printk(KERN_WARNING
"Emergency Thaw complete\n");
969 * emergency_thaw_all -- forcibly thaw every frozen filesystem
971 * Used for emergency unfreeze of all filesystems via SysRq
973 void emergency_thaw_all(void)
975 struct work_struct
*work
;
977 work
= kmalloc(sizeof(*work
), GFP_ATOMIC
);
979 INIT_WORK(work
, do_thaw_all
);
984 static DEFINE_IDA(unnamed_dev_ida
);
987 * get_anon_bdev - Allocate a block device for filesystems which don't have one.
988 * @p: Pointer to a dev_t.
990 * Filesystems which don't use real block devices can call this function
991 * to allocate a virtual block device.
993 * Context: Any context. Frequently called while holding sb_lock.
994 * Return: 0 on success, -EMFILE if there are no anonymous bdevs left
995 * or -ENOMEM if memory allocation failed.
997 int get_anon_bdev(dev_t
*p
)
1002 * Many userspace utilities consider an FSID of 0 invalid.
1003 * Always return at least 1 from get_anon_bdev.
1005 dev
= ida_alloc_range(&unnamed_dev_ida
, 1, (1 << MINORBITS
) - 1,
1015 EXPORT_SYMBOL(get_anon_bdev
);
1017 void free_anon_bdev(dev_t dev
)
1019 ida_free(&unnamed_dev_ida
, MINOR(dev
));
1021 EXPORT_SYMBOL(free_anon_bdev
);
1023 int set_anon_super(struct super_block
*s
, void *data
)
1025 return get_anon_bdev(&s
->s_dev
);
1027 EXPORT_SYMBOL(set_anon_super
);
1029 void kill_anon_super(struct super_block
*sb
)
1031 dev_t dev
= sb
->s_dev
;
1032 generic_shutdown_super(sb
);
1033 free_anon_bdev(dev
);
1035 EXPORT_SYMBOL(kill_anon_super
);
1037 void kill_litter_super(struct super_block
*sb
)
1040 d_genocide(sb
->s_root
);
1041 kill_anon_super(sb
);
1043 EXPORT_SYMBOL(kill_litter_super
);
1045 static int ns_test_super(struct super_block
*sb
, void *data
)
1047 return sb
->s_fs_info
== data
;
1050 static int ns_set_super(struct super_block
*sb
, void *data
)
1052 sb
->s_fs_info
= data
;
1053 return set_anon_super(sb
, NULL
);
1056 struct dentry
*mount_ns(struct file_system_type
*fs_type
,
1057 int flags
, void *data
, void *ns
, struct user_namespace
*user_ns
,
1058 int (*fill_super
)(struct super_block
*, void *, int))
1060 struct super_block
*sb
;
1062 /* Don't allow mounting unless the caller has CAP_SYS_ADMIN
1063 * over the namespace.
1065 if (!(flags
& SB_KERNMOUNT
) && !ns_capable(user_ns
, CAP_SYS_ADMIN
))
1066 return ERR_PTR(-EPERM
);
1068 sb
= sget_userns(fs_type
, ns_test_super
, ns_set_super
, flags
,
1071 return ERR_CAST(sb
);
1075 err
= fill_super(sb
, data
, flags
& SB_SILENT
? 1 : 0);
1077 deactivate_locked_super(sb
);
1078 return ERR_PTR(err
);
1081 sb
->s_flags
|= SB_ACTIVE
;
1084 return dget(sb
->s_root
);
1087 EXPORT_SYMBOL(mount_ns
);
1090 static int set_bdev_super(struct super_block
*s
, void *data
)
1093 s
->s_dev
= s
->s_bdev
->bd_dev
;
1094 s
->s_bdi
= bdi_get(s
->s_bdev
->bd_bdi
);
1099 static int test_bdev_super(struct super_block
*s
, void *data
)
1101 return (void *)s
->s_bdev
== data
;
1104 struct dentry
*mount_bdev(struct file_system_type
*fs_type
,
1105 int flags
, const char *dev_name
, void *data
,
1106 int (*fill_super
)(struct super_block
*, void *, int))
1108 struct block_device
*bdev
;
1109 struct super_block
*s
;
1110 fmode_t mode
= FMODE_READ
| FMODE_EXCL
;
1113 if (!(flags
& SB_RDONLY
))
1114 mode
|= FMODE_WRITE
;
1116 bdev
= blkdev_get_by_path(dev_name
, mode
, fs_type
);
1118 return ERR_CAST(bdev
);
1121 * once the super is inserted into the list by sget, s_umount
1122 * will protect the lockfs code from trying to start a snapshot
1123 * while we are mounting
1125 mutex_lock(&bdev
->bd_fsfreeze_mutex
);
1126 if (bdev
->bd_fsfreeze_count
> 0) {
1127 mutex_unlock(&bdev
->bd_fsfreeze_mutex
);
1131 s
= sget(fs_type
, test_bdev_super
, set_bdev_super
, flags
| SB_NOSEC
,
1133 mutex_unlock(&bdev
->bd_fsfreeze_mutex
);
1138 if ((flags
^ s
->s_flags
) & SB_RDONLY
) {
1139 deactivate_locked_super(s
);
1145 * s_umount nests inside bd_mutex during
1146 * __invalidate_device(). blkdev_put() acquires
1147 * bd_mutex and can't be called under s_umount. Drop
1148 * s_umount temporarily. This is safe as we're
1149 * holding an active reference.
1151 up_write(&s
->s_umount
);
1152 blkdev_put(bdev
, mode
);
1153 down_write(&s
->s_umount
);
1156 snprintf(s
->s_id
, sizeof(s
->s_id
), "%pg", bdev
);
1157 sb_set_blocksize(s
, block_size(bdev
));
1158 error
= fill_super(s
, data
, flags
& SB_SILENT
? 1 : 0);
1160 deactivate_locked_super(s
);
1164 s
->s_flags
|= SB_ACTIVE
;
1168 return dget(s
->s_root
);
1173 blkdev_put(bdev
, mode
);
1175 return ERR_PTR(error
);
1177 EXPORT_SYMBOL(mount_bdev
);
1179 void kill_block_super(struct super_block
*sb
)
1181 struct block_device
*bdev
= sb
->s_bdev
;
1182 fmode_t mode
= sb
->s_mode
;
1184 bdev
->bd_super
= NULL
;
1185 generic_shutdown_super(sb
);
1186 sync_blockdev(bdev
);
1187 WARN_ON_ONCE(!(mode
& FMODE_EXCL
));
1188 blkdev_put(bdev
, mode
| FMODE_EXCL
);
1191 EXPORT_SYMBOL(kill_block_super
);
1194 struct dentry
*mount_nodev(struct file_system_type
*fs_type
,
1195 int flags
, void *data
,
1196 int (*fill_super
)(struct super_block
*, void *, int))
1199 struct super_block
*s
= sget(fs_type
, NULL
, set_anon_super
, flags
, NULL
);
1204 error
= fill_super(s
, data
, flags
& SB_SILENT
? 1 : 0);
1206 deactivate_locked_super(s
);
1207 return ERR_PTR(error
);
1209 s
->s_flags
|= SB_ACTIVE
;
1210 return dget(s
->s_root
);
1212 EXPORT_SYMBOL(mount_nodev
);
1214 static int compare_single(struct super_block
*s
, void *p
)
1219 struct dentry
*mount_single(struct file_system_type
*fs_type
,
1220 int flags
, void *data
,
1221 int (*fill_super
)(struct super_block
*, void *, int))
1223 struct super_block
*s
;
1226 s
= sget(fs_type
, compare_single
, set_anon_super
, flags
, NULL
);
1230 error
= fill_super(s
, data
, flags
& SB_SILENT
? 1 : 0);
1232 deactivate_locked_super(s
);
1233 return ERR_PTR(error
);
1235 s
->s_flags
|= SB_ACTIVE
;
1237 do_remount_sb(s
, flags
, data
, 0);
1239 return dget(s
->s_root
);
1241 EXPORT_SYMBOL(mount_single
);
1244 mount_fs(struct file_system_type
*type
, int flags
, const char *name
, void *data
)
1246 struct dentry
*root
;
1247 struct super_block
*sb
;
1248 char *secdata
= NULL
;
1249 int error
= -ENOMEM
;
1251 if (data
&& !(type
->fs_flags
& FS_BINARY_MOUNTDATA
)) {
1252 secdata
= alloc_secdata();
1256 error
= security_sb_copy_data(data
, secdata
);
1258 goto out_free_secdata
;
1261 root
= type
->mount(type
, flags
, name
, data
);
1263 error
= PTR_ERR(root
);
1264 goto out_free_secdata
;
1268 WARN_ON(!sb
->s_bdi
);
1271 * Write barrier is for super_cache_count(). We place it before setting
1272 * SB_BORN as the data dependency between the two functions is the
1273 * superblock structure contents that we just set up, not the SB_BORN
1277 sb
->s_flags
|= SB_BORN
;
1279 error
= security_sb_kern_mount(sb
, flags
, secdata
);
1284 * filesystems should never set s_maxbytes larger than MAX_LFS_FILESIZE
1285 * but s_maxbytes was an unsigned long long for many releases. Throw
1286 * this warning for a little while to try and catch filesystems that
1287 * violate this rule.
1289 WARN((sb
->s_maxbytes
< 0), "%s set sb->s_maxbytes to "
1290 "negative value (%lld)\n", type
->name
, sb
->s_maxbytes
);
1292 up_write(&sb
->s_umount
);
1293 free_secdata(secdata
);
1297 deactivate_locked_super(sb
);
1299 free_secdata(secdata
);
1301 return ERR_PTR(error
);
1305 * Setup private BDI for given superblock. It gets automatically cleaned up
1306 * in generic_shutdown_super().
1308 int super_setup_bdi_name(struct super_block
*sb
, char *fmt
, ...)
1310 struct backing_dev_info
*bdi
;
1314 bdi
= bdi_alloc(GFP_KERNEL
);
1318 bdi
->name
= sb
->s_type
->name
;
1320 va_start(args
, fmt
);
1321 err
= bdi_register_va(bdi
, fmt
, args
);
1327 WARN_ON(sb
->s_bdi
!= &noop_backing_dev_info
);
1332 EXPORT_SYMBOL(super_setup_bdi_name
);
1335 * Setup private BDI for given superblock. I gets automatically cleaned up
1336 * in generic_shutdown_super().
1338 int super_setup_bdi(struct super_block
*sb
)
1340 static atomic_long_t bdi_seq
= ATOMIC_LONG_INIT(0);
1342 return super_setup_bdi_name(sb
, "%.28s-%ld", sb
->s_type
->name
,
1343 atomic_long_inc_return(&bdi_seq
));
1345 EXPORT_SYMBOL(super_setup_bdi
);
1348 * This is an internal function, please use sb_end_{write,pagefault,intwrite}
1351 void __sb_end_write(struct super_block
*sb
, int level
)
1353 percpu_up_read(sb
->s_writers
.rw_sem
+ level
-1);
1355 EXPORT_SYMBOL(__sb_end_write
);
1358 * This is an internal function, please use sb_start_{write,pagefault,intwrite}
1361 int __sb_start_write(struct super_block
*sb
, int level
, bool wait
)
1363 bool force_trylock
= false;
1366 #ifdef CONFIG_LOCKDEP
1368 * We want lockdep to tell us about possible deadlocks with freezing
1369 * but it's it bit tricky to properly instrument it. Getting a freeze
1370 * protection works as getting a read lock but there are subtle
1371 * problems. XFS for example gets freeze protection on internal level
1372 * twice in some cases, which is OK only because we already hold a
1373 * freeze protection also on higher level. Due to these cases we have
1374 * to use wait == F (trylock mode) which must not fail.
1379 for (i
= 0; i
< level
- 1; i
++)
1380 if (percpu_rwsem_is_held(sb
->s_writers
.rw_sem
+ i
)) {
1381 force_trylock
= true;
1386 if (wait
&& !force_trylock
)
1387 percpu_down_read(sb
->s_writers
.rw_sem
+ level
-1);
1389 ret
= percpu_down_read_trylock(sb
->s_writers
.rw_sem
+ level
-1);
1391 WARN_ON(force_trylock
&& !ret
);
1394 EXPORT_SYMBOL(__sb_start_write
);
1397 * sb_wait_write - wait until all writers to given file system finish
1398 * @sb: the super for which we wait
1399 * @level: type of writers we wait for (normal vs page fault)
1401 * This function waits until there are no writers of given type to given file
1404 static void sb_wait_write(struct super_block
*sb
, int level
)
1406 percpu_down_write(sb
->s_writers
.rw_sem
+ level
-1);
1410 * We are going to return to userspace and forget about these locks, the
1411 * ownership goes to the caller of thaw_super() which does unlock().
1413 static void lockdep_sb_freeze_release(struct super_block
*sb
)
1417 for (level
= SB_FREEZE_LEVELS
- 1; level
>= 0; level
--)
1418 percpu_rwsem_release(sb
->s_writers
.rw_sem
+ level
, 0, _THIS_IP_
);
1422 * Tell lockdep we are holding these locks before we call ->unfreeze_fs(sb).
1424 static void lockdep_sb_freeze_acquire(struct super_block
*sb
)
1428 for (level
= 0; level
< SB_FREEZE_LEVELS
; ++level
)
1429 percpu_rwsem_acquire(sb
->s_writers
.rw_sem
+ level
, 0, _THIS_IP_
);
1432 static void sb_freeze_unlock(struct super_block
*sb
)
1436 for (level
= SB_FREEZE_LEVELS
- 1; level
>= 0; level
--)
1437 percpu_up_write(sb
->s_writers
.rw_sem
+ level
);
1441 * freeze_super - lock the filesystem and force it into a consistent state
1442 * @sb: the super to lock
1444 * Syncs the super to make sure the filesystem is consistent and calls the fs's
1445 * freeze_fs. Subsequent calls to this without first thawing the fs will return
1448 * During this function, sb->s_writers.frozen goes through these values:
1450 * SB_UNFROZEN: File system is normal, all writes progress as usual.
1452 * SB_FREEZE_WRITE: The file system is in the process of being frozen. New
1453 * writes should be blocked, though page faults are still allowed. We wait for
1454 * all writes to complete and then proceed to the next stage.
1456 * SB_FREEZE_PAGEFAULT: Freezing continues. Now also page faults are blocked
1457 * but internal fs threads can still modify the filesystem (although they
1458 * should not dirty new pages or inodes), writeback can run etc. After waiting
1459 * for all running page faults we sync the filesystem which will clean all
1460 * dirty pages and inodes (no new dirty pages or inodes can be created when
1463 * SB_FREEZE_FS: The file system is frozen. Now all internal sources of fs
1464 * modification are blocked (e.g. XFS preallocation truncation on inode
1465 * reclaim). This is usually implemented by blocking new transactions for
1466 * filesystems that have them and need this additional guard. After all
1467 * internal writers are finished we call ->freeze_fs() to finish filesystem
1468 * freezing. Then we transition to SB_FREEZE_COMPLETE state. This state is
1469 * mostly auxiliary for filesystems to verify they do not modify frozen fs.
1471 * sb->s_writers.frozen is protected by sb->s_umount.
1473 int freeze_super(struct super_block
*sb
)
1477 atomic_inc(&sb
->s_active
);
1478 down_write(&sb
->s_umount
);
1479 if (sb
->s_writers
.frozen
!= SB_UNFROZEN
) {
1480 deactivate_locked_super(sb
);
1484 if (!(sb
->s_flags
& SB_BORN
)) {
1485 up_write(&sb
->s_umount
);
1486 return 0; /* sic - it's "nothing to do" */
1489 if (sb_rdonly(sb
)) {
1490 /* Nothing to do really... */
1491 sb
->s_writers
.frozen
= SB_FREEZE_COMPLETE
;
1492 up_write(&sb
->s_umount
);
1496 sb
->s_writers
.frozen
= SB_FREEZE_WRITE
;
1497 /* Release s_umount to preserve sb_start_write -> s_umount ordering */
1498 up_write(&sb
->s_umount
);
1499 sb_wait_write(sb
, SB_FREEZE_WRITE
);
1500 down_write(&sb
->s_umount
);
1502 /* Now we go and block page faults... */
1503 sb
->s_writers
.frozen
= SB_FREEZE_PAGEFAULT
;
1504 sb_wait_write(sb
, SB_FREEZE_PAGEFAULT
);
1506 /* All writers are done so after syncing there won't be dirty data */
1507 sync_filesystem(sb
);
1509 /* Now wait for internal filesystem counter */
1510 sb
->s_writers
.frozen
= SB_FREEZE_FS
;
1511 sb_wait_write(sb
, SB_FREEZE_FS
);
1513 if (sb
->s_op
->freeze_fs
) {
1514 ret
= sb
->s_op
->freeze_fs(sb
);
1517 "VFS:Filesystem freeze failed\n");
1518 sb
->s_writers
.frozen
= SB_UNFROZEN
;
1519 sb_freeze_unlock(sb
);
1520 wake_up(&sb
->s_writers
.wait_unfrozen
);
1521 deactivate_locked_super(sb
);
1526 * For debugging purposes so that fs can warn if it sees write activity
1527 * when frozen is set to SB_FREEZE_COMPLETE, and for thaw_super().
1529 sb
->s_writers
.frozen
= SB_FREEZE_COMPLETE
;
1530 lockdep_sb_freeze_release(sb
);
1531 up_write(&sb
->s_umount
);
1534 EXPORT_SYMBOL(freeze_super
);
1537 * thaw_super -- unlock filesystem
1538 * @sb: the super to thaw
1540 * Unlocks the filesystem and marks it writeable again after freeze_super().
1542 static int thaw_super_locked(struct super_block
*sb
)
1546 if (sb
->s_writers
.frozen
!= SB_FREEZE_COMPLETE
) {
1547 up_write(&sb
->s_umount
);
1551 if (sb_rdonly(sb
)) {
1552 sb
->s_writers
.frozen
= SB_UNFROZEN
;
1556 lockdep_sb_freeze_acquire(sb
);
1558 if (sb
->s_op
->unfreeze_fs
) {
1559 error
= sb
->s_op
->unfreeze_fs(sb
);
1562 "VFS:Filesystem thaw failed\n");
1563 lockdep_sb_freeze_release(sb
);
1564 up_write(&sb
->s_umount
);
1569 sb
->s_writers
.frozen
= SB_UNFROZEN
;
1570 sb_freeze_unlock(sb
);
1572 wake_up(&sb
->s_writers
.wait_unfrozen
);
1573 deactivate_locked_super(sb
);
1577 int thaw_super(struct super_block
*sb
)
1579 down_write(&sb
->s_umount
);
1580 return thaw_super_locked(sb
);
1582 EXPORT_SYMBOL(thaw_super
);