blob: ef8ad18b275c04ab5b828d30a6bd3dbea27292b5 [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
Chris Mason2e635a22007-03-21 11:12:56 -040019#include <linux/module.h>
Chris Masone20d96d2007-03-22 12:13:20 -040020#include <linux/buffer_head.h>
Chris Mason2e635a22007-03-21 11:12:56 -040021#include <linux/fs.h>
22#include <linux/pagemap.h>
23#include <linux/highmem.h>
24#include <linux/time.h>
25#include <linux/init.h>
26#include <linux/string.h>
27#include <linux/smp_lock.h>
28#include <linux/backing-dev.h>
Chris Masondee26a92007-03-26 16:00:06 -040029#include <linux/mpage.h>
Chris Mason75dfe392007-03-29 11:56:46 -040030#include <linux/swap.h>
31#include <linux/writeback.h>
Chris Mason8fd17792007-04-19 21:01:03 -040032#include <linux/statfs.h>
Chris Mason08607c12007-06-08 15:33:54 -040033#include <linux/compat.h>
Chris Mason2e635a22007-03-21 11:12:56 -040034#include "ctree.h"
Chris Masone20d96d2007-03-22 12:13:20 -040035#include "disk-io.h"
Chris Masond5719762007-03-23 10:01:08 -040036#include "transaction.h"
Chris Mason2c90e5d2007-04-02 10:50:19 -040037#include "btrfs_inode.h"
Chris Masonc5739bb2007-04-10 09:27:04 -040038#include "ioctl.h"
Chris Mason3a686372007-05-24 13:35:57 -040039#include "print-tree.h"
Chris Mason2e635a22007-03-21 11:12:56 -040040
41#define BTRFS_SUPER_MAGIC 0x9123682E
Chris Masone20d96d2007-03-22 12:13:20 -040042
Chris Masone20d96d2007-03-22 12:13:20 -040043static struct super_operations btrfs_super_ops;
Chris Masone20d96d2007-03-22 12:13:20 -040044
45static void btrfs_put_super (struct super_block * sb)
46{
47 struct btrfs_root *root = btrfs_sb(sb);
48 int ret;
49
50 ret = close_ctree(root);
51 if (ret) {
52 printk("close ctree returns %d\n", ret);
53 }
54 sb->s_fs_info = NULL;
55}
Chris Mason2e635a22007-03-21 11:12:56 -040056
57static int btrfs_fill_super(struct super_block * sb, void * data, int silent)
58{
59 struct inode * inode;
Chris Masone20d96d2007-03-22 12:13:20 -040060 struct dentry * root_dentry;
61 struct btrfs_super_block *disk_super;
Chris Mason0f7d52f2007-04-09 10:42:37 -040062 struct btrfs_root *tree_root;
Chris Masond6e4a422007-04-06 15:37:36 -040063 struct btrfs_inode *bi;
Chris Mason39279cc2007-06-12 06:35:45 -040064 int err;
Chris Mason2e635a22007-03-21 11:12:56 -040065
66 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -040067 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -040068 sb->s_op = &btrfs_super_ops;
Chris Mason2e635a22007-03-21 11:12:56 -040069 sb->s_time_gran = 1;
Chris Masone20d96d2007-03-22 12:13:20 -040070
Chris Mason0f7d52f2007-04-09 10:42:37 -040071 tree_root = open_ctree(sb);
Chris Masond98237b2007-03-28 13:57:48 -040072
Chris Mason39279cc2007-06-12 06:35:45 -040073 if (!tree_root || IS_ERR(tree_root)) {
Chris Masone20d96d2007-03-22 12:13:20 -040074 printk("btrfs: open_ctree failed\n");
75 return -EIO;
76 }
Chris Mason0f7d52f2007-04-09 10:42:37 -040077 sb->s_fs_info = tree_root;
78 disk_super = tree_root->fs_info->disk_super;
Chris Masonc5739bb2007-04-10 09:27:04 -040079 inode = btrfs_iget_locked(sb, btrfs_super_root_dir(disk_super),
80 tree_root);
Chris Masond6e4a422007-04-06 15:37:36 -040081 bi = BTRFS_I(inode);
82 bi->location.objectid = inode->i_ino;
83 bi->location.offset = 0;
84 bi->location.flags = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -040085 bi->root = tree_root;
Chris Masond6e4a422007-04-06 15:37:36 -040086 btrfs_set_key_type(&bi->location, BTRFS_INODE_ITEM_KEY);
87
Chris Mason39279cc2007-06-12 06:35:45 -040088 if (!inode) {
89 err = -ENOMEM;
90 goto fail_close;
91 }
Chris Masone20d96d2007-03-22 12:13:20 -040092 if (inode->i_state & I_NEW) {
93 btrfs_read_locked_inode(inode);
94 unlock_new_inode(inode);
95 }
Chris Mason2e635a22007-03-21 11:12:56 -040096
Chris Masone20d96d2007-03-22 12:13:20 -040097 root_dentry = d_alloc_root(inode);
98 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -040099 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400100 err = -ENOMEM;
101 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400102 }
Chris Masone20d96d2007-03-22 12:13:20 -0400103 sb->s_root = root_dentry;
Chris Mason08607c12007-06-08 15:33:54 -0400104 btrfs_transaction_queue_work(tree_root, HZ * 30);
Chris Mason2e635a22007-03-21 11:12:56 -0400105 return 0;
Chris Mason2e635a22007-03-21 11:12:56 -0400106
Chris Mason39279cc2007-06-12 06:35:45 -0400107fail_close:
108 close_ctree(tree_root);
Chris Masond5719762007-03-23 10:01:08 -0400109 return err;
110}
111
Chris Masond5719762007-03-23 10:01:08 -0400112static int btrfs_sync_fs(struct super_block *sb, int wait)
113{
114 struct btrfs_trans_handle *trans;
115 struct btrfs_root *root;
116 int ret;
Chris Masond98237b2007-03-28 13:57:48 -0400117 root = btrfs_sb(sb);
Chris Masondf2ce342007-03-23 11:00:45 -0400118
Chris Masond5719762007-03-23 10:01:08 -0400119 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400120 if (!wait) {
Chris Mason7cfcc172007-04-02 14:53:59 -0400121 filemap_flush(root->fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400122 return 0;
123 }
Chris Masond561c022007-03-23 19:47:49 -0400124 mutex_lock(&root->fs_info->fs_mutex);
Chris Masond5719762007-03-23 10:01:08 -0400125 trans = btrfs_start_transaction(root, 1);
126 ret = btrfs_commit_transaction(trans, root);
127 sb->s_dirt = 0;
128 BUG_ON(ret);
Chris Masond561c022007-03-23 19:47:49 -0400129 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond5719762007-03-23 10:01:08 -0400130 return 0;
131}
132
Chris Masond561c022007-03-23 19:47:49 -0400133static void btrfs_write_super(struct super_block *sb)
134{
Chris Mason08607c12007-06-08 15:33:54 -0400135 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400136}
137
Chris Mason2e635a22007-03-21 11:12:56 -0400138static int btrfs_get_sb(struct file_system_type *fs_type,
139 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
140{
141 return get_sb_bdev(fs_type, flags, dev_name, data,
142 btrfs_fill_super, mnt);
143}
144
Chris Mason8fd17792007-04-19 21:01:03 -0400145static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
146{
147 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
148 struct btrfs_super_block *disk_super = root->fs_info->disk_super;
149
150 buf->f_namelen = BTRFS_NAME_LEN;
151 buf->f_blocks = btrfs_super_total_blocks(disk_super);
152 buf->f_bfree = buf->f_blocks - btrfs_super_blocks_used(disk_super);
153 buf->f_bavail = buf->f_bfree;
154 buf->f_bsize = dentry->d_sb->s_blocksize;
155 buf->f_type = BTRFS_SUPER_MAGIC;
156 return 0;
157}
Chris Masonb5133862007-04-24 11:52:22 -0400158
Chris Mason2e635a22007-03-21 11:12:56 -0400159static struct file_system_type btrfs_fs_type = {
160 .owner = THIS_MODULE,
161 .name = "btrfs",
162 .get_sb = btrfs_get_sb,
163 .kill_sb = kill_block_super,
164 .fs_flags = FS_REQUIRES_DEV,
165};
166
Chris Masone20d96d2007-03-22 12:13:20 -0400167static struct super_operations btrfs_super_ops = {
Chris Mason134e9732007-03-25 13:44:56 -0400168 .delete_inode = btrfs_delete_inode,
Chris Masone20d96d2007-03-22 12:13:20 -0400169 .put_super = btrfs_put_super,
170 .read_inode = btrfs_read_locked_inode,
Chris Masond5719762007-03-23 10:01:08 -0400171 .write_super = btrfs_write_super,
172 .sync_fs = btrfs_sync_fs,
Chris Mason4730a4b2007-03-26 12:00:39 -0400173 .write_inode = btrfs_write_inode,
Chris Masonb5133862007-04-24 11:52:22 -0400174 .dirty_inode = btrfs_dirty_inode,
Chris Mason2c90e5d2007-04-02 10:50:19 -0400175 .alloc_inode = btrfs_alloc_inode,
176 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -0400177 .statfs = btrfs_statfs,
Chris Masone20d96d2007-03-22 12:13:20 -0400178};
179
Chris Mason2e635a22007-03-21 11:12:56 -0400180static int __init init_btrfs_fs(void)
181{
Chris Mason2c90e5d2007-04-02 10:50:19 -0400182 int err;
Chris Mason08607c12007-06-08 15:33:54 -0400183 btrfs_init_transaction_sys();
Chris Mason39279cc2007-06-12 06:35:45 -0400184 err = btrfs_init_cachep();
Chris Mason2c90e5d2007-04-02 10:50:19 -0400185 if (err)
186 return err;
Chris Mason2e635a22007-03-21 11:12:56 -0400187 return register_filesystem(&btrfs_fs_type);
188}
189
190static void __exit exit_btrfs_fs(void)
191{
Chris Mason08607c12007-06-08 15:33:54 -0400192 btrfs_exit_transaction_sys();
Chris Mason39279cc2007-06-12 06:35:45 -0400193 btrfs_destroy_cachep();
Chris Mason2e635a22007-03-21 11:12:56 -0400194 unregister_filesystem(&btrfs_fs_type);
Chris Mason2e635a22007-03-21 11:12:56 -0400195}
196
197module_init(init_btrfs_fs)
198module_exit(exit_btrfs_fs)
199
200MODULE_LICENSE("GPL");