Btrfs: remove unneeded btrfs_start_delalloc_inodes call
[linux-2.6-block.git] / fs / btrfs / super.c
... / ...
CommitLineData
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
19#include <linux/blkdev.h>
20#include <linux/module.h>
21#include <linux/buffer_head.h>
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>
30#include <linux/mount.h>
31#include <linux/mpage.h>
32#include <linux/swap.h>
33#include <linux/writeback.h>
34#include <linux/statfs.h>
35#include <linux/compat.h>
36#include <linux/parser.h>
37#include <linux/ctype.h>
38#include <linux/namei.h>
39#include <linux/miscdevice.h>
40#include <linux/version.h>
41#include "compat.h"
42#include "ctree.h"
43#include "disk-io.h"
44#include "transaction.h"
45#include "btrfs_inode.h"
46#include "ioctl.h"
47#include "print-tree.h"
48#include "xattr.h"
49#include "volumes.h"
50#include "version.h"
51#include "export.h"
52#include "compression.h"
53
54#define BTRFS_SUPER_MAGIC 0x9123683E
55
56static struct super_operations btrfs_super_ops;
57
58static void btrfs_put_super (struct super_block * sb)
59{
60 struct btrfs_root *root = btrfs_sb(sb);
61 struct btrfs_fs_info *fs = root->fs_info;
62 int ret;
63
64 ret = close_ctree(root);
65 if (ret) {
66 printk("close ctree returns %d\n", ret);
67 }
68 btrfs_sysfs_del_super(fs);
69 sb->s_fs_info = NULL;
70}
71
72enum {
73 Opt_degraded, Opt_subvol, Opt_device, Opt_nodatasum, Opt_nodatacow,
74 Opt_max_extent, Opt_max_inline, Opt_alloc_start, Opt_nobarrier,
75 Opt_ssd, Opt_thread_pool, Opt_noacl, Opt_compress, Opt_err,
76};
77
78static match_table_t tokens = {
79 {Opt_degraded, "degraded"},
80 {Opt_subvol, "subvol=%s"},
81 {Opt_device, "device=%s"},
82 {Opt_nodatasum, "nodatasum"},
83 {Opt_nodatacow, "nodatacow"},
84 {Opt_nobarrier, "nobarrier"},
85 {Opt_max_extent, "max_extent=%s"},
86 {Opt_max_inline, "max_inline=%s"},
87 {Opt_alloc_start, "alloc_start=%s"},
88 {Opt_thread_pool, "thread_pool=%d"},
89 {Opt_compress, "compress"},
90 {Opt_ssd, "ssd"},
91 {Opt_noacl, "noacl"},
92 {Opt_err, NULL},
93};
94
95u64 btrfs_parse_size(char *str)
96{
97 u64 res;
98 int mult = 1;
99 char *end;
100 char last;
101
102 res = simple_strtoul(str, &end, 10);
103
104 last = end[0];
105 if (isalpha(last)) {
106 last = tolower(last);
107 switch (last) {
108 case 'g':
109 mult *= 1024;
110 case 'm':
111 mult *= 1024;
112 case 'k':
113 mult *= 1024;
114 }
115 res = res * mult;
116 }
117 return res;
118}
119
120/*
121 * Regular mount options parser. Everything that is needed only when
122 * reading in a new superblock is parsed here.
123 */
124int btrfs_parse_options(struct btrfs_root *root, char *options)
125{
126 struct btrfs_fs_info *info = root->fs_info;
127 substring_t args[MAX_OPT_ARGS];
128 char *p, *num;
129 int intarg;
130
131 if (!options)
132 return 0;
133
134 /*
135 * strsep changes the string, duplicate it because parse_options
136 * gets called twice
137 */
138 options = kstrdup(options, GFP_NOFS);
139 if (!options)
140 return -ENOMEM;
141
142
143 while ((p = strsep(&options, ",")) != NULL) {
144 int token;
145 if (!*p)
146 continue;
147
148 token = match_token(p, tokens, args);
149 switch (token) {
150 case Opt_degraded:
151 printk(KERN_INFO "btrfs: allowing degraded mounts\n");
152 btrfs_set_opt(info->mount_opt, DEGRADED);
153 break;
154 case Opt_subvol:
155 case Opt_device:
156 /*
157 * These are parsed by btrfs_parse_early_options
158 * and can be happily ignored here.
159 */
160 break;
161 case Opt_nodatasum:
162 printk(KERN_INFO "btrfs: setting nodatacsum\n");
163 btrfs_set_opt(info->mount_opt, NODATASUM);
164 break;
165 case Opt_nodatacow:
166 printk(KERN_INFO "btrfs: setting nodatacow\n");
167 btrfs_set_opt(info->mount_opt, NODATACOW);
168 btrfs_set_opt(info->mount_opt, NODATASUM);
169 break;
170 case Opt_compress:
171 printk(KERN_INFO "btrfs: use compression\n");
172 btrfs_set_opt(info->mount_opt, COMPRESS);
173 break;
174 case Opt_ssd:
175 printk(KERN_INFO "btrfs: use ssd allocation scheme\n");
176 btrfs_set_opt(info->mount_opt, SSD);
177 break;
178 case Opt_nobarrier:
179 printk(KERN_INFO "btrfs: turning off barriers\n");
180 btrfs_set_opt(info->mount_opt, NOBARRIER);
181 break;
182 case Opt_thread_pool:
183 intarg = 0;
184 match_int(&args[0], &intarg);
185 if (intarg) {
186 info->thread_pool_size = intarg;
187 printk(KERN_INFO "btrfs: thread pool %d\n",
188 info->thread_pool_size);
189 }
190 break;
191 case Opt_max_extent:
192 num = match_strdup(&args[0]);
193 if (num) {
194 info->max_extent = btrfs_parse_size(num);
195 kfree(num);
196
197 info->max_extent = max_t(u64,
198 info->max_extent, root->sectorsize);
199 printk(KERN_INFO "btrfs: max_extent at %llu\n",
200 info->max_extent);
201 }
202 break;
203 case Opt_max_inline:
204 num = match_strdup(&args[0]);
205 if (num) {
206 info->max_inline = btrfs_parse_size(num);
207 kfree(num);
208
209 if (info->max_inline) {
210 info->max_inline = max_t(u64,
211 info->max_inline,
212 root->sectorsize);
213 }
214 printk(KERN_INFO "btrfs: max_inline at %llu\n",
215 info->max_inline);
216 }
217 break;
218 case Opt_alloc_start:
219 num = match_strdup(&args[0]);
220 if (num) {
221 info->alloc_start = btrfs_parse_size(num);
222 kfree(num);
223 printk(KERN_INFO
224 "btrfs: allocations start at %llu\n",
225 info->alloc_start);
226 }
227 break;
228 case Opt_noacl:
229 root->fs_info->sb->s_flags &= ~MS_POSIXACL;
230 break;
231 default:
232 break;
233 }
234 }
235 kfree(options);
236 return 0;
237}
238
239/*
240 * Parse mount options that are required early in the mount process.
241 *
242 * All other options will be parsed on much later in the mount process and
243 * only when we need to allocate a new super block.
244 */
245static int btrfs_parse_early_options(const char *options, int flags,
246 void *holder, char **subvol_name,
247 struct btrfs_fs_devices **fs_devices)
248{
249 substring_t args[MAX_OPT_ARGS];
250 char *opts, *p;
251 int error = 0;
252
253 if (!options)
254 goto out;
255
256 /*
257 * strsep changes the string, duplicate it because parse_options
258 * gets called twice
259 */
260 opts = kstrdup(options, GFP_KERNEL);
261 if (!opts)
262 return -ENOMEM;
263
264 while ((p = strsep(&opts, ",")) != NULL) {
265 int token;
266 if (!*p)
267 continue;
268
269 token = match_token(p, tokens, args);
270 switch (token) {
271 case Opt_subvol:
272 *subvol_name = match_strdup(&args[0]);
273 break;
274 case Opt_device:
275 error = btrfs_scan_one_device(match_strdup(&args[0]),
276 flags, holder, fs_devices);
277 if (error)
278 goto out_free_opts;
279 break;
280 default:
281 break;
282 }
283 }
284
285 out_free_opts:
286 kfree(opts);
287 out:
288 /*
289 * If no subvolume name is specified we use the default one. Allocate
290 * a copy of the string "." here so that code later in the
291 * mount path doesn't care if it's the default volume or another one.
292 */
293 if (!*subvol_name) {
294 *subvol_name = kstrdup(".", GFP_KERNEL);
295 if (!*subvol_name)
296 return -ENOMEM;
297 }
298 return error;
299}
300
301static int btrfs_fill_super(struct super_block * sb,
302 struct btrfs_fs_devices *fs_devices,
303 void * data, int silent)
304{
305 struct inode * inode;
306 struct dentry * root_dentry;
307 struct btrfs_super_block *disk_super;
308 struct btrfs_root *tree_root;
309 struct btrfs_inode *bi;
310 int err;
311
312 sb->s_maxbytes = MAX_LFS_FILESIZE;
313 sb->s_magic = BTRFS_SUPER_MAGIC;
314 sb->s_op = &btrfs_super_ops;
315 sb->s_export_op = &btrfs_export_ops;
316 sb->s_xattr = btrfs_xattr_handlers;
317 sb->s_time_gran = 1;
318 sb->s_flags |= MS_POSIXACL;
319
320 tree_root = open_ctree(sb, fs_devices, (char *)data);
321
322 if (IS_ERR(tree_root)) {
323 printk("btrfs: open_ctree failed\n");
324 return PTR_ERR(tree_root);
325 }
326 sb->s_fs_info = tree_root;
327 disk_super = &tree_root->fs_info->super_copy;
328 inode = btrfs_iget_locked(sb, BTRFS_FIRST_FREE_OBJECTID,
329 tree_root->fs_info->fs_root);
330 bi = BTRFS_I(inode);
331 bi->location.objectid = inode->i_ino;
332 bi->location.offset = 0;
333 bi->root = tree_root->fs_info->fs_root;
334
335 btrfs_set_key_type(&bi->location, BTRFS_INODE_ITEM_KEY);
336
337 if (!inode) {
338 err = -ENOMEM;
339 goto fail_close;
340 }
341 if (inode->i_state & I_NEW) {
342 btrfs_read_locked_inode(inode);
343 unlock_new_inode(inode);
344 }
345
346 root_dentry = d_alloc_root(inode);
347 if (!root_dentry) {
348 iput(inode);
349 err = -ENOMEM;
350 goto fail_close;
351 }
352
353 /* this does the super kobj at the same time */
354 err = btrfs_sysfs_add_super(tree_root->fs_info);
355 if (err)
356 goto fail_close;
357
358 sb->s_root = root_dentry;
359
360 save_mount_options(sb, data);
361 return 0;
362
363fail_close:
364 close_ctree(tree_root);
365 return err;
366}
367
368int btrfs_sync_fs(struct super_block *sb, int wait)
369{
370 struct btrfs_trans_handle *trans;
371 struct btrfs_root *root;
372 int ret;
373 root = btrfs_sb(sb);
374
375 if (sb->s_flags & MS_RDONLY)
376 return 0;
377
378 sb->s_dirt = 0;
379 if (!wait) {
380 filemap_flush(root->fs_info->btree_inode->i_mapping);
381 return 0;
382 }
383
384 btrfs_start_delalloc_inodes(root);
385 btrfs_wait_ordered_extents(root, 0);
386
387 btrfs_clean_old_snapshots(root);
388 trans = btrfs_start_transaction(root, 1);
389 ret = btrfs_commit_transaction(trans, root);
390 sb->s_dirt = 0;
391 return ret;
392}
393
394static void btrfs_write_super(struct super_block *sb)
395{
396 sb->s_dirt = 0;
397}
398
399static int btrfs_test_super(struct super_block *s, void *data)
400{
401 struct btrfs_fs_devices *test_fs_devices = data;
402 struct btrfs_root *root = btrfs_sb(s);
403
404 return root->fs_info->fs_devices == test_fs_devices;
405}
406
407/*
408 * Find a superblock for the given device / mount point.
409 *
410 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
411 * for multiple device setup. Make sure to keep it in sync.
412 */
413static int btrfs_get_sb(struct file_system_type *fs_type, int flags,
414 const char *dev_name, void *data, struct vfsmount *mnt)
415{
416 char *subvol_name = NULL;
417 struct block_device *bdev = NULL;
418 struct super_block *s;
419 struct dentry *root;
420 struct btrfs_fs_devices *fs_devices = NULL;
421 int error = 0;
422
423 error = btrfs_parse_early_options(data, flags, fs_type,
424 &subvol_name, &fs_devices);
425 if (error)
426 goto error;
427
428 error = btrfs_scan_one_device(dev_name, flags, fs_type, &fs_devices);
429 if (error)
430 goto error_free_subvol_name;
431
432 error = btrfs_open_devices(fs_devices, flags, fs_type);
433 if (error)
434 goto error_free_subvol_name;
435
436 if (!(flags & MS_RDONLY) && fs_devices->rw_devices == 0) {
437 error = -EACCES;
438 goto error_close_devices;
439 }
440
441 bdev = fs_devices->latest_bdev;
442 s = sget(fs_type, btrfs_test_super, set_anon_super, fs_devices);
443 if (IS_ERR(s))
444 goto error_s;
445
446 if (s->s_root) {
447 if ((flags ^ s->s_flags) & MS_RDONLY) {
448 up_write(&s->s_umount);
449 deactivate_super(s);
450 error = -EBUSY;
451 goto error_close_devices;
452 }
453
454 btrfs_close_devices(fs_devices);
455 } else {
456 char b[BDEVNAME_SIZE];
457
458 s->s_flags = flags;
459 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
460 error = btrfs_fill_super(s, fs_devices, data,
461 flags & MS_SILENT ? 1 : 0);
462 if (error) {
463 up_write(&s->s_umount);
464 deactivate_super(s);
465 goto error;
466 }
467
468 btrfs_sb(s)->fs_info->bdev_holder = fs_type;
469 s->s_flags |= MS_ACTIVE;
470 }
471
472 if (!strcmp(subvol_name, "."))
473 root = dget(s->s_root);
474 else {
475 mutex_lock(&s->s_root->d_inode->i_mutex);
476 root = lookup_one_len(subvol_name, s->s_root, strlen(subvol_name));
477 mutex_unlock(&s->s_root->d_inode->i_mutex);
478 if (IS_ERR(root)) {
479 up_write(&s->s_umount);
480 deactivate_super(s);
481 error = PTR_ERR(root);
482 goto error;
483 }
484 if (!root->d_inode) {
485 dput(root);
486 up_write(&s->s_umount);
487 deactivate_super(s);
488 error = -ENXIO;
489 goto error;
490 }
491 }
492
493 mnt->mnt_sb = s;
494 mnt->mnt_root = root;
495
496 kfree(subvol_name);
497 return 0;
498
499error_s:
500 error = PTR_ERR(s);
501error_close_devices:
502 btrfs_close_devices(fs_devices);
503error_free_subvol_name:
504 kfree(subvol_name);
505error:
506 return error;
507}
508
509static int btrfs_remount(struct super_block *sb, int *flags, char *data)
510{
511 struct btrfs_root *root = btrfs_sb(sb);
512 int ret;
513
514 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
515 return 0;
516
517 if (*flags & MS_RDONLY) {
518 sb->s_flags |= MS_RDONLY;
519
520 ret = btrfs_commit_super(root);
521 WARN_ON(ret);
522 } else {
523 if (root->fs_info->fs_devices->rw_devices == 0)
524 return -EACCES;
525
526 if (btrfs_super_log_root(&root->fs_info->super_copy) != 0)
527 return -EINVAL;
528
529 ret = btrfs_cleanup_reloc_trees(root);
530 WARN_ON(ret);
531
532 ret = btrfs_cleanup_fs_roots(root->fs_info);
533 WARN_ON(ret);
534
535 sb->s_flags &= ~MS_RDONLY;
536 }
537
538 return 0;
539}
540
541static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
542{
543 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
544 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
545 int bits = dentry->d_sb->s_blocksize_bits;
546 __be32 *fsid = (__be32 *)root->fs_info->fsid;
547
548 buf->f_namelen = BTRFS_NAME_LEN;
549 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
550 buf->f_bfree = buf->f_blocks -
551 (btrfs_super_bytes_used(disk_super) >> bits);
552 buf->f_bavail = buf->f_bfree;
553 buf->f_bsize = dentry->d_sb->s_blocksize;
554 buf->f_type = BTRFS_SUPER_MAGIC;
555 /* We treat it as constant endianness (it doesn't matter _which_)
556 because we want the fsid to come out the same whether mounted
557 on a big-endian or little-endian host */
558 buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]);
559 buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]);
560 /* Mask in the root object ID too, to disambiguate subvols */
561 buf->f_fsid.val[0] ^= BTRFS_I(dentry->d_inode)->root->objectid >> 32;
562 buf->f_fsid.val[1] ^= BTRFS_I(dentry->d_inode)->root->objectid;
563
564 return 0;
565}
566
567static struct file_system_type btrfs_fs_type = {
568 .owner = THIS_MODULE,
569 .name = "btrfs",
570 .get_sb = btrfs_get_sb,
571 .kill_sb = kill_anon_super,
572 .fs_flags = FS_REQUIRES_DEV,
573};
574
575/*
576 * used by btrfsctl to scan devices when no FS is mounted
577 */
578static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
579 unsigned long arg)
580{
581 struct btrfs_ioctl_vol_args *vol;
582 struct btrfs_fs_devices *fs_devices;
583 int ret = 0;
584 int len;
585
586 vol = kmalloc(sizeof(*vol), GFP_KERNEL);
587 if (copy_from_user(vol, (void __user *)arg, sizeof(*vol))) {
588 ret = -EFAULT;
589 goto out;
590 }
591 len = strnlen(vol->name, BTRFS_PATH_NAME_MAX);
592 switch (cmd) {
593 case BTRFS_IOC_SCAN_DEV:
594 ret = btrfs_scan_one_device(vol->name, MS_RDONLY,
595 &btrfs_fs_type, &fs_devices);
596 break;
597 }
598out:
599 kfree(vol);
600 return ret;
601}
602
603static void btrfs_write_super_lockfs(struct super_block *sb)
604{
605 struct btrfs_root *root = btrfs_sb(sb);
606 mutex_lock(&root->fs_info->transaction_kthread_mutex);
607 mutex_lock(&root->fs_info->cleaner_mutex);
608}
609
610static void btrfs_unlockfs(struct super_block *sb)
611{
612 struct btrfs_root *root = btrfs_sb(sb);
613 mutex_unlock(&root->fs_info->cleaner_mutex);
614 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
615}
616
617static struct super_operations btrfs_super_ops = {
618 .delete_inode = btrfs_delete_inode,
619 .put_super = btrfs_put_super,
620 .write_super = btrfs_write_super,
621 .sync_fs = btrfs_sync_fs,
622 .show_options = generic_show_options,
623 .write_inode = btrfs_write_inode,
624 .dirty_inode = btrfs_dirty_inode,
625 .alloc_inode = btrfs_alloc_inode,
626 .destroy_inode = btrfs_destroy_inode,
627 .statfs = btrfs_statfs,
628 .remount_fs = btrfs_remount,
629 .write_super_lockfs = btrfs_write_super_lockfs,
630 .unlockfs = btrfs_unlockfs,
631};
632
633static const struct file_operations btrfs_ctl_fops = {
634 .unlocked_ioctl = btrfs_control_ioctl,
635 .compat_ioctl = btrfs_control_ioctl,
636 .owner = THIS_MODULE,
637};
638
639static struct miscdevice btrfs_misc = {
640 .minor = MISC_DYNAMIC_MINOR,
641 .name = "btrfs-control",
642 .fops = &btrfs_ctl_fops
643};
644
645static int btrfs_interface_init(void)
646{
647 return misc_register(&btrfs_misc);
648}
649
650void btrfs_interface_exit(void)
651{
652 if (misc_deregister(&btrfs_misc) < 0)
653 printk("misc_deregister failed for control device");
654}
655
656static int __init init_btrfs_fs(void)
657{
658 int err;
659
660 err = btrfs_init_sysfs();
661 if (err)
662 return err;
663
664 err = btrfs_init_cachep();
665 if (err)
666 goto free_sysfs;
667
668 err = extent_io_init();
669 if (err)
670 goto free_cachep;
671
672 err = extent_map_init();
673 if (err)
674 goto free_extent_io;
675
676 err = btrfs_interface_init();
677 if (err)
678 goto free_extent_map;
679
680 err = register_filesystem(&btrfs_fs_type);
681 if (err)
682 goto unregister_ioctl;
683
684 printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION);
685 return 0;
686
687unregister_ioctl:
688 btrfs_interface_exit();
689free_extent_map:
690 extent_map_exit();
691free_extent_io:
692 extent_io_exit();
693free_cachep:
694 btrfs_destroy_cachep();
695free_sysfs:
696 btrfs_exit_sysfs();
697 return err;
698}
699
700static void __exit exit_btrfs_fs(void)
701{
702 btrfs_destroy_cachep();
703 extent_map_exit();
704 extent_io_exit();
705 btrfs_interface_exit();
706 unregister_filesystem(&btrfs_fs_type);
707 btrfs_exit_sysfs();
708 btrfs_cleanup_fs_uuids();
709 btrfs_zlib_exit();
710}
711
712module_init(init_btrfs_fs)
713module_exit(exit_btrfs_fs)
714
715MODULE_LICENSE("GPL");