blob: 39a1435c68f1649bc172f8455dad36606509179f [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"
Chris Mason2e635a22007-03-21 11:12:56 -040043
Chris Mason5f39d392007-10-15 16:14:19 -040044#define BTRFS_SUPER_MAGIC 0x9123683E
Chris Masone20d96d2007-03-22 12:13:20 -040045
Chris Masone20d96d2007-03-22 12:13:20 -040046static struct super_operations btrfs_super_ops;
Chris Masone20d96d2007-03-22 12:13:20 -040047
48static void btrfs_put_super (struct super_block * sb)
49{
50 struct btrfs_root *root = btrfs_sb(sb);
Josef Bacik58176a92007-08-29 15:47:34 -040051 struct btrfs_fs_info *fs = root->fs_info;
Chris Masone20d96d2007-03-22 12:13:20 -040052 int ret;
53
54 ret = close_ctree(root);
55 if (ret) {
56 printk("close ctree returns %d\n", ret);
57 }
Josef Bacik58176a92007-08-29 15:47:34 -040058 btrfs_sysfs_del_super(fs);
Chris Masone20d96d2007-03-22 12:13:20 -040059 sb->s_fs_info = NULL;
60}
Chris Mason2e635a22007-03-21 11:12:56 -040061
Chris Mason95e05282007-08-29 09:11:44 -040062enum {
63 Opt_subvol, Opt_err,
64};
65
66static match_table_t tokens = {
67 {Opt_subvol, "subvol=%s"},
68 {Opt_err, NULL}
69};
70
71static int parse_options (char * options,
72 struct btrfs_root *root,
73 char **subvol_name)
74{
75 char * p;
76 substring_t args[MAX_OPT_ARGS];
77 if (!options)
78 return 1;
79
80 while ((p = strsep (&options, ",")) != NULL) {
81 int token;
82 if (!*p)
83 continue;
84
85 token = match_token(p, tokens, args);
86 switch (token) {
87 case Opt_subvol:
88 *subvol_name = match_strdup(&args[0]);
89 break;
90 default:
91 return 0;
92 }
93 }
94 return 1;
95}
96
Chris Mason2e635a22007-03-21 11:12:56 -040097static int btrfs_fill_super(struct super_block * sb, void * data, int silent)
98{
99 struct inode * inode;
Chris Masone20d96d2007-03-22 12:13:20 -0400100 struct dentry * root_dentry;
101 struct btrfs_super_block *disk_super;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400102 struct btrfs_root *tree_root;
Chris Masond6e4a422007-04-06 15:37:36 -0400103 struct btrfs_inode *bi;
Chris Mason39279cc2007-06-12 06:35:45 -0400104 int err;
Chris Mason2e635a22007-03-21 11:12:56 -0400105
106 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -0400107 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -0400108 sb->s_op = &btrfs_super_ops;
Chris Mason2e635a22007-03-21 11:12:56 -0400109 sb->s_time_gran = 1;
Chris Masone20d96d2007-03-22 12:13:20 -0400110
Chris Mason0f7d52f2007-04-09 10:42:37 -0400111 tree_root = open_ctree(sb);
Chris Masond98237b2007-03-28 13:57:48 -0400112
Chris Mason39279cc2007-06-12 06:35:45 -0400113 if (!tree_root || IS_ERR(tree_root)) {
Chris Masone20d96d2007-03-22 12:13:20 -0400114 printk("btrfs: open_ctree failed\n");
115 return -EIO;
116 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400117 sb->s_fs_info = tree_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400118 disk_super = &tree_root->fs_info->super_copy;
Chris Masonc5739bb2007-04-10 09:27:04 -0400119 inode = btrfs_iget_locked(sb, btrfs_super_root_dir(disk_super),
120 tree_root);
Chris Masond6e4a422007-04-06 15:37:36 -0400121 bi = BTRFS_I(inode);
122 bi->location.objectid = inode->i_ino;
123 bi->location.offset = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400124 bi->root = tree_root;
Chris Masonb888db22007-08-27 16:49:44 -0400125
Chris Masond6e4a422007-04-06 15:37:36 -0400126 btrfs_set_key_type(&bi->location, BTRFS_INODE_ITEM_KEY);
127
Chris Mason39279cc2007-06-12 06:35:45 -0400128 if (!inode) {
129 err = -ENOMEM;
130 goto fail_close;
131 }
Chris Masone20d96d2007-03-22 12:13:20 -0400132 if (inode->i_state & I_NEW) {
133 btrfs_read_locked_inode(inode);
134 unlock_new_inode(inode);
135 }
Chris Mason2e635a22007-03-21 11:12:56 -0400136
Chris Masone20d96d2007-03-22 12:13:20 -0400137 root_dentry = d_alloc_root(inode);
138 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -0400139 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400140 err = -ENOMEM;
141 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400142 }
Josef Bacik58176a92007-08-29 15:47:34 -0400143
144 /* this does the super kobj at the same time */
145 err = btrfs_sysfs_add_super(tree_root->fs_info);
146 if (err)
147 goto fail_close;
148
Chris Masone20d96d2007-03-22 12:13:20 -0400149 sb->s_root = root_dentry;
Chris Mason08607c12007-06-08 15:33:54 -0400150 btrfs_transaction_queue_work(tree_root, HZ * 30);
Chris Mason2e635a22007-03-21 11:12:56 -0400151 return 0;
Chris Mason2e635a22007-03-21 11:12:56 -0400152
Chris Mason39279cc2007-06-12 06:35:45 -0400153fail_close:
154 close_ctree(tree_root);
Chris Masond5719762007-03-23 10:01:08 -0400155 return err;
156}
157
Chris Masond5719762007-03-23 10:01:08 -0400158static int btrfs_sync_fs(struct super_block *sb, int wait)
159{
160 struct btrfs_trans_handle *trans;
161 struct btrfs_root *root;
162 int ret;
Chris Masond98237b2007-03-28 13:57:48 -0400163 root = btrfs_sb(sb);
Chris Masondf2ce342007-03-23 11:00:45 -0400164
Chris Masond5719762007-03-23 10:01:08 -0400165 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400166 if (!wait) {
Chris Mason7cfcc172007-04-02 14:53:59 -0400167 filemap_flush(root->fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400168 return 0;
169 }
Chris Masone9d0b132007-08-10 14:06:19 -0400170 btrfs_clean_old_snapshots(root);
Chris Masond561c022007-03-23 19:47:49 -0400171 mutex_lock(&root->fs_info->fs_mutex);
Chris Masone9d0b132007-08-10 14:06:19 -0400172 btrfs_defrag_dirty_roots(root->fs_info);
Chris Masond5719762007-03-23 10:01:08 -0400173 trans = btrfs_start_transaction(root, 1);
174 ret = btrfs_commit_transaction(trans, root);
175 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400176 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason54aa1f42007-06-22 14:16:25 -0400177 return ret;
Chris Masond5719762007-03-23 10:01:08 -0400178}
179
Chris Masond561c022007-03-23 19:47:49 -0400180static void btrfs_write_super(struct super_block *sb)
181{
Chris Mason08607c12007-06-08 15:33:54 -0400182 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400183}
184
Yan4b82d6e2007-08-29 09:11:44 -0400185/*
186 * This is almost a copy of get_sb_bdev in fs/super.c.
187 * We need the local copy to allow direct mounting of
188 * subvolumes, but this could be easily integrated back
189 * into the generic version. --hch
190 */
191
192/* start copy & paste */
193static int set_bdev_super(struct super_block *s, void *data)
Chris Mason2e635a22007-03-21 11:12:56 -0400194{
Yan4b82d6e2007-08-29 09:11:44 -0400195 s->s_bdev = data;
196 s->s_dev = s->s_bdev->bd_dev;
197 return 0;
198}
199
200static int test_bdev_super(struct super_block *s, void *data)
201{
202 return (void *)s->s_bdev == data;
203}
204
205int btrfs_get_sb_bdev(struct file_system_type *fs_type,
206 int flags, const char *dev_name, void *data,
207 int (*fill_super)(struct super_block *, void *, int),
208 struct vfsmount *mnt, const char *subvol)
209{
210 struct block_device *bdev = NULL;
211 struct super_block *s;
212 struct dentry *root;
213 int error = 0;
214
215 bdev = open_bdev_excl(dev_name, flags, fs_type);
216 if (IS_ERR(bdev))
217 return PTR_ERR(bdev);
218
219 /*
220 * once the super is inserted into the list by sget, s_umount
221 * will protect the lockfs code from trying to start a snapshot
222 * while we are mounting
223 */
224 down(&bdev->bd_mount_sem);
225 s = sget(fs_type, test_bdev_super, set_bdev_super, bdev);
226 up(&bdev->bd_mount_sem);
227 if (IS_ERR(s))
228 goto error_s;
229
230 if (s->s_root) {
231 if ((flags ^ s->s_flags) & MS_RDONLY) {
232 up_write(&s->s_umount);
233 deactivate_super(s);
234 error = -EBUSY;
235 goto error_bdev;
236 }
237
238 close_bdev_excl(bdev);
239 } else {
240 char b[BDEVNAME_SIZE];
241
242 s->s_flags = flags;
243 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
244 sb_set_blocksize(s, block_size(bdev));
245 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
246 if (error) {
247 up_write(&s->s_umount);
248 deactivate_super(s);
249 goto error;
250 }
251
252 s->s_flags |= MS_ACTIVE;
253 }
254
255 if (subvol) {
256 root = lookup_one_len(subvol, s->s_root, strlen(subvol));
257 if (IS_ERR(root)) {
258 up_write(&s->s_umount);
259 deactivate_super(s);
260 error = PTR_ERR(root);
261 goto error;
262 }
263 if (!root->d_inode) {
264 dput(root);
265 up_write(&s->s_umount);
266 deactivate_super(s);
267 error = -ENXIO;
268 goto error;
269 }
270 } else {
271 root = dget(s->s_root);
272 }
273
274 mnt->mnt_sb = s;
275 mnt->mnt_root = root;
276 return 0;
277
278error_s:
279 error = PTR_ERR(s);
280error_bdev:
281 close_bdev_excl(bdev);
282error:
Chris Mason5f39d392007-10-15 16:14:19 -0400283printk("get_sb failed\n");
Yan4b82d6e2007-08-29 09:11:44 -0400284 return error;
285}
286/* end copy & paste */
287
288static int btrfs_get_sb(struct file_system_type *fs_type,
Chris Mason95e05282007-08-29 09:11:44 -0400289 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Yan4b82d6e2007-08-29 09:11:44 -0400290{
291 int ret;
Chris Mason95e05282007-08-29 09:11:44 -0400292 char *subvol_name = NULL;
Yan4b82d6e2007-08-29 09:11:44 -0400293
Chris Mason95e05282007-08-29 09:11:44 -0400294 parse_options((char *)data, NULL, &subvol_name);
Yan4b82d6e2007-08-29 09:11:44 -0400295 ret = btrfs_get_sb_bdev(fs_type, flags, dev_name, data,
296 btrfs_fill_super, mnt,
297 subvol_name ? subvol_name : "default");
Chris Mason5f39d392007-10-15 16:14:19 -0400298printk("btrfs_get_sb returns %d\n", ret);
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 Mason8fd17792007-04-19 21:01:03 -0400306
307 buf->f_namelen = BTRFS_NAME_LEN;
308 buf->f_blocks = btrfs_super_total_blocks(disk_super);
309 buf->f_bfree = buf->f_blocks - btrfs_super_blocks_used(disk_super);
310 buf->f_bavail = buf->f_bfree;
311 buf->f_bsize = dentry->d_sb->s_blocksize;
312 buf->f_type = BTRFS_SUPER_MAGIC;
313 return 0;
314}
Chris Masonb5133862007-04-24 11:52:22 -0400315
Chris Mason2e635a22007-03-21 11:12:56 -0400316static struct file_system_type btrfs_fs_type = {
317 .owner = THIS_MODULE,
318 .name = "btrfs",
319 .get_sb = btrfs_get_sb,
320 .kill_sb = kill_block_super,
321 .fs_flags = FS_REQUIRES_DEV,
322};
323
Chris Masone20d96d2007-03-22 12:13:20 -0400324static struct super_operations btrfs_super_ops = {
Chris Mason134e9732007-03-25 13:44:56 -0400325 .delete_inode = btrfs_delete_inode,
Chris Masone20d96d2007-03-22 12:13:20 -0400326 .put_super = btrfs_put_super,
327 .read_inode = btrfs_read_locked_inode,
Chris Masond5719762007-03-23 10:01:08 -0400328 .write_super = btrfs_write_super,
329 .sync_fs = btrfs_sync_fs,
Chris Mason4730a4b2007-03-26 12:00:39 -0400330 .write_inode = btrfs_write_inode,
Chris Masonb5133862007-04-24 11:52:22 -0400331 .dirty_inode = btrfs_dirty_inode,
Chris Mason2c90e5d2007-04-02 10:50:19 -0400332 .alloc_inode = btrfs_alloc_inode,
333 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -0400334 .statfs = btrfs_statfs,
Chris Masone20d96d2007-03-22 12:13:20 -0400335};
336
Chris Mason2e635a22007-03-21 11:12:56 -0400337static int __init init_btrfs_fs(void)
338{
Chris Mason2c90e5d2007-04-02 10:50:19 -0400339 int err;
Josef Bacik58176a92007-08-29 15:47:34 -0400340
341 err = btrfs_init_sysfs();
342 if (err)
343 return err;
344
Chris Mason08607c12007-06-08 15:33:54 -0400345 btrfs_init_transaction_sys();
Chris Mason39279cc2007-06-12 06:35:45 -0400346 err = btrfs_init_cachep();
Chris Mason2c90e5d2007-04-02 10:50:19 -0400347 if (err)
348 return err;
Chris Masona52d9a82007-08-27 16:49:44 -0400349 extent_map_init();
Chris Mason2e635a22007-03-21 11:12:56 -0400350 return register_filesystem(&btrfs_fs_type);
351}
352
353static void __exit exit_btrfs_fs(void)
354{
Chris Mason08607c12007-06-08 15:33:54 -0400355 btrfs_exit_transaction_sys();
Chris Mason39279cc2007-06-12 06:35:45 -0400356 btrfs_destroy_cachep();
Chris Masona52d9a82007-08-27 16:49:44 -0400357 extent_map_exit();
Chris Mason2e635a22007-03-21 11:12:56 -0400358 unregister_filesystem(&btrfs_fs_type);
Josef Bacik58176a92007-08-29 15:47:34 -0400359 btrfs_exit_sysfs();
Chris Mason2e635a22007-03-21 11:12:56 -0400360}
361
362module_init(init_btrfs_fs)
363module_exit(exit_btrfs_fs)
364
365MODULE_LICENSE("GPL");