Match the extent tree code to btrfs-progs for multi-device merging
[linux-2.6-block.git] / fs / btrfs / disk-io.c
CommitLineData
6cbd5570
CM
1/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
e20d96d6 19#include <linux/fs.h>
d98237b3 20#include <linux/blkdev.h>
11bd143f 21#include <linux/crc32c.h>
87cbda5c 22#include <linux/scatterlist.h>
22b0ebda 23#include <linux/swap.h>
0f7d52f4 24#include <linux/radix-tree.h>
35b7e476 25#include <linux/writeback.h>
5f39d397 26#include <linux/buffer_head.h> // for block_sync_page
eb60ceac
CM
27#include "ctree.h"
28#include "disk-io.h"
e089f05c 29#include "transaction.h"
0f7d52f4 30#include "btrfs_inode.h"
db94535d 31#include "print-tree.h"
eb60ceac 32
5f39d397
CM
33#if 0
34static int check_tree_block(struct btrfs_root *root, struct extent_buffer *buf)
7eccb903 35{
5f39d397
CM
36 if (extent_buffer_blocknr(buf) != btrfs_header_blocknr(buf)) {
37 printk(KERN_CRIT "buf blocknr(buf) is %llu, header is %llu\n",
38 (unsigned long long)extent_buffer_blocknr(buf),
39 (unsigned long long)btrfs_header_blocknr(buf));
39279cc3 40 return 1;
d98237b3 41 }
9a8dd150 42 return 0;
eb60ceac 43}
5f39d397 44#endif
eb60ceac 45
d1310b2e 46static struct extent_io_ops btree_extent_io_ops;
0da5468f 47
5f39d397 48struct extent_buffer *btrfs_find_tree_block(struct btrfs_root *root,
db94535d 49 u64 bytenr, u32 blocksize)
d98237b3 50{
5f39d397 51 struct inode *btree_inode = root->fs_info->btree_inode;
f510cfec 52 struct extent_buffer *eb;
d1310b2e 53 eb = find_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
db94535d 54 bytenr, blocksize, GFP_NOFS);
f510cfec 55 return eb;
5f39d397 56}
d98237b3 57
5f39d397 58struct extent_buffer *btrfs_find_create_tree_block(struct btrfs_root *root,
db94535d 59 u64 bytenr, u32 blocksize)
5f39d397
CM
60{
61 struct inode *btree_inode = root->fs_info->btree_inode;
f510cfec 62 struct extent_buffer *eb;
db94535d 63
d1310b2e 64 eb = alloc_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
19c00ddc 65 bytenr, blocksize, NULL, GFP_NOFS);
f510cfec 66 return eb;
d98237b3
CM
67}
68
5f39d397 69struct extent_map *btree_get_extent(struct inode *inode, struct page *page,
d1310b2e 70 size_t page_offset, u64 start, u64 len,
5f39d397 71 int create)
7eccb903 72{
5f39d397
CM
73 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
74 struct extent_map *em;
75 int ret;
76
77again:
d1310b2e
CM
78 spin_lock(&em_tree->lock);
79 em = lookup_extent_mapping(em_tree, start, len);
80 spin_unlock(&em_tree->lock);
5f39d397
CM
81 if (em) {
82 goto out;
7eccb903 83 }
5f39d397
CM
84 em = alloc_extent_map(GFP_NOFS);
85 if (!em) {
86 em = ERR_PTR(-ENOMEM);
87 goto out;
88 }
89 em->start = 0;
d1310b2e 90 em->len = i_size_read(inode);
5f39d397 91 em->block_start = 0;
5f39d397 92 em->bdev = inode->i_sb->s_bdev;
d1310b2e
CM
93
94 spin_lock(&em_tree->lock);
5f39d397 95 ret = add_extent_mapping(em_tree, em);
d1310b2e
CM
96 spin_unlock(&em_tree->lock);
97
5f39d397
CM
98 if (ret == -EEXIST) {
99 free_extent_map(em);
100 em = NULL;
101 goto again;
102 } else if (ret) {
103 em = ERR_PTR(ret);
104 }
105out:
106 return em;
7eccb903
CM
107}
108
19c00ddc
CM
109u32 btrfs_csum_data(struct btrfs_root *root, char *data, u32 seed, size_t len)
110{
111 return crc32c(seed, data, len);
112}
113
114void btrfs_csum_final(u32 crc, char *result)
115{
116 *(__le32 *)result = ~cpu_to_le32(crc);
117}
118
119static int csum_tree_block(struct btrfs_root *root, struct extent_buffer *buf,
120 int verify)
121{
122 char result[BTRFS_CRC32_SIZE];
123 unsigned long len;
124 unsigned long cur_len;
125 unsigned long offset = BTRFS_CSUM_SIZE;
126 char *map_token = NULL;
127 char *kaddr;
128 unsigned long map_start;
129 unsigned long map_len;
130 int err;
131 u32 crc = ~(u32)0;
132
133 len = buf->len - offset;
134 while(len > 0) {
135 err = map_private_extent_buffer(buf, offset, 32,
136 &map_token, &kaddr,
137 &map_start, &map_len, KM_USER0);
138 if (err) {
139 printk("failed to map extent buffer! %lu\n",
140 offset);
141 return 1;
142 }
143 cur_len = min(len, map_len - (offset - map_start));
144 crc = btrfs_csum_data(root, kaddr + offset - map_start,
145 crc, cur_len);
146 len -= cur_len;
147 offset += cur_len;
148 unmap_extent_buffer(buf, map_token, KM_USER0);
149 }
150 btrfs_csum_final(crc, result);
151
152 if (verify) {
e4204ded
CM
153 int from_this_trans = 0;
154
155 if (root->fs_info->running_transaction &&
156 btrfs_header_generation(buf) ==
157 root->fs_info->running_transaction->transid)
158 from_this_trans = 1;
159
160 /* FIXME, this is not good */
161 if (from_this_trans == 0 &&
162 memcmp_extent_buffer(buf, result, 0, BTRFS_CRC32_SIZE)) {
163 u32 val;
164 u32 found = 0;
165 memcpy(&found, result, BTRFS_CRC32_SIZE);
166
167 read_extent_buffer(buf, &val, 0, BTRFS_CRC32_SIZE);
168 printk("btrfs: %s checksum verify failed on %llu "
169 "wanted %X found %X from_this_trans %d\n",
19c00ddc 170 root->fs_info->sb->s_id,
e4204ded 171 buf->start, val, found, from_this_trans);
19c00ddc
CM
172 return 1;
173 }
174 } else {
175 write_extent_buffer(buf, result, 0, BTRFS_CRC32_SIZE);
176 }
177 return 0;
178}
179
180
181int csum_dirty_buffer(struct btrfs_root *root, struct page *page)
182{
d1310b2e 183 struct extent_io_tree *tree;
35ebb934 184 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
19c00ddc
CM
185 u64 found_start;
186 int found_level;
187 unsigned long len;
188 struct extent_buffer *eb;
d1310b2e 189 tree = &BTRFS_I(page->mapping->host)->io_tree;
19c00ddc
CM
190
191 if (page->private == EXTENT_PAGE_PRIVATE)
192 goto out;
193 if (!page->private)
194 goto out;
195 len = page->private >> 2;
196 if (len == 0) {
197 WARN_ON(1);
198 }
199 eb = alloc_extent_buffer(tree, start, len, page, GFP_NOFS);
a86c12c7
CM
200 read_extent_buffer_pages(tree, eb, start + PAGE_CACHE_SIZE, 1,
201 btree_get_extent);
e18e4809 202 btrfs_clear_buffer_defrag(eb);
19c00ddc
CM
203 found_start = btrfs_header_bytenr(eb);
204 if (found_start != start) {
205 printk("warning: eb start incorrect %Lu buffer %Lu len %lu\n",
206 start, found_start, len);
55c69072
CM
207 WARN_ON(1);
208 goto err;
209 }
210 if (eb->first_page != page) {
211 printk("bad first page %lu %lu\n", eb->first_page->index,
212 page->index);
213 WARN_ON(1);
214 goto err;
215 }
216 if (!PageUptodate(page)) {
217 printk("csum not up to date page %lu\n", page->index);
218 WARN_ON(1);
219 goto err;
19c00ddc
CM
220 }
221 found_level = btrfs_header_level(eb);
222 csum_tree_block(root, eb, 0);
55c69072 223err:
19c00ddc
CM
224 free_extent_buffer(eb);
225out:
226 return 0;
227}
228
0da5468f 229static int btree_writepage_io_hook(struct page *page, u64 start, u64 end)
d98237b3 230{
19c00ddc 231 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
19c00ddc
CM
232
233 csum_dirty_buffer(root, page);
0da5468f
CM
234 return 0;
235}
236
237static int btree_writepage(struct page *page, struct writeback_control *wbc)
238{
d1310b2e
CM
239 struct extent_io_tree *tree;
240 tree = &BTRFS_I(page->mapping->host)->io_tree;
5f39d397
CM
241 return extent_write_full_page(tree, page, btree_get_extent, wbc);
242}
0da5468f
CM
243
244static int btree_writepages(struct address_space *mapping,
245 struct writeback_control *wbc)
246{
d1310b2e
CM
247 struct extent_io_tree *tree;
248 tree = &BTRFS_I(mapping->host)->io_tree;
d8d5f3e1 249 if (wbc->sync_mode == WB_SYNC_NONE) {
793955bc
CM
250 u64 num_dirty;
251 u64 start = 0;
252 unsigned long thresh = 96 * 1024 * 1024;
448d640b
CM
253
254 if (wbc->for_kupdate)
255 return 0;
256
ca664626
CM
257 if (current_is_pdflush()) {
258 thresh = 96 * 1024 * 1024;
259 } else {
260 thresh = 8 * 1024 * 1024;
261 }
1832a6d5
CM
262 num_dirty = count_range_bits(tree, &start, (u64)-1,
263 thresh, EXTENT_DIRTY);
793955bc
CM
264 if (num_dirty < thresh) {
265 return 0;
266 }
267 }
0da5468f
CM
268 return extent_writepages(tree, mapping, btree_get_extent, wbc);
269}
270
5f39d397
CM
271int btree_readpage(struct file *file, struct page *page)
272{
d1310b2e
CM
273 struct extent_io_tree *tree;
274 tree = &BTRFS_I(page->mapping->host)->io_tree;
5f39d397
CM
275 return extent_read_full_page(tree, page, btree_get_extent);
276}
22b0ebda 277
70dec807 278static int btree_releasepage(struct page *page, gfp_t gfp_flags)
5f39d397 279{
d1310b2e
CM
280 struct extent_io_tree *tree;
281 struct extent_map_tree *map;
5f39d397 282 int ret;
d98237b3 283
d1310b2e
CM
284 tree = &BTRFS_I(page->mapping->host)->io_tree;
285 map = &BTRFS_I(page->mapping->host)->extent_tree;
70dec807 286 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
5f39d397
CM
287 if (ret == 1) {
288 ClearPagePrivate(page);
289 set_page_private(page, 0);
290 page_cache_release(page);
291 }
d98237b3
CM
292 return ret;
293}
294
5f39d397 295static void btree_invalidatepage(struct page *page, unsigned long offset)
d98237b3 296{
d1310b2e
CM
297 struct extent_io_tree *tree;
298 tree = &BTRFS_I(page->mapping->host)->io_tree;
5f39d397
CM
299 extent_invalidatepage(tree, page, offset);
300 btree_releasepage(page, GFP_NOFS);
d98237b3
CM
301}
302
5f39d397 303#if 0
d98237b3 304static int btree_writepage(struct page *page, struct writeback_control *wbc)
ed2ff2cb 305{
87cbda5c 306 struct buffer_head *bh;
0f7d52f4 307 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
87cbda5c 308 struct buffer_head *head;
87cbda5c
CM
309 if (!page_has_buffers(page)) {
310 create_empty_buffers(page, root->fs_info->sb->s_blocksize,
311 (1 << BH_Dirty)|(1 << BH_Uptodate));
312 }
313 head = page_buffers(page);
314 bh = head;
315 do {
316 if (buffer_dirty(bh))
317 csum_tree_block(root, bh, 0);
318 bh = bh->b_this_page;
319 } while (bh != head);
d98237b3 320 return block_write_full_page(page, btree_get_block, wbc);
ed2ff2cb 321}
5f39d397 322#endif
eb60ceac 323
d98237b3
CM
324static struct address_space_operations btree_aops = {
325 .readpage = btree_readpage,
326 .writepage = btree_writepage,
0da5468f 327 .writepages = btree_writepages,
5f39d397
CM
328 .releasepage = btree_releasepage,
329 .invalidatepage = btree_invalidatepage,
d98237b3
CM
330 .sync_page = block_sync_page,
331};
332
db94535d 333int readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize)
090d1875 334{
5f39d397
CM
335 struct extent_buffer *buf = NULL;
336 struct inode *btree_inode = root->fs_info->btree_inode;
de428b63 337 int ret = 0;
090d1875 338
db94535d 339 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
5f39d397 340 if (!buf)
090d1875 341 return 0;
d1310b2e 342 read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
a86c12c7 343 buf, 0, 0, btree_get_extent);
5f39d397 344 free_extent_buffer(buf);
de428b63 345 return ret;
090d1875
CM
346}
347
db94535d
CM
348struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
349 u32 blocksize)
eb60ceac 350{
5f39d397
CM
351 struct extent_buffer *buf = NULL;
352 struct inode *btree_inode = root->fs_info->btree_inode;
d1310b2e 353 struct extent_io_tree *io_tree;
e4204ded 354 u64 end;
19c00ddc
CM
355 int ret;
356
d1310b2e 357 io_tree = &BTRFS_I(btree_inode)->io_tree;
5f39d397 358
db94535d 359 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
5f39d397
CM
360 if (!buf)
361 return NULL;
a86c12c7
CM
362 read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree, buf, 0, 1,
363 btree_get_extent);
e4204ded
CM
364
365 if (buf->flags & EXTENT_CSUM)
19c00ddc 366 return buf;
e4204ded
CM
367
368 end = buf->start + PAGE_CACHE_SIZE - 1;
d1310b2e 369 if (test_range_bit(io_tree, buf->start, end, EXTENT_CSUM, 1)) {
19c00ddc
CM
370 buf->flags |= EXTENT_CSUM;
371 return buf;
372 }
e4204ded 373
d1310b2e 374 lock_extent(io_tree, buf->start, end, GFP_NOFS);
e4204ded 375
d1310b2e 376 if (test_range_bit(io_tree, buf->start, end, EXTENT_CSUM, 1)) {
e4204ded
CM
377 buf->flags |= EXTENT_CSUM;
378 goto out_unlock;
379 }
380
19c00ddc 381 ret = csum_tree_block(root, buf, 1);
d1310b2e 382 set_extent_bits(io_tree, buf->start, end, EXTENT_CSUM, GFP_NOFS);
19c00ddc 383 buf->flags |= EXTENT_CSUM;
e4204ded
CM
384
385out_unlock:
d1310b2e 386 unlock_extent(io_tree, buf->start, end, GFP_NOFS);
5f39d397 387 return buf;
eb60ceac
CM
388}
389
e089f05c 390int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
5f39d397 391 struct extent_buffer *buf)
ed2ff2cb 392{
5f39d397 393 struct inode *btree_inode = root->fs_info->btree_inode;
55c69072
CM
394 if (btrfs_header_generation(buf) ==
395 root->fs_info->running_transaction->transid)
d1310b2e 396 clear_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree,
55c69072 397 buf);
5f39d397
CM
398 return 0;
399}
400
401int wait_on_tree_block_writeback(struct btrfs_root *root,
402 struct extent_buffer *buf)
403{
404 struct inode *btree_inode = root->fs_info->btree_inode;
d1310b2e 405 wait_on_extent_buffer_writeback(&BTRFS_I(btree_inode)->io_tree,
5f39d397
CM
406 buf);
407 return 0;
408}
409
db94535d 410static int __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
87ee04eb 411 u32 stripesize, struct btrfs_root *root,
9f5fae2f 412 struct btrfs_fs_info *fs_info,
e20d96d6 413 u64 objectid)
d97e63b6 414{
cfaa7295 415 root->node = NULL;
0f7d52f4 416 root->inode = NULL;
a28ec197 417 root->commit_root = NULL;
db94535d
CM
418 root->sectorsize = sectorsize;
419 root->nodesize = nodesize;
420 root->leafsize = leafsize;
87ee04eb 421 root->stripesize = stripesize;
123abc88 422 root->ref_cows = 0;
9f5fae2f 423 root->fs_info = fs_info;
0f7d52f4
CM
424 root->objectid = objectid;
425 root->last_trans = 0;
1b05da2e
CM
426 root->highest_inode = 0;
427 root->last_inode_alloc = 0;
58176a96 428 root->name = NULL;
4313b399 429 root->in_sysfs = 0;
3768f368
CM
430 memset(&root->root_key, 0, sizeof(root->root_key));
431 memset(&root->root_item, 0, sizeof(root->root_item));
6702ed49 432 memset(&root->defrag_progress, 0, sizeof(root->defrag_progress));
58176a96
JB
433 memset(&root->root_kobj, 0, sizeof(root->root_kobj));
434 init_completion(&root->kobj_unregister);
6702ed49
CM
435 root->defrag_running = 0;
436 root->defrag_level = 0;
4d775673 437 root->root_key.objectid = objectid;
3768f368
CM
438 return 0;
439}
440
db94535d 441static int find_and_setup_root(struct btrfs_root *tree_root,
9f5fae2f
CM
442 struct btrfs_fs_info *fs_info,
443 u64 objectid,
e20d96d6 444 struct btrfs_root *root)
3768f368
CM
445{
446 int ret;
db94535d 447 u32 blocksize;
3768f368 448
db94535d 449 __setup_root(tree_root->nodesize, tree_root->leafsize,
87ee04eb
CM
450 tree_root->sectorsize, tree_root->stripesize,
451 root, fs_info, objectid);
3768f368
CM
452 ret = btrfs_find_last_root(tree_root, objectid,
453 &root->root_item, &root->root_key);
454 BUG_ON(ret);
455
db94535d
CM
456 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
457 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
458 blocksize);
3768f368 459 BUG_ON(!root->node);
d97e63b6
CM
460 return 0;
461}
462
5eda7b5e
CM
463struct btrfs_root *btrfs_read_fs_root_no_radix(struct btrfs_fs_info *fs_info,
464 struct btrfs_key *location)
0f7d52f4
CM
465{
466 struct btrfs_root *root;
467 struct btrfs_root *tree_root = fs_info->tree_root;
468 struct btrfs_path *path;
5f39d397 469 struct extent_buffer *l;
1b05da2e 470 u64 highest_inode;
db94535d 471 u32 blocksize;
0f7d52f4
CM
472 int ret = 0;
473
5eda7b5e 474 root = kzalloc(sizeof(*root), GFP_NOFS);
0cf6c620 475 if (!root)
0f7d52f4 476 return ERR_PTR(-ENOMEM);
0f7d52f4 477 if (location->offset == (u64)-1) {
db94535d 478 ret = find_and_setup_root(tree_root, fs_info,
0f7d52f4
CM
479 location->objectid, root);
480 if (ret) {
0f7d52f4
CM
481 kfree(root);
482 return ERR_PTR(ret);
483 }
484 goto insert;
485 }
486
db94535d 487 __setup_root(tree_root->nodesize, tree_root->leafsize,
87ee04eb
CM
488 tree_root->sectorsize, tree_root->stripesize,
489 root, fs_info, location->objectid);
0f7d52f4
CM
490
491 path = btrfs_alloc_path();
492 BUG_ON(!path);
493 ret = btrfs_search_slot(NULL, tree_root, location, path, 0, 0);
494 if (ret != 0) {
0f7d52f4
CM
495 if (ret > 0)
496 ret = -ENOENT;
497 goto out;
498 }
5f39d397
CM
499 l = path->nodes[0];
500 read_extent_buffer(l, &root->root_item,
501 btrfs_item_ptr_offset(l, path->slots[0]),
0f7d52f4 502 sizeof(root->root_item));
44b36eb2 503 memcpy(&root->root_key, location, sizeof(*location));
0f7d52f4
CM
504 ret = 0;
505out:
506 btrfs_release_path(root, path);
507 btrfs_free_path(path);
508 if (ret) {
509 kfree(root);
510 return ERR_PTR(ret);
511 }
db94535d
CM
512 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
513 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
514 blocksize);
0f7d52f4
CM
515 BUG_ON(!root->node);
516insert:
0f7d52f4 517 root->ref_cows = 1;
5eda7b5e
CM
518 ret = btrfs_find_highest_inode(root, &highest_inode);
519 if (ret == 0) {
520 root->highest_inode = highest_inode;
521 root->last_inode_alloc = highest_inode;
522 }
523 return root;
524}
525
dc17ff8f
CM
526struct btrfs_root *btrfs_lookup_fs_root(struct btrfs_fs_info *fs_info,
527 u64 root_objectid)
528{
529 struct btrfs_root *root;
530
531 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID)
532 return fs_info->tree_root;
533 if (root_objectid == BTRFS_EXTENT_TREE_OBJECTID)
534 return fs_info->extent_root;
535
536 root = radix_tree_lookup(&fs_info->fs_roots_radix,
537 (unsigned long)root_objectid);
538 return root;
539}
540
edbd8d4e
CM
541struct btrfs_root *btrfs_read_fs_root_no_name(struct btrfs_fs_info *fs_info,
542 struct btrfs_key *location)
5eda7b5e
CM
543{
544 struct btrfs_root *root;
545 int ret;
546
edbd8d4e
CM
547 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
548 return fs_info->tree_root;
549 if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID)
550 return fs_info->extent_root;
551
5eda7b5e
CM
552 root = radix_tree_lookup(&fs_info->fs_roots_radix,
553 (unsigned long)location->objectid);
554 if (root)
555 return root;
556
557 root = btrfs_read_fs_root_no_radix(fs_info, location);
558 if (IS_ERR(root))
559 return root;
2619ba1f
CM
560 ret = radix_tree_insert(&fs_info->fs_roots_radix,
561 (unsigned long)root->root_key.objectid,
0f7d52f4
CM
562 root);
563 if (ret) {
5f39d397 564 free_extent_buffer(root->node);
0f7d52f4
CM
565 kfree(root);
566 return ERR_PTR(ret);
567 }
edbd8d4e
CM
568 ret = btrfs_find_dead_roots(fs_info->tree_root,
569 root->root_key.objectid, root);
570 BUG_ON(ret);
571
572 return root;
573}
574
575struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
576 struct btrfs_key *location,
577 const char *name, int namelen)
578{
579 struct btrfs_root *root;
580 int ret;
581
582 root = btrfs_read_fs_root_no_name(fs_info, location);
583 if (!root)
584 return NULL;
58176a96 585
4313b399
CM
586 if (root->in_sysfs)
587 return root;
588
58176a96
JB
589 ret = btrfs_set_root_name(root, name, namelen);
590 if (ret) {
5f39d397 591 free_extent_buffer(root->node);
58176a96
JB
592 kfree(root);
593 return ERR_PTR(ret);
594 }
595
596 ret = btrfs_sysfs_add_root(root);
597 if (ret) {
5f39d397 598 free_extent_buffer(root->node);
58176a96
JB
599 kfree(root->name);
600 kfree(root);
601 return ERR_PTR(ret);
602 }
4313b399 603 root->in_sysfs = 1;
0f7d52f4
CM
604 return root;
605}
19c00ddc
CM
606#if 0
607static int add_hasher(struct btrfs_fs_info *info, char *type) {
608 struct btrfs_hasher *hasher;
609
610 hasher = kmalloc(sizeof(*hasher), GFP_NOFS);
611 if (!hasher)
612 return -ENOMEM;
613 hasher->hash_tfm = crypto_alloc_hash(type, 0, CRYPTO_ALG_ASYNC);
614 if (!hasher->hash_tfm) {
615 kfree(hasher);
616 return -EINVAL;
617 }
618 spin_lock(&info->hash_lock);
619 list_add(&hasher->list, &info->hashers);
620 spin_unlock(&info->hash_lock);
621 return 0;
622}
623#endif
2c90e5d6 624struct btrfs_root *open_ctree(struct super_block *sb)
2e635a27 625{
db94535d
CM
626 u32 sectorsize;
627 u32 nodesize;
628 u32 leafsize;
629 u32 blocksize;
87ee04eb 630 u32 stripesize;
e20d96d6
CM
631 struct btrfs_root *extent_root = kmalloc(sizeof(struct btrfs_root),
632 GFP_NOFS);
633 struct btrfs_root *tree_root = kmalloc(sizeof(struct btrfs_root),
634 GFP_NOFS);
e20d96d6
CM
635 struct btrfs_fs_info *fs_info = kmalloc(sizeof(*fs_info),
636 GFP_NOFS);
eb60ceac 637 int ret;
39279cc3 638 int err = -EIO;
2c90e5d6 639 struct btrfs_super_block *disk_super;
eb60ceac 640
39279cc3
CM
641 if (!extent_root || !tree_root || !fs_info) {
642 err = -ENOMEM;
643 goto fail;
644 }
0f7d52f4 645 INIT_RADIX_TREE(&fs_info->fs_roots_radix, GFP_NOFS);
8fd17795 646 INIT_LIST_HEAD(&fs_info->trans_list);
facda1e7 647 INIT_LIST_HEAD(&fs_info->dead_roots);
19c00ddc
CM
648 INIT_LIST_HEAD(&fs_info->hashers);
649 spin_lock_init(&fs_info->hash_lock);
1832a6d5 650 spin_lock_init(&fs_info->delalloc_lock);
cee36a03 651 spin_lock_init(&fs_info->new_trans_lock);
19c00ddc 652
58176a96
JB
653 memset(&fs_info->super_kobj, 0, sizeof(fs_info->super_kobj));
654 init_completion(&fs_info->kobj_unregister);
2c90e5d6 655 sb_set_blocksize(sb, 4096);
9f5fae2f 656 fs_info->running_transaction = NULL;
15ee9bc7 657 fs_info->last_trans_committed = 0;
9f5fae2f
CM
658 fs_info->tree_root = tree_root;
659 fs_info->extent_root = extent_root;
e20d96d6 660 fs_info->sb = sb;
e2008b61 661 fs_info->throttles = 0;
b6cda9bc 662 fs_info->mount_opt = 0;
c59f8951 663 fs_info->max_extent = (u64)-1;
6f568d35 664 fs_info->max_inline = 8192 * 1024;
1832a6d5 665 fs_info->delalloc_bytes = 0;
d98237b3
CM
666 fs_info->btree_inode = new_inode(sb);
667 fs_info->btree_inode->i_ino = 1;
2c90e5d6 668 fs_info->btree_inode->i_nlink = 1;
d98237b3
CM
669 fs_info->btree_inode->i_size = sb->s_bdev->bd_inode->i_size;
670 fs_info->btree_inode->i_mapping->a_ops = &btree_aops;
d1310b2e 671 extent_io_tree_init(&BTRFS_I(fs_info->btree_inode)->io_tree,
5f39d397
CM
672 fs_info->btree_inode->i_mapping,
673 GFP_NOFS);
d1310b2e
CM
674 extent_map_tree_init(&BTRFS_I(fs_info->btree_inode)->extent_tree,
675 GFP_NOFS);
676
677 BTRFS_I(fs_info->btree_inode)->io_tree.ops = &btree_extent_io_ops;
0da5468f 678
d1310b2e 679 extent_io_tree_init(&fs_info->free_space_cache,
f510cfec 680 fs_info->btree_inode->i_mapping, GFP_NOFS);
d1310b2e 681 extent_io_tree_init(&fs_info->block_group_cache,
96b5179d 682 fs_info->btree_inode->i_mapping, GFP_NOFS);
d1310b2e 683 extent_io_tree_init(&fs_info->pinned_extents,
1a5bc167 684 fs_info->btree_inode->i_mapping, GFP_NOFS);
d1310b2e 685 extent_io_tree_init(&fs_info->pending_del,
1a5bc167 686 fs_info->btree_inode->i_mapping, GFP_NOFS);
d1310b2e 687 extent_io_tree_init(&fs_info->extent_ins,
1a5bc167 688 fs_info->btree_inode->i_mapping, GFP_NOFS);
e66f709b 689 fs_info->do_barriers = 1;
facda1e7 690 fs_info->closing = 0;
324ae4df 691 fs_info->total_pinned = 0;
e18e4809 692 fs_info->last_alloc = 0;
4529ba49 693 fs_info->last_data_alloc = 0;
e18e4809 694
6da6abae
CM
695#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
696 INIT_WORK(&fs_info->trans_work, btrfs_transaction_cleaner, fs_info);
697#else
08607c1b 698 INIT_DELAYED_WORK(&fs_info->trans_work, btrfs_transaction_cleaner);
6da6abae 699#endif
0f7d52f4
CM
700 BTRFS_I(fs_info->btree_inode)->root = tree_root;
701 memset(&BTRFS_I(fs_info->btree_inode)->location, 0,
702 sizeof(struct btrfs_key));
22b0ebda 703 insert_inode_hash(fs_info->btree_inode);
d98237b3 704 mapping_set_gfp_mask(fs_info->btree_inode->i_mapping, GFP_NOFS);
39279cc3 705
79154b1b 706 mutex_init(&fs_info->trans_mutex);
d561c025 707 mutex_init(&fs_info->fs_mutex);
3768f368 708
19c00ddc
CM
709#if 0
710 ret = add_hasher(fs_info, "crc32c");
711 if (ret) {
712 printk("btrfs: failed hash setup, modprobe cryptomgr?\n");
713 err = -ENOMEM;
714 goto fail_iput;
715 }
716#endif
87ee04eb 717 __setup_root(512, 512, 512, 512, tree_root,
2c90e5d6 718 fs_info, BTRFS_ROOT_TREE_OBJECTID);
7eccb903 719
2c90e5d6 720 fs_info->sb_buffer = read_tree_block(tree_root,
db94535d
CM
721 BTRFS_SUPER_INFO_OFFSET,
722 512);
d98237b3 723
0f7d52f4 724 if (!fs_info->sb_buffer)
39279cc3 725 goto fail_iput;
39279cc3 726
5f39d397
CM
727 read_extent_buffer(fs_info->sb_buffer, &fs_info->super_copy, 0,
728 sizeof(fs_info->super_copy));
729
730 read_extent_buffer(fs_info->sb_buffer, fs_info->fsid,
731 (unsigned long)btrfs_super_fsid(fs_info->sb_buffer),
732 BTRFS_FSID_SIZE);
733 disk_super = &fs_info->super_copy;
0f7d52f4 734 if (!btrfs_super_root(disk_super))
39279cc3 735 goto fail_sb_buffer;
0f7d52f4 736
db94535d
CM
737 nodesize = btrfs_super_nodesize(disk_super);
738 leafsize = btrfs_super_leafsize(disk_super);
739 sectorsize = btrfs_super_sectorsize(disk_super);
87ee04eb 740 stripesize = btrfs_super_stripesize(disk_super);
db94535d
CM
741 tree_root->nodesize = nodesize;
742 tree_root->leafsize = leafsize;
743 tree_root->sectorsize = sectorsize;
87ee04eb 744 tree_root->stripesize = stripesize;
ff79f819 745 sb_set_blocksize(sb, sectorsize);
db94535d 746
8352d8a4 747 i_size_write(fs_info->btree_inode,
db94535d 748 btrfs_super_total_bytes(disk_super));
8352d8a4 749
39279cc3
CM
750 if (strncmp((char *)(&disk_super->magic), BTRFS_MAGIC,
751 sizeof(disk_super->magic))) {
752 printk("btrfs: valid FS not found on %s\n", sb->s_id);
753 goto fail_sb_buffer;
754 }
19c00ddc 755
db94535d
CM
756 blocksize = btrfs_level_size(tree_root,
757 btrfs_super_root_level(disk_super));
19c00ddc 758
e20d96d6 759 tree_root->node = read_tree_block(tree_root,
db94535d
CM
760 btrfs_super_root(disk_super),
761 blocksize);
39279cc3
CM
762 if (!tree_root->node)
763 goto fail_sb_buffer;
3768f368 764
2c90e5d6 765 mutex_lock(&fs_info->fs_mutex);
db94535d
CM
766
767 ret = find_and_setup_root(tree_root, fs_info,
e20d96d6 768 BTRFS_EXTENT_TREE_OBJECTID, extent_root);
39279cc3
CM
769 if (ret) {
770 mutex_unlock(&fs_info->fs_mutex);
771 goto fail_tree_root;
772 }
3768f368 773
9078a3e1
CM
774 btrfs_read_block_groups(extent_root);
775
0f7d52f4 776 fs_info->generation = btrfs_super_generation(disk_super) + 1;
5be6f7f1 777 mutex_unlock(&fs_info->fs_mutex);
0f7d52f4 778 return tree_root;
39279cc3
CM
779
780fail_tree_root:
5f39d397 781 free_extent_buffer(tree_root->node);
39279cc3 782fail_sb_buffer:
5f39d397 783 free_extent_buffer(fs_info->sb_buffer);
39279cc3
CM
784fail_iput:
785 iput(fs_info->btree_inode);
786fail:
787 kfree(extent_root);
788 kfree(tree_root);
789 kfree(fs_info);
790 return ERR_PTR(err);
eb60ceac
CM
791}
792
e089f05c 793int write_ctree_super(struct btrfs_trans_handle *trans, struct btrfs_root
79154b1b 794 *root)
eb60ceac 795{
e66f709b 796 int ret;
5f39d397
CM
797 struct extent_buffer *super = root->fs_info->sb_buffer;
798 struct inode *btree_inode = root->fs_info->btree_inode;
21ad10cf 799 struct super_block *sb = root->fs_info->sb;
5f39d397 800
21ad10cf
CM
801 if (!btrfs_test_opt(root, NOBARRIER))
802 blkdev_issue_flush(sb->s_bdev, NULL);
d1310b2e 803 set_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree, super);
5f39d397
CM
804 ret = sync_page_range_nolock(btree_inode, btree_inode->i_mapping,
805 super->start, super->len);
21ad10cf
CM
806 if (!btrfs_test_opt(root, NOBARRIER))
807 blkdev_issue_flush(sb->s_bdev, NULL);
5f39d397 808 return ret;
cfaa7295
CM
809}
810
5eda7b5e 811int btrfs_free_fs_root(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
2619ba1f
CM
812{
813 radix_tree_delete(&fs_info->fs_roots_radix,
814 (unsigned long)root->root_key.objectid);
b99aa6cb
CM
815 if (root->in_sysfs)
816 btrfs_sysfs_del_root(root);
2619ba1f
CM
817 if (root->inode)
818 iput(root->inode);
819 if (root->node)
5f39d397 820 free_extent_buffer(root->node);
2619ba1f 821 if (root->commit_root)
5f39d397 822 free_extent_buffer(root->commit_root);
58176a96
JB
823 if (root->name)
824 kfree(root->name);
2619ba1f
CM
825 kfree(root);
826 return 0;
827}
828
35b7e476 829static int del_fs_roots(struct btrfs_fs_info *fs_info)
0f7d52f4
CM
830{
831 int ret;
832 struct btrfs_root *gang[8];
833 int i;
834
835 while(1) {
836 ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
837 (void **)gang, 0,
838 ARRAY_SIZE(gang));
839 if (!ret)
840 break;
2619ba1f 841 for (i = 0; i < ret; i++)
5eda7b5e 842 btrfs_free_fs_root(fs_info, gang[i]);
0f7d52f4
CM
843 }
844 return 0;
845}
b4100d64 846
e20d96d6 847int close_ctree(struct btrfs_root *root)
cfaa7295 848{
3768f368 849 int ret;
e089f05c 850 struct btrfs_trans_handle *trans;
0f7d52f4 851 struct btrfs_fs_info *fs_info = root->fs_info;
e089f05c 852
facda1e7 853 fs_info->closing = 1;
08607c1b 854 btrfs_transaction_flush_work(root);
0f7d52f4 855 mutex_lock(&fs_info->fs_mutex);
6702ed49 856 btrfs_defrag_dirty_roots(root->fs_info);
79154b1b 857 trans = btrfs_start_transaction(root, 1);
54aa1f4d 858 ret = btrfs_commit_transaction(trans, root);
79154b1b
CM
859 /* run commit again to drop the original snapshot */
860 trans = btrfs_start_transaction(root, 1);
861 btrfs_commit_transaction(trans, root);
862 ret = btrfs_write_and_wait_transaction(NULL, root);
3768f368 863 BUG_ON(ret);
79154b1b 864 write_ctree_super(NULL, root);
0f7d52f4
CM
865 mutex_unlock(&fs_info->fs_mutex);
866
b0c68f8b
CM
867 if (fs_info->delalloc_bytes) {
868 printk("btrfs: at unmount delalloc count %Lu\n",
869 fs_info->delalloc_bytes);
870 }
0f7d52f4 871 if (fs_info->extent_root->node)
5f39d397 872 free_extent_buffer(fs_info->extent_root->node);
f510cfec 873
0f7d52f4 874 if (fs_info->tree_root->node)
5f39d397 875 free_extent_buffer(fs_info->tree_root->node);
f510cfec 876
5f39d397 877 free_extent_buffer(fs_info->sb_buffer);
7eccb903 878
9078a3e1 879 btrfs_free_block_groups(root->fs_info);
0f7d52f4 880 del_fs_roots(fs_info);
d10c5f31
CM
881
882 filemap_write_and_wait(fs_info->btree_inode->i_mapping);
883
d1310b2e
CM
884 extent_io_tree_empty_lru(&fs_info->free_space_cache);
885 extent_io_tree_empty_lru(&fs_info->block_group_cache);
886 extent_io_tree_empty_lru(&fs_info->pinned_extents);
887 extent_io_tree_empty_lru(&fs_info->pending_del);
888 extent_io_tree_empty_lru(&fs_info->extent_ins);
889 extent_io_tree_empty_lru(&BTRFS_I(fs_info->btree_inode)->io_tree);
d10c5f31 890
db94535d 891 truncate_inode_pages(fs_info->btree_inode->i_mapping, 0);
d10c5f31 892
db94535d 893 iput(fs_info->btree_inode);
19c00ddc
CM
894#if 0
895 while(!list_empty(&fs_info->hashers)) {
896 struct btrfs_hasher *hasher;
897 hasher = list_entry(fs_info->hashers.next, struct btrfs_hasher,
898 hashers);
899 list_del(&hasher->hashers);
900 crypto_free_hash(&fs_info->hash_tfm);
901 kfree(hasher);
902 }
903#endif
0f7d52f4 904 kfree(fs_info->extent_root);
0f7d52f4 905 kfree(fs_info->tree_root);
eb60ceac
CM
906 return 0;
907}
908
5f39d397
CM
909int btrfs_buffer_uptodate(struct extent_buffer *buf)
910{
810191ff 911 struct inode *btree_inode = buf->first_page->mapping->host;
d1310b2e 912 return extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree, buf);
5f39d397
CM
913}
914
915int btrfs_set_buffer_uptodate(struct extent_buffer *buf)
ccd467d6 916{
810191ff 917 struct inode *btree_inode = buf->first_page->mapping->host;
d1310b2e 918 return set_extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree,
5f39d397
CM
919 buf);
920}
6702ed49 921
5f39d397
CM
922void btrfs_mark_buffer_dirty(struct extent_buffer *buf)
923{
810191ff 924 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
5f39d397
CM
925 u64 transid = btrfs_header_generation(buf);
926 struct inode *btree_inode = root->fs_info->btree_inode;
6702ed49 927
ccd467d6
CM
928 if (transid != root->fs_info->generation) {
929 printk(KERN_CRIT "transid mismatch buffer %llu, found %Lu running %Lu\n",
db94535d 930 (unsigned long long)buf->start,
ccd467d6
CM
931 transid, root->fs_info->generation);
932 WARN_ON(1);
933 }
d1310b2e 934 set_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree, buf);
eb60ceac
CM
935}
936
e2008b61
CM
937void btrfs_throttle(struct btrfs_root *root)
938{
55c69072
CM
939 struct backing_dev_info *bdi;
940
941 bdi = root->fs_info->sb->s_bdev->bd_inode->i_mapping->backing_dev_info;
04005cc7
CM
942 if (root->fs_info->throttles && bdi_write_congested(bdi)) {
943#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,18)
55c69072 944 congestion_wait(WRITE, HZ/20);
04005cc7
CM
945#else
946 blk_congestion_wait(WRITE, HZ/20);
947#endif
948 }
e2008b61
CM
949}
950
d3c2fdcf 951void btrfs_btree_balance_dirty(struct btrfs_root *root, unsigned long nr)
35b7e476 952{
d3c2fdcf 953 balance_dirty_pages_ratelimited_nr(
d7fc640e 954 root->fs_info->btree_inode->i_mapping, 1);
35b7e476 955}
6b80053d
CM
956
957void btrfs_set_buffer_defrag(struct extent_buffer *buf)
958{
810191ff 959 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
6b80053d 960 struct inode *btree_inode = root->fs_info->btree_inode;
d1310b2e 961 set_extent_bits(&BTRFS_I(btree_inode)->io_tree, buf->start,
6b80053d
CM
962 buf->start + buf->len - 1, EXTENT_DEFRAG, GFP_NOFS);
963}
964
965void btrfs_set_buffer_defrag_done(struct extent_buffer *buf)
966{
810191ff 967 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
6b80053d 968 struct inode *btree_inode = root->fs_info->btree_inode;
d1310b2e 969 set_extent_bits(&BTRFS_I(btree_inode)->io_tree, buf->start,
6b80053d
CM
970 buf->start + buf->len - 1, EXTENT_DEFRAG_DONE,
971 GFP_NOFS);
972}
973
974int btrfs_buffer_defrag(struct extent_buffer *buf)
975{
810191ff 976 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
6b80053d 977 struct inode *btree_inode = root->fs_info->btree_inode;
d1310b2e 978 return test_range_bit(&BTRFS_I(btree_inode)->io_tree,
6b80053d
CM
979 buf->start, buf->start + buf->len - 1, EXTENT_DEFRAG, 0);
980}
981
982int btrfs_buffer_defrag_done(struct extent_buffer *buf)
983{
810191ff 984 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
6b80053d 985 struct inode *btree_inode = root->fs_info->btree_inode;
d1310b2e 986 return test_range_bit(&BTRFS_I(btree_inode)->io_tree,
6b80053d
CM
987 buf->start, buf->start + buf->len - 1,
988 EXTENT_DEFRAG_DONE, 0);
989}
990
991int btrfs_clear_buffer_defrag_done(struct extent_buffer *buf)
992{
810191ff 993 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
6b80053d 994 struct inode *btree_inode = root->fs_info->btree_inode;
d1310b2e 995 return clear_extent_bits(&BTRFS_I(btree_inode)->io_tree,
6b80053d
CM
996 buf->start, buf->start + buf->len - 1,
997 EXTENT_DEFRAG_DONE, GFP_NOFS);
998}
999
1000int btrfs_clear_buffer_defrag(struct extent_buffer *buf)
1001{
810191ff 1002 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
6b80053d 1003 struct inode *btree_inode = root->fs_info->btree_inode;
d1310b2e 1004 return clear_extent_bits(&BTRFS_I(btree_inode)->io_tree,
6b80053d
CM
1005 buf->start, buf->start + buf->len - 1,
1006 EXTENT_DEFRAG, GFP_NOFS);
1007}
1008
1009int btrfs_read_buffer(struct extent_buffer *buf)
1010{
810191ff 1011 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
6b80053d 1012 struct inode *btree_inode = root->fs_info->btree_inode;
d1310b2e 1013 return read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
a86c12c7 1014 buf, 0, 1, btree_get_extent);
6b80053d 1015}
0da5468f 1016
d1310b2e 1017static struct extent_io_ops btree_extent_io_ops = {
0da5468f
CM
1018 .writepage_io_hook = btree_writepage_io_hook,
1019};