blob: b7323914bf5a144fc098d63764eb3db9190268f2 [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 Masonc59f8952007-12-17 20:14:04 -050037#include <linux/ctype.h>
Chris Mason2e635a22007-03-21 11:12:56 -040038#include "ctree.h"
Chris Masone20d96d2007-03-22 12:13:20 -040039#include "disk-io.h"
Chris Masond5719762007-03-23 10:01:08 -040040#include "transaction.h"
Chris Mason2c90e5d2007-04-02 10:50:19 -040041#include "btrfs_inode.h"
Chris Masonc5739bb2007-04-10 09:27:04 -040042#include "ioctl.h"
Chris Mason3a686372007-05-24 13:35:57 -040043#include "print-tree.h"
Josef Bacik5103e942007-11-16 11:45:54 -050044#include "xattr.h"
Chris Mason2e635a22007-03-21 11:12:56 -040045
Chris Mason5f39d392007-10-15 16:14:19 -040046#define BTRFS_SUPER_MAGIC 0x9123683E
Chris Masone20d96d2007-03-22 12:13:20 -040047
Chris Masone20d96d2007-03-22 12:13:20 -040048static struct super_operations btrfs_super_ops;
Chris Masone20d96d2007-03-22 12:13:20 -040049
50static void btrfs_put_super (struct super_block * sb)
51{
52 struct btrfs_root *root = btrfs_sb(sb);
Josef Bacik58176a92007-08-29 15:47:34 -040053 struct btrfs_fs_info *fs = root->fs_info;
Chris Masone20d96d2007-03-22 12:13:20 -040054 int ret;
55
56 ret = close_ctree(root);
57 if (ret) {
58 printk("close ctree returns %d\n", ret);
59 }
Josef Bacik58176a92007-08-29 15:47:34 -040060 btrfs_sysfs_del_super(fs);
Chris Masone20d96d2007-03-22 12:13:20 -040061 sb->s_fs_info = NULL;
62}
Chris Mason2e635a22007-03-21 11:12:56 -040063
Chris Mason95e05282007-08-29 09:11:44 -040064enum {
Chris Masonc59f8952007-12-17 20:14:04 -050065 Opt_subvol, Opt_nodatasum, Opt_nodatacow, Opt_max_extent, Opt_err,
Chris Mason95e05282007-08-29 09:11:44 -040066};
67
68static match_table_t tokens = {
69 {Opt_subvol, "subvol=%s"},
Chris Masonb6cda9b2007-12-14 15:30:32 -050070 {Opt_nodatasum, "nodatasum"},
Chris Masonbe20aa92007-12-17 20:14:01 -050071 {Opt_nodatacow, "nodatacow"},
Chris Masonc59f8952007-12-17 20:14:04 -050072 {Opt_max_extent, "max_extent=%s"},
Chris Mason95e05282007-08-29 09:11:44 -040073 {Opt_err, NULL}
74};
75
Chris Masonc59f8952007-12-17 20:14:04 -050076static unsigned long parse_size(char *str)
77{
78 unsigned long res;
79 int mult = 1;
80 char *end;
81 char last;
82
83 res = simple_strtoul(str, &end, 10);
84
85 last = end[0];
86 if (isalpha(last)) {
87 last = tolower(last);
88 switch (last) {
89 case 'g':
90 mult *= 1024;
91 case 'm':
92 mult *= 1024;
93 case 'k':
94 mult *= 1024;
95 }
96 res = res * mult;
97 }
98 return res;
99}
100
Chris Mason95e05282007-08-29 09:11:44 -0400101static int parse_options (char * options,
102 struct btrfs_root *root,
103 char **subvol_name)
104{
105 char * p;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500106 struct btrfs_fs_info *info = NULL;
Chris Mason95e05282007-08-29 09:11:44 -0400107 substring_t args[MAX_OPT_ARGS];
Chris Masonb6cda9b2007-12-14 15:30:32 -0500108
Chris Mason95e05282007-08-29 09:11:44 -0400109 if (!options)
110 return 1;
111
Chris Masonbe20aa92007-12-17 20:14:01 -0500112 /*
113 * strsep changes the string, duplicate it because parse_options
114 * gets called twice
115 */
116 options = kstrdup(options, GFP_NOFS);
117 if (!options)
118 return -ENOMEM;
119
120 if (root)
121 info = root->fs_info;
122
Chris Mason95e05282007-08-29 09:11:44 -0400123 while ((p = strsep (&options, ",")) != NULL) {
124 int token;
125 if (!*p)
126 continue;
127
128 token = match_token(p, tokens, args);
129 switch (token) {
130 case Opt_subvol:
Chris Masonbe20aa92007-12-17 20:14:01 -0500131 if (subvol_name) {
Chris Masonb6cda9b2007-12-14 15:30:32 -0500132 *subvol_name = match_strdup(&args[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -0500133 }
Chris Masonb6cda9b2007-12-14 15:30:32 -0500134 break;
135 case Opt_nodatasum:
Chris Masonbe20aa92007-12-17 20:14:01 -0500136 if (info) {
137 printk("btrfs: setting nodatacsum\n");
Chris Masonb6cda9b2007-12-14 15:30:32 -0500138 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Masonbe20aa92007-12-17 20:14:01 -0500139 }
140 break;
141 case Opt_nodatacow:
142 if (info) {
143 printk("btrfs: setting nodatacow\n");
144 btrfs_set_opt(info->mount_opt, NODATACOW);
145 btrfs_set_opt(info->mount_opt, NODATASUM);
146 }
Chris Mason95e05282007-08-29 09:11:44 -0400147 break;
Chris Masonc59f8952007-12-17 20:14:04 -0500148 case Opt_max_extent:
149 if (info) {
150 char *num = match_strdup(&args[0]);
151 if (num) {
152 info->max_extent = parse_size(num);
153 kfree(num);
154
155 info->max_extent = max_t(u64,
156 info->max_extent,
157 root->sectorsize);
158 printk("btrfs: max_extent at %Lu\n",
159 info->max_extent);
160 }
161 }
162 break;
Chris Mason95e05282007-08-29 09:11:44 -0400163 default:
Chris Masonbe20aa92007-12-17 20:14:01 -0500164 break;
Chris Mason95e05282007-08-29 09:11:44 -0400165 }
166 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500167 kfree(options);
Chris Mason95e05282007-08-29 09:11:44 -0400168 return 1;
169}
170
Chris Mason2e635a22007-03-21 11:12:56 -0400171static int btrfs_fill_super(struct super_block * sb, void * data, int silent)
172{
173 struct inode * inode;
Chris Masone20d96d2007-03-22 12:13:20 -0400174 struct dentry * root_dentry;
175 struct btrfs_super_block *disk_super;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400176 struct btrfs_root *tree_root;
Chris Masond6e4a422007-04-06 15:37:36 -0400177 struct btrfs_inode *bi;
Chris Mason39279cc2007-06-12 06:35:45 -0400178 int err;
Chris Mason2e635a22007-03-21 11:12:56 -0400179
180 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -0400181 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -0400182 sb->s_op = &btrfs_super_ops;
Josef Bacik5103e942007-11-16 11:45:54 -0500183 sb->s_xattr = btrfs_xattr_handlers;
Chris Mason2e635a22007-03-21 11:12:56 -0400184 sb->s_time_gran = 1;
Chris Masone20d96d2007-03-22 12:13:20 -0400185
Chris Mason0f7d52f2007-04-09 10:42:37 -0400186 tree_root = open_ctree(sb);
Chris Masond98237b2007-03-28 13:57:48 -0400187
Chris Mason39279cc2007-06-12 06:35:45 -0400188 if (!tree_root || IS_ERR(tree_root)) {
Chris Masone20d96d2007-03-22 12:13:20 -0400189 printk("btrfs: open_ctree failed\n");
190 return -EIO;
191 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400192 sb->s_fs_info = tree_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400193 disk_super = &tree_root->fs_info->super_copy;
Chris Masonc5739bb2007-04-10 09:27:04 -0400194 inode = btrfs_iget_locked(sb, btrfs_super_root_dir(disk_super),
195 tree_root);
Chris Masond6e4a422007-04-06 15:37:36 -0400196 bi = BTRFS_I(inode);
197 bi->location.objectid = inode->i_ino;
198 bi->location.offset = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400199 bi->root = tree_root;
Chris Masonb888db22007-08-27 16:49:44 -0400200
Chris Masond6e4a422007-04-06 15:37:36 -0400201 btrfs_set_key_type(&bi->location, BTRFS_INODE_ITEM_KEY);
202
Chris Mason39279cc2007-06-12 06:35:45 -0400203 if (!inode) {
204 err = -ENOMEM;
205 goto fail_close;
206 }
Chris Masone20d96d2007-03-22 12:13:20 -0400207 if (inode->i_state & I_NEW) {
208 btrfs_read_locked_inode(inode);
209 unlock_new_inode(inode);
210 }
Chris Mason2e635a22007-03-21 11:12:56 -0400211
Chris Masone20d96d2007-03-22 12:13:20 -0400212 root_dentry = d_alloc_root(inode);
213 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -0400214 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400215 err = -ENOMEM;
216 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400217 }
Josef Bacik58176a92007-08-29 15:47:34 -0400218
Chris Masonb6cda9b2007-12-14 15:30:32 -0500219 parse_options((char *)data, tree_root, NULL);
220
Josef Bacik58176a92007-08-29 15:47:34 -0400221 /* this does the super kobj at the same time */
222 err = btrfs_sysfs_add_super(tree_root->fs_info);
223 if (err)
224 goto fail_close;
225
Chris Masone20d96d2007-03-22 12:13:20 -0400226 sb->s_root = root_dentry;
Chris Mason08607c12007-06-08 15:33:54 -0400227 btrfs_transaction_queue_work(tree_root, HZ * 30);
Chris Mason2e635a22007-03-21 11:12:56 -0400228 return 0;
Chris Mason2e635a22007-03-21 11:12:56 -0400229
Chris Mason39279cc2007-06-12 06:35:45 -0400230fail_close:
231 close_ctree(tree_root);
Chris Masond5719762007-03-23 10:01:08 -0400232 return err;
233}
234
Chris Masond5719762007-03-23 10:01:08 -0400235static int btrfs_sync_fs(struct super_block *sb, int wait)
236{
237 struct btrfs_trans_handle *trans;
238 struct btrfs_root *root;
239 int ret;
Chris Masond98237b2007-03-28 13:57:48 -0400240 root = btrfs_sb(sb);
Chris Masondf2ce342007-03-23 11:00:45 -0400241
Chris Masond5719762007-03-23 10:01:08 -0400242 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400243 if (!wait) {
Chris Mason7cfcc172007-04-02 14:53:59 -0400244 filemap_flush(root->fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400245 return 0;
246 }
Chris Masone9d0b132007-08-10 14:06:19 -0400247 btrfs_clean_old_snapshots(root);
Chris Masond561c022007-03-23 19:47:49 -0400248 mutex_lock(&root->fs_info->fs_mutex);
Chris Masone9d0b132007-08-10 14:06:19 -0400249 btrfs_defrag_dirty_roots(root->fs_info);
Chris Masond5719762007-03-23 10:01:08 -0400250 trans = btrfs_start_transaction(root, 1);
251 ret = btrfs_commit_transaction(trans, root);
252 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400253 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason54aa1f42007-06-22 14:16:25 -0400254 return ret;
Chris Masond5719762007-03-23 10:01:08 -0400255}
256
Chris Masond561c022007-03-23 19:47:49 -0400257static void btrfs_write_super(struct super_block *sb)
258{
Chris Mason08607c12007-06-08 15:33:54 -0400259 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400260}
261
Yan4b82d6e2007-08-29 09:11:44 -0400262/*
263 * This is almost a copy of get_sb_bdev in fs/super.c.
264 * We need the local copy to allow direct mounting of
265 * subvolumes, but this could be easily integrated back
266 * into the generic version. --hch
267 */
268
269/* start copy & paste */
270static int set_bdev_super(struct super_block *s, void *data)
Chris Mason2e635a22007-03-21 11:12:56 -0400271{
Yan4b82d6e2007-08-29 09:11:44 -0400272 s->s_bdev = data;
273 s->s_dev = s->s_bdev->bd_dev;
274 return 0;
275}
276
277static int test_bdev_super(struct super_block *s, void *data)
278{
279 return (void *)s->s_bdev == data;
280}
281
282int btrfs_get_sb_bdev(struct file_system_type *fs_type,
283 int flags, const char *dev_name, void *data,
284 int (*fill_super)(struct super_block *, void *, int),
285 struct vfsmount *mnt, const char *subvol)
286{
287 struct block_device *bdev = NULL;
288 struct super_block *s;
289 struct dentry *root;
290 int error = 0;
291
292 bdev = open_bdev_excl(dev_name, flags, fs_type);
293 if (IS_ERR(bdev))
294 return PTR_ERR(bdev);
295
296 /*
297 * once the super is inserted into the list by sget, s_umount
298 * will protect the lockfs code from trying to start a snapshot
299 * while we are mounting
300 */
301 down(&bdev->bd_mount_sem);
302 s = sget(fs_type, test_bdev_super, set_bdev_super, bdev);
303 up(&bdev->bd_mount_sem);
304 if (IS_ERR(s))
305 goto error_s;
306
307 if (s->s_root) {
308 if ((flags ^ s->s_flags) & MS_RDONLY) {
309 up_write(&s->s_umount);
310 deactivate_super(s);
311 error = -EBUSY;
312 goto error_bdev;
313 }
314
315 close_bdev_excl(bdev);
316 } else {
317 char b[BDEVNAME_SIZE];
318
319 s->s_flags = flags;
320 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
321 sb_set_blocksize(s, block_size(bdev));
322 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
323 if (error) {
324 up_write(&s->s_umount);
325 deactivate_super(s);
326 goto error;
327 }
328
329 s->s_flags |= MS_ACTIVE;
330 }
331
332 if (subvol) {
333 root = lookup_one_len(subvol, s->s_root, strlen(subvol));
334 if (IS_ERR(root)) {
335 up_write(&s->s_umount);
336 deactivate_super(s);
337 error = PTR_ERR(root);
338 goto error;
339 }
340 if (!root->d_inode) {
341 dput(root);
342 up_write(&s->s_umount);
343 deactivate_super(s);
344 error = -ENXIO;
345 goto error;
346 }
347 } else {
348 root = dget(s->s_root);
349 }
350
351 mnt->mnt_sb = s;
352 mnt->mnt_root = root;
353 return 0;
354
355error_s:
356 error = PTR_ERR(s);
357error_bdev:
358 close_bdev_excl(bdev);
359error:
360 return error;
361}
362/* end copy & paste */
363
364static int btrfs_get_sb(struct file_system_type *fs_type,
Chris Mason95e05282007-08-29 09:11:44 -0400365 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Yan4b82d6e2007-08-29 09:11:44 -0400366{
367 int ret;
Chris Mason95e05282007-08-29 09:11:44 -0400368 char *subvol_name = NULL;
Yan4b82d6e2007-08-29 09:11:44 -0400369
Chris Mason95e05282007-08-29 09:11:44 -0400370 parse_options((char *)data, NULL, &subvol_name);
Yan4b82d6e2007-08-29 09:11:44 -0400371 ret = btrfs_get_sb_bdev(fs_type, flags, dev_name, data,
372 btrfs_fill_super, mnt,
373 subvol_name ? subvol_name : "default");
Chris Masonc59f8952007-12-17 20:14:04 -0500374 if (subvol_name)
375 kfree(subvol_name);
Yan4b82d6e2007-08-29 09:11:44 -0400376 return ret;
Chris Mason2e635a22007-03-21 11:12:56 -0400377}
378
Chris Mason8fd17792007-04-19 21:01:03 -0400379static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
380{
381 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
Chris Mason4b52dff2007-06-26 10:06:50 -0400382 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
Chris Masondb945352007-10-15 16:15:53 -0400383 int bits = dentry->d_sb->s_blocksize_bits;
Chris Mason8fd17792007-04-19 21:01:03 -0400384
385 buf->f_namelen = BTRFS_NAME_LEN;
Chris Masondb945352007-10-15 16:15:53 -0400386 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
387 buf->f_bfree = buf->f_blocks -
388 (btrfs_super_bytes_used(disk_super) >> bits);
Chris Mason8fd17792007-04-19 21:01:03 -0400389 buf->f_bavail = buf->f_bfree;
390 buf->f_bsize = dentry->d_sb->s_blocksize;
391 buf->f_type = BTRFS_SUPER_MAGIC;
392 return 0;
393}
Chris Masonb5133862007-04-24 11:52:22 -0400394
Chris Mason2e635a22007-03-21 11:12:56 -0400395static struct file_system_type btrfs_fs_type = {
396 .owner = THIS_MODULE,
397 .name = "btrfs",
398 .get_sb = btrfs_get_sb,
399 .kill_sb = kill_block_super,
400 .fs_flags = FS_REQUIRES_DEV,
401};
402
Chris Masone20d96d2007-03-22 12:13:20 -0400403static struct super_operations btrfs_super_ops = {
Chris Mason134e9732007-03-25 13:44:56 -0400404 .delete_inode = btrfs_delete_inode,
Chris Masone20d96d2007-03-22 12:13:20 -0400405 .put_super = btrfs_put_super,
406 .read_inode = btrfs_read_locked_inode,
Chris Masond5719762007-03-23 10:01:08 -0400407 .write_super = btrfs_write_super,
408 .sync_fs = btrfs_sync_fs,
Chris Mason4730a4b2007-03-26 12:00:39 -0400409 .write_inode = btrfs_write_inode,
Chris Masonb5133862007-04-24 11:52:22 -0400410 .dirty_inode = btrfs_dirty_inode,
Chris Mason2c90e5d2007-04-02 10:50:19 -0400411 .alloc_inode = btrfs_alloc_inode,
412 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -0400413 .statfs = btrfs_statfs,
Chris Masone20d96d2007-03-22 12:13:20 -0400414};
415
Chris Mason2e635a22007-03-21 11:12:56 -0400416static int __init init_btrfs_fs(void)
417{
Chris Mason2c90e5d2007-04-02 10:50:19 -0400418 int err;
Josef Bacik58176a92007-08-29 15:47:34 -0400419
420 err = btrfs_init_sysfs();
421 if (err)
422 return err;
423
Chris Mason08607c12007-06-08 15:33:54 -0400424 btrfs_init_transaction_sys();
Chris Mason39279cc2007-06-12 06:35:45 -0400425 err = btrfs_init_cachep();
Chris Mason2c90e5d2007-04-02 10:50:19 -0400426 if (err)
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500427 goto free_transaction_sys;
428 err = extent_map_init();
429 if (err)
430 goto free_cachep;
431
432 err = register_filesystem(&btrfs_fs_type);
433 if (err)
434 goto free_extent_map;
435 return 0;
436
437free_extent_map:
438 extent_map_exit();
439free_cachep:
440 btrfs_destroy_cachep();
441free_transaction_sys:
442 btrfs_exit_transaction_sys();
443 btrfs_exit_sysfs();
444 return err;
Chris Mason2e635a22007-03-21 11:12:56 -0400445}
446
447static void __exit exit_btrfs_fs(void)
448{
Chris Mason08607c12007-06-08 15:33:54 -0400449 btrfs_exit_transaction_sys();
Chris Mason39279cc2007-06-12 06:35:45 -0400450 btrfs_destroy_cachep();
Chris Masona52d9a82007-08-27 16:49:44 -0400451 extent_map_exit();
Chris Mason2e635a22007-03-21 11:12:56 -0400452 unregister_filesystem(&btrfs_fs_type);
Josef Bacik58176a92007-08-29 15:47:34 -0400453 btrfs_exit_sysfs();
Chris Mason2e635a22007-03-21 11:12:56 -0400454}
455
456module_init(init_btrfs_fs)
457module_exit(exit_btrfs_fs)
458
459MODULE_LICENSE("GPL");