blob: ffa02872c4d6d205037e84303177d8391fb2267e [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 {
64 Opt_subvol, Opt_err,
65};
66
67static match_table_t tokens = {
68 {Opt_subvol, "subvol=%s"},
69 {Opt_err, NULL}
70};
71
72static int parse_options (char * options,
73 struct btrfs_root *root,
74 char **subvol_name)
75{
76 char * p;
77 substring_t args[MAX_OPT_ARGS];
78 if (!options)
79 return 1;
80
81 while ((p = strsep (&options, ",")) != NULL) {
82 int token;
83 if (!*p)
84 continue;
85
86 token = match_token(p, tokens, args);
87 switch (token) {
88 case Opt_subvol:
89 *subvol_name = match_strdup(&args[0]);
90 break;
91 default:
92 return 0;
93 }
94 }
95 return 1;
96}
97
Chris Mason2e635a22007-03-21 11:12:56 -040098static int btrfs_fill_super(struct super_block * sb, void * data, int silent)
99{
100 struct inode * inode;
Chris Masone20d96d2007-03-22 12:13:20 -0400101 struct dentry * root_dentry;
102 struct btrfs_super_block *disk_super;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400103 struct btrfs_root *tree_root;
Chris Masond6e4a422007-04-06 15:37:36 -0400104 struct btrfs_inode *bi;
Chris Mason39279cc2007-06-12 06:35:45 -0400105 int err;
Chris Mason2e635a22007-03-21 11:12:56 -0400106
107 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -0400108 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -0400109 sb->s_op = &btrfs_super_ops;
Josef Bacik5103e942007-11-16 11:45:54 -0500110 sb->s_xattr = btrfs_xattr_handlers;
Chris Mason2e635a22007-03-21 11:12:56 -0400111 sb->s_time_gran = 1;
Chris Masone20d96d2007-03-22 12:13:20 -0400112
Chris Mason0f7d52f2007-04-09 10:42:37 -0400113 tree_root = open_ctree(sb);
Chris Masond98237b2007-03-28 13:57:48 -0400114
Chris Mason39279cc2007-06-12 06:35:45 -0400115 if (!tree_root || IS_ERR(tree_root)) {
Chris Masone20d96d2007-03-22 12:13:20 -0400116 printk("btrfs: open_ctree failed\n");
117 return -EIO;
118 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400119 sb->s_fs_info = tree_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400120 disk_super = &tree_root->fs_info->super_copy;
Chris Masonc5739bb2007-04-10 09:27:04 -0400121 inode = btrfs_iget_locked(sb, btrfs_super_root_dir(disk_super),
122 tree_root);
Chris Masond6e4a422007-04-06 15:37:36 -0400123 bi = BTRFS_I(inode);
124 bi->location.objectid = inode->i_ino;
125 bi->location.offset = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400126 bi->root = tree_root;
Chris Masonb888db2b2007-08-27 16:49:44 -0400127
Chris Masond6e4a422007-04-06 15:37:36 -0400128 btrfs_set_key_type(&bi->location, BTRFS_INODE_ITEM_KEY);
129
Chris Mason39279cc2007-06-12 06:35:45 -0400130 if (!inode) {
131 err = -ENOMEM;
132 goto fail_close;
133 }
Chris Masone20d96d2007-03-22 12:13:20 -0400134 if (inode->i_state & I_NEW) {
135 btrfs_read_locked_inode(inode);
136 unlock_new_inode(inode);
137 }
Chris Mason2e635a22007-03-21 11:12:56 -0400138
Chris Masone20d96d2007-03-22 12:13:20 -0400139 root_dentry = d_alloc_root(inode);
140 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -0400141 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400142 err = -ENOMEM;
143 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400144 }
Josef Bacik58176a92007-08-29 15:47:34 -0400145
146 /* this does the super kobj at the same time */
147 err = btrfs_sysfs_add_super(tree_root->fs_info);
148 if (err)
149 goto fail_close;
150
Chris Masone20d96d2007-03-22 12:13:20 -0400151 sb->s_root = root_dentry;
Chris Mason08607c12007-06-08 15:33:54 -0400152 btrfs_transaction_queue_work(tree_root, HZ * 30);
Chris Mason2e635a22007-03-21 11:12:56 -0400153 return 0;
Chris Mason2e635a22007-03-21 11:12:56 -0400154
Chris Mason39279cc2007-06-12 06:35:45 -0400155fail_close:
156 close_ctree(tree_root);
Chris Masond5719762007-03-23 10:01:08 -0400157 return err;
158}
159
Chris Masond5719762007-03-23 10:01:08 -0400160static int btrfs_sync_fs(struct super_block *sb, int wait)
161{
162 struct btrfs_trans_handle *trans;
163 struct btrfs_root *root;
164 int ret;
Chris Masond98237b2007-03-28 13:57:48 -0400165 root = btrfs_sb(sb);
Chris Masondf2ce342007-03-23 11:00:45 -0400166
Chris Masond5719762007-03-23 10:01:08 -0400167 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400168 if (!wait) {
Chris Mason7cfcc172007-04-02 14:53:59 -0400169 filemap_flush(root->fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400170 return 0;
171 }
Chris Masone9d0b132007-08-10 14:06:19 -0400172 btrfs_clean_old_snapshots(root);
Chris Masond561c022007-03-23 19:47:49 -0400173 mutex_lock(&root->fs_info->fs_mutex);
Chris Masone9d0b132007-08-10 14:06:19 -0400174 btrfs_defrag_dirty_roots(root->fs_info);
Chris Masond5719762007-03-23 10:01:08 -0400175 trans = btrfs_start_transaction(root, 1);
176 ret = btrfs_commit_transaction(trans, root);
177 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400178 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason54aa1f42007-06-22 14:16:25 -0400179 return ret;
Chris Masond5719762007-03-23 10:01:08 -0400180}
181
Chris Masond561c022007-03-23 19:47:49 -0400182static void btrfs_write_super(struct super_block *sb)
183{
Chris Mason08607c12007-06-08 15:33:54 -0400184 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400185}
186
Yan4b82d6e2007-08-29 09:11:44 -0400187/*
188 * This is almost a copy of get_sb_bdev in fs/super.c.
189 * We need the local copy to allow direct mounting of
190 * subvolumes, but this could be easily integrated back
191 * into the generic version. --hch
192 */
193
194/* start copy & paste */
195static int set_bdev_super(struct super_block *s, void *data)
Chris Mason2e635a22007-03-21 11:12:56 -0400196{
Yan4b82d6e2007-08-29 09:11:44 -0400197 s->s_bdev = data;
198 s->s_dev = s->s_bdev->bd_dev;
199 return 0;
200}
201
202static int test_bdev_super(struct super_block *s, void *data)
203{
204 return (void *)s->s_bdev == data;
205}
206
207int btrfs_get_sb_bdev(struct file_system_type *fs_type,
208 int flags, const char *dev_name, void *data,
209 int (*fill_super)(struct super_block *, void *, int),
210 struct vfsmount *mnt, const char *subvol)
211{
212 struct block_device *bdev = NULL;
213 struct super_block *s;
214 struct dentry *root;
215 int error = 0;
216
217 bdev = open_bdev_excl(dev_name, flags, fs_type);
218 if (IS_ERR(bdev))
219 return PTR_ERR(bdev);
220
221 /*
222 * once the super is inserted into the list by sget, s_umount
223 * will protect the lockfs code from trying to start a snapshot
224 * while we are mounting
225 */
226 down(&bdev->bd_mount_sem);
227 s = sget(fs_type, test_bdev_super, set_bdev_super, bdev);
228 up(&bdev->bd_mount_sem);
229 if (IS_ERR(s))
230 goto error_s;
231
232 if (s->s_root) {
233 if ((flags ^ s->s_flags) & MS_RDONLY) {
234 up_write(&s->s_umount);
235 deactivate_super(s);
236 error = -EBUSY;
237 goto error_bdev;
238 }
239
240 close_bdev_excl(bdev);
241 } else {
242 char b[BDEVNAME_SIZE];
243
244 s->s_flags = flags;
245 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
246 sb_set_blocksize(s, block_size(bdev));
247 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
248 if (error) {
249 up_write(&s->s_umount);
250 deactivate_super(s);
251 goto error;
252 }
253
254 s->s_flags |= MS_ACTIVE;
255 }
256
257 if (subvol) {
258 root = lookup_one_len(subvol, s->s_root, strlen(subvol));
259 if (IS_ERR(root)) {
260 up_write(&s->s_umount);
261 deactivate_super(s);
262 error = PTR_ERR(root);
263 goto error;
264 }
265 if (!root->d_inode) {
266 dput(root);
267 up_write(&s->s_umount);
268 deactivate_super(s);
269 error = -ENXIO;
270 goto error;
271 }
272 } else {
273 root = dget(s->s_root);
274 }
275
276 mnt->mnt_sb = s;
277 mnt->mnt_root = root;
278 return 0;
279
280error_s:
281 error = PTR_ERR(s);
282error_bdev:
283 close_bdev_excl(bdev);
284error:
285 return error;
286}
287/* end copy & paste */
288
289static int btrfs_get_sb(struct file_system_type *fs_type,
Chris Mason95e05282007-08-29 09:11:44 -0400290 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Yan4b82d6e2007-08-29 09:11:44 -0400291{
292 int ret;
Chris Mason95e05282007-08-29 09:11:44 -0400293 char *subvol_name = NULL;
Yan4b82d6e2007-08-29 09:11:44 -0400294
Chris Mason95e05282007-08-29 09:11:44 -0400295 parse_options((char *)data, NULL, &subvol_name);
Yan4b82d6e2007-08-29 09:11:44 -0400296 ret = btrfs_get_sb_bdev(fs_type, flags, dev_name, data,
297 btrfs_fill_super, mnt,
298 subvol_name ? subvol_name : "default");
Yan4b82d6e2007-08-29 09:11:44 -0400299 return ret;
Chris Mason2e635a22007-03-21 11:12:56 -0400300}
301
Chris Mason8fd17792007-04-19 21:01:03 -0400302static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
303{
304 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
Chris Mason4b52dff2007-06-26 10:06:50 -0400305 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
Chris Masondb945352007-10-15 16:15:53 -0400306 int bits = dentry->d_sb->s_blocksize_bits;
Chris Mason8fd17792007-04-19 21:01:03 -0400307
308 buf->f_namelen = BTRFS_NAME_LEN;
Chris Masondb945352007-10-15 16:15:53 -0400309 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
310 buf->f_bfree = buf->f_blocks -
311 (btrfs_super_bytes_used(disk_super) >> bits);
Chris Mason8fd17792007-04-19 21:01:03 -0400312 buf->f_bavail = buf->f_bfree;
313 buf->f_bsize = dentry->d_sb->s_blocksize;
314 buf->f_type = BTRFS_SUPER_MAGIC;
315 return 0;
316}
Chris Masonb5133862007-04-24 11:52:22 -0400317
Chris Mason2e635a22007-03-21 11:12:56 -0400318static struct file_system_type btrfs_fs_type = {
319 .owner = THIS_MODULE,
320 .name = "btrfs",
321 .get_sb = btrfs_get_sb,
322 .kill_sb = kill_block_super,
323 .fs_flags = FS_REQUIRES_DEV,
324};
325
Chris Masone20d96d2007-03-22 12:13:20 -0400326static struct super_operations btrfs_super_ops = {
Chris Mason134e9732007-03-25 13:44:56 -0400327 .delete_inode = btrfs_delete_inode,
Chris Masone20d96d2007-03-22 12:13:20 -0400328 .put_super = btrfs_put_super,
329 .read_inode = btrfs_read_locked_inode,
Chris Masond5719762007-03-23 10:01:08 -0400330 .write_super = btrfs_write_super,
331 .sync_fs = btrfs_sync_fs,
Chris Mason4730a4b2007-03-26 12:00:39 -0400332 .write_inode = btrfs_write_inode,
Chris Masonb5133862007-04-24 11:52:22 -0400333 .dirty_inode = btrfs_dirty_inode,
Chris Mason2c90e5d2007-04-02 10:50:19 -0400334 .alloc_inode = btrfs_alloc_inode,
335 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -0400336 .statfs = btrfs_statfs,
Chris Masone20d96d2007-03-22 12:13:20 -0400337};
338
Chris Mason2e635a22007-03-21 11:12:56 -0400339static int __init init_btrfs_fs(void)
340{
Chris Mason2c90e5d2007-04-02 10:50:19 -0400341 int err;
Josef Bacik58176a92007-08-29 15:47:34 -0400342
343 err = btrfs_init_sysfs();
344 if (err)
345 return err;
346
Chris Mason08607c12007-06-08 15:33:54 -0400347 btrfs_init_transaction_sys();
Chris Mason39279cc2007-06-12 06:35:45 -0400348 err = btrfs_init_cachep();
Chris Mason2c90e5d2007-04-02 10:50:19 -0400349 if (err)
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500350 goto free_transaction_sys;
351 err = extent_map_init();
352 if (err)
353 goto free_cachep;
354
355 err = register_filesystem(&btrfs_fs_type);
356 if (err)
357 goto free_extent_map;
358 return 0;
359
360free_extent_map:
361 extent_map_exit();
362free_cachep:
363 btrfs_destroy_cachep();
364free_transaction_sys:
365 btrfs_exit_transaction_sys();
366 btrfs_exit_sysfs();
367 return err;
Chris Mason2e635a22007-03-21 11:12:56 -0400368}
369
370static void __exit exit_btrfs_fs(void)
371{
Chris Mason08607c12007-06-08 15:33:54 -0400372 btrfs_exit_transaction_sys();
Chris Mason39279cc2007-06-12 06:35:45 -0400373 btrfs_destroy_cachep();
Chris Masona52d9a82007-08-27 16:49:44 -0400374 extent_map_exit();
Chris Mason2e635a22007-03-21 11:12:56 -0400375 unregister_filesystem(&btrfs_fs_type);
Josef Bacik58176a92007-08-29 15:47:34 -0400376 btrfs_exit_sysfs();
Chris Mason2e635a22007-03-21 11:12:56 -0400377}
378
379module_init(init_btrfs_fs)
380module_exit(exit_btrfs_fs)
381
382MODULE_LICENSE("GPL");