blob: 2116728d1f98223345d8ca0018d1940821b39806 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
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
Yan4b82d6e2007-08-29 09:11:44 -040019#include <linux/blkdev.h>
Chris Mason2e635a22007-03-21 11:12:56 -040020#include <linux/module.h>
Chris Masone20d96d2007-03-22 12:13:20 -040021#include <linux/buffer_head.h>
Chris Mason2e635a22007-03-21 11:12:56 -040022#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>
Yan4b82d6e2007-08-29 09:11:44 -040030#include <linux/mount.h>
Chris Masondee26a92007-03-26 16:00:06 -040031#include <linux/mpage.h>
Chris Mason75dfe392007-03-29 11:56:46 -040032#include <linux/swap.h>
33#include <linux/writeback.h>
Chris Mason8fd17792007-04-19 21:01:03 -040034#include <linux/statfs.h>
Chris Mason08607c12007-06-08 15:33:54 -040035#include <linux/compat.h>
Chris Mason95e05282007-08-29 09:11:44 -040036#include <linux/parser.h>
Chris Mason2e635a22007-03-21 11:12:56 -040037#include "ctree.h"
Chris Masone20d96d2007-03-22 12:13:20 -040038#include "disk-io.h"
Chris Masond5719762007-03-23 10:01:08 -040039#include "transaction.h"
Chris Mason2c90e5d2007-04-02 10:50:19 -040040#include "btrfs_inode.h"
Chris Masonc5739bb2007-04-10 09:27:04 -040041#include "ioctl.h"
Chris Mason3a686372007-05-24 13:35:57 -040042#include "print-tree.h"
Josef Bacik5103e942007-11-16 11:45:54 -050043#include "xattr.h"
Chris Mason2e635a22007-03-21 11:12:56 -040044
Chris Mason5f39d392007-10-15 16:14:19 -040045#define BTRFS_SUPER_MAGIC 0x9123683E
Chris Masone20d96d2007-03-22 12:13:20 -040046
Chris Masone20d96d2007-03-22 12:13:20 -040047static struct super_operations btrfs_super_ops;
Chris Masone20d96d2007-03-22 12:13:20 -040048
49static void btrfs_put_super (struct super_block * sb)
50{
51 struct btrfs_root *root = btrfs_sb(sb);
Josef Bacik58176a92007-08-29 15:47:34 -040052 struct btrfs_fs_info *fs = root->fs_info;
Chris Masone20d96d2007-03-22 12:13:20 -040053 int ret;
54
55 ret = close_ctree(root);
56 if (ret) {
57 printk("close ctree returns %d\n", ret);
58 }
Josef Bacik58176a92007-08-29 15:47:34 -040059 btrfs_sysfs_del_super(fs);
Chris Masone20d96d2007-03-22 12:13:20 -040060 sb->s_fs_info = NULL;
61}
Chris Mason2e635a22007-03-21 11:12:56 -040062
Chris Mason95e05282007-08-29 09:11:44 -040063enum {
Chris Masonbe20aa92007-12-17 20:14:01 -050064 Opt_subvol, Opt_nodatasum, Opt_nodatacow, Opt_err,
Chris Mason95e05282007-08-29 09:11:44 -040065};
66
67static match_table_t tokens = {
68 {Opt_subvol, "subvol=%s"},
Chris Masonb6cda9b2007-12-14 15:30:32 -050069 {Opt_nodatasum, "nodatasum"},
Chris Masonbe20aa92007-12-17 20:14:01 -050070 {Opt_nodatacow, "nodatacow"},
Chris Mason95e05282007-08-29 09:11:44 -040071 {Opt_err, NULL}
72};
73
74static int parse_options (char * options,
75 struct btrfs_root *root,
76 char **subvol_name)
77{
78 char * p;
Chris Masonb6cda9b2007-12-14 15:30:32 -050079 struct btrfs_fs_info *info = NULL;
Chris Mason95e05282007-08-29 09:11:44 -040080 substring_t args[MAX_OPT_ARGS];
Chris Masonb6cda9b2007-12-14 15:30:32 -050081
Chris Mason95e05282007-08-29 09:11:44 -040082 if (!options)
83 return 1;
84
Chris Masonbe20aa92007-12-17 20:14:01 -050085 /*
86 * strsep changes the string, duplicate it because parse_options
87 * gets called twice
88 */
89 options = kstrdup(options, GFP_NOFS);
90 if (!options)
91 return -ENOMEM;
92
93 if (root)
94 info = root->fs_info;
95
Chris Mason95e05282007-08-29 09:11:44 -040096 while ((p = strsep (&options, ",")) != NULL) {
97 int token;
98 if (!*p)
99 continue;
100
101 token = match_token(p, tokens, args);
102 switch (token) {
103 case Opt_subvol:
Chris Masonbe20aa92007-12-17 20:14:01 -0500104 if (subvol_name) {
Chris Masonb6cda9b2007-12-14 15:30:32 -0500105 *subvol_name = match_strdup(&args[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -0500106 }
Chris Masonb6cda9b2007-12-14 15:30:32 -0500107 break;
108 case Opt_nodatasum:
Chris Masonbe20aa92007-12-17 20:14:01 -0500109 if (info) {
110 printk("btrfs: setting nodatacsum\n");
Chris Masonb6cda9b2007-12-14 15:30:32 -0500111 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Masonbe20aa92007-12-17 20:14:01 -0500112 }
113 break;
114 case Opt_nodatacow:
115 if (info) {
116 printk("btrfs: setting nodatacow\n");
117 btrfs_set_opt(info->mount_opt, NODATACOW);
118 btrfs_set_opt(info->mount_opt, NODATASUM);
119 }
Chris Mason95e05282007-08-29 09:11:44 -0400120 break;
121 default:
Chris Masonbe20aa92007-12-17 20:14:01 -0500122 break;
Chris Mason95e05282007-08-29 09:11:44 -0400123 }
124 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500125 kfree(options);
Chris Mason95e05282007-08-29 09:11:44 -0400126 return 1;
127}
128
Chris Mason2e635a22007-03-21 11:12:56 -0400129static int btrfs_fill_super(struct super_block * sb, void * data, int silent)
130{
131 struct inode * inode;
Chris Masone20d96d2007-03-22 12:13:20 -0400132 struct dentry * root_dentry;
133 struct btrfs_super_block *disk_super;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400134 struct btrfs_root *tree_root;
Chris Masond6e4a422007-04-06 15:37:36 -0400135 struct btrfs_inode *bi;
Chris Mason39279cc2007-06-12 06:35:45 -0400136 int err;
Chris Mason2e635a22007-03-21 11:12:56 -0400137
138 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -0400139 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -0400140 sb->s_op = &btrfs_super_ops;
Josef Bacik5103e942007-11-16 11:45:54 -0500141 sb->s_xattr = btrfs_xattr_handlers;
Chris Mason2e635a22007-03-21 11:12:56 -0400142 sb->s_time_gran = 1;
Chris Masone20d96d2007-03-22 12:13:20 -0400143
Chris Mason0f7d52f2007-04-09 10:42:37 -0400144 tree_root = open_ctree(sb);
Chris Masond98237b2007-03-28 13:57:48 -0400145
Chris Mason39279cc2007-06-12 06:35:45 -0400146 if (!tree_root || IS_ERR(tree_root)) {
Chris Masone20d96d2007-03-22 12:13:20 -0400147 printk("btrfs: open_ctree failed\n");
148 return -EIO;
149 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400150 sb->s_fs_info = tree_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400151 disk_super = &tree_root->fs_info->super_copy;
Chris Masonc5739bb2007-04-10 09:27:04 -0400152 inode = btrfs_iget_locked(sb, btrfs_super_root_dir(disk_super),
153 tree_root);
Chris Masond6e4a422007-04-06 15:37:36 -0400154 bi = BTRFS_I(inode);
155 bi->location.objectid = inode->i_ino;
156 bi->location.offset = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400157 bi->root = tree_root;
Chris Masonb888db22007-08-27 16:49:44 -0400158
Chris Masond6e4a422007-04-06 15:37:36 -0400159 btrfs_set_key_type(&bi->location, BTRFS_INODE_ITEM_KEY);
160
Chris Mason39279cc2007-06-12 06:35:45 -0400161 if (!inode) {
162 err = -ENOMEM;
163 goto fail_close;
164 }
Chris Masone20d96d2007-03-22 12:13:20 -0400165 if (inode->i_state & I_NEW) {
166 btrfs_read_locked_inode(inode);
167 unlock_new_inode(inode);
168 }
Chris Mason2e635a22007-03-21 11:12:56 -0400169
Chris Masone20d96d2007-03-22 12:13:20 -0400170 root_dentry = d_alloc_root(inode);
171 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -0400172 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400173 err = -ENOMEM;
174 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400175 }
Josef Bacik58176a92007-08-29 15:47:34 -0400176
Chris Masonb6cda9b2007-12-14 15:30:32 -0500177 parse_options((char *)data, tree_root, NULL);
178
Josef Bacik58176a92007-08-29 15:47:34 -0400179 /* this does the super kobj at the same time */
180 err = btrfs_sysfs_add_super(tree_root->fs_info);
181 if (err)
182 goto fail_close;
183
Chris Masone20d96d2007-03-22 12:13:20 -0400184 sb->s_root = root_dentry;
Chris Mason08607c12007-06-08 15:33:54 -0400185 btrfs_transaction_queue_work(tree_root, HZ * 30);
Chris Mason2e635a22007-03-21 11:12:56 -0400186 return 0;
Chris Mason2e635a22007-03-21 11:12:56 -0400187
Chris Mason39279cc2007-06-12 06:35:45 -0400188fail_close:
189 close_ctree(tree_root);
Chris Masond5719762007-03-23 10:01:08 -0400190 return err;
191}
192
Chris Masond5719762007-03-23 10:01:08 -0400193static int btrfs_sync_fs(struct super_block *sb, int wait)
194{
195 struct btrfs_trans_handle *trans;
196 struct btrfs_root *root;
197 int ret;
Chris Masond98237b2007-03-28 13:57:48 -0400198 root = btrfs_sb(sb);
Chris Masondf2ce342007-03-23 11:00:45 -0400199
Chris Masond5719762007-03-23 10:01:08 -0400200 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400201 if (!wait) {
Chris Mason7cfcc172007-04-02 14:53:59 -0400202 filemap_flush(root->fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400203 return 0;
204 }
Chris Masone9d0b132007-08-10 14:06:19 -0400205 btrfs_clean_old_snapshots(root);
Chris Masond561c022007-03-23 19:47:49 -0400206 mutex_lock(&root->fs_info->fs_mutex);
Chris Masone9d0b132007-08-10 14:06:19 -0400207 btrfs_defrag_dirty_roots(root->fs_info);
Chris Masond5719762007-03-23 10:01:08 -0400208 trans = btrfs_start_transaction(root, 1);
209 ret = btrfs_commit_transaction(trans, root);
210 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400211 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason54aa1f42007-06-22 14:16:25 -0400212 return ret;
Chris Masond5719762007-03-23 10:01:08 -0400213}
214
Chris Masond561c022007-03-23 19:47:49 -0400215static void btrfs_write_super(struct super_block *sb)
216{
Chris Mason08607c12007-06-08 15:33:54 -0400217 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400218}
219
Yan4b82d6e2007-08-29 09:11:44 -0400220/*
221 * This is almost a copy of get_sb_bdev in fs/super.c.
222 * We need the local copy to allow direct mounting of
223 * subvolumes, but this could be easily integrated back
224 * into the generic version. --hch
225 */
226
227/* start copy & paste */
228static int set_bdev_super(struct super_block *s, void *data)
Chris Mason2e635a22007-03-21 11:12:56 -0400229{
Yan4b82d6e2007-08-29 09:11:44 -0400230 s->s_bdev = data;
231 s->s_dev = s->s_bdev->bd_dev;
232 return 0;
233}
234
235static int test_bdev_super(struct super_block *s, void *data)
236{
237 return (void *)s->s_bdev == data;
238}
239
240int btrfs_get_sb_bdev(struct file_system_type *fs_type,
241 int flags, const char *dev_name, void *data,
242 int (*fill_super)(struct super_block *, void *, int),
243 struct vfsmount *mnt, const char *subvol)
244{
245 struct block_device *bdev = NULL;
246 struct super_block *s;
247 struct dentry *root;
248 int error = 0;
249
250 bdev = open_bdev_excl(dev_name, flags, fs_type);
251 if (IS_ERR(bdev))
252 return PTR_ERR(bdev);
253
254 /*
255 * once the super is inserted into the list by sget, s_umount
256 * will protect the lockfs code from trying to start a snapshot
257 * while we are mounting
258 */
259 down(&bdev->bd_mount_sem);
260 s = sget(fs_type, test_bdev_super, set_bdev_super, bdev);
261 up(&bdev->bd_mount_sem);
262 if (IS_ERR(s))
263 goto error_s;
264
265 if (s->s_root) {
266 if ((flags ^ s->s_flags) & MS_RDONLY) {
267 up_write(&s->s_umount);
268 deactivate_super(s);
269 error = -EBUSY;
270 goto error_bdev;
271 }
272
273 close_bdev_excl(bdev);
274 } else {
275 char b[BDEVNAME_SIZE];
276
277 s->s_flags = flags;
278 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
279 sb_set_blocksize(s, block_size(bdev));
280 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
281 if (error) {
282 up_write(&s->s_umount);
283 deactivate_super(s);
284 goto error;
285 }
286
287 s->s_flags |= MS_ACTIVE;
288 }
289
290 if (subvol) {
291 root = lookup_one_len(subvol, s->s_root, strlen(subvol));
292 if (IS_ERR(root)) {
293 up_write(&s->s_umount);
294 deactivate_super(s);
295 error = PTR_ERR(root);
296 goto error;
297 }
298 if (!root->d_inode) {
299 dput(root);
300 up_write(&s->s_umount);
301 deactivate_super(s);
302 error = -ENXIO;
303 goto error;
304 }
305 } else {
306 root = dget(s->s_root);
307 }
308
309 mnt->mnt_sb = s;
310 mnt->mnt_root = root;
311 return 0;
312
313error_s:
314 error = PTR_ERR(s);
315error_bdev:
316 close_bdev_excl(bdev);
317error:
318 return error;
319}
320/* end copy & paste */
321
322static int btrfs_get_sb(struct file_system_type *fs_type,
Chris Mason95e05282007-08-29 09:11:44 -0400323 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Yan4b82d6e2007-08-29 09:11:44 -0400324{
325 int ret;
Chris Mason95e05282007-08-29 09:11:44 -0400326 char *subvol_name = NULL;
Yan4b82d6e2007-08-29 09:11:44 -0400327
Chris Mason95e05282007-08-29 09:11:44 -0400328 parse_options((char *)data, NULL, &subvol_name);
Yan4b82d6e2007-08-29 09:11:44 -0400329 ret = btrfs_get_sb_bdev(fs_type, flags, dev_name, data,
330 btrfs_fill_super, mnt,
331 subvol_name ? subvol_name : "default");
Yan4b82d6e2007-08-29 09:11:44 -0400332 return ret;
Chris Mason2e635a22007-03-21 11:12:56 -0400333}
334
Chris Mason8fd17792007-04-19 21:01:03 -0400335static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
336{
337 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
Chris Mason4b52dff2007-06-26 10:06:50 -0400338 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
Chris Masondb945352007-10-15 16:15:53 -0400339 int bits = dentry->d_sb->s_blocksize_bits;
Chris Mason8fd17792007-04-19 21:01:03 -0400340
341 buf->f_namelen = BTRFS_NAME_LEN;
Chris Masondb945352007-10-15 16:15:53 -0400342 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
343 buf->f_bfree = buf->f_blocks -
344 (btrfs_super_bytes_used(disk_super) >> bits);
Chris Mason8fd17792007-04-19 21:01:03 -0400345 buf->f_bavail = buf->f_bfree;
346 buf->f_bsize = dentry->d_sb->s_blocksize;
347 buf->f_type = BTRFS_SUPER_MAGIC;
348 return 0;
349}
Chris Masonb5133862007-04-24 11:52:22 -0400350
Chris Mason2e635a22007-03-21 11:12:56 -0400351static struct file_system_type btrfs_fs_type = {
352 .owner = THIS_MODULE,
353 .name = "btrfs",
354 .get_sb = btrfs_get_sb,
355 .kill_sb = kill_block_super,
356 .fs_flags = FS_REQUIRES_DEV,
357};
358
Chris Masone20d96d2007-03-22 12:13:20 -0400359static struct super_operations btrfs_super_ops = {
Chris Mason134e9732007-03-25 13:44:56 -0400360 .delete_inode = btrfs_delete_inode,
Chris Masone20d96d2007-03-22 12:13:20 -0400361 .put_super = btrfs_put_super,
362 .read_inode = btrfs_read_locked_inode,
Chris Masond5719762007-03-23 10:01:08 -0400363 .write_super = btrfs_write_super,
364 .sync_fs = btrfs_sync_fs,
Chris Mason4730a4b2007-03-26 12:00:39 -0400365 .write_inode = btrfs_write_inode,
Chris Masonb5133862007-04-24 11:52:22 -0400366 .dirty_inode = btrfs_dirty_inode,
Chris Mason2c90e5d2007-04-02 10:50:19 -0400367 .alloc_inode = btrfs_alloc_inode,
368 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -0400369 .statfs = btrfs_statfs,
Chris Masone20d96d2007-03-22 12:13:20 -0400370};
371
Chris Mason2e635a22007-03-21 11:12:56 -0400372static int __init init_btrfs_fs(void)
373{
Chris Mason2c90e5d2007-04-02 10:50:19 -0400374 int err;
Josef Bacik58176a92007-08-29 15:47:34 -0400375
376 err = btrfs_init_sysfs();
377 if (err)
378 return err;
379
Chris Mason08607c12007-06-08 15:33:54 -0400380 btrfs_init_transaction_sys();
Chris Mason39279cc2007-06-12 06:35:45 -0400381 err = btrfs_init_cachep();
Chris Mason2c90e5d2007-04-02 10:50:19 -0400382 if (err)
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500383 goto free_transaction_sys;
384 err = extent_map_init();
385 if (err)
386 goto free_cachep;
387
388 err = register_filesystem(&btrfs_fs_type);
389 if (err)
390 goto free_extent_map;
391 return 0;
392
393free_extent_map:
394 extent_map_exit();
395free_cachep:
396 btrfs_destroy_cachep();
397free_transaction_sys:
398 btrfs_exit_transaction_sys();
399 btrfs_exit_sysfs();
400 return err;
Chris Mason2e635a22007-03-21 11:12:56 -0400401}
402
403static void __exit exit_btrfs_fs(void)
404{
Chris Mason08607c12007-06-08 15:33:54 -0400405 btrfs_exit_transaction_sys();
Chris Mason39279cc2007-06-12 06:35:45 -0400406 btrfs_destroy_cachep();
Chris Masona52d9a82007-08-27 16:49:44 -0400407 extent_map_exit();
Chris Mason2e635a22007-03-21 11:12:56 -0400408 unregister_filesystem(&btrfs_fs_type);
Josef Bacik58176a92007-08-29 15:47:34 -0400409 btrfs_exit_sysfs();
Chris Mason2e635a22007-03-21 11:12:56 -0400410}
411
412module_init(init_btrfs_fs)
413module_exit(exit_btrfs_fs)
414
415MODULE_LICENSE("GPL");