Btrfs: split up super.c
[deliverable/linux.git] / fs / btrfs / disk-io.c
1 #include <linux/module.h>
2 #include <linux/fs.h>
3 #include <linux/blkdev.h>
4 #include <linux/crypto.h>
5 #include <linux/scatterlist.h>
6 #include <linux/swap.h>
7 #include <linux/radix-tree.h>
8 #include <linux/writeback.h>
9 #include "ctree.h"
10 #include "disk-io.h"
11 #include "transaction.h"
12 #include "btrfs_inode.h"
13
14 u64 bh_blocknr(struct buffer_head *bh)
15 {
16 return bh->b_blocknr;
17 }
18
19 static int check_tree_block(struct btrfs_root *root, struct buffer_head *buf)
20 {
21 struct btrfs_node *node = btrfs_buffer_node(buf);
22 if (bh_blocknr(buf) != btrfs_header_blocknr(&node->header)) {
23 printk(KERN_CRIT "bh_blocknr(buf) is %Lu, header is %Lu\n",
24 bh_blocknr(buf), btrfs_header_blocknr(&node->header));
25 return 1;
26 }
27 return 0;
28 }
29
30 struct buffer_head *btrfs_find_tree_block(struct btrfs_root *root, u64 blocknr)
31 {
32 struct address_space *mapping = root->fs_info->btree_inode->i_mapping;
33 int blockbits = root->fs_info->sb->s_blocksize_bits;
34 unsigned long index = blocknr >> (PAGE_CACHE_SHIFT - blockbits);
35 struct page *page;
36 struct buffer_head *bh;
37 struct buffer_head *head;
38 struct buffer_head *ret = NULL;
39
40
41 page = find_lock_page(mapping, index);
42 if (!page)
43 return NULL;
44
45 if (!page_has_buffers(page))
46 goto out_unlock;
47
48 head = page_buffers(page);
49 bh = head;
50 do {
51 if (buffer_mapped(bh) && bh_blocknr(bh) == blocknr) {
52 ret = bh;
53 get_bh(bh);
54 goto out_unlock;
55 }
56 bh = bh->b_this_page;
57 } while (bh != head);
58 out_unlock:
59 unlock_page(page);
60 page_cache_release(page);
61 return ret;
62 }
63
64 int btrfs_map_bh_to_logical(struct btrfs_root *root, struct buffer_head *bh,
65 u64 logical)
66 {
67 if (logical == 0) {
68 bh->b_bdev = NULL;
69 bh->b_blocknr = 0;
70 set_buffer_mapped(bh);
71 } else {
72 map_bh(bh, root->fs_info->sb, logical);
73 }
74 return 0;
75 }
76
77 struct buffer_head *btrfs_find_create_tree_block(struct btrfs_root *root,
78 u64 blocknr)
79 {
80 struct address_space *mapping = root->fs_info->btree_inode->i_mapping;
81 int blockbits = root->fs_info->sb->s_blocksize_bits;
82 unsigned long index = blocknr >> (PAGE_CACHE_SHIFT - blockbits);
83 struct page *page;
84 struct buffer_head *bh;
85 struct buffer_head *head;
86 struct buffer_head *ret = NULL;
87 int err;
88 u64 first_block = index << (PAGE_CACHE_SHIFT - blockbits);
89
90 page = grab_cache_page(mapping, index);
91 if (!page)
92 return NULL;
93
94 if (!page_has_buffers(page))
95 create_empty_buffers(page, root->fs_info->sb->s_blocksize, 0);
96 head = page_buffers(page);
97 bh = head;
98 do {
99 if (!buffer_mapped(bh)) {
100 err = btrfs_map_bh_to_logical(root, bh, first_block);
101 BUG_ON(err);
102 }
103 if (bh_blocknr(bh) == blocknr) {
104 ret = bh;
105 get_bh(bh);
106 goto out_unlock;
107 }
108 bh = bh->b_this_page;
109 first_block++;
110 } while (bh != head);
111 out_unlock:
112 unlock_page(page);
113 if (ret)
114 touch_buffer(ret);
115 page_cache_release(page);
116 return ret;
117 }
118
119 static int btree_get_block(struct inode *inode, sector_t iblock,
120 struct buffer_head *bh, int create)
121 {
122 int err;
123 struct btrfs_root *root = BTRFS_I(bh->b_page->mapping->host)->root;
124 err = btrfs_map_bh_to_logical(root, bh, iblock);
125 return err;
126 }
127
128 int btrfs_csum_data(struct btrfs_root * root, char *data, size_t len,
129 char *result)
130 {
131 struct scatterlist sg;
132 struct crypto_hash *tfm = root->fs_info->hash_tfm;
133 struct hash_desc desc;
134 int ret;
135
136 desc.tfm = tfm;
137 desc.flags = 0;
138 sg_init_one(&sg, data, len);
139 spin_lock(&root->fs_info->hash_lock);
140 ret = crypto_hash_digest(&desc, &sg, 1, result);
141 spin_unlock(&root->fs_info->hash_lock);
142 if (ret) {
143 printk("digest failed\n");
144 }
145 return ret;
146 }
147 static int csum_tree_block(struct btrfs_root *root, struct buffer_head *bh,
148 int verify)
149 {
150 char result[BTRFS_CRC32_SIZE];
151 int ret;
152 struct btrfs_node *node;
153
154 ret = btrfs_csum_data(root, bh->b_data + BTRFS_CSUM_SIZE,
155 bh->b_size - BTRFS_CSUM_SIZE, result);
156 if (ret)
157 return ret;
158 if (verify) {
159 if (memcmp(bh->b_data, result, BTRFS_CRC32_SIZE)) {
160 printk("checksum verify failed on %Lu\n",
161 bh_blocknr(bh));
162 return 1;
163 }
164 } else {
165 node = btrfs_buffer_node(bh);
166 memcpy(node->header.csum, result, BTRFS_CRC32_SIZE);
167 }
168 return 0;
169 }
170
171 static int btree_writepage(struct page *page, struct writeback_control *wbc)
172 {
173 struct buffer_head *bh;
174 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
175 struct buffer_head *head;
176 if (!page_has_buffers(page)) {
177 create_empty_buffers(page, root->fs_info->sb->s_blocksize,
178 (1 << BH_Dirty)|(1 << BH_Uptodate));
179 }
180 head = page_buffers(page);
181 bh = head;
182 do {
183 if (buffer_dirty(bh))
184 csum_tree_block(root, bh, 0);
185 bh = bh->b_this_page;
186 } while (bh != head);
187 return block_write_full_page(page, btree_get_block, wbc);
188 }
189
190 static int btree_readpage(struct file * file, struct page * page)
191 {
192 return block_read_full_page(page, btree_get_block);
193 }
194
195 static struct address_space_operations btree_aops = {
196 .readpage = btree_readpage,
197 .writepage = btree_writepage,
198 .sync_page = block_sync_page,
199 };
200
201 int readahead_tree_block(struct btrfs_root *root, u64 blocknr)
202 {
203 struct buffer_head *bh = NULL;
204 int ret = 0;
205
206 bh = btrfs_find_create_tree_block(root, blocknr);
207 if (!bh)
208 return 0;
209 if (buffer_uptodate(bh)) {
210 ret = 1;
211 goto done;
212 }
213 if (test_set_buffer_locked(bh)) {
214 ret = 1;
215 goto done;
216 }
217 if (!buffer_uptodate(bh)) {
218 get_bh(bh);
219 bh->b_end_io = end_buffer_read_sync;
220 submit_bh(READ, bh);
221 } else {
222 unlock_buffer(bh);
223 ret = 1;
224 }
225 done:
226 brelse(bh);
227 return ret;
228 }
229
230 struct buffer_head *read_tree_block(struct btrfs_root *root, u64 blocknr)
231 {
232 struct buffer_head *bh = NULL;
233
234 bh = btrfs_find_create_tree_block(root, blocknr);
235 if (!bh)
236 return bh;
237 if (buffer_uptodate(bh))
238 goto uptodate;
239 lock_buffer(bh);
240 if (!buffer_uptodate(bh)) {
241 get_bh(bh);
242 bh->b_end_io = end_buffer_read_sync;
243 submit_bh(READ, bh);
244 wait_on_buffer(bh);
245 if (!buffer_uptodate(bh))
246 goto fail;
247 } else {
248 unlock_buffer(bh);
249 }
250 uptodate:
251 if (!buffer_checked(bh)) {
252 csum_tree_block(root, bh, 1);
253 set_buffer_checked(bh);
254 }
255 if (check_tree_block(root, bh))
256 goto fail;
257 return bh;
258 fail:
259 brelse(bh);
260 return NULL;
261 }
262
263 int dirty_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
264 struct buffer_head *buf)
265 {
266 WARN_ON(atomic_read(&buf->b_count) == 0);
267 mark_buffer_dirty(buf);
268 return 0;
269 }
270
271 int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
272 struct buffer_head *buf)
273 {
274 WARN_ON(atomic_read(&buf->b_count) == 0);
275 clear_buffer_dirty(buf);
276 return 0;
277 }
278
279 static int __setup_root(int blocksize,
280 struct btrfs_root *root,
281 struct btrfs_fs_info *fs_info,
282 u64 objectid)
283 {
284 root->node = NULL;
285 root->inode = NULL;
286 root->commit_root = NULL;
287 root->blocksize = blocksize;
288 root->ref_cows = 0;
289 root->fs_info = fs_info;
290 root->objectid = objectid;
291 root->last_trans = 0;
292 root->highest_inode = 0;
293 root->last_inode_alloc = 0;
294 memset(&root->root_key, 0, sizeof(root->root_key));
295 memset(&root->root_item, 0, sizeof(root->root_item));
296 root->root_key.objectid = objectid;
297 return 0;
298 }
299
300 static int find_and_setup_root(int blocksize,
301 struct btrfs_root *tree_root,
302 struct btrfs_fs_info *fs_info,
303 u64 objectid,
304 struct btrfs_root *root)
305 {
306 int ret;
307
308 __setup_root(blocksize, root, fs_info, objectid);
309 ret = btrfs_find_last_root(tree_root, objectid,
310 &root->root_item, &root->root_key);
311 BUG_ON(ret);
312
313 root->node = read_tree_block(root,
314 btrfs_root_blocknr(&root->root_item));
315 BUG_ON(!root->node);
316 return 0;
317 }
318
319 struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
320 struct btrfs_key *location)
321 {
322 struct btrfs_root *root;
323 struct btrfs_root *tree_root = fs_info->tree_root;
324 struct btrfs_path *path;
325 struct btrfs_leaf *l;
326 u64 highest_inode;
327 int ret = 0;
328
329 root = radix_tree_lookup(&fs_info->fs_roots_radix,
330 (unsigned long)location->objectid);
331 if (root)
332 return root;
333 root = kmalloc(sizeof(*root), GFP_NOFS);
334 if (!root)
335 return ERR_PTR(-ENOMEM);
336 if (location->offset == (u64)-1) {
337 ret = find_and_setup_root(fs_info->sb->s_blocksize,
338 fs_info->tree_root, fs_info,
339 location->objectid, root);
340 if (ret) {
341 kfree(root);
342 return ERR_PTR(ret);
343 }
344 goto insert;
345 }
346
347 __setup_root(fs_info->sb->s_blocksize, root, fs_info,
348 location->objectid);
349
350 path = btrfs_alloc_path();
351 BUG_ON(!path);
352 ret = btrfs_search_slot(NULL, tree_root, location, path, 0, 0);
353 if (ret != 0) {
354 if (ret > 0)
355 ret = -ENOENT;
356 goto out;
357 }
358 l = btrfs_buffer_leaf(path->nodes[0]);
359 memcpy(&root->root_item,
360 btrfs_item_ptr(l, path->slots[0], struct btrfs_root_item),
361 sizeof(root->root_item));
362 memcpy(&root->root_key, location, sizeof(*location));
363 ret = 0;
364 out:
365 btrfs_release_path(root, path);
366 btrfs_free_path(path);
367 if (ret) {
368 kfree(root);
369 return ERR_PTR(ret);
370 }
371 root->node = read_tree_block(root,
372 btrfs_root_blocknr(&root->root_item));
373 BUG_ON(!root->node);
374 insert:
375 root->ref_cows = 1;
376 ret = radix_tree_insert(&fs_info->fs_roots_radix,
377 (unsigned long)root->root_key.objectid,
378 root);
379 if (ret) {
380 brelse(root->node);
381 kfree(root);
382 return ERR_PTR(ret);
383 }
384 ret = btrfs_find_highest_inode(root, &highest_inode);
385 if (ret == 0) {
386 root->highest_inode = highest_inode;
387 root->last_inode_alloc = highest_inode;
388 }
389 return root;
390 }
391
392 struct btrfs_root *open_ctree(struct super_block *sb)
393 {
394 struct btrfs_root *extent_root = kmalloc(sizeof(struct btrfs_root),
395 GFP_NOFS);
396 struct btrfs_root *tree_root = kmalloc(sizeof(struct btrfs_root),
397 GFP_NOFS);
398 struct btrfs_fs_info *fs_info = kmalloc(sizeof(*fs_info),
399 GFP_NOFS);
400 int ret;
401 int err = -EIO;
402 struct btrfs_super_block *disk_super;
403
404 if (!extent_root || !tree_root || !fs_info) {
405 err = -ENOMEM;
406 goto fail;
407 }
408 init_bit_radix(&fs_info->pinned_radix);
409 init_bit_radix(&fs_info->pending_del_radix);
410 init_bit_radix(&fs_info->extent_map_radix);
411 INIT_RADIX_TREE(&fs_info->fs_roots_radix, GFP_NOFS);
412 INIT_RADIX_TREE(&fs_info->block_group_radix, GFP_KERNEL);
413 INIT_RADIX_TREE(&fs_info->block_group_data_radix, GFP_KERNEL);
414 INIT_LIST_HEAD(&fs_info->trans_list);
415 INIT_LIST_HEAD(&fs_info->dead_roots);
416 sb_set_blocksize(sb, 4096);
417 fs_info->running_transaction = NULL;
418 fs_info->tree_root = tree_root;
419 fs_info->extent_root = extent_root;
420 fs_info->sb = sb;
421 fs_info->btree_inode = new_inode(sb);
422 fs_info->btree_inode->i_ino = 1;
423 fs_info->btree_inode->i_nlink = 1;
424 fs_info->btree_inode->i_size = sb->s_bdev->bd_inode->i_size;
425 fs_info->btree_inode->i_mapping->a_ops = &btree_aops;
426 fs_info->do_barriers = 1;
427 fs_info->extent_tree_insert_nr = 0;
428 fs_info->extent_tree_prealloc_nr = 0;
429 fs_info->closing = 0;
430
431 INIT_DELAYED_WORK(&fs_info->trans_work, btrfs_transaction_cleaner);
432 BTRFS_I(fs_info->btree_inode)->root = tree_root;
433 memset(&BTRFS_I(fs_info->btree_inode)->location, 0,
434 sizeof(struct btrfs_key));
435 insert_inode_hash(fs_info->btree_inode);
436 mapping_set_gfp_mask(fs_info->btree_inode->i_mapping, GFP_NOFS);
437 fs_info->hash_tfm = crypto_alloc_hash("crc32c", 0, CRYPTO_ALG_ASYNC);
438 spin_lock_init(&fs_info->hash_lock);
439
440 if (!fs_info->hash_tfm || IS_ERR(fs_info->hash_tfm)) {
441 printk("btrfs: failed hash setup, modprobe cryptomgr?\n");
442 err = -ENOMEM;
443 goto fail_iput;
444 }
445 mutex_init(&fs_info->trans_mutex);
446 mutex_init(&fs_info->fs_mutex);
447
448 __setup_root(sb->s_blocksize, tree_root,
449 fs_info, BTRFS_ROOT_TREE_OBJECTID);
450
451 fs_info->sb_buffer = read_tree_block(tree_root,
452 BTRFS_SUPER_INFO_OFFSET /
453 sb->s_blocksize);
454
455 if (!fs_info->sb_buffer)
456 goto fail_iput;
457 disk_super = (struct btrfs_super_block *)fs_info->sb_buffer->b_data;
458
459 if (!btrfs_super_root(disk_super))
460 goto fail_sb_buffer;
461
462 i_size_write(fs_info->btree_inode,
463 btrfs_super_total_blocks(disk_super) <<
464 fs_info->btree_inode->i_blkbits);
465
466 fs_info->disk_super = disk_super;
467
468 if (strncmp((char *)(&disk_super->magic), BTRFS_MAGIC,
469 sizeof(disk_super->magic))) {
470 printk("btrfs: valid FS not found on %s\n", sb->s_id);
471 goto fail_sb_buffer;
472 }
473 tree_root->node = read_tree_block(tree_root,
474 btrfs_super_root(disk_super));
475 if (!tree_root->node)
476 goto fail_sb_buffer;
477
478 mutex_lock(&fs_info->fs_mutex);
479 ret = find_and_setup_root(sb->s_blocksize, tree_root, fs_info,
480 BTRFS_EXTENT_TREE_OBJECTID, extent_root);
481 if (ret) {
482 mutex_unlock(&fs_info->fs_mutex);
483 goto fail_tree_root;
484 }
485
486 btrfs_read_block_groups(extent_root);
487
488 fs_info->generation = btrfs_super_generation(disk_super) + 1;
489 mutex_unlock(&fs_info->fs_mutex);
490 return tree_root;
491
492 fail_tree_root:
493 btrfs_block_release(tree_root, tree_root->node);
494 fail_sb_buffer:
495 btrfs_block_release(tree_root, fs_info->sb_buffer);
496 fail_iput:
497 iput(fs_info->btree_inode);
498 fail:
499 kfree(extent_root);
500 kfree(tree_root);
501 kfree(fs_info);
502 return ERR_PTR(err);
503 }
504
505 int write_ctree_super(struct btrfs_trans_handle *trans, struct btrfs_root
506 *root)
507 {
508 int ret;
509 struct buffer_head *bh = root->fs_info->sb_buffer;
510
511 btrfs_set_super_root(root->fs_info->disk_super,
512 bh_blocknr(root->fs_info->tree_root->node));
513 lock_buffer(bh);
514 WARN_ON(atomic_read(&bh->b_count) < 1);
515 clear_buffer_dirty(bh);
516 csum_tree_block(root, bh, 0);
517 bh->b_end_io = end_buffer_write_sync;
518 get_bh(bh);
519 if (root->fs_info->do_barriers)
520 ret = submit_bh(WRITE_BARRIER, bh);
521 else
522 ret = submit_bh(WRITE, bh);
523 if (ret == -EOPNOTSUPP) {
524 set_buffer_uptodate(bh);
525 root->fs_info->do_barriers = 0;
526 ret = submit_bh(WRITE, bh);
527 }
528 wait_on_buffer(bh);
529 if (!buffer_uptodate(bh)) {
530 WARN_ON(1);
531 return -EIO;
532 }
533 return 0;
534 }
535
536 static int free_fs_root(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
537 {
538 radix_tree_delete(&fs_info->fs_roots_radix,
539 (unsigned long)root->root_key.objectid);
540 if (root->inode)
541 iput(root->inode);
542 if (root->node)
543 brelse(root->node);
544 if (root->commit_root)
545 brelse(root->commit_root);
546 kfree(root);
547 return 0;
548 }
549
550 static int del_fs_roots(struct btrfs_fs_info *fs_info)
551 {
552 int ret;
553 struct btrfs_root *gang[8];
554 int i;
555
556 while(1) {
557 ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
558 (void **)gang, 0,
559 ARRAY_SIZE(gang));
560 if (!ret)
561 break;
562 for (i = 0; i < ret; i++)
563 free_fs_root(fs_info, gang[i]);
564 }
565 return 0;
566 }
567
568 int close_ctree(struct btrfs_root *root)
569 {
570 int ret;
571 struct btrfs_trans_handle *trans;
572 struct btrfs_fs_info *fs_info = root->fs_info;
573
574 fs_info->closing = 1;
575 btrfs_transaction_flush_work(root);
576 mutex_lock(&fs_info->fs_mutex);
577 trans = btrfs_start_transaction(root, 1);
578 btrfs_commit_transaction(trans, root);
579 /* run commit again to drop the original snapshot */
580 trans = btrfs_start_transaction(root, 1);
581 btrfs_commit_transaction(trans, root);
582 ret = btrfs_write_and_wait_transaction(NULL, root);
583 BUG_ON(ret);
584 write_ctree_super(NULL, root);
585 mutex_unlock(&fs_info->fs_mutex);
586
587 if (fs_info->extent_root->node)
588 btrfs_block_release(fs_info->extent_root,
589 fs_info->extent_root->node);
590 if (fs_info->tree_root->node)
591 btrfs_block_release(fs_info->tree_root,
592 fs_info->tree_root->node);
593 btrfs_block_release(root, fs_info->sb_buffer);
594 crypto_free_hash(fs_info->hash_tfm);
595 truncate_inode_pages(fs_info->btree_inode->i_mapping, 0);
596 iput(fs_info->btree_inode);
597
598 btrfs_free_block_groups(root->fs_info);
599 del_fs_roots(fs_info);
600 kfree(fs_info->extent_root);
601 kfree(fs_info->tree_root);
602 return 0;
603 }
604
605 void btrfs_block_release(struct btrfs_root *root, struct buffer_head *buf)
606 {
607 brelse(buf);
608 }
609
610 void btrfs_btree_balance_dirty(struct btrfs_root *root)
611 {
612 balance_dirty_pages_ratelimited(root->fs_info->btree_inode->i_mapping);
613 }
This page took 0.042227 seconds and 6 git commands to generate.