disk-io.c 5.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#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;

static int get_free_block(struct ctree_root *root, u64 *block)
{
	struct stat st;
C
Chris Mason 已提交
18
	int ret = 0;
19

20 21 22 23 24 25 26 27 28 29 30
	if (root->alloc_extent->num_used >= root->alloc_extent->num_blocks)
		return -1;

	*block = root->alloc_extent->blocknr + root->alloc_extent->num_used;
	root->alloc_extent->num_used += 1;
	if (root->alloc_extent->num_used >= root->alloc_extent->num_blocks) {
		struct alloc_extent *ae = root->alloc_extent;
		root->alloc_extent = root->reserve_extent;
		root->reserve_extent = ae;
		ae->num_blocks = 0;
	}
31 32
	st.st_size = 0;
	ret = fstat(root->fp, &st);
C
Chris Mason 已提交
33
	if (st.st_size < (*block + 1) * CTREE_BLOCKSIZE) {
34 35
		ret = ftruncate(root->fp,
				(*block + 1) * CTREE_BLOCKSIZE);
C
Chris Mason 已提交
36 37 38 39 40
		if (ret) {
			perror("ftruncate");
			exit(1);
		}
	}
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
	return ret;
}

struct tree_buffer *alloc_tree_block(struct ctree_root *root, u64 blocknr)
{
	struct tree_buffer *buf;
	int ret;
	buf = malloc(sizeof(struct tree_buffer));
	if (!buf)
		return buf;
	allocated_blocks++;
	buf->blocknr = blocknr;
	buf->count = 1;
	radix_tree_preload(GFP_KERNEL);
	ret = radix_tree_insert(&root->cache_radix, blocknr, buf);
	radix_tree_preload_end();
	if (ret) {
		free(buf);
		return NULL;
	}
	return buf;
}

struct tree_buffer *alloc_free_block(struct ctree_root *root)
{
	u64 free_block;
	int ret;
	struct tree_buffer * buf;
	ret = get_free_block(root, &free_block);
	if (ret) {
		BUG();
		return NULL;
	}
	buf = alloc_tree_block(root, free_block);
	if (!buf)
		BUG();
	return buf;
}

struct tree_buffer *read_tree_block(struct ctree_root *root, u64 blocknr)
{
82
	loff_t offset = blocknr * CTREE_BLOCKSIZE;
83 84 85 86 87 88
	struct tree_buffer *buf;
	int ret;

	buf = radix_tree_lookup(&root->cache_radix, blocknr);
	if (buf) {
		buf->count++;
C
Chris Mason 已提交
89
		goto test;
90 91 92 93 94 95 96 97 98
	}
	buf = alloc_tree_block(root, blocknr);
	if (!buf)
		return NULL;
	ret = pread(root->fp, &buf->node, CTREE_BLOCKSIZE, offset);
	if (ret != CTREE_BLOCKSIZE) {
		free(buf);
		return NULL;
	}
C
Chris Mason 已提交
99
test:
100 101
	if (buf->blocknr != buf->node.header.blocknr)
		BUG();
C
Chris Mason 已提交
102 103
	if (root->node && buf->node.header.parentid != root->node->node.header.parentid)
		BUG();
104 105 106 107 108 109
	return buf;
}

int write_tree_block(struct ctree_root *root, struct tree_buffer *buf)
{
	u64 blocknr = buf->blocknr;
110
	loff_t offset = blocknr * CTREE_BLOCKSIZE;
111 112 113 114 115 116 117 118 119 120
	int ret;

	if (buf->blocknr != buf->node.header.blocknr)
		BUG();
	ret = pwrite(root->fp, &buf->node, CTREE_BLOCKSIZE, offset);
	if (ret != CTREE_BLOCKSIZE)
		return ret;
	return 0;
}

121 122 123
static int __setup_root(struct ctree_root *root, struct ctree_root *extent_root,
			struct ctree_root_info *info, int fp)
{
C
Chris Mason 已提交
124
	INIT_RADIX_TREE(&root->cache_radix, GFP_KERNEL);
125
	root->fp = fp;
C
Chris Mason 已提交
126
	root->node = NULL;
127 128 129 130 131 132
	root->node = read_tree_block(root, info->tree_root);
	root->extent_root = extent_root;
	memcpy(&root->ai1, &info->alloc_extent, sizeof(info->alloc_extent));
	memcpy(&root->ai2, &info->reserve_extent, sizeof(info->reserve_extent));
	root->alloc_extent = &root->ai1;
	root->reserve_extent = &root->ai2;
C
Chris Mason 已提交
133 134
	printf("setup done reading root %p, used %lu available %lu\n", root, root->alloc_extent->num_used, root->alloc_extent->num_blocks);
	printf("setup done reading root %p, reserve used %lu available %lu\n", root, root->reserve_extent->num_used, root->reserve_extent->num_blocks);
135 136 137
	return 0;
}

C
Chris Mason 已提交
138
struct ctree_root *open_ctree(char *filename, struct ctree_super_block *super)
139 140
{
	struct ctree_root *root = malloc(sizeof(struct ctree_root));
141
	struct ctree_root *extent_root = malloc(sizeof(struct ctree_root));
142 143 144 145 146 147 148 149
	int fp;
	int ret;

	fp = open(filename, O_CREAT | O_RDWR);
	if (fp < 0) {
		free(root);
		return NULL;
	}
C
Chris Mason 已提交
150
	ret = pread(fp, super, sizeof(struct ctree_super_block),
151 152 153 154 155
		     CTREE_SUPER_INFO_OFFSET(CTREE_BLOCKSIZE));
	if (ret == 0) {
		ret = mkfs(fp);
		if (ret)
			return NULL;
C
Chris Mason 已提交
156
		ret = pread(fp, super, sizeof(struct ctree_super_block),
157 158 159 160 161
			     CTREE_SUPER_INFO_OFFSET(CTREE_BLOCKSIZE));
		if (ret != sizeof(struct ctree_super_block))
			return NULL;
	}
	BUG_ON(ret < 0);
C
Chris Mason 已提交
162 163
	__setup_root(root, extent_root, &super->root_info, fp);
	__setup_root(extent_root, extent_root, &super->extent_info, fp);
164 165 166
	return root;
}

C
Chris Mason 已提交
167
static int __update_root(struct ctree_root *root, struct ctree_root_info *info)
168
{
C
Chris Mason 已提交
169 170 171
	info->tree_root = root->node->blocknr;
	memcpy(&info->alloc_extent, root->alloc_extent, sizeof(struct alloc_extent));
	memcpy(&info->reserve_extent, root->reserve_extent, sizeof(struct alloc_extent));
172 173 174
	return 0;
}

C
Chris Mason 已提交
175
int write_ctree_super(struct ctree_root *root, struct ctree_super_block *s)
176 177
{
	int ret;
C
Chris Mason 已提交
178 179 180 181 182
	__update_root(root, &s->root_info);
	__update_root(root->extent_root, &s->extent_info);
	ret = pwrite(root->fp, s, sizeof(*s), CTREE_SUPER_INFO_OFFSET(CTREE_BLOCKSIZE));
	if (ret != sizeof(*s)) {
		fprintf(stderr, "failed to write new super block err %d\n", ret);
183
		return ret;
C
Chris Mason 已提交
184 185 186 187 188 189 190 191 192 193 194 195 196
	}
	return 0;
}

int close_ctree(struct ctree_root *root)
{
	close(root->fp);
	if (root->node)
		tree_block_release(root, root->node);
	if (root->extent_root->node)
		tree_block_release(root->extent_root, root->extent_root->node);
	free(root);
	printf("on close %d blocks are allocated\n", allocated_blocks);
197 198 199 200 201 202
	return 0;
}

void tree_block_release(struct ctree_root *root, struct tree_buffer *buf)
{
	buf->count--;
C
Chris Mason 已提交
203 204
	if (buf->count < 0)
		BUG();
205 206 207 208 209 210 211 212 213 214 215
	if (buf->count == 0) {
		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--;
	}
}