disk-io.c 10.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
#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"
12
#include "transaction.h"
13 14

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

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

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

C
Chris Mason 已提交
46
struct btrfs_buffer *alloc_tree_block(struct btrfs_root *root, u64 blocknr)
47
{
C
Chris Mason 已提交
48
	struct btrfs_buffer *buf;
49
	int ret;
C
Chris Mason 已提交
50 51

	buf = malloc(sizeof(struct btrfs_buffer) + root->blocksize);
52 53 54 55
	if (!buf)
		return buf;
	allocated_blocks++;
	buf->blocknr = blocknr;
56 57 58
	buf->count = 2;
	INIT_LIST_HEAD(&buf->dirty);
	free_some_buffers(root);
59 60 61
	radix_tree_preload(GFP_KERNEL);
	ret = radix_tree_insert(&root->cache_radix, blocknr, buf);
	radix_tree_preload_end();
62 63
	list_add_tail(&buf->cache, &root->cache);
	root->cache_size++;
64 65 66 67 68 69 70
	if (ret) {
		free(buf);
		return NULL;
	}
	return buf;
}

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

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

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

111 112
int dirty_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
		     struct btrfs_buffer *buf)
113 114 115 116 117 118 119 120
{
	if (!list_empty(&buf->dirty))
		return 0;
	list_add_tail(&buf->dirty, &root->trans);
	buf->count++;
	return 0;
}

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

131 132
int write_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
		     struct btrfs_buffer *buf)
133 134
{
	u64 blocknr = buf->blocknr;
C
Chris Mason 已提交
135
	loff_t offset = blocknr * root->blocksize;
136 137
	int ret;

138
	if (buf->blocknr != btrfs_header_blocknr(&buf->node.header))
139
		BUG();
C
Chris Mason 已提交
140 141
	ret = pwrite(root->fp, &buf->node, root->blocksize, offset);
	if (ret != root->blocksize)
142 143 144 145
		return ret;
	return 0;
}

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

163 164 165
static int commit_extent_and_tree_roots(struct btrfs_trans_handle *trans,
					struct btrfs_root *tree_root, struct
					btrfs_root *extent_root)
166 167 168 169 170 171 172 173 174 175
{
	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);
176
		ret = btrfs_update_root(trans, tree_root,
177 178 179 180
					&extent_root->root_key,
					&extent_root->root_item);
		BUG_ON(ret);
	}
181 182
	__commit_transaction(trans, extent_root);
	__commit_transaction(trans, tree_root);
183 184 185
	return 0;
}

186 187
int btrfs_commit_transaction(struct btrfs_trans_handle *trans, struct
			     btrfs_root *root, struct btrfs_super_block *s)
188
{
189
	int ret = 0;
190 191
	struct btrfs_buffer *snap = root->commit_root;
	struct btrfs_key snap_key;
192

193
	ret = __commit_transaction(trans, root);
194
	BUG_ON(ret);
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);
203
	ret = btrfs_insert_root(trans, root->tree_root, &root->root_key,
204 205 206
				&root->root_item);
	BUG_ON(ret);

207 208
	ret = commit_extent_and_tree_roots(trans, root->tree_root,
					   root->extent_root);
209 210
	BUG_ON(ret);

211 212 213
	write_ctree_super(trans, root, s);
	btrfs_finish_extent_commit(trans, root->extent_root);
	btrfs_finish_extent_commit(trans, root->tree_root);
214 215 216

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

220
	ret = btrfs_del_root(trans, root->tree_root, &snap_key);
221 222
	BUG_ON(ret);

223 224 225
	return ret;
}

C
Chris Mason 已提交
226 227
static int __setup_root(struct btrfs_super_block *super,
			struct btrfs_root *root, u64 objectid, int fp)
228
{
229 230
	INIT_LIST_HEAD(&root->trans);
	INIT_LIST_HEAD(&root->cache);
231
	root->cache_size = 0;
232
	root->fp = fp;
C
Chris Mason 已提交
233
	root->node = NULL;
234
	root->commit_root = NULL;
C
Chris Mason 已提交
235 236
	root->blocksize = btrfs_super_blocksize(super);
	root->ref_cows = 0;
237
	memset(&root->current_insert, 0, sizeof(root->current_insert));
238
	memset(&root->last_insert, 0, sizeof(root->last_insert));
239 240 241 242 243
	memset(&root->root_key, 0, sizeof(root->root_key));
	memset(&root->root_item, 0, sizeof(root->root_item));
	return 0;
}

C
Chris Mason 已提交
244 245 246
static int find_and_setup_root(struct btrfs_super_block *super,
			       struct btrfs_root *tree_root, u64 objectid,
			       struct btrfs_root *root, int fp)
247 248 249
{
	int ret;

C
Chris Mason 已提交
250
	__setup_root(super, root, objectid, fp);
251 252 253 254 255 256 257
	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);
258 259 260
	return 0;
}

C
Chris Mason 已提交
261
struct btrfs_root *open_ctree(char *filename, struct btrfs_super_block *super)
262
{
C
Chris Mason 已提交
263 264
	struct btrfs_root *root = malloc(sizeof(struct btrfs_root));
	struct btrfs_root *extent_root = malloc(sizeof(struct btrfs_root));
265
	struct btrfs_root *tree_root = malloc(sizeof(struct btrfs_root));
266 267 268
	int fp;
	int ret;

269 270 271 272 273 274 275 276 277
	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 已提交
278
	fp = open(filename, O_CREAT | O_RDWR, 0600);
279 280 281 282
	if (fp < 0) {
		free(root);
		return NULL;
	}
283
	INIT_RADIX_TREE(&root->cache_radix, GFP_KERNEL);
284 285
	INIT_RADIX_TREE(&root->pinned_radix, GFP_KERNEL);
	INIT_RADIX_TREE(&extent_root->pinned_radix, GFP_KERNEL);
286
	INIT_RADIX_TREE(&extent_root->cache_radix, GFP_KERNEL);
287 288 289
	INIT_RADIX_TREE(&tree_root->pinned_radix, GFP_KERNEL);
	INIT_RADIX_TREE(&tree_root->cache_radix, GFP_KERNEL);

C
Chris Mason 已提交
290
	ret = pread(fp, super, sizeof(struct btrfs_super_block),
C
Chris Mason 已提交
291
		     BTRFS_SUPER_INFO_OFFSET);
292
	if (ret == 0 || btrfs_super_root(super) == 0) {
C
Chris Mason 已提交
293
		printf("making new FS!\n");
C
Chris Mason 已提交
294
		ret = mkfs(fp, 0, 1024);
295 296
		if (ret)
			return NULL;
C
Chris Mason 已提交
297
		ret = pread(fp, super, sizeof(struct btrfs_super_block),
C
Chris Mason 已提交
298
			     BTRFS_SUPER_INFO_OFFSET);
C
Chris Mason 已提交
299
		if (ret != sizeof(struct btrfs_super_block))
300 301 302
			return NULL;
	}
	BUG_ON(ret < 0);
303

C
Chris Mason 已提交
304
	__setup_root(super, tree_root, BTRFS_ROOT_TREE_OBJECTID, fp);
305 306 307
	tree_root->node = read_tree_block(tree_root, btrfs_super_root(super));
	BUG_ON(!tree_root->node);

C
Chris Mason 已提交
308
	ret = find_and_setup_root(super, tree_root, BTRFS_EXTENT_TREE_OBJECTID,
309 310 311
				  extent_root, fp);
	BUG_ON(ret);

C
Chris Mason 已提交
312
	ret = find_and_setup_root(super, tree_root, BTRFS_FS_TREE_OBJECTID,
313 314 315
				  root, fp);
	BUG_ON(ret);

316 317
	root->commit_root = root->node;
	root->node->count++;
318
	root->ref_cows = 1;
319 320 321
	return root;
}

322 323
int write_ctree_super(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_super_block *s)
324 325
{
	int ret;
326
	btrfs_set_super_root(s, root->tree_root->node->blocknr);
C
Chris Mason 已提交
327
	ret = pwrite(root->fp, s, sizeof(*s),
C
Chris Mason 已提交
328
		     BTRFS_SUPER_INFO_OFFSET);
C
Chris Mason 已提交
329 330
	if (ret != sizeof(*s)) {
		fprintf(stderr, "failed to write new super block err %d\n", ret);
331
		return ret;
C
Chris Mason 已提交
332 333 334 335
	}
	return 0;
}

C
Chris Mason 已提交
336
static int drop_cache(struct btrfs_root *root)
337 338
{
	while(!list_empty(&root->cache)) {
C
Chris Mason 已提交
339 340
		struct btrfs_buffer *b = list_entry(root->cache.next,
						   struct btrfs_buffer, cache);
341
		list_del_init(&b->cache);
C
Chris Mason 已提交
342
		btrfs_block_release(root, b);
343 344 345
	}
	return 0;
}
C
Chris Mason 已提交
346
int close_ctree(struct btrfs_root *root, struct btrfs_super_block *s)
C
Chris Mason 已提交
347
{
348
	int ret;
349 350 351 352 353 354
	struct btrfs_trans_handle *trans;

	trans = root->running_transaction;
	btrfs_commit_transaction(trans, root, s);
	ret = commit_extent_and_tree_roots(trans, root->tree_root,
					   root->extent_root);
355
	BUG_ON(ret);
356
	write_ctree_super(trans, root, s);
357
	drop_cache(root->extent_root);
358
	drop_cache(root->tree_root);
359 360 361
	drop_cache(root);
	BUG_ON(!list_empty(&root->trans));
	BUG_ON(!list_empty(&root->extent_root->trans));
362
	BUG_ON(!list_empty(&root->tree_root->trans));
363

C
Chris Mason 已提交
364 365
	close(root->fp);
	if (root->node)
C
Chris Mason 已提交
366
		btrfs_block_release(root, root->node);
C
Chris Mason 已提交
367
	if (root->extent_root->node)
C
Chris Mason 已提交
368
		btrfs_block_release(root->extent_root, root->extent_root->node);
369 370
	if (root->tree_root->node)
		btrfs_block_release(root->tree_root, root->tree_root->node);
C
Chris Mason 已提交
371
	btrfs_block_release(root, root->commit_root);
C
Chris Mason 已提交
372 373
	free(root);
	printf("on close %d blocks are allocated\n", allocated_blocks);
374 375 376
	return 0;
}

C
Chris Mason 已提交
377
void btrfs_block_release(struct btrfs_root *root, struct btrfs_buffer *buf)
378 379
{
	buf->count--;
C
Chris Mason 已提交
380 381
	if (buf->count < 0)
		BUG();
382
	if (buf->count == 0) {
C
Chris Mason 已提交
383 384
		BUG_ON(!list_empty(&buf->cache));
		BUG_ON(!list_empty(&buf->dirty));
385 386 387 388 389 390 391
		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--;
392 393
		BUG_ON(root->cache_size == 0);
		root->cache_size--;
394 395 396
	}
}