blob: 89afca5055ab513db1bf7ae1821e282a5be25836 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/acct.h>
26#include <linux/blkdev.h>
27#include <linux/quotaops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/mount.h>
29#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/writeback.h> /* for the emergency remount stuff */
31#include <linux/idr.h>
Ingo Molnar353ab6e2006-03-26 01:37:12 -080032#include <linux/mutex.h>
Jens Axboe5477d0f2010-04-29 20:33:35 +020033#include <linux/backing-dev.h>
Al Viro6d59e7f2008-03-22 15:48:17 -040034#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037LIST_HEAD(super_blocks);
38DEFINE_SPINLOCK(sb_lock);
39
40/**
41 * alloc_super - create new superblock
Henrik Kretzschmarfe2bbc42006-09-06 00:03:41 -070042 * @type: filesystem type superblock should belong to
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 *
44 * Allocates and initializes a new &struct super_block. alloc_super()
45 * returns a pointer new superblock or %NULL if allocation had failed.
46 */
Ingo Molnarcf516242006-07-03 00:25:27 -070047static struct super_block *alloc_super(struct file_system_type *type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
Oliver Neukum11b0b5a2006-03-25 03:08:13 -080049 struct super_block *s = kzalloc(sizeof(struct super_block), GFP_USER);
Alexey Dobriyanb87221d2009-09-21 17:01:09 -070050 static const struct super_operations default_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52 if (s) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 if (security_sb_alloc(s)) {
54 kfree(s);
55 s = NULL;
56 goto out;
57 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 INIT_LIST_HEAD(&s->s_files);
59 INIT_LIST_HEAD(&s->s_instances);
60 INIT_HLIST_HEAD(&s->s_anon);
61 INIT_LIST_HEAD(&s->s_inodes);
Kentaro Makitada3bbdd2008-07-23 21:27:13 -070062 INIT_LIST_HEAD(&s->s_dentry_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 init_rwsem(&s->s_umount);
Ingo Molnar7892f2f2006-01-09 15:59:25 -080064 mutex_init(&s->s_lock);
Arjan van de Ven897c6ff2006-07-03 00:25:28 -070065 lockdep_set_class(&s->s_umount, &type->s_umount_key);
Ingo Molnarcf516242006-07-03 00:25:27 -070066 /*
67 * The locking rules for s_lock are up to the
68 * filesystem. For example ext3fs has different
69 * lock ordering than usbfs:
70 */
71 lockdep_set_class(&s->s_lock, &type->s_lock_key);
Peter Zijlstraada723d2009-02-18 14:48:30 -080072 /*
73 * sget() can have s_umount recursion.
74 *
75 * When it cannot find a suitable sb, it allocates a new
76 * one (this one), and tries again to find a suitable old
77 * one.
78 *
79 * In case that succeeds, it will acquire the s_umount
80 * lock of the old one. Since these are clearly distrinct
81 * locks, and this object isn't exposed yet, there's no
82 * risk of deadlocks.
83 *
84 * Annotate this by putting this lock in a different
85 * subclass.
86 */
87 down_write_nested(&s->s_umount, SINGLE_DEPTH_NESTING);
Al Virob20bd1a2010-03-22 08:53:19 -040088 s->s_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 atomic_set(&s->s_active, 1);
Arjan van de Vena11f3a02006-03-23 03:00:33 -080090 mutex_init(&s->s_vfs_rename_mutex);
Ingo Molnard3be9152006-03-23 03:00:29 -080091 mutex_init(&s->s_dquot.dqio_mutex);
92 mutex_init(&s->s_dquot.dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 init_rwsem(&s->s_dquot.dqptr_sem);
94 init_waitqueue_head(&s->s_wait_unfrozen);
95 s->s_maxbytes = MAX_NON_LFS;
96 s->dq_op = sb_dquot_ops;
97 s->s_qcop = sb_quotactl_ops;
98 s->s_op = &default_op;
99 s->s_time_gran = 1000000000;
100 }
101out:
102 return s;
103}
104
105/**
106 * destroy_super - frees a superblock
107 * @s: superblock to free
108 *
109 * Frees a superblock.
110 */
111static inline void destroy_super(struct super_block *s)
112{
113 security_sb_free(s);
Miklos Szeredi79c0b2d2007-05-08 00:25:43 -0700114 kfree(s->s_subtype);
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800115 kfree(s->s_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 kfree(s);
117}
118
119/* Superblock refcounting */
120
121/*
Al Viro35cf7ba2010-03-22 21:13:53 -0400122 * Drop a superblock's refcount. The caller must hold sb_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 */
Al Viro35cf7ba2010-03-22 21:13:53 -0400124void __put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 if (!--sb->s_count) {
Al Viro551de6f2010-03-22 19:36:35 -0400127 list_del_init(&sb->s_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 destroy_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
132/**
133 * put_super - drop a temporary reference to superblock
134 * @sb: superblock in question
135 *
136 * Drops a temporary reference, frees superblock if there's no
137 * references left.
138 */
Jens Axboe03ba3782009-09-09 09:08:54 +0200139void put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 spin_lock(&sb_lock);
142 __put_super(sb);
143 spin_unlock(&sb_lock);
144}
145
146
147/**
Al Viro74dbbdd2009-05-06 01:07:50 -0400148 * deactivate_locked_super - drop an active reference to superblock
149 * @s: superblock to deactivate
150 *
Al Viro1712ac82010-03-22 15:22:31 -0400151 * Drops an active reference to superblock, converting it into a temprory
152 * one if there is no other active references left. In that case we
153 * tell fs driver to shut it down and drop the temporary reference we
154 * had just acquired.
155 *
156 * Caller holds exclusive lock on superblock; that lock is released.
Al Viro74dbbdd2009-05-06 01:07:50 -0400157 */
158void deactivate_locked_super(struct super_block *s)
159{
160 struct file_system_type *fs = s->s_type;
Al Virob20bd1a2010-03-22 08:53:19 -0400161 if (atomic_dec_and_test(&s->s_active)) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400162 vfs_dq_off(s, 0);
163 fs->kill_sb(s);
164 put_filesystem(fs);
165 put_super(s);
166 } else {
167 up_write(&s->s_umount);
168 }
169}
170
171EXPORT_SYMBOL(deactivate_locked_super);
172
173/**
Al Viro1712ac82010-03-22 15:22:31 -0400174 * deactivate_super - drop an active reference to superblock
175 * @s: superblock to deactivate
176 *
177 * Variant of deactivate_locked_super(), except that superblock is *not*
178 * locked by caller. If we are going to drop the final active reference,
179 * lock will be acquired prior to that.
180 */
181void deactivate_super(struct super_block *s)
182{
183 if (!atomic_add_unless(&s->s_active, -1, 1)) {
184 down_write(&s->s_umount);
185 deactivate_locked_super(s);
186 }
187}
188
189EXPORT_SYMBOL(deactivate_super);
190
191/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 * grab_super - acquire an active reference
193 * @s: reference we are trying to make active
194 *
195 * Tries to acquire an active reference. grab_super() is used when we
196 * had just found a superblock in super_blocks or fs_type->fs_supers
197 * and want to turn it into a full-blown active reference. grab_super()
198 * is called with sb_lock held and drops it. Returns 1 in case of
199 * success, 0 if we had failed (superblock contents was already dead or
200 * dying when grab_super() had been called).
201 */
Josh Triplett9c4dbee2006-09-29 01:59:29 -0700202static int grab_super(struct super_block *s) __releases(sb_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Al Virob20bd1a2010-03-22 08:53:19 -0400204 if (atomic_inc_not_zero(&s->s_active)) {
205 spin_unlock(&sb_lock);
Al Virob20bd1a2010-03-22 08:53:19 -0400206 return 1;
207 }
208 /* it's going away */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 s->s_count++;
210 spin_unlock(&sb_lock);
Al Viro1712ac82010-03-22 15:22:31 -0400211 /* wait for it to die */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 down_write(&s->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 up_write(&s->s_umount);
214 put_super(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 return 0;
216}
217
David Howellscf9a2ae2006-08-29 19:05:54 +0100218/*
Al Viro914e2632006-10-18 13:55:46 -0400219 * Superblock locking. We really ought to get rid of these two.
220 */
221void lock_super(struct super_block * sb)
222{
223 get_fs_excl();
224 mutex_lock(&sb->s_lock);
225}
226
227void unlock_super(struct super_block * sb)
228{
229 put_fs_excl();
230 mutex_unlock(&sb->s_lock);
231}
232
233EXPORT_SYMBOL(lock_super);
234EXPORT_SYMBOL(unlock_super);
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236/**
237 * generic_shutdown_super - common helper for ->kill_sb()
238 * @sb: superblock to kill
239 *
240 * generic_shutdown_super() does all fs-independent work on superblock
241 * shutdown. Typical ->kill_sb() should pick all fs-specific objects
242 * that need destruction out of superblock, call generic_shutdown_super()
243 * and release aforementioned objects. Note: dentries and inodes _are_
244 * taken care of and do not need specific handling.
David Howellsc636ebd2006-10-11 01:22:19 -0700245 *
246 * Upon calling this function, the filesystem may no longer alter or
247 * rearrange the set of dentries belonging to this super_block, nor may it
248 * change the attachments of dentries to inodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 */
250void generic_shutdown_super(struct super_block *sb)
251{
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800252 const struct super_operations *sop = sb->s_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Arjan van de Venefaee192009-01-06 07:20:54 -0800254
David Howellsc636ebd2006-10-11 01:22:19 -0700255 if (sb->s_root) {
256 shrink_dcache_for_umount(sb);
Jan Kara60b06802009-04-27 16:43:53 +0200257 sync_filesystem(sb);
Al Viroa9e220f2009-05-05 22:10:44 -0400258 get_fs_excl();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 sb->s_flags &= ~MS_ACTIVE;
Arjan van de Venefaee192009-01-06 07:20:54 -0800260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 /* bad name - it should be evict_inodes() */
262 invalidate_inodes(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 if (sop->put_super)
265 sop->put_super(sb);
266
267 /* Forget any remaining inodes */
268 if (invalidate_inodes(sb)) {
Dave Jones7b4fe292006-02-07 12:58:48 -0800269 printk("VFS: Busy inodes after unmount of %s. "
270 "Self-destruct in 5 seconds. Have a nice day...\n",
271 sb->s_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 }
Al Viroa9e220f2009-05-05 22:10:44 -0400273 put_fs_excl();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 }
275 spin_lock(&sb_lock);
276 /* should be initialized for __put_super_and_need_restart() */
Al Viro551de6f2010-03-22 19:36:35 -0400277 list_del_init(&sb->s_instances);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 spin_unlock(&sb_lock);
279 up_write(&sb->s_umount);
280}
281
282EXPORT_SYMBOL(generic_shutdown_super);
283
284/**
285 * sget - find or create a superblock
286 * @type: filesystem type superblock should belong to
287 * @test: comparison callback
288 * @set: setup callback
289 * @data: argument to each of them
290 */
291struct super_block *sget(struct file_system_type *type,
292 int (*test)(struct super_block *,void *),
293 int (*set)(struct super_block *,void *),
294 void *data)
295{
296 struct super_block *s = NULL;
Matthias Kaehlcked4730122007-10-18 23:39:57 -0700297 struct super_block *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 int err;
299
300retry:
301 spin_lock(&sb_lock);
Matthias Kaehlcked4730122007-10-18 23:39:57 -0700302 if (test) {
303 list_for_each_entry(old, &type->fs_supers, s_instances) {
304 if (!test(old, data))
305 continue;
306 if (!grab_super(old))
307 goto retry;
Li Zefana3cfbb52009-03-12 14:31:29 -0700308 if (s) {
309 up_write(&s->s_umount);
Matthias Kaehlcked4730122007-10-18 23:39:57 -0700310 destroy_super(s);
Li Zefana3cfbb52009-03-12 14:31:29 -0700311 }
Al Virod3f21472010-03-23 11:11:05 -0400312 down_write(&old->s_umount);
Matthias Kaehlcked4730122007-10-18 23:39:57 -0700313 return old;
314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 }
316 if (!s) {
317 spin_unlock(&sb_lock);
Ingo Molnarcf516242006-07-03 00:25:27 -0700318 s = alloc_super(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (!s)
320 return ERR_PTR(-ENOMEM);
321 goto retry;
322 }
323
324 err = set(s, data);
325 if (err) {
326 spin_unlock(&sb_lock);
Li Zefana3cfbb52009-03-12 14:31:29 -0700327 up_write(&s->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 destroy_super(s);
329 return ERR_PTR(err);
330 }
331 s->s_type = type;
332 strlcpy(s->s_id, type->name, sizeof(s->s_id));
333 list_add_tail(&s->s_list, &super_blocks);
334 list_add(&s->s_instances, &type->fs_supers);
335 spin_unlock(&sb_lock);
336 get_filesystem(type);
337 return s;
338}
339
340EXPORT_SYMBOL(sget);
341
342void drop_super(struct super_block *sb)
343{
344 up_read(&sb->s_umount);
345 put_super(sb);
346}
347
348EXPORT_SYMBOL(drop_super);
349
Christoph Hellwige5004752009-05-05 16:08:56 +0200350/**
351 * sync_supers - helper for periodic superblock writeback
352 *
353 * Call the write_super method if present on all dirty superblocks in
354 * the system. This is for the periodic writeback used by most older
355 * filesystems. For data integrity superblock writeback use
356 * sync_filesystems() instead.
357 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 * Note: check the dirty flag before waiting, so we don't
359 * hold up the sync while mounting a device. (The newly
360 * mounted device won't need syncing.)
361 */
362void sync_supers(void)
363{
Al Viro6754af62010-03-22 20:09:33 -0400364 struct super_block *sb, *n;
Kirill Korotaev618f0632005-06-23 00:09:54 -0700365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 spin_lock(&sb_lock);
Al Viro6754af62010-03-22 20:09:33 -0400367 list_for_each_entry_safe(sb, n, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400368 if (list_empty(&sb->s_instances))
369 continue;
Christoph Hellwige5004752009-05-05 16:08:56 +0200370 if (sb->s_op->write_super && sb->s_dirt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 sb->s_count++;
372 spin_unlock(&sb_lock);
Christoph Hellwige5004752009-05-05 16:08:56 +0200373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 down_read(&sb->s_umount);
Christoph Hellwige5004752009-05-05 16:08:56 +0200375 if (sb->s_root && sb->s_dirt)
376 sb->s_op->write_super(sb);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700377 up_read(&sb->s_umount);
Christoph Hellwige5004752009-05-05 16:08:56 +0200378
Kirill Korotaev618f0632005-06-23 00:09:54 -0700379 spin_lock(&sb_lock);
Al Viro6754af62010-03-22 20:09:33 -0400380 __put_super(sb);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700381 }
382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 spin_unlock(&sb_lock);
384}
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386/**
Al Viro01a05b32010-03-23 06:06:58 -0400387 * iterate_supers - call function for all active superblocks
388 * @f: function to call
389 * @arg: argument to pass to it
390 *
391 * Scans the superblock list and calls given function, passing it
392 * locked superblock and given argument.
393 */
394void iterate_supers(void (*f)(struct super_block *, void *), void *arg)
395{
396 struct super_block *sb, *n;
397
398 spin_lock(&sb_lock);
399 list_for_each_entry_safe(sb, n, &super_blocks, s_list) {
400 if (list_empty(&sb->s_instances))
401 continue;
402 sb->s_count++;
403 spin_unlock(&sb_lock);
404
405 down_read(&sb->s_umount);
406 if (sb->s_root)
407 f(sb, arg);
408 up_read(&sb->s_umount);
409
410 spin_lock(&sb_lock);
411 __put_super(sb);
412 }
413 spin_unlock(&sb_lock);
414}
415
416/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 * get_super - get the superblock of a device
418 * @bdev: device to get the superblock for
419 *
420 * Scans the superblock list and finds the superblock of the file system
421 * mounted on the device given. %NULL is returned if no match is found.
422 */
423
Al Virodf40c012010-03-22 20:23:25 -0400424struct super_block *get_super(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Kirill Korotaev618f0632005-06-23 00:09:54 -0700426 struct super_block *sb;
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (!bdev)
429 return NULL;
Kirill Korotaev618f0632005-06-23 00:09:54 -0700430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 spin_lock(&sb_lock);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700432rescan:
433 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400434 if (list_empty(&sb->s_instances))
435 continue;
Kirill Korotaev618f0632005-06-23 00:09:54 -0700436 if (sb->s_bdev == bdev) {
437 sb->s_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 spin_unlock(&sb_lock);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700439 down_read(&sb->s_umount);
Al Virodf40c012010-03-22 20:23:25 -0400440 /* still alive? */
Kirill Korotaev618f0632005-06-23 00:09:54 -0700441 if (sb->s_root)
442 return sb;
443 up_read(&sb->s_umount);
Al Virodf40c012010-03-22 20:23:25 -0400444 /* nope, got unmounted */
Kirill Korotaev618f0632005-06-23 00:09:54 -0700445 spin_lock(&sb_lock);
Al Virodf40c012010-03-22 20:23:25 -0400446 __put_super(sb);
447 goto rescan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
449 }
450 spin_unlock(&sb_lock);
451 return NULL;
452}
453
454EXPORT_SYMBOL(get_super);
Christoph Hellwig45042302009-08-03 23:28:35 +0200455
456/**
457 * get_active_super - get an active reference to the superblock of a device
458 * @bdev: device to get the superblock for
459 *
460 * Scans the superblock list and finds the superblock of the file system
461 * mounted on the device given. Returns the superblock with an active
Al Virod3f21472010-03-23 11:11:05 -0400462 * reference or %NULL if none was found.
Christoph Hellwig45042302009-08-03 23:28:35 +0200463 */
464struct super_block *get_active_super(struct block_device *bdev)
465{
466 struct super_block *sb;
467
468 if (!bdev)
469 return NULL;
470
Al Viro14945832010-03-22 20:15:33 -0400471restart:
Christoph Hellwig45042302009-08-03 23:28:35 +0200472 spin_lock(&sb_lock);
473 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400474 if (list_empty(&sb->s_instances))
475 continue;
Al Viro14945832010-03-22 20:15:33 -0400476 if (sb->s_bdev == bdev) {
477 if (grab_super(sb)) /* drops sb_lock */
478 return sb;
479 else
480 goto restart;
481 }
Christoph Hellwig45042302009-08-03 23:28:35 +0200482 }
483 spin_unlock(&sb_lock);
484 return NULL;
485}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Al Virodf40c012010-03-22 20:23:25 -0400487struct super_block *user_get_super(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
Kirill Korotaev618f0632005-06-23 00:09:54 -0700489 struct super_block *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 spin_lock(&sb_lock);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700492rescan:
493 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400494 if (list_empty(&sb->s_instances))
495 continue;
Kirill Korotaev618f0632005-06-23 00:09:54 -0700496 if (sb->s_dev == dev) {
497 sb->s_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 spin_unlock(&sb_lock);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700499 down_read(&sb->s_umount);
Al Virodf40c012010-03-22 20:23:25 -0400500 /* still alive? */
Kirill Korotaev618f0632005-06-23 00:09:54 -0700501 if (sb->s_root)
502 return sb;
503 up_read(&sb->s_umount);
Al Virodf40c012010-03-22 20:23:25 -0400504 /* nope, got unmounted */
Kirill Korotaev618f0632005-06-23 00:09:54 -0700505 spin_lock(&sb_lock);
Al Virodf40c012010-03-22 20:23:25 -0400506 __put_super(sb);
507 goto rescan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 }
509 }
510 spin_unlock(&sb_lock);
511 return NULL;
512}
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 * do_remount_sb - asks filesystem to change mount options.
516 * @sb: superblock in question
517 * @flags: numeric part of options
518 * @data: the rest of options
519 * @force: whether or not to force the change
520 *
521 * Alters the mount options of a mounted file system.
522 */
523int do_remount_sb(struct super_block *sb, int flags, void *data, int force)
524{
525 int retval;
Nick Piggind208bbd2009-12-21 16:28:53 -0800526 int remount_rw, remount_ro;
Christoph Hellwig45042302009-08-03 23:28:35 +0200527
528 if (sb->s_frozen != SB_UNFROZEN)
529 return -EBUSY;
530
David Howells93614012006-09-30 20:45:40 +0200531#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (!(flags & MS_RDONLY) && bdev_read_only(sb->s_bdev))
533 return -EACCES;
David Howells93614012006-09-30 20:45:40 +0200534#endif
Christoph Hellwig45042302009-08-03 23:28:35 +0200535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 if (flags & MS_RDONLY)
537 acct_auto_close(sb);
538 shrink_dcache_sb(sb);
Jan Kara60b06802009-04-27 16:43:53 +0200539 sync_filesystem(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Nick Piggind208bbd2009-12-21 16:28:53 -0800541 remount_ro = (flags & MS_RDONLY) && !(sb->s_flags & MS_RDONLY);
542 remount_rw = !(flags & MS_RDONLY) && (sb->s_flags & MS_RDONLY);
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 /* If we are remounting RDONLY and current sb is read/write,
545 make sure there are no rw files opened */
Nick Piggind208bbd2009-12-21 16:28:53 -0800546 if (remount_ro) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 if (force)
548 mark_files_ro(sb);
J. R. Okajimab0895512009-06-17 01:16:50 +0900549 else if (!fs_may_remount_ro(sb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 return -EBUSY;
Jan Kara9e3509e2009-01-26 16:45:12 +0100551 retval = vfs_dq_off(sb, 1);
J. R. Okajimab0895512009-06-17 01:16:50 +0900552 if (retval < 0 && retval != -ENOSYS)
Jan Kara0ff5af82008-04-28 02:14:33 -0700553 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
555
556 if (sb->s_op->remount_fs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 retval = sb->s_op->remount_fs(sb, &flags, data);
J. R. Okajimab0895512009-06-17 01:16:50 +0900558 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 return retval;
560 }
561 sb->s_flags = (sb->s_flags & ~MS_RMT_MASK) | (flags & MS_RMT_MASK);
Jan Kara0ff5af82008-04-28 02:14:33 -0700562 if (remount_rw)
Jan Kara9e3509e2009-01-26 16:45:12 +0100563 vfs_dq_quota_on_remount(sb);
Nick Piggind208bbd2009-12-21 16:28:53 -0800564 /*
565 * Some filesystems modify their metadata via some other path than the
566 * bdev buffer cache (eg. use a private mapping, or directories in
567 * pagecache, etc). Also file data modifications go via their own
568 * mappings. So If we try to mount readonly then copy the filesystem
569 * from bdev, we could get stale data, so invalidate it to give a best
570 * effort at coherency.
571 */
572 if (remount_ro && sb->s_bdev)
573 invalidate_bdev(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 return 0;
575}
576
Jens Axboea2a95372009-03-17 09:38:40 +0100577static void do_emergency_remount(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Al Viroe7fe0582010-03-22 20:11:53 -0400579 struct super_block *sb, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 spin_lock(&sb_lock);
Al Viroe7fe0582010-03-22 20:11:53 -0400582 list_for_each_entry_safe(sb, n, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400583 if (list_empty(&sb->s_instances))
584 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 sb->s_count++;
586 spin_unlock(&sb_lock);
Al Viro443b94b2009-05-05 23:48:50 -0400587 down_write(&sb->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if (sb->s_root && sb->s_bdev && !(sb->s_flags & MS_RDONLY)) {
589 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 * What lock protects sb->s_flags??
591 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 do_remount_sb(sb, MS_RDONLY, NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
Al Viro443b94b2009-05-05 23:48:50 -0400594 up_write(&sb->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 spin_lock(&sb_lock);
Al Viroe7fe0582010-03-22 20:11:53 -0400596 __put_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
598 spin_unlock(&sb_lock);
Jens Axboea2a95372009-03-17 09:38:40 +0100599 kfree(work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 printk("Emergency Remount complete\n");
601}
602
603void emergency_remount(void)
604{
Jens Axboea2a95372009-03-17 09:38:40 +0100605 struct work_struct *work;
606
607 work = kmalloc(sizeof(*work), GFP_ATOMIC);
608 if (work) {
609 INIT_WORK(work, do_emergency_remount);
610 schedule_work(work);
611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613
614/*
615 * Unnamed block devices are dummy devices used by virtual
616 * filesystems which don't use real block-devices. -- jrs
617 */
618
Alexey Dobriyanad76cbc2008-08-28 06:26:23 +0400619static DEFINE_IDA(unnamed_dev_ida);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620static DEFINE_SPINLOCK(unnamed_dev_lock);/* protects the above */
Al Viroc63e09e2009-06-24 02:05:18 -0400621static int unnamed_dev_start = 0; /* don't bother trying below it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623int set_anon_super(struct super_block *s, void *data)
624{
625 int dev;
626 int error;
627
628 retry:
Alexey Dobriyanad76cbc2008-08-28 06:26:23 +0400629 if (ida_pre_get(&unnamed_dev_ida, GFP_ATOMIC) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return -ENOMEM;
631 spin_lock(&unnamed_dev_lock);
Al Viroc63e09e2009-06-24 02:05:18 -0400632 error = ida_get_new_above(&unnamed_dev_ida, unnamed_dev_start, &dev);
Al Virof21f6222009-06-24 03:12:00 -0400633 if (!error)
634 unnamed_dev_start = dev + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 spin_unlock(&unnamed_dev_lock);
636 if (error == -EAGAIN)
637 /* We raced and lost with another CPU. */
638 goto retry;
639 else if (error)
640 return -EAGAIN;
641
642 if ((dev & MAX_ID_MASK) == (1 << MINORBITS)) {
643 spin_lock(&unnamed_dev_lock);
Alexey Dobriyanad76cbc2008-08-28 06:26:23 +0400644 ida_remove(&unnamed_dev_ida, dev);
Al Virof21f6222009-06-24 03:12:00 -0400645 if (unnamed_dev_start > dev)
646 unnamed_dev_start = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 spin_unlock(&unnamed_dev_lock);
648 return -EMFILE;
649 }
650 s->s_dev = MKDEV(0, dev & MINORMASK);
Jörn Engel5129a462010-04-25 08:54:42 +0200651 s->s_bdi = &noop_backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 return 0;
653}
654
655EXPORT_SYMBOL(set_anon_super);
656
657void kill_anon_super(struct super_block *sb)
658{
659 int slot = MINOR(sb->s_dev);
660
661 generic_shutdown_super(sb);
662 spin_lock(&unnamed_dev_lock);
Alexey Dobriyanad76cbc2008-08-28 06:26:23 +0400663 ida_remove(&unnamed_dev_ida, slot);
Al Viroc63e09e2009-06-24 02:05:18 -0400664 if (slot < unnamed_dev_start)
665 unnamed_dev_start = slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 spin_unlock(&unnamed_dev_lock);
667}
668
669EXPORT_SYMBOL(kill_anon_super);
670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671void kill_litter_super(struct super_block *sb)
672{
673 if (sb->s_root)
674 d_genocide(sb->s_root);
675 kill_anon_super(sb);
676}
677
678EXPORT_SYMBOL(kill_litter_super);
679
Serge E. Hallyn909e6d92009-04-06 19:01:07 -0700680static int ns_test_super(struct super_block *sb, void *data)
681{
682 return sb->s_fs_info == data;
683}
684
685static int ns_set_super(struct super_block *sb, void *data)
686{
687 sb->s_fs_info = data;
688 return set_anon_super(sb, NULL);
689}
690
691int get_sb_ns(struct file_system_type *fs_type, int flags, void *data,
692 int (*fill_super)(struct super_block *, void *, int),
693 struct vfsmount *mnt)
694{
695 struct super_block *sb;
696
697 sb = sget(fs_type, ns_test_super, ns_set_super, data);
698 if (IS_ERR(sb))
699 return PTR_ERR(sb);
700
701 if (!sb->s_root) {
702 int err;
703 sb->s_flags = flags;
704 err = fill_super(sb, data, flags & MS_SILENT ? 1 : 0);
705 if (err) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400706 deactivate_locked_super(sb);
Serge E. Hallyn909e6d92009-04-06 19:01:07 -0700707 return err;
708 }
709
710 sb->s_flags |= MS_ACTIVE;
711 }
712
713 simple_set_mnt(mnt, sb);
714 return 0;
715}
716
717EXPORT_SYMBOL(get_sb_ns);
718
David Howells93614012006-09-30 20:45:40 +0200719#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720static int set_bdev_super(struct super_block *s, void *data)
721{
722 s->s_bdev = data;
723 s->s_dev = s->s_bdev->bd_dev;
Jens Axboe32a88aa2009-09-16 15:02:33 +0200724
725 /*
726 * We set the bdi here to the queue backing, file systems can
727 * overwrite this in ->fill_super()
728 */
729 s->s_bdi = &bdev_get_queue(s->s_bdev)->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 return 0;
731}
732
733static int test_bdev_super(struct super_block *s, void *data)
734{
735 return (void *)s->s_bdev == data;
736}
737
David Howells454e2392006-06-23 02:02:57 -0700738int get_sb_bdev(struct file_system_type *fs_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 int flags, const char *dev_name, void *data,
David Howells454e2392006-06-23 02:02:57 -0700740 int (*fill_super)(struct super_block *, void *, int),
741 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
743 struct block_device *bdev;
744 struct super_block *s;
Al Viro30c40d22008-02-22 19:50:45 -0500745 fmode_t mode = FMODE_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 int error = 0;
747
Al Viro30c40d22008-02-22 19:50:45 -0500748 if (!(flags & MS_RDONLY))
749 mode |= FMODE_WRITE;
750
751 bdev = open_bdev_exclusive(dev_name, mode, fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (IS_ERR(bdev))
David Howells454e2392006-06-23 02:02:57 -0700753 return PTR_ERR(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755 /*
756 * once the super is inserted into the list by sget, s_umount
757 * will protect the lockfs code from trying to start a snapshot
758 * while we are mounting
759 */
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200760 mutex_lock(&bdev->bd_fsfreeze_mutex);
761 if (bdev->bd_fsfreeze_count > 0) {
762 mutex_unlock(&bdev->bd_fsfreeze_mutex);
763 error = -EBUSY;
764 goto error_bdev;
765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 s = sget(fs_type, test_bdev_super, set_bdev_super, bdev);
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200767 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 if (IS_ERR(s))
David Howells454e2392006-06-23 02:02:57 -0700769 goto error_s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 if (s->s_root) {
772 if ((flags ^ s->s_flags) & MS_RDONLY) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400773 deactivate_locked_super(s);
David Howells454e2392006-06-23 02:02:57 -0700774 error = -EBUSY;
775 goto error_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
David Howells454e2392006-06-23 02:02:57 -0700777
Al Viro30c40d22008-02-22 19:50:45 -0500778 close_bdev_exclusive(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 } else {
780 char b[BDEVNAME_SIZE];
781
782 s->s_flags = flags;
Al Viro30c40d22008-02-22 19:50:45 -0500783 s->s_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
Pekka Enberge78c9a02006-01-08 01:03:39 -0800785 sb_set_blocksize(s, block_size(bdev));
Theodore Ts'o9b04c992006-03-24 03:15:10 -0800786 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (error) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400788 deactivate_locked_super(s);
David Howells454e2392006-06-23 02:02:57 -0700789 goto error;
Greg Kroah-Hartmanfa675762006-02-22 09:39:02 -0800790 }
David Howells454e2392006-06-23 02:02:57 -0700791
792 s->s_flags |= MS_ACTIVE;
Theodore Ts'o87d8fe12009-01-03 09:47:09 -0500793 bdev->bd_super = s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
795
Sukadev Bhattiprolua3ec9472009-03-04 12:06:34 -0800796 simple_set_mnt(mnt, s);
797 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
David Howells454e2392006-06-23 02:02:57 -0700799error_s:
800 error = PTR_ERR(s);
801error_bdev:
Al Viro30c40d22008-02-22 19:50:45 -0500802 close_bdev_exclusive(bdev, mode);
David Howells454e2392006-06-23 02:02:57 -0700803error:
804 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
806
807EXPORT_SYMBOL(get_sb_bdev);
808
809void kill_block_super(struct super_block *sb)
810{
811 struct block_device *bdev = sb->s_bdev;
Al Viro30c40d22008-02-22 19:50:45 -0500812 fmode_t mode = sb->s_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
H Hartley Sweetenddbaaf32009-04-29 20:14:57 -0400814 bdev->bd_super = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 generic_shutdown_super(sb);
816 sync_blockdev(bdev);
Al Viro30c40d22008-02-22 19:50:45 -0500817 close_bdev_exclusive(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818}
819
820EXPORT_SYMBOL(kill_block_super);
David Howells93614012006-09-30 20:45:40 +0200821#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
David Howells454e2392006-06-23 02:02:57 -0700823int get_sb_nodev(struct file_system_type *fs_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 int flags, void *data,
David Howells454e2392006-06-23 02:02:57 -0700825 int (*fill_super)(struct super_block *, void *, int),
826 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
828 int error;
829 struct super_block *s = sget(fs_type, NULL, set_anon_super, NULL);
830
831 if (IS_ERR(s))
David Howells454e2392006-06-23 02:02:57 -0700832 return PTR_ERR(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 s->s_flags = flags;
835
Theodore Ts'o9b04c992006-03-24 03:15:10 -0800836 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 if (error) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400838 deactivate_locked_super(s);
David Howells454e2392006-06-23 02:02:57 -0700839 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 }
841 s->s_flags |= MS_ACTIVE;
Sukadev Bhattiprolua3ec9472009-03-04 12:06:34 -0800842 simple_set_mnt(mnt, s);
843 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844}
845
846EXPORT_SYMBOL(get_sb_nodev);
847
848static int compare_single(struct super_block *s, void *p)
849{
850 return 1;
851}
852
David Howells454e2392006-06-23 02:02:57 -0700853int get_sb_single(struct file_system_type *fs_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 int flags, void *data,
David Howells454e2392006-06-23 02:02:57 -0700855 int (*fill_super)(struct super_block *, void *, int),
856 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
858 struct super_block *s;
859 int error;
860
861 s = sget(fs_type, compare_single, set_anon_super, NULL);
862 if (IS_ERR(s))
David Howells454e2392006-06-23 02:02:57 -0700863 return PTR_ERR(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (!s->s_root) {
865 s->s_flags = flags;
Theodore Ts'o9b04c992006-03-24 03:15:10 -0800866 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 if (error) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400868 deactivate_locked_super(s);
David Howells454e2392006-06-23 02:02:57 -0700869 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 }
871 s->s_flags |= MS_ACTIVE;
Kay Sievers9329d1b2009-12-18 21:18:15 +0100872 } else {
873 do_remount_sb(s, flags, data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
Sukadev Bhattiprolua3ec9472009-03-04 12:06:34 -0800875 simple_set_mnt(mnt, s);
876 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
878
879EXPORT_SYMBOL(get_sb_single);
880
881struct vfsmount *
Trond Myklebustbb4a58b2006-06-09 09:34:15 -0400882vfs_kern_mount(struct file_system_type *type, int flags, const char *name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 struct vfsmount *mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 char *secdata = NULL;
David Howells454e2392006-06-23 02:02:57 -0700886 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 if (!type)
889 return ERR_PTR(-ENODEV);
890
David Howells454e2392006-06-23 02:02:57 -0700891 error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 mnt = alloc_vfsmnt(name);
893 if (!mnt)
894 goto out;
895
Al Viro80893522010-02-05 09:30:46 -0500896 if (flags & MS_KERNMOUNT)
897 mnt->mnt_flags = MNT_INTERNAL;
898
Eric Parise0007522008-03-05 10:31:54 -0500899 if (data && !(type->fs_flags & FS_BINARY_MOUNTDATA)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 secdata = alloc_secdata();
David Howells454e2392006-06-23 02:02:57 -0700901 if (!secdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 goto out_mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Eric Parise0007522008-03-05 10:31:54 -0500904 error = security_sb_copy_data(data, secdata);
David Howells454e2392006-06-23 02:02:57 -0700905 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 goto out_free_secdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 }
908
David Howells454e2392006-06-23 02:02:57 -0700909 error = type->get_sb(type, flags, name, data, mnt);
910 if (error < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 goto out_free_secdata;
Lee Schermerhornb4c07bc2007-07-15 23:40:54 -0700912 BUG_ON(!mnt->mnt_sb);
Jörn Engel5129a462010-04-25 08:54:42 +0200913 WARN_ON(!mnt->mnt_sb->s_bdi);
David Howells454e2392006-06-23 02:02:57 -0700914
Jörn Engel5129a462010-04-25 08:54:42 +0200915 error = security_sb_kern_mount(mnt->mnt_sb, flags, secdata);
916 if (error)
917 goto out_sb;
David Howells454e2392006-06-23 02:02:57 -0700918
Jeff Layton42cb56a2009-09-18 13:05:53 -0700919 /*
920 * filesystems should never set s_maxbytes larger than MAX_LFS_FILESIZE
921 * but s_maxbytes was an unsigned long long for many releases. Throw
922 * this warning for a little while to try and catch filesystems that
923 * violate this rule. This warning should be either removed or
924 * converted to a BUG() in 2.6.34.
925 */
926 WARN((mnt->mnt_sb->s_maxbytes < 0), "%s set sb->s_maxbytes to "
927 "negative value (%lld)\n", type->name, mnt->mnt_sb->s_maxbytes);
928
David Howells454e2392006-06-23 02:02:57 -0700929 mnt->mnt_mountpoint = mnt->mnt_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 mnt->mnt_parent = mnt;
David Howells454e2392006-06-23 02:02:57 -0700931 up_write(&mnt->mnt_sb->s_umount);
Gerald Schaefer8680e222005-06-21 17:15:16 -0700932 free_secdata(secdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 return mnt;
934out_sb:
David Howells454e2392006-06-23 02:02:57 -0700935 dput(mnt->mnt_root);
Al Viro74dbbdd2009-05-06 01:07:50 -0400936 deactivate_locked_super(mnt->mnt_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937out_free_secdata:
938 free_secdata(secdata);
939out_mnt:
940 free_vfsmnt(mnt);
941out:
David Howells454e2392006-06-23 02:02:57 -0700942 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943}
944
Trond Myklebustbb4a58b2006-06-09 09:34:15 -0400945EXPORT_SYMBOL_GPL(vfs_kern_mount);
946
Josef Bacik18e9e512010-03-23 10:34:56 -0400947/**
948 * freeze_super -- lock the filesystem and force it into a consistent state
949 * @super: the super to lock
950 *
951 * Syncs the super to make sure the filesystem is consistent and calls the fs's
952 * freeze_fs. Subsequent calls to this without first thawing the fs will return
953 * -EBUSY.
954 */
955int freeze_super(struct super_block *sb)
956{
957 int ret;
958
959 atomic_inc(&sb->s_active);
960 down_write(&sb->s_umount);
961 if (sb->s_frozen) {
962 deactivate_locked_super(sb);
963 return -EBUSY;
964 }
965
966 if (sb->s_flags & MS_RDONLY) {
967 sb->s_frozen = SB_FREEZE_TRANS;
968 smp_wmb();
969 up_write(&sb->s_umount);
970 return 0;
971 }
972
973 sb->s_frozen = SB_FREEZE_WRITE;
974 smp_wmb();
975
976 sync_filesystem(sb);
977
978 sb->s_frozen = SB_FREEZE_TRANS;
979 smp_wmb();
980
981 sync_blockdev(sb->s_bdev);
982 if (sb->s_op->freeze_fs) {
983 ret = sb->s_op->freeze_fs(sb);
984 if (ret) {
985 printk(KERN_ERR
986 "VFS:Filesystem freeze failed\n");
987 sb->s_frozen = SB_UNFROZEN;
988 deactivate_locked_super(sb);
989 return ret;
990 }
991 }
992 up_write(&sb->s_umount);
993 return 0;
994}
995EXPORT_SYMBOL(freeze_super);
996
997/**
998 * thaw_super -- unlock filesystem
999 * @sb: the super to thaw
1000 *
1001 * Unlocks the filesystem and marks it writeable again after freeze_super().
1002 */
1003int thaw_super(struct super_block *sb)
1004{
1005 int error;
1006
1007 down_write(&sb->s_umount);
1008 if (sb->s_frozen == SB_UNFROZEN) {
1009 up_write(&sb->s_umount);
1010 return -EINVAL;
1011 }
1012
1013 if (sb->s_flags & MS_RDONLY)
1014 goto out;
1015
1016 if (sb->s_op->unfreeze_fs) {
1017 error = sb->s_op->unfreeze_fs(sb);
1018 if (error) {
1019 printk(KERN_ERR
1020 "VFS:Filesystem thaw failed\n");
1021 sb->s_frozen = SB_FREEZE_TRANS;
1022 up_write(&sb->s_umount);
1023 return error;
1024 }
1025 }
1026
1027out:
1028 sb->s_frozen = SB_UNFROZEN;
1029 smp_wmb();
1030 wake_up(&sb->s_wait_unfrozen);
1031 deactivate_locked_super(sb);
1032
1033 return 0;
1034}
1035EXPORT_SYMBOL(thaw_super);
1036
Miklos Szeredi79c0b2d2007-05-08 00:25:43 -07001037static struct vfsmount *fs_set_subtype(struct vfsmount *mnt, const char *fstype)
1038{
1039 int err;
1040 const char *subtype = strchr(fstype, '.');
1041 if (subtype) {
1042 subtype++;
1043 err = -EINVAL;
1044 if (!subtype[0])
1045 goto err;
1046 } else
1047 subtype = "";
1048
1049 mnt->mnt_sb->s_subtype = kstrdup(subtype, GFP_KERNEL);
1050 err = -ENOMEM;
1051 if (!mnt->mnt_sb->s_subtype)
1052 goto err;
1053 return mnt;
1054
1055 err:
1056 mntput(mnt);
1057 return ERR_PTR(err);
1058}
1059
Trond Myklebustbb4a58b2006-06-09 09:34:15 -04001060struct vfsmount *
1061do_kern_mount(const char *fstype, int flags, const char *name, void *data)
1062{
1063 struct file_system_type *type = get_fs_type(fstype);
1064 struct vfsmount *mnt;
1065 if (!type)
1066 return ERR_PTR(-ENODEV);
1067 mnt = vfs_kern_mount(type, flags, name, data);
Miklos Szeredi79c0b2d2007-05-08 00:25:43 -07001068 if (!IS_ERR(mnt) && (type->fs_flags & FS_HAS_SUBTYPE) &&
1069 !mnt->mnt_sb->s_subtype)
1070 mnt = fs_set_subtype(mnt, fstype);
Trond Myklebustbb4a58b2006-06-09 09:34:15 -04001071 put_filesystem(type);
1072 return mnt;
1073}
Al Viro8a4e98d2008-02-24 01:43:03 -05001074EXPORT_SYMBOL_GPL(do_kern_mount);
Trond Myklebustbb4a58b2006-06-09 09:34:15 -04001075
Pavel Emelyanov8bf97252007-10-18 23:40:02 -07001076struct vfsmount *kern_mount_data(struct file_system_type *type, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
Pavel Emelyanov8bf97252007-10-18 23:40:02 -07001078 return vfs_kern_mount(type, MS_KERNMOUNT, type->name, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079}
1080
Pavel Emelyanov8bf97252007-10-18 23:40:02 -07001081EXPORT_SYMBOL_GPL(kern_mount_data);