btrfs-progs/disk-io.c

188 lines
4.4 KiB
C
Raw Normal View History

2007-02-02 14:18:22 +00:00
#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 check_tree_block(struct ctree_root *root, struct tree_buffer *buf)
2007-02-02 14:18:22 +00:00
{
if (buf->blocknr != buf->node.header.blocknr)
BUG();
if (root->node && buf->node.header.parentid != root->node->node.header.parentid)
BUG();
return 0;
2007-02-02 14:18:22 +00:00
}
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 *find_tree_block(struct ctree_root *root, u64 blocknr)
2007-02-02 14:18:22 +00:00
{
struct tree_buffer *buf;
buf = radix_tree_lookup(&root->cache_radix, blocknr);
if (buf) {
buf->count++;
} else {
buf = alloc_tree_block(root, blocknr);
if (!buf) {
BUG();
return NULL;
}
2007-02-02 14:18:22 +00:00
}
return buf;
}
2007-02-02 14:18:22 +00:00
struct tree_buffer *read_tree_block(struct ctree_root *root, u64 blocknr)
{
2007-02-20 21:40:44 +00:00
loff_t offset = blocknr * CTREE_BLOCKSIZE;
2007-02-02 14:18:22 +00:00
struct tree_buffer *buf;
int ret;
buf = radix_tree_lookup(&root->cache_radix, blocknr);
if (buf) {
buf->count++;
} else {
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;
}
2007-02-02 14:18:22 +00:00
}
if (check_tree_block(root, buf))
2007-02-21 22:04:57 +00:00
BUG();
2007-02-02 14:18:22 +00:00
return buf;
}
int write_tree_block(struct ctree_root *root, struct tree_buffer *buf)
{
u64 blocknr = buf->blocknr;
2007-02-20 21:40:44 +00:00
loff_t offset = blocknr * CTREE_BLOCKSIZE;
2007-02-02 14:18:22 +00:00
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;
}
2007-02-20 21:40:44 +00:00
static int __setup_root(struct ctree_root *root, struct ctree_root *extent_root,
struct ctree_root_info *info, int fp)
{
root->fp = fp;
2007-02-21 22:04:57 +00:00
root->node = NULL;
2007-02-20 21:40:44 +00:00
root->node = read_tree_block(root, info->tree_root);
root->extent_root = extent_root;
return 0;
}
2007-02-21 22:04:57 +00:00
struct ctree_root *open_ctree(char *filename, struct ctree_super_block *super)
2007-02-02 14:18:22 +00:00
{
struct ctree_root *root = malloc(sizeof(struct ctree_root));
2007-02-20 21:40:44 +00:00
struct ctree_root *extent_root = malloc(sizeof(struct ctree_root));
2007-02-02 14:18:22 +00:00
int fp;
int ret;
2007-02-26 15:46:55 +00:00
fp = open(filename, O_CREAT | O_RDWR, 0600);
2007-02-02 14:18:22 +00:00
if (fp < 0) {
free(root);
return NULL;
}
INIT_RADIX_TREE(&root->cache_radix, GFP_KERNEL);
INIT_RADIX_TREE(&extent_root->cache_radix, GFP_KERNEL);
2007-02-21 22:04:57 +00:00
ret = pread(fp, super, sizeof(struct ctree_super_block),
2007-02-20 21:40:44 +00:00
CTREE_SUPER_INFO_OFFSET(CTREE_BLOCKSIZE));
2007-02-22 16:39:13 +00:00
if (ret == 0 || super->root_info.tree_root == 0) {
printf("making new FS!\n");
2007-02-20 21:40:44 +00:00
ret = mkfs(fp);
if (ret)
return NULL;
2007-02-21 22:04:57 +00:00
ret = pread(fp, super, sizeof(struct ctree_super_block),
2007-02-20 21:40:44 +00:00
CTREE_SUPER_INFO_OFFSET(CTREE_BLOCKSIZE));
if (ret != sizeof(struct ctree_super_block))
return NULL;
}
BUG_ON(ret < 0);
2007-02-21 22:04:57 +00:00
__setup_root(root, extent_root, &super->root_info, fp);
__setup_root(extent_root, extent_root, &super->extent_info, fp);
2007-02-02 14:18:22 +00:00
return root;
}
2007-02-21 22:04:57 +00:00
static int __update_root(struct ctree_root *root, struct ctree_root_info *info)
2007-02-02 14:18:22 +00:00
{
2007-02-21 22:04:57 +00:00
info->tree_root = root->node->blocknr;
2007-02-02 14:18:22 +00:00
return 0;
}
2007-02-21 22:04:57 +00:00
int write_ctree_super(struct ctree_root *root, struct ctree_super_block *s)
2007-02-02 14:18:22 +00:00
{
int ret;
2007-02-21 22:04:57 +00:00
__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);
2007-02-02 14:18:22 +00:00
return ret;
2007-02-21 22:04:57 +00:00
}
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);
2007-02-02 14:18:22 +00:00
return 0;
}
void tree_block_release(struct ctree_root *root, struct tree_buffer *buf)
{
buf->count--;
2007-02-21 22:04:57 +00:00
if (buf->count < 0)
BUG();
2007-02-02 14:18:22 +00:00
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--;
}
}