Btrfs: Add ACL support
[linux-2.6/kvm.git] / fs / btrfs / super.c
bloba6a418b6894b10ac248c821537704fb9b9092149
1 /*
2 * Copyright (C) 2007 Oracle. All rights reserved.
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.
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.
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.
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 "ctree.h"
41 #include "disk-io.h"
42 #include "transaction.h"
43 #include "btrfs_inode.h"
44 #include "ioctl.h"
45 #include "print-tree.h"
46 #include "xattr.h"
47 #include "volumes.h"
48 #include "version.h"
50 #define BTRFS_SUPER_MAGIC 0x9123683E
52 static struct super_operations btrfs_super_ops;
54 static void btrfs_put_super (struct super_block * sb)
56 struct btrfs_root *root = btrfs_sb(sb);
57 struct btrfs_fs_info *fs = root->fs_info;
58 int ret;
60 ret = close_ctree(root);
61 if (ret) {
62 printk("close ctree returns %d\n", ret);
64 btrfs_sysfs_del_super(fs);
65 sb->s_fs_info = NULL;
68 enum {
69 Opt_degraded, Opt_subvol, Opt_device, Opt_nodatasum, Opt_nodatacow,
70 Opt_max_extent, Opt_max_inline, Opt_alloc_start, Opt_nobarrier,
71 Opt_ssd, Opt_thread_pool, Opt_noacl, Opt_err,
74 static match_table_t tokens = {
75 {Opt_degraded, "degraded"},
76 {Opt_subvol, "subvol=%s"},
77 {Opt_device, "device=%s"},
78 {Opt_nodatasum, "nodatasum"},
79 {Opt_nodatacow, "nodatacow"},
80 {Opt_nobarrier, "nobarrier"},
81 {Opt_max_extent, "max_extent=%s"},
82 {Opt_max_inline, "max_inline=%s"},
83 {Opt_alloc_start, "alloc_start=%s"},
84 {Opt_thread_pool, "thread_pool=%d"},
85 {Opt_ssd, "ssd"},
86 {Opt_noacl, "noacl"},
87 {Opt_err, NULL},
90 u64 btrfs_parse_size(char *str)
92 u64 res;
93 int mult = 1;
94 char *end;
95 char last;
97 res = simple_strtoul(str, &end, 10);
99 last = end[0];
100 if (isalpha(last)) {
101 last = tolower(last);
102 switch (last) {
103 case 'g':
104 mult *= 1024;
105 case 'm':
106 mult *= 1024;
107 case 'k':
108 mult *= 1024;
110 res = res * mult;
112 return res;
116 * Regular mount options parser. Everything that is needed only when
117 * reading in a new superblock is parsed here.
119 int btrfs_parse_options(struct btrfs_root *root, char *options)
121 struct btrfs_fs_info *info = root->fs_info;
122 substring_t args[MAX_OPT_ARGS];
123 char *p, *num;
124 int intarg;
126 if (!options)
127 return 0;
130 * strsep changes the string, duplicate it because parse_options
131 * gets called twice
133 options = kstrdup(options, GFP_NOFS);
134 if (!options)
135 return -ENOMEM;
138 while ((p = strsep(&options, ",")) != NULL) {
139 int token;
140 if (!*p)
141 continue;
143 token = match_token(p, tokens, args);
144 switch (token) {
145 case Opt_degraded:
146 printk(KERN_INFO "btrfs: allowing degraded mounts\n");
147 btrfs_set_opt(info->mount_opt, DEGRADED);
148 break;
149 case Opt_subvol:
150 case Opt_device:
152 * These are parsed by btrfs_parse_early_options
153 * and can be happily ignored here.
155 break;
156 case Opt_nodatasum:
157 printk(KERN_INFO "btrfs: setting nodatacsum\n");
158 btrfs_set_opt(info->mount_opt, NODATASUM);
159 break;
160 case Opt_nodatacow:
161 printk(KERN_INFO "btrfs: setting nodatacow\n");
162 btrfs_set_opt(info->mount_opt, NODATACOW);
163 btrfs_set_opt(info->mount_opt, NODATASUM);
164 break;
165 case Opt_ssd:
166 printk(KERN_INFO "btrfs: use ssd allocation scheme\n");
167 btrfs_set_opt(info->mount_opt, SSD);
168 break;
169 case Opt_nobarrier:
170 printk(KERN_INFO "btrfs: turning off barriers\n");
171 btrfs_set_opt(info->mount_opt, NOBARRIER);
172 break;
173 case Opt_thread_pool:
174 intarg = 0;
175 match_int(&args[0], &intarg);
176 if (intarg) {
177 info->thread_pool_size = intarg;
178 printk(KERN_INFO "btrfs: thread pool %d\n",
179 info->thread_pool_size);
181 break;
182 case Opt_max_extent:
183 num = match_strdup(&args[0]);
184 if (num) {
185 info->max_extent = btrfs_parse_size(num);
186 kfree(num);
188 info->max_extent = max_t(u64,
189 info->max_extent, root->sectorsize);
190 printk(KERN_INFO "btrfs: max_extent at %llu\n",
191 info->max_extent);
193 break;
194 case Opt_max_inline:
195 num = match_strdup(&args[0]);
196 if (num) {
197 info->max_inline = btrfs_parse_size(num);
198 kfree(num);
200 if (info->max_inline) {
201 info->max_inline = max_t(u64,
202 info->max_inline,
203 root->sectorsize);
205 printk(KERN_INFO "btrfs: max_inline at %llu\n",
206 info->max_inline);
208 break;
209 case Opt_alloc_start:
210 num = match_strdup(&args[0]);
211 if (num) {
212 info->alloc_start = btrfs_parse_size(num);
213 kfree(num);
214 printk(KERN_INFO
215 "btrfs: allocations start at %llu\n",
216 info->alloc_start);
218 break;
219 case Opt_noacl:
220 root->fs_info->sb->s_flags &= ~MS_POSIXACL;
221 break;
222 default:
223 break;
226 kfree(options);
227 return 0;
231 * Parse mount options that are required early in the mount process.
233 * All other options will be parsed on much later in the mount process and
234 * only when we need to allocate a new super block.
236 static int btrfs_parse_early_options(const char *options, int flags,
237 void *holder, char **subvol_name,
238 struct btrfs_fs_devices **fs_devices)
240 substring_t args[MAX_OPT_ARGS];
241 char *opts, *p;
242 int error = 0;
244 if (!options)
245 goto out;
248 * strsep changes the string, duplicate it because parse_options
249 * gets called twice
251 opts = kstrdup(options, GFP_KERNEL);
252 if (!opts)
253 return -ENOMEM;
255 while ((p = strsep(&opts, ",")) != NULL) {
256 int token;
257 if (!*p)
258 continue;
260 token = match_token(p, tokens, args);
261 switch (token) {
262 case Opt_subvol:
263 *subvol_name = match_strdup(&args[0]);
264 break;
265 case Opt_device:
266 error = btrfs_scan_one_device(match_strdup(&args[0]),
267 flags, holder, fs_devices);
268 if (error)
269 goto out_free_opts;
270 break;
271 default:
272 break;
276 out_free_opts:
277 kfree(opts);
278 out:
280 * If no subvolume name is specified we use the default one. Allocate
281 * a copy of the string "default" here so that code later in the
282 * mount path doesn't care if it's the default volume or another one.
284 if (!*subvol_name) {
285 *subvol_name = kstrdup("default", GFP_KERNEL);
286 if (!*subvol_name)
287 return -ENOMEM;
289 return error;
292 static int btrfs_fill_super(struct super_block * sb,
293 struct btrfs_fs_devices *fs_devices,
294 void * data, int silent)
296 struct inode * inode;
297 struct dentry * root_dentry;
298 struct btrfs_super_block *disk_super;
299 struct btrfs_root *tree_root;
300 struct btrfs_inode *bi;
301 int err;
303 sb->s_maxbytes = MAX_LFS_FILESIZE;
304 sb->s_magic = BTRFS_SUPER_MAGIC;
305 sb->s_op = &btrfs_super_ops;
306 sb->s_xattr = btrfs_xattr_handlers;
307 sb->s_time_gran = 1;
308 sb->s_flags |= MS_POSIXACL;
310 tree_root = open_ctree(sb, fs_devices, (char *)data);
312 if (IS_ERR(tree_root)) {
313 printk("btrfs: open_ctree failed\n");
314 return PTR_ERR(tree_root);
316 sb->s_fs_info = tree_root;
317 disk_super = &tree_root->fs_info->super_copy;
318 inode = btrfs_iget_locked(sb, btrfs_super_root_dir(disk_super),
319 tree_root);
320 bi = BTRFS_I(inode);
321 bi->location.objectid = inode->i_ino;
322 bi->location.offset = 0;
323 bi->root = tree_root;
325 btrfs_set_key_type(&bi->location, BTRFS_INODE_ITEM_KEY);
327 if (!inode) {
328 err = -ENOMEM;
329 goto fail_close;
331 if (inode->i_state & I_NEW) {
332 btrfs_read_locked_inode(inode);
333 unlock_new_inode(inode);
336 root_dentry = d_alloc_root(inode);
337 if (!root_dentry) {
338 iput(inode);
339 err = -ENOMEM;
340 goto fail_close;
343 /* this does the super kobj at the same time */
344 err = btrfs_sysfs_add_super(tree_root->fs_info);
345 if (err)
346 goto fail_close;
348 sb->s_root = root_dentry;
350 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,25)
351 save_mount_options(sb, data);
352 #endif
354 return 0;
356 fail_close:
357 close_ctree(tree_root);
358 return err;
361 int btrfs_sync_fs(struct super_block *sb, int wait)
363 struct btrfs_trans_handle *trans;
364 struct btrfs_root *root;
365 int ret;
366 root = btrfs_sb(sb);
368 sb->s_dirt = 0;
369 if (!wait) {
370 filemap_flush(root->fs_info->btree_inode->i_mapping);
371 return 0;
373 btrfs_clean_old_snapshots(root);
374 trans = btrfs_start_transaction(root, 1);
375 ret = btrfs_commit_transaction(trans, root);
376 sb->s_dirt = 0;
377 return ret;
380 static void btrfs_write_super(struct super_block *sb)
382 sb->s_dirt = 0;
385 static int btrfs_test_super(struct super_block *s, void *data)
387 struct btrfs_fs_devices *test_fs_devices = data;
388 struct btrfs_root *root = btrfs_sb(s);
390 return root->fs_info->fs_devices == test_fs_devices;
394 * Find a superblock for the given device / mount point.
396 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
397 * for multiple device setup. Make sure to keep it in sync.
399 static int btrfs_get_sb(struct file_system_type *fs_type, int flags,
400 const char *dev_name, void *data, struct vfsmount *mnt)
402 char *subvol_name = NULL;
403 struct block_device *bdev = NULL;
404 struct super_block *s;
405 struct dentry *root;
406 struct btrfs_fs_devices *fs_devices = NULL;
407 int error = 0;
409 error = btrfs_parse_early_options(data, flags, fs_type,
410 &subvol_name, &fs_devices);
411 if (error)
412 goto error;
414 error = btrfs_scan_one_device(dev_name, flags, fs_type, &fs_devices);
415 if (error)
416 goto error_free_subvol_name;
418 error = btrfs_open_devices(fs_devices, flags, fs_type);
419 if (error)
420 goto error_free_subvol_name;
422 bdev = fs_devices->latest_bdev;
423 s = sget(fs_type, btrfs_test_super, set_anon_super, fs_devices);
424 if (IS_ERR(s))
425 goto error_s;
427 if (s->s_root) {
428 if ((flags ^ s->s_flags) & MS_RDONLY) {
429 up_write(&s->s_umount);
430 deactivate_super(s);
431 error = -EBUSY;
432 goto error_bdev;
435 } else {
436 char b[BDEVNAME_SIZE];
438 s->s_flags = flags;
439 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
440 error = btrfs_fill_super(s, fs_devices, data,
441 flags & MS_SILENT ? 1 : 0);
442 if (error) {
443 up_write(&s->s_umount);
444 deactivate_super(s);
445 goto error;
448 btrfs_sb(s)->fs_info->bdev_holder = fs_type;
449 s->s_flags |= MS_ACTIVE;
452 root = lookup_one_len(subvol_name, s->s_root, strlen(subvol_name));
453 if (IS_ERR(root)) {
454 up_write(&s->s_umount);
455 deactivate_super(s);
456 error = PTR_ERR(root);
457 goto error;
459 if (!root->d_inode) {
460 dput(root);
461 up_write(&s->s_umount);
462 deactivate_super(s);
463 error = -ENXIO;
464 goto error;
467 mnt->mnt_sb = s;
468 mnt->mnt_root = root;
470 kfree(subvol_name);
471 return 0;
473 error_s:
474 error = PTR_ERR(s);
475 error_bdev:
476 btrfs_close_devices(fs_devices);
477 error_free_subvol_name:
478 kfree(subvol_name);
479 error:
480 return error;
483 static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
485 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
486 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
487 int bits = dentry->d_sb->s_blocksize_bits;
489 buf->f_namelen = BTRFS_NAME_LEN;
490 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
491 buf->f_bfree = buf->f_blocks -
492 (btrfs_super_bytes_used(disk_super) >> bits);
493 buf->f_bavail = buf->f_bfree;
494 buf->f_bsize = dentry->d_sb->s_blocksize;
495 buf->f_type = BTRFS_SUPER_MAGIC;
496 return 0;
499 static struct file_system_type btrfs_fs_type = {
500 .owner = THIS_MODULE,
501 .name = "btrfs",
502 .get_sb = btrfs_get_sb,
503 .kill_sb = kill_anon_super,
504 .fs_flags = FS_REQUIRES_DEV,
507 static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
508 unsigned long arg)
510 struct btrfs_ioctl_vol_args *vol;
511 struct btrfs_fs_devices *fs_devices;
512 int ret = 0;
513 int len;
515 vol = kmalloc(sizeof(*vol), GFP_KERNEL);
516 if (copy_from_user(vol, (void __user *)arg, sizeof(*vol))) {
517 ret = -EFAULT;
518 goto out;
520 len = strnlen(vol->name, BTRFS_PATH_NAME_MAX);
521 switch (cmd) {
522 case BTRFS_IOC_SCAN_DEV:
523 ret = btrfs_scan_one_device(vol->name, MS_RDONLY,
524 &btrfs_fs_type, &fs_devices);
525 break;
527 out:
528 kfree(vol);
529 return ret;
532 static void btrfs_write_super_lockfs(struct super_block *sb)
534 struct btrfs_root *root = btrfs_sb(sb);
535 mutex_lock(&root->fs_info->transaction_kthread_mutex);
536 mutex_lock(&root->fs_info->cleaner_mutex);
539 static void btrfs_unlockfs(struct super_block *sb)
541 struct btrfs_root *root = btrfs_sb(sb);
542 mutex_unlock(&root->fs_info->cleaner_mutex);
543 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
546 static struct super_operations btrfs_super_ops = {
547 .delete_inode = btrfs_delete_inode,
548 .put_super = btrfs_put_super,
549 .write_super = btrfs_write_super,
550 .sync_fs = btrfs_sync_fs,
551 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,25)
552 .read_inode = btrfs_read_locked_inode,
553 #else
554 .show_options = generic_show_options,
555 #endif
556 .write_inode = btrfs_write_inode,
557 .dirty_inode = btrfs_dirty_inode,
558 .alloc_inode = btrfs_alloc_inode,
559 .destroy_inode = btrfs_destroy_inode,
560 .statfs = btrfs_statfs,
561 .write_super_lockfs = btrfs_write_super_lockfs,
562 .unlockfs = btrfs_unlockfs,
565 static const struct file_operations btrfs_ctl_fops = {
566 .unlocked_ioctl = btrfs_control_ioctl,
567 .compat_ioctl = btrfs_control_ioctl,
568 .owner = THIS_MODULE,
571 static struct miscdevice btrfs_misc = {
572 .minor = MISC_DYNAMIC_MINOR,
573 .name = "btrfs-control",
574 .fops = &btrfs_ctl_fops
577 static int btrfs_interface_init(void)
579 return misc_register(&btrfs_misc);
582 void btrfs_interface_exit(void)
584 if (misc_deregister(&btrfs_misc) < 0)
585 printk("misc_deregister failed for control device");
588 static int __init init_btrfs_fs(void)
590 int err;
592 err = btrfs_init_sysfs();
593 if (err)
594 return err;
596 err = btrfs_init_cachep();
597 if (err)
598 goto free_sysfs;
600 err = extent_io_init();
601 if (err)
602 goto free_cachep;
604 err = extent_map_init();
605 if (err)
606 goto free_extent_io;
608 err = btrfs_interface_init();
609 if (err)
610 goto free_extent_map;
611 err = register_filesystem(&btrfs_fs_type);
612 if (err)
613 goto unregister_ioctl;
615 printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION);
616 return 0;
618 unregister_ioctl:
619 btrfs_interface_exit();
620 free_extent_map:
621 extent_map_exit();
622 free_extent_io:
623 extent_io_exit();
624 free_cachep:
625 btrfs_destroy_cachep();
626 free_sysfs:
627 btrfs_exit_sysfs();
628 return err;
631 static void __exit exit_btrfs_fs(void)
633 btrfs_destroy_cachep();
634 extent_map_exit();
635 extent_io_exit();
636 btrfs_interface_exit();
637 unregister_filesystem(&btrfs_fs_type);
638 btrfs_exit_sysfs();
639 btrfs_cleanup_fs_uuids();
642 module_init(init_btrfs_fs)
643 module_exit(exit_btrfs_fs)
645 MODULE_LICENSE("GPL");