blob: f1b56eb77b1d98ec1488bded4becd9c6e62e7065 [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 Mason6da6aba2007-12-18 16:15:09 -050038#include <linux/namei.h>
Chris Mason2e635a22007-03-21 11:12:56 -040039#include "ctree.h"
Chris Masone20d96d2007-03-22 12:13:20 -040040#include "disk-io.h"
Chris Masond5719762007-03-23 10:01:08 -040041#include "transaction.h"
Chris Mason2c90e5d2007-04-02 10:50:19 -040042#include "btrfs_inode.h"
Chris Masonc5739bb2007-04-10 09:27:04 -040043#include "ioctl.h"
Chris Mason3a686372007-05-24 13:35:57 -040044#include "print-tree.h"
Josef Bacik5103e942007-11-16 11:45:54 -050045#include "xattr.h"
Chris Mason2e635a22007-03-21 11:12:56 -040046
Chris Mason5f39d392007-10-15 16:14:19 -040047#define BTRFS_SUPER_MAGIC 0x9123683E
Chris Masone20d96d2007-03-22 12:13:20 -040048
Chris Masone20d96d2007-03-22 12:13:20 -040049static struct super_operations btrfs_super_ops;
Chris Masone20d96d2007-03-22 12:13:20 -040050
51static void btrfs_put_super (struct super_block * sb)
52{
53 struct btrfs_root *root = btrfs_sb(sb);
Josef Bacik58176a92007-08-29 15:47:34 -040054 struct btrfs_fs_info *fs = root->fs_info;
Chris Masone20d96d2007-03-22 12:13:20 -040055 int ret;
56
57 ret = close_ctree(root);
58 if (ret) {
59 printk("close ctree returns %d\n", ret);
60 }
Josef Bacik58176a92007-08-29 15:47:34 -040061 btrfs_sysfs_del_super(fs);
Chris Masone20d96d2007-03-22 12:13:20 -040062 sb->s_fs_info = NULL;
63}
Chris Mason2e635a22007-03-21 11:12:56 -040064
Chris Mason95e05282007-08-29 09:11:44 -040065enum {
Chris Mason8f662a72008-01-02 10:01:11 -050066 Opt_subvol, Opt_nodatasum, Opt_nodatacow, Opt_max_extent,
67 Opt_alloc_start, Opt_err,
Chris Mason95e05282007-08-29 09:11:44 -040068};
69
70static match_table_t tokens = {
71 {Opt_subvol, "subvol=%s"},
Chris Masonb6cda9b2007-12-14 15:30:32 -050072 {Opt_nodatasum, "nodatasum"},
Chris Masonbe20aa92007-12-17 20:14:01 -050073 {Opt_nodatacow, "nodatacow"},
Chris Masonc59f8952007-12-17 20:14:04 -050074 {Opt_max_extent, "max_extent=%s"},
Chris Mason8f662a72008-01-02 10:01:11 -050075 {Opt_alloc_start, "alloc_start=%s"},
Chris Mason95e05282007-08-29 09:11:44 -040076 {Opt_err, NULL}
77};
78
Chris Masonedbd8d42007-12-21 16:27:24 -050079u64 btrfs_parse_size(char *str)
Chris Masonc59f8952007-12-17 20:14:04 -050080{
Chris Masonedbd8d42007-12-21 16:27:24 -050081 u64 res;
Chris Masonc59f8952007-12-17 20:14:04 -050082 int mult = 1;
83 char *end;
84 char last;
85
86 res = simple_strtoul(str, &end, 10);
87
88 last = end[0];
89 if (isalpha(last)) {
90 last = tolower(last);
91 switch (last) {
92 case 'g':
93 mult *= 1024;
94 case 'm':
95 mult *= 1024;
96 case 'k':
97 mult *= 1024;
98 }
99 res = res * mult;
100 }
101 return res;
102}
103
Chris Mason95e05282007-08-29 09:11:44 -0400104static int parse_options (char * options,
105 struct btrfs_root *root,
106 char **subvol_name)
107{
108 char * p;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500109 struct btrfs_fs_info *info = NULL;
Chris Mason95e05282007-08-29 09:11:44 -0400110 substring_t args[MAX_OPT_ARGS];
Chris Masonb6cda9b2007-12-14 15:30:32 -0500111
Chris Mason95e05282007-08-29 09:11:44 -0400112 if (!options)
113 return 1;
114
Chris Masonbe20aa92007-12-17 20:14:01 -0500115 /*
116 * strsep changes the string, duplicate it because parse_options
117 * gets called twice
118 */
119 options = kstrdup(options, GFP_NOFS);
120 if (!options)
121 return -ENOMEM;
122
123 if (root)
124 info = root->fs_info;
125
Chris Mason95e05282007-08-29 09:11:44 -0400126 while ((p = strsep (&options, ",")) != NULL) {
127 int token;
128 if (!*p)
129 continue;
130
131 token = match_token(p, tokens, args);
132 switch (token) {
133 case Opt_subvol:
Chris Masonbe20aa92007-12-17 20:14:01 -0500134 if (subvol_name) {
Chris Masonb6cda9b2007-12-14 15:30:32 -0500135 *subvol_name = match_strdup(&args[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -0500136 }
Chris Masonb6cda9b2007-12-14 15:30:32 -0500137 break;
138 case Opt_nodatasum:
Chris Masonbe20aa92007-12-17 20:14:01 -0500139 if (info) {
140 printk("btrfs: setting nodatacsum\n");
Chris Masonb6cda9b2007-12-14 15:30:32 -0500141 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Masonbe20aa92007-12-17 20:14:01 -0500142 }
143 break;
144 case Opt_nodatacow:
145 if (info) {
146 printk("btrfs: setting nodatacow\n");
147 btrfs_set_opt(info->mount_opt, NODATACOW);
148 btrfs_set_opt(info->mount_opt, NODATASUM);
149 }
Chris Mason95e05282007-08-29 09:11:44 -0400150 break;
Chris Masonc59f8952007-12-17 20:14:04 -0500151 case Opt_max_extent:
152 if (info) {
153 char *num = match_strdup(&args[0]);
154 if (num) {
Chris Masonedbd8d42007-12-21 16:27:24 -0500155 info->max_extent =
156 btrfs_parse_size(num);
Chris Masonc59f8952007-12-17 20:14:04 -0500157 kfree(num);
158
159 info->max_extent = max_t(u64,
160 info->max_extent,
161 root->sectorsize);
162 printk("btrfs: max_extent at %Lu\n",
163 info->max_extent);
164 }
165 }
166 break;
Chris Mason8f662a72008-01-02 10:01:11 -0500167 case Opt_alloc_start:
168 if (info) {
169 char *num = match_strdup(&args[0]);
170 if (num) {
171 info->alloc_start =
172 btrfs_parse_size(num);
173 kfree(num);
174 printk("btrfs: allocations start at "
175 "%Lu\n", info->alloc_start);
176 }
177 }
178 break;
Chris Mason95e05282007-08-29 09:11:44 -0400179 default:
Chris Masonbe20aa92007-12-17 20:14:01 -0500180 break;
Chris Mason95e05282007-08-29 09:11:44 -0400181 }
182 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500183 kfree(options);
Chris Mason95e05282007-08-29 09:11:44 -0400184 return 1;
185}
186
Chris Mason2e635a22007-03-21 11:12:56 -0400187static int btrfs_fill_super(struct super_block * sb, void * data, int silent)
188{
189 struct inode * inode;
Chris Masone20d96d2007-03-22 12:13:20 -0400190 struct dentry * root_dentry;
191 struct btrfs_super_block *disk_super;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400192 struct btrfs_root *tree_root;
Chris Masond6e4a422007-04-06 15:37:36 -0400193 struct btrfs_inode *bi;
Chris Mason39279cc2007-06-12 06:35:45 -0400194 int err;
Chris Mason2e635a22007-03-21 11:12:56 -0400195
196 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -0400197 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -0400198 sb->s_op = &btrfs_super_ops;
Josef Bacik5103e942007-11-16 11:45:54 -0500199 sb->s_xattr = btrfs_xattr_handlers;
Chris Mason2e635a22007-03-21 11:12:56 -0400200 sb->s_time_gran = 1;
Chris Masone20d96d2007-03-22 12:13:20 -0400201
Chris Mason0f7d52f2007-04-09 10:42:37 -0400202 tree_root = open_ctree(sb);
Chris Masond98237b2007-03-28 13:57:48 -0400203
Chris Mason39279cc2007-06-12 06:35:45 -0400204 if (!tree_root || IS_ERR(tree_root)) {
Chris Masone20d96d2007-03-22 12:13:20 -0400205 printk("btrfs: open_ctree failed\n");
206 return -EIO;
207 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400208 sb->s_fs_info = tree_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400209 disk_super = &tree_root->fs_info->super_copy;
Chris Masonc5739bb2007-04-10 09:27:04 -0400210 inode = btrfs_iget_locked(sb, btrfs_super_root_dir(disk_super),
211 tree_root);
Chris Masond6e4a422007-04-06 15:37:36 -0400212 bi = BTRFS_I(inode);
213 bi->location.objectid = inode->i_ino;
214 bi->location.offset = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400215 bi->root = tree_root;
Chris Masonb888db22007-08-27 16:49:44 -0400216
Chris Masond6e4a422007-04-06 15:37:36 -0400217 btrfs_set_key_type(&bi->location, BTRFS_INODE_ITEM_KEY);
218
Chris Mason39279cc2007-06-12 06:35:45 -0400219 if (!inode) {
220 err = -ENOMEM;
221 goto fail_close;
222 }
Chris Masone20d96d2007-03-22 12:13:20 -0400223 if (inode->i_state & I_NEW) {
224 btrfs_read_locked_inode(inode);
225 unlock_new_inode(inode);
226 }
Chris Mason2e635a22007-03-21 11:12:56 -0400227
Chris Masone20d96d2007-03-22 12:13:20 -0400228 root_dentry = d_alloc_root(inode);
229 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -0400230 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400231 err = -ENOMEM;
232 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400233 }
Josef Bacik58176a92007-08-29 15:47:34 -0400234
Chris Masonb6cda9b2007-12-14 15:30:32 -0500235 parse_options((char *)data, tree_root, NULL);
236
Josef Bacik58176a92007-08-29 15:47:34 -0400237 /* this does the super kobj at the same time */
238 err = btrfs_sysfs_add_super(tree_root->fs_info);
239 if (err)
240 goto fail_close;
241
Chris Masone20d96d2007-03-22 12:13:20 -0400242 sb->s_root = root_dentry;
Chris Mason08607c12007-06-08 15:33:54 -0400243 btrfs_transaction_queue_work(tree_root, HZ * 30);
Chris Mason2e635a22007-03-21 11:12:56 -0400244 return 0;
Chris Mason2e635a22007-03-21 11:12:56 -0400245
Chris Mason39279cc2007-06-12 06:35:45 -0400246fail_close:
247 close_ctree(tree_root);
Chris Masond5719762007-03-23 10:01:08 -0400248 return err;
249}
250
Chris Masond5719762007-03-23 10:01:08 -0400251static int btrfs_sync_fs(struct super_block *sb, int wait)
252{
253 struct btrfs_trans_handle *trans;
254 struct btrfs_root *root;
255 int ret;
Chris Masond98237b2007-03-28 13:57:48 -0400256 root = btrfs_sb(sb);
Chris Masondf2ce342007-03-23 11:00:45 -0400257
Chris Masond5719762007-03-23 10:01:08 -0400258 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400259 if (!wait) {
Chris Mason7cfcc172007-04-02 14:53:59 -0400260 filemap_flush(root->fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400261 return 0;
262 }
Chris Masone9d0b132007-08-10 14:06:19 -0400263 btrfs_clean_old_snapshots(root);
Chris Masond561c022007-03-23 19:47:49 -0400264 mutex_lock(&root->fs_info->fs_mutex);
Chris Masone9d0b132007-08-10 14:06:19 -0400265 btrfs_defrag_dirty_roots(root->fs_info);
Chris Masond5719762007-03-23 10:01:08 -0400266 trans = btrfs_start_transaction(root, 1);
267 ret = btrfs_commit_transaction(trans, root);
268 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400269 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason54aa1f42007-06-22 14:16:25 -0400270 return ret;
Chris Masond5719762007-03-23 10:01:08 -0400271}
272
Chris Masond561c022007-03-23 19:47:49 -0400273static void btrfs_write_super(struct super_block *sb)
274{
Chris Mason08607c12007-06-08 15:33:54 -0400275 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400276}
277
Yan4b82d6e2007-08-29 09:11:44 -0400278/*
279 * This is almost a copy of get_sb_bdev in fs/super.c.
280 * We need the local copy to allow direct mounting of
281 * subvolumes, but this could be easily integrated back
282 * into the generic version. --hch
283 */
284
285/* start copy & paste */
286static int set_bdev_super(struct super_block *s, void *data)
Chris Mason2e635a22007-03-21 11:12:56 -0400287{
Yan4b82d6e2007-08-29 09:11:44 -0400288 s->s_bdev = data;
289 s->s_dev = s->s_bdev->bd_dev;
290 return 0;
291}
292
293static int test_bdev_super(struct super_block *s, void *data)
294{
295 return (void *)s->s_bdev == data;
296}
297
298int btrfs_get_sb_bdev(struct file_system_type *fs_type,
299 int flags, const char *dev_name, void *data,
300 int (*fill_super)(struct super_block *, void *, int),
301 struct vfsmount *mnt, const char *subvol)
302{
303 struct block_device *bdev = NULL;
304 struct super_block *s;
305 struct dentry *root;
306 int error = 0;
307
308 bdev = open_bdev_excl(dev_name, flags, fs_type);
309 if (IS_ERR(bdev))
310 return PTR_ERR(bdev);
311
312 /*
313 * once the super is inserted into the list by sget, s_umount
314 * will protect the lockfs code from trying to start a snapshot
315 * while we are mounting
316 */
317 down(&bdev->bd_mount_sem);
318 s = sget(fs_type, test_bdev_super, set_bdev_super, bdev);
319 up(&bdev->bd_mount_sem);
320 if (IS_ERR(s))
321 goto error_s;
322
323 if (s->s_root) {
324 if ((flags ^ s->s_flags) & MS_RDONLY) {
325 up_write(&s->s_umount);
326 deactivate_super(s);
327 error = -EBUSY;
328 goto error_bdev;
329 }
330
331 close_bdev_excl(bdev);
332 } else {
333 char b[BDEVNAME_SIZE];
334
335 s->s_flags = flags;
336 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
337 sb_set_blocksize(s, block_size(bdev));
338 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
339 if (error) {
340 up_write(&s->s_umount);
341 deactivate_super(s);
342 goto error;
343 }
344
345 s->s_flags |= MS_ACTIVE;
346 }
347
348 if (subvol) {
349 root = lookup_one_len(subvol, s->s_root, strlen(subvol));
350 if (IS_ERR(root)) {
351 up_write(&s->s_umount);
352 deactivate_super(s);
353 error = PTR_ERR(root);
354 goto error;
355 }
356 if (!root->d_inode) {
357 dput(root);
358 up_write(&s->s_umount);
359 deactivate_super(s);
360 error = -ENXIO;
361 goto error;
362 }
363 } else {
364 root = dget(s->s_root);
365 }
366
367 mnt->mnt_sb = s;
368 mnt->mnt_root = root;
369 return 0;
370
371error_s:
372 error = PTR_ERR(s);
373error_bdev:
374 close_bdev_excl(bdev);
375error:
376 return error;
377}
378/* end copy & paste */
379
380static int btrfs_get_sb(struct file_system_type *fs_type,
Chris Mason95e05282007-08-29 09:11:44 -0400381 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Yan4b82d6e2007-08-29 09:11:44 -0400382{
383 int ret;
Chris Mason95e05282007-08-29 09:11:44 -0400384 char *subvol_name = NULL;
Yan4b82d6e2007-08-29 09:11:44 -0400385
Chris Mason95e05282007-08-29 09:11:44 -0400386 parse_options((char *)data, NULL, &subvol_name);
Yan4b82d6e2007-08-29 09:11:44 -0400387 ret = btrfs_get_sb_bdev(fs_type, flags, dev_name, data,
388 btrfs_fill_super, mnt,
389 subvol_name ? subvol_name : "default");
Chris Masonc59f8952007-12-17 20:14:04 -0500390 if (subvol_name)
391 kfree(subvol_name);
Yan4b82d6e2007-08-29 09:11:44 -0400392 return ret;
Chris Mason2e635a22007-03-21 11:12:56 -0400393}
394
Chris Mason8fd17792007-04-19 21:01:03 -0400395static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
396{
397 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
Chris Mason4b52dff2007-06-26 10:06:50 -0400398 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
Chris Masondb945352007-10-15 16:15:53 -0400399 int bits = dentry->d_sb->s_blocksize_bits;
Chris Mason8fd17792007-04-19 21:01:03 -0400400
401 buf->f_namelen = BTRFS_NAME_LEN;
Chris Masondb945352007-10-15 16:15:53 -0400402 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
403 buf->f_bfree = buf->f_blocks -
404 (btrfs_super_bytes_used(disk_super) >> bits);
Chris Mason8fd17792007-04-19 21:01:03 -0400405 buf->f_bavail = buf->f_bfree;
406 buf->f_bsize = dentry->d_sb->s_blocksize;
407 buf->f_type = BTRFS_SUPER_MAGIC;
408 return 0;
409}
Chris Masonb5133862007-04-24 11:52:22 -0400410
Chris Mason2e635a22007-03-21 11:12:56 -0400411static struct file_system_type btrfs_fs_type = {
412 .owner = THIS_MODULE,
413 .name = "btrfs",
414 .get_sb = btrfs_get_sb,
415 .kill_sb = kill_block_super,
416 .fs_flags = FS_REQUIRES_DEV,
417};
418
Chris Masone20d96d2007-03-22 12:13:20 -0400419static struct super_operations btrfs_super_ops = {
Chris Mason134e9732007-03-25 13:44:56 -0400420 .delete_inode = btrfs_delete_inode,
Chris Masone20d96d2007-03-22 12:13:20 -0400421 .put_super = btrfs_put_super,
422 .read_inode = btrfs_read_locked_inode,
Chris Masond5719762007-03-23 10:01:08 -0400423 .write_super = btrfs_write_super,
424 .sync_fs = btrfs_sync_fs,
Chris Mason4730a4b2007-03-26 12:00:39 -0400425 .write_inode = btrfs_write_inode,
Chris Masonb5133862007-04-24 11:52:22 -0400426 .dirty_inode = btrfs_dirty_inode,
Chris Mason2c90e5d2007-04-02 10:50:19 -0400427 .alloc_inode = btrfs_alloc_inode,
428 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -0400429 .statfs = btrfs_statfs,
Chris Masone20d96d2007-03-22 12:13:20 -0400430};
431
Chris Mason2e635a22007-03-21 11:12:56 -0400432static int __init init_btrfs_fs(void)
433{
Chris Mason2c90e5d2007-04-02 10:50:19 -0400434 int err;
Josef Bacik58176a92007-08-29 15:47:34 -0400435
436 err = btrfs_init_sysfs();
437 if (err)
438 return err;
439
Chris Mason08607c12007-06-08 15:33:54 -0400440 btrfs_init_transaction_sys();
Chris Mason39279cc2007-06-12 06:35:45 -0400441 err = btrfs_init_cachep();
Chris Mason2c90e5d2007-04-02 10:50:19 -0400442 if (err)
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500443 goto free_transaction_sys;
444 err = extent_map_init();
445 if (err)
446 goto free_cachep;
447
448 err = register_filesystem(&btrfs_fs_type);
449 if (err)
450 goto free_extent_map;
451 return 0;
452
453free_extent_map:
454 extent_map_exit();
455free_cachep:
456 btrfs_destroy_cachep();
457free_transaction_sys:
458 btrfs_exit_transaction_sys();
459 btrfs_exit_sysfs();
460 return err;
Chris Mason2e635a22007-03-21 11:12:56 -0400461}
462
463static void __exit exit_btrfs_fs(void)
464{
Chris Mason08607c12007-06-08 15:33:54 -0400465 btrfs_exit_transaction_sys();
Chris Mason39279cc2007-06-12 06:35:45 -0400466 btrfs_destroy_cachep();
Chris Masona52d9a82007-08-27 16:49:44 -0400467 extent_map_exit();
Chris Mason2e635a22007-03-21 11:12:56 -0400468 unregister_filesystem(&btrfs_fs_type);
Josef Bacik58176a92007-08-29 15:47:34 -0400469 btrfs_exit_sysfs();
Chris Mason2e635a22007-03-21 11:12:56 -0400470}
471
472module_init(init_btrfs_fs)
473module_exit(exit_btrfs_fs)
474
475MODULE_LICENSE("GPL");