4 * Copyright (C) 1991, 1992 Linus Torvalds
6 * super.c contains code to handle: - mount structures
8 * - filesystem drivers list
10 * - umount system call
13 * GK 2/5/95 - Changed to support mounting the root fs via NFS
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
23 #include <linux/module.h>
24 #include <linux/slab.h>
25 #include <linux/init.h>
26 #include <linux/smp_lock.h>
27 #include <linux/acct.h>
28 #include <linux/blkdev.h>
29 #include <linux/quotaops.h>
30 #include <linux/namei.h>
31 #include <linux/buffer_head.h> /* for fsync_super() */
32 #include <linux/mount.h>
33 #include <linux/security.h>
34 #include <linux/syscalls.h>
35 #include <linux/vfs.h>
36 #include <linux/writeback.h> /* for the emergency remount stuff */
37 #include <linux/idr.h>
38 #include <linux/kobject.h>
39 #include <linux/mutex.h>
40 #include <asm/uaccess.h>
43 void get_filesystem(struct file_system_type *fs);
44 void put_filesystem(struct file_system_type *fs);
45 struct file_system_type *get_fs_type(const char *name);
47 LIST_HEAD(super_blocks);
48 DEFINE_SPINLOCK(sb_lock);
51 * alloc_super - create new superblock
52 * @type: filesystem type superblock should belong to
54 * Allocates and initializes a new &struct super_block. alloc_super()
55 * returns a pointer new superblock or %NULL if allocation had failed.
57 static struct super_block *alloc_super(struct file_system_type *type)
59 struct super_block *s = kzalloc(sizeof(struct super_block), GFP_USER);
60 static struct super_operations default_op;
63 if (security_sb_alloc(s)) {
68 INIT_LIST_HEAD(&s->s_dirty);
69 INIT_LIST_HEAD(&s->s_io);
70 INIT_LIST_HEAD(&s->s_more_io);
71 INIT_LIST_HEAD(&s->s_files);
72 INIT_LIST_HEAD(&s->s_instances);
73 INIT_HLIST_HEAD(&s->s_anon);
74 INIT_LIST_HEAD(&s->s_inodes);
75 init_rwsem(&s->s_umount);
76 mutex_init(&s->s_lock);
77 lockdep_set_class(&s->s_umount, &type->s_umount_key);
79 * The locking rules for s_lock are up to the
80 * filesystem. For example ext3fs has different
81 * lock ordering than usbfs:
83 lockdep_set_class(&s->s_lock, &type->s_lock_key);
84 down_write(&s->s_umount);
86 atomic_set(&s->s_active, 1);
87 mutex_init(&s->s_vfs_rename_mutex);
88 mutex_init(&s->s_dquot.dqio_mutex);
89 mutex_init(&s->s_dquot.dqonoff_mutex);
90 init_rwsem(&s->s_dquot.dqptr_sem);
91 init_waitqueue_head(&s->s_wait_unfrozen);
92 s->s_maxbytes = MAX_NON_LFS;
93 s->dq_op = sb_dquot_ops;
94 s->s_qcop = sb_quotactl_ops;
95 s->s_op = &default_op;
96 s->s_time_gran = 1000000000;
103 * destroy_super - frees a superblock
104 * @s: superblock to free
106 * Frees a superblock.
108 static inline void destroy_super(struct super_block *s)
115 /* Superblock refcounting */
118 * Drop a superblock's refcount. Returns non-zero if the superblock was
119 * destroyed. The caller must hold sb_lock.
121 int __put_super(struct super_block *sb)
125 if (!--sb->s_count) {
133 * Drop a superblock's refcount.
134 * Returns non-zero if the superblock is about to be destroyed and
135 * at least is already removed from super_blocks list, so if we are
136 * making a loop through super blocks then we need to restart.
137 * The caller must hold sb_lock.
139 int __put_super_and_need_restart(struct super_block *sb)
141 /* check for race with generic_shutdown_super() */
142 if (list_empty(&sb->s_list)) {
143 /* super block is removed, need to restart... */
147 /* can't be the last, since s_list is still in use */
149 BUG_ON(sb->s_count == 0);
154 * put_super - drop a temporary reference to superblock
155 * @sb: superblock in question
157 * Drops a temporary reference, frees superblock if there's no
160 static void put_super(struct super_block *sb)
164 spin_unlock(&sb_lock);
169 * deactivate_super - drop an active reference to superblock
170 * @s: superblock to deactivate
172 * Drops an active reference to superblock, acquiring a temprory one if
173 * there is no active references left. In that case we lock superblock,
174 * tell fs driver to shut it down and drop the temporary reference we
177 void deactivate_super(struct super_block *s)
179 struct file_system_type *fs = s->s_type;
180 if (atomic_dec_and_lock(&s->s_active, &sb_lock)) {
181 s->s_count -= S_BIAS-1;
182 spin_unlock(&sb_lock);
184 down_write(&s->s_umount);
191 EXPORT_SYMBOL(deactivate_super);
194 * grab_super - acquire an active reference
195 * @s: reference we are trying to make active
197 * Tries to acquire an active reference. grab_super() is used when we
198 * had just found a superblock in super_blocks or fs_type->fs_supers
199 * and want to turn it into a full-blown active reference. grab_super()
200 * is called with sb_lock held and drops it. Returns 1 in case of
201 * success, 0 if we had failed (superblock contents was already dead or
202 * dying when grab_super() had been called).
204 static int grab_super(struct super_block *s) __releases(sb_lock)
207 spin_unlock(&sb_lock);
208 down_write(&s->s_umount);
211 if (s->s_count > S_BIAS) {
212 atomic_inc(&s->s_active);
214 spin_unlock(&sb_lock);
217 spin_unlock(&sb_lock);
219 up_write(&s->s_umount);
226 * Superblock locking. We really ought to get rid of these two.
228 void lock_super(struct super_block * sb)
231 mutex_lock(&sb->s_lock);
234 void unlock_super(struct super_block * sb)
237 mutex_unlock(&sb->s_lock);
240 EXPORT_SYMBOL(lock_super);
241 EXPORT_SYMBOL(unlock_super);
244 * Write out and wait upon all dirty data associated with this
245 * superblock. Filesystem data as well as the underlying block
246 * device. Takes the superblock lock. Requires a second blkdev
247 * flush by the caller to complete the operation.
249 void __fsync_super(struct super_block *sb)
251 sync_inodes_sb(sb, 0);
254 if (sb->s_dirt && sb->s_op->write_super)
255 sb->s_op->write_super(sb);
257 if (sb->s_op->sync_fs)
258 sb->s_op->sync_fs(sb, 1);
259 sync_blockdev(sb->s_bdev);
260 sync_inodes_sb(sb, 1);
264 * Write out and wait upon all dirty data associated with this
265 * superblock. Filesystem data as well as the underlying block
266 * device. Takes the superblock lock.
268 int fsync_super(struct super_block *sb)
271 return sync_blockdev(sb->s_bdev);
275 * generic_shutdown_super - common helper for ->kill_sb()
276 * @sb: superblock to kill
278 * generic_shutdown_super() does all fs-independent work on superblock
279 * shutdown. Typical ->kill_sb() should pick all fs-specific objects
280 * that need destruction out of superblock, call generic_shutdown_super()
281 * and release aforementioned objects. Note: dentries and inodes _are_
282 * taken care of and do not need specific handling.
284 * Upon calling this function, the filesystem may no longer alter or
285 * rearrange the set of dentries belonging to this super_block, nor may it
286 * change the attachments of dentries to inodes.
288 void generic_shutdown_super(struct super_block *sb)
290 const struct super_operations *sop = sb->s_op;
293 shrink_dcache_for_umount(sb);
296 sb->s_flags &= ~MS_ACTIVE;
297 /* bad name - it should be evict_inodes() */
298 invalidate_inodes(sb);
301 if (sop->write_super && sb->s_dirt)
302 sop->write_super(sb);
306 /* Forget any remaining inodes */
307 if (invalidate_inodes(sb)) {
308 printk("VFS: Busy inodes after unmount of %s. "
309 "Self-destruct in 5 seconds. Have a nice day...\n",
317 /* should be initialized for __put_super_and_need_restart() */
318 list_del_init(&sb->s_list);
319 list_del(&sb->s_instances);
320 spin_unlock(&sb_lock);
321 up_write(&sb->s_umount);
324 EXPORT_SYMBOL(generic_shutdown_super);
327 * sget - find or create a superblock
328 * @type: filesystem type superblock should belong to
329 * @test: comparison callback
330 * @set: setup callback
331 * @data: argument to each of them
333 struct super_block *sget(struct file_system_type *type,
334 int (*test)(struct super_block *,void *),
335 int (*set)(struct super_block *,void *),
338 struct super_block *s = NULL;
344 if (test) list_for_each(p, &type->fs_supers) {
345 struct super_block *old;
346 old = list_entry(p, struct super_block, s_instances);
347 if (!test(old, data))
349 if (!grab_super(old))
356 spin_unlock(&sb_lock);
357 s = alloc_super(type);
359 return ERR_PTR(-ENOMEM);
365 spin_unlock(&sb_lock);
370 strlcpy(s->s_id, type->name, sizeof(s->s_id));
371 list_add_tail(&s->s_list, &super_blocks);
372 list_add(&s->s_instances, &type->fs_supers);
373 spin_unlock(&sb_lock);
374 get_filesystem(type);
380 void drop_super(struct super_block *sb)
382 up_read(&sb->s_umount);
386 EXPORT_SYMBOL(drop_super);
388 static inline void write_super(struct super_block *sb)
391 if (sb->s_root && sb->s_dirt)
392 if (sb->s_op->write_super)
393 sb->s_op->write_super(sb);
398 * Note: check the dirty flag before waiting, so we don't
399 * hold up the sync while mounting a device. (The newly
400 * mounted device won't need syncing.)
402 void sync_supers(void)
404 struct super_block *sb;
408 list_for_each_entry(sb, &super_blocks, s_list) {
411 spin_unlock(&sb_lock);
412 down_read(&sb->s_umount);
414 up_read(&sb->s_umount);
416 if (__put_super_and_need_restart(sb))
420 spin_unlock(&sb_lock);
424 * Call the ->sync_fs super_op against all filesytems which are r/w and
425 * which implement it.
427 * This operation is careful to avoid the livelock which could easily happen
428 * if two or more filesystems are being continuously dirtied. s_need_sync_fs
429 * is used only here. We set it against all filesystems and then clear it as
430 * we sync them. So redirtied filesystems are skipped.
432 * But if process A is currently running sync_filesytems and then process B
433 * calls sync_filesystems as well, process B will set all the s_need_sync_fs
434 * flags again, which will cause process A to resync everything. Fix that with
437 * (Fabian) Avoid sync_fs with clean fs & wait mode 0
439 void sync_filesystems(int wait)
441 struct super_block *sb;
442 static DEFINE_MUTEX(mutex);
444 mutex_lock(&mutex); /* Could be down_interruptible */
446 list_for_each_entry(sb, &super_blocks, s_list) {
447 if (!sb->s_op->sync_fs)
449 if (sb->s_flags & MS_RDONLY)
451 sb->s_need_sync_fs = 1;
455 list_for_each_entry(sb, &super_blocks, s_list) {
456 if (!sb->s_need_sync_fs)
458 sb->s_need_sync_fs = 0;
459 if (sb->s_flags & MS_RDONLY)
460 continue; /* hm. Was remounted r/o meanwhile */
462 spin_unlock(&sb_lock);
463 down_read(&sb->s_umount);
464 if (sb->s_root && (wait || sb->s_dirt))
465 sb->s_op->sync_fs(sb, wait);
466 up_read(&sb->s_umount);
467 /* restart only when sb is no longer on the list */
469 if (__put_super_and_need_restart(sb))
472 spin_unlock(&sb_lock);
473 mutex_unlock(&mutex);
477 * get_super - get the superblock of a device
478 * @bdev: device to get the superblock for
480 * Scans the superblock list and finds the superblock of the file system
481 * mounted on the device given. %NULL is returned if no match is found.
484 struct super_block * get_super(struct block_device *bdev)
486 struct super_block *sb;
493 list_for_each_entry(sb, &super_blocks, s_list) {
494 if (sb->s_bdev == bdev) {
496 spin_unlock(&sb_lock);
497 down_read(&sb->s_umount);
500 up_read(&sb->s_umount);
501 /* restart only when sb is no longer on the list */
503 if (__put_super_and_need_restart(sb))
507 spin_unlock(&sb_lock);
511 EXPORT_SYMBOL(get_super);
513 struct super_block * user_get_super(dev_t dev)
515 struct super_block *sb;
519 list_for_each_entry(sb, &super_blocks, s_list) {
520 if (sb->s_dev == dev) {
522 spin_unlock(&sb_lock);
523 down_read(&sb->s_umount);
526 up_read(&sb->s_umount);
527 /* restart only when sb is no longer on the list */
529 if (__put_super_and_need_restart(sb))
533 spin_unlock(&sb_lock);
537 asmlinkage long sys_ustat(unsigned dev, struct ustat __user * ubuf)
539 struct super_block *s;
544 s = user_get_super(new_decode_dev(dev));
547 err = vfs_statfs(s->s_root, &sbuf);
552 memset(&tmp,0,sizeof(struct ustat));
553 tmp.f_tfree = sbuf.f_bfree;
554 tmp.f_tinode = sbuf.f_ffree;
556 err = copy_to_user(ubuf,&tmp,sizeof(struct ustat)) ? -EFAULT : 0;
563 * @sb: superblock in question
565 * All files are marked read/only. We don't care about pending
566 * delete files so this should be used in 'force' mode only
569 static void mark_files_ro(struct super_block *sb)
574 list_for_each_entry(f, &sb->s_files, f_u.fu_list) {
575 if (S_ISREG(f->f_path.dentry->d_inode->i_mode) && file_count(f))
576 f->f_mode &= ~FMODE_WRITE;
582 * do_remount_sb - asks filesystem to change mount options.
583 * @sb: superblock in question
584 * @flags: numeric part of options
585 * @data: the rest of options
586 * @force: whether or not to force the change
588 * Alters the mount options of a mounted file system.
590 int do_remount_sb(struct super_block *sb, int flags, void *data, int force)
595 if (!(flags & MS_RDONLY) && bdev_read_only(sb->s_bdev))
598 if (flags & MS_RDONLY)
600 shrink_dcache_sb(sb);
603 /* If we are remounting RDONLY and current sb is read/write,
604 make sure there are no rw files opened */
605 if ((flags & MS_RDONLY) && !(sb->s_flags & MS_RDONLY)) {
608 else if (!fs_may_remount_ro(sb))
612 if (sb->s_op->remount_fs) {
614 retval = sb->s_op->remount_fs(sb, &flags, data);
619 sb->s_flags = (sb->s_flags & ~MS_RMT_MASK) | (flags & MS_RMT_MASK);
623 static void do_emergency_remount(unsigned long foo)
625 struct super_block *sb;
628 list_for_each_entry(sb, &super_blocks, s_list) {
630 spin_unlock(&sb_lock);
631 down_read(&sb->s_umount);
632 if (sb->s_root && sb->s_bdev && !(sb->s_flags & MS_RDONLY)) {
634 * ->remount_fs needs lock_kernel().
636 * What lock protects sb->s_flags??
639 do_remount_sb(sb, MS_RDONLY, NULL, 1);
645 spin_unlock(&sb_lock);
646 printk("Emergency Remount complete\n");
649 void emergency_remount(void)
651 pdflush_operation(do_emergency_remount, 0);
655 * Unnamed block devices are dummy devices used by virtual
656 * filesystems which don't use real block-devices. -- jrs
659 static struct idr unnamed_dev_idr;
660 static DEFINE_SPINLOCK(unnamed_dev_lock);/* protects the above */
662 int set_anon_super(struct super_block *s, void *data)
668 if (idr_pre_get(&unnamed_dev_idr, GFP_ATOMIC) == 0)
670 spin_lock(&unnamed_dev_lock);
671 error = idr_get_new(&unnamed_dev_idr, NULL, &dev);
672 spin_unlock(&unnamed_dev_lock);
673 if (error == -EAGAIN)
674 /* We raced and lost with another CPU. */
679 if ((dev & MAX_ID_MASK) == (1 << MINORBITS)) {
680 spin_lock(&unnamed_dev_lock);
681 idr_remove(&unnamed_dev_idr, dev);
682 spin_unlock(&unnamed_dev_lock);
685 s->s_dev = MKDEV(0, dev & MINORMASK);
689 EXPORT_SYMBOL(set_anon_super);
691 void kill_anon_super(struct super_block *sb)
693 int slot = MINOR(sb->s_dev);
695 generic_shutdown_super(sb);
696 spin_lock(&unnamed_dev_lock);
697 idr_remove(&unnamed_dev_idr, slot);
698 spin_unlock(&unnamed_dev_lock);
701 EXPORT_SYMBOL(kill_anon_super);
703 void __init unnamed_dev_init(void)
705 idr_init(&unnamed_dev_idr);
708 void kill_litter_super(struct super_block *sb)
711 d_genocide(sb->s_root);
715 EXPORT_SYMBOL(kill_litter_super);
718 static int set_bdev_super(struct super_block *s, void *data)
721 s->s_dev = s->s_bdev->bd_dev;
725 static int test_bdev_super(struct super_block *s, void *data)
727 return (void *)s->s_bdev == data;
730 int get_sb_bdev(struct file_system_type *fs_type,
731 int flags, const char *dev_name, void *data,
732 int (*fill_super)(struct super_block *, void *, int),
733 struct vfsmount *mnt)
735 struct block_device *bdev;
736 struct super_block *s;
739 bdev = open_bdev_excl(dev_name, flags, fs_type);
741 return PTR_ERR(bdev);
744 * once the super is inserted into the list by sget, s_umount
745 * will protect the lockfs code from trying to start a snapshot
746 * while we are mounting
748 down(&bdev->bd_mount_sem);
749 s = sget(fs_type, test_bdev_super, set_bdev_super, bdev);
750 up(&bdev->bd_mount_sem);
755 if ((flags ^ s->s_flags) & MS_RDONLY) {
756 up_write(&s->s_umount);
762 close_bdev_excl(bdev);
764 char b[BDEVNAME_SIZE];
767 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
768 sb_set_blocksize(s, block_size(bdev));
769 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
771 up_write(&s->s_umount);
776 s->s_flags |= MS_ACTIVE;
779 return simple_set_mnt(mnt, s);
784 close_bdev_excl(bdev);
789 EXPORT_SYMBOL(get_sb_bdev);
791 void kill_block_super(struct super_block *sb)
793 struct block_device *bdev = sb->s_bdev;
795 generic_shutdown_super(sb);
797 close_bdev_excl(bdev);
800 EXPORT_SYMBOL(kill_block_super);
803 int get_sb_nodev(struct file_system_type *fs_type,
804 int flags, void *data,
805 int (*fill_super)(struct super_block *, void *, int),
806 struct vfsmount *mnt)
809 struct super_block *s = sget(fs_type, NULL, set_anon_super, NULL);
816 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
818 up_write(&s->s_umount);
822 s->s_flags |= MS_ACTIVE;
823 return simple_set_mnt(mnt, s);
826 EXPORT_SYMBOL(get_sb_nodev);
828 static int compare_single(struct super_block *s, void *p)
833 int get_sb_single(struct file_system_type *fs_type,
834 int flags, void *data,
835 int (*fill_super)(struct super_block *, void *, int),
836 struct vfsmount *mnt)
838 struct super_block *s;
841 s = sget(fs_type, compare_single, set_anon_super, NULL);
846 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
848 up_write(&s->s_umount);
852 s->s_flags |= MS_ACTIVE;
854 do_remount_sb(s, flags, data, 0);
855 return simple_set_mnt(mnt, s);
858 EXPORT_SYMBOL(get_sb_single);
861 vfs_kern_mount(struct file_system_type *type, int flags, const char *name, void *data)
863 struct vfsmount *mnt;
864 char *secdata = NULL;
868 return ERR_PTR(-ENODEV);
871 mnt = alloc_vfsmnt(name);
876 secdata = alloc_secdata();
880 error = security_sb_copy_data(type, data, secdata);
882 goto out_free_secdata;
885 error = type->get_sb(type, flags, name, data, mnt);
887 goto out_free_secdata;
888 BUG_ON(!mnt->mnt_sb);
890 error = security_sb_kern_mount(mnt->mnt_sb, secdata);
894 mnt->mnt_mountpoint = mnt->mnt_root;
895 mnt->mnt_parent = mnt;
896 up_write(&mnt->mnt_sb->s_umount);
897 free_secdata(secdata);
901 up_write(&mnt->mnt_sb->s_umount);
902 deactivate_super(mnt->mnt_sb);
904 free_secdata(secdata);
908 return ERR_PTR(error);
911 EXPORT_SYMBOL_GPL(vfs_kern_mount);
913 static struct vfsmount *fs_set_subtype(struct vfsmount *mnt, const char *fstype)
916 const char *subtype = strchr(fstype, '.');
925 mnt->mnt_sb->s_subtype = kstrdup(subtype, GFP_KERNEL);
927 if (!mnt->mnt_sb->s_subtype)
937 do_kern_mount(const char *fstype, int flags, const char *name, void *data)
939 struct file_system_type *type = get_fs_type(fstype);
940 struct vfsmount *mnt;
942 return ERR_PTR(-ENODEV);
943 mnt = vfs_kern_mount(type, flags, name, data);
944 if (!IS_ERR(mnt) && (type->fs_flags & FS_HAS_SUBTYPE) &&
945 !mnt->mnt_sb->s_subtype)
946 mnt = fs_set_subtype(mnt, fstype);
947 put_filesystem(type);
951 struct vfsmount *kern_mount(struct file_system_type *type)
953 return vfs_kern_mount(type, 0, type->name, NULL);
956 EXPORT_SYMBOL(kern_mount);