2007-06-12 13:07:11 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 Oracle. All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public
|
|
|
|
* License v2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public
|
|
|
|
* License along with this program; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 021110-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2007-04-23 19:56:27 +00:00
|
|
|
#define _XOPEN_SOURCE 600
|
|
|
|
#define __USE_XOPEN2K
|
2007-02-02 14:18:22 +00:00
|
|
|
#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"
|
2007-03-16 20:20:31 +00:00
|
|
|
#include "transaction.h"
|
2007-06-28 20:20:29 +00:00
|
|
|
#include "crc32c.h"
|
2007-02-02 14:18:22 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
int btrfs_map_bh_to_logical(struct btrfs_root *root, struct extent_buffer *buf,
|
|
|
|
u64 logical)
|
2007-04-12 16:14:47 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
buf->fd = root->fs_info->fp;
|
|
|
|
buf->dev_bytenr = logical;
|
2007-06-09 13:22:37 +00:00
|
|
|
return 0;
|
2007-04-12 16:14:47 +00:00
|
|
|
}
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
static int check_tree_block(struct btrfs_root *root, struct extent_buffer *buf)
|
2007-02-02 14:18:22 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
if (buf->start != btrfs_header_bytenr(buf))
|
2007-02-23 13:38:36 +00:00
|
|
|
BUG();
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
if (memcmp_extent_buffer(buf, root->fs_info->fsid,
|
|
|
|
(unsigned long)btrfs_header_fsid(buf),
|
|
|
|
BTRFS_FSID_SIZE))
|
2007-04-05 18:29:12 +00:00
|
|
|
BUG();
|
2007-02-23 13:38:36 +00:00
|
|
|
return 0;
|
2007-02-02 14:18:22 +00:00
|
|
|
}
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
u32 btrfs_csum_data(struct btrfs_root *root, char *data, u32 seed, size_t len)
|
2007-03-01 23:59:40 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
return crc32c(seed, data, len);
|
2007-03-01 23:59:40 +00:00
|
|
|
}
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
void btrfs_csum_final(u32 crc, char *result)
|
2007-02-02 14:18:22 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
*(__le32 *)result = ~cpu_to_le32(crc);
|
2007-02-02 14:18:22 +00:00
|
|
|
}
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
static int csum_tree_block(struct btrfs_root *root, struct extent_buffer *buf,
|
|
|
|
int verify)
|
2007-02-02 14:18:22 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
char result[BTRFS_CRC32_SIZE];
|
|
|
|
u32 len;
|
|
|
|
u32 crc = ~(u32)0;
|
2007-02-02 14:18:22 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
len = buf->len - BTRFS_CSUM_SIZE;
|
|
|
|
crc = crc32c(crc, buf->data + BTRFS_CSUM_SIZE, len);
|
|
|
|
btrfs_csum_final(crc, result);
|
2007-10-15 20:25:41 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
if (verify) {
|
|
|
|
if (memcmp_extent_buffer(buf, result, 0, BTRFS_CRC32_SIZE)) {
|
|
|
|
printk("checksum verify failed on %llu\n", buf->start);
|
|
|
|
return 1;
|
2007-02-23 13:38:36 +00:00
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
} else {
|
|
|
|
write_extent_buffer(buf, result, 0, BTRFS_CRC32_SIZE);
|
2007-02-02 14:18:22 +00:00
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
return 0;
|
2007-02-02 14:18:22 +00:00
|
|
|
}
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
struct extent_buffer *btrfs_find_tree_block(struct btrfs_root *root,
|
|
|
|
u64 bytenr, u32 blocksize)
|
2007-03-01 23:59:40 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
return find_extent_buffer(&root->fs_info->extent_cache,
|
|
|
|
bytenr, blocksize);
|
2007-03-01 23:59:40 +00:00
|
|
|
}
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
struct extent_buffer *btrfs_find_create_tree_block(struct btrfs_root *root,
|
|
|
|
u64 bytenr, u32 blocksize)
|
2007-03-01 23:59:40 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
return alloc_extent_buffer(&root->fs_info->extent_cache, bytenr,
|
|
|
|
blocksize);
|
2007-03-01 23:59:40 +00:00
|
|
|
}
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
int readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize)
|
2007-06-28 20:20:29 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
|
|
|
|
u32 blocksize)
|
2007-06-28 20:20:29 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
int ret;
|
|
|
|
struct extent_buffer *eb;
|
2007-06-28 20:20:29 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
eb = btrfs_find_create_tree_block(root, bytenr, blocksize);
|
|
|
|
if (!eb)
|
|
|
|
return NULL;
|
|
|
|
if (!btrfs_buffer_uptodate(eb)) {
|
|
|
|
btrfs_map_bh_to_logical(root, eb, eb->start);
|
|
|
|
ret = read_extent_from_disk(eb);
|
|
|
|
if (ret) {
|
|
|
|
free_extent_buffer(eb);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
btrfs_set_buffer_uptodate(eb);
|
|
|
|
}
|
|
|
|
return eb;
|
2007-06-28 20:20:29 +00:00
|
|
|
}
|
|
|
|
|
2007-03-16 20:20:31 +00:00
|
|
|
int write_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
|
2008-01-04 15:38:22 +00:00
|
|
|
struct extent_buffer *eb)
|
2007-02-02 14:18:22 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
if (check_tree_block(root, eb))
|
2007-02-02 14:18:22 +00:00
|
|
|
BUG();
|
2008-01-04 15:38:22 +00:00
|
|
|
if (!btrfs_buffer_uptodate(eb))
|
2007-04-26 20:46:06 +00:00
|
|
|
BUG();
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_map_bh_to_logical(root, eb, eb->start);
|
|
|
|
csum_tree_block(root, eb, 0);
|
|
|
|
return write_extent_to_disk(eb);
|
2007-02-02 14:18:22 +00:00
|
|
|
}
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
static int __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
|
|
|
|
u32 stripesize, struct btrfs_root *root,
|
|
|
|
struct btrfs_fs_info *fs_info, u64 objectid)
|
2007-03-01 23:59:40 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
root->node = NULL;
|
|
|
|
root->commit_root = NULL;
|
|
|
|
root->sectorsize = sectorsize;
|
|
|
|
root->nodesize = nodesize;
|
|
|
|
root->leafsize = leafsize;
|
|
|
|
root->stripesize = stripesize;
|
|
|
|
root->ref_cows = 0;
|
|
|
|
root->fs_info = fs_info;
|
|
|
|
root->objectid = objectid;
|
|
|
|
root->last_trans = 0;
|
|
|
|
root->highest_inode = 0;
|
|
|
|
root->last_inode_alloc = 0;
|
|
|
|
memset(&root->root_key, 0, sizeof(root->root_key));
|
|
|
|
memset(&root->root_item, 0, sizeof(root->root_item));
|
|
|
|
root->root_key.objectid = objectid;
|
|
|
|
return 0;
|
2007-03-01 23:59:40 +00:00
|
|
|
}
|
|
|
|
|
2007-03-20 18:38:32 +00:00
|
|
|
static int commit_tree_roots(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_fs_info *fs_info)
|
2007-03-13 20:47:54 +00:00
|
|
|
{
|
|
|
|
int ret;
|
2007-10-15 20:25:14 +00:00
|
|
|
u64 old_extent_bytenr;
|
2007-03-20 18:38:32 +00:00
|
|
|
struct btrfs_root *tree_root = fs_info->tree_root;
|
|
|
|
struct btrfs_root *extent_root = fs_info->extent_root;
|
|
|
|
|
2007-04-26 20:46:06 +00:00
|
|
|
btrfs_write_dirty_block_groups(trans, fs_info->extent_root);
|
2007-03-13 20:47:54 +00:00
|
|
|
while(1) {
|
2007-10-15 20:25:14 +00:00
|
|
|
old_extent_bytenr = btrfs_root_bytenr(&extent_root->root_item);
|
2008-01-04 15:38:22 +00:00
|
|
|
if (old_extent_bytenr == extent_root->node->start)
|
2007-03-13 20:47:54 +00:00
|
|
|
break;
|
2007-10-15 20:25:14 +00:00
|
|
|
btrfs_set_root_bytenr(&extent_root->root_item,
|
2008-01-04 15:38:22 +00:00
|
|
|
extent_root->node->start);
|
2007-10-15 20:25:14 +00:00
|
|
|
extent_root->root_item.level =
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_header_level(extent_root->node);
|
2007-03-16 20:20:31 +00:00
|
|
|
ret = btrfs_update_root(trans, tree_root,
|
2007-03-13 20:47:54 +00:00
|
|
|
&extent_root->root_key,
|
|
|
|
&extent_root->root_item);
|
|
|
|
BUG_ON(ret);
|
2007-04-26 20:46:06 +00:00
|
|
|
btrfs_write_dirty_block_groups(trans, fs_info->extent_root);
|
2007-03-13 20:47:54 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
static int __commit_transaction(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root)
|
|
|
|
{
|
|
|
|
u64 start;
|
|
|
|
u64 end;
|
|
|
|
struct extent_buffer *eb;
|
2008-03-04 16:16:54 +00:00
|
|
|
struct extent_io_tree *tree = &root->fs_info->extent_cache;
|
2008-01-04 15:38:22 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
while(1) {
|
|
|
|
ret = find_first_extent_bit(tree, 0, &start, &end,
|
|
|
|
EXTENT_DIRTY);
|
|
|
|
if (ret)
|
|
|
|
break;
|
|
|
|
while(start <= end) {
|
|
|
|
eb = find_first_extent_buffer(tree, start);
|
|
|
|
BUG_ON(!eb || eb->start != start);
|
|
|
|
ret = write_tree_block(trans, root, eb);
|
|
|
|
BUG_ON(ret);
|
|
|
|
start += eb->len;
|
|
|
|
clear_extent_buffer_dirty(eb);
|
|
|
|
free_extent_buffer(eb);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root)
|
2007-03-01 23:59:40 +00:00
|
|
|
{
|
2007-03-07 01:08:01 +00:00
|
|
|
int ret = 0;
|
2008-01-04 15:38:22 +00:00
|
|
|
struct btrfs_root *new_root = NULL;
|
|
|
|
struct btrfs_fs_info *fs_info = root->fs_info;
|
2007-03-07 01:08:01 +00:00
|
|
|
|
2007-03-13 20:47:54 +00:00
|
|
|
if (root->commit_root == root->node)
|
2008-01-04 15:38:22 +00:00
|
|
|
goto commit_tree;
|
2007-03-13 20:47:54 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
new_root = malloc(sizeof(*new_root));
|
|
|
|
if (!new_root)
|
|
|
|
return -ENOMEM;
|
|
|
|
memcpy(new_root, root, sizeof(*new_root));
|
|
|
|
new_root->node = root->commit_root;
|
|
|
|
root->commit_root = NULL;
|
2007-03-13 20:47:54 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
root->root_key.offset = trans->transid;
|
|
|
|
btrfs_set_root_bytenr(&root->root_item, root->node->start);
|
|
|
|
root->root_item.level = btrfs_header_level(root->node);
|
|
|
|
ret = btrfs_insert_root(trans, fs_info->tree_root,
|
2007-03-20 18:38:32 +00:00
|
|
|
&root->root_key, &root->root_item);
|
|
|
|
BUG_ON(ret);
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_set_root_refs(&new_root->root_item, 0);
|
|
|
|
ret = btrfs_update_root(trans, root->fs_info->tree_root,
|
|
|
|
&new_root->root_key, &new_root->root_item);
|
2007-03-13 20:47:54 +00:00
|
|
|
BUG_ON(ret);
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
ret = commit_tree_roots(trans, fs_info);
|
|
|
|
BUG_ON(ret);
|
2007-03-20 18:38:32 +00:00
|
|
|
ret = __commit_transaction(trans, root);
|
2007-03-13 20:47:54 +00:00
|
|
|
BUG_ON(ret);
|
2008-01-04 15:38:22 +00:00
|
|
|
write_ctree_super(trans, root);
|
|
|
|
btrfs_finish_extent_commit(trans, fs_info->extent_root,
|
|
|
|
&fs_info->pinned_extents);
|
|
|
|
btrfs_free_transaction(root, trans);
|
|
|
|
fs_info->running_transaction = NULL;
|
2007-03-13 20:47:54 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
trans = btrfs_start_transaction(root, 1);
|
|
|
|
ret = btrfs_drop_snapshot(trans, new_root);
|
|
|
|
BUG_ON(ret);
|
|
|
|
ret = btrfs_del_root(trans, fs_info->tree_root, &new_root->root_key);
|
|
|
|
BUG_ON(ret);
|
|
|
|
commit_tree:
|
|
|
|
ret = commit_tree_roots(trans, fs_info);
|
2007-03-13 20:47:54 +00:00
|
|
|
BUG_ON(ret);
|
2008-01-04 15:38:22 +00:00
|
|
|
ret = __commit_transaction(trans, root);
|
2007-03-13 20:47:54 +00:00
|
|
|
BUG_ON(ret);
|
2008-01-04 15:38:22 +00:00
|
|
|
write_ctree_super(trans, root);
|
|
|
|
btrfs_finish_extent_commit(trans, fs_info->extent_root,
|
|
|
|
&fs_info->pinned_extents);
|
2007-12-05 15:41:38 +00:00
|
|
|
btrfs_free_transaction(root, trans);
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(root->commit_root);
|
2007-03-07 01:08:01 +00:00
|
|
|
root->commit_root = NULL;
|
2008-01-04 15:38:22 +00:00
|
|
|
fs_info->running_transaction = NULL;
|
|
|
|
if (new_root) {
|
|
|
|
free_extent_buffer(new_root->node);
|
|
|
|
free(new_root);
|
|
|
|
}
|
2007-03-13 20:47:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
static int find_and_setup_root(struct btrfs_root *tree_root,
|
2007-03-20 18:38:32 +00:00
|
|
|
struct btrfs_fs_info *fs_info,
|
2008-01-04 15:38:22 +00:00
|
|
|
u64 objectid, struct btrfs_root *root)
|
2007-03-13 20:47:54 +00:00
|
|
|
{
|
|
|
|
int ret;
|
2008-01-04 15:38:22 +00:00
|
|
|
u32 blocksize;
|
2007-03-13 20:47:54 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
__setup_root(tree_root->nodesize, tree_root->leafsize,
|
|
|
|
tree_root->sectorsize, tree_root->stripesize,
|
|
|
|
root, fs_info, objectid);
|
2007-03-13 20:47:54 +00:00
|
|
|
ret = btrfs_find_last_root(tree_root, objectid,
|
|
|
|
&root->root_item, &root->root_key);
|
|
|
|
BUG_ON(ret);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
|
|
|
|
root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
|
|
|
|
blocksize);
|
2007-03-13 20:47:54 +00:00
|
|
|
BUG_ON(!root->node);
|
2007-02-20 21:40:44 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
int btrfs_free_fs_root(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
|
|
|
|
{
|
|
|
|
if (root->node)
|
|
|
|
free_extent_buffer(root->node);
|
|
|
|
if (root->commit_root)
|
|
|
|
free_extent_buffer(root->commit_root);
|
|
|
|
|
|
|
|
free(root);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
|
|
|
|
struct btrfs_key *location)
|
|
|
|
{
|
|
|
|
struct btrfs_root *root;
|
|
|
|
struct btrfs_root *tree_root = fs_info->tree_root;
|
|
|
|
struct btrfs_path *path;
|
|
|
|
struct extent_buffer *l;
|
|
|
|
u32 blocksize;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
root = malloc(sizeof(*root));
|
|
|
|
if (!root)
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
memset(root, 0, sizeof(*root));
|
|
|
|
if (location->offset == (u64)-1) {
|
|
|
|
ret = find_and_setup_root(tree_root, fs_info,
|
|
|
|
location->objectid, root);
|
|
|
|
if (ret) {
|
|
|
|
free(root);
|
|
|
|
return ERR_PTR(ret);
|
|
|
|
}
|
|
|
|
goto insert;
|
|
|
|
}
|
|
|
|
|
|
|
|
__setup_root(tree_root->nodesize, tree_root->leafsize,
|
|
|
|
tree_root->sectorsize, tree_root->stripesize,
|
|
|
|
root, fs_info, location->objectid);
|
|
|
|
|
|
|
|
path = btrfs_alloc_path();
|
|
|
|
BUG_ON(!path);
|
|
|
|
ret = btrfs_search_slot(NULL, tree_root, location, path, 0, 0);
|
|
|
|
if (ret != 0) {
|
|
|
|
if (ret > 0)
|
|
|
|
ret = -ENOENT;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
l = path->nodes[0];
|
|
|
|
read_extent_buffer(l, &root->root_item,
|
|
|
|
btrfs_item_ptr_offset(l, path->slots[0]),
|
|
|
|
sizeof(root->root_item));
|
|
|
|
memcpy(&root->root_key, location, sizeof(*location));
|
|
|
|
ret = 0;
|
|
|
|
out:
|
|
|
|
btrfs_release_path(root, path);
|
|
|
|
btrfs_free_path(path);
|
|
|
|
if (ret) {
|
|
|
|
free(root);
|
|
|
|
return ERR_PTR(ret);
|
|
|
|
}
|
|
|
|
blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
|
|
|
|
root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
|
|
|
|
blocksize);
|
|
|
|
BUG_ON(!root->node);
|
|
|
|
insert:
|
|
|
|
root->ref_cows = 1;
|
|
|
|
return root;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct btrfs_root *open_ctree(char *filename, u64 sb_bytenr)
|
2007-03-21 15:13:29 +00:00
|
|
|
{
|
|
|
|
int fp;
|
|
|
|
|
|
|
|
fp = open(filename, O_CREAT | O_RDWR, 0600);
|
|
|
|
if (fp < 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
return open_ctree_fd(fp, sb_bytenr);
|
2007-03-21 15:13:29 +00:00
|
|
|
}
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
struct btrfs_root *open_ctree_fd(int fp, u64 sb_bytenr)
|
2007-02-02 14:18:22 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
u32 sectorsize;
|
|
|
|
u32 nodesize;
|
|
|
|
u32 leafsize;
|
|
|
|
u32 blocksize;
|
|
|
|
u32 stripesize;
|
2007-03-13 14:46:10 +00:00
|
|
|
struct btrfs_root *root = malloc(sizeof(struct btrfs_root));
|
2007-03-13 20:47:54 +00:00
|
|
|
struct btrfs_root *tree_root = malloc(sizeof(struct btrfs_root));
|
2008-01-04 15:38:22 +00:00
|
|
|
struct btrfs_root *extent_root = malloc(sizeof(struct btrfs_root));
|
2007-03-20 18:38:32 +00:00
|
|
|
struct btrfs_fs_info *fs_info = malloc(sizeof(*fs_info));
|
2007-02-02 14:18:22 +00:00
|
|
|
int ret;
|
2008-01-04 15:38:22 +00:00
|
|
|
struct btrfs_super_block *disk_super;
|
|
|
|
|
|
|
|
if (sb_bytenr == 0)
|
|
|
|
sb_bytenr = BTRFS_SUPER_INFO_OFFSET;
|
2007-02-02 14:18:22 +00:00
|
|
|
|
2007-03-20 18:38:32 +00:00
|
|
|
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;
|
2008-01-04 15:41:19 +00:00
|
|
|
fs_info->extent_ops = NULL;
|
|
|
|
fs_info->priv_data = NULL;
|
2008-03-04 16:16:54 +00:00
|
|
|
extent_io_tree_init(&fs_info->extent_cache);
|
|
|
|
extent_io_tree_init(&fs_info->free_space_cache);
|
|
|
|
extent_io_tree_init(&fs_info->block_group_cache);
|
|
|
|
extent_io_tree_init(&fs_info->pinned_extents);
|
|
|
|
extent_io_tree_init(&fs_info->pending_del);
|
|
|
|
extent_io_tree_init(&fs_info->extent_ins);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
mutex_init(&fs_info->fs_mutex);
|
|
|
|
|
|
|
|
__setup_root(512, 512, 512, 512, tree_root,
|
|
|
|
fs_info, BTRFS_ROOT_TREE_OBJECTID);
|
|
|
|
|
|
|
|
fs_info->sb_buffer = read_tree_block(tree_root, sb_bytenr, 512);
|
|
|
|
BUG_ON(!fs_info->sb_buffer);
|
|
|
|
read_extent_buffer(fs_info->sb_buffer, &fs_info->super_copy, 0,
|
|
|
|
sizeof(fs_info->super_copy));
|
|
|
|
read_extent_buffer(fs_info->sb_buffer, fs_info->fsid,
|
|
|
|
(unsigned long)btrfs_super_fsid(fs_info->sb_buffer),
|
|
|
|
BTRFS_FSID_SIZE);
|
|
|
|
|
2008-01-08 20:56:32 +00:00
|
|
|
disk_super = &fs_info->super_copy;
|
|
|
|
if (strncmp((char *)(&disk_super->magic), BTRFS_MAGIC,
|
|
|
|
sizeof(disk_super->magic))) {
|
|
|
|
printk("No valid btrfs found\n");
|
|
|
|
BUG_ON(1);
|
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
nodesize = btrfs_super_nodesize(disk_super);
|
|
|
|
leafsize = btrfs_super_leafsize(disk_super);
|
|
|
|
sectorsize = btrfs_super_sectorsize(disk_super);
|
|
|
|
stripesize = btrfs_super_stripesize(disk_super);
|
|
|
|
tree_root->nodesize = nodesize;
|
|
|
|
tree_root->leafsize = leafsize;
|
|
|
|
tree_root->sectorsize = sectorsize;
|
|
|
|
tree_root->stripesize = stripesize;
|
|
|
|
|
|
|
|
blocksize = btrfs_level_size(tree_root,
|
|
|
|
btrfs_super_root_level(disk_super));
|
|
|
|
tree_root->node = read_tree_block(tree_root,
|
|
|
|
btrfs_super_root(disk_super),
|
|
|
|
blocksize);
|
2007-03-13 20:47:54 +00:00
|
|
|
BUG_ON(!tree_root->node);
|
2008-01-04 15:38:22 +00:00
|
|
|
ret = find_and_setup_root(tree_root, fs_info,
|
|
|
|
BTRFS_EXTENT_TREE_OBJECTID, extent_root);
|
2007-03-13 20:47:54 +00:00
|
|
|
BUG_ON(ret);
|
2008-01-04 15:38:22 +00:00
|
|
|
ret = find_and_setup_root(tree_root, fs_info,
|
|
|
|
BTRFS_FS_TREE_OBJECTID, root);
|
2007-03-13 20:47:54 +00:00
|
|
|
BUG_ON(ret);
|
|
|
|
root->ref_cows = 1;
|
2008-01-04 15:38:22 +00:00
|
|
|
fs_info->generation = btrfs_super_generation(disk_super) + 1;
|
2007-04-26 20:46:06 +00:00
|
|
|
btrfs_read_block_groups(root);
|
2007-02-02 14:18:22 +00:00
|
|
|
return root;
|
|
|
|
}
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
int write_ctree_super(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root)
|
2007-02-02 14:18:22 +00:00
|
|
|
{
|
|
|
|
int ret;
|
2008-01-04 15:38:22 +00:00
|
|
|
struct btrfs_root *tree_root = root->fs_info->tree_root;
|
|
|
|
btrfs_set_super_generation(&root->fs_info->super_copy,
|
|
|
|
trans->transid);
|
|
|
|
btrfs_set_super_root(&root->fs_info->super_copy,
|
|
|
|
tree_root->node->start);
|
|
|
|
btrfs_set_super_root_level(&root->fs_info->super_copy,
|
|
|
|
btrfs_header_level(tree_root->node));
|
|
|
|
write_extent_buffer(root->fs_info->sb_buffer,
|
|
|
|
&root->fs_info->super_copy, 0,
|
|
|
|
sizeof(root->fs_info->super_copy));
|
|
|
|
ret = write_tree_block(trans, root, root->fs_info->sb_buffer);
|
|
|
|
if (ret)
|
2007-02-21 22:04:57 +00:00
|
|
|
fprintf(stderr, "failed to write new super block err %d\n", ret);
|
2008-01-04 15:38:22 +00:00
|
|
|
return ret;
|
2007-03-01 23:59:40 +00:00
|
|
|
}
|
2007-04-12 16:14:47 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
int close_ctree(struct btrfs_root *root)
|
2007-02-21 22:04:57 +00:00
|
|
|
{
|
2007-03-13 20:47:54 +00:00
|
|
|
int ret;
|
2007-03-16 20:20:31 +00:00
|
|
|
struct btrfs_trans_handle *trans;
|
2008-01-04 15:38:22 +00:00
|
|
|
struct btrfs_fs_info *fs_info = root->fs_info;
|
|
|
|
|
2007-12-05 15:41:38 +00:00
|
|
|
trans = btrfs_start_transaction(root, 1);
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_commit_transaction(trans, root);
|
2007-12-05 15:41:38 +00:00
|
|
|
trans = btrfs_start_transaction(root, 1);
|
2007-03-20 18:38:32 +00:00
|
|
|
ret = commit_tree_roots(trans, root->fs_info);
|
|
|
|
BUG_ON(ret);
|
|
|
|
ret = __commit_transaction(trans, root);
|
2007-03-13 20:47:54 +00:00
|
|
|
BUG_ON(ret);
|
2008-01-04 15:38:22 +00:00
|
|
|
write_ctree_super(trans, root);
|
2007-12-05 15:41:38 +00:00
|
|
|
btrfs_free_transaction(root, trans);
|
2007-04-26 20:46:06 +00:00
|
|
|
btrfs_free_block_groups(root->fs_info);
|
2007-03-20 18:38:32 +00:00
|
|
|
close(root->fs_info->fp);
|
2007-02-21 22:04:57 +00:00
|
|
|
if (root->node)
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(root->node);
|
2007-03-20 18:38:32 +00:00
|
|
|
if (root->fs_info->extent_root->node)
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(root->fs_info->extent_root->node);
|
2007-03-20 18:38:32 +00:00
|
|
|
if (root->fs_info->tree_root->node)
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(root->fs_info->tree_root->node);
|
|
|
|
free_extent_buffer(root->commit_root);
|
|
|
|
free_extent_buffer(root->fs_info->sb_buffer);
|
|
|
|
|
2008-03-04 16:16:54 +00:00
|
|
|
extent_io_tree_cleanup(&fs_info->extent_cache);
|
|
|
|
extent_io_tree_cleanup(&fs_info->free_space_cache);
|
|
|
|
extent_io_tree_cleanup(&fs_info->block_group_cache);
|
|
|
|
extent_io_tree_cleanup(&fs_info->pinned_extents);
|
|
|
|
extent_io_tree_cleanup(&fs_info->pending_del);
|
|
|
|
extent_io_tree_cleanup(&fs_info->extent_ins);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
free(fs_info->tree_root);
|
|
|
|
free(fs_info->extent_root);
|
|
|
|
free(fs_info->fs_root);
|
|
|
|
free(fs_info);
|
|
|
|
|
2007-02-02 14:18:22 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
|
|
|
|
struct extent_buffer *eb)
|
2007-02-02 14:18:22 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
return clear_extent_buffer_dirty(eb);
|
|
|
|
}
|
|
|
|
|
|
|
|
int wait_on_tree_block_writeback(struct btrfs_root *root,
|
|
|
|
struct extent_buffer *eb)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void btrfs_mark_buffer_dirty(struct extent_buffer *eb)
|
|
|
|
{
|
|
|
|
set_extent_buffer_dirty(eb);
|
2007-02-02 14:18:22 +00:00
|
|
|
}
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
int btrfs_buffer_uptodate(struct extent_buffer *eb)
|
|
|
|
{
|
|
|
|
return extent_buffer_uptodate(eb);
|
|
|
|
}
|
|
|
|
|
|
|
|
int btrfs_set_buffer_uptodate(struct extent_buffer *eb)
|
|
|
|
{
|
|
|
|
return set_extent_buffer_uptodate(eb);
|
|
|
|
}
|