disk-io.c 9.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
#define _XOPEN_SOURCE 500
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include "kerncompat.h"
#include "radix-tree.h"
#include "ctree.h"
#include "disk-io.h"

static int allocated_blocks = 0;
14
int cache_max = 10000;
15

C
Chris Mason 已提交
16
static int check_tree_block(struct btrfs_root *root, struct btrfs_buffer *buf)
17
{
18
	if (buf->blocknr != btrfs_header_blocknr(&buf->node.header))
19
		BUG();
20 21
	if (root->node && btrfs_header_parentid(&buf->node.header) !=
	    btrfs_header_parentid(&root->node->node.header))
22 23
		BUG();
	return 0;
24 25
}

C
Chris Mason 已提交
26
static int free_some_buffers(struct btrfs_root *root)
27 28
{
	struct list_head *node, *next;
C
Chris Mason 已提交
29
	struct btrfs_buffer *b;
30 31 32
	if (root->cache_size < cache_max)
		return 0;
	list_for_each_safe(node, next, &root->cache) {
C
Chris Mason 已提交
33
		b = list_entry(node, struct btrfs_buffer, cache);
34 35 36
		if (b->count == 1) {
			BUG_ON(!list_empty(&b->dirty));
			list_del_init(&b->cache);
C
Chris Mason 已提交
37
			btrfs_block_release(root, b);
38
			if (root->cache_size < cache_max)
39
				break;
40 41 42 43 44
		}
	}
	return 0;
}

C
Chris Mason 已提交
45
struct btrfs_buffer *alloc_tree_block(struct btrfs_root *root, u64 blocknr)
46
{
C
Chris Mason 已提交
47
	struct btrfs_buffer *buf;
48
	int ret;
C
Chris Mason 已提交
49
	buf = malloc(sizeof(struct btrfs_buffer));
50 51 52 53
	if (!buf)
		return buf;
	allocated_blocks++;
	buf->blocknr = blocknr;
54 55 56
	buf->count = 2;
	INIT_LIST_HEAD(&buf->dirty);
	free_some_buffers(root);
57 58 59
	radix_tree_preload(GFP_KERNEL);
	ret = radix_tree_insert(&root->cache_radix, blocknr, buf);
	radix_tree_preload_end();
60 61
	list_add_tail(&buf->cache, &root->cache);
	root->cache_size++;
62 63 64 65 66 67 68
	if (ret) {
		free(buf);
		return NULL;
	}
	return buf;
}

C
Chris Mason 已提交
69
struct btrfs_buffer *find_tree_block(struct btrfs_root *root, u64 blocknr)
70
{
C
Chris Mason 已提交
71
	struct btrfs_buffer *buf;
72 73 74 75 76 77 78 79 80
	buf = radix_tree_lookup(&root->cache_radix, blocknr);
	if (buf) {
		buf->count++;
	} else {
		buf = alloc_tree_block(root, blocknr);
		if (!buf) {
			BUG();
			return NULL;
		}
81 82 83 84
	}
	return buf;
}

C
Chris Mason 已提交
85
struct btrfs_buffer *read_tree_block(struct btrfs_root *root, u64 blocknr)
86
{
C
Chris Mason 已提交
87 88
	loff_t offset = blocknr * BTRFS_BLOCKSIZE;
	struct btrfs_buffer *buf;
89 90 91 92 93
	int ret;

	buf = radix_tree_lookup(&root->cache_radix, blocknr);
	if (buf) {
		buf->count++;
94 95 96 97
	} else {
		buf = alloc_tree_block(root, blocknr);
		if (!buf)
			return NULL;
C
Chris Mason 已提交
98 99
		ret = pread(root->fp, &buf->node, BTRFS_BLOCKSIZE, offset);
		if (ret != BTRFS_BLOCKSIZE) {
100 101 102
			free(buf);
			return NULL;
		}
103
	}
104
	if (check_tree_block(root, buf))
C
Chris Mason 已提交
105
		BUG();
106 107 108
	return buf;
}

C
Chris Mason 已提交
109
int dirty_tree_block(struct btrfs_root *root, struct btrfs_buffer *buf)
110 111 112 113 114 115 116 117
{
	if (!list_empty(&buf->dirty))
		return 0;
	list_add_tail(&buf->dirty, &root->trans);
	buf->count++;
	return 0;
}

C
Chris Mason 已提交
118
int clean_tree_block(struct btrfs_root *root, struct btrfs_buffer *buf)
119 120 121
{
	if (!list_empty(&buf->dirty)) {
		list_del_init(&buf->dirty);
C
Chris Mason 已提交
122
		btrfs_block_release(root, buf);
123 124 125 126
	}
	return 0;
}

C
Chris Mason 已提交
127
int write_tree_block(struct btrfs_root *root, struct btrfs_buffer *buf)
128 129
{
	u64 blocknr = buf->blocknr;
C
Chris Mason 已提交
130
	loff_t offset = blocknr * BTRFS_BLOCKSIZE;
131 132
	int ret;

133
	if (buf->blocknr != btrfs_header_blocknr(&buf->node.header))
134
		BUG();
C
Chris Mason 已提交
135 136
	ret = pwrite(root->fp, &buf->node, BTRFS_BLOCKSIZE, offset);
	if (ret != BTRFS_BLOCKSIZE)
137 138 139 140
		return ret;
	return 0;
}

C
Chris Mason 已提交
141
static int __commit_transaction(struct btrfs_root *root)
142
{
C
Chris Mason 已提交
143
	struct btrfs_buffer *b;
144 145 146
	int ret = 0;
	int wret;
	while(!list_empty(&root->trans)) {
C
Chris Mason 已提交
147
		b = list_entry(root->trans.next, struct btrfs_buffer, dirty);
148 149 150 151
		list_del_init(&b->dirty);
		wret = write_tree_block(root, b);
		if (wret)
			ret = wret;
C
Chris Mason 已提交
152
		btrfs_block_release(root, b);
153 154 155 156
	}
	return ret;
}

157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
static int commit_extent_and_tree_roots(struct btrfs_root *tree_root,
					struct btrfs_root *extent_root)
{
	int ret;
	u64 old_extent_block;

	while(1) {
		old_extent_block = btrfs_root_blocknr(&extent_root->root_item);
		if (old_extent_block == extent_root->node->blocknr)
			break;
		btrfs_set_root_blocknr(&extent_root->root_item,
				       extent_root->node->blocknr);
		ret = btrfs_update_root(tree_root,
					&extent_root->root_key,
					&extent_root->root_item);
		BUG_ON(ret);
	}
	__commit_transaction(extent_root);
	__commit_transaction(tree_root);
	return 0;
}

C
Chris Mason 已提交
179 180
int btrfs_commit_transaction(struct btrfs_root *root,
			     struct btrfs_super_block *s)
181
{
182
	int ret = 0;
183 184
	struct btrfs_buffer *snap = root->commit_root;
	struct btrfs_key snap_key;
185

186 187
	ret = __commit_transaction(root);
	BUG_ON(ret);
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202

	if (root->commit_root == root->node)
		return 0;

	memcpy(&snap_key, &root->root_key, sizeof(snap_key));
	root->root_key.offset++;

	btrfs_set_root_blocknr(&root->root_item, root->node->blocknr);
	ret = btrfs_insert_root(root->tree_root, &root->root_key,
				&root->root_item);
	BUG_ON(ret);

	ret = commit_extent_and_tree_roots(root->tree_root, root->extent_root);
	BUG_ON(ret);

203
        write_ctree_super(root, s);
204 205 206 207 208 209 210 211 212 213 214
	btrfs_finish_extent_commit(root->extent_root);
	btrfs_finish_extent_commit(root->tree_root);

	root->commit_root = root->node;
	root->node->count++;
	ret = btrfs_drop_snapshot(root, snap);
	BUG_ON(ret);

	ret = btrfs_del_root(root->tree_root, &snap_key);
	BUG_ON(ret);

215 216 217
	return ret;
}

218
static int __setup_root(struct btrfs_root *root, u64 objectid, int fp)
219
{
220 221
	INIT_LIST_HEAD(&root->trans);
	INIT_LIST_HEAD(&root->cache);
222
	root->cache_size = 0;
223
	root->fp = fp;
C
Chris Mason 已提交
224
	root->node = NULL;
225 226
	root->commit_root = NULL;
	memset(&root->current_insert, 0, sizeof(root->current_insert));
227
	memset(&root->last_insert, 0, sizeof(root->last_insert));
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
	memset(&root->root_key, 0, sizeof(root->root_key));
	memset(&root->root_item, 0, sizeof(root->root_item));
	return 0;
}

static int find_and_setup_root(struct btrfs_root *tree_root, u64 objectid,
			struct btrfs_root *root, int fp)
{
	int ret;

	__setup_root(root, objectid, fp);
	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));
	root->ref_cows = 0;
	BUG_ON(!root->node);
247 248 249
	return 0;
}

C
Chris Mason 已提交
250
struct btrfs_root *open_ctree(char *filename, struct btrfs_super_block *super)
251
{
C
Chris Mason 已提交
252 253
	struct btrfs_root *root = malloc(sizeof(struct btrfs_root));
	struct btrfs_root *extent_root = malloc(sizeof(struct btrfs_root));
254
	struct btrfs_root *tree_root = malloc(sizeof(struct btrfs_root));
255 256 257
	int fp;
	int ret;

258 259 260 261 262 263 264 265 266
	root->extent_root = extent_root;
	root->tree_root = tree_root;

	extent_root->extent_root = extent_root;
	extent_root->tree_root = tree_root;

	tree_root->extent_root = extent_root;
	tree_root->tree_root = tree_root;

C
Chris Mason 已提交
267
	fp = open(filename, O_CREAT | O_RDWR, 0600);
268 269 270 271
	if (fp < 0) {
		free(root);
		return NULL;
	}
272
	INIT_RADIX_TREE(&root->cache_radix, GFP_KERNEL);
273 274
	INIT_RADIX_TREE(&root->pinned_radix, GFP_KERNEL);
	INIT_RADIX_TREE(&extent_root->pinned_radix, GFP_KERNEL);
275
	INIT_RADIX_TREE(&extent_root->cache_radix, GFP_KERNEL);
276 277 278
	INIT_RADIX_TREE(&tree_root->pinned_radix, GFP_KERNEL);
	INIT_RADIX_TREE(&tree_root->cache_radix, GFP_KERNEL);

C
Chris Mason 已提交
279 280
	ret = pread(fp, super, sizeof(struct btrfs_super_block),
		     BTRFS_SUPER_INFO_OFFSET(BTRFS_BLOCKSIZE));
281
	if (ret == 0 || btrfs_super_root(super) == 0) {
C
Chris Mason 已提交
282
		printf("making new FS!\n");
283
		ret = mkfs(fp, 0, BTRFS_BLOCKSIZE);
284 285
		if (ret)
			return NULL;
C
Chris Mason 已提交
286 287 288
		ret = pread(fp, super, sizeof(struct btrfs_super_block),
			     BTRFS_SUPER_INFO_OFFSET(BTRFS_BLOCKSIZE));
		if (ret != sizeof(struct btrfs_super_block))
289 290 291
			return NULL;
	}
	BUG_ON(ret < 0);
292 293 294 295 296 297 298 299 300 301 302 303 304

	__setup_root(tree_root, BTRFS_ROOT_TREE_OBJECTID, fp);
	tree_root->node = read_tree_block(tree_root, btrfs_super_root(super));
	BUG_ON(!tree_root->node);

	ret = find_and_setup_root(tree_root, BTRFS_EXTENT_TREE_OBJECTID,
				  extent_root, fp);
	BUG_ON(ret);

	ret = find_and_setup_root(tree_root, BTRFS_FS_TREE_OBJECTID,
				  root, fp);
	BUG_ON(ret);

305 306
	root->commit_root = root->node;
	root->node->count++;
307
	root->ref_cows = 1;
308 309 310
	return root;
}

C
Chris Mason 已提交
311
int write_ctree_super(struct btrfs_root *root, struct btrfs_super_block *s)
312 313
{
	int ret;
314
	btrfs_set_super_root(s, root->tree_root->node->blocknr);
C
Chris Mason 已提交
315 316
	ret = pwrite(root->fp, s, sizeof(*s),
		     BTRFS_SUPER_INFO_OFFSET(BTRFS_BLOCKSIZE));
C
Chris Mason 已提交
317 318
	if (ret != sizeof(*s)) {
		fprintf(stderr, "failed to write new super block err %d\n", ret);
319
		return ret;
C
Chris Mason 已提交
320 321 322 323
	}
	return 0;
}

C
Chris Mason 已提交
324
static int drop_cache(struct btrfs_root *root)
325 326
{
	while(!list_empty(&root->cache)) {
C
Chris Mason 已提交
327 328
		struct btrfs_buffer *b = list_entry(root->cache.next,
						   struct btrfs_buffer, cache);
329
		list_del_init(&b->cache);
C
Chris Mason 已提交
330
		btrfs_block_release(root, b);
331 332 333
	}
	return 0;
}
C
Chris Mason 已提交
334
int close_ctree(struct btrfs_root *root, struct btrfs_super_block *s)
C
Chris Mason 已提交
335
{
336
	int ret;
C
Chris Mason 已提交
337
	btrfs_commit_transaction(root, s);
338 339
	ret = commit_extent_and_tree_roots(root->tree_root, root->extent_root);
	BUG_ON(ret);
340
	write_ctree_super(root, s);
341
	drop_cache(root->extent_root);
342
	drop_cache(root->tree_root);
343 344 345
	drop_cache(root);
	BUG_ON(!list_empty(&root->trans));
	BUG_ON(!list_empty(&root->extent_root->trans));
346
	BUG_ON(!list_empty(&root->tree_root->trans));
347

C
Chris Mason 已提交
348 349
	close(root->fp);
	if (root->node)
C
Chris Mason 已提交
350
		btrfs_block_release(root, root->node);
C
Chris Mason 已提交
351
	if (root->extent_root->node)
C
Chris Mason 已提交
352
		btrfs_block_release(root->extent_root, root->extent_root->node);
353 354
	if (root->tree_root->node)
		btrfs_block_release(root->tree_root, root->tree_root->node);
C
Chris Mason 已提交
355
	btrfs_block_release(root, root->commit_root);
C
Chris Mason 已提交
356 357
	free(root);
	printf("on close %d blocks are allocated\n", allocated_blocks);
358 359 360
	return 0;
}

C
Chris Mason 已提交
361
void btrfs_block_release(struct btrfs_root *root, struct btrfs_buffer *buf)
362 363
{
	buf->count--;
C
Chris Mason 已提交
364 365
	if (buf->count < 0)
		BUG();
366
	if (buf->count == 0) {
C
Chris Mason 已提交
367 368
		BUG_ON(!list_empty(&buf->cache));
		BUG_ON(!list_empty(&buf->dirty));
369 370 371 372 373 374 375
		if (!radix_tree_lookup(&root->cache_radix, buf->blocknr))
			BUG();
		radix_tree_delete(&root->cache_radix, buf->blocknr);
		memset(buf, 0, sizeof(*buf));
		free(buf);
		BUG_ON(allocated_blocks == 0);
		allocated_blocks--;
376 377
		BUG_ON(root->cache_size == 0);
		root->cache_size--;
378 379 380
	}
}