blob: bd9eea4bb2bbe768beab53f07c61e98c8505f404 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/mount.h>
28#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/writeback.h> /* for the emergency remount stuff */
30#include <linux/idr.h>
Ingo Molnar353ab6e2006-03-26 01:37:12 -080031#include <linux/mutex.h>
Jens Axboe5477d0f2010-04-29 20:33:35 +020032#include <linux/backing-dev.h>
Al Viro6d59e7f2008-03-22 15:48:17 -040033#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036LIST_HEAD(super_blocks);
37DEFINE_SPINLOCK(sb_lock);
38
39/**
40 * alloc_super - create new superblock
Henrik Kretzschmarfe2bbc42006-09-06 00:03:41 -070041 * @type: filesystem type superblock should belong to
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 *
43 * Allocates and initializes a new &struct super_block. alloc_super()
44 * returns a pointer new superblock or %NULL if allocation had failed.
45 */
Ingo Molnarcf516242006-07-03 00:25:27 -070046static struct super_block *alloc_super(struct file_system_type *type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047{
Oliver Neukum11b0b5a2006-03-25 03:08:13 -080048 struct super_block *s = kzalloc(sizeof(struct super_block), GFP_USER);
Alexey Dobriyanb87221d2009-09-21 17:01:09 -070049 static const struct super_operations default_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51 if (s) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 if (security_sb_alloc(s)) {
53 kfree(s);
54 s = NULL;
55 goto out;
56 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 INIT_LIST_HEAD(&s->s_files);
58 INIT_LIST_HEAD(&s->s_instances);
59 INIT_HLIST_HEAD(&s->s_anon);
60 INIT_LIST_HEAD(&s->s_inodes);
Kentaro Makitada3bbdd2008-07-23 21:27:13 -070061 INIT_LIST_HEAD(&s->s_dentry_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 init_rwsem(&s->s_umount);
Ingo Molnar7892f2f2006-01-09 15:59:25 -080063 mutex_init(&s->s_lock);
Arjan van de Ven897c6ff2006-07-03 00:25:28 -070064 lockdep_set_class(&s->s_umount, &type->s_umount_key);
Ingo Molnarcf516242006-07-03 00:25:27 -070065 /*
66 * The locking rules for s_lock are up to the
67 * filesystem. For example ext3fs has different
68 * lock ordering than usbfs:
69 */
70 lockdep_set_class(&s->s_lock, &type->s_lock_key);
Peter Zijlstraada723d2009-02-18 14:48:30 -080071 /*
72 * sget() can have s_umount recursion.
73 *
74 * When it cannot find a suitable sb, it allocates a new
75 * one (this one), and tries again to find a suitable old
76 * one.
77 *
78 * In case that succeeds, it will acquire the s_umount
79 * lock of the old one. Since these are clearly distrinct
80 * locks, and this object isn't exposed yet, there's no
81 * risk of deadlocks.
82 *
83 * Annotate this by putting this lock in a different
84 * subclass.
85 */
86 down_write_nested(&s->s_umount, SINGLE_DEPTH_NESTING);
Al Virob20bd1a2010-03-22 08:53:19 -040087 s->s_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 atomic_set(&s->s_active, 1);
Arjan van de Vena11f3a02006-03-23 03:00:33 -080089 mutex_init(&s->s_vfs_rename_mutex);
Roland Dreier51ee0492010-04-27 14:23:57 -070090 lockdep_set_class(&s->s_vfs_rename_mutex, &type->s_vfs_rename_key);
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 s->s_op = &default_op;
97 s->s_time_gran = 1000000000;
98 }
99out:
100 return s;
101}
102
103/**
104 * destroy_super - frees a superblock
105 * @s: superblock to free
106 *
107 * Frees a superblock.
108 */
109static inline void destroy_super(struct super_block *s)
110{
111 security_sb_free(s);
Miklos Szeredi79c0b2d2007-05-08 00:25:43 -0700112 kfree(s->s_subtype);
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800113 kfree(s->s_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 kfree(s);
115}
116
117/* Superblock refcounting */
118
119/*
Al Viro35cf7ba2010-03-22 21:13:53 -0400120 * Drop a superblock's refcount. The caller must hold sb_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 */
Al Viro35cf7ba2010-03-22 21:13:53 -0400122void __put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 if (!--sb->s_count) {
Al Viro551de6f2010-03-22 19:36:35 -0400125 list_del_init(&sb->s_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 destroy_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
130/**
131 * put_super - drop a temporary reference to superblock
132 * @sb: superblock in question
133 *
134 * Drops a temporary reference, frees superblock if there's no
135 * references left.
136 */
Jens Axboe03ba3782009-09-09 09:08:54 +0200137void put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
139 spin_lock(&sb_lock);
140 __put_super(sb);
141 spin_unlock(&sb_lock);
142}
143
144
145/**
Al Viro74dbbdd2009-05-06 01:07:50 -0400146 * deactivate_locked_super - drop an active reference to superblock
147 * @s: superblock to deactivate
148 *
Al Viro1712ac82010-03-22 15:22:31 -0400149 * Drops an active reference to superblock, converting it into a temprory
150 * one if there is no other active references left. In that case we
151 * tell fs driver to shut it down and drop the temporary reference we
152 * had just acquired.
153 *
154 * Caller holds exclusive lock on superblock; that lock is released.
Al Viro74dbbdd2009-05-06 01:07:50 -0400155 */
156void deactivate_locked_super(struct super_block *s)
157{
158 struct file_system_type *fs = s->s_type;
Al Virob20bd1a2010-03-22 08:53:19 -0400159 if (atomic_dec_and_test(&s->s_active)) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400160 fs->kill_sb(s);
161 put_filesystem(fs);
162 put_super(s);
163 } else {
164 up_write(&s->s_umount);
165 }
166}
167
168EXPORT_SYMBOL(deactivate_locked_super);
169
170/**
Al Viro1712ac82010-03-22 15:22:31 -0400171 * deactivate_super - drop an active reference to superblock
172 * @s: superblock to deactivate
173 *
174 * Variant of deactivate_locked_super(), except that superblock is *not*
175 * locked by caller. If we are going to drop the final active reference,
176 * lock will be acquired prior to that.
177 */
178void deactivate_super(struct super_block *s)
179{
180 if (!atomic_add_unless(&s->s_active, -1, 1)) {
181 down_write(&s->s_umount);
182 deactivate_locked_super(s);
183 }
184}
185
186EXPORT_SYMBOL(deactivate_super);
187
188/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 * grab_super - acquire an active reference
190 * @s: reference we are trying to make active
191 *
192 * Tries to acquire an active reference. grab_super() is used when we
193 * had just found a superblock in super_blocks or fs_type->fs_supers
194 * and want to turn it into a full-blown active reference. grab_super()
195 * is called with sb_lock held and drops it. Returns 1 in case of
196 * success, 0 if we had failed (superblock contents was already dead or
197 * dying when grab_super() had been called).
198 */
Josh Triplett9c4dbee2006-09-29 01:59:29 -0700199static int grab_super(struct super_block *s) __releases(sb_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Al Virob20bd1a2010-03-22 08:53:19 -0400201 if (atomic_inc_not_zero(&s->s_active)) {
202 spin_unlock(&sb_lock);
Al Virob20bd1a2010-03-22 08:53:19 -0400203 return 1;
204 }
205 /* it's going away */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 s->s_count++;
207 spin_unlock(&sb_lock);
Al Viro1712ac82010-03-22 15:22:31 -0400208 /* wait for it to die */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 down_write(&s->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 up_write(&s->s_umount);
211 put_super(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 return 0;
213}
214
David Howellscf9a2ae2006-08-29 19:05:54 +0100215/*
Al Viro914e2632006-10-18 13:55:46 -0400216 * Superblock locking. We really ought to get rid of these two.
217 */
218void lock_super(struct super_block * sb)
219{
220 get_fs_excl();
221 mutex_lock(&sb->s_lock);
222}
223
224void unlock_super(struct super_block * sb)
225{
226 put_fs_excl();
227 mutex_unlock(&sb->s_lock);
228}
229
230EXPORT_SYMBOL(lock_super);
231EXPORT_SYMBOL(unlock_super);
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233/**
234 * generic_shutdown_super - common helper for ->kill_sb()
235 * @sb: superblock to kill
236 *
237 * generic_shutdown_super() does all fs-independent work on superblock
238 * shutdown. Typical ->kill_sb() should pick all fs-specific objects
239 * that need destruction out of superblock, call generic_shutdown_super()
240 * and release aforementioned objects. Note: dentries and inodes _are_
241 * taken care of and do not need specific handling.
David Howellsc636ebd2006-10-11 01:22:19 -0700242 *
243 * Upon calling this function, the filesystem may no longer alter or
244 * rearrange the set of dentries belonging to this super_block, nor may it
245 * change the attachments of dentries to inodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 */
247void generic_shutdown_super(struct super_block *sb)
248{
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800249 const struct super_operations *sop = sb->s_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Arjan van de Venefaee192009-01-06 07:20:54 -0800251
David Howellsc636ebd2006-10-11 01:22:19 -0700252 if (sb->s_root) {
253 shrink_dcache_for_umount(sb);
Jan Kara60b06802009-04-27 16:43:53 +0200254 sync_filesystem(sb);
Al Viroa9e220f2009-05-05 22:10:44 -0400255 get_fs_excl();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 sb->s_flags &= ~MS_ACTIVE;
Arjan van de Venefaee192009-01-06 07:20:54 -0800257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 /* bad name - it should be evict_inodes() */
259 invalidate_inodes(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (sop->put_super)
262 sop->put_super(sb);
263
264 /* Forget any remaining inodes */
265 if (invalidate_inodes(sb)) {
Dave Jones7b4fe292006-02-07 12:58:48 -0800266 printk("VFS: Busy inodes after unmount of %s. "
267 "Self-destruct in 5 seconds. Have a nice day...\n",
268 sb->s_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 }
Al Viroa9e220f2009-05-05 22:10:44 -0400270 put_fs_excl();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
272 spin_lock(&sb_lock);
273 /* should be initialized for __put_super_and_need_restart() */
Al Viro551de6f2010-03-22 19:36:35 -0400274 list_del_init(&sb->s_instances);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 spin_unlock(&sb_lock);
276 up_write(&sb->s_umount);
277}
278
279EXPORT_SYMBOL(generic_shutdown_super);
280
281/**
282 * sget - find or create a superblock
283 * @type: filesystem type superblock should belong to
284 * @test: comparison callback
285 * @set: setup callback
286 * @data: argument to each of them
287 */
288struct super_block *sget(struct file_system_type *type,
289 int (*test)(struct super_block *,void *),
290 int (*set)(struct super_block *,void *),
291 void *data)
292{
293 struct super_block *s = NULL;
Matthias Kaehlcked4730122007-10-18 23:39:57 -0700294 struct super_block *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 int err;
296
297retry:
298 spin_lock(&sb_lock);
Matthias Kaehlcked4730122007-10-18 23:39:57 -0700299 if (test) {
300 list_for_each_entry(old, &type->fs_supers, s_instances) {
301 if (!test(old, data))
302 continue;
303 if (!grab_super(old))
304 goto retry;
Li Zefana3cfbb52009-03-12 14:31:29 -0700305 if (s) {
306 up_write(&s->s_umount);
Matthias Kaehlcked4730122007-10-18 23:39:57 -0700307 destroy_super(s);
Al Viro7a4dec52010-08-09 12:05:43 -0400308 s = NULL;
Li Zefana3cfbb52009-03-12 14:31:29 -0700309 }
Al Virod3f21472010-03-23 11:11:05 -0400310 down_write(&old->s_umount);
Al Viro7a4dec52010-08-09 12:05:43 -0400311 if (unlikely(!(old->s_flags & MS_BORN))) {
312 deactivate_locked_super(old);
313 goto retry;
314 }
Matthias Kaehlcked4730122007-10-18 23:39:57 -0700315 return old;
316 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
318 if (!s) {
319 spin_unlock(&sb_lock);
Ingo Molnarcf516242006-07-03 00:25:27 -0700320 s = alloc_super(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 if (!s)
322 return ERR_PTR(-ENOMEM);
323 goto retry;
324 }
325
326 err = set(s, data);
327 if (err) {
328 spin_unlock(&sb_lock);
Li Zefana3cfbb52009-03-12 14:31:29 -0700329 up_write(&s->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 destroy_super(s);
331 return ERR_PTR(err);
332 }
333 s->s_type = type;
334 strlcpy(s->s_id, type->name, sizeof(s->s_id));
335 list_add_tail(&s->s_list, &super_blocks);
336 list_add(&s->s_instances, &type->fs_supers);
337 spin_unlock(&sb_lock);
338 get_filesystem(type);
339 return s;
340}
341
342EXPORT_SYMBOL(sget);
343
344void drop_super(struct super_block *sb)
345{
346 up_read(&sb->s_umount);
347 put_super(sb);
348}
349
350EXPORT_SYMBOL(drop_super);
351
Christoph Hellwige5004752009-05-05 16:08:56 +0200352/**
353 * sync_supers - helper for periodic superblock writeback
354 *
355 * Call the write_super method if present on all dirty superblocks in
356 * the system. This is for the periodic writeback used by most older
357 * filesystems. For data integrity superblock writeback use
358 * sync_filesystems() instead.
359 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 * Note: check the dirty flag before waiting, so we don't
361 * hold up the sync while mounting a device. (The newly
362 * mounted device won't need syncing.)
363 */
364void sync_supers(void)
365{
Al Viro6754af62010-03-22 20:09:33 -0400366 struct super_block *sb, *n;
Kirill Korotaev618f0632005-06-23 00:09:54 -0700367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 spin_lock(&sb_lock);
Al Viro6754af62010-03-22 20:09:33 -0400369 list_for_each_entry_safe(sb, n, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400370 if (list_empty(&sb->s_instances))
371 continue;
Christoph Hellwige5004752009-05-05 16:08:56 +0200372 if (sb->s_op->write_super && sb->s_dirt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 sb->s_count++;
374 spin_unlock(&sb_lock);
Christoph Hellwige5004752009-05-05 16:08:56 +0200375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 down_read(&sb->s_umount);
Christoph Hellwige5004752009-05-05 16:08:56 +0200377 if (sb->s_root && sb->s_dirt)
378 sb->s_op->write_super(sb);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700379 up_read(&sb->s_umount);
Christoph Hellwige5004752009-05-05 16:08:56 +0200380
Kirill Korotaev618f0632005-06-23 00:09:54 -0700381 spin_lock(&sb_lock);
npiggin@suse.de57439f82010-06-24 13:02:14 +1000382 /* lock was dropped, must reset next */
383 list_safe_reset_next(sb, n, s_list);
Al Viro6754af62010-03-22 20:09:33 -0400384 __put_super(sb);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700385 }
386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 spin_unlock(&sb_lock);
388}
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390/**
Al Viro01a05b32010-03-23 06:06:58 -0400391 * iterate_supers - call function for all active superblocks
392 * @f: function to call
393 * @arg: argument to pass to it
394 *
395 * Scans the superblock list and calls given function, passing it
396 * locked superblock and given argument.
397 */
398void iterate_supers(void (*f)(struct super_block *, void *), void *arg)
399{
400 struct super_block *sb, *n;
401
402 spin_lock(&sb_lock);
403 list_for_each_entry_safe(sb, n, &super_blocks, s_list) {
404 if (list_empty(&sb->s_instances))
405 continue;
406 sb->s_count++;
407 spin_unlock(&sb_lock);
408
409 down_read(&sb->s_umount);
410 if (sb->s_root)
411 f(sb, arg);
412 up_read(&sb->s_umount);
413
414 spin_lock(&sb_lock);
npiggin@suse.de57439f82010-06-24 13:02:14 +1000415 /* lock was dropped, must reset next */
416 list_safe_reset_next(sb, n, s_list);
Al Viro01a05b32010-03-23 06:06:58 -0400417 __put_super(sb);
418 }
419 spin_unlock(&sb_lock);
420}
421
422/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 * get_super - get the superblock of a device
424 * @bdev: device to get the superblock for
425 *
426 * Scans the superblock list and finds the superblock of the file system
427 * mounted on the device given. %NULL is returned if no match is found.
428 */
429
Al Virodf40c012010-03-22 20:23:25 -0400430struct super_block *get_super(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Kirill Korotaev618f0632005-06-23 00:09:54 -0700432 struct super_block *sb;
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 if (!bdev)
435 return NULL;
Kirill Korotaev618f0632005-06-23 00:09:54 -0700436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 spin_lock(&sb_lock);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700438rescan:
439 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400440 if (list_empty(&sb->s_instances))
441 continue;
Kirill Korotaev618f0632005-06-23 00:09:54 -0700442 if (sb->s_bdev == bdev) {
443 sb->s_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 spin_unlock(&sb_lock);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700445 down_read(&sb->s_umount);
Al Virodf40c012010-03-22 20:23:25 -0400446 /* still alive? */
Kirill Korotaev618f0632005-06-23 00:09:54 -0700447 if (sb->s_root)
448 return sb;
449 up_read(&sb->s_umount);
Al Virodf40c012010-03-22 20:23:25 -0400450 /* nope, got unmounted */
Kirill Korotaev618f0632005-06-23 00:09:54 -0700451 spin_lock(&sb_lock);
Al Virodf40c012010-03-22 20:23:25 -0400452 __put_super(sb);
453 goto rescan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
455 }
456 spin_unlock(&sb_lock);
457 return NULL;
458}
459
460EXPORT_SYMBOL(get_super);
Christoph Hellwig45042302009-08-03 23:28:35 +0200461
462/**
463 * get_active_super - get an active reference to the superblock of a device
464 * @bdev: device to get the superblock for
465 *
466 * Scans the superblock list and finds the superblock of the file system
467 * mounted on the device given. Returns the superblock with an active
Al Virod3f21472010-03-23 11:11:05 -0400468 * reference or %NULL if none was found.
Christoph Hellwig45042302009-08-03 23:28:35 +0200469 */
470struct super_block *get_active_super(struct block_device *bdev)
471{
472 struct super_block *sb;
473
474 if (!bdev)
475 return NULL;
476
Al Viro14945832010-03-22 20:15:33 -0400477restart:
Christoph Hellwig45042302009-08-03 23:28:35 +0200478 spin_lock(&sb_lock);
479 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400480 if (list_empty(&sb->s_instances))
481 continue;
Al Viro14945832010-03-22 20:15:33 -0400482 if (sb->s_bdev == bdev) {
483 if (grab_super(sb)) /* drops sb_lock */
484 return sb;
485 else
486 goto restart;
487 }
Christoph Hellwig45042302009-08-03 23:28:35 +0200488 }
489 spin_unlock(&sb_lock);
490 return NULL;
491}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Al Virodf40c012010-03-22 20:23:25 -0400493struct super_block *user_get_super(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Kirill Korotaev618f0632005-06-23 00:09:54 -0700495 struct super_block *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 spin_lock(&sb_lock);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700498rescan:
499 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400500 if (list_empty(&sb->s_instances))
501 continue;
Kirill Korotaev618f0632005-06-23 00:09:54 -0700502 if (sb->s_dev == dev) {
503 sb->s_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 spin_unlock(&sb_lock);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700505 down_read(&sb->s_umount);
Al Virodf40c012010-03-22 20:23:25 -0400506 /* still alive? */
Kirill Korotaev618f0632005-06-23 00:09:54 -0700507 if (sb->s_root)
508 return sb;
509 up_read(&sb->s_umount);
Al Virodf40c012010-03-22 20:23:25 -0400510 /* nope, got unmounted */
Kirill Korotaev618f0632005-06-23 00:09:54 -0700511 spin_lock(&sb_lock);
Al Virodf40c012010-03-22 20:23:25 -0400512 __put_super(sb);
513 goto rescan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
515 }
516 spin_unlock(&sb_lock);
517 return NULL;
518}
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 * do_remount_sb - asks filesystem to change mount options.
522 * @sb: superblock in question
523 * @flags: numeric part of options
524 * @data: the rest of options
525 * @force: whether or not to force the change
526 *
527 * Alters the mount options of a mounted file system.
528 */
529int do_remount_sb(struct super_block *sb, int flags, void *data, int force)
530{
531 int retval;
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400532 int remount_ro;
Christoph Hellwig45042302009-08-03 23:28:35 +0200533
534 if (sb->s_frozen != SB_UNFROZEN)
535 return -EBUSY;
536
David Howells93614012006-09-30 20:45:40 +0200537#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (!(flags & MS_RDONLY) && bdev_read_only(sb->s_bdev))
539 return -EACCES;
David Howells93614012006-09-30 20:45:40 +0200540#endif
Christoph Hellwig45042302009-08-03 23:28:35 +0200541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (flags & MS_RDONLY)
543 acct_auto_close(sb);
544 shrink_dcache_sb(sb);
Jan Kara60b06802009-04-27 16:43:53 +0200545 sync_filesystem(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Nick Piggind208bbd2009-12-21 16:28:53 -0800547 remount_ro = (flags & MS_RDONLY) && !(sb->s_flags & MS_RDONLY);
Nick Piggind208bbd2009-12-21 16:28:53 -0800548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 /* If we are remounting RDONLY and current sb is read/write,
550 make sure there are no rw files opened */
Nick Piggind208bbd2009-12-21 16:28:53 -0800551 if (remount_ro) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (force)
553 mark_files_ro(sb);
J. R. Okajimab0895512009-06-17 01:16:50 +0900554 else if (!fs_may_remount_ro(sb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 return -EBUSY;
556 }
557
558 if (sb->s_op->remount_fs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 retval = sb->s_op->remount_fs(sb, &flags, data);
J. R. Okajimab0895512009-06-17 01:16:50 +0900560 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 return retval;
562 }
563 sb->s_flags = (sb->s_flags & ~MS_RMT_MASK) | (flags & MS_RMT_MASK);
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400564
Nick Piggind208bbd2009-12-21 16:28:53 -0800565 /*
566 * Some filesystems modify their metadata via some other path than the
567 * bdev buffer cache (eg. use a private mapping, or directories in
568 * pagecache, etc). Also file data modifications go via their own
569 * mappings. So If we try to mount readonly then copy the filesystem
570 * from bdev, we could get stale data, so invalidate it to give a best
571 * effort at coherency.
572 */
573 if (remount_ro && sb->s_bdev)
574 invalidate_bdev(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 return 0;
576}
577
Jens Axboea2a95372009-03-17 09:38:40 +0100578static void do_emergency_remount(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Al Viroe7fe0582010-03-22 20:11:53 -0400580 struct super_block *sb, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 spin_lock(&sb_lock);
Al Viroe7fe0582010-03-22 20:11:53 -0400583 list_for_each_entry_safe(sb, n, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400584 if (list_empty(&sb->s_instances))
585 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 sb->s_count++;
587 spin_unlock(&sb_lock);
Al Viro443b94b2009-05-05 23:48:50 -0400588 down_write(&sb->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (sb->s_root && sb->s_bdev && !(sb->s_flags & MS_RDONLY)) {
590 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 * What lock protects sb->s_flags??
592 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 do_remount_sb(sb, MS_RDONLY, NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 }
Al Viro443b94b2009-05-05 23:48:50 -0400595 up_write(&sb->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 spin_lock(&sb_lock);
npiggin@suse.de57439f82010-06-24 13:02:14 +1000597 /* lock was dropped, must reset next */
598 list_safe_reset_next(sb, n, s_list);
Al Viroe7fe0582010-03-22 20:11:53 -0400599 __put_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
601 spin_unlock(&sb_lock);
Jens Axboea2a95372009-03-17 09:38:40 +0100602 kfree(work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 printk("Emergency Remount complete\n");
604}
605
606void emergency_remount(void)
607{
Jens Axboea2a95372009-03-17 09:38:40 +0100608 struct work_struct *work;
609
610 work = kmalloc(sizeof(*work), GFP_ATOMIC);
611 if (work) {
612 INIT_WORK(work, do_emergency_remount);
613 schedule_work(work);
614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
616
617/*
618 * Unnamed block devices are dummy devices used by virtual
619 * filesystems which don't use real block-devices. -- jrs
620 */
621
Alexey Dobriyanad76cbc2008-08-28 06:26:23 +0400622static DEFINE_IDA(unnamed_dev_ida);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623static DEFINE_SPINLOCK(unnamed_dev_lock);/* protects the above */
Al Viroc63e09e2009-06-24 02:05:18 -0400624static int unnamed_dev_start = 0; /* don't bother trying below it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626int set_anon_super(struct super_block *s, void *data)
627{
628 int dev;
629 int error;
630
631 retry:
Alexey Dobriyanad76cbc2008-08-28 06:26:23 +0400632 if (ida_pre_get(&unnamed_dev_ida, GFP_ATOMIC) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 return -ENOMEM;
634 spin_lock(&unnamed_dev_lock);
Al Viroc63e09e2009-06-24 02:05:18 -0400635 error = ida_get_new_above(&unnamed_dev_ida, unnamed_dev_start, &dev);
Al Virof21f6222009-06-24 03:12:00 -0400636 if (!error)
637 unnamed_dev_start = dev + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 spin_unlock(&unnamed_dev_lock);
639 if (error == -EAGAIN)
640 /* We raced and lost with another CPU. */
641 goto retry;
642 else if (error)
643 return -EAGAIN;
644
645 if ((dev & MAX_ID_MASK) == (1 << MINORBITS)) {
646 spin_lock(&unnamed_dev_lock);
Alexey Dobriyanad76cbc2008-08-28 06:26:23 +0400647 ida_remove(&unnamed_dev_ida, dev);
Al Virof21f6222009-06-24 03:12:00 -0400648 if (unnamed_dev_start > dev)
649 unnamed_dev_start = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 spin_unlock(&unnamed_dev_lock);
651 return -EMFILE;
652 }
653 s->s_dev = MKDEV(0, dev & MINORMASK);
Jörn Engel5129a462010-04-25 08:54:42 +0200654 s->s_bdi = &noop_backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return 0;
656}
657
658EXPORT_SYMBOL(set_anon_super);
659
660void kill_anon_super(struct super_block *sb)
661{
662 int slot = MINOR(sb->s_dev);
663
664 generic_shutdown_super(sb);
665 spin_lock(&unnamed_dev_lock);
Alexey Dobriyanad76cbc2008-08-28 06:26:23 +0400666 ida_remove(&unnamed_dev_ida, slot);
Al Viroc63e09e2009-06-24 02:05:18 -0400667 if (slot < unnamed_dev_start)
668 unnamed_dev_start = slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 spin_unlock(&unnamed_dev_lock);
670}
671
672EXPORT_SYMBOL(kill_anon_super);
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674void kill_litter_super(struct super_block *sb)
675{
676 if (sb->s_root)
677 d_genocide(sb->s_root);
678 kill_anon_super(sb);
679}
680
681EXPORT_SYMBOL(kill_litter_super);
682
Serge E. Hallyn909e6d92009-04-06 19:01:07 -0700683static int ns_test_super(struct super_block *sb, void *data)
684{
685 return sb->s_fs_info == data;
686}
687
688static int ns_set_super(struct super_block *sb, void *data)
689{
690 sb->s_fs_info = data;
691 return set_anon_super(sb, NULL);
692}
693
694int get_sb_ns(struct file_system_type *fs_type, int flags, void *data,
695 int (*fill_super)(struct super_block *, void *, int),
696 struct vfsmount *mnt)
697{
698 struct super_block *sb;
699
700 sb = sget(fs_type, ns_test_super, ns_set_super, data);
701 if (IS_ERR(sb))
702 return PTR_ERR(sb);
703
704 if (!sb->s_root) {
705 int err;
706 sb->s_flags = flags;
707 err = fill_super(sb, data, flags & MS_SILENT ? 1 : 0);
708 if (err) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400709 deactivate_locked_super(sb);
Serge E. Hallyn909e6d92009-04-06 19:01:07 -0700710 return err;
711 }
712
713 sb->s_flags |= MS_ACTIVE;
714 }
715
716 simple_set_mnt(mnt, sb);
717 return 0;
718}
719
720EXPORT_SYMBOL(get_sb_ns);
721
David Howells93614012006-09-30 20:45:40 +0200722#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723static int set_bdev_super(struct super_block *s, void *data)
724{
725 s->s_bdev = data;
726 s->s_dev = s->s_bdev->bd_dev;
Jens Axboe32a88aa2009-09-16 15:02:33 +0200727
728 /*
729 * We set the bdi here to the queue backing, file systems can
730 * overwrite this in ->fill_super()
731 */
732 s->s_bdi = &bdev_get_queue(s->s_bdev)->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 return 0;
734}
735
736static int test_bdev_super(struct super_block *s, void *data)
737{
738 return (void *)s->s_bdev == data;
739}
740
David Howells454e2392006-06-23 02:02:57 -0700741int get_sb_bdev(struct file_system_type *fs_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 int flags, const char *dev_name, void *data,
David Howells454e2392006-06-23 02:02:57 -0700743 int (*fill_super)(struct super_block *, void *, int),
744 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745{
746 struct block_device *bdev;
747 struct super_block *s;
Al Viro30c40d22008-02-22 19:50:45 -0500748 fmode_t mode = FMODE_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 int error = 0;
750
Al Viro30c40d22008-02-22 19:50:45 -0500751 if (!(flags & MS_RDONLY))
752 mode |= FMODE_WRITE;
753
754 bdev = open_bdev_exclusive(dev_name, mode, fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 if (IS_ERR(bdev))
David Howells454e2392006-06-23 02:02:57 -0700756 return PTR_ERR(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758 /*
759 * once the super is inserted into the list by sget, s_umount
760 * will protect the lockfs code from trying to start a snapshot
761 * while we are mounting
762 */
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200763 mutex_lock(&bdev->bd_fsfreeze_mutex);
764 if (bdev->bd_fsfreeze_count > 0) {
765 mutex_unlock(&bdev->bd_fsfreeze_mutex);
766 error = -EBUSY;
767 goto error_bdev;
768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 s = sget(fs_type, test_bdev_super, set_bdev_super, bdev);
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200770 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (IS_ERR(s))
David Howells454e2392006-06-23 02:02:57 -0700772 goto error_s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 if (s->s_root) {
775 if ((flags ^ s->s_flags) & MS_RDONLY) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400776 deactivate_locked_super(s);
David Howells454e2392006-06-23 02:02:57 -0700777 error = -EBUSY;
778 goto error_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 }
David Howells454e2392006-06-23 02:02:57 -0700780
Tejun Heo4f331f02010-07-20 15:18:07 -0700781 /*
782 * s_umount nests inside bd_mutex during
783 * __invalidate_device(). close_bdev_exclusive()
784 * acquires bd_mutex and can't be called under
785 * s_umount. Drop s_umount temporarily. This is safe
786 * as we're holding an active reference.
787 */
788 up_write(&s->s_umount);
Al Viro30c40d22008-02-22 19:50:45 -0500789 close_bdev_exclusive(bdev, mode);
Tejun Heo4f331f02010-07-20 15:18:07 -0700790 down_write(&s->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 } else {
792 char b[BDEVNAME_SIZE];
793
794 s->s_flags = flags;
Al Viro30c40d22008-02-22 19:50:45 -0500795 s->s_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
Pekka Enberge78c9a02006-01-08 01:03:39 -0800797 sb_set_blocksize(s, block_size(bdev));
Theodore Ts'o9b04c992006-03-24 03:15:10 -0800798 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 if (error) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400800 deactivate_locked_super(s);
David Howells454e2392006-06-23 02:02:57 -0700801 goto error;
Greg Kroah-Hartmanfa675762006-02-22 09:39:02 -0800802 }
David Howells454e2392006-06-23 02:02:57 -0700803
804 s->s_flags |= MS_ACTIVE;
Theodore Ts'o87d8fe12009-01-03 09:47:09 -0500805 bdev->bd_super = s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 }
807
Sukadev Bhattiprolua3ec9472009-03-04 12:06:34 -0800808 simple_set_mnt(mnt, s);
809 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
David Howells454e2392006-06-23 02:02:57 -0700811error_s:
812 error = PTR_ERR(s);
813error_bdev:
Al Viro30c40d22008-02-22 19:50:45 -0500814 close_bdev_exclusive(bdev, mode);
David Howells454e2392006-06-23 02:02:57 -0700815error:
816 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
818
819EXPORT_SYMBOL(get_sb_bdev);
820
821void kill_block_super(struct super_block *sb)
822{
823 struct block_device *bdev = sb->s_bdev;
Al Viro30c40d22008-02-22 19:50:45 -0500824 fmode_t mode = sb->s_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
H Hartley Sweetenddbaaf32009-04-29 20:14:57 -0400826 bdev->bd_super = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 generic_shutdown_super(sb);
828 sync_blockdev(bdev);
Al Viro30c40d22008-02-22 19:50:45 -0500829 close_bdev_exclusive(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830}
831
832EXPORT_SYMBOL(kill_block_super);
David Howells93614012006-09-30 20:45:40 +0200833#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
David Howells454e2392006-06-23 02:02:57 -0700835int get_sb_nodev(struct file_system_type *fs_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 int flags, void *data,
David Howells454e2392006-06-23 02:02:57 -0700837 int (*fill_super)(struct super_block *, void *, int),
838 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
840 int error;
841 struct super_block *s = sget(fs_type, NULL, set_anon_super, NULL);
842
843 if (IS_ERR(s))
David Howells454e2392006-06-23 02:02:57 -0700844 return PTR_ERR(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 s->s_flags = flags;
847
Theodore Ts'o9b04c992006-03-24 03:15:10 -0800848 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 if (error) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400850 deactivate_locked_super(s);
David Howells454e2392006-06-23 02:02:57 -0700851 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
853 s->s_flags |= MS_ACTIVE;
Sukadev Bhattiprolua3ec9472009-03-04 12:06:34 -0800854 simple_set_mnt(mnt, s);
855 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856}
857
858EXPORT_SYMBOL(get_sb_nodev);
859
860static int compare_single(struct super_block *s, void *p)
861{
862 return 1;
863}
864
David Howells454e2392006-06-23 02:02:57 -0700865int get_sb_single(struct file_system_type *fs_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 int flags, void *data,
David Howells454e2392006-06-23 02:02:57 -0700867 int (*fill_super)(struct super_block *, void *, int),
868 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869{
870 struct super_block *s;
871 int error;
872
873 s = sget(fs_type, compare_single, set_anon_super, NULL);
874 if (IS_ERR(s))
David Howells454e2392006-06-23 02:02:57 -0700875 return PTR_ERR(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 if (!s->s_root) {
877 s->s_flags = flags;
Theodore Ts'o9b04c992006-03-24 03:15:10 -0800878 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 if (error) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400880 deactivate_locked_super(s);
David Howells454e2392006-06-23 02:02:57 -0700881 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 }
883 s->s_flags |= MS_ACTIVE;
Kay Sievers9329d1b2009-12-18 21:18:15 +0100884 } else {
885 do_remount_sb(s, flags, data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 }
Sukadev Bhattiprolua3ec9472009-03-04 12:06:34 -0800887 simple_set_mnt(mnt, s);
888 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889}
890
891EXPORT_SYMBOL(get_sb_single);
892
893struct vfsmount *
Trond Myklebustbb4a58b2006-06-09 09:34:15 -0400894vfs_kern_mount(struct file_system_type *type, int flags, const char *name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 struct vfsmount *mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 char *secdata = NULL;
David Howells454e2392006-06-23 02:02:57 -0700898 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 if (!type)
901 return ERR_PTR(-ENODEV);
902
David Howells454e2392006-06-23 02:02:57 -0700903 error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 mnt = alloc_vfsmnt(name);
905 if (!mnt)
906 goto out;
907
Al Viro80893522010-02-05 09:30:46 -0500908 if (flags & MS_KERNMOUNT)
909 mnt->mnt_flags = MNT_INTERNAL;
910
Eric Parise0007522008-03-05 10:31:54 -0500911 if (data && !(type->fs_flags & FS_BINARY_MOUNTDATA)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 secdata = alloc_secdata();
David Howells454e2392006-06-23 02:02:57 -0700913 if (!secdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 goto out_mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Eric Parise0007522008-03-05 10:31:54 -0500916 error = security_sb_copy_data(data, secdata);
David Howells454e2392006-06-23 02:02:57 -0700917 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 goto out_free_secdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 }
920
David Howells454e2392006-06-23 02:02:57 -0700921 error = type->get_sb(type, flags, name, data, mnt);
922 if (error < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 goto out_free_secdata;
Lee Schermerhornb4c07bc2007-07-15 23:40:54 -0700924 BUG_ON(!mnt->mnt_sb);
Jörn Engel5129a462010-04-25 08:54:42 +0200925 WARN_ON(!mnt->mnt_sb->s_bdi);
Al Viro7a4dec52010-08-09 12:05:43 -0400926 mnt->mnt_sb->s_flags |= MS_BORN;
David Howells454e2392006-06-23 02:02:57 -0700927
Jörn Engel5129a462010-04-25 08:54:42 +0200928 error = security_sb_kern_mount(mnt->mnt_sb, flags, secdata);
929 if (error)
930 goto out_sb;
David Howells454e2392006-06-23 02:02:57 -0700931
Jeff Layton42cb56a2009-09-18 13:05:53 -0700932 /*
933 * filesystems should never set s_maxbytes larger than MAX_LFS_FILESIZE
934 * but s_maxbytes was an unsigned long long for many releases. Throw
935 * this warning for a little while to try and catch filesystems that
936 * violate this rule. This warning should be either removed or
937 * converted to a BUG() in 2.6.34.
938 */
939 WARN((mnt->mnt_sb->s_maxbytes < 0), "%s set sb->s_maxbytes to "
940 "negative value (%lld)\n", type->name, mnt->mnt_sb->s_maxbytes);
941
David Howells454e2392006-06-23 02:02:57 -0700942 mnt->mnt_mountpoint = mnt->mnt_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 mnt->mnt_parent = mnt;
David Howells454e2392006-06-23 02:02:57 -0700944 up_write(&mnt->mnt_sb->s_umount);
Gerald Schaefer8680e222005-06-21 17:15:16 -0700945 free_secdata(secdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 return mnt;
947out_sb:
David Howells454e2392006-06-23 02:02:57 -0700948 dput(mnt->mnt_root);
Al Viro74dbbdd2009-05-06 01:07:50 -0400949 deactivate_locked_super(mnt->mnt_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950out_free_secdata:
951 free_secdata(secdata);
952out_mnt:
953 free_vfsmnt(mnt);
954out:
David Howells454e2392006-06-23 02:02:57 -0700955 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956}
957
Trond Myklebustbb4a58b2006-06-09 09:34:15 -0400958EXPORT_SYMBOL_GPL(vfs_kern_mount);
959
Josef Bacik18e9e512010-03-23 10:34:56 -0400960/**
Randy Dunlap7000d3c2010-05-24 22:22:34 -0700961 * freeze_super - lock the filesystem and force it into a consistent state
962 * @sb: the super to lock
Josef Bacik18e9e512010-03-23 10:34:56 -0400963 *
964 * Syncs the super to make sure the filesystem is consistent and calls the fs's
965 * freeze_fs. Subsequent calls to this without first thawing the fs will return
966 * -EBUSY.
967 */
968int freeze_super(struct super_block *sb)
969{
970 int ret;
971
972 atomic_inc(&sb->s_active);
973 down_write(&sb->s_umount);
974 if (sb->s_frozen) {
975 deactivate_locked_super(sb);
976 return -EBUSY;
977 }
978
979 if (sb->s_flags & MS_RDONLY) {
980 sb->s_frozen = SB_FREEZE_TRANS;
981 smp_wmb();
982 up_write(&sb->s_umount);
983 return 0;
984 }
985
986 sb->s_frozen = SB_FREEZE_WRITE;
987 smp_wmb();
988
989 sync_filesystem(sb);
990
991 sb->s_frozen = SB_FREEZE_TRANS;
992 smp_wmb();
993
994 sync_blockdev(sb->s_bdev);
995 if (sb->s_op->freeze_fs) {
996 ret = sb->s_op->freeze_fs(sb);
997 if (ret) {
998 printk(KERN_ERR
999 "VFS:Filesystem freeze failed\n");
1000 sb->s_frozen = SB_UNFROZEN;
1001 deactivate_locked_super(sb);
1002 return ret;
1003 }
1004 }
1005 up_write(&sb->s_umount);
1006 return 0;
1007}
1008EXPORT_SYMBOL(freeze_super);
1009
1010/**
1011 * thaw_super -- unlock filesystem
1012 * @sb: the super to thaw
1013 *
1014 * Unlocks the filesystem and marks it writeable again after freeze_super().
1015 */
1016int thaw_super(struct super_block *sb)
1017{
1018 int error;
1019
1020 down_write(&sb->s_umount);
1021 if (sb->s_frozen == SB_UNFROZEN) {
1022 up_write(&sb->s_umount);
1023 return -EINVAL;
1024 }
1025
1026 if (sb->s_flags & MS_RDONLY)
1027 goto out;
1028
1029 if (sb->s_op->unfreeze_fs) {
1030 error = sb->s_op->unfreeze_fs(sb);
1031 if (error) {
1032 printk(KERN_ERR
1033 "VFS:Filesystem thaw failed\n");
1034 sb->s_frozen = SB_FREEZE_TRANS;
1035 up_write(&sb->s_umount);
1036 return error;
1037 }
1038 }
1039
1040out:
1041 sb->s_frozen = SB_UNFROZEN;
1042 smp_wmb();
1043 wake_up(&sb->s_wait_unfrozen);
1044 deactivate_locked_super(sb);
1045
1046 return 0;
1047}
1048EXPORT_SYMBOL(thaw_super);
1049
Miklos Szeredi79c0b2d2007-05-08 00:25:43 -07001050static struct vfsmount *fs_set_subtype(struct vfsmount *mnt, const char *fstype)
1051{
1052 int err;
1053 const char *subtype = strchr(fstype, '.');
1054 if (subtype) {
1055 subtype++;
1056 err = -EINVAL;
1057 if (!subtype[0])
1058 goto err;
1059 } else
1060 subtype = "";
1061
1062 mnt->mnt_sb->s_subtype = kstrdup(subtype, GFP_KERNEL);
1063 err = -ENOMEM;
1064 if (!mnt->mnt_sb->s_subtype)
1065 goto err;
1066 return mnt;
1067
1068 err:
1069 mntput(mnt);
1070 return ERR_PTR(err);
1071}
1072
Trond Myklebustbb4a58b2006-06-09 09:34:15 -04001073struct vfsmount *
1074do_kern_mount(const char *fstype, int flags, const char *name, void *data)
1075{
1076 struct file_system_type *type = get_fs_type(fstype);
1077 struct vfsmount *mnt;
1078 if (!type)
1079 return ERR_PTR(-ENODEV);
1080 mnt = vfs_kern_mount(type, flags, name, data);
Miklos Szeredi79c0b2d2007-05-08 00:25:43 -07001081 if (!IS_ERR(mnt) && (type->fs_flags & FS_HAS_SUBTYPE) &&
1082 !mnt->mnt_sb->s_subtype)
1083 mnt = fs_set_subtype(mnt, fstype);
Trond Myklebustbb4a58b2006-06-09 09:34:15 -04001084 put_filesystem(type);
1085 return mnt;
1086}
Al Viro8a4e98d2008-02-24 01:43:03 -05001087EXPORT_SYMBOL_GPL(do_kern_mount);
Trond Myklebustbb4a58b2006-06-09 09:34:15 -04001088
Pavel Emelyanov8bf97252007-10-18 23:40:02 -07001089struct vfsmount *kern_mount_data(struct file_system_type *type, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
Pavel Emelyanov8bf97252007-10-18 23:40:02 -07001091 return vfs_kern_mount(type, MS_KERNMOUNT, type->name, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092}
1093
Pavel Emelyanov8bf97252007-10-18 23:40:02 -07001094EXPORT_SYMBOL_GPL(kern_mount_data);