blob: f5db2b93650293c191764049d4ade4cb4e8f6523 [file] [log] [blame]
Chris Masone20d96d2007-03-22 12:13:20 -04001#include <linux/module.h>
2#include <linux/fs.h>
Chris Masond98237b2007-03-28 13:57:48 -04003#include <linux/blkdev.h>
Chris Mason87cbda52007-03-28 19:44:27 -04004#include <linux/crypto.h>
5#include <linux/scatterlist.h>
Chris Masoneb60cea2007-02-02 09:18:22 -05006#include "ctree.h"
7#include "disk-io.h"
Chris Masone089f052007-03-16 16:20:31 -04008#include "transaction.h"
Chris Masoneb60cea2007-02-02 09:18:22 -05009
Chris Masond98237b2007-03-28 13:57:48 -040010
Chris Masone20d96d2007-03-22 12:13:20 -040011static int check_tree_block(struct btrfs_root *root, struct buffer_head *buf)
Chris Masoneb60cea2007-02-02 09:18:22 -050012{
Chris Masone20d96d2007-03-22 12:13:20 -040013 struct btrfs_node *node = btrfs_buffer_node(buf);
Chris Masond98237b2007-03-28 13:57:48 -040014 if (buf->b_blocknr != btrfs_header_blocknr(&node->header)) {
Chris Mason9a8dd152007-02-23 08:38:36 -050015 BUG();
Chris Masond98237b2007-03-28 13:57:48 -040016 }
Chris Masone20d96d2007-03-22 12:13:20 -040017 if (root->node && btrfs_header_parentid(&node->header) !=
Chris Masondf2ce342007-03-23 11:00:45 -040018 btrfs_header_parentid(btrfs_buffer_header(root->node))) {
Chris Mason7f5c1512007-03-23 15:56:19 -040019 BUG();
Chris Masondf2ce342007-03-23 11:00:45 -040020 }
Chris Mason9a8dd152007-02-23 08:38:36 -050021 return 0;
Chris Masoneb60cea2007-02-02 09:18:22 -050022}
23
Chris Masond98237b2007-03-28 13:57:48 -040024struct buffer_head *btrfs_find_tree_block(struct btrfs_root *root, u64 blocknr)
Chris Masoned2ff2c2007-03-01 18:59:40 -050025{
Chris Masond98237b2007-03-28 13:57:48 -040026 struct address_space *mapping = root->fs_info->btree_inode->i_mapping;
27 int blockbits = root->fs_info->sb->s_blocksize_bits;
28 unsigned long index = blocknr >> (PAGE_CACHE_SHIFT - blockbits);
29 struct page *page;
30 struct buffer_head *bh;
31 struct buffer_head *head;
32 struct buffer_head *ret = NULL;
33
34 page = find_lock_page(mapping, index);
35 if (!page)
36 return NULL;
37
38 if (!page_has_buffers(page))
39 goto out_unlock;
40
41 head = page_buffers(page);
42 bh = head;
43 do {
44 if (buffer_mapped(bh) && bh->b_blocknr == blocknr) {
45 ret = bh;
46 get_bh(bh);
47 goto out_unlock;
48 }
49 bh = bh->b_this_page;
50 } while (bh != head);
51out_unlock:
52 unlock_page(page);
53 page_cache_release(page);
54 return ret;
Chris Masoned2ff2c2007-03-01 18:59:40 -050055}
56
Chris Masond98237b2007-03-28 13:57:48 -040057struct buffer_head *btrfs_find_create_tree_block(struct btrfs_root *root,
58 u64 blocknr)
Chris Masoneb60cea2007-02-02 09:18:22 -050059{
Chris Masond98237b2007-03-28 13:57:48 -040060 struct address_space *mapping = root->fs_info->btree_inode->i_mapping;
61 int blockbits = root->fs_info->sb->s_blocksize_bits;
62 unsigned long index = blocknr >> (PAGE_CACHE_SHIFT - blockbits);
63 struct page *page;
64 struct buffer_head *bh;
65 struct buffer_head *head;
66 struct buffer_head *ret = NULL;
67 u64 first_block = index << (PAGE_CACHE_SHIFT - blockbits);
68 page = grab_cache_page(mapping, index);
69 if (!page)
70 return NULL;
71
Chris Masond98237b2007-03-28 13:57:48 -040072 if (!page_has_buffers(page))
73 create_empty_buffers(page, root->fs_info->sb->s_blocksize, 0);
74 head = page_buffers(page);
75 bh = head;
76 do {
77 if (!buffer_mapped(bh)) {
78 bh->b_bdev = root->fs_info->sb->s_bdev;
79 bh->b_blocknr = first_block;
80 set_buffer_mapped(bh);
81 }
82 if (bh->b_blocknr == blocknr) {
83 ret = bh;
84 get_bh(bh);
85 goto out_unlock;
86 }
87 bh = bh->b_this_page;
88 first_block++;
89 } while (bh != head);
90out_unlock:
91 unlock_page(page);
92 page_cache_release(page);
93 return ret;
Chris Masone20d96d2007-03-22 12:13:20 -040094}
Chris Mason123abc82007-03-14 14:14:43 -040095
Chris Masond98237b2007-03-28 13:57:48 -040096static sector_t max_block(struct block_device *bdev)
97{
98 sector_t retval = ~((sector_t)0);
99 loff_t sz = i_size_read(bdev->bd_inode);
100
101 if (sz) {
102 unsigned int size = block_size(bdev);
103 unsigned int sizebits = blksize_bits(size);
104 retval = (sz >> sizebits);
105 }
106 return retval;
107}
108
109static int btree_get_block(struct inode *inode, sector_t iblock,
110 struct buffer_head *bh, int create)
111{
112 if (iblock >= max_block(inode->i_sb->s_bdev)) {
113 if (create)
114 return -EIO;
115
116 /*
117 * for reads, we're just trying to fill a partial page.
118 * return a hole, they will have to call get_block again
119 * before they can fill it, and they will get -EIO at that
120 * time
121 */
122 return 0;
123 }
124 bh->b_bdev = inode->i_sb->s_bdev;
125 bh->b_blocknr = iblock;
126 set_buffer_mapped(bh);
127 return 0;
128}
129
Chris Masonf254e522007-03-29 15:15:27 -0400130int btrfs_csum_data(struct btrfs_root * root, char *data, size_t len,
131 char *result)
Chris Mason87cbda52007-03-28 19:44:27 -0400132{
Chris Mason87cbda52007-03-28 19:44:27 -0400133 struct scatterlist sg;
134 struct crypto_hash *tfm = root->fs_info->hash_tfm;
135 struct hash_desc desc;
136 int ret;
Chris Mason87cbda52007-03-28 19:44:27 -0400137
138 desc.tfm = tfm;
139 desc.flags = 0;
Chris Masonf254e522007-03-29 15:15:27 -0400140 sg_init_one(&sg, data, len);
Chris Mason87cbda52007-03-28 19:44:27 -0400141 spin_lock(&root->fs_info->hash_lock);
Chris Masonf254e522007-03-29 15:15:27 -0400142 ret = crypto_hash_digest(&desc, &sg, len, result);
Chris Mason87cbda52007-03-28 19:44:27 -0400143 spin_unlock(&root->fs_info->hash_lock);
144 if (ret) {
145 printk("sha256 digest failed\n");
146 }
Chris Masonf254e522007-03-29 15:15:27 -0400147 return ret;
148}
149static int csum_tree_block(struct btrfs_root *root, struct buffer_head *bh,
150 int verify)
151{
152 char result[BTRFS_CSUM_SIZE];
153 int ret;
154 struct btrfs_node *node;
155
156 ret = btrfs_csum_data(root, bh->b_data + BTRFS_CSUM_SIZE,
157 bh->b_size - BTRFS_CSUM_SIZE, result);
158 if (ret)
159 return ret;
Chris Mason87cbda52007-03-28 19:44:27 -0400160 if (verify) {
Chris Masonf254e522007-03-29 15:15:27 -0400161 if (memcmp(bh->b_data, result, BTRFS_CSUM_SIZE)) {
162 printk("checksum verify failed on %lu\n",
163 bh->b_blocknr);
164 return 1;
165 }
166 } else {
167 node = btrfs_buffer_node(bh);
168 memcpy(&node->header.csum, result, BTRFS_CSUM_SIZE);
169 }
Chris Mason87cbda52007-03-28 19:44:27 -0400170 return 0;
171}
172
Chris Masond98237b2007-03-28 13:57:48 -0400173static int btree_writepage(struct page *page, struct writeback_control *wbc)
174{
Chris Mason87cbda52007-03-28 19:44:27 -0400175 struct buffer_head *bh;
176 struct btrfs_root *root = btrfs_sb(page->mapping->host->i_sb);
177 struct buffer_head *head;
178
179 if (!page_has_buffers(page)) {
180 create_empty_buffers(page, root->fs_info->sb->s_blocksize,
181 (1 << BH_Dirty)|(1 << BH_Uptodate));
182 }
183 head = page_buffers(page);
184 bh = head;
185 do {
186 if (buffer_dirty(bh))
187 csum_tree_block(root, bh, 0);
188 bh = bh->b_this_page;
189 } while (bh != head);
Chris Masond98237b2007-03-28 13:57:48 -0400190 return block_write_full_page(page, btree_get_block, wbc);
191}
192
193static int btree_readpage(struct file * file, struct page * page)
194{
195 return block_read_full_page(page, btree_get_block);
196}
197
198static struct address_space_operations btree_aops = {
199 .readpage = btree_readpage,
200 .writepage = btree_writepage,
201 .sync_page = block_sync_page,
202};
203
Chris Masone20d96d2007-03-22 12:13:20 -0400204struct buffer_head *read_tree_block(struct btrfs_root *root, u64 blocknr)
205{
Chris Masond98237b2007-03-28 13:57:48 -0400206 struct buffer_head *bh = NULL;
Chris Masone20d96d2007-03-22 12:13:20 -0400207
Chris Masond98237b2007-03-28 13:57:48 -0400208 bh = btrfs_find_create_tree_block(root, blocknr);
209 if (!bh)
210 return bh;
211 lock_buffer(bh);
212 if (!buffer_uptodate(bh)) {
213 get_bh(bh);
214 bh->b_end_io = end_buffer_read_sync;
215 submit_bh(READ, bh);
216 wait_on_buffer(bh);
217 if (!buffer_uptodate(bh))
218 goto fail;
Chris Mason87cbda52007-03-28 19:44:27 -0400219 csum_tree_block(root, bh, 1);
Chris Masond98237b2007-03-28 13:57:48 -0400220 } else {
221 unlock_buffer(bh);
222 }
223 if (check_tree_block(root, bh))
Chris Masoncfaa7292007-02-21 17:04:57 -0500224 BUG();
Chris Masond98237b2007-03-28 13:57:48 -0400225 return bh;
226fail:
227 brelse(bh);
228 return NULL;
229
Chris Masoneb60cea2007-02-02 09:18:22 -0500230}
231
Chris Masone089f052007-03-16 16:20:31 -0400232int dirty_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Masone20d96d2007-03-22 12:13:20 -0400233 struct buffer_head *buf)
Chris Masoned2ff2c2007-03-01 18:59:40 -0500234{
Chris Masone20d96d2007-03-22 12:13:20 -0400235 mark_buffer_dirty(buf);
Chris Masoned2ff2c2007-03-01 18:59:40 -0500236 return 0;
237}
238
Chris Masone089f052007-03-16 16:20:31 -0400239int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Masone20d96d2007-03-22 12:13:20 -0400240 struct buffer_head *buf)
Chris Masoned2ff2c2007-03-01 18:59:40 -0500241{
Chris Masone20d96d2007-03-22 12:13:20 -0400242 clear_buffer_dirty(buf);
Chris Masoned2ff2c2007-03-01 18:59:40 -0500243 return 0;
244}
245
Chris Mason123abc82007-03-14 14:14:43 -0400246static int __setup_root(struct btrfs_super_block *super,
Chris Mason9f5fae22007-03-20 14:38:32 -0400247 struct btrfs_root *root,
248 struct btrfs_fs_info *fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -0400249 u64 objectid)
Chris Masond97e63b2007-02-20 16:40:44 -0500250{
Chris Masoncfaa7292007-02-21 17:04:57 -0500251 root->node = NULL;
Chris Masona28ec192007-03-06 20:08:01 -0500252 root->commit_root = NULL;
Chris Mason123abc82007-03-14 14:14:43 -0400253 root->blocksize = btrfs_super_blocksize(super);
254 root->ref_cows = 0;
Chris Mason9f5fae22007-03-20 14:38:32 -0400255 root->fs_info = fs_info;
Chris Mason3768f362007-03-13 16:47:54 -0400256 memset(&root->root_key, 0, sizeof(root->root_key));
257 memset(&root->root_item, 0, sizeof(root->root_item));
258 return 0;
259}
260
Chris Mason123abc82007-03-14 14:14:43 -0400261static int find_and_setup_root(struct btrfs_super_block *super,
Chris Mason9f5fae22007-03-20 14:38:32 -0400262 struct btrfs_root *tree_root,
263 struct btrfs_fs_info *fs_info,
264 u64 objectid,
Chris Masone20d96d2007-03-22 12:13:20 -0400265 struct btrfs_root *root)
Chris Mason3768f362007-03-13 16:47:54 -0400266{
267 int ret;
268
Chris Masone20d96d2007-03-22 12:13:20 -0400269 __setup_root(super, root, fs_info, objectid);
Chris Mason3768f362007-03-13 16:47:54 -0400270 ret = btrfs_find_last_root(tree_root, objectid,
271 &root->root_item, &root->root_key);
272 BUG_ON(ret);
273
274 root->node = read_tree_block(root,
275 btrfs_root_blocknr(&root->root_item));
Chris Mason3768f362007-03-13 16:47:54 -0400276 BUG_ON(!root->node);
Chris Masond97e63b2007-02-20 16:40:44 -0500277 return 0;
278}
279
Chris Masone20d96d2007-03-22 12:13:20 -0400280struct btrfs_root *open_ctree(struct super_block *sb,
281 struct buffer_head *sb_buffer,
282 struct btrfs_super_block *disk_super)
Chris Masoneb60cea2007-02-02 09:18:22 -0500283{
Chris Masone20d96d2007-03-22 12:13:20 -0400284 struct btrfs_root *root = kmalloc(sizeof(struct btrfs_root),
285 GFP_NOFS);
286 struct btrfs_root *extent_root = kmalloc(sizeof(struct btrfs_root),
287 GFP_NOFS);
288 struct btrfs_root *tree_root = kmalloc(sizeof(struct btrfs_root),
289 GFP_NOFS);
290 struct btrfs_root *inode_root = kmalloc(sizeof(struct btrfs_root),
291 GFP_NOFS);
292 struct btrfs_fs_info *fs_info = kmalloc(sizeof(*fs_info),
293 GFP_NOFS);
Chris Masoneb60cea2007-02-02 09:18:22 -0500294 int ret;
295
Chris Mason87cbda52007-03-28 19:44:27 -0400296 if (!btrfs_super_root(disk_super)) {
Chris Masone20d96d2007-03-22 12:13:20 -0400297 return NULL;
Chris Mason87cbda52007-03-28 19:44:27 -0400298 }
Chris Mason8ef97622007-03-26 10:15:30 -0400299 init_bit_radix(&fs_info->pinned_radix);
300 init_bit_radix(&fs_info->pending_del_radix);
Chris Masond98237b2007-03-28 13:57:48 -0400301 sb_set_blocksize(sb, sb_buffer->b_size);
Chris Mason9f5fae22007-03-20 14:38:32 -0400302 fs_info->running_transaction = NULL;
303 fs_info->fs_root = root;
304 fs_info->tree_root = tree_root;
305 fs_info->extent_root = extent_root;
306 fs_info->inode_root = inode_root;
307 fs_info->last_inode_alloc = 0;
308 fs_info->last_inode_alloc_dirid = 0;
Chris Masone20d96d2007-03-22 12:13:20 -0400309 fs_info->disk_super = disk_super;
Chris Masone20d96d2007-03-22 12:13:20 -0400310 fs_info->sb = sb;
Chris Masond98237b2007-03-28 13:57:48 -0400311 fs_info->btree_inode = new_inode(sb);
312 fs_info->btree_inode->i_ino = 1;
313 fs_info->btree_inode->i_size = sb->s_bdev->bd_inode->i_size;
314 fs_info->btree_inode->i_mapping->a_ops = &btree_aops;
315 mapping_set_gfp_mask(fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Mason87cbda52007-03-28 19:44:27 -0400316 fs_info->hash_tfm = crypto_alloc_hash("sha256", 0, CRYPTO_ALG_ASYNC);
Chris Mason30ae8462007-03-29 09:59:15 -0400317 spin_lock_init(&fs_info->hash_lock);
318
319 if (!fs_info->hash_tfm || IS_ERR(fs_info->hash_tfm)) {
Chris Mason87cbda52007-03-28 19:44:27 -0400320 printk("failed to allocate sha256 hash\n");
321 return NULL;
322 }
Chris Masond98237b2007-03-28 13:57:48 -0400323
Chris Mason79154b12007-03-22 15:59:16 -0400324 mutex_init(&fs_info->trans_mutex);
Chris Masond561c022007-03-23 19:47:49 -0400325 mutex_init(&fs_info->fs_mutex);
Chris Mason9f5fae22007-03-20 14:38:32 -0400326 memset(&fs_info->current_insert, 0, sizeof(fs_info->current_insert));
327 memset(&fs_info->last_insert, 0, sizeof(fs_info->last_insert));
Chris Mason3768f362007-03-13 16:47:54 -0400328
Chris Masone20d96d2007-03-22 12:13:20 -0400329 __setup_root(disk_super, tree_root, fs_info, BTRFS_ROOT_TREE_OBJECTID);
Chris Masond98237b2007-03-28 13:57:48 -0400330
331 fs_info->sb_buffer = read_tree_block(tree_root, sb_buffer->b_blocknr);
332
Chris Mason87cbda52007-03-28 19:44:27 -0400333 if (!fs_info->sb_buffer) {
334printk("failed2\n");
Chris Masond98237b2007-03-28 13:57:48 -0400335 return NULL;
Chris Mason87cbda52007-03-28 19:44:27 -0400336 }
Chris Masond98237b2007-03-28 13:57:48 -0400337 brelse(sb_buffer);
338 sb_buffer = NULL;
339 disk_super = (struct btrfs_super_block *)fs_info->sb_buffer->b_data;
340 fs_info->disk_super = disk_super;
341
Chris Masone20d96d2007-03-22 12:13:20 -0400342 tree_root->node = read_tree_block(tree_root,
343 btrfs_super_root(disk_super));
Chris Mason3768f362007-03-13 16:47:54 -0400344 BUG_ON(!tree_root->node);
345
Chris Masone20d96d2007-03-22 12:13:20 -0400346 ret = find_and_setup_root(disk_super, tree_root, fs_info,
347 BTRFS_EXTENT_TREE_OBJECTID, extent_root);
Chris Mason3768f362007-03-13 16:47:54 -0400348 BUG_ON(ret);
349
Chris Masone20d96d2007-03-22 12:13:20 -0400350 ret = find_and_setup_root(disk_super, tree_root, fs_info,
351 BTRFS_INODE_MAP_OBJECTID, inode_root);
Chris Mason9f5fae22007-03-20 14:38:32 -0400352 BUG_ON(ret);
353
Chris Masone20d96d2007-03-22 12:13:20 -0400354 ret = find_and_setup_root(disk_super, tree_root, fs_info,
355 BTRFS_FS_TREE_OBJECTID, root);
Chris Mason3768f362007-03-13 16:47:54 -0400356 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -0500357 root->commit_root = root->node;
Chris Masone20d96d2007-03-22 12:13:20 -0400358 get_bh(root->node);
Chris Mason3768f362007-03-13 16:47:54 -0400359 root->ref_cows = 1;
Chris Mason293ffd52007-03-20 15:57:25 -0400360 root->fs_info->generation = root->root_key.offset + 1;
Chris Masoneb60cea2007-02-02 09:18:22 -0500361 return root;
362}
363
Chris Masone089f052007-03-16 16:20:31 -0400364int write_ctree_super(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason79154b12007-03-22 15:59:16 -0400365 *root)
Chris Masoncfaa7292007-02-21 17:04:57 -0500366{
Chris Masond5719762007-03-23 10:01:08 -0400367 struct buffer_head *bh = root->fs_info->sb_buffer;
368 btrfs_set_super_root(root->fs_info->disk_super,
369 root->fs_info->tree_root->node->b_blocknr);
370 lock_buffer(bh);
371 clear_buffer_dirty(bh);
Chris Mason87cbda52007-03-28 19:44:27 -0400372 csum_tree_block(root, bh, 0);
Chris Masond5719762007-03-23 10:01:08 -0400373 bh->b_end_io = end_buffer_write_sync;
374 get_bh(bh);
375 submit_bh(WRITE, bh);
376 wait_on_buffer(bh);
377 if (!buffer_uptodate(bh)) {
378 WARN_ON(1);
379 return -EIO;
Chris Masoncfaa7292007-02-21 17:04:57 -0500380 }
381 return 0;
382}
383
Chris Masone20d96d2007-03-22 12:13:20 -0400384int close_ctree(struct btrfs_root *root)
Chris Masoneb60cea2007-02-02 09:18:22 -0500385{
Chris Mason3768f362007-03-13 16:47:54 -0400386 int ret;
Chris Masone089f052007-03-16 16:20:31 -0400387 struct btrfs_trans_handle *trans;
388
Chris Mason79154b12007-03-22 15:59:16 -0400389 trans = btrfs_start_transaction(root, 1);
390 btrfs_commit_transaction(trans, root);
391 /* run commit again to drop the original snapshot */
392 trans = btrfs_start_transaction(root, 1);
393 btrfs_commit_transaction(trans, root);
394 ret = btrfs_write_and_wait_transaction(NULL, root);
Chris Mason9f5fae22007-03-20 14:38:32 -0400395 BUG_ON(ret);
Chris Mason79154b12007-03-22 15:59:16 -0400396 write_ctree_super(NULL, root);
Chris Masoned2ff2c2007-03-01 18:59:40 -0500397
Chris Masoneb60cea2007-02-02 09:18:22 -0500398 if (root->node)
Chris Mason234b63a2007-03-13 10:46:10 -0400399 btrfs_block_release(root, root->node);
Chris Mason9f5fae22007-03-20 14:38:32 -0400400 if (root->fs_info->extent_root->node)
401 btrfs_block_release(root->fs_info->extent_root,
402 root->fs_info->extent_root->node);
403 if (root->fs_info->inode_root->node)
404 btrfs_block_release(root->fs_info->inode_root,
405 root->fs_info->inode_root->node);
406 if (root->fs_info->tree_root->node)
407 btrfs_block_release(root->fs_info->tree_root,
408 root->fs_info->tree_root->node);
Chris Mason234b63a2007-03-13 10:46:10 -0400409 btrfs_block_release(root, root->commit_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400410 btrfs_block_release(root, root->fs_info->sb_buffer);
Chris Mason87cbda52007-03-28 19:44:27 -0400411 crypto_free_hash(root->fs_info->hash_tfm);
Chris Mason30ae8462007-03-29 09:59:15 -0400412 truncate_inode_pages(root->fs_info->btree_inode->i_mapping, 0);
Chris Masond98237b2007-03-28 13:57:48 -0400413 iput(root->fs_info->btree_inode);
Chris Masone20d96d2007-03-22 12:13:20 -0400414 kfree(root->fs_info->extent_root);
415 kfree(root->fs_info->inode_root);
416 kfree(root->fs_info->tree_root);
417 kfree(root->fs_info);
418 kfree(root);
Chris Masoneb60cea2007-02-02 09:18:22 -0500419 return 0;
420}
421
Chris Masone20d96d2007-03-22 12:13:20 -0400422void btrfs_block_release(struct btrfs_root *root, struct buffer_head *buf)
Chris Masoneb60cea2007-02-02 09:18:22 -0500423{
Chris Masone20d96d2007-03-22 12:13:20 -0400424 brelse(buf);
Chris Masoneb60cea2007-02-02 09:18:22 -0500425}
426