disk-io.c 10.8 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
	if (root->fs_info->cache_size < cache_max)
32
		return 0;
33
	list_for_each_safe(node, next, &root->fs_info->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->fs_info->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
	radix_tree_preload(GFP_KERNEL);
60
	ret = radix_tree_insert(&root->fs_info->cache_radix, blocknr, buf);
61
	radix_tree_preload_end();
62 63
	list_add_tail(&buf->cache, &root->fs_info->cache);
	root->fs_info->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
	buf = radix_tree_lookup(&root->fs_info->cache_radix, blocknr);
75 76 77 78 79 80 81 82
	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
	int ret;

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

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

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

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

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

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

165 166
static int commit_tree_roots(struct btrfs_trans_handle *trans,
			     struct btrfs_fs_info *fs_info)
167 168 169
{
	int ret;
	u64 old_extent_block;
170 171 172 173 174 175 176 177 178 179
	struct btrfs_root *tree_root = fs_info->tree_root;
	struct btrfs_root *extent_root = fs_info->extent_root;
	struct btrfs_root *inode_root = fs_info->inode_root;

	btrfs_set_root_blocknr(&inode_root->root_item,
			       inode_root->node->blocknr);
	ret = btrfs_update_root(trans, tree_root,
				&inode_root->root_key,
				&inode_root->root_item);
	BUG_ON(ret);
180 181 182 183 184 185
	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);
186
		ret = btrfs_update_root(trans, tree_root,
187 188 189 190 191 192 193
					&extent_root->root_key,
					&extent_root->root_item);
		BUG_ON(ret);
	}
	return 0;
}

194 195
int btrfs_commit_transaction(struct btrfs_trans_handle *trans, struct
			     btrfs_root *root, struct btrfs_super_block *s)
196
{
197
	int ret = 0;
198 199
	struct btrfs_buffer *snap = root->commit_root;
	struct btrfs_key snap_key;
200

201 202 203 204 205 206 207
	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);
208 209 210 211 212
	ret = btrfs_insert_root(trans, root->fs_info->tree_root,
				&root->root_key, &root->root_item);
	BUG_ON(ret);

	ret = commit_tree_roots(trans, root->fs_info);
213 214
	BUG_ON(ret);

215
	ret = __commit_transaction(trans, root);
216 217
	BUG_ON(ret);

218
	write_ctree_super(trans, root, s);
219 220
	btrfs_finish_extent_commit(trans, root->fs_info->extent_root);
	btrfs_finish_extent_commit(trans, root->fs_info->tree_root);
221 222 223

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

227
	ret = btrfs_del_root(trans, root->fs_info->tree_root, &snap_key);
228 229
	BUG_ON(ret);

230 231 232
	return ret;
}

C
Chris Mason 已提交
233
static int __setup_root(struct btrfs_super_block *super,
234 235 236
			struct btrfs_root *root,
			struct btrfs_fs_info *fs_info,
			u64 objectid, int fp)
237
{
C
Chris Mason 已提交
238
	root->node = NULL;
239
	root->commit_root = NULL;
C
Chris Mason 已提交
240 241
	root->blocksize = btrfs_super_blocksize(super);
	root->ref_cows = 0;
242
	root->fs_info = fs_info;
243 244 245 246 247
	memset(&root->root_key, 0, sizeof(root->root_key));
	memset(&root->root_item, 0, sizeof(root->root_item));
	return 0;
}

C
Chris Mason 已提交
248
static int find_and_setup_root(struct btrfs_super_block *super,
249 250 251
			       struct btrfs_root *tree_root,
			       struct btrfs_fs_info *fs_info,
			       u64 objectid,
C
Chris Mason 已提交
252
			       struct btrfs_root *root, int fp)
253 254 255
{
	int ret;

256
	__setup_root(super, root, fs_info, objectid, fp);
257 258 259 260 261 262 263
	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);
264 265 266
	return 0;
}

C
Chris Mason 已提交
267
struct btrfs_root *open_ctree(char *filename, struct btrfs_super_block *super)
268
{
C
Chris Mason 已提交
269 270
	struct btrfs_root *root = malloc(sizeof(struct btrfs_root));
	struct btrfs_root *extent_root = malloc(sizeof(struct btrfs_root));
271
	struct btrfs_root *tree_root = malloc(sizeof(struct btrfs_root));
272 273
	struct btrfs_root *inode_root = malloc(sizeof(struct btrfs_root));
	struct btrfs_fs_info *fs_info = malloc(sizeof(*fs_info));
274 275 276
	int fp;
	int ret;

C
Chris Mason 已提交
277
	fp = open(filename, O_CREAT | O_RDWR, 0600);
278 279 280 281
	if (fp < 0) {
		free(root);
		return NULL;
	}
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
	INIT_RADIX_TREE(&fs_info->cache_radix, GFP_KERNEL);
	INIT_RADIX_TREE(&fs_info->pinned_radix, GFP_KERNEL);
	INIT_LIST_HEAD(&fs_info->trans);
	INIT_LIST_HEAD(&fs_info->cache);
	fs_info->cache_size = 0;
	fs_info->fp = fp;
	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;
	memset(&fs_info->current_insert, 0, sizeof(fs_info->current_insert));
	memset(&fs_info->last_insert, 0, sizeof(fs_info->last_insert));
297

C
Chris Mason 已提交
298
	ret = pread(fp, super, sizeof(struct btrfs_super_block),
C
Chris Mason 已提交
299
		     BTRFS_SUPER_INFO_OFFSET);
300
	if (ret == 0 || btrfs_super_root(super) == 0) {
C
Chris Mason 已提交
301
		printf("making new FS!\n");
C
Chris Mason 已提交
302
		ret = mkfs(fp, 0, 1024);
303 304
		if (ret)
			return NULL;
C
Chris Mason 已提交
305
		ret = pread(fp, super, sizeof(struct btrfs_super_block),
C
Chris Mason 已提交
306
			     BTRFS_SUPER_INFO_OFFSET);
C
Chris Mason 已提交
307
		if (ret != sizeof(struct btrfs_super_block))
308 309 310
			return NULL;
	}
	BUG_ON(ret < 0);
311

312
	__setup_root(super, tree_root, fs_info, BTRFS_ROOT_TREE_OBJECTID, fp);
313 314 315
	tree_root->node = read_tree_block(tree_root, btrfs_super_root(super));
	BUG_ON(!tree_root->node);

316 317
	ret = find_and_setup_root(super, tree_root, fs_info,
				  BTRFS_EXTENT_TREE_OBJECTID, extent_root, fp);
318 319
	BUG_ON(ret);

320 321 322 323 324 325
	ret = find_and_setup_root(super, tree_root, fs_info,
				  BTRFS_INODE_MAP_OBJECTID, inode_root, fp);
	BUG_ON(ret);

	ret = find_and_setup_root(super, tree_root, fs_info,
				  BTRFS_FS_TREE_OBJECTID, root, fp);
326 327
	BUG_ON(ret);

328 329
	root->commit_root = root->node;
	root->node->count++;
330
	root->ref_cows = 1;
331 332 333
	return root;
}

334 335
int write_ctree_super(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_super_block *s)
336 337
{
	int ret;
338 339
	btrfs_set_super_root(s, root->fs_info->tree_root->node->blocknr);
	ret = pwrite(root->fs_info->fp, s, sizeof(*s),
C
Chris Mason 已提交
340
		     BTRFS_SUPER_INFO_OFFSET);
C
Chris Mason 已提交
341 342
	if (ret != sizeof(*s)) {
		fprintf(stderr, "failed to write new super block err %d\n", ret);
343
		return ret;
C
Chris Mason 已提交
344 345 346 347
	}
	return 0;
}

C
Chris Mason 已提交
348
static int drop_cache(struct btrfs_root *root)
349
{
350 351 352 353
	while(!list_empty(&root->fs_info->cache)) {
		struct btrfs_buffer *b = list_entry(root->fs_info->cache.next,
						    struct btrfs_buffer,
						    cache);
354
		list_del_init(&b->cache);
C
Chris Mason 已提交
355
		btrfs_block_release(root, b);
356 357 358
	}
	return 0;
}
C
Chris Mason 已提交
359
int close_ctree(struct btrfs_root *root, struct btrfs_super_block *s)
C
Chris Mason 已提交
360
{
361
	int ret;
362 363
	struct btrfs_trans_handle *trans;

364
	trans = root->fs_info->running_transaction;
365
	btrfs_commit_transaction(trans, root, s);
366 367 368
	ret = commit_tree_roots(trans, root->fs_info);
	BUG_ON(ret);
	ret = __commit_transaction(trans, root);
369
	BUG_ON(ret);
370
	write_ctree_super(trans, root, s);
371
	drop_cache(root);
372
	BUG_ON(!list_empty(&root->fs_info->trans));
373

374
	close(root->fs_info->fp);
C
Chris Mason 已提交
375
	if (root->node)
C
Chris Mason 已提交
376
		btrfs_block_release(root, root->node);
377 378 379 380 381 382 383 384 385
	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 已提交
386
	btrfs_block_release(root, root->commit_root);
C
Chris Mason 已提交
387 388
	free(root);
	printf("on close %d blocks are allocated\n", allocated_blocks);
389 390 391
	return 0;
}

C
Chris Mason 已提交
392
void btrfs_block_release(struct btrfs_root *root, struct btrfs_buffer *buf)
393 394
{
	buf->count--;
C
Chris Mason 已提交
395 396
	if (buf->count < 0)
		BUG();
397
	if (buf->count == 0) {
C
Chris Mason 已提交
398 399
		BUG_ON(!list_empty(&buf->cache));
		BUG_ON(!list_empty(&buf->dirty));
400 401
		if (!radix_tree_lookup(&root->fs_info->cache_radix,
				       buf->blocknr))
402
			BUG();
403
		radix_tree_delete(&root->fs_info->cache_radix, buf->blocknr);
404 405 406 407
		memset(buf, 0, sizeof(*buf));
		free(buf);
		BUG_ON(allocated_blocks == 0);
		allocated_blocks--;
408 409
		BUG_ON(root->fs_info->cache_size == 0);
		root->fs_info->cache_size--;
410 411 412
	}
}