blob: 8a94be1a773b08ce1f2cd9a970f2a973d3bd91ec [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 Mason2e635a22007-03-21 11:12:56 -040036#include "ctree.h"
Chris Masone20d96d2007-03-22 12:13:20 -040037#include "disk-io.h"
Chris Masond5719762007-03-23 10:01:08 -040038#include "transaction.h"
Chris Mason2c90e5d62007-04-02 10:50:19 -040039#include "btrfs_inode.h"
Chris Masonc5739bb2007-04-10 09:27:04 -040040#include "ioctl.h"
Chris Mason3a686372007-05-24 13:35:57 -040041#include "print-tree.h"
Chris Mason2e635a22007-03-21 11:12:56 -040042
43#define BTRFS_SUPER_MAGIC 0x9123682E
Chris Masone20d96d2007-03-22 12:13:20 -040044
Chris Masone20d96d2007-03-22 12:13:20 -040045static struct super_operations btrfs_super_ops;
Chris Masone20d96d2007-03-22 12:13:20 -040046
47static void btrfs_put_super (struct super_block * sb)
48{
49 struct btrfs_root *root = btrfs_sb(sb);
Josef Bacik58176a92007-08-29 15:47:34 -040050 struct btrfs_fs_info *fs = root->fs_info;
Chris Masone20d96d2007-03-22 12:13:20 -040051 int ret;
52
53 ret = close_ctree(root);
54 if (ret) {
55 printk("close ctree returns %d\n", ret);
56 }
Josef Bacik58176a92007-08-29 15:47:34 -040057 btrfs_sysfs_del_super(fs);
Chris Masone20d96d2007-03-22 12:13:20 -040058 sb->s_fs_info = NULL;
59}
Chris Mason2e635a22007-03-21 11:12:56 -040060
61static int btrfs_fill_super(struct super_block * sb, void * data, int silent)
62{
63 struct inode * inode;
Chris Masone20d96d2007-03-22 12:13:20 -040064 struct dentry * root_dentry;
65 struct btrfs_super_block *disk_super;
Chris Mason0f7d52f2007-04-09 10:42:37 -040066 struct btrfs_root *tree_root;
Chris Masond6e4a422007-04-06 15:37:36 -040067 struct btrfs_inode *bi;
Chris Mason39279cc2007-06-12 06:35:45 -040068 int err;
Chris Mason2e635a22007-03-21 11:12:56 -040069
70 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -040071 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -040072 sb->s_op = &btrfs_super_ops;
Chris Mason2e635a22007-03-21 11:12:56 -040073 sb->s_time_gran = 1;
Chris Masone20d96d2007-03-22 12:13:20 -040074
Chris Mason0f7d52f2007-04-09 10:42:37 -040075 tree_root = open_ctree(sb);
Chris Masond98237b2007-03-28 13:57:48 -040076
Chris Mason39279cc2007-06-12 06:35:45 -040077 if (!tree_root || IS_ERR(tree_root)) {
Chris Masone20d96d2007-03-22 12:13:20 -040078 printk("btrfs: open_ctree failed\n");
79 return -EIO;
80 }
Chris Mason0f7d52f2007-04-09 10:42:37 -040081 sb->s_fs_info = tree_root;
82 disk_super = tree_root->fs_info->disk_super;
Chris Masonc5739bb2007-04-10 09:27:04 -040083 inode = btrfs_iget_locked(sb, btrfs_super_root_dir(disk_super),
84 tree_root);
Chris Masond6e4a422007-04-06 15:37:36 -040085 bi = BTRFS_I(inode);
86 bi->location.objectid = inode->i_ino;
87 bi->location.offset = 0;
88 bi->location.flags = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -040089 bi->root = tree_root;
Chris Masonb888db22007-08-27 16:49:44 -040090
Chris Masond6e4a422007-04-06 15:37:36 -040091 btrfs_set_key_type(&bi->location, BTRFS_INODE_ITEM_KEY);
92
Chris Mason39279cc2007-06-12 06:35:45 -040093 if (!inode) {
94 err = -ENOMEM;
95 goto fail_close;
96 }
Chris Masone20d96d2007-03-22 12:13:20 -040097 if (inode->i_state & I_NEW) {
98 btrfs_read_locked_inode(inode);
99 unlock_new_inode(inode);
100 }
Chris Mason2e635a22007-03-21 11:12:56 -0400101
Chris Masone20d96d2007-03-22 12:13:20 -0400102 root_dentry = d_alloc_root(inode);
103 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -0400104 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400105 err = -ENOMEM;
106 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400107 }
Josef Bacik58176a92007-08-29 15:47:34 -0400108
109 /* this does the super kobj at the same time */
110 err = btrfs_sysfs_add_super(tree_root->fs_info);
111 if (err)
112 goto fail_close;
113
Chris Masone20d96d2007-03-22 12:13:20 -0400114 sb->s_root = root_dentry;
Chris Mason08607c12007-06-08 15:33:54 -0400115 btrfs_transaction_queue_work(tree_root, HZ * 30);
Chris Mason2e635a22007-03-21 11:12:56 -0400116 return 0;
Chris Mason2e635a22007-03-21 11:12:56 -0400117
Chris Mason39279cc2007-06-12 06:35:45 -0400118fail_close:
119 close_ctree(tree_root);
Chris Masond5719762007-03-23 10:01:08 -0400120 return err;
121}
122
Chris Masond5719762007-03-23 10:01:08 -0400123static int btrfs_sync_fs(struct super_block *sb, int wait)
124{
125 struct btrfs_trans_handle *trans;
126 struct btrfs_root *root;
127 int ret;
Chris Masond98237b2007-03-28 13:57:48 -0400128 root = btrfs_sb(sb);
Chris Masondf2ce342007-03-23 11:00:45 -0400129
Chris Masond5719762007-03-23 10:01:08 -0400130 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400131 if (!wait) {
Chris Mason7cfcc172007-04-02 14:53:59 -0400132 filemap_flush(root->fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400133 return 0;
134 }
Chris Masone9d0b132007-08-10 14:06:19 -0400135 btrfs_clean_old_snapshots(root);
Chris Masond561c022007-03-23 19:47:49 -0400136 mutex_lock(&root->fs_info->fs_mutex);
Chris Masone9d0b132007-08-10 14:06:19 -0400137 btrfs_defrag_dirty_roots(root->fs_info);
Chris Masond5719762007-03-23 10:01:08 -0400138 trans = btrfs_start_transaction(root, 1);
139 ret = btrfs_commit_transaction(trans, root);
140 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400141 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason54aa1f42007-06-22 14:16:25 -0400142 return ret;
Chris Masond5719762007-03-23 10:01:08 -0400143}
144
Chris Masond561c022007-03-23 19:47:49 -0400145static void btrfs_write_super(struct super_block *sb)
146{
Chris Mason08607c12007-06-08 15:33:54 -0400147 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400148}
149
Yan4b82d6e2007-08-29 09:11:44 -0400150/*
151 * This is almost a copy of get_sb_bdev in fs/super.c.
152 * We need the local copy to allow direct mounting of
153 * subvolumes, but this could be easily integrated back
154 * into the generic version. --hch
155 */
156
157/* start copy & paste */
158static int set_bdev_super(struct super_block *s, void *data)
Chris Mason2e635a22007-03-21 11:12:56 -0400159{
Yan4b82d6e2007-08-29 09:11:44 -0400160 s->s_bdev = data;
161 s->s_dev = s->s_bdev->bd_dev;
162 return 0;
163}
164
165static int test_bdev_super(struct super_block *s, void *data)
166{
167 return (void *)s->s_bdev == data;
168}
169
170int btrfs_get_sb_bdev(struct file_system_type *fs_type,
171 int flags, const char *dev_name, void *data,
172 int (*fill_super)(struct super_block *, void *, int),
173 struct vfsmount *mnt, const char *subvol)
174{
175 struct block_device *bdev = NULL;
176 struct super_block *s;
177 struct dentry *root;
178 int error = 0;
179
180 bdev = open_bdev_excl(dev_name, flags, fs_type);
181 if (IS_ERR(bdev))
182 return PTR_ERR(bdev);
183
184 /*
185 * once the super is inserted into the list by sget, s_umount
186 * will protect the lockfs code from trying to start a snapshot
187 * while we are mounting
188 */
189 down(&bdev->bd_mount_sem);
190 s = sget(fs_type, test_bdev_super, set_bdev_super, bdev);
191 up(&bdev->bd_mount_sem);
192 if (IS_ERR(s))
193 goto error_s;
194
195 if (s->s_root) {
196 if ((flags ^ s->s_flags) & MS_RDONLY) {
197 up_write(&s->s_umount);
198 deactivate_super(s);
199 error = -EBUSY;
200 goto error_bdev;
201 }
202
203 close_bdev_excl(bdev);
204 } else {
205 char b[BDEVNAME_SIZE];
206
207 s->s_flags = flags;
208 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
209 sb_set_blocksize(s, block_size(bdev));
210 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
211 if (error) {
212 up_write(&s->s_umount);
213 deactivate_super(s);
214 goto error;
215 }
216
217 s->s_flags |= MS_ACTIVE;
218 }
219
220 if (subvol) {
221 root = lookup_one_len(subvol, s->s_root, strlen(subvol));
222 if (IS_ERR(root)) {
223 up_write(&s->s_umount);
224 deactivate_super(s);
225 error = PTR_ERR(root);
226 goto error;
227 }
228 if (!root->d_inode) {
229 dput(root);
230 up_write(&s->s_umount);
231 deactivate_super(s);
232 error = -ENXIO;
233 goto error;
234 }
235 } else {
236 root = dget(s->s_root);
237 }
238
239 mnt->mnt_sb = s;
240 mnt->mnt_root = root;
241 return 0;
242
243error_s:
244 error = PTR_ERR(s);
245error_bdev:
246 close_bdev_excl(bdev);
247error:
248 return error;
249}
250/* end copy & paste */
251
252static int btrfs_get_sb(struct file_system_type *fs_type,
253 int flags, const char *identifier, void *data, struct vfsmount *mnt)
254{
255 int ret;
256 char *_identifier = kstrdup(identifier, GFP_KERNEL);
257 char *subvol_name;
258 const char *dev_name;
259
260 subvol_name = _identifier;
261 dev_name = strsep(&subvol_name, ":");
262 if (!dev_name)
263 return -ENOMEM;
264
265 ret = btrfs_get_sb_bdev(fs_type, flags, dev_name, data,
266 btrfs_fill_super, mnt,
267 subvol_name ? subvol_name : "default");
268 kfree(_identifier);
269 return ret;
Chris Mason2e635a22007-03-21 11:12:56 -0400270}
271
Chris Mason8fd17792007-04-19 21:01:03 -0400272static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
273{
274 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
Chris Mason4b52dff2007-06-26 10:06:50 -0400275 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
Chris Mason8fd17792007-04-19 21:01:03 -0400276
277 buf->f_namelen = BTRFS_NAME_LEN;
278 buf->f_blocks = btrfs_super_total_blocks(disk_super);
279 buf->f_bfree = buf->f_blocks - btrfs_super_blocks_used(disk_super);
280 buf->f_bavail = buf->f_bfree;
281 buf->f_bsize = dentry->d_sb->s_blocksize;
282 buf->f_type = BTRFS_SUPER_MAGIC;
283 return 0;
284}
Chris Masonb5133862007-04-24 11:52:22 -0400285
Chris Mason2e635a22007-03-21 11:12:56 -0400286static struct file_system_type btrfs_fs_type = {
287 .owner = THIS_MODULE,
288 .name = "btrfs",
289 .get_sb = btrfs_get_sb,
290 .kill_sb = kill_block_super,
291 .fs_flags = FS_REQUIRES_DEV,
292};
293
Chris Masone20d96d2007-03-22 12:13:20 -0400294static struct super_operations btrfs_super_ops = {
Chris Mason134e9732007-03-25 13:44:56 -0400295 .delete_inode = btrfs_delete_inode,
Chris Masone20d96d2007-03-22 12:13:20 -0400296 .put_super = btrfs_put_super,
297 .read_inode = btrfs_read_locked_inode,
Chris Masond5719762007-03-23 10:01:08 -0400298 .write_super = btrfs_write_super,
299 .sync_fs = btrfs_sync_fs,
Chris Mason4730a4b2007-03-26 12:00:39 -0400300 .write_inode = btrfs_write_inode,
Chris Masonb5133862007-04-24 11:52:22 -0400301 .dirty_inode = btrfs_dirty_inode,
Chris Mason2c90e5d62007-04-02 10:50:19 -0400302 .alloc_inode = btrfs_alloc_inode,
303 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -0400304 .statfs = btrfs_statfs,
Chris Masone20d96d2007-03-22 12:13:20 -0400305};
306
Chris Mason2e635a22007-03-21 11:12:56 -0400307static int __init init_btrfs_fs(void)
308{
Chris Mason2c90e5d62007-04-02 10:50:19 -0400309 int err;
Josef Bacik58176a92007-08-29 15:47:34 -0400310
311 err = btrfs_init_sysfs();
312 if (err)
313 return err;
314
Chris Mason08607c12007-06-08 15:33:54 -0400315 btrfs_init_transaction_sys();
Chris Mason39279cc2007-06-12 06:35:45 -0400316 err = btrfs_init_cachep();
Chris Mason2c90e5d62007-04-02 10:50:19 -0400317 if (err)
318 return err;
Chris Masona52d9a82007-08-27 16:49:44 -0400319 extent_map_init();
Chris Mason2e635a22007-03-21 11:12:56 -0400320 return register_filesystem(&btrfs_fs_type);
321}
322
323static void __exit exit_btrfs_fs(void)
324{
Chris Mason08607c12007-06-08 15:33:54 -0400325 btrfs_exit_transaction_sys();
Chris Mason39279cc2007-06-12 06:35:45 -0400326 btrfs_destroy_cachep();
Chris Masona52d9a82007-08-27 16:49:44 -0400327 extent_map_exit();
Chris Mason2e635a22007-03-21 11:12:56 -0400328 unregister_filesystem(&btrfs_fs_type);
Josef Bacik58176a92007-08-29 15:47:34 -0400329 btrfs_exit_sysfs();
Chris Mason2e635a22007-03-21 11:12:56 -0400330}
331
332module_init(init_btrfs_fs)
333module_exit(exit_btrfs_fs)
334
335MODULE_LICENSE("GPL");