blob: f6a7bf1fff2b79393dfbc700dcb2ae7c7c5f3099 [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 }
Nick Piggin6416ccb2010-08-18 04:37:38 +100057#ifdef CONFIG_SMP
58 s->s_files = alloc_percpu(struct list_head);
59 if (!s->s_files) {
60 security_sb_free(s);
61 kfree(s);
62 s = NULL;
63 goto out;
64 } else {
65 int i;
66
67 for_each_possible_cpu(i)
68 INIT_LIST_HEAD(per_cpu_ptr(s->s_files, i));
69 }
70#else
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 INIT_LIST_HEAD(&s->s_files);
Nick Piggin6416ccb2010-08-18 04:37:38 +100072#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 INIT_LIST_HEAD(&s->s_instances);
74 INIT_HLIST_HEAD(&s->s_anon);
75 INIT_LIST_HEAD(&s->s_inodes);
Kentaro Makitada3bbdd2008-07-23 21:27:13 -070076 INIT_LIST_HEAD(&s->s_dentry_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 init_rwsem(&s->s_umount);
Ingo Molnar7892f2f2006-01-09 15:59:25 -080078 mutex_init(&s->s_lock);
Arjan van de Ven897c6ff2006-07-03 00:25:28 -070079 lockdep_set_class(&s->s_umount, &type->s_umount_key);
Ingo Molnarcf516242006-07-03 00:25:27 -070080 /*
81 * The locking rules for s_lock are up to the
82 * filesystem. For example ext3fs has different
83 * lock ordering than usbfs:
84 */
85 lockdep_set_class(&s->s_lock, &type->s_lock_key);
Peter Zijlstraada723d2009-02-18 14:48:30 -080086 /*
87 * sget() can have s_umount recursion.
88 *
89 * When it cannot find a suitable sb, it allocates a new
90 * one (this one), and tries again to find a suitable old
91 * one.
92 *
93 * In case that succeeds, it will acquire the s_umount
94 * lock of the old one. Since these are clearly distrinct
95 * locks, and this object isn't exposed yet, there's no
96 * risk of deadlocks.
97 *
98 * Annotate this by putting this lock in a different
99 * subclass.
100 */
101 down_write_nested(&s->s_umount, SINGLE_DEPTH_NESTING);
Al Virob20bd1a2010-03-22 08:53:19 -0400102 s->s_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 atomic_set(&s->s_active, 1);
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800104 mutex_init(&s->s_vfs_rename_mutex);
Roland Dreier51ee0492010-04-27 14:23:57 -0700105 lockdep_set_class(&s->s_vfs_rename_mutex, &type->s_vfs_rename_key);
Ingo Molnard3be9152006-03-23 03:00:29 -0800106 mutex_init(&s->s_dquot.dqio_mutex);
107 mutex_init(&s->s_dquot.dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 init_rwsem(&s->s_dquot.dqptr_sem);
109 init_waitqueue_head(&s->s_wait_unfrozen);
110 s->s_maxbytes = MAX_NON_LFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 s->s_op = &default_op;
112 s->s_time_gran = 1000000000;
113 }
114out:
115 return s;
116}
117
118/**
119 * destroy_super - frees a superblock
120 * @s: superblock to free
121 *
122 * Frees a superblock.
123 */
124static inline void destroy_super(struct super_block *s)
125{
Nick Piggin6416ccb2010-08-18 04:37:38 +1000126#ifdef CONFIG_SMP
127 free_percpu(s->s_files);
128#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 security_sb_free(s);
Miklos Szeredi79c0b2d2007-05-08 00:25:43 -0700130 kfree(s->s_subtype);
Miklos Szeredib3b304a2008-02-08 04:21:35 -0800131 kfree(s->s_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 kfree(s);
133}
134
135/* Superblock refcounting */
136
137/*
Al Viro35cf7ba2010-03-22 21:13:53 -0400138 * Drop a superblock's refcount. The caller must hold sb_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 */
Al Viro35cf7ba2010-03-22 21:13:53 -0400140void __put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 if (!--sb->s_count) {
Al Viro551de6f2010-03-22 19:36:35 -0400143 list_del_init(&sb->s_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 destroy_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
148/**
149 * put_super - drop a temporary reference to superblock
150 * @sb: superblock in question
151 *
152 * Drops a temporary reference, frees superblock if there's no
153 * references left.
154 */
Jens Axboe03ba3782009-09-09 09:08:54 +0200155void put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
157 spin_lock(&sb_lock);
158 __put_super(sb);
159 spin_unlock(&sb_lock);
160}
161
162
163/**
Al Viro74dbbdd2009-05-06 01:07:50 -0400164 * deactivate_locked_super - drop an active reference to superblock
165 * @s: superblock to deactivate
166 *
Al Viro1712ac82010-03-22 15:22:31 -0400167 * Drops an active reference to superblock, converting it into a temprory
168 * one if there is no other active references left. In that case we
169 * tell fs driver to shut it down and drop the temporary reference we
170 * had just acquired.
171 *
172 * Caller holds exclusive lock on superblock; that lock is released.
Al Viro74dbbdd2009-05-06 01:07:50 -0400173 */
174void deactivate_locked_super(struct super_block *s)
175{
176 struct file_system_type *fs = s->s_type;
Al Virob20bd1a2010-03-22 08:53:19 -0400177 if (atomic_dec_and_test(&s->s_active)) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400178 fs->kill_sb(s);
179 put_filesystem(fs);
180 put_super(s);
181 } else {
182 up_write(&s->s_umount);
183 }
184}
185
186EXPORT_SYMBOL(deactivate_locked_super);
187
188/**
Al Viro1712ac82010-03-22 15:22:31 -0400189 * deactivate_super - drop an active reference to superblock
190 * @s: superblock to deactivate
191 *
192 * Variant of deactivate_locked_super(), except that superblock is *not*
193 * locked by caller. If we are going to drop the final active reference,
194 * lock will be acquired prior to that.
195 */
196void deactivate_super(struct super_block *s)
197{
198 if (!atomic_add_unless(&s->s_active, -1, 1)) {
199 down_write(&s->s_umount);
200 deactivate_locked_super(s);
201 }
202}
203
204EXPORT_SYMBOL(deactivate_super);
205
206/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 * grab_super - acquire an active reference
208 * @s: reference we are trying to make active
209 *
210 * Tries to acquire an active reference. grab_super() is used when we
211 * had just found a superblock in super_blocks or fs_type->fs_supers
212 * and want to turn it into a full-blown active reference. grab_super()
213 * is called with sb_lock held and drops it. Returns 1 in case of
214 * success, 0 if we had failed (superblock contents was already dead or
215 * dying when grab_super() had been called).
216 */
Josh Triplett9c4dbee2006-09-29 01:59:29 -0700217static int grab_super(struct super_block *s) __releases(sb_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Al Virob20bd1a2010-03-22 08:53:19 -0400219 if (atomic_inc_not_zero(&s->s_active)) {
220 spin_unlock(&sb_lock);
Al Virob20bd1a2010-03-22 08:53:19 -0400221 return 1;
222 }
223 /* it's going away */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 s->s_count++;
225 spin_unlock(&sb_lock);
Al Viro1712ac82010-03-22 15:22:31 -0400226 /* wait for it to die */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 down_write(&s->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 up_write(&s->s_umount);
229 put_super(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return 0;
231}
232
David Howellscf9a2ae2006-08-29 19:05:54 +0100233/*
Al Viro914e2632006-10-18 13:55:46 -0400234 * Superblock locking. We really ought to get rid of these two.
235 */
236void lock_super(struct super_block * sb)
237{
238 get_fs_excl();
239 mutex_lock(&sb->s_lock);
240}
241
242void unlock_super(struct super_block * sb)
243{
244 put_fs_excl();
245 mutex_unlock(&sb->s_lock);
246}
247
248EXPORT_SYMBOL(lock_super);
249EXPORT_SYMBOL(unlock_super);
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251/**
252 * generic_shutdown_super - common helper for ->kill_sb()
253 * @sb: superblock to kill
254 *
255 * generic_shutdown_super() does all fs-independent work on superblock
256 * shutdown. Typical ->kill_sb() should pick all fs-specific objects
257 * that need destruction out of superblock, call generic_shutdown_super()
258 * and release aforementioned objects. Note: dentries and inodes _are_
259 * taken care of and do not need specific handling.
David Howellsc636ebd2006-10-11 01:22:19 -0700260 *
261 * Upon calling this function, the filesystem may no longer alter or
262 * rearrange the set of dentries belonging to this super_block, nor may it
263 * change the attachments of dentries to inodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 */
265void generic_shutdown_super(struct super_block *sb)
266{
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800267 const struct super_operations *sop = sb->s_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Arjan van de Venefaee192009-01-06 07:20:54 -0800269
David Howellsc636ebd2006-10-11 01:22:19 -0700270 if (sb->s_root) {
271 shrink_dcache_for_umount(sb);
Jan Kara60b06802009-04-27 16:43:53 +0200272 sync_filesystem(sb);
Al Viroa9e220f2009-05-05 22:10:44 -0400273 get_fs_excl();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 sb->s_flags &= ~MS_ACTIVE;
Arjan van de Venefaee192009-01-06 07:20:54 -0800275
Al Viro63997e92010-10-25 20:49:35 -0400276 fsnotify_unmount_inodes(&sb->s_inodes);
277
278 evict_inodes(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (sop->put_super)
281 sop->put_super(sb);
282
Al Viro63997e92010-10-25 20:49:35 -0400283 if (!list_empty(&sb->s_inodes)) {
Dave Jones7b4fe292006-02-07 12:58:48 -0800284 printk("VFS: Busy inodes after unmount of %s. "
285 "Self-destruct in 5 seconds. Have a nice day...\n",
286 sb->s_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
Al Viroa9e220f2009-05-05 22:10:44 -0400288 put_fs_excl();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 }
290 spin_lock(&sb_lock);
291 /* should be initialized for __put_super_and_need_restart() */
Al Viro551de6f2010-03-22 19:36:35 -0400292 list_del_init(&sb->s_instances);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 spin_unlock(&sb_lock);
294 up_write(&sb->s_umount);
295}
296
297EXPORT_SYMBOL(generic_shutdown_super);
298
299/**
300 * sget - find or create a superblock
301 * @type: filesystem type superblock should belong to
302 * @test: comparison callback
303 * @set: setup callback
304 * @data: argument to each of them
305 */
306struct super_block *sget(struct file_system_type *type,
307 int (*test)(struct super_block *,void *),
308 int (*set)(struct super_block *,void *),
309 void *data)
310{
311 struct super_block *s = NULL;
Matthias Kaehlcked4730122007-10-18 23:39:57 -0700312 struct super_block *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 int err;
314
315retry:
316 spin_lock(&sb_lock);
Matthias Kaehlcked4730122007-10-18 23:39:57 -0700317 if (test) {
318 list_for_each_entry(old, &type->fs_supers, s_instances) {
319 if (!test(old, data))
320 continue;
321 if (!grab_super(old))
322 goto retry;
Li Zefana3cfbb52009-03-12 14:31:29 -0700323 if (s) {
324 up_write(&s->s_umount);
Matthias Kaehlcked4730122007-10-18 23:39:57 -0700325 destroy_super(s);
Al Viro7a4dec52010-08-09 12:05:43 -0400326 s = NULL;
Li Zefana3cfbb52009-03-12 14:31:29 -0700327 }
Al Virod3f21472010-03-23 11:11:05 -0400328 down_write(&old->s_umount);
Al Viro7a4dec52010-08-09 12:05:43 -0400329 if (unlikely(!(old->s_flags & MS_BORN))) {
330 deactivate_locked_super(old);
331 goto retry;
332 }
Matthias Kaehlcked4730122007-10-18 23:39:57 -0700333 return old;
334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
336 if (!s) {
337 spin_unlock(&sb_lock);
Ingo Molnarcf516242006-07-03 00:25:27 -0700338 s = alloc_super(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (!s)
340 return ERR_PTR(-ENOMEM);
341 goto retry;
342 }
343
344 err = set(s, data);
345 if (err) {
346 spin_unlock(&sb_lock);
Li Zefana3cfbb52009-03-12 14:31:29 -0700347 up_write(&s->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 destroy_super(s);
349 return ERR_PTR(err);
350 }
351 s->s_type = type;
352 strlcpy(s->s_id, type->name, sizeof(s->s_id));
353 list_add_tail(&s->s_list, &super_blocks);
354 list_add(&s->s_instances, &type->fs_supers);
355 spin_unlock(&sb_lock);
356 get_filesystem(type);
357 return s;
358}
359
360EXPORT_SYMBOL(sget);
361
362void drop_super(struct super_block *sb)
363{
364 up_read(&sb->s_umount);
365 put_super(sb);
366}
367
368EXPORT_SYMBOL(drop_super);
369
Christoph Hellwige5004752009-05-05 16:08:56 +0200370/**
371 * sync_supers - helper for periodic superblock writeback
372 *
373 * Call the write_super method if present on all dirty superblocks in
374 * the system. This is for the periodic writeback used by most older
375 * filesystems. For data integrity superblock writeback use
376 * sync_filesystems() instead.
377 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 * Note: check the dirty flag before waiting, so we don't
379 * hold up the sync while mounting a device. (The newly
380 * mounted device won't need syncing.)
381 */
382void sync_supers(void)
383{
Al Virodca33252010-07-25 02:31:46 +0400384 struct super_block *sb, *p = NULL;
Kirill Korotaev618f0632005-06-23 00:09:54 -0700385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 spin_lock(&sb_lock);
Al Virodca33252010-07-25 02:31:46 +0400387 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400388 if (list_empty(&sb->s_instances))
389 continue;
Christoph Hellwige5004752009-05-05 16:08:56 +0200390 if (sb->s_op->write_super && sb->s_dirt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 sb->s_count++;
392 spin_unlock(&sb_lock);
Christoph Hellwige5004752009-05-05 16:08:56 +0200393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 down_read(&sb->s_umount);
Christoph Hellwige5004752009-05-05 16:08:56 +0200395 if (sb->s_root && sb->s_dirt)
396 sb->s_op->write_super(sb);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700397 up_read(&sb->s_umount);
Christoph Hellwige5004752009-05-05 16:08:56 +0200398
Kirill Korotaev618f0632005-06-23 00:09:54 -0700399 spin_lock(&sb_lock);
Al Virodca33252010-07-25 02:31:46 +0400400 if (p)
401 __put_super(p);
402 p = sb;
Kirill Korotaev618f0632005-06-23 00:09:54 -0700403 }
404 }
Al Virodca33252010-07-25 02:31:46 +0400405 if (p)
406 __put_super(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 spin_unlock(&sb_lock);
408}
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410/**
Al Viro01a05b32010-03-23 06:06:58 -0400411 * iterate_supers - call function for all active superblocks
412 * @f: function to call
413 * @arg: argument to pass to it
414 *
415 * Scans the superblock list and calls given function, passing it
416 * locked superblock and given argument.
417 */
418void iterate_supers(void (*f)(struct super_block *, void *), void *arg)
419{
Al Virodca33252010-07-25 02:31:46 +0400420 struct super_block *sb, *p = NULL;
Al Viro01a05b32010-03-23 06:06:58 -0400421
422 spin_lock(&sb_lock);
Al Virodca33252010-07-25 02:31:46 +0400423 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro01a05b32010-03-23 06:06:58 -0400424 if (list_empty(&sb->s_instances))
425 continue;
426 sb->s_count++;
427 spin_unlock(&sb_lock);
428
429 down_read(&sb->s_umount);
430 if (sb->s_root)
431 f(sb, arg);
432 up_read(&sb->s_umount);
433
434 spin_lock(&sb_lock);
Al Virodca33252010-07-25 02:31:46 +0400435 if (p)
436 __put_super(p);
437 p = sb;
Al Viro01a05b32010-03-23 06:06:58 -0400438 }
Al Virodca33252010-07-25 02:31:46 +0400439 if (p)
440 __put_super(p);
Al Viro01a05b32010-03-23 06:06:58 -0400441 spin_unlock(&sb_lock);
442}
443
444/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 * get_super - get the superblock of a device
446 * @bdev: device to get the superblock for
447 *
448 * Scans the superblock list and finds the superblock of the file system
449 * mounted on the device given. %NULL is returned if no match is found.
450 */
451
Al Virodf40c012010-03-22 20:23:25 -0400452struct super_block *get_super(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Kirill Korotaev618f0632005-06-23 00:09:54 -0700454 struct super_block *sb;
455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 if (!bdev)
457 return NULL;
Kirill Korotaev618f0632005-06-23 00:09:54 -0700458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 spin_lock(&sb_lock);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700460rescan:
461 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400462 if (list_empty(&sb->s_instances))
463 continue;
Kirill Korotaev618f0632005-06-23 00:09:54 -0700464 if (sb->s_bdev == bdev) {
465 sb->s_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 spin_unlock(&sb_lock);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700467 down_read(&sb->s_umount);
Al Virodf40c012010-03-22 20:23:25 -0400468 /* still alive? */
Kirill Korotaev618f0632005-06-23 00:09:54 -0700469 if (sb->s_root)
470 return sb;
471 up_read(&sb->s_umount);
Al Virodf40c012010-03-22 20:23:25 -0400472 /* nope, got unmounted */
Kirill Korotaev618f0632005-06-23 00:09:54 -0700473 spin_lock(&sb_lock);
Al Virodf40c012010-03-22 20:23:25 -0400474 __put_super(sb);
475 goto rescan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 }
477 }
478 spin_unlock(&sb_lock);
479 return NULL;
480}
481
482EXPORT_SYMBOL(get_super);
Christoph Hellwig45042302009-08-03 23:28:35 +0200483
484/**
485 * get_active_super - get an active reference to the superblock of a device
486 * @bdev: device to get the superblock for
487 *
488 * Scans the superblock list and finds the superblock of the file system
489 * mounted on the device given. Returns the superblock with an active
Al Virod3f21472010-03-23 11:11:05 -0400490 * reference or %NULL if none was found.
Christoph Hellwig45042302009-08-03 23:28:35 +0200491 */
492struct super_block *get_active_super(struct block_device *bdev)
493{
494 struct super_block *sb;
495
496 if (!bdev)
497 return NULL;
498
Al Viro14945832010-03-22 20:15:33 -0400499restart:
Christoph Hellwig45042302009-08-03 23:28:35 +0200500 spin_lock(&sb_lock);
501 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400502 if (list_empty(&sb->s_instances))
503 continue;
Al Viro14945832010-03-22 20:15:33 -0400504 if (sb->s_bdev == bdev) {
505 if (grab_super(sb)) /* drops sb_lock */
506 return sb;
507 else
508 goto restart;
509 }
Christoph Hellwig45042302009-08-03 23:28:35 +0200510 }
511 spin_unlock(&sb_lock);
512 return NULL;
513}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Al Virodf40c012010-03-22 20:23:25 -0400515struct super_block *user_get_super(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Kirill Korotaev618f0632005-06-23 00:09:54 -0700517 struct super_block *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 spin_lock(&sb_lock);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700520rescan:
521 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400522 if (list_empty(&sb->s_instances))
523 continue;
Kirill Korotaev618f0632005-06-23 00:09:54 -0700524 if (sb->s_dev == dev) {
525 sb->s_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 spin_unlock(&sb_lock);
Kirill Korotaev618f0632005-06-23 00:09:54 -0700527 down_read(&sb->s_umount);
Al Virodf40c012010-03-22 20:23:25 -0400528 /* still alive? */
Kirill Korotaev618f0632005-06-23 00:09:54 -0700529 if (sb->s_root)
530 return sb;
531 up_read(&sb->s_umount);
Al Virodf40c012010-03-22 20:23:25 -0400532 /* nope, got unmounted */
Kirill Korotaev618f0632005-06-23 00:09:54 -0700533 spin_lock(&sb_lock);
Al Virodf40c012010-03-22 20:23:25 -0400534 __put_super(sb);
535 goto rescan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 }
537 }
538 spin_unlock(&sb_lock);
539 return NULL;
540}
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 * do_remount_sb - asks filesystem to change mount options.
544 * @sb: superblock in question
545 * @flags: numeric part of options
546 * @data: the rest of options
547 * @force: whether or not to force the change
548 *
549 * Alters the mount options of a mounted file system.
550 */
551int do_remount_sb(struct super_block *sb, int flags, void *data, int force)
552{
553 int retval;
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400554 int remount_ro;
Christoph Hellwig45042302009-08-03 23:28:35 +0200555
556 if (sb->s_frozen != SB_UNFROZEN)
557 return -EBUSY;
558
David Howells93614012006-09-30 20:45:40 +0200559#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 if (!(flags & MS_RDONLY) && bdev_read_only(sb->s_bdev))
561 return -EACCES;
David Howells93614012006-09-30 20:45:40 +0200562#endif
Christoph Hellwig45042302009-08-03 23:28:35 +0200563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if (flags & MS_RDONLY)
565 acct_auto_close(sb);
566 shrink_dcache_sb(sb);
Jan Kara60b06802009-04-27 16:43:53 +0200567 sync_filesystem(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Nick Piggind208bbd2009-12-21 16:28:53 -0800569 remount_ro = (flags & MS_RDONLY) && !(sb->s_flags & MS_RDONLY);
Nick Piggind208bbd2009-12-21 16:28:53 -0800570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 /* If we are remounting RDONLY and current sb is read/write,
572 make sure there are no rw files opened */
Nick Piggind208bbd2009-12-21 16:28:53 -0800573 if (remount_ro) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (force)
575 mark_files_ro(sb);
J. R. Okajimab0895512009-06-17 01:16:50 +0900576 else if (!fs_may_remount_ro(sb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return -EBUSY;
578 }
579
580 if (sb->s_op->remount_fs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 retval = sb->s_op->remount_fs(sb, &flags, data);
J. R. Okajimab0895512009-06-17 01:16:50 +0900582 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 return retval;
584 }
585 sb->s_flags = (sb->s_flags & ~MS_RMT_MASK) | (flags & MS_RMT_MASK);
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400586
Nick Piggind208bbd2009-12-21 16:28:53 -0800587 /*
588 * Some filesystems modify their metadata via some other path than the
589 * bdev buffer cache (eg. use a private mapping, or directories in
590 * pagecache, etc). Also file data modifications go via their own
591 * mappings. So If we try to mount readonly then copy the filesystem
592 * from bdev, we could get stale data, so invalidate it to give a best
593 * effort at coherency.
594 */
595 if (remount_ro && sb->s_bdev)
596 invalidate_bdev(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 return 0;
598}
599
Jens Axboea2a95372009-03-17 09:38:40 +0100600static void do_emergency_remount(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
Al Virodca33252010-07-25 02:31:46 +0400602 struct super_block *sb, *p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 spin_lock(&sb_lock);
Al Virodca33252010-07-25 02:31:46 +0400605 list_for_each_entry(sb, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -0400606 if (list_empty(&sb->s_instances))
607 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 sb->s_count++;
609 spin_unlock(&sb_lock);
Al Viro443b94b2009-05-05 23:48:50 -0400610 down_write(&sb->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (sb->s_root && sb->s_bdev && !(sb->s_flags & MS_RDONLY)) {
612 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 * What lock protects sb->s_flags??
614 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 do_remount_sb(sb, MS_RDONLY, NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
Al Viro443b94b2009-05-05 23:48:50 -0400617 up_write(&sb->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 spin_lock(&sb_lock);
Al Virodca33252010-07-25 02:31:46 +0400619 if (p)
620 __put_super(p);
621 p = sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
Al Virodca33252010-07-25 02:31:46 +0400623 if (p)
624 __put_super(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 spin_unlock(&sb_lock);
Jens Axboea2a95372009-03-17 09:38:40 +0100626 kfree(work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 printk("Emergency Remount complete\n");
628}
629
630void emergency_remount(void)
631{
Jens Axboea2a95372009-03-17 09:38:40 +0100632 struct work_struct *work;
633
634 work = kmalloc(sizeof(*work), GFP_ATOMIC);
635 if (work) {
636 INIT_WORK(work, do_emergency_remount);
637 schedule_work(work);
638 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
641/*
642 * Unnamed block devices are dummy devices used by virtual
643 * filesystems which don't use real block-devices. -- jrs
644 */
645
Alexey Dobriyanad76cbc2008-08-28 06:26:23 +0400646static DEFINE_IDA(unnamed_dev_ida);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647static DEFINE_SPINLOCK(unnamed_dev_lock);/* protects the above */
Al Viroc63e09e2009-06-24 02:05:18 -0400648static int unnamed_dev_start = 0; /* don't bother trying below it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650int set_anon_super(struct super_block *s, void *data)
651{
652 int dev;
653 int error;
654
655 retry:
Alexey Dobriyanad76cbc2008-08-28 06:26:23 +0400656 if (ida_pre_get(&unnamed_dev_ida, GFP_ATOMIC) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return -ENOMEM;
658 spin_lock(&unnamed_dev_lock);
Al Viroc63e09e2009-06-24 02:05:18 -0400659 error = ida_get_new_above(&unnamed_dev_ida, unnamed_dev_start, &dev);
Al Virof21f6222009-06-24 03:12:00 -0400660 if (!error)
661 unnamed_dev_start = dev + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 spin_unlock(&unnamed_dev_lock);
663 if (error == -EAGAIN)
664 /* We raced and lost with another CPU. */
665 goto retry;
666 else if (error)
667 return -EAGAIN;
668
669 if ((dev & MAX_ID_MASK) == (1 << MINORBITS)) {
670 spin_lock(&unnamed_dev_lock);
Alexey Dobriyanad76cbc2008-08-28 06:26:23 +0400671 ida_remove(&unnamed_dev_ida, dev);
Al Virof21f6222009-06-24 03:12:00 -0400672 if (unnamed_dev_start > dev)
673 unnamed_dev_start = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 spin_unlock(&unnamed_dev_lock);
675 return -EMFILE;
676 }
677 s->s_dev = MKDEV(0, dev & MINORMASK);
Jörn Engel5129a462010-04-25 08:54:42 +0200678 s->s_bdi = &noop_backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 return 0;
680}
681
682EXPORT_SYMBOL(set_anon_super);
683
684void kill_anon_super(struct super_block *sb)
685{
686 int slot = MINOR(sb->s_dev);
687
688 generic_shutdown_super(sb);
689 spin_lock(&unnamed_dev_lock);
Alexey Dobriyanad76cbc2008-08-28 06:26:23 +0400690 ida_remove(&unnamed_dev_ida, slot);
Al Viroc63e09e2009-06-24 02:05:18 -0400691 if (slot < unnamed_dev_start)
692 unnamed_dev_start = slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 spin_unlock(&unnamed_dev_lock);
694}
695
696EXPORT_SYMBOL(kill_anon_super);
697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698void kill_litter_super(struct super_block *sb)
699{
700 if (sb->s_root)
701 d_genocide(sb->s_root);
702 kill_anon_super(sb);
703}
704
705EXPORT_SYMBOL(kill_litter_super);
706
Serge E. Hallyn909e6d92009-04-06 19:01:07 -0700707static int ns_test_super(struct super_block *sb, void *data)
708{
709 return sb->s_fs_info == data;
710}
711
712static int ns_set_super(struct super_block *sb, void *data)
713{
714 sb->s_fs_info = data;
715 return set_anon_super(sb, NULL);
716}
717
718int get_sb_ns(struct file_system_type *fs_type, int flags, void *data,
719 int (*fill_super)(struct super_block *, void *, int),
720 struct vfsmount *mnt)
721{
722 struct super_block *sb;
723
724 sb = sget(fs_type, ns_test_super, ns_set_super, data);
725 if (IS_ERR(sb))
726 return PTR_ERR(sb);
727
728 if (!sb->s_root) {
729 int err;
730 sb->s_flags = flags;
731 err = fill_super(sb, data, flags & MS_SILENT ? 1 : 0);
732 if (err) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400733 deactivate_locked_super(sb);
Serge E. Hallyn909e6d92009-04-06 19:01:07 -0700734 return err;
735 }
736
737 sb->s_flags |= MS_ACTIVE;
738 }
739
740 simple_set_mnt(mnt, sb);
741 return 0;
742}
743
744EXPORT_SYMBOL(get_sb_ns);
745
David Howells93614012006-09-30 20:45:40 +0200746#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747static int set_bdev_super(struct super_block *s, void *data)
748{
749 s->s_bdev = data;
750 s->s_dev = s->s_bdev->bd_dev;
Jens Axboe32a88aa2009-09-16 15:02:33 +0200751
752 /*
753 * We set the bdi here to the queue backing, file systems can
754 * overwrite this in ->fill_super()
755 */
756 s->s_bdi = &bdev_get_queue(s->s_bdev)->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 return 0;
758}
759
760static int test_bdev_super(struct super_block *s, void *data)
761{
762 return (void *)s->s_bdev == data;
763}
764
Al Viro152a0832010-07-25 00:46:55 +0400765struct dentry *mount_bdev(struct file_system_type *fs_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 int flags, const char *dev_name, void *data,
Al Viro152a0832010-07-25 00:46:55 +0400767 int (*fill_super)(struct super_block *, void *, int))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
769 struct block_device *bdev;
770 struct super_block *s;
Al Viro30c40d22008-02-22 19:50:45 -0500771 fmode_t mode = FMODE_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 int error = 0;
773
Al Viro30c40d22008-02-22 19:50:45 -0500774 if (!(flags & MS_RDONLY))
775 mode |= FMODE_WRITE;
776
777 bdev = open_bdev_exclusive(dev_name, mode, fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 if (IS_ERR(bdev))
Al Viro152a0832010-07-25 00:46:55 +0400779 return ERR_CAST(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 /*
782 * once the super is inserted into the list by sget, s_umount
783 * will protect the lockfs code from trying to start a snapshot
784 * while we are mounting
785 */
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200786 mutex_lock(&bdev->bd_fsfreeze_mutex);
787 if (bdev->bd_fsfreeze_count > 0) {
788 mutex_unlock(&bdev->bd_fsfreeze_mutex);
789 error = -EBUSY;
790 goto error_bdev;
791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 s = sget(fs_type, test_bdev_super, set_bdev_super, bdev);
Christoph Hellwig4fadd7b2009-08-03 23:28:06 +0200793 mutex_unlock(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if (IS_ERR(s))
David Howells454e2392006-06-23 02:02:57 -0700795 goto error_s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 if (s->s_root) {
798 if ((flags ^ s->s_flags) & MS_RDONLY) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400799 deactivate_locked_super(s);
David Howells454e2392006-06-23 02:02:57 -0700800 error = -EBUSY;
801 goto error_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
David Howells454e2392006-06-23 02:02:57 -0700803
Tejun Heo4f331f02010-07-20 15:18:07 -0700804 /*
805 * s_umount nests inside bd_mutex during
806 * __invalidate_device(). close_bdev_exclusive()
807 * acquires bd_mutex and can't be called under
808 * s_umount. Drop s_umount temporarily. This is safe
809 * as we're holding an active reference.
810 */
811 up_write(&s->s_umount);
Al Viro30c40d22008-02-22 19:50:45 -0500812 close_bdev_exclusive(bdev, mode);
Tejun Heo4f331f02010-07-20 15:18:07 -0700813 down_write(&s->s_umount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 } else {
815 char b[BDEVNAME_SIZE];
816
817 s->s_flags = flags;
Al Viro30c40d22008-02-22 19:50:45 -0500818 s->s_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
Pekka Enberge78c9a02006-01-08 01:03:39 -0800820 sb_set_blocksize(s, block_size(bdev));
Theodore Ts'o9b04c992006-03-24 03:15:10 -0800821 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 if (error) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400823 deactivate_locked_super(s);
David Howells454e2392006-06-23 02:02:57 -0700824 goto error;
Greg Kroah-Hartmanfa675762006-02-22 09:39:02 -0800825 }
David Howells454e2392006-06-23 02:02:57 -0700826
827 s->s_flags |= MS_ACTIVE;
Theodore Ts'o87d8fe12009-01-03 09:47:09 -0500828 bdev->bd_super = s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
830
Al Viro152a0832010-07-25 00:46:55 +0400831 return dget(s->s_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
David Howells454e2392006-06-23 02:02:57 -0700833error_s:
834 error = PTR_ERR(s);
835error_bdev:
Al Viro30c40d22008-02-22 19:50:45 -0500836 close_bdev_exclusive(bdev, mode);
David Howells454e2392006-06-23 02:02:57 -0700837error:
Al Viro152a0832010-07-25 00:46:55 +0400838 return ERR_PTR(error);
839}
840EXPORT_SYMBOL(mount_bdev);
841
842int get_sb_bdev(struct file_system_type *fs_type,
843 int flags, const char *dev_name, void *data,
844 int (*fill_super)(struct super_block *, void *, int),
845 struct vfsmount *mnt)
846{
847 struct dentry *root;
848
849 root = mount_bdev(fs_type, flags, dev_name, data, fill_super);
850 if (IS_ERR(root))
851 return PTR_ERR(root);
852 mnt->mnt_root = root;
853 mnt->mnt_sb = root->d_sb;
854 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855}
856
857EXPORT_SYMBOL(get_sb_bdev);
858
859void kill_block_super(struct super_block *sb)
860{
861 struct block_device *bdev = sb->s_bdev;
Al Viro30c40d22008-02-22 19:50:45 -0500862 fmode_t mode = sb->s_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
H Hartley Sweetenddbaaf32009-04-29 20:14:57 -0400864 bdev->bd_super = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 generic_shutdown_super(sb);
866 sync_blockdev(bdev);
Al Viro30c40d22008-02-22 19:50:45 -0500867 close_bdev_exclusive(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868}
869
870EXPORT_SYMBOL(kill_block_super);
David Howells93614012006-09-30 20:45:40 +0200871#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Al Viro3c26ff62010-07-25 11:46:36 +0400873struct dentry *mount_nodev(struct file_system_type *fs_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 int flags, void *data,
Al Viro3c26ff62010-07-25 11:46:36 +0400875 int (*fill_super)(struct super_block *, void *, int))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
877 int error;
878 struct super_block *s = sget(fs_type, NULL, set_anon_super, NULL);
879
880 if (IS_ERR(s))
Al Viro3c26ff62010-07-25 11:46:36 +0400881 return ERR_CAST(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883 s->s_flags = flags;
884
Theodore Ts'o9b04c992006-03-24 03:15:10 -0800885 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 if (error) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400887 deactivate_locked_super(s);
Al Viro3c26ff62010-07-25 11:46:36 +0400888 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 }
890 s->s_flags |= MS_ACTIVE;
Al Viro3c26ff62010-07-25 11:46:36 +0400891 return dget(s->s_root);
892}
893EXPORT_SYMBOL(mount_nodev);
894
895int get_sb_nodev(struct file_system_type *fs_type,
896 int flags, void *data,
897 int (*fill_super)(struct super_block *, void *, int),
898 struct vfsmount *mnt)
899{
900 struct dentry *root;
901
902 root = mount_nodev(fs_type, flags, data, fill_super);
903 if (IS_ERR(root))
904 return PTR_ERR(root);
905 mnt->mnt_root = root;
906 mnt->mnt_sb = root->d_sb;
Sukadev Bhattiprolua3ec9472009-03-04 12:06:34 -0800907 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909EXPORT_SYMBOL(get_sb_nodev);
910
911static int compare_single(struct super_block *s, void *p)
912{
913 return 1;
914}
915
Al Virofc14f2f2010-07-25 01:48:30 +0400916struct dentry *mount_single(struct file_system_type *fs_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 int flags, void *data,
Al Virofc14f2f2010-07-25 01:48:30 +0400918 int (*fill_super)(struct super_block *, void *, int))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
920 struct super_block *s;
921 int error;
922
923 s = sget(fs_type, compare_single, set_anon_super, NULL);
924 if (IS_ERR(s))
Al Virofc14f2f2010-07-25 01:48:30 +0400925 return ERR_CAST(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 if (!s->s_root) {
927 s->s_flags = flags;
Theodore Ts'o9b04c992006-03-24 03:15:10 -0800928 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 if (error) {
Al Viro74dbbdd2009-05-06 01:07:50 -0400930 deactivate_locked_super(s);
Al Virofc14f2f2010-07-25 01:48:30 +0400931 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
933 s->s_flags |= MS_ACTIVE;
Kay Sievers9329d1b2009-12-18 21:18:15 +0100934 } else {
935 do_remount_sb(s, flags, data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
Al Virofc14f2f2010-07-25 01:48:30 +0400937 return dget(s->s_root);
938}
939EXPORT_SYMBOL(mount_single);
940
941int get_sb_single(struct file_system_type *fs_type,
942 int flags, void *data,
943 int (*fill_super)(struct super_block *, void *, int),
944 struct vfsmount *mnt)
945{
946 struct dentry *root;
947 root = mount_single(fs_type, flags, data, fill_super);
948 if (IS_ERR(root))
949 return PTR_ERR(root);
950 mnt->mnt_root = root;
951 mnt->mnt_sb = root->d_sb;
Sukadev Bhattiprolua3ec9472009-03-04 12:06:34 -0800952 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953}
954
955EXPORT_SYMBOL(get_sb_single);
956
957struct vfsmount *
Trond Myklebustbb4a58b2006-06-09 09:34:15 -0400958vfs_kern_mount(struct file_system_type *type, int flags, const char *name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 struct vfsmount *mnt;
Al Viroc96e41e2010-07-25 00:17:56 +0400961 struct dentry *root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 char *secdata = NULL;
David Howells454e2392006-06-23 02:02:57 -0700963 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965 if (!type)
966 return ERR_PTR(-ENODEV);
967
David Howells454e2392006-06-23 02:02:57 -0700968 error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 mnt = alloc_vfsmnt(name);
970 if (!mnt)
971 goto out;
972
Al Viro80893522010-02-05 09:30:46 -0500973 if (flags & MS_KERNMOUNT)
974 mnt->mnt_flags = MNT_INTERNAL;
975
Eric Parise0007522008-03-05 10:31:54 -0500976 if (data && !(type->fs_flags & FS_BINARY_MOUNTDATA)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 secdata = alloc_secdata();
David Howells454e2392006-06-23 02:02:57 -0700978 if (!secdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 goto out_mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Eric Parise0007522008-03-05 10:31:54 -0500981 error = security_sb_copy_data(data, secdata);
David Howells454e2392006-06-23 02:02:57 -0700982 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 goto out_free_secdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 }
985
Al Viroc96e41e2010-07-25 00:17:56 +0400986 if (type->mount) {
987 root = type->mount(type, flags, name, data);
988 if (IS_ERR(root)) {
989 error = PTR_ERR(root);
990 goto out_free_secdata;
991 }
992 mnt->mnt_root = root;
993 mnt->mnt_sb = root->d_sb;
994 } else {
995 error = type->get_sb(type, flags, name, data, mnt);
996 if (error < 0)
997 goto out_free_secdata;
998 }
Lee Schermerhornb4c07bc2007-07-15 23:40:54 -0700999 BUG_ON(!mnt->mnt_sb);
Jörn Engel5129a462010-04-25 08:54:42 +02001000 WARN_ON(!mnt->mnt_sb->s_bdi);
Al Viro7a4dec52010-08-09 12:05:43 -04001001 mnt->mnt_sb->s_flags |= MS_BORN;
David Howells454e2392006-06-23 02:02:57 -07001002
Jörn Engel5129a462010-04-25 08:54:42 +02001003 error = security_sb_kern_mount(mnt->mnt_sb, flags, secdata);
1004 if (error)
1005 goto out_sb;
David Howells454e2392006-06-23 02:02:57 -07001006
Jeff Layton42cb56a2009-09-18 13:05:53 -07001007 /*
1008 * filesystems should never set s_maxbytes larger than MAX_LFS_FILESIZE
1009 * but s_maxbytes was an unsigned long long for many releases. Throw
1010 * this warning for a little while to try and catch filesystems that
1011 * violate this rule. This warning should be either removed or
1012 * converted to a BUG() in 2.6.34.
1013 */
1014 WARN((mnt->mnt_sb->s_maxbytes < 0), "%s set sb->s_maxbytes to "
1015 "negative value (%lld)\n", type->name, mnt->mnt_sb->s_maxbytes);
1016
David Howells454e2392006-06-23 02:02:57 -07001017 mnt->mnt_mountpoint = mnt->mnt_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 mnt->mnt_parent = mnt;
David Howells454e2392006-06-23 02:02:57 -07001019 up_write(&mnt->mnt_sb->s_umount);
Gerald Schaefer8680e222005-06-21 17:15:16 -07001020 free_secdata(secdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 return mnt;
1022out_sb:
David Howells454e2392006-06-23 02:02:57 -07001023 dput(mnt->mnt_root);
Al Viro74dbbdd2009-05-06 01:07:50 -04001024 deactivate_locked_super(mnt->mnt_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025out_free_secdata:
1026 free_secdata(secdata);
1027out_mnt:
1028 free_vfsmnt(mnt);
1029out:
David Howells454e2392006-06-23 02:02:57 -07001030 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031}
1032
Trond Myklebustbb4a58b2006-06-09 09:34:15 -04001033EXPORT_SYMBOL_GPL(vfs_kern_mount);
1034
Josef Bacik18e9e512010-03-23 10:34:56 -04001035/**
Randy Dunlap7000d3c2010-05-24 22:22:34 -07001036 * freeze_super - lock the filesystem and force it into a consistent state
1037 * @sb: the super to lock
Josef Bacik18e9e512010-03-23 10:34:56 -04001038 *
1039 * Syncs the super to make sure the filesystem is consistent and calls the fs's
1040 * freeze_fs. Subsequent calls to this without first thawing the fs will return
1041 * -EBUSY.
1042 */
1043int freeze_super(struct super_block *sb)
1044{
1045 int ret;
1046
1047 atomic_inc(&sb->s_active);
1048 down_write(&sb->s_umount);
1049 if (sb->s_frozen) {
1050 deactivate_locked_super(sb);
1051 return -EBUSY;
1052 }
1053
1054 if (sb->s_flags & MS_RDONLY) {
1055 sb->s_frozen = SB_FREEZE_TRANS;
1056 smp_wmb();
1057 up_write(&sb->s_umount);
1058 return 0;
1059 }
1060
1061 sb->s_frozen = SB_FREEZE_WRITE;
1062 smp_wmb();
1063
1064 sync_filesystem(sb);
1065
1066 sb->s_frozen = SB_FREEZE_TRANS;
1067 smp_wmb();
1068
1069 sync_blockdev(sb->s_bdev);
1070 if (sb->s_op->freeze_fs) {
1071 ret = sb->s_op->freeze_fs(sb);
1072 if (ret) {
1073 printk(KERN_ERR
1074 "VFS:Filesystem freeze failed\n");
1075 sb->s_frozen = SB_UNFROZEN;
1076 deactivate_locked_super(sb);
1077 return ret;
1078 }
1079 }
1080 up_write(&sb->s_umount);
1081 return 0;
1082}
1083EXPORT_SYMBOL(freeze_super);
1084
1085/**
1086 * thaw_super -- unlock filesystem
1087 * @sb: the super to thaw
1088 *
1089 * Unlocks the filesystem and marks it writeable again after freeze_super().
1090 */
1091int thaw_super(struct super_block *sb)
1092{
1093 int error;
1094
1095 down_write(&sb->s_umount);
1096 if (sb->s_frozen == SB_UNFROZEN) {
1097 up_write(&sb->s_umount);
1098 return -EINVAL;
1099 }
1100
1101 if (sb->s_flags & MS_RDONLY)
1102 goto out;
1103
1104 if (sb->s_op->unfreeze_fs) {
1105 error = sb->s_op->unfreeze_fs(sb);
1106 if (error) {
1107 printk(KERN_ERR
1108 "VFS:Filesystem thaw failed\n");
1109 sb->s_frozen = SB_FREEZE_TRANS;
1110 up_write(&sb->s_umount);
1111 return error;
1112 }
1113 }
1114
1115out:
1116 sb->s_frozen = SB_UNFROZEN;
1117 smp_wmb();
1118 wake_up(&sb->s_wait_unfrozen);
1119 deactivate_locked_super(sb);
1120
1121 return 0;
1122}
1123EXPORT_SYMBOL(thaw_super);
1124
Miklos Szeredi79c0b2d2007-05-08 00:25:43 -07001125static struct vfsmount *fs_set_subtype(struct vfsmount *mnt, const char *fstype)
1126{
1127 int err;
1128 const char *subtype = strchr(fstype, '.');
1129 if (subtype) {
1130 subtype++;
1131 err = -EINVAL;
1132 if (!subtype[0])
1133 goto err;
1134 } else
1135 subtype = "";
1136
1137 mnt->mnt_sb->s_subtype = kstrdup(subtype, GFP_KERNEL);
1138 err = -ENOMEM;
1139 if (!mnt->mnt_sb->s_subtype)
1140 goto err;
1141 return mnt;
1142
1143 err:
1144 mntput(mnt);
1145 return ERR_PTR(err);
1146}
1147
Trond Myklebustbb4a58b2006-06-09 09:34:15 -04001148struct vfsmount *
1149do_kern_mount(const char *fstype, int flags, const char *name, void *data)
1150{
1151 struct file_system_type *type = get_fs_type(fstype);
1152 struct vfsmount *mnt;
1153 if (!type)
1154 return ERR_PTR(-ENODEV);
1155 mnt = vfs_kern_mount(type, flags, name, data);
Miklos Szeredi79c0b2d2007-05-08 00:25:43 -07001156 if (!IS_ERR(mnt) && (type->fs_flags & FS_HAS_SUBTYPE) &&
1157 !mnt->mnt_sb->s_subtype)
1158 mnt = fs_set_subtype(mnt, fstype);
Trond Myklebustbb4a58b2006-06-09 09:34:15 -04001159 put_filesystem(type);
1160 return mnt;
1161}
Al Viro8a4e98d2008-02-24 01:43:03 -05001162EXPORT_SYMBOL_GPL(do_kern_mount);
Trond Myklebustbb4a58b2006-06-09 09:34:15 -04001163
Pavel Emelyanov8bf97252007-10-18 23:40:02 -07001164struct vfsmount *kern_mount_data(struct file_system_type *type, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165{
Pavel Emelyanov8bf97252007-10-18 23:40:02 -07001166 return vfs_kern_mount(type, MS_KERNMOUNT, type->name, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167}
1168
Pavel Emelyanov8bf97252007-10-18 23:40:02 -07001169EXPORT_SYMBOL_GPL(kern_mount_data);