disk-io.c 5.5 KB
Newer Older
C
Chris Mason 已提交
1 2
#include <linux/module.h>
#include <linux/fs.h>
3 4
#include "ctree.h"
#include "disk-io.h"
5
#include "transaction.h"
6

C
Chris Mason 已提交
7
static int check_tree_block(struct btrfs_root *root, struct buffer_head *buf)
8
{
C
Chris Mason 已提交
9 10
	struct btrfs_node *node = btrfs_buffer_node(buf);
	if (buf->b_blocknr != btrfs_header_blocknr(&node->header))
11
		BUG();
C
Chris Mason 已提交
12 13
	if (root->node && btrfs_header_parentid(&node->header) !=
	    btrfs_header_parentid(btrfs_buffer_header(root->node)))
14 15
		BUG();
	return 0;
16 17
}

C
Chris Mason 已提交
18
struct buffer_head *alloc_tree_block(struct btrfs_root *root, u64 blocknr)
19
{
C
Chris Mason 已提交
20
	return sb_getblk(root->fs_info->sb, blocknr);
21 22
}

C
Chris Mason 已提交
23
struct buffer_head *find_tree_block(struct btrfs_root *root, u64 blocknr)
24
{
C
Chris Mason 已提交
25
	return sb_getblk(root->fs_info->sb, blocknr);
26 27
}

C
Chris Mason 已提交
28
struct buffer_head *read_tree_block(struct btrfs_root *root, u64 blocknr)
29
{
C
Chris Mason 已提交
30
	struct buffer_head *buf = sb_bread(root->fs_info->sb, blocknr);
31

C
Chris Mason 已提交
32 33
	if (!buf)
		return buf;
34
	if (check_tree_block(root, buf))
C
Chris Mason 已提交
35
		BUG();
36 37 38
	return buf;
}

39
int dirty_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
C
Chris Mason 已提交
40
		     struct buffer_head *buf)
41
{
C
Chris Mason 已提交
42
	mark_buffer_dirty(buf);
43 44 45
	return 0;
}

46
int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
C
Chris Mason 已提交
47
		     struct buffer_head *buf)
48
{
C
Chris Mason 已提交
49
	clear_buffer_dirty(buf);
50 51 52
	return 0;
}

C
Chris Mason 已提交
53
static int __setup_root(struct btrfs_super_block *super,
54 55
			struct btrfs_root *root,
			struct btrfs_fs_info *fs_info,
C
Chris Mason 已提交
56
			u64 objectid)
57
{
C
Chris Mason 已提交
58
	root->node = NULL;
59
	root->commit_root = NULL;
C
Chris Mason 已提交
60 61
	root->blocksize = btrfs_super_blocksize(super);
	root->ref_cows = 0;
62
	root->fs_info = fs_info;
63 64 65 66 67
	memset(&root->root_key, 0, sizeof(root->root_key));
	memset(&root->root_item, 0, sizeof(root->root_item));
	return 0;
}

C
Chris Mason 已提交
68
static int find_and_setup_root(struct btrfs_super_block *super,
69 70 71
			       struct btrfs_root *tree_root,
			       struct btrfs_fs_info *fs_info,
			       u64 objectid,
C
Chris Mason 已提交
72
			       struct btrfs_root *root)
73 74 75
{
	int ret;

C
Chris Mason 已提交
76
	__setup_root(super, root, fs_info, objectid);
77 78 79 80 81 82 83
	ret = btrfs_find_last_root(tree_root, objectid,
				   &root->root_item, &root->root_key);
	BUG_ON(ret);

	root->node = read_tree_block(root,
				     btrfs_root_blocknr(&root->root_item));
	BUG_ON(!root->node);
84 85 86
	return 0;
}

C
Chris Mason 已提交
87 88 89
struct btrfs_root *open_ctree(struct super_block *sb,
			      struct buffer_head *sb_buffer,
			      struct btrfs_super_block *disk_super)
90
{
C
Chris Mason 已提交
91 92 93 94 95 96 97 98 99 100
	struct btrfs_root *root = kmalloc(sizeof(struct btrfs_root),
					  GFP_NOFS);
	struct btrfs_root *extent_root = kmalloc(sizeof(struct btrfs_root),
						 GFP_NOFS);
	struct btrfs_root *tree_root = kmalloc(sizeof(struct btrfs_root),
					       GFP_NOFS);
	struct btrfs_root *inode_root = kmalloc(sizeof(struct btrfs_root),
						GFP_NOFS);
	struct btrfs_fs_info *fs_info = kmalloc(sizeof(*fs_info),
						GFP_NOFS);
101 102
	int ret;

C
Chris Mason 已提交
103 104 105
	/* FIXME: don't be stupid */
	if (!btrfs_super_root(disk_super))
		return NULL;
106 107 108 109 110 111 112 113
	INIT_RADIX_TREE(&fs_info->pinned_radix, GFP_KERNEL);
	fs_info->running_transaction = NULL;
	fs_info->fs_root = root;
	fs_info->tree_root = tree_root;
	fs_info->extent_root = extent_root;
	fs_info->inode_root = inode_root;
	fs_info->last_inode_alloc = 0;
	fs_info->last_inode_alloc_dirid = 0;
C
Chris Mason 已提交
114 115 116
	fs_info->disk_super = disk_super;
	fs_info->sb_buffer = sb_buffer;
	fs_info->sb = sb;
C
Chris Mason 已提交
117
	mutex_init(&fs_info->trans_mutex);
118 119
	memset(&fs_info->current_insert, 0, sizeof(fs_info->current_insert));
	memset(&fs_info->last_insert, 0, sizeof(fs_info->last_insert));
120

C
Chris Mason 已提交
121 122 123
	__setup_root(disk_super, tree_root, fs_info, BTRFS_ROOT_TREE_OBJECTID);
	tree_root->node = read_tree_block(tree_root,
					  btrfs_super_root(disk_super));
124 125
	BUG_ON(!tree_root->node);

C
Chris Mason 已提交
126 127
	ret = find_and_setup_root(disk_super, tree_root, fs_info,
				  BTRFS_EXTENT_TREE_OBJECTID, extent_root);
128 129
	BUG_ON(ret);

C
Chris Mason 已提交
130 131
	ret = find_and_setup_root(disk_super, tree_root, fs_info,
				  BTRFS_INODE_MAP_OBJECTID, inode_root);
132 133
	BUG_ON(ret);

C
Chris Mason 已提交
134 135
	ret = find_and_setup_root(disk_super, tree_root, fs_info,
				  BTRFS_FS_TREE_OBJECTID, root);
136 137
	BUG_ON(ret);

138
	root->commit_root = root->node;
C
Chris Mason 已提交
139
	get_bh(root->node);
140
	root->ref_cows = 1;
141
	root->fs_info->generation = root->root_key.offset + 1;
142 143 144
	return root;
}

145
int write_ctree_super(struct btrfs_trans_handle *trans, struct btrfs_root
C
Chris Mason 已提交
146
		      *root)
147
{
C
Chris Mason 已提交
148 149
	return 0;
#if 0
150
	int ret;
C
Chris Mason 已提交
151 152
	btrfs_set_super_root(s, root->fs_info->tree_root->node->b_blocknr);

153
	ret = pwrite(root->fs_info->fp, s, sizeof(*s),
C
Chris Mason 已提交
154
		     BTRFS_SUPER_INFO_OFFSET);
C
Chris Mason 已提交
155 156
	if (ret != sizeof(*s)) {
		fprintf(stderr, "failed to write new super block err %d\n", ret);
157
		return ret;
C
Chris Mason 已提交
158 159
	}
	return 0;
C
Chris Mason 已提交
160
#endif
C
Chris Mason 已提交
161 162
}

C
Chris Mason 已提交
163
int close_ctree(struct btrfs_root *root)
C
Chris Mason 已提交
164
{
165
	int ret;
166 167
	struct btrfs_trans_handle *trans;

C
Chris Mason 已提交
168 169 170 171 172 173
	trans = btrfs_start_transaction(root, 1);
	btrfs_commit_transaction(trans, root);
	/* run commit again to  drop the original snapshot */
	trans = btrfs_start_transaction(root, 1);
	btrfs_commit_transaction(trans, root);
	ret = btrfs_write_and_wait_transaction(NULL, root);
174
	BUG_ON(ret);
C
Chris Mason 已提交
175
	write_ctree_super(NULL, root);
176

C
Chris Mason 已提交
177
	if (root->node)
C
Chris Mason 已提交
178
		btrfs_block_release(root, root->node);
179 180 181 182 183 184 185 186 187
	if (root->fs_info->extent_root->node)
		btrfs_block_release(root->fs_info->extent_root,
				    root->fs_info->extent_root->node);
	if (root->fs_info->inode_root->node)
		btrfs_block_release(root->fs_info->inode_root,
				    root->fs_info->inode_root->node);
	if (root->fs_info->tree_root->node)
		btrfs_block_release(root->fs_info->tree_root,
				    root->fs_info->tree_root->node);
C
Chris Mason 已提交
188
	btrfs_block_release(root, root->commit_root);
C
Chris Mason 已提交
189 190 191 192 193 194
	btrfs_block_release(root, root->fs_info->sb_buffer);
	kfree(root->fs_info->extent_root);
	kfree(root->fs_info->inode_root);
	kfree(root->fs_info->tree_root);
	kfree(root->fs_info);
	kfree(root);
195 196 197
	return 0;
}

C
Chris Mason 已提交
198
void btrfs_block_release(struct btrfs_root *root, struct buffer_head *buf)
199
{
C
Chris Mason 已提交
200
	brelse(buf);
201 202
}