Btrfs: Worker thread optimizations
[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
15ada040
CM
187 if (info->max_inline) {
188 info->max_inline = max_t(u64,
189 info->max_inline,
190 root->sectorsize);
191 }
edf24abe
CH
192 printk(KERN_INFO "btrfs: max_inline at %llu\n",
193 info->max_inline);
6f568d35
CM
194 }
195 break;
8f662a76 196 case Opt_alloc_start:
edf24abe
CH
197 num = match_strdup(&args[0]);
198 if (num) {
199 info->alloc_start = btrfs_parse_size(num);
200 kfree(num);
201 printk(KERN_INFO
202 "btrfs: allocations start at %llu\n",
203 info->alloc_start);
8f662a76
CM
204 }
205 break;
95e05289 206 default:
be20aa9d 207 break;
95e05289
CM
208 }
209 }
be20aa9d 210 kfree(options);
edf24abe
CH
211 return 0;
212}
213
214/*
215 * Parse mount options that are required early in the mount process.
216 *
217 * All other options will be parsed on much later in the mount process and
218 * only when we need to allocate a new super block.
219 */
43e570b0
CH
220static int btrfs_parse_early_options(const char *options, int flags,
221 void *holder, char **subvol_name,
222 struct btrfs_fs_devices **fs_devices)
edf24abe
CH
223{
224 substring_t args[MAX_OPT_ARGS];
225 char *opts, *p;
226 int error = 0;
227
228 if (!options)
229 goto out;
230
231 /*
232 * strsep changes the string, duplicate it because parse_options
233 * gets called twice
234 */
235 opts = kstrdup(options, GFP_KERNEL);
236 if (!opts)
237 return -ENOMEM;
238
239 while ((p = strsep(&opts, ",")) != NULL) {
240 int token;
241 if (!*p)
242 continue;
243
244 token = match_token(p, tokens, args);
245 switch (token) {
246 case Opt_subvol:
247 *subvol_name = match_strdup(&args[0]);
248 break;
43e570b0
CH
249 case Opt_device:
250 error = btrfs_scan_one_device(match_strdup(&args[0]),
251 flags, holder, fs_devices);
252 if (error)
253 goto out_free_opts;
254 break;
edf24abe
CH
255 default:
256 break;
257 }
258 }
259
43e570b0 260 out_free_opts:
edf24abe
CH
261 kfree(opts);
262 out:
263 /*
264 * If no subvolume name is specified we use the default one. Allocate
265 * a copy of the string "default" here so that code later in the
266 * mount path doesn't care if it's the default volume or another one.
267 */
268 if (!*subvol_name) {
269 *subvol_name = kstrdup("default", GFP_KERNEL);
270 if (!*subvol_name)
271 return -ENOMEM;
272 }
273 return error;
95e05289
CM
274}
275
8a4b83cc
CM
276static int btrfs_fill_super(struct super_block * sb,
277 struct btrfs_fs_devices *fs_devices,
278 void * data, int silent)
75dfe396 279{
39279cc3
CM
280 struct inode * inode;
281 struct dentry * root_dentry;
282 struct btrfs_super_block *disk_super;
283 struct btrfs_root *tree_root;
284 struct btrfs_inode *bi;
285 int err;
a429e513 286
39279cc3
CM
287 sb->s_maxbytes = MAX_LFS_FILESIZE;
288 sb->s_magic = BTRFS_SUPER_MAGIC;
289 sb->s_op = &btrfs_super_ops;
5103e947 290 sb->s_xattr = btrfs_xattr_handlers;
39279cc3 291 sb->s_time_gran = 1;
a429e513 292
dfe25020 293 tree_root = open_ctree(sb, fs_devices, (char *)data);
6567e837 294
e58ca020 295 if (IS_ERR(tree_root)) {
39279cc3 296 printk("btrfs: open_ctree failed\n");
e58ca020 297 return PTR_ERR(tree_root);
a429e513 298 }
39279cc3 299 sb->s_fs_info = tree_root;
5f39d397 300 disk_super = &tree_root->fs_info->super_copy;
39279cc3
CM
301 inode = btrfs_iget_locked(sb, btrfs_super_root_dir(disk_super),
302 tree_root);
303 bi = BTRFS_I(inode);
304 bi->location.objectid = inode->i_ino;
305 bi->location.offset = 0;
39279cc3 306 bi->root = tree_root;
b888db2b 307
39279cc3 308 btrfs_set_key_type(&bi->location, BTRFS_INODE_ITEM_KEY);
a429e513 309
39279cc3 310 if (!inode) {
6567e837 311 err = -ENOMEM;
39279cc3 312 goto fail_close;
f254e52c 313 }
39279cc3
CM
314 if (inode->i_state & I_NEW) {
315 btrfs_read_locked_inode(inode);
316 unlock_new_inode(inode);
f254e52c 317 }
f254e52c 318
39279cc3
CM
319 root_dentry = d_alloc_root(inode);
320 if (!root_dentry) {
321 iput(inode);
322 err = -ENOMEM;
323 goto fail_close;
f254e52c 324 }
58176a96
JB
325
326 /* this does the super kobj at the same time */
327 err = btrfs_sysfs_add_super(tree_root->fs_info);
328 if (err)
329 goto fail_close;
330
39279cc3
CM
331 sb->s_root = root_dentry;
332 btrfs_transaction_queue_work(tree_root, HZ * 30);
6885f308
CM
333
334#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,25)
335 save_mount_options(sb, data);
336#endif
337
2619ba1f 338 return 0;
39279cc3
CM
339
340fail_close:
341 close_ctree(tree_root);
342 return err;
2619ba1f
CM
343}
344
6bf13c0c 345int btrfs_sync_fs(struct super_block *sb, int wait)
c5739bba
CM
346{
347 struct btrfs_trans_handle *trans;
39279cc3 348 struct btrfs_root *root;
c5739bba 349 int ret;
39279cc3 350 root = btrfs_sb(sb);
2619ba1f 351
39279cc3
CM
352 sb->s_dirt = 0;
353 if (!wait) {
354 filemap_flush(root->fs_info->btree_inode->i_mapping);
355 return 0;
356 }
e9d0b13b 357 btrfs_clean_old_snapshots(root);
c5739bba 358 mutex_lock(&root->fs_info->fs_mutex);
e9d0b13b 359 btrfs_defrag_dirty_roots(root->fs_info);
c5739bba 360 trans = btrfs_start_transaction(root, 1);
c5739bba 361 ret = btrfs_commit_transaction(trans, root);
39279cc3 362 sb->s_dirt = 0;
c5739bba 363 mutex_unlock(&root->fs_info->fs_mutex);
54aa1f4d 364 return ret;
2c90e5d6
CM
365}
366
39279cc3 367static void btrfs_write_super(struct super_block *sb)
2c90e5d6 368{
39279cc3 369 sb->s_dirt = 0;
2c90e5d6
CM
370}
371
a061fc8d 372static int btrfs_test_super(struct super_block *s, void *data)
4b82d6e4 373{
a061fc8d
CM
374 struct btrfs_fs_devices *test_fs_devices = data;
375 struct btrfs_root *root = btrfs_sb(s);
4b82d6e4 376
a061fc8d 377 return root->fs_info->fs_devices == test_fs_devices;
4b82d6e4
Y
378}
379
edf24abe
CH
380/*
381 * Find a superblock for the given device / mount point.
382 *
383 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
384 * for multiple device setup. Make sure to keep it in sync.
385 */
386static int btrfs_get_sb(struct file_system_type *fs_type, int flags,
387 const char *dev_name, void *data, struct vfsmount *mnt)
4b82d6e4 388{
edf24abe 389 char *subvol_name = NULL;
4b82d6e4
Y
390 struct block_device *bdev = NULL;
391 struct super_block *s;
392 struct dentry *root;
8a4b83cc 393 struct btrfs_fs_devices *fs_devices = NULL;
4b82d6e4
Y
394 int error = 0;
395
43e570b0
CH
396 error = btrfs_parse_early_options(data, flags, fs_type,
397 &subvol_name, &fs_devices);
edf24abe
CH
398 if (error)
399 goto error;
400
8a4b83cc
CM
401 error = btrfs_scan_one_device(dev_name, flags, fs_type, &fs_devices);
402 if (error)
edf24abe 403 goto error_free_subvol_name;
4b82d6e4 404
8a4b83cc
CM
405 error = btrfs_open_devices(fs_devices, flags, fs_type);
406 if (error)
edf24abe 407 goto error_free_subvol_name;
8a4b83cc 408
dfe25020 409 bdev = fs_devices->latest_bdev;
a061fc8d
CM
410 btrfs_lock_volumes();
411 s = sget(fs_type, btrfs_test_super, set_anon_super, fs_devices);
412 btrfs_unlock_volumes();
4b82d6e4
Y
413 if (IS_ERR(s))
414 goto error_s;
415
416 if (s->s_root) {
417 if ((flags ^ s->s_flags) & MS_RDONLY) {
418 up_write(&s->s_umount);
419 deactivate_super(s);
420 error = -EBUSY;
421 goto error_bdev;
422 }
423
4b82d6e4
Y
424 } else {
425 char b[BDEVNAME_SIZE];
426
427 s->s_flags = flags;
428 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
8a4b83cc
CM
429 error = btrfs_fill_super(s, fs_devices, data,
430 flags & MS_SILENT ? 1 : 0);
4b82d6e4
Y
431 if (error) {
432 up_write(&s->s_umount);
433 deactivate_super(s);
434 goto error;
435 }
436
788f20eb 437 btrfs_sb(s)->fs_info->bdev_holder = fs_type;
4b82d6e4
Y
438 s->s_flags |= MS_ACTIVE;
439 }
440
edf24abe
CH
441 root = lookup_one_len(subvol_name, s->s_root, strlen(subvol_name));
442 if (IS_ERR(root)) {
443 up_write(&s->s_umount);
444 deactivate_super(s);
445 error = PTR_ERR(root);
446 goto error;
447 }
448 if (!root->d_inode) {
449 dput(root);
450 up_write(&s->s_umount);
451 deactivate_super(s);
452 error = -ENXIO;
453 goto error;
4b82d6e4
Y
454 }
455
456 mnt->mnt_sb = s;
457 mnt->mnt_root = root;
edf24abe
CH
458
459 kfree(subvol_name);
4b82d6e4
Y
460 return 0;
461
462error_s:
463 error = PTR_ERR(s);
464error_bdev:
8a4b83cc 465 btrfs_close_devices(fs_devices);
edf24abe
CH
466error_free_subvol_name:
467 kfree(subvol_name);
4b82d6e4
Y
468error:
469 return error;
470}
2e635a27 471
8fd17795
CM
472static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
473{
474 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
4b52dff6 475 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
db94535d 476 int bits = dentry->d_sb->s_blocksize_bits;
8fd17795
CM
477
478 buf->f_namelen = BTRFS_NAME_LEN;
db94535d
CM
479 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
480 buf->f_bfree = buf->f_blocks -
481 (btrfs_super_bytes_used(disk_super) >> bits);
8fd17795
CM
482 buf->f_bavail = buf->f_bfree;
483 buf->f_bsize = dentry->d_sb->s_blocksize;
484 buf->f_type = BTRFS_SUPER_MAGIC;
485 return 0;
486}
b5133862 487
2e635a27
CM
488static struct file_system_type btrfs_fs_type = {
489 .owner = THIS_MODULE,
490 .name = "btrfs",
491 .get_sb = btrfs_get_sb,
a061fc8d 492 .kill_sb = kill_anon_super,
2e635a27
CM
493 .fs_flags = FS_REQUIRES_DEV,
494};
a9218f6b 495
8a4b83cc
CM
496static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
497 unsigned long arg)
498{
499 struct btrfs_ioctl_vol_args *vol;
500 struct btrfs_fs_devices *fs_devices;
f819d837 501 int ret = 0;
8a4b83cc
CM
502 int len;
503
504 vol = kmalloc(sizeof(*vol), GFP_KERNEL);
505 if (copy_from_user(vol, (void __user *)arg, sizeof(*vol))) {
506 ret = -EFAULT;
507 goto out;
508 }
509 len = strnlen(vol->name, BTRFS_PATH_NAME_MAX);
510 switch (cmd) {
511 case BTRFS_IOC_SCAN_DEV:
512 ret = btrfs_scan_one_device(vol->name, MS_RDONLY,
513 &btrfs_fs_type, &fs_devices);
514 break;
515 }
516out:
517 kfree(vol);
f819d837 518 return ret;
8a4b83cc
CM
519}
520
ed0dab6b
Y
521static void btrfs_write_super_lockfs(struct super_block *sb)
522{
523 struct btrfs_root *root = btrfs_sb(sb);
524 btrfs_transaction_flush_work(root);
525}
526
527static void btrfs_unlockfs(struct super_block *sb)
528{
529 struct btrfs_root *root = btrfs_sb(sb);
530 btrfs_transaction_queue_work(root, HZ * 30);
531}
2e635a27 532
e20d96d6 533static struct super_operations btrfs_super_ops = {
134e9731 534 .delete_inode = btrfs_delete_inode,
e20d96d6 535 .put_super = btrfs_put_super,
d5719762
CM
536 .write_super = btrfs_write_super,
537 .sync_fs = btrfs_sync_fs,
6885f308
CM
538#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,25)
539 .read_inode = btrfs_read_locked_inode,
540#else
541 .show_options = generic_show_options,
542#endif
4730a4bc 543 .write_inode = btrfs_write_inode,
b5133862 544 .dirty_inode = btrfs_dirty_inode,
2c90e5d6
CM
545 .alloc_inode = btrfs_alloc_inode,
546 .destroy_inode = btrfs_destroy_inode,
8fd17795 547 .statfs = btrfs_statfs,
ed0dab6b
Y
548 .write_super_lockfs = btrfs_write_super_lockfs,
549 .unlockfs = btrfs_unlockfs,
e20d96d6 550};
a9218f6b
CM
551
552static const struct file_operations btrfs_ctl_fops = {
553 .unlocked_ioctl = btrfs_control_ioctl,
554 .compat_ioctl = btrfs_control_ioctl,
555 .owner = THIS_MODULE,
556};
557
558static struct miscdevice btrfs_misc = {
559 .minor = MISC_DYNAMIC_MINOR,
560 .name = "btrfs-control",
561 .fops = &btrfs_ctl_fops
562};
563
564static int btrfs_interface_init(void)
565{
566 return misc_register(&btrfs_misc);
567}
568
569void btrfs_interface_exit(void)
570{
571 if (misc_deregister(&btrfs_misc) < 0)
572 printk("misc_deregister failed for control device");
573}
574
2e635a27
CM
575static int __init init_btrfs_fs(void)
576{
2c90e5d6 577 int err;
58176a96
JB
578
579 err = btrfs_init_sysfs();
580 if (err)
581 return err;
582
08607c1b 583 btrfs_init_transaction_sys();
39279cc3 584 err = btrfs_init_cachep();
2c90e5d6 585 if (err)
2f4cbe64 586 goto free_transaction_sys;
d1310b2e
CM
587
588 err = extent_io_init();
2f4cbe64
WB
589 if (err)
590 goto free_cachep;
591
d1310b2e
CM
592 err = extent_map_init();
593 if (err)
594 goto free_extent_io;
595
a9218f6b 596 err = btrfs_interface_init();
2f4cbe64
WB
597 if (err)
598 goto free_extent_map;
a9218f6b
CM
599 err = register_filesystem(&btrfs_fs_type);
600 if (err)
601 goto unregister_ioctl;
2f4cbe64
WB
602 return 0;
603
a9218f6b
CM
604unregister_ioctl:
605 btrfs_interface_exit();
2f4cbe64
WB
606free_extent_map:
607 extent_map_exit();
d1310b2e
CM
608free_extent_io:
609 extent_io_exit();
2f4cbe64
WB
610free_cachep:
611 btrfs_destroy_cachep();
612free_transaction_sys:
613 btrfs_exit_transaction_sys();
614 btrfs_exit_sysfs();
615 return err;
2e635a27
CM
616}
617
618static void __exit exit_btrfs_fs(void)
619{
08607c1b 620 btrfs_exit_transaction_sys();
39279cc3 621 btrfs_destroy_cachep();
a52d9a80 622 extent_map_exit();
d1310b2e 623 extent_io_exit();
a9218f6b 624 btrfs_interface_exit();
2e635a27 625 unregister_filesystem(&btrfs_fs_type);
58176a96 626 btrfs_exit_sysfs();
8a4b83cc 627 btrfs_cleanup_fs_uuids();
2e635a27
CM
628}
629
630module_init(init_btrfs_fs)
631module_exit(exit_btrfs_fs)
632
633MODULE_LICENSE("GPL");