disk-io.c 10.7 KB
Newer Older
C
Chris Mason 已提交
1 2
#include <linux/module.h>
#include <linux/fs.h>
3
#include <linux/blkdev.h>
C
Chris Mason 已提交
4 5
#include <linux/crypto.h>
#include <linux/scatterlist.h>
6 7
#include "ctree.h"
#include "disk-io.h"
8
#include "transaction.h"
9

10

C
Chris Mason 已提交
11
static int check_tree_block(struct btrfs_root *root, struct buffer_head *buf)
12
{
C
Chris Mason 已提交
13
	struct btrfs_node *node = btrfs_buffer_node(buf);
14
	if (buf->b_blocknr != btrfs_header_blocknr(&node->header)) {
15
		BUG();
16
	}
C
Chris Mason 已提交
17
	if (root->node && btrfs_header_parentid(&node->header) !=
18
	    btrfs_header_parentid(btrfs_buffer_header(root->node))) {
19
		BUG();
20
	}
21
	return 0;
22 23
}

24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
struct buffer_head *btrfs_find_tree_block(struct btrfs_root *root, u64 blocknr)
{
	struct address_space *mapping = root->fs_info->btree_inode->i_mapping;
	int blockbits = root->fs_info->sb->s_blocksize_bits;
	unsigned long index = blocknr >> (PAGE_CACHE_SHIFT - blockbits);
	struct page *page;
	struct buffer_head *bh;
	struct buffer_head *head;
	struct buffer_head *ret = NULL;

	page = find_lock_page(mapping, index);
	if (!page)
		return NULL;

	if (!page_has_buffers(page))
		goto out_unlock;

	head = page_buffers(page);
	bh = head;
	do {
		if (buffer_mapped(bh) && bh->b_blocknr == blocknr) {
			ret = bh;
			get_bh(bh);
			goto out_unlock;
		}
		bh = bh->b_this_page;
	} while (bh != head);
out_unlock:
	unlock_page(page);
	page_cache_release(page);
	return ret;
}

struct buffer_head *btrfs_find_create_tree_block(struct btrfs_root *root,
						 u64 blocknr)
{
	struct address_space *mapping = root->fs_info->btree_inode->i_mapping;
	int blockbits = root->fs_info->sb->s_blocksize_bits;
	unsigned long index = blocknr >> (PAGE_CACHE_SHIFT - blockbits);
	struct page *page;
	struct buffer_head *bh;
	struct buffer_head *head;
	struct buffer_head *ret = NULL;
	u64 first_block = index << (PAGE_CACHE_SHIFT - blockbits);
	page = grab_cache_page(mapping, index);
	if (!page)
		return NULL;

	wait_on_page_writeback(page);
	if (!page_has_buffers(page))
		create_empty_buffers(page, root->fs_info->sb->s_blocksize, 0);
	head = page_buffers(page);
	bh = head;
	do {
		if (!buffer_mapped(bh)) {
			bh->b_bdev = root->fs_info->sb->s_bdev;
			bh->b_blocknr = first_block;
			set_buffer_mapped(bh);
		}
		if (bh->b_blocknr == blocknr) {
			ret = bh;
			get_bh(bh);
			goto out_unlock;
		}
		bh = bh->b_this_page;
		first_block++;
	} while (bh != head);
out_unlock:
	unlock_page(page);
	page_cache_release(page);
	return ret;
}

static sector_t max_block(struct block_device *bdev)
{
	sector_t retval = ~((sector_t)0);
	loff_t sz = i_size_read(bdev->bd_inode);

	if (sz) {
		unsigned int size = block_size(bdev);
		unsigned int sizebits = blksize_bits(size);
		retval = (sz >> sizebits);
	}
	return retval;
}

static int btree_get_block(struct inode *inode, sector_t iblock,
			   struct buffer_head *bh, int create)
{
	if (iblock >= max_block(inode->i_sb->s_bdev)) {
		if (create)
			return -EIO;

		/*
		 * for reads, we're just trying to fill a partial page.
		 * return a hole, they will have to call get_block again
		 * before they can fill it, and they will get -EIO at that
		 * time
		 */
		return 0;
	}
	bh->b_bdev = inode->i_sb->s_bdev;
	bh->b_blocknr = iblock;
	set_buffer_mapped(bh);
	return 0;
}

C
Chris Mason 已提交
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
static int csum_tree_block(struct btrfs_root * root, struct buffer_head *bh,
			    int verify)
{
	struct btrfs_node *node = btrfs_buffer_node(bh);
	struct scatterlist sg;
	struct crypto_hash *tfm = root->fs_info->hash_tfm;
	struct hash_desc desc;
	int ret;
	char result[32];

	desc.tfm = tfm;
	desc.flags = 0;
	sg_init_one(&sg, bh->b_data + 32, bh->b_size - 32);
	spin_lock(&root->fs_info->hash_lock);
	ret = crypto_hash_digest(&desc, &sg, bh->b_size - 32, result);
	spin_unlock(&root->fs_info->hash_lock);
	if (ret) {
		printk("sha256 digest failed\n");
	}
	if (verify) {
		if (memcmp(node->header.csum, result, sizeof(result)))
			printk("csum verify failed on %Lu\n", bh->b_blocknr);
		return -EINVAL;
	} else
		memcpy(node->header.csum, result, sizeof(node->header.csum));
	return 0;
}

159
static int btree_writepage(struct page *page, struct writeback_control *wbc)
160
{
C
Chris Mason 已提交
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
	struct buffer_head *bh;
	struct btrfs_root *root = btrfs_sb(page->mapping->host->i_sb);
	struct buffer_head *head;

	if (!page_has_buffers(page)) {
		create_empty_buffers(page, root->fs_info->sb->s_blocksize,
					(1 << BH_Dirty)|(1 << BH_Uptodate));
	}
	head = page_buffers(page);
	bh = head;
	do {
		if (buffer_dirty(bh))
			csum_tree_block(root, bh, 0);
		bh = bh->b_this_page;
	} while (bh != head);
176
	return block_write_full_page(page, btree_get_block, wbc);
177 178
}

179
static int btree_readpage(struct file * file, struct page * page)
180
{
181
	return block_read_full_page(page, btree_get_block);
182 183
}

184 185 186 187 188 189
static struct address_space_operations btree_aops = {
	.readpage	= btree_readpage,
	.writepage	= btree_writepage,
	.sync_page	= block_sync_page,
};

C
Chris Mason 已提交
190
struct buffer_head *read_tree_block(struct btrfs_root *root, u64 blocknr)
191
{
192
	struct buffer_head *bh = NULL;
193

194 195 196 197 198 199 200 201 202 203 204
	bh = btrfs_find_create_tree_block(root, blocknr);
	if (!bh)
		return bh;
	lock_buffer(bh);
	if (!buffer_uptodate(bh)) {
		get_bh(bh);
		bh->b_end_io = end_buffer_read_sync;
		submit_bh(READ, bh);
		wait_on_buffer(bh);
		if (!buffer_uptodate(bh))
			goto fail;
C
Chris Mason 已提交
205
		csum_tree_block(root, bh, 1);
206 207 208 209
	} else {
		unlock_buffer(bh);
	}
	if (check_tree_block(root, bh))
C
Chris Mason 已提交
210
		BUG();
211 212 213 214 215
	return bh;
fail:
	brelse(bh);
	return NULL;

216 217
}

218
int dirty_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
C
Chris Mason 已提交
219
		     struct buffer_head *buf)
220
{
C
Chris Mason 已提交
221
	mark_buffer_dirty(buf);
222 223 224
	return 0;
}

225
int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
C
Chris Mason 已提交
226
		     struct buffer_head *buf)
227
{
C
Chris Mason 已提交
228
	clear_buffer_dirty(buf);
229 230 231
	return 0;
}

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

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

C
Chris Mason 已提交
255
	__setup_root(super, root, fs_info, objectid);
256 257 258 259 260 261 262
	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);
263 264 265
	return 0;
}

C
Chris Mason 已提交
266 267 268
struct btrfs_root *open_ctree(struct super_block *sb,
			      struct buffer_head *sb_buffer,
			      struct btrfs_super_block *disk_super)
269
{
C
Chris Mason 已提交
270 271 272 273 274 275 276 277 278 279
	struct btrfs_root *root = kmalloc(sizeof(struct btrfs_root),
					  GFP_NOFS);
	struct btrfs_root *extent_root = kmalloc(sizeof(struct btrfs_root),
						 GFP_NOFS);
	struct btrfs_root *tree_root = kmalloc(sizeof(struct btrfs_root),
					       GFP_NOFS);
	struct btrfs_root *inode_root = kmalloc(sizeof(struct btrfs_root),
						GFP_NOFS);
	struct btrfs_fs_info *fs_info = kmalloc(sizeof(*fs_info),
						GFP_NOFS);
280 281
	int ret;

C
Chris Mason 已提交
282
	if (!btrfs_super_root(disk_super)) {
C
Chris Mason 已提交
283
		return NULL;
C
Chris Mason 已提交
284
	}
C
Chris Mason 已提交
285 286
	init_bit_radix(&fs_info->pinned_radix);
	init_bit_radix(&fs_info->pending_del_radix);
287
	sb_set_blocksize(sb, sb_buffer->b_size);
288 289 290 291 292 293 294
	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;
C
Chris Mason 已提交
295 296
	fs_info->disk_super = disk_super;
	fs_info->sb = sb;
297 298 299 300 301
	fs_info->btree_inode = new_inode(sb);
	fs_info->btree_inode->i_ino = 1;
	fs_info->btree_inode->i_size = sb->s_bdev->bd_inode->i_size;
	fs_info->btree_inode->i_mapping->a_ops = &btree_aops;
	mapping_set_gfp_mask(fs_info->btree_inode->i_mapping, GFP_NOFS);
C
Chris Mason 已提交
302 303 304 305 306 307
	fs_info->hash_tfm = crypto_alloc_hash("sha256", 0, CRYPTO_ALG_ASYNC);
	if (!fs_info->hash_tfm) {
		printk("failed to allocate sha256 hash\n");
		return NULL;
	}
	spin_lock_init(&fs_info->hash_lock);
308

C
Chris Mason 已提交
309
	mutex_init(&fs_info->trans_mutex);
C
Chris Mason 已提交
310
	mutex_init(&fs_info->fs_mutex);
311 312
	memset(&fs_info->current_insert, 0, sizeof(fs_info->current_insert));
	memset(&fs_info->last_insert, 0, sizeof(fs_info->last_insert));
313

C
Chris Mason 已提交
314
	__setup_root(disk_super, tree_root, fs_info, BTRFS_ROOT_TREE_OBJECTID);
315 316 317

	fs_info->sb_buffer = read_tree_block(tree_root, sb_buffer->b_blocknr);

C
Chris Mason 已提交
318 319
	if (!fs_info->sb_buffer) {
printk("failed2\n");
320
		return NULL;
C
Chris Mason 已提交
321
	}
322 323 324 325 326
	brelse(sb_buffer);
	sb_buffer = NULL;
	disk_super = (struct btrfs_super_block *)fs_info->sb_buffer->b_data;
	fs_info->disk_super = disk_super;

C
Chris Mason 已提交
327 328
	tree_root->node = read_tree_block(tree_root,
					  btrfs_super_root(disk_super));
329 330
	BUG_ON(!tree_root->node);

C
Chris Mason 已提交
331 332
	ret = find_and_setup_root(disk_super, tree_root, fs_info,
				  BTRFS_EXTENT_TREE_OBJECTID, extent_root);
333 334
	BUG_ON(ret);

C
Chris Mason 已提交
335 336
	ret = find_and_setup_root(disk_super, tree_root, fs_info,
				  BTRFS_INODE_MAP_OBJECTID, inode_root);
337 338
	BUG_ON(ret);

C
Chris Mason 已提交
339 340
	ret = find_and_setup_root(disk_super, tree_root, fs_info,
				  BTRFS_FS_TREE_OBJECTID, root);
341
	BUG_ON(ret);
342
	root->commit_root = root->node;
C
Chris Mason 已提交
343
	get_bh(root->node);
344
	root->ref_cows = 1;
345
	root->fs_info->generation = root->root_key.offset + 1;
346 347 348
	return root;
}

349
int write_ctree_super(struct btrfs_trans_handle *trans, struct btrfs_root
C
Chris Mason 已提交
350
		      *root)
351
{
352 353 354 355 356
	struct buffer_head *bh = root->fs_info->sb_buffer;
	btrfs_set_super_root(root->fs_info->disk_super,
			     root->fs_info->tree_root->node->b_blocknr);
	lock_buffer(bh);
	clear_buffer_dirty(bh);
C
Chris Mason 已提交
357
	csum_tree_block(root, bh, 0);
358 359 360 361 362 363 364
	bh->b_end_io = end_buffer_write_sync;
	get_bh(bh);
	submit_bh(WRITE, bh);
	wait_on_buffer(bh);
	if (!buffer_uptodate(bh)) {
		WARN_ON(1);
		return -EIO;
C
Chris Mason 已提交
365 366 367 368
	}
	return 0;
}

C
Chris Mason 已提交
369
int close_ctree(struct btrfs_root *root)
C
Chris Mason 已提交
370
{
371
	int ret;
372 373
	struct btrfs_trans_handle *trans;

C
Chris Mason 已提交
374 375 376 377 378 379
	trans = btrfs_start_transaction(root, 1);
	btrfs_commit_transaction(trans, root);
	/* run commit again to  drop the original snapshot */
	trans = btrfs_start_transaction(root, 1);
	btrfs_commit_transaction(trans, root);
	ret = btrfs_write_and_wait_transaction(NULL, root);
380
	BUG_ON(ret);
C
Chris Mason 已提交
381
	write_ctree_super(NULL, root);
382

C
Chris Mason 已提交
383
	if (root->node)
C
Chris Mason 已提交
384
		btrfs_block_release(root, root->node);
385 386 387 388 389 390 391 392 393
	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 已提交
394
	btrfs_block_release(root, root->commit_root);
C
Chris Mason 已提交
395
	btrfs_block_release(root, root->fs_info->sb_buffer);
C
Chris Mason 已提交
396
	crypto_free_hash(root->fs_info->hash_tfm);
397
	iput(root->fs_info->btree_inode);
C
Chris Mason 已提交
398 399 400 401 402
	kfree(root->fs_info->extent_root);
	kfree(root->fs_info->inode_root);
	kfree(root->fs_info->tree_root);
	kfree(root->fs_info);
	kfree(root);
403 404 405
	return 0;
}

C
Chris Mason 已提交
406
void btrfs_block_release(struct btrfs_root *root, struct buffer_head *buf)
407
{
C
Chris Mason 已提交
408
	brelse(buf);
409 410
}