btrfs: allow scanning multiple devices during mount
[linux-2.6-block.git] / fs / btrfs / super.c
CommitLineData
6cbd5570
CM
1/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
4b82d6e4 19#include <linux/blkdev.h>
2e635a27 20#include <linux/module.h>
e20d96d6 21#include <linux/buffer_head.h>
2e635a27
CM
22#include <linux/fs.h>
23#include <linux/pagemap.h>
24#include <linux/highmem.h>
25#include <linux/time.h>
26#include <linux/init.h>
27#include <linux/string.h>
28#include <linux/smp_lock.h>
29#include <linux/backing-dev.h>
4b82d6e4 30#include <linux/mount.h>
dee26a9f 31#include <linux/mpage.h>
75dfe396
CM
32#include <linux/swap.h>
33#include <linux/writeback.h>
8fd17795 34#include <linux/statfs.h>
08607c1b 35#include <linux/compat.h>
95e05289 36#include <linux/parser.h>
c59f8951 37#include <linux/ctype.h>
6da6abae 38#include <linux/namei.h>
a9218f6b 39#include <linux/miscdevice.h>
2e635a27 40#include "ctree.h"
e20d96d6 41#include "disk-io.h"
d5719762 42#include "transaction.h"
2c90e5d6 43#include "btrfs_inode.h"
c5739bba 44#include "ioctl.h"
3a686375 45#include "print-tree.h"
5103e947 46#include "xattr.h"
8a4b83cc 47#include "volumes.h"
2e635a27 48
5f39d397 49#define BTRFS_SUPER_MAGIC 0x9123683E
f254e52c 50
39279cc3 51static struct super_operations btrfs_super_ops;
75dfe396 52
39279cc3 53static void btrfs_put_super (struct super_block * sb)
b18c6685 54{
39279cc3 55 struct btrfs_root *root = btrfs_sb(sb);
58176a96 56 struct btrfs_fs_info *fs = root->fs_info;
b18c6685 57 int ret;
b18c6685 58
39279cc3
CM
59 ret = close_ctree(root);
60 if (ret) {
61 printk("close ctree returns %d\n", ret);
75dfe396 62 }
58176a96 63 btrfs_sysfs_del_super(fs);
39279cc3 64 sb->s_fs_info = NULL;
75dfe396
CM
65}
66
95e05289 67enum {
43e570b0 68 Opt_degraded, Opt_subvol, Opt_device, Opt_nodatasum, Opt_nodatacow,
dfe25020
CM
69 Opt_max_extent, Opt_max_inline, Opt_alloc_start, Opt_nobarrier,
70 Opt_ssd, Opt_err,
95e05289
CM
71};
72
73static match_table_t tokens = {
dfe25020 74 {Opt_degraded, "degraded"},
95e05289 75 {Opt_subvol, "subvol=%s"},
43e570b0 76 {Opt_device, "device=%s"},
b6cda9bc 77 {Opt_nodatasum, "nodatasum"},
be20aa9d 78 {Opt_nodatacow, "nodatacow"},
21ad10cf 79 {Opt_nobarrier, "nobarrier"},
c59f8951 80 {Opt_max_extent, "max_extent=%s"},
6f568d35 81 {Opt_max_inline, "max_inline=%s"},
8f662a76 82 {Opt_alloc_start, "alloc_start=%s"},
e18e4809 83 {Opt_ssd, "ssd"},
95e05289
CM
84 {Opt_err, NULL}
85};
86
edbd8d4e 87u64 btrfs_parse_size(char *str)
c59f8951 88{
edbd8d4e 89 u64 res;
c59f8951
CM
90 int mult = 1;
91 char *end;
92 char last;
93
94 res = simple_strtoul(str, &end, 10);
95
96 last = end[0];
97 if (isalpha(last)) {
98 last = tolower(last);
99 switch (last) {
100 case 'g':
101 mult *= 1024;
102 case 'm':
103 mult *= 1024;
104 case 'k':
105 mult *= 1024;
106 }
107 res = res * mult;
108 }
109 return res;
110}
111
edf24abe
CH
112/*
113 * Regular mount options parser. Everything that is needed only when
114 * reading in a new superblock is parsed here.
115 */
116int btrfs_parse_options(struct btrfs_root *root, char *options)
95e05289 117{
edf24abe 118 struct btrfs_fs_info *info = root->fs_info;
95e05289 119 substring_t args[MAX_OPT_ARGS];
edf24abe 120 char *p, *num;
b6cda9bc 121
95e05289 122 if (!options)
edf24abe 123 return 0;
95e05289 124
be20aa9d
CM
125 /*
126 * strsep changes the string, duplicate it because parse_options
127 * gets called twice
128 */
129 options = kstrdup(options, GFP_NOFS);
130 if (!options)
131 return -ENOMEM;
132
be20aa9d 133
edf24abe 134 while ((p = strsep(&options, ",")) != NULL) {
95e05289
CM
135 int token;
136 if (!*p)
137 continue;
138
139 token = match_token(p, tokens, args);
140 switch (token) {
dfe25020 141 case Opt_degraded:
edf24abe
CH
142 printk(KERN_INFO "btrfs: allowing degraded mounts\n");
143 btrfs_set_opt(info->mount_opt, DEGRADED);
dfe25020 144 break;
95e05289 145 case Opt_subvol:
43e570b0 146 case Opt_device:
edf24abe 147 /*
43e570b0 148 * These are parsed by btrfs_parse_early_options
edf24abe
CH
149 * and can be happily ignored here.
150 */
b6cda9bc
CM
151 break;
152 case Opt_nodatasum:
edf24abe
CH
153 printk(KERN_INFO "btrfs: setting nodatacsum\n");
154 btrfs_set_opt(info->mount_opt, NODATASUM);
be20aa9d
CM
155 break;
156 case Opt_nodatacow:
edf24abe
CH
157 printk(KERN_INFO "btrfs: setting nodatacow\n");
158 btrfs_set_opt(info->mount_opt, NODATACOW);
159 btrfs_set_opt(info->mount_opt, NODATASUM);
95e05289 160 break;
e18e4809 161 case Opt_ssd:
edf24abe
CH
162 printk(KERN_INFO "btrfs: use ssd allocation scheme\n");
163 btrfs_set_opt(info->mount_opt, SSD);
e18e4809 164 break;
21ad10cf 165 case Opt_nobarrier:
edf24abe
CH
166 printk(KERN_INFO "btrfs: turning off barriers\n");
167 btrfs_set_opt(info->mount_opt, NOBARRIER);
21ad10cf 168 break;
c59f8951 169 case Opt_max_extent:
edf24abe
CH
170 num = match_strdup(&args[0]);
171 if (num) {
172 info->max_extent = btrfs_parse_size(num);
173 kfree(num);
174
175 info->max_extent = max_t(u64,
176 info->max_extent, root->sectorsize);
177 printk(KERN_INFO "btrfs: max_extent at %llu\n",
178 info->max_extent);
c59f8951
CM
179 }
180 break;
6f568d35 181 case Opt_max_inline:
edf24abe
CH
182 num = match_strdup(&args[0]);
183 if (num) {
184 info->max_inline = btrfs_parse_size(num);
185 kfree(num);
186
187 info->max_inline = max_t(u64,
188 info->max_inline, root->sectorsize);
189 printk(KERN_INFO "btrfs: max_inline at %llu\n",
190 info->max_inline);
6f568d35
CM
191 }
192 break;
8f662a76 193 case Opt_alloc_start:
edf24abe
CH
194 num = match_strdup(&args[0]);
195 if (num) {
196 info->alloc_start = btrfs_parse_size(num);
197 kfree(num);
198 printk(KERN_INFO
199 "btrfs: allocations start at %llu\n",
200 info->alloc_start);
8f662a76
CM
201 }
202 break;
95e05289 203 default:
be20aa9d 204 break;
95e05289
CM
205 }
206 }
be20aa9d 207 kfree(options);
edf24abe
CH
208 return 0;
209}
210
211/*
212 * Parse mount options that are required early in the mount process.
213 *
214 * All other options will be parsed on much later in the mount process and
215 * only when we need to allocate a new super block.
216 */
43e570b0
CH
217static int btrfs_parse_early_options(const char *options, int flags,
218 void *holder, char **subvol_name,
219 struct btrfs_fs_devices **fs_devices)
edf24abe
CH
220{
221 substring_t args[MAX_OPT_ARGS];
222 char *opts, *p;
223 int error = 0;
224
225 if (!options)
226 goto out;
227
228 /*
229 * strsep changes the string, duplicate it because parse_options
230 * gets called twice
231 */
232 opts = kstrdup(options, GFP_KERNEL);
233 if (!opts)
234 return -ENOMEM;
235
236 while ((p = strsep(&opts, ",")) != NULL) {
237 int token;
238 if (!*p)
239 continue;
240
241 token = match_token(p, tokens, args);
242 switch (token) {
243 case Opt_subvol:
244 *subvol_name = match_strdup(&args[0]);
245 break;
43e570b0
CH
246 case Opt_device:
247 error = btrfs_scan_one_device(match_strdup(&args[0]),
248 flags, holder, fs_devices);
249 if (error)
250 goto out_free_opts;
251 break;
edf24abe
CH
252 default:
253 break;
254 }
255 }
256
43e570b0 257 out_free_opts:
edf24abe
CH
258 kfree(opts);
259 out:
260 /*
261 * If no subvolume name is specified we use the default one. Allocate
262 * a copy of the string "default" here so that code later in the
263 * mount path doesn't care if it's the default volume or another one.
264 */
265 if (!*subvol_name) {
266 *subvol_name = kstrdup("default", GFP_KERNEL);
267 if (!*subvol_name)
268 return -ENOMEM;
269 }
270 return error;
95e05289
CM
271}
272
8a4b83cc
CM
273static int btrfs_fill_super(struct super_block * sb,
274 struct btrfs_fs_devices *fs_devices,
275 void * data, int silent)
75dfe396 276{
39279cc3
CM
277 struct inode * inode;
278 struct dentry * root_dentry;
279 struct btrfs_super_block *disk_super;
280 struct btrfs_root *tree_root;
281 struct btrfs_inode *bi;
282 int err;
a429e513 283
39279cc3
CM
284 sb->s_maxbytes = MAX_LFS_FILESIZE;
285 sb->s_magic = BTRFS_SUPER_MAGIC;
286 sb->s_op = &btrfs_super_ops;
5103e947 287 sb->s_xattr = btrfs_xattr_handlers;
39279cc3 288 sb->s_time_gran = 1;
a429e513 289
dfe25020 290 tree_root = open_ctree(sb, fs_devices, (char *)data);
6567e837 291
e58ca020 292 if (IS_ERR(tree_root)) {
39279cc3 293 printk("btrfs: open_ctree failed\n");
e58ca020 294 return PTR_ERR(tree_root);
a429e513 295 }
39279cc3 296 sb->s_fs_info = tree_root;
5f39d397 297 disk_super = &tree_root->fs_info->super_copy;
39279cc3
CM
298 inode = btrfs_iget_locked(sb, btrfs_super_root_dir(disk_super),
299 tree_root);
300 bi = BTRFS_I(inode);
301 bi->location.objectid = inode->i_ino;
302 bi->location.offset = 0;
39279cc3 303 bi->root = tree_root;
b888db2b 304
39279cc3 305 btrfs_set_key_type(&bi->location, BTRFS_INODE_ITEM_KEY);
a429e513 306
39279cc3 307 if (!inode) {
6567e837 308 err = -ENOMEM;
39279cc3 309 goto fail_close;
f254e52c 310 }
39279cc3
CM
311 if (inode->i_state & I_NEW) {
312 btrfs_read_locked_inode(inode);
313 unlock_new_inode(inode);
f254e52c 314 }
f254e52c 315
39279cc3
CM
316 root_dentry = d_alloc_root(inode);
317 if (!root_dentry) {
318 iput(inode);
319 err = -ENOMEM;
320 goto fail_close;
f254e52c 321 }
58176a96
JB
322
323 /* this does the super kobj at the same time */
324 err = btrfs_sysfs_add_super(tree_root->fs_info);
325 if (err)
326 goto fail_close;
327
39279cc3
CM
328 sb->s_root = root_dentry;
329 btrfs_transaction_queue_work(tree_root, HZ * 30);
6885f308
CM
330
331#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,25)
332 save_mount_options(sb, data);
333#endif
334
2619ba1f 335 return 0;
39279cc3
CM
336
337fail_close:
338 close_ctree(tree_root);
339 return err;
2619ba1f
CM
340}
341
6bf13c0c 342int btrfs_sync_fs(struct super_block *sb, int wait)
c5739bba
CM
343{
344 struct btrfs_trans_handle *trans;
39279cc3 345 struct btrfs_root *root;
c5739bba 346 int ret;
39279cc3 347 root = btrfs_sb(sb);
2619ba1f 348
39279cc3
CM
349 sb->s_dirt = 0;
350 if (!wait) {
351 filemap_flush(root->fs_info->btree_inode->i_mapping);
352 return 0;
353 }
e9d0b13b 354 btrfs_clean_old_snapshots(root);
c5739bba 355 mutex_lock(&root->fs_info->fs_mutex);
e9d0b13b 356 btrfs_defrag_dirty_roots(root->fs_info);
c5739bba 357 trans = btrfs_start_transaction(root, 1);
c5739bba 358 ret = btrfs_commit_transaction(trans, root);
39279cc3 359 sb->s_dirt = 0;
c5739bba 360 mutex_unlock(&root->fs_info->fs_mutex);
54aa1f4d 361 return ret;
2c90e5d6
CM
362}
363
39279cc3 364static void btrfs_write_super(struct super_block *sb)
2c90e5d6 365{
39279cc3 366 sb->s_dirt = 0;
2c90e5d6
CM
367}
368
a061fc8d 369static int btrfs_test_super(struct super_block *s, void *data)
4b82d6e4 370{
a061fc8d
CM
371 struct btrfs_fs_devices *test_fs_devices = data;
372 struct btrfs_root *root = btrfs_sb(s);
4b82d6e4 373
a061fc8d 374 return root->fs_info->fs_devices == test_fs_devices;
4b82d6e4
Y
375}
376
edf24abe
CH
377/*
378 * Find a superblock for the given device / mount point.
379 *
380 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
381 * for multiple device setup. Make sure to keep it in sync.
382 */
383static int btrfs_get_sb(struct file_system_type *fs_type, int flags,
384 const char *dev_name, void *data, struct vfsmount *mnt)
4b82d6e4 385{
edf24abe 386 char *subvol_name = NULL;
4b82d6e4
Y
387 struct block_device *bdev = NULL;
388 struct super_block *s;
389 struct dentry *root;
8a4b83cc 390 struct btrfs_fs_devices *fs_devices = NULL;
4b82d6e4
Y
391 int error = 0;
392
43e570b0
CH
393 error = btrfs_parse_early_options(data, flags, fs_type,
394 &subvol_name, &fs_devices);
edf24abe
CH
395 if (error)
396 goto error;
397
8a4b83cc
CM
398 error = btrfs_scan_one_device(dev_name, flags, fs_type, &fs_devices);
399 if (error)
edf24abe 400 goto error_free_subvol_name;
4b82d6e4 401
8a4b83cc
CM
402 error = btrfs_open_devices(fs_devices, flags, fs_type);
403 if (error)
edf24abe 404 goto error_free_subvol_name;
8a4b83cc 405
dfe25020 406 bdev = fs_devices->latest_bdev;
a061fc8d
CM
407 btrfs_lock_volumes();
408 s = sget(fs_type, btrfs_test_super, set_anon_super, fs_devices);
409 btrfs_unlock_volumes();
4b82d6e4
Y
410 if (IS_ERR(s))
411 goto error_s;
412
413 if (s->s_root) {
414 if ((flags ^ s->s_flags) & MS_RDONLY) {
415 up_write(&s->s_umount);
416 deactivate_super(s);
417 error = -EBUSY;
418 goto error_bdev;
419 }
420
4b82d6e4
Y
421 } else {
422 char b[BDEVNAME_SIZE];
423
424 s->s_flags = flags;
425 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
8a4b83cc
CM
426 error = btrfs_fill_super(s, fs_devices, data,
427 flags & MS_SILENT ? 1 : 0);
4b82d6e4
Y
428 if (error) {
429 up_write(&s->s_umount);
430 deactivate_super(s);
431 goto error;
432 }
433
788f20eb 434 btrfs_sb(s)->fs_info->bdev_holder = fs_type;
4b82d6e4
Y
435 s->s_flags |= MS_ACTIVE;
436 }
437
edf24abe
CH
438 root = lookup_one_len(subvol_name, s->s_root, strlen(subvol_name));
439 if (IS_ERR(root)) {
440 up_write(&s->s_umount);
441 deactivate_super(s);
442 error = PTR_ERR(root);
443 goto error;
444 }
445 if (!root->d_inode) {
446 dput(root);
447 up_write(&s->s_umount);
448 deactivate_super(s);
449 error = -ENXIO;
450 goto error;
4b82d6e4
Y
451 }
452
453 mnt->mnt_sb = s;
454 mnt->mnt_root = root;
edf24abe
CH
455
456 kfree(subvol_name);
4b82d6e4
Y
457 return 0;
458
459error_s:
460 error = PTR_ERR(s);
461error_bdev:
8a4b83cc 462 btrfs_close_devices(fs_devices);
edf24abe
CH
463error_free_subvol_name:
464 kfree(subvol_name);
4b82d6e4
Y
465error:
466 return error;
467}
2e635a27 468
8fd17795
CM
469static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
470{
471 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
4b52dff6 472 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
db94535d 473 int bits = dentry->d_sb->s_blocksize_bits;
8fd17795
CM
474
475 buf->f_namelen = BTRFS_NAME_LEN;
db94535d
CM
476 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
477 buf->f_bfree = buf->f_blocks -
478 (btrfs_super_bytes_used(disk_super) >> bits);
8fd17795
CM
479 buf->f_bavail = buf->f_bfree;
480 buf->f_bsize = dentry->d_sb->s_blocksize;
481 buf->f_type = BTRFS_SUPER_MAGIC;
482 return 0;
483}
b5133862 484
2e635a27
CM
485static struct file_system_type btrfs_fs_type = {
486 .owner = THIS_MODULE,
487 .name = "btrfs",
488 .get_sb = btrfs_get_sb,
a061fc8d 489 .kill_sb = kill_anon_super,
2e635a27
CM
490 .fs_flags = FS_REQUIRES_DEV,
491};
a9218f6b 492
8a4b83cc
CM
493static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
494 unsigned long arg)
495{
496 struct btrfs_ioctl_vol_args *vol;
497 struct btrfs_fs_devices *fs_devices;
f819d837 498 int ret = 0;
8a4b83cc
CM
499 int len;
500
501 vol = kmalloc(sizeof(*vol), GFP_KERNEL);
502 if (copy_from_user(vol, (void __user *)arg, sizeof(*vol))) {
503 ret = -EFAULT;
504 goto out;
505 }
506 len = strnlen(vol->name, BTRFS_PATH_NAME_MAX);
507 switch (cmd) {
508 case BTRFS_IOC_SCAN_DEV:
509 ret = btrfs_scan_one_device(vol->name, MS_RDONLY,
510 &btrfs_fs_type, &fs_devices);
511 break;
512 }
513out:
514 kfree(vol);
f819d837 515 return ret;
8a4b83cc
CM
516}
517
ed0dab6b
Y
518static void btrfs_write_super_lockfs(struct super_block *sb)
519{
520 struct btrfs_root *root = btrfs_sb(sb);
521 btrfs_transaction_flush_work(root);
522}
523
524static void btrfs_unlockfs(struct super_block *sb)
525{
526 struct btrfs_root *root = btrfs_sb(sb);
527 btrfs_transaction_queue_work(root, HZ * 30);
528}
2e635a27 529
e20d96d6 530static struct super_operations btrfs_super_ops = {
134e9731 531 .delete_inode = btrfs_delete_inode,
e20d96d6 532 .put_super = btrfs_put_super,
d5719762
CM
533 .write_super = btrfs_write_super,
534 .sync_fs = btrfs_sync_fs,
6885f308
CM
535#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,25)
536 .read_inode = btrfs_read_locked_inode,
537#else
538 .show_options = generic_show_options,
539#endif
4730a4bc 540 .write_inode = btrfs_write_inode,
b5133862 541 .dirty_inode = btrfs_dirty_inode,
2c90e5d6
CM
542 .alloc_inode = btrfs_alloc_inode,
543 .destroy_inode = btrfs_destroy_inode,
8fd17795 544 .statfs = btrfs_statfs,
ed0dab6b
Y
545 .write_super_lockfs = btrfs_write_super_lockfs,
546 .unlockfs = btrfs_unlockfs,
e20d96d6 547};
a9218f6b
CM
548
549static const struct file_operations btrfs_ctl_fops = {
550 .unlocked_ioctl = btrfs_control_ioctl,
551 .compat_ioctl = btrfs_control_ioctl,
552 .owner = THIS_MODULE,
553};
554
555static struct miscdevice btrfs_misc = {
556 .minor = MISC_DYNAMIC_MINOR,
557 .name = "btrfs-control",
558 .fops = &btrfs_ctl_fops
559};
560
561static int btrfs_interface_init(void)
562{
563 return misc_register(&btrfs_misc);
564}
565
566void btrfs_interface_exit(void)
567{
568 if (misc_deregister(&btrfs_misc) < 0)
569 printk("misc_deregister failed for control device");
570}
571
2e635a27
CM
572static int __init init_btrfs_fs(void)
573{
2c90e5d6 574 int err;
58176a96
JB
575
576 err = btrfs_init_sysfs();
577 if (err)
578 return err;
579
08607c1b 580 btrfs_init_transaction_sys();
39279cc3 581 err = btrfs_init_cachep();
2c90e5d6 582 if (err)
2f4cbe64 583 goto free_transaction_sys;
d1310b2e
CM
584
585 err = extent_io_init();
2f4cbe64
WB
586 if (err)
587 goto free_cachep;
588
d1310b2e
CM
589 err = extent_map_init();
590 if (err)
591 goto free_extent_io;
592
a9218f6b 593 err = btrfs_interface_init();
2f4cbe64
WB
594 if (err)
595 goto free_extent_map;
a9218f6b
CM
596 err = register_filesystem(&btrfs_fs_type);
597 if (err)
598 goto unregister_ioctl;
2f4cbe64
WB
599 return 0;
600
a9218f6b
CM
601unregister_ioctl:
602 btrfs_interface_exit();
2f4cbe64
WB
603free_extent_map:
604 extent_map_exit();
d1310b2e
CM
605free_extent_io:
606 extent_io_exit();
2f4cbe64
WB
607free_cachep:
608 btrfs_destroy_cachep();
609free_transaction_sys:
610 btrfs_exit_transaction_sys();
611 btrfs_exit_sysfs();
612 return err;
2e635a27
CM
613}
614
615static void __exit exit_btrfs_fs(void)
616{
08607c1b 617 btrfs_exit_transaction_sys();
39279cc3 618 btrfs_destroy_cachep();
a52d9a80 619 extent_map_exit();
d1310b2e 620 extent_io_exit();
a9218f6b 621 btrfs_interface_exit();
2e635a27 622 unregister_filesystem(&btrfs_fs_type);
58176a96 623 btrfs_exit_sysfs();
8a4b83cc 624 btrfs_cleanup_fs_uuids();
2e635a27
CM
625}
626
627module_init(init_btrfs_fs)
628module_exit(exit_btrfs_fs)
629
630MODULE_LICENSE("GPL");