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 <linux/file.h>
41 #include <linux/async.h>
42 #include <asm/uaccess.h>
46 LIST_HEAD(super_blocks
);
47 DEFINE_SPINLOCK(sb_lock
);
50 * alloc_super - create new superblock
51 * @type: filesystem type superblock should belong to
53 * Allocates and initializes a new &struct super_block. alloc_super()
54 * returns a pointer new superblock or %NULL if allocation had failed.
56 static struct super_block
*alloc_super(struct file_system_type
*type
)
58 struct super_block
*s
= kzalloc(sizeof(struct super_block
), GFP_USER
);
59 static struct super_operations default_op
;
62 if (security_sb_alloc(s
)) {
67 INIT_LIST_HEAD(&s
->s_dirty
);
68 INIT_LIST_HEAD(&s
->s_io
);
69 INIT_LIST_HEAD(&s
->s_more_io
);
70 INIT_LIST_HEAD(&s
->s_files
);
71 INIT_LIST_HEAD(&s
->s_instances
);
72 INIT_HLIST_HEAD(&s
->s_anon
);
73 INIT_LIST_HEAD(&s
->s_inodes
);
74 INIT_LIST_HEAD(&s
->s_dentry_lru
);
75 INIT_LIST_HEAD(&s
->s_async_list
);
76 init_rwsem(&s
->s_umount
);
77 mutex_init(&s
->s_lock
);
78 lockdep_set_class(&s
->s_umount
, &type
->s_umount_key
);
80 * The locking rules for s_lock are up to the
81 * filesystem. For example ext3fs has different
82 * lock ordering than usbfs:
84 lockdep_set_class(&s
->s_lock
, &type
->s_lock_key
);
86 * sget() can have s_umount recursion.
88 * When it cannot find a suitable sb, it allocates a new
89 * one (this one), and tries again to find a suitable old
92 * In case that succeeds, it will acquire the s_umount
93 * lock of the old one. Since these are clearly distrinct
94 * locks, and this object isn't exposed yet, there's no
97 * Annotate this by putting this lock in a different
100 down_write_nested(&s
->s_umount
, SINGLE_DEPTH_NESTING
);
102 atomic_set(&s
->s_active
, 1);
103 mutex_init(&s
->s_vfs_rename_mutex
);
104 mutex_init(&s
->s_dquot
.dqio_mutex
);
105 mutex_init(&s
->s_dquot
.dqonoff_mutex
);
106 init_rwsem(&s
->s_dquot
.dqptr_sem
);
107 init_waitqueue_head(&s
->s_wait_unfrozen
);
108 s
->s_maxbytes
= MAX_NON_LFS
;
109 s
->dq_op
= sb_dquot_ops
;
110 s
->s_qcop
= sb_quotactl_ops
;
111 s
->s_op
= &default_op
;
112 s
->s_time_gran
= 1000000000;
119 * destroy_super - frees a superblock
120 * @s: superblock to free
122 * Frees a superblock.
124 static inline void destroy_super(struct super_block
*s
)
132 /* Superblock refcounting */
135 * Drop a superblock's refcount. Returns non-zero if the superblock was
136 * destroyed. The caller must hold sb_lock.
138 static int __put_super(struct super_block
*sb
)
142 if (!--sb
->s_count
) {
150 * Drop a superblock's refcount.
151 * Returns non-zero if the superblock is about to be destroyed and
152 * at least is already removed from super_blocks list, so if we are
153 * making a loop through super blocks then we need to restart.
154 * The caller must hold sb_lock.
156 int __put_super_and_need_restart(struct super_block
*sb
)
158 /* check for race with generic_shutdown_super() */
159 if (list_empty(&sb
->s_list
)) {
160 /* super block is removed, need to restart... */
164 /* can't be the last, since s_list is still in use */
166 BUG_ON(sb
->s_count
== 0);
171 * put_super - drop a temporary reference to superblock
172 * @sb: superblock in question
174 * Drops a temporary reference, frees superblock if there's no
177 static void put_super(struct super_block
*sb
)
181 spin_unlock(&sb_lock
);
186 * deactivate_super - drop an active reference to superblock
187 * @s: superblock to deactivate
189 * Drops an active reference to superblock, acquiring a temprory one if
190 * there is no active references left. In that case we lock superblock,
191 * tell fs driver to shut it down and drop the temporary reference we
194 void deactivate_super(struct super_block
*s
)
196 struct file_system_type
*fs
= s
->s_type
;
197 if (atomic_dec_and_lock(&s
->s_active
, &sb_lock
)) {
198 s
->s_count
-= S_BIAS
-1;
199 spin_unlock(&sb_lock
);
201 down_write(&s
->s_umount
);
208 EXPORT_SYMBOL(deactivate_super
);
211 * grab_super - acquire an active reference
212 * @s: reference we are trying to make active
214 * Tries to acquire an active reference. grab_super() is used when we
215 * had just found a superblock in super_blocks or fs_type->fs_supers
216 * and want to turn it into a full-blown active reference. grab_super()
217 * is called with sb_lock held and drops it. Returns 1 in case of
218 * success, 0 if we had failed (superblock contents was already dead or
219 * dying when grab_super() had been called).
221 static int grab_super(struct super_block
*s
) __releases(sb_lock
)
224 spin_unlock(&sb_lock
);
225 down_write(&s
->s_umount
);
228 if (s
->s_count
> S_BIAS
) {
229 atomic_inc(&s
->s_active
);
231 spin_unlock(&sb_lock
);
234 spin_unlock(&sb_lock
);
236 up_write(&s
->s_umount
);
243 * Superblock locking. We really ought to get rid of these two.
245 void lock_super(struct super_block
* sb
)
248 mutex_lock(&sb
->s_lock
);
251 void unlock_super(struct super_block
* sb
)
254 mutex_unlock(&sb
->s_lock
);
257 EXPORT_SYMBOL(lock_super
);
258 EXPORT_SYMBOL(unlock_super
);
261 * Write out and wait upon all dirty data associated with this
262 * superblock. Filesystem data as well as the underlying block
263 * device. Takes the superblock lock. Requires a second blkdev
264 * flush by the caller to complete the operation.
266 void __fsync_super(struct super_block
*sb
)
268 sync_inodes_sb(sb
, 0);
271 if (sb
->s_dirt
&& sb
->s_op
->write_super
)
272 sb
->s_op
->write_super(sb
);
274 if (sb
->s_op
->sync_fs
)
275 sb
->s_op
->sync_fs(sb
, 1);
276 sync_blockdev(sb
->s_bdev
);
277 sync_inodes_sb(sb
, 1);
281 * Write out and wait upon all dirty data associated with this
282 * superblock. Filesystem data as well as the underlying block
283 * device. Takes the superblock lock.
285 int fsync_super(struct super_block
*sb
)
288 return sync_blockdev(sb
->s_bdev
);
290 EXPORT_SYMBOL_GPL(fsync_super
);
293 * generic_shutdown_super - common helper for ->kill_sb()
294 * @sb: superblock to kill
296 * generic_shutdown_super() does all fs-independent work on superblock
297 * shutdown. Typical ->kill_sb() should pick all fs-specific objects
298 * that need destruction out of superblock, call generic_shutdown_super()
299 * and release aforementioned objects. Note: dentries and inodes _are_
300 * taken care of and do not need specific handling.
302 * Upon calling this function, the filesystem may no longer alter or
303 * rearrange the set of dentries belonging to this super_block, nor may it
304 * change the attachments of dentries to inodes.
306 void generic_shutdown_super(struct super_block
*sb
)
308 const struct super_operations
*sop
= sb
->s_op
;
312 shrink_dcache_for_umount(sb
);
315 sb
->s_flags
&= ~MS_ACTIVE
;
318 * wait for asynchronous fs operations to finish before going further
320 async_synchronize_full_domain(&sb
->s_async_list
);
322 /* bad name - it should be evict_inodes() */
323 invalidate_inodes(sb
);
326 if (sop
->write_super
&& sb
->s_dirt
)
327 sop
->write_super(sb
);
331 /* Forget any remaining inodes */
332 if (invalidate_inodes(sb
)) {
333 printk("VFS: Busy inodes after unmount of %s. "
334 "Self-destruct in 5 seconds. Have a nice day...\n",
342 /* should be initialized for __put_super_and_need_restart() */
343 list_del_init(&sb
->s_list
);
344 list_del(&sb
->s_instances
);
345 spin_unlock(&sb_lock
);
346 up_write(&sb
->s_umount
);
349 EXPORT_SYMBOL(generic_shutdown_super
);
352 * sget - find or create a superblock
353 * @type: filesystem type superblock should belong to
354 * @test: comparison callback
355 * @set: setup callback
356 * @data: argument to each of them
358 struct super_block
*sget(struct file_system_type
*type
,
359 int (*test
)(struct super_block
*,void *),
360 int (*set
)(struct super_block
*,void *),
363 struct super_block
*s
= NULL
;
364 struct super_block
*old
;
370 list_for_each_entry(old
, &type
->fs_supers
, s_instances
) {
371 if (!test(old
, data
))
373 if (!grab_super(old
))
376 up_write(&s
->s_umount
);
383 spin_unlock(&sb_lock
);
384 s
= alloc_super(type
);
386 return ERR_PTR(-ENOMEM
);
392 spin_unlock(&sb_lock
);
393 up_write(&s
->s_umount
);
398 strlcpy(s
->s_id
, type
->name
, sizeof(s
->s_id
));
399 list_add_tail(&s
->s_list
, &super_blocks
);
400 list_add(&s
->s_instances
, &type
->fs_supers
);
401 spin_unlock(&sb_lock
);
402 get_filesystem(type
);
408 void drop_super(struct super_block
*sb
)
410 up_read(&sb
->s_umount
);
414 EXPORT_SYMBOL(drop_super
);
416 static inline void write_super(struct super_block
*sb
)
419 if (sb
->s_root
&& sb
->s_dirt
)
420 if (sb
->s_op
->write_super
)
421 sb
->s_op
->write_super(sb
);
426 * Note: check the dirty flag before waiting, so we don't
427 * hold up the sync while mounting a device. (The newly
428 * mounted device won't need syncing.)
430 void sync_supers(void)
432 struct super_block
*sb
;
436 list_for_each_entry(sb
, &super_blocks
, s_list
) {
439 spin_unlock(&sb_lock
);
440 down_read(&sb
->s_umount
);
442 up_read(&sb
->s_umount
);
444 if (__put_super_and_need_restart(sb
))
448 spin_unlock(&sb_lock
);
452 * Call the ->sync_fs super_op against all filesystems which are r/w and
453 * which implement it.
455 * This operation is careful to avoid the livelock which could easily happen
456 * if two or more filesystems are being continuously dirtied. s_need_sync_fs
457 * is used only here. We set it against all filesystems and then clear it as
458 * we sync them. So redirtied filesystems are skipped.
460 * But if process A is currently running sync_filesystems and then process B
461 * calls sync_filesystems as well, process B will set all the s_need_sync_fs
462 * flags again, which will cause process A to resync everything. Fix that with
465 * (Fabian) Avoid sync_fs with clean fs & wait mode 0
467 void sync_filesystems(int wait
)
469 struct super_block
*sb
;
470 static DEFINE_MUTEX(mutex
);
472 mutex_lock(&mutex
); /* Could be down_interruptible */
474 list_for_each_entry(sb
, &super_blocks
, s_list
) {
475 if (!sb
->s_op
->sync_fs
)
477 if (sb
->s_flags
& MS_RDONLY
)
479 sb
->s_need_sync_fs
= 1;
483 list_for_each_entry(sb
, &super_blocks
, s_list
) {
484 if (!sb
->s_need_sync_fs
)
486 sb
->s_need_sync_fs
= 0;
487 if (sb
->s_flags
& MS_RDONLY
)
488 continue; /* hm. Was remounted r/o meanwhile */
490 spin_unlock(&sb_lock
);
491 down_read(&sb
->s_umount
);
492 async_synchronize_full_domain(&sb
->s_async_list
);
493 if (sb
->s_root
&& (wait
|| sb
->s_dirt
))
494 sb
->s_op
->sync_fs(sb
, wait
);
495 up_read(&sb
->s_umount
);
496 /* restart only when sb is no longer on the list */
498 if (__put_super_and_need_restart(sb
))
501 spin_unlock(&sb_lock
);
502 mutex_unlock(&mutex
);
506 * get_super - get the superblock of a device
507 * @bdev: device to get the superblock for
509 * Scans the superblock list and finds the superblock of the file system
510 * mounted on the device given. %NULL is returned if no match is found.
513 struct super_block
* get_super(struct block_device
*bdev
)
515 struct super_block
*sb
;
522 list_for_each_entry(sb
, &super_blocks
, s_list
) {
523 if (sb
->s_bdev
== bdev
) {
525 spin_unlock(&sb_lock
);
526 down_read(&sb
->s_umount
);
529 up_read(&sb
->s_umount
);
530 /* restart only when sb is no longer on the list */
532 if (__put_super_and_need_restart(sb
))
536 spin_unlock(&sb_lock
);
540 EXPORT_SYMBOL(get_super
);
542 struct super_block
* user_get_super(dev_t dev
)
544 struct super_block
*sb
;
548 list_for_each_entry(sb
, &super_blocks
, s_list
) {
549 if (sb
->s_dev
== dev
) {
551 spin_unlock(&sb_lock
);
552 down_read(&sb
->s_umount
);
555 up_read(&sb
->s_umount
);
556 /* restart only when sb is no longer on the list */
558 if (__put_super_and_need_restart(sb
))
562 spin_unlock(&sb_lock
);
566 SYSCALL_DEFINE2(ustat
, unsigned, dev
, struct ustat __user
*, ubuf
)
568 struct super_block
*s
;
573 s
= user_get_super(new_decode_dev(dev
));
576 err
= vfs_statfs(s
->s_root
, &sbuf
);
581 memset(&tmp
,0,sizeof(struct ustat
));
582 tmp
.f_tfree
= sbuf
.f_bfree
;
583 tmp
.f_tinode
= sbuf
.f_ffree
;
585 err
= copy_to_user(ubuf
,&tmp
,sizeof(struct ustat
)) ? -EFAULT
: 0;
591 * mark_files_ro - mark all files read-only
592 * @sb: superblock in question
594 * All files are marked read-only. We don't care about pending
595 * delete files so this should be used in 'force' mode only.
598 static void mark_files_ro(struct super_block
*sb
)
604 list_for_each_entry(f
, &sb
->s_files
, f_u
.fu_list
) {
605 struct vfsmount
*mnt
;
606 if (!S_ISREG(f
->f_path
.dentry
->d_inode
->i_mode
))
610 if (!(f
->f_mode
& FMODE_WRITE
))
612 f
->f_mode
&= ~FMODE_WRITE
;
613 if (file_check_writeable(f
) != 0)
615 file_release_write(f
);
616 mnt
= mntget(f
->f_path
.mnt
);
619 * This can sleep, so we can't hold
620 * the file_list_lock() spinlock.
630 * do_remount_sb - asks filesystem to change mount options.
631 * @sb: superblock in question
632 * @flags: numeric part of options
633 * @data: the rest of options
634 * @force: whether or not to force the change
636 * Alters the mount options of a mounted file system.
638 int do_remount_sb(struct super_block
*sb
, int flags
, void *data
, int force
)
644 if (!(flags
& MS_RDONLY
) && bdev_read_only(sb
->s_bdev
))
647 if (flags
& MS_RDONLY
)
649 shrink_dcache_sb(sb
);
652 /* If we are remounting RDONLY and current sb is read/write,
653 make sure there are no rw files opened */
654 if ((flags
& MS_RDONLY
) && !(sb
->s_flags
& MS_RDONLY
)) {
657 else if (!fs_may_remount_ro(sb
))
659 retval
= vfs_dq_off(sb
, 1);
660 if (retval
< 0 && retval
!= -ENOSYS
)
663 remount_rw
= !(flags
& MS_RDONLY
) && (sb
->s_flags
& MS_RDONLY
);
665 if (sb
->s_op
->remount_fs
) {
667 retval
= sb
->s_op
->remount_fs(sb
, &flags
, data
);
672 sb
->s_flags
= (sb
->s_flags
& ~MS_RMT_MASK
) | (flags
& MS_RMT_MASK
);
674 vfs_dq_quota_on_remount(sb
);
678 static void do_emergency_remount(struct work_struct
*work
)
680 struct super_block
*sb
;
683 list_for_each_entry(sb
, &super_blocks
, s_list
) {
685 spin_unlock(&sb_lock
);
686 down_read(&sb
->s_umount
);
687 if (sb
->s_root
&& sb
->s_bdev
&& !(sb
->s_flags
& MS_RDONLY
)) {
689 * ->remount_fs needs lock_kernel().
691 * What lock protects sb->s_flags??
694 do_remount_sb(sb
, MS_RDONLY
, NULL
, 1);
700 spin_unlock(&sb_lock
);
702 printk("Emergency Remount complete\n");
705 void emergency_remount(void)
707 struct work_struct
*work
;
709 work
= kmalloc(sizeof(*work
), GFP_ATOMIC
);
711 INIT_WORK(work
, do_emergency_remount
);
717 * Unnamed block devices are dummy devices used by virtual
718 * filesystems which don't use real block-devices. -- jrs
721 static DEFINE_IDA(unnamed_dev_ida
);
722 static DEFINE_SPINLOCK(unnamed_dev_lock
);/* protects the above */
724 int set_anon_super(struct super_block
*s
, void *data
)
730 if (ida_pre_get(&unnamed_dev_ida
, GFP_ATOMIC
) == 0)
732 spin_lock(&unnamed_dev_lock
);
733 error
= ida_get_new(&unnamed_dev_ida
, &dev
);
734 spin_unlock(&unnamed_dev_lock
);
735 if (error
== -EAGAIN
)
736 /* We raced and lost with another CPU. */
741 if ((dev
& MAX_ID_MASK
) == (1 << MINORBITS
)) {
742 spin_lock(&unnamed_dev_lock
);
743 ida_remove(&unnamed_dev_ida
, dev
);
744 spin_unlock(&unnamed_dev_lock
);
747 s
->s_dev
= MKDEV(0, dev
& MINORMASK
);
751 EXPORT_SYMBOL(set_anon_super
);
753 void kill_anon_super(struct super_block
*sb
)
755 int slot
= MINOR(sb
->s_dev
);
757 generic_shutdown_super(sb
);
758 spin_lock(&unnamed_dev_lock
);
759 ida_remove(&unnamed_dev_ida
, slot
);
760 spin_unlock(&unnamed_dev_lock
);
763 EXPORT_SYMBOL(kill_anon_super
);
765 void kill_litter_super(struct super_block
*sb
)
768 d_genocide(sb
->s_root
);
772 EXPORT_SYMBOL(kill_litter_super
);
774 static int ns_test_super(struct super_block
*sb
, void *data
)
776 return sb
->s_fs_info
== data
;
779 static int ns_set_super(struct super_block
*sb
, void *data
)
781 sb
->s_fs_info
= data
;
782 return set_anon_super(sb
, NULL
);
785 int get_sb_ns(struct file_system_type
*fs_type
, int flags
, void *data
,
786 int (*fill_super
)(struct super_block
*, void *, int),
787 struct vfsmount
*mnt
)
789 struct super_block
*sb
;
791 sb
= sget(fs_type
, ns_test_super
, ns_set_super
, data
);
798 err
= fill_super(sb
, data
, flags
& MS_SILENT
? 1 : 0);
800 up_write(&sb
->s_umount
);
801 deactivate_super(sb
);
805 sb
->s_flags
|= MS_ACTIVE
;
808 simple_set_mnt(mnt
, sb
);
812 EXPORT_SYMBOL(get_sb_ns
);
815 static int set_bdev_super(struct super_block
*s
, void *data
)
818 s
->s_dev
= s
->s_bdev
->bd_dev
;
822 static int test_bdev_super(struct super_block
*s
, void *data
)
824 return (void *)s
->s_bdev
== data
;
827 int get_sb_bdev(struct file_system_type
*fs_type
,
828 int flags
, const char *dev_name
, void *data
,
829 int (*fill_super
)(struct super_block
*, void *, int),
830 struct vfsmount
*mnt
)
832 struct block_device
*bdev
;
833 struct super_block
*s
;
834 fmode_t mode
= FMODE_READ
;
837 if (!(flags
& MS_RDONLY
))
840 bdev
= open_bdev_exclusive(dev_name
, mode
, fs_type
);
842 return PTR_ERR(bdev
);
845 * once the super is inserted into the list by sget, s_umount
846 * will protect the lockfs code from trying to start a snapshot
847 * while we are mounting
849 down(&bdev
->bd_mount_sem
);
850 s
= sget(fs_type
, test_bdev_super
, set_bdev_super
, bdev
);
851 up(&bdev
->bd_mount_sem
);
856 if ((flags
^ s
->s_flags
) & MS_RDONLY
) {
857 up_write(&s
->s_umount
);
863 close_bdev_exclusive(bdev
, mode
);
865 char b
[BDEVNAME_SIZE
];
869 strlcpy(s
->s_id
, bdevname(bdev
, b
), sizeof(s
->s_id
));
870 sb_set_blocksize(s
, block_size(bdev
));
871 error
= fill_super(s
, data
, flags
& MS_SILENT
? 1 : 0);
873 up_write(&s
->s_umount
);
878 s
->s_flags
|= MS_ACTIVE
;
882 simple_set_mnt(mnt
, s
);
888 close_bdev_exclusive(bdev
, mode
);
893 EXPORT_SYMBOL(get_sb_bdev
);
895 void kill_block_super(struct super_block
*sb
)
897 struct block_device
*bdev
= sb
->s_bdev
;
898 fmode_t mode
= sb
->s_mode
;
901 generic_shutdown_super(sb
);
903 close_bdev_exclusive(bdev
, mode
);
906 EXPORT_SYMBOL(kill_block_super
);
909 int get_sb_nodev(struct file_system_type
*fs_type
,
910 int flags
, void *data
,
911 int (*fill_super
)(struct super_block
*, void *, int),
912 struct vfsmount
*mnt
)
915 struct super_block
*s
= sget(fs_type
, NULL
, set_anon_super
, NULL
);
922 error
= fill_super(s
, data
, flags
& MS_SILENT
? 1 : 0);
924 up_write(&s
->s_umount
);
928 s
->s_flags
|= MS_ACTIVE
;
929 simple_set_mnt(mnt
, s
);
933 EXPORT_SYMBOL(get_sb_nodev
);
935 static int compare_single(struct super_block
*s
, void *p
)
940 int get_sb_single(struct file_system_type
*fs_type
,
941 int flags
, void *data
,
942 int (*fill_super
)(struct super_block
*, void *, int),
943 struct vfsmount
*mnt
)
945 struct super_block
*s
;
948 s
= sget(fs_type
, compare_single
, set_anon_super
, NULL
);
953 error
= fill_super(s
, data
, flags
& MS_SILENT
? 1 : 0);
955 up_write(&s
->s_umount
);
959 s
->s_flags
|= MS_ACTIVE
;
961 do_remount_sb(s
, flags
, data
, 0);
962 simple_set_mnt(mnt
, s
);
966 EXPORT_SYMBOL(get_sb_single
);
969 vfs_kern_mount(struct file_system_type
*type
, int flags
, const char *name
, void *data
)
971 struct vfsmount
*mnt
;
972 char *secdata
= NULL
;
976 return ERR_PTR(-ENODEV
);
979 mnt
= alloc_vfsmnt(name
);
983 if (data
&& !(type
->fs_flags
& FS_BINARY_MOUNTDATA
)) {
984 secdata
= alloc_secdata();
988 error
= security_sb_copy_data(data
, secdata
);
990 goto out_free_secdata
;
993 error
= type
->get_sb(type
, flags
, name
, data
, mnt
);
995 goto out_free_secdata
;
996 BUG_ON(!mnt
->mnt_sb
);
998 error
= security_sb_kern_mount(mnt
->mnt_sb
, flags
, secdata
);
1002 mnt
->mnt_mountpoint
= mnt
->mnt_root
;
1003 mnt
->mnt_parent
= mnt
;
1004 up_write(&mnt
->mnt_sb
->s_umount
);
1005 free_secdata(secdata
);
1008 dput(mnt
->mnt_root
);
1009 up_write(&mnt
->mnt_sb
->s_umount
);
1010 deactivate_super(mnt
->mnt_sb
);
1012 free_secdata(secdata
);
1016 return ERR_PTR(error
);
1019 EXPORT_SYMBOL_GPL(vfs_kern_mount
);
1021 static struct vfsmount
*fs_set_subtype(struct vfsmount
*mnt
, const char *fstype
)
1024 const char *subtype
= strchr(fstype
, '.');
1033 mnt
->mnt_sb
->s_subtype
= kstrdup(subtype
, GFP_KERNEL
);
1035 if (!mnt
->mnt_sb
->s_subtype
)
1041 return ERR_PTR(err
);
1045 do_kern_mount(const char *fstype
, int flags
, const char *name
, void *data
)
1047 struct file_system_type
*type
= get_fs_type(fstype
);
1048 struct vfsmount
*mnt
;
1050 return ERR_PTR(-ENODEV
);
1051 mnt
= vfs_kern_mount(type
, flags
, name
, data
);
1052 if (!IS_ERR(mnt
) && (type
->fs_flags
& FS_HAS_SUBTYPE
) &&
1053 !mnt
->mnt_sb
->s_subtype
)
1054 mnt
= fs_set_subtype(mnt
, fstype
);
1055 put_filesystem(type
);
1058 EXPORT_SYMBOL_GPL(do_kern_mount
);
1060 struct vfsmount
*kern_mount_data(struct file_system_type
*type
, void *data
)
1062 return vfs_kern_mount(type
, MS_KERNMOUNT
, type
->name
, data
);
1065 EXPORT_SYMBOL_GPL(kern_mount_data
);