blob: 61fa181faa4318e66a930af8a4ba0adfaa5586f1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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:
Jan Engelhardt96de0e22007-10-19 23:21:04 +020018 * Torbjörn Lindh (torbjorn.lindh@gopta.se), April 14, 1996.
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/mount.h>
32#include <linux/security.h>
33#include <linux/syscalls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/writeback.h> /* for the emergency remount stuff */
35#include <linux/idr.h>
36#include <linux/kobject.h>
Ingo Molnar353ab6e2006-03-26 01:37:12 -080037#include <linux/mutex.h>
Dave Hansen49e0d022008-02-15 14:37:32 -080038#include <linux/file.h>
Jens Axboe5477d0f2010-04-29 20:33:35 +020039#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/uaccess.h>
Al Viro6d59e7f2008-03-22 15:48:17 -040041#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044LIST_HEAD(super_blocks);
45DEFINE_SPINLOCK(sb_lock);
46
47/**
48 * alloc_super - create new superblock
Henrik Kretzschmarfe2bbc42006-09-06 00:03:41 -070049 * @type: filesystem type superblock should belong to
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 *
51 * Allocates and initializes a new &struct super_block. alloc_super()
52 * returns a pointer new superblock or %NULL if allocation had failed.
53 */
Ingo Molnarcf516242006-07-03 00:25:27 -070054static struct super_block *alloc_super(struct file_system_type *type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
Oliver Neukum11b0b5a2006-03-25 03:08:13 -080056 struct super_block *s = kzalloc(sizeof(struct super_block), GFP_USER);
Alexey Dobriyanb87221d2009-09-21 17:01:09 -070057 static const struct super_operations default_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59 if (s) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 if (security_sb_alloc(s)) {
61 kfree(s);
62 s = NULL;
63 goto out;
64 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 INIT_LIST_HEAD(&s->s_files);
66 INIT_LIST_HEAD(&s->s_instances);
67 INIT_HLIST_HEAD(&s->s_anon);
68 INIT_LIST_HEAD(&s->s_inodes);
Kentaro Makitada3bbdd2008-07-23 21:27:13 -070069 INIT_LIST_HEAD(&s->s_dentry_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 init_rwsem(&s->s_umount);
Ingo Molnar7892f2f2006-01-09 15:59:25 -080071 mutex_init(&s->s_lock);
Arjan van de Ven897c6ff2006-07-03 00:25:28 -070072 lockdep_set_class(&s->s_umount, &type->s_umount_key);
Ingo Molnarcf516242006-07-03 00:25:27 -070073 /*
74 * The locking rules for s_lock are up to the
75 * filesystem. For example ext3fs has different
76 * lock ordering than usbfs:
77 */
78 lockdep_set_class(&s->s_lock, &type->s_lock_key);
Peter Zijlstraada723d2009-02-18 14:48:30 -080079 /*
80 * sget() can have s_umount recursion.
81 *
82 * When it cannot find a suitable sb, it allocates a new
83 * one (this one), and tries again to find a suitable old
84 * one.
85 *
86 * In case that succeeds, it will acquire the s_umount
87 * lock of the old one. Since these are clearly distrinct
88 * locks, and this object isn't exposed yet, there's no
89 * risk of deadlocks.
90 *
91 * Annotate this by putting this lock in a different
92 * subclass.
93 */
94 down_write_nested(&s->s_umount, SINGLE_DEPTH_NESTING);
Al Virob20bd1a2010-03-22 08:53:19 -040095 s->s_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 atomic_set(&s->s_active, 1);
Arjan van de Vena11f3a02006-03-23 03:00:33 -080097 mutex_init(&s->s_vfs_rename_mutex);
Ingo Molnard3be9152006-03-23 03:00:29 -080098 mutex_init(&s->s_dquot.dqio_mutex);
99 mutex_init(&s->s_dquot.dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 init_rwsem(&s->s_dquot.dqptr_sem);
101 init_waitqueue_head(&s->s_wait_unfrozen);
102 s->s_maxbytes = MAX_NON_LFS;
103 s->dq_op = sb_dquot_ops;
104 s->s_qcop = sb_quotactl_ops;
105 s->s_op = &default_op;
106 s->s_time_gran = 1000000000;
107 }
108out:
109 return s;
110}
111
112/**
113 * destroy_super - frees a superblock
114 * @s: superblock to free
115 *
116 * Frees a superblock.
117 */
118static inline void destroy_super(struct super_block *s)
119{
120 security_sb_free(s);
Miklos Szeredi79c0b2d2007-05-08 00:25:43 -0700121 kfree(s->s_subtype);
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800122 kfree(s->s_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 kfree(s);
124}
125
126/* Superblock refcounting */
127
128/*
Al Viro35cf7ba2010-03-22 21:13:53 -0400129 * Drop a superblock's refcount. The caller must hold sb_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 */
Al Viro35cf7ba2010-03-22 21:13:53 -0400131void __put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 if (!--sb->s_count) {
Al Viro551de6f2010-03-22 19:36:35 -0400134 list_del_init(&sb->s_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 destroy_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
139/**
140 * put_super - drop a temporary reference to superblock
141 * @sb: superblock in question
142 *
143 * Drops a temporary reference, frees superblock if there's no
144 * references left.
145 */
Jens Axboe03ba3782009-09-09 09:08:54 +0200146void put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 spin_lock(&sb_lock);
149 __put_super(sb);
150 spin_unlock(&sb_lock);
151}
152
153
154/**
Al Viro74dbbdd2009-05-06 01:07:50 -0400155 * deactivate_locked_super - drop an active reference to superblock
156 * @s: superblock to deactivate
157 *
Al Viro1712ac82010-03-22 15:22:31 -0400158 * Drops an active reference to superblock, converting it into a temprory
159 * one if there is no other active references left. In that case we
160 * tell fs driver to shut it down and drop the temporary reference we
161 * had just acquired.
162 *
163 * Caller holds exclusive lock on superblock; that lock is released.
Al Viro74dbbdd2009-05-06 01:07:50 -0400164 */
165void deactivate_locked_super(struct super_block *s)
166{
167 struct file_system_type *fs = s->s_type;
Al Virob20bd1a2010-03-22 08:53:19 -0400168 if (atomic_dec_and_test(&s->s_active)) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400169 vfs_dq_off(s, 0);
170 fs->kill_sb(s);
171 put_filesystem(fs);
172 put_super(s);
173 } else {
174 up_write(&s->s_umount);
175 }
176}
177
178EXPORT_SYMBOL(deactivate_locked_super);
179
180/**
Al Viro1712ac82010-03-22 15:22:31 -0400181 * deactivate_super - drop an active reference to superblock
182 * @s: superblock to deactivate
183 *
184 * Variant of deactivate_locked_super(), except that superblock is *not*
185 * locked by caller. If we are going to drop the final active reference,
186 * lock will be acquired prior to that.
187 */
188void deactivate_super(struct super_block *s)
189{
190 if (!atomic_add_unless(&s->s_active, -1, 1)) {
191 down_write(&s->s_umount);
192 deactivate_locked_super(s);
193 }
194}
195
196EXPORT_SYMBOL(deactivate_super);
197
198/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 * grab_super - acquire an active reference
200 * @s: reference we are trying to make active
201 *
202 * Tries to acquire an active reference. grab_super() is used when we
203 * had just found a superblock in super_blocks or fs_type->fs_supers
204 * and want to turn it into a full-blown active reference. grab_super()
205 * is called with sb_lock held and drops it. Returns 1 in case of
206 * success, 0 if we had failed (superblock contents was already dead or
207 * dying when grab_super() had been called).
208 */
Josh Triplett9c4dbee2006-09-29 01:59:29 -0700209static int grab_super(struct super_block *s) __releases(sb_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Al Virob20bd1a2010-03-22 08:53:19 -0400211 if (atomic_inc_not_zero(&s->s_active)) {
212 spin_unlock(&sb_lock);
Al Virob20bd1a2010-03-22 08:53:19 -0400213 return 1;
214 }
215 /* it's going away */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 s->s_count++;
217 spin_unlock(&sb_lock);
Al Viro1712ac82010-03-22 15:22:31 -0400218 /* wait for it to die */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 down_write(&s->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 up_write(&s->s_umount);
221 put_super(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return 0;
223}
224
David Howellscf9a2ae2006-08-29 19:05:54 +0100225/*
Al Viro914e2632006-10-18 13:55:46 -0400226 * Superblock locking. We really ought to get rid of these two.
227 */
228void lock_super(struct super_block * sb)
229{
230 get_fs_excl();
231 mutex_lock(&sb->s_lock);
232}
233
234void unlock_super(struct super_block * sb)
235{
236 put_fs_excl();
237 mutex_unlock(&sb->s_lock);
238}
239
240EXPORT_SYMBOL(lock_super);
241EXPORT_SYMBOL(unlock_super);
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243/**
244 * generic_shutdown_super - common helper for ->kill_sb()
245 * @sb: superblock to kill
246 *
247 * generic_shutdown_super() does all fs-independent work on superblock
248 * shutdown. Typical ->kill_sb() should pick all fs-specific objects
249 * that need destruction out of superblock, call generic_shutdown_super()
250 * and release aforementioned objects. Note: dentries and inodes _are_
251 * taken care of and do not need specific handling.
David Howellsc636ebd2006-10-11 01:22:19 -0700252 *
253 * Upon calling this function, the filesystem may no longer alter or
254 * rearrange the set of dentries belonging to this super_block, nor may it
255 * change the attachments of dentries to inodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 */
257void generic_shutdown_super(struct super_block *sb)
258{
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800259 const struct super_operations *sop = sb->s_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Arjan van de Venefaee192009-01-06 07:20:54 -0800261
David Howellsc636ebd2006-10-11 01:22:19 -0700262 if (sb->s_root) {
263 shrink_dcache_for_umount(sb);
Jan Kara60b06802009-04-27 16:43:53 +0200264 sync_filesystem(sb);
Al Viroa9e220f2009-05-05 22:10:44 -0400265 get_fs_excl();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 sb->s_flags &= ~MS_ACTIVE;
Arjan van de Venefaee192009-01-06 07:20:54 -0800267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 /* bad name - it should be evict_inodes() */
269 invalidate_inodes(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 if (sop->put_super)
272 sop->put_super(sb);
273
274 /* Forget any remaining inodes */
275 if (invalidate_inodes(sb)) {
Dave Jones7b4fe292006-02-07 12:58:48 -0800276 printk("VFS: Busy inodes after unmount of %s. "
277 "Self-destruct in 5 seconds. Have a nice day...\n",
278 sb->s_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
Al Viroa9e220f2009-05-05 22:10:44 -0400280 put_fs_excl();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
282 spin_lock(&sb_lock);
283 /* should be initialized for __put_super_and_need_restart() */
Al Viro551de6f2010-03-22 19:36:35 -0400284 list_del_init(&sb->s_instances);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 spin_unlock(&sb_lock);
286 up_write(&sb->s_umount);
287}
288
289EXPORT_SYMBOL(generic_shutdown_super);
290
291/**
292 * sget - find or create a superblock
293 * @type: filesystem type superblock should belong to
294 * @test: comparison callback
295 * @set: setup callback
296 * @data: argument to each of them
297 */
298struct super_block *sget(struct file_system_type *type,
299 int (*test)(struct super_block *,void *),
300 int (*set)(struct super_block *,void *),
301 void *data)
302{
303 struct super_block *s = NULL;
Matthias Kaehlcked4730122007-10-18 23:39:57 -0700304 struct super_block *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 int err;
306
307retry:
308 spin_lock(&sb_lock);
Matthias Kaehlcked4730122007-10-18 23:39:57 -0700309 if (test) {
310 list_for_each_entry(old, &type->fs_supers, s_instances) {
311 if (!test(old, data))
312 continue;
313 if (!grab_super(old))
314 goto retry;
Li Zefana3cfbb52009-03-12 14:31:29 -0700315 if (s) {
316 up_write(&s->s_umount);
Matthias Kaehlcked4730122007-10-18 23:39:57 -0700317 destroy_super(s);
Li Zefana3cfbb52009-03-12 14:31:29 -0700318 }
Al Virod3f21472010-03-23 11:11:05 -0400319 down_write(&old->s_umount);
Matthias Kaehlcked4730122007-10-18 23:39:57 -0700320 return old;
321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
323 if (!s) {
324 spin_unlock(&sb_lock);
Ingo Molnarcf516242006-07-03 00:25:27 -0700325 s = alloc_super(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 if (!s)
327 return ERR_PTR(-ENOMEM);
328 goto retry;
329 }
330
331 err = set(s, data);
332 if (err) {
333 spin_unlock(&sb_lock);
Li Zefana3cfbb52009-03-12 14:31:29 -0700334 up_write(&s->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 destroy_super(s);
336 return ERR_PTR(err);
337 }
338 s->s_type = type;
339 strlcpy(s->s_id, type->name, sizeof(s->s_id));
340 list_add_tail(&s->s_list, &super_blocks);
341 list_add(&s->s_instances, &type->fs_supers);
342 spin_unlock(&sb_lock);
343 get_filesystem(type);
344 return s;
345}
346
347EXPORT_SYMBOL(sget);
348
349void drop_super(struct super_block *sb)
350{
351 up_read(&sb->s_umount);
352 put_super(sb);
353}
354
355EXPORT_SYMBOL(drop_super);
356
Christoph Hellwige5004752009-05-05 16:08:56 +0200357/**
358 * sync_supers - helper for periodic superblock writeback
359 *
360 * Call the write_super method if present on all dirty superblocks in
361 * the system. This is for the periodic writeback used by most older
362 * filesystems. For data integrity superblock writeback use
363 * sync_filesystems() instead.
364 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 * Note: check the dirty flag before waiting, so we don't
366 * hold up the sync while mounting a device. (The newly
367 * mounted device won't need syncing.)
368 */
369void sync_supers(void)
370{
Al Viro6754af62010-03-22 20:09:33 -0400371 struct super_block *sb, *n;
Kirill Korotaev618f0632005-06-23 00:09:54 -0700372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 spin_lock(&sb_lock);
Al Viro6754af62010-03-22 20:09:33 -0400374 list_for_each_entry_safe(sb, n, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400375 if (list_empty(&sb->s_instances))
376 continue;
Christoph Hellwige5004752009-05-05 16:08:56 +0200377 if (sb->s_op->write_super && sb->s_dirt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 sb->s_count++;
379 spin_unlock(&sb_lock);
Christoph Hellwige5004752009-05-05 16:08:56 +0200380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 down_read(&sb->s_umount);
Christoph Hellwige5004752009-05-05 16:08:56 +0200382 if (sb->s_root && sb->s_dirt)
383 sb->s_op->write_super(sb);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700384 up_read(&sb->s_umount);
Christoph Hellwige5004752009-05-05 16:08:56 +0200385
Kirill Korotaev618f0632005-06-23 00:09:54 -0700386 spin_lock(&sb_lock);
Al Viro6754af62010-03-22 20:09:33 -0400387 __put_super(sb);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700388 }
389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 spin_unlock(&sb_lock);
391}
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393/**
Al Viro01a05b32010-03-23 06:06:58 -0400394 * iterate_supers - call function for all active superblocks
395 * @f: function to call
396 * @arg: argument to pass to it
397 *
398 * Scans the superblock list and calls given function, passing it
399 * locked superblock and given argument.
400 */
401void iterate_supers(void (*f)(struct super_block *, void *), void *arg)
402{
403 struct super_block *sb, *n;
404
405 spin_lock(&sb_lock);
406 list_for_each_entry_safe(sb, n, &super_blocks, s_list) {
407 if (list_empty(&sb->s_instances))
408 continue;
409 sb->s_count++;
410 spin_unlock(&sb_lock);
411
412 down_read(&sb->s_umount);
413 if (sb->s_root)
414 f(sb, arg);
415 up_read(&sb->s_umount);
416
417 spin_lock(&sb_lock);
418 __put_super(sb);
419 }
420 spin_unlock(&sb_lock);
421}
422
423/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 * get_super - get the superblock of a device
425 * @bdev: device to get the superblock for
426 *
427 * Scans the superblock list and finds the superblock of the file system
428 * mounted on the device given. %NULL is returned if no match is found.
429 */
430
Al Virodf40c012010-03-22 20:23:25 -0400431struct super_block *get_super(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Kirill Korotaev618f0632005-06-23 00:09:54 -0700433 struct super_block *sb;
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (!bdev)
436 return NULL;
Kirill Korotaev618f0632005-06-23 00:09:54 -0700437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 spin_lock(&sb_lock);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700439rescan:
440 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400441 if (list_empty(&sb->s_instances))
442 continue;
Kirill Korotaev618f0632005-06-23 00:09:54 -0700443 if (sb->s_bdev == bdev) {
444 sb->s_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 spin_unlock(&sb_lock);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700446 down_read(&sb->s_umount);
Al Virodf40c012010-03-22 20:23:25 -0400447 /* still alive? */
Kirill Korotaev618f0632005-06-23 00:09:54 -0700448 if (sb->s_root)
449 return sb;
450 up_read(&sb->s_umount);
Al Virodf40c012010-03-22 20:23:25 -0400451 /* nope, got unmounted */
Kirill Korotaev618f0632005-06-23 00:09:54 -0700452 spin_lock(&sb_lock);
Al Virodf40c012010-03-22 20:23:25 -0400453 __put_super(sb);
454 goto rescan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 }
456 }
457 spin_unlock(&sb_lock);
458 return NULL;
459}
460
461EXPORT_SYMBOL(get_super);
Christoph Hellwig45042302009-08-03 23:28:35 +0200462
463/**
464 * get_active_super - get an active reference to the superblock of a device
465 * @bdev: device to get the superblock for
466 *
467 * Scans the superblock list and finds the superblock of the file system
468 * mounted on the device given. Returns the superblock with an active
Al Virod3f21472010-03-23 11:11:05 -0400469 * reference or %NULL if none was found.
Christoph Hellwig45042302009-08-03 23:28:35 +0200470 */
471struct super_block *get_active_super(struct block_device *bdev)
472{
473 struct super_block *sb;
474
475 if (!bdev)
476 return NULL;
477
Al Viro14945832010-03-22 20:15:33 -0400478restart:
Christoph Hellwig45042302009-08-03 23:28:35 +0200479 spin_lock(&sb_lock);
480 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400481 if (list_empty(&sb->s_instances))
482 continue;
Al Viro14945832010-03-22 20:15:33 -0400483 if (sb->s_bdev == bdev) {
484 if (grab_super(sb)) /* drops sb_lock */
485 return sb;
486 else
487 goto restart;
488 }
Christoph Hellwig45042302009-08-03 23:28:35 +0200489 }
490 spin_unlock(&sb_lock);
491 return NULL;
492}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Al Virodf40c012010-03-22 20:23:25 -0400494struct super_block *user_get_super(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
Kirill Korotaev618f0632005-06-23 00:09:54 -0700496 struct super_block *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 spin_lock(&sb_lock);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700499rescan:
500 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400501 if (list_empty(&sb->s_instances))
502 continue;
Kirill Korotaev618f0632005-06-23 00:09:54 -0700503 if (sb->s_dev == dev) {
504 sb->s_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 spin_unlock(&sb_lock);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700506 down_read(&sb->s_umount);
Al Virodf40c012010-03-22 20:23:25 -0400507 /* still alive? */
Kirill Korotaev618f0632005-06-23 00:09:54 -0700508 if (sb->s_root)
509 return sb;
510 up_read(&sb->s_umount);
Al Virodf40c012010-03-22 20:23:25 -0400511 /* nope, got unmounted */
Kirill Korotaev618f0632005-06-23 00:09:54 -0700512 spin_lock(&sb_lock);
Al Virodf40c012010-03-22 20:23:25 -0400513 __put_super(sb);
514 goto rescan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
516 }
517 spin_unlock(&sb_lock);
518 return NULL;
519}
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 * do_remount_sb - asks filesystem to change mount options.
523 * @sb: superblock in question
524 * @flags: numeric part of options
525 * @data: the rest of options
526 * @force: whether or not to force the change
527 *
528 * Alters the mount options of a mounted file system.
529 */
530int do_remount_sb(struct super_block *sb, int flags, void *data, int force)
531{
532 int retval;
Nick Piggind208bbd2009-12-21 16:28:53 -0800533 int remount_rw, remount_ro;
Christoph Hellwig45042302009-08-03 23:28:35 +0200534
535 if (sb->s_frozen != SB_UNFROZEN)
536 return -EBUSY;
537
David Howells93614012006-09-30 20:45:40 +0200538#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (!(flags & MS_RDONLY) && bdev_read_only(sb->s_bdev))
540 return -EACCES;
David Howells93614012006-09-30 20:45:40 +0200541#endif
Christoph Hellwig45042302009-08-03 23:28:35 +0200542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (flags & MS_RDONLY)
544 acct_auto_close(sb);
545 shrink_dcache_sb(sb);
Jan Kara60b06802009-04-27 16:43:53 +0200546 sync_filesystem(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Nick Piggind208bbd2009-12-21 16:28:53 -0800548 remount_ro = (flags & MS_RDONLY) && !(sb->s_flags & MS_RDONLY);
549 remount_rw = !(flags & MS_RDONLY) && (sb->s_flags & MS_RDONLY);
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 /* If we are remounting RDONLY and current sb is read/write,
552 make sure there are no rw files opened */
Nick Piggind208bbd2009-12-21 16:28:53 -0800553 if (remount_ro) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 if (force)
555 mark_files_ro(sb);
J. R. Okajimab0895512009-06-17 01:16:50 +0900556 else if (!fs_may_remount_ro(sb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 return -EBUSY;
Jan Kara9e3509e2009-01-26 16:45:12 +0100558 retval = vfs_dq_off(sb, 1);
J. R. Okajimab0895512009-06-17 01:16:50 +0900559 if (retval < 0 && retval != -ENOSYS)
Jan Kara0ff5af82008-04-28 02:14:33 -0700560 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 }
562
563 if (sb->s_op->remount_fs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 retval = sb->s_op->remount_fs(sb, &flags, data);
J. R. Okajimab0895512009-06-17 01:16:50 +0900565 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 return retval;
567 }
568 sb->s_flags = (sb->s_flags & ~MS_RMT_MASK) | (flags & MS_RMT_MASK);
Jan Kara0ff5af82008-04-28 02:14:33 -0700569 if (remount_rw)
Jan Kara9e3509e2009-01-26 16:45:12 +0100570 vfs_dq_quota_on_remount(sb);
Nick Piggind208bbd2009-12-21 16:28:53 -0800571 /*
572 * Some filesystems modify their metadata via some other path than the
573 * bdev buffer cache (eg. use a private mapping, or directories in
574 * pagecache, etc). Also file data modifications go via their own
575 * mappings. So If we try to mount readonly then copy the filesystem
576 * from bdev, we could get stale data, so invalidate it to give a best
577 * effort at coherency.
578 */
579 if (remount_ro && sb->s_bdev)
580 invalidate_bdev(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 return 0;
582}
583
Jens Axboea2a95372009-03-17 09:38:40 +0100584static void do_emergency_remount(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Al Viroe7fe0582010-03-22 20:11:53 -0400586 struct super_block *sb, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 spin_lock(&sb_lock);
Al Viroe7fe0582010-03-22 20:11:53 -0400589 list_for_each_entry_safe(sb, n, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400590 if (list_empty(&sb->s_instances))
591 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 sb->s_count++;
593 spin_unlock(&sb_lock);
Al Viro443b94b2009-05-05 23:48:50 -0400594 down_write(&sb->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 if (sb->s_root && sb->s_bdev && !(sb->s_flags & MS_RDONLY)) {
596 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 * What lock protects sb->s_flags??
598 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 do_remount_sb(sb, MS_RDONLY, NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
Al Viro443b94b2009-05-05 23:48:50 -0400601 up_write(&sb->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 spin_lock(&sb_lock);
Al Viroe7fe0582010-03-22 20:11:53 -0400603 __put_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605 spin_unlock(&sb_lock);
Jens Axboea2a95372009-03-17 09:38:40 +0100606 kfree(work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 printk("Emergency Remount complete\n");
608}
609
610void emergency_remount(void)
611{
Jens Axboea2a95372009-03-17 09:38:40 +0100612 struct work_struct *work;
613
614 work = kmalloc(sizeof(*work), GFP_ATOMIC);
615 if (work) {
616 INIT_WORK(work, do_emergency_remount);
617 schedule_work(work);
618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619}
620
621/*
622 * Unnamed block devices are dummy devices used by virtual
623 * filesystems which don't use real block-devices. -- jrs
624 */
625
Alexey Dobriyanad76cbc2008-08-28 06:26:23 +0400626static DEFINE_IDA(unnamed_dev_ida);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627static DEFINE_SPINLOCK(unnamed_dev_lock);/* protects the above */
Al Viroc63e09e2009-06-24 02:05:18 -0400628static int unnamed_dev_start = 0; /* don't bother trying below it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630int set_anon_super(struct super_block *s, void *data)
631{
632 int dev;
633 int error;
634
635 retry:
Alexey Dobriyanad76cbc2008-08-28 06:26:23 +0400636 if (ida_pre_get(&unnamed_dev_ida, GFP_ATOMIC) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return -ENOMEM;
638 spin_lock(&unnamed_dev_lock);
Al Viroc63e09e2009-06-24 02:05:18 -0400639 error = ida_get_new_above(&unnamed_dev_ida, unnamed_dev_start, &dev);
Al Virof21f6222009-06-24 03:12:00 -0400640 if (!error)
641 unnamed_dev_start = dev + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 spin_unlock(&unnamed_dev_lock);
643 if (error == -EAGAIN)
644 /* We raced and lost with another CPU. */
645 goto retry;
646 else if (error)
647 return -EAGAIN;
648
649 if ((dev & MAX_ID_MASK) == (1 << MINORBITS)) {
650 spin_lock(&unnamed_dev_lock);
Alexey Dobriyanad76cbc2008-08-28 06:26:23 +0400651 ida_remove(&unnamed_dev_ida, dev);
Al Virof21f6222009-06-24 03:12:00 -0400652 if (unnamed_dev_start > dev)
653 unnamed_dev_start = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 spin_unlock(&unnamed_dev_lock);
655 return -EMFILE;
656 }
657 s->s_dev = MKDEV(0, dev & MINORMASK);
Jörn Engel5129a462010-04-25 08:54:42 +0200658 s->s_bdi = &noop_backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return 0;
660}
661
662EXPORT_SYMBOL(set_anon_super);
663
664void kill_anon_super(struct super_block *sb)
665{
666 int slot = MINOR(sb->s_dev);
667
668 generic_shutdown_super(sb);
669 spin_lock(&unnamed_dev_lock);
Alexey Dobriyanad76cbc2008-08-28 06:26:23 +0400670 ida_remove(&unnamed_dev_ida, slot);
Al Viroc63e09e2009-06-24 02:05:18 -0400671 if (slot < unnamed_dev_start)
672 unnamed_dev_start = slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 spin_unlock(&unnamed_dev_lock);
674}
675
676EXPORT_SYMBOL(kill_anon_super);
677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678void kill_litter_super(struct super_block *sb)
679{
680 if (sb->s_root)
681 d_genocide(sb->s_root);
682 kill_anon_super(sb);
683}
684
685EXPORT_SYMBOL(kill_litter_super);
686
Serge E. Hallyn909e6d92009-04-06 19:01:07 -0700687static int ns_test_super(struct super_block *sb, void *data)
688{
689 return sb->s_fs_info == data;
690}
691
692static int ns_set_super(struct super_block *sb, void *data)
693{
694 sb->s_fs_info = data;
695 return set_anon_super(sb, NULL);
696}
697
698int get_sb_ns(struct file_system_type *fs_type, int flags, void *data,
699 int (*fill_super)(struct super_block *, void *, int),
700 struct vfsmount *mnt)
701{
702 struct super_block *sb;
703
704 sb = sget(fs_type, ns_test_super, ns_set_super, data);
705 if (IS_ERR(sb))
706 return PTR_ERR(sb);
707
708 if (!sb->s_root) {
709 int err;
710 sb->s_flags = flags;
711 err = fill_super(sb, data, flags & MS_SILENT ? 1 : 0);
712 if (err) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400713 deactivate_locked_super(sb);
Serge E. Hallyn909e6d92009-04-06 19:01:07 -0700714 return err;
715 }
716
717 sb->s_flags |= MS_ACTIVE;
718 }
719
720 simple_set_mnt(mnt, sb);
721 return 0;
722}
723
724EXPORT_SYMBOL(get_sb_ns);
725
David Howells93614012006-09-30 20:45:40 +0200726#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727static int set_bdev_super(struct super_block *s, void *data)
728{
729 s->s_bdev = data;
730 s->s_dev = s->s_bdev->bd_dev;
Jens Axboe32a88aa2009-09-16 15:02:33 +0200731
732 /*
733 * We set the bdi here to the queue backing, file systems can
734 * overwrite this in ->fill_super()
735 */
736 s->s_bdi = &bdev_get_queue(s->s_bdev)->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return 0;
738}
739
740static int test_bdev_super(struct super_block *s, void *data)
741{
742 return (void *)s->s_bdev == data;
743}
744
David Howells454e2392006-06-23 02:02:57 -0700745int get_sb_bdev(struct file_system_type *fs_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 int flags, const char *dev_name, void *data,
David Howells454e2392006-06-23 02:02:57 -0700747 int (*fill_super)(struct super_block *, void *, int),
748 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
750 struct block_device *bdev;
751 struct super_block *s;
Al Viro30c40d22008-02-22 19:50:45 -0500752 fmode_t mode = FMODE_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 int error = 0;
754
Al Viro30c40d22008-02-22 19:50:45 -0500755 if (!(flags & MS_RDONLY))
756 mode |= FMODE_WRITE;
757
758 bdev = open_bdev_exclusive(dev_name, mode, fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 if (IS_ERR(bdev))
David Howells454e2392006-06-23 02:02:57 -0700760 return PTR_ERR(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 /*
763 * once the super is inserted into the list by sget, s_umount
764 * will protect the lockfs code from trying to start a snapshot
765 * while we are mounting
766 */
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200767 mutex_lock(&bdev->bd_fsfreeze_mutex);
768 if (bdev->bd_fsfreeze_count > 0) {
769 mutex_unlock(&bdev->bd_fsfreeze_mutex);
770 error = -EBUSY;
771 goto error_bdev;
772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 s = sget(fs_type, test_bdev_super, set_bdev_super, bdev);
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200774 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 if (IS_ERR(s))
David Howells454e2392006-06-23 02:02:57 -0700776 goto error_s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 if (s->s_root) {
779 if ((flags ^ s->s_flags) & MS_RDONLY) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400780 deactivate_locked_super(s);
David Howells454e2392006-06-23 02:02:57 -0700781 error = -EBUSY;
782 goto error_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
David Howells454e2392006-06-23 02:02:57 -0700784
Al Viro30c40d22008-02-22 19:50:45 -0500785 close_bdev_exclusive(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 } else {
787 char b[BDEVNAME_SIZE];
788
789 s->s_flags = flags;
Al Viro30c40d22008-02-22 19:50:45 -0500790 s->s_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
Pekka Enberge78c9a02006-01-08 01:03:39 -0800792 sb_set_blocksize(s, block_size(bdev));
Theodore Ts'o9b04c992006-03-24 03:15:10 -0800793 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if (error) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400795 deactivate_locked_super(s);
David Howells454e2392006-06-23 02:02:57 -0700796 goto error;
Greg Kroah-Hartmanfa675762006-02-22 09:39:02 -0800797 }
David Howells454e2392006-06-23 02:02:57 -0700798
799 s->s_flags |= MS_ACTIVE;
Theodore Ts'o87d8fe12009-01-03 09:47:09 -0500800 bdev->bd_super = s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 }
802
Sukadev Bhattiprolua3ec9472009-03-04 12:06:34 -0800803 simple_set_mnt(mnt, s);
804 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
David Howells454e2392006-06-23 02:02:57 -0700806error_s:
807 error = PTR_ERR(s);
808error_bdev:
Al Viro30c40d22008-02-22 19:50:45 -0500809 close_bdev_exclusive(bdev, mode);
David Howells454e2392006-06-23 02:02:57 -0700810error:
811 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
813
814EXPORT_SYMBOL(get_sb_bdev);
815
816void kill_block_super(struct super_block *sb)
817{
818 struct block_device *bdev = sb->s_bdev;
Al Viro30c40d22008-02-22 19:50:45 -0500819 fmode_t mode = sb->s_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
H Hartley Sweetenddbaaf32009-04-29 20:14:57 -0400821 bdev->bd_super = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 generic_shutdown_super(sb);
823 sync_blockdev(bdev);
Al Viro30c40d22008-02-22 19:50:45 -0500824 close_bdev_exclusive(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
827EXPORT_SYMBOL(kill_block_super);
David Howells93614012006-09-30 20:45:40 +0200828#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
David Howells454e2392006-06-23 02:02:57 -0700830int get_sb_nodev(struct file_system_type *fs_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 int flags, void *data,
David Howells454e2392006-06-23 02:02:57 -0700832 int (*fill_super)(struct super_block *, void *, int),
833 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
835 int error;
836 struct super_block *s = sget(fs_type, NULL, set_anon_super, NULL);
837
838 if (IS_ERR(s))
David Howells454e2392006-06-23 02:02:57 -0700839 return PTR_ERR(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 s->s_flags = flags;
842
Theodore Ts'o9b04c992006-03-24 03:15:10 -0800843 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (error) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400845 deactivate_locked_super(s);
David Howells454e2392006-06-23 02:02:57 -0700846 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
848 s->s_flags |= MS_ACTIVE;
Sukadev Bhattiprolua3ec9472009-03-04 12:06:34 -0800849 simple_set_mnt(mnt, s);
850 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851}
852
853EXPORT_SYMBOL(get_sb_nodev);
854
855static int compare_single(struct super_block *s, void *p)
856{
857 return 1;
858}
859
David Howells454e2392006-06-23 02:02:57 -0700860int get_sb_single(struct file_system_type *fs_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 int flags, void *data,
David Howells454e2392006-06-23 02:02:57 -0700862 int (*fill_super)(struct super_block *, void *, int),
863 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
865 struct super_block *s;
866 int error;
867
868 s = sget(fs_type, compare_single, set_anon_super, NULL);
869 if (IS_ERR(s))
David Howells454e2392006-06-23 02:02:57 -0700870 return PTR_ERR(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 if (!s->s_root) {
872 s->s_flags = flags;
Theodore Ts'o9b04c992006-03-24 03:15:10 -0800873 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 if (error) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400875 deactivate_locked_super(s);
David Howells454e2392006-06-23 02:02:57 -0700876 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
878 s->s_flags |= MS_ACTIVE;
Kay Sievers9329d1b2009-12-18 21:18:15 +0100879 } else {
880 do_remount_sb(s, flags, data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 }
Sukadev Bhattiprolua3ec9472009-03-04 12:06:34 -0800882 simple_set_mnt(mnt, s);
883 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884}
885
886EXPORT_SYMBOL(get_sb_single);
887
888struct vfsmount *
Trond Myklebustbb4a58b2006-06-09 09:34:15 -0400889vfs_kern_mount(struct file_system_type *type, int flags, const char *name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 struct vfsmount *mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 char *secdata = NULL;
David Howells454e2392006-06-23 02:02:57 -0700893 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 if (!type)
896 return ERR_PTR(-ENODEV);
897
David Howells454e2392006-06-23 02:02:57 -0700898 error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 mnt = alloc_vfsmnt(name);
900 if (!mnt)
901 goto out;
902
Al Viro80893522010-02-05 09:30:46 -0500903 if (flags & MS_KERNMOUNT)
904 mnt->mnt_flags = MNT_INTERNAL;
905
Eric Parise0007522008-03-05 10:31:54 -0500906 if (data && !(type->fs_flags & FS_BINARY_MOUNTDATA)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 secdata = alloc_secdata();
David Howells454e2392006-06-23 02:02:57 -0700908 if (!secdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 goto out_mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Eric Parise0007522008-03-05 10:31:54 -0500911 error = security_sb_copy_data(data, secdata);
David Howells454e2392006-06-23 02:02:57 -0700912 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 goto out_free_secdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 }
915
David Howells454e2392006-06-23 02:02:57 -0700916 error = type->get_sb(type, flags, name, data, mnt);
917 if (error < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 goto out_free_secdata;
Lee Schermerhornb4c07bc2007-07-15 23:40:54 -0700919 BUG_ON(!mnt->mnt_sb);
Jörn Engel5129a462010-04-25 08:54:42 +0200920 WARN_ON(!mnt->mnt_sb->s_bdi);
David Howells454e2392006-06-23 02:02:57 -0700921
Jörn Engel5129a462010-04-25 08:54:42 +0200922 error = security_sb_kern_mount(mnt->mnt_sb, flags, secdata);
923 if (error)
924 goto out_sb;
David Howells454e2392006-06-23 02:02:57 -0700925
Jeff Layton42cb56a2009-09-18 13:05:53 -0700926 /*
927 * filesystems should never set s_maxbytes larger than MAX_LFS_FILESIZE
928 * but s_maxbytes was an unsigned long long for many releases. Throw
929 * this warning for a little while to try and catch filesystems that
930 * violate this rule. This warning should be either removed or
931 * converted to a BUG() in 2.6.34.
932 */
933 WARN((mnt->mnt_sb->s_maxbytes < 0), "%s set sb->s_maxbytes to "
934 "negative value (%lld)\n", type->name, mnt->mnt_sb->s_maxbytes);
935
David Howells454e2392006-06-23 02:02:57 -0700936 mnt->mnt_mountpoint = mnt->mnt_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 mnt->mnt_parent = mnt;
David Howells454e2392006-06-23 02:02:57 -0700938 up_write(&mnt->mnt_sb->s_umount);
Gerald Schaefer8680e222005-06-21 17:15:16 -0700939 free_secdata(secdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 return mnt;
941out_sb:
David Howells454e2392006-06-23 02:02:57 -0700942 dput(mnt->mnt_root);
Al Viro74dbbdd2009-05-06 01:07:50 -0400943 deactivate_locked_super(mnt->mnt_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944out_free_secdata:
945 free_secdata(secdata);
946out_mnt:
947 free_vfsmnt(mnt);
948out:
David Howells454e2392006-06-23 02:02:57 -0700949 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950}
951
Trond Myklebustbb4a58b2006-06-09 09:34:15 -0400952EXPORT_SYMBOL_GPL(vfs_kern_mount);
953
Miklos Szeredi79c0b2d2007-05-08 00:25:43 -0700954static struct vfsmount *fs_set_subtype(struct vfsmount *mnt, const char *fstype)
955{
956 int err;
957 const char *subtype = strchr(fstype, '.');
958 if (subtype) {
959 subtype++;
960 err = -EINVAL;
961 if (!subtype[0])
962 goto err;
963 } else
964 subtype = "";
965
966 mnt->mnt_sb->s_subtype = kstrdup(subtype, GFP_KERNEL);
967 err = -ENOMEM;
968 if (!mnt->mnt_sb->s_subtype)
969 goto err;
970 return mnt;
971
972 err:
973 mntput(mnt);
974 return ERR_PTR(err);
975}
976
Trond Myklebustbb4a58b2006-06-09 09:34:15 -0400977struct vfsmount *
978do_kern_mount(const char *fstype, int flags, const char *name, void *data)
979{
980 struct file_system_type *type = get_fs_type(fstype);
981 struct vfsmount *mnt;
982 if (!type)
983 return ERR_PTR(-ENODEV);
984 mnt = vfs_kern_mount(type, flags, name, data);
Miklos Szeredi79c0b2d2007-05-08 00:25:43 -0700985 if (!IS_ERR(mnt) && (type->fs_flags & FS_HAS_SUBTYPE) &&
986 !mnt->mnt_sb->s_subtype)
987 mnt = fs_set_subtype(mnt, fstype);
Trond Myklebustbb4a58b2006-06-09 09:34:15 -0400988 put_filesystem(type);
989 return mnt;
990}
Al Viro8a4e98d2008-02-24 01:43:03 -0500991EXPORT_SYMBOL_GPL(do_kern_mount);
Trond Myklebustbb4a58b2006-06-09 09:34:15 -0400992
Pavel Emelyanov8bf97252007-10-18 23:40:02 -0700993struct vfsmount *kern_mount_data(struct file_system_type *type, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
Pavel Emelyanov8bf97252007-10-18 23:40:02 -0700995 return vfs_kern_mount(type, MS_KERNMOUNT, type->name, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
997
Pavel Emelyanov8bf97252007-10-18 23:40:02 -0700998EXPORT_SYMBOL_GPL(kern_mount_data);