2 * Copyright (C) 2007 Oracle. All rights reserved.
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.
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.
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.
19 #define _XOPEN_SOURCE 600
24 #include <sys/types.h>
28 #include "kerncompat.h"
29 #include "radix-tree.h"
33 #include "transaction.h"
36 #include "print-tree.h"
37 #include "rbtree-utils.h"
39 static int check_tree_block(struct btrfs_root *root, struct extent_buffer *buf)
42 struct btrfs_fs_devices *fs_devices;
45 if (buf->start != btrfs_header_bytenr(buf)) {
46 printk("Check tree block failed, want=%Lu, have=%Lu\n",
47 buf->start, btrfs_header_bytenr(buf));
51 fs_devices = root->fs_info->fs_devices;
53 if (!memcmp_extent_buffer(buf, fs_devices->fsid,
59 fs_devices = fs_devices->seed;
64 u32 btrfs_csum_data(struct btrfs_root *root, char *data, u32 seed, size_t len)
66 return crc32c(seed, data, len);
69 void btrfs_csum_final(u32 crc, char *result)
71 *(__le32 *)result = ~cpu_to_le32(crc);
74 static int __csum_tree_block_size(struct extent_buffer *buf, u16 csum_size,
75 int verify, int silent)
81 result = malloc(csum_size * sizeof(char));
85 len = buf->len - BTRFS_CSUM_SIZE;
86 crc = crc32c(crc, buf->data + BTRFS_CSUM_SIZE, len);
87 btrfs_csum_final(crc, result);
90 if (memcmp_extent_buffer(buf, result, 0, csum_size)) {
92 printk("checksum verify failed on %llu found %08X wanted %08X\n",
93 (unsigned long long)buf->start,
95 *((u32*)(char *)buf->data));
100 write_extent_buffer(buf, result, 0, csum_size);
106 int csum_tree_block_size(struct extent_buffer *buf, u16 csum_size, int verify)
108 return __csum_tree_block_size(buf, csum_size, verify, 0);
111 int verify_tree_block_csum_silent(struct extent_buffer *buf, u16 csum_size)
113 return __csum_tree_block_size(buf, csum_size, 1, 1);
116 int csum_tree_block(struct btrfs_root *root, struct extent_buffer *buf,
120 btrfs_super_csum_size(root->fs_info->super_copy);
121 return csum_tree_block_size(buf, csum_size, verify);
124 struct extent_buffer *btrfs_find_tree_block(struct btrfs_root *root,
125 u64 bytenr, u32 blocksize)
127 return find_extent_buffer(&root->fs_info->extent_cache,
131 struct extent_buffer *btrfs_find_create_tree_block(struct btrfs_root *root,
132 u64 bytenr, u32 blocksize)
134 return alloc_extent_buffer(&root->fs_info->extent_cache, bytenr,
138 void readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize,
141 struct extent_buffer *eb;
143 struct btrfs_multi_bio *multi = NULL;
144 struct btrfs_device *device;
146 eb = btrfs_find_tree_block(root, bytenr, blocksize);
147 if (!(eb && btrfs_buffer_uptodate(eb, parent_transid)) &&
148 !btrfs_map_block(&root->fs_info->mapping_tree, READ,
149 bytenr, &length, &multi, 0, NULL)) {
150 device = multi->stripes[0].dev;
152 blocksize = min(blocksize, (u32)(64 * 1024));
153 readahead(device->fd, multi->stripes[0].physical, blocksize);
156 free_extent_buffer(eb);
160 static int verify_parent_transid(struct extent_io_tree *io_tree,
161 struct extent_buffer *eb, u64 parent_transid,
166 if (!parent_transid || btrfs_header_generation(eb) == parent_transid)
169 if (extent_buffer_uptodate(eb) &&
170 btrfs_header_generation(eb) == parent_transid) {
174 printk("parent transid verify failed on %llu wanted %llu found %llu\n",
175 (unsigned long long)eb->start,
176 (unsigned long long)parent_transid,
177 (unsigned long long)btrfs_header_generation(eb));
179 eb->flags |= EXTENT_BAD_TRANSID;
180 printk("Ignoring transid failure\n");
186 clear_extent_buffer_uptodate(io_tree, eb);
192 int read_whole_eb(struct btrfs_fs_info *info, struct extent_buffer *eb, int mirror)
194 unsigned long offset = 0;
195 struct btrfs_multi_bio *multi = NULL;
196 struct btrfs_device *device;
199 unsigned long bytes_left = eb->len;
202 read_len = bytes_left;
205 if (!info->on_restoring &&
206 eb->start != BTRFS_SUPER_INFO_OFFSET) {
207 ret = btrfs_map_block(&info->mapping_tree, READ,
208 eb->start + offset, &read_len, &multi,
211 printk("Couldn't map the block %Lu\n", eb->start + offset);
215 device = multi->stripes[0].dev;
217 if (device->fd == 0) {
224 eb->dev_bytenr = multi->stripes[0].physical;
228 /* special case for restore metadump */
229 list_for_each_entry(device, &info->fs_devices->devices, dev_list) {
230 if (device->devid == 1)
235 eb->dev_bytenr = eb->start;
239 if (read_len > bytes_left)
240 read_len = bytes_left;
242 ret = read_extent_from_disk(eb, offset, read_len);
246 bytes_left -= read_len;
251 struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
252 u32 blocksize, u64 parent_transid)
255 struct extent_buffer *eb;
256 u64 best_transid = 0;
262 eb = btrfs_find_create_tree_block(root, bytenr, blocksize);
266 if (btrfs_buffer_uptodate(eb, parent_transid))
270 ret = read_whole_eb(root->fs_info, eb, mirror_num);
271 if (ret == 0 && check_tree_block(root, eb) == 0 &&
272 csum_tree_block(root, eb, 1) == 0 &&
273 verify_parent_transid(eb->tree, eb, parent_transid, ignore)
275 if (eb->flags & EXTENT_BAD_TRANSID &&
276 list_empty(&eb->recow)) {
277 list_add_tail(&eb->recow,
278 &root->fs_info->recow_ebs);
281 btrfs_set_buffer_uptodate(eb);
285 if (check_tree_block(root, eb))
286 printk("read block failed check_tree_block\n");
288 printk("Csum didn't match\n");
291 num_copies = btrfs_num_copies(&root->fs_info->mapping_tree,
293 if (num_copies == 1) {
297 if (btrfs_header_generation(eb) > best_transid && mirror_num) {
298 best_transid = btrfs_header_generation(eb);
299 good_mirror = mirror_num;
302 if (mirror_num > num_copies) {
303 mirror_num = good_mirror;
308 free_extent_buffer(eb);
312 int write_and_map_eb(struct btrfs_trans_handle *trans,
313 struct btrfs_root *root,
314 struct extent_buffer *eb)
319 u64 *raid_map = NULL;
320 struct btrfs_multi_bio *multi = NULL;
324 ret = btrfs_map_block(&root->fs_info->mapping_tree, WRITE,
325 eb->start, &length, &multi, 0, &raid_map);
328 ret = write_raid56_with_parity(root->fs_info, eb, multi,
331 } else while (dev_nr < multi->num_stripes) {
333 eb->fd = multi->stripes[dev_nr].dev->fd;
334 eb->dev_bytenr = multi->stripes[dev_nr].physical;
335 multi->stripes[dev_nr].dev->total_ios++;
337 ret = write_extent_to_disk(eb);
344 static int write_tree_block(struct btrfs_trans_handle *trans,
345 struct btrfs_root *root,
346 struct extent_buffer *eb)
348 if (check_tree_block(root, eb))
351 if (!btrfs_buffer_uptodate(eb, trans->transid))
354 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
355 csum_tree_block(root, eb, 0);
357 return write_and_map_eb(trans, root, eb);
360 int __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
361 u32 stripesize, struct btrfs_root *root,
362 struct btrfs_fs_info *fs_info, u64 objectid)
365 root->commit_root = NULL;
366 root->sectorsize = sectorsize;
367 root->nodesize = nodesize;
368 root->leafsize = leafsize;
369 root->stripesize = stripesize;
371 root->track_dirty = 0;
373 root->fs_info = fs_info;
374 root->objectid = objectid;
375 root->last_trans = 0;
376 root->highest_inode = 0;
377 root->last_inode_alloc = 0;
379 INIT_LIST_HEAD(&root->dirty_list);
380 memset(&root->root_key, 0, sizeof(root->root_key));
381 memset(&root->root_item, 0, sizeof(root->root_item));
382 root->root_key.objectid = objectid;
386 static int update_cowonly_root(struct btrfs_trans_handle *trans,
387 struct btrfs_root *root)
391 struct btrfs_root *tree_root = root->fs_info->tree_root;
393 btrfs_write_dirty_block_groups(trans, root);
395 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
396 if (old_root_bytenr == root->node->start)
398 btrfs_set_root_bytenr(&root->root_item,
400 btrfs_set_root_generation(&root->root_item,
402 root->root_item.level = btrfs_header_level(root->node);
403 ret = btrfs_update_root(trans, tree_root,
407 btrfs_write_dirty_block_groups(trans, root);
412 static int commit_tree_roots(struct btrfs_trans_handle *trans,
413 struct btrfs_fs_info *fs_info)
415 struct btrfs_root *root;
416 struct list_head *next;
417 struct extent_buffer *eb;
420 if (fs_info->readonly)
423 eb = fs_info->tree_root->node;
424 extent_buffer_get(eb);
425 ret = btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb);
426 free_extent_buffer(eb);
430 while(!list_empty(&fs_info->dirty_cowonly_roots)) {
431 next = fs_info->dirty_cowonly_roots.next;
433 root = list_entry(next, struct btrfs_root, dirty_list);
434 update_cowonly_root(trans, root);
435 free_extent_buffer(root->commit_root);
436 root->commit_root = NULL;
442 static int __commit_transaction(struct btrfs_trans_handle *trans,
443 struct btrfs_root *root)
447 struct extent_buffer *eb;
448 struct extent_io_tree *tree = &root->fs_info->extent_cache;
452 ret = find_first_extent_bit(tree, 0, &start, &end,
456 while(start <= end) {
457 eb = find_first_extent_buffer(tree, start);
458 BUG_ON(!eb || eb->start != start);
459 ret = write_tree_block(trans, root, eb);
462 clear_extent_buffer_dirty(eb);
463 free_extent_buffer(eb);
469 int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
470 struct btrfs_root *root)
472 u64 transid = trans->transid;
474 struct btrfs_fs_info *fs_info = root->fs_info;
476 if (root->commit_root == root->node)
478 if (root == root->fs_info->tree_root)
481 free_extent_buffer(root->commit_root);
482 root->commit_root = NULL;
484 btrfs_set_root_bytenr(&root->root_item, root->node->start);
485 btrfs_set_root_generation(&root->root_item, trans->transid);
486 root->root_item.level = btrfs_header_level(root->node);
487 ret = btrfs_update_root(trans, root->fs_info->tree_root,
488 &root->root_key, &root->root_item);
491 ret = commit_tree_roots(trans, fs_info);
493 ret = __commit_transaction(trans, root);
495 write_ctree_super(trans, root);
496 btrfs_finish_extent_commit(trans, fs_info->extent_root,
497 &fs_info->pinned_extents);
498 btrfs_free_transaction(root, trans);
499 free_extent_buffer(root->commit_root);
500 root->commit_root = NULL;
501 fs_info->running_transaction = NULL;
502 fs_info->last_trans_committed = transid;
506 static int find_and_setup_root(struct btrfs_root *tree_root,
507 struct btrfs_fs_info *fs_info,
508 u64 objectid, struct btrfs_root *root)
514 __setup_root(tree_root->nodesize, tree_root->leafsize,
515 tree_root->sectorsize, tree_root->stripesize,
516 root, fs_info, objectid);
517 ret = btrfs_find_last_root(tree_root, objectid,
518 &root->root_item, &root->root_key);
522 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
523 generation = btrfs_root_generation(&root->root_item);
524 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
525 blocksize, generation);
526 if (!extent_buffer_uptodate(root->node))
532 static int find_and_setup_log_root(struct btrfs_root *tree_root,
533 struct btrfs_fs_info *fs_info,
534 struct btrfs_super_block *disk_super)
537 u64 blocknr = btrfs_super_log_root(disk_super);
538 struct btrfs_root *log_root = malloc(sizeof(struct btrfs_root));
548 blocksize = btrfs_level_size(tree_root,
549 btrfs_super_log_root_level(disk_super));
551 __setup_root(tree_root->nodesize, tree_root->leafsize,
552 tree_root->sectorsize, tree_root->stripesize,
553 log_root, fs_info, BTRFS_TREE_LOG_OBJECTID);
555 log_root->node = read_tree_block(tree_root, blocknr,
557 btrfs_super_generation(disk_super) + 1);
559 fs_info->log_root_tree = log_root;
561 if (!extent_buffer_uptodate(log_root->node)) {
562 free_extent_buffer(log_root->node);
564 fs_info->log_root_tree = NULL;
571 int btrfs_free_fs_root(struct btrfs_root *root)
574 free_extent_buffer(root->node);
575 if (root->commit_root)
576 free_extent_buffer(root->commit_root);
581 static void __free_fs_root(struct rb_node *node)
583 struct btrfs_root *root;
585 root = container_of(node, struct btrfs_root, rb_node);
586 btrfs_free_fs_root(root);
589 FREE_RB_BASED_TREE(fs_roots, __free_fs_root);
591 struct btrfs_root *btrfs_read_fs_root_no_cache(struct btrfs_fs_info *fs_info,
592 struct btrfs_key *location)
594 struct btrfs_root *root;
595 struct btrfs_root *tree_root = fs_info->tree_root;
596 struct btrfs_path *path;
597 struct extent_buffer *l;
602 root = malloc(sizeof(*root));
604 return ERR_PTR(-ENOMEM);
605 memset(root, 0, sizeof(*root));
606 if (location->offset == (u64)-1) {
607 ret = find_and_setup_root(tree_root, fs_info,
608 location->objectid, root);
616 __setup_root(tree_root->nodesize, tree_root->leafsize,
617 tree_root->sectorsize, tree_root->stripesize,
618 root, fs_info, location->objectid);
620 path = btrfs_alloc_path();
622 ret = btrfs_search_slot(NULL, tree_root, location, path, 0, 0);
629 read_extent_buffer(l, &root->root_item,
630 btrfs_item_ptr_offset(l, path->slots[0]),
631 sizeof(root->root_item));
632 memcpy(&root->root_key, location, sizeof(*location));
635 btrfs_free_path(path);
640 generation = btrfs_root_generation(&root->root_item);
641 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
642 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
643 blocksize, generation);
646 return ERR_PTR(-EIO);
653 static int btrfs_fs_roots_compare_objectids(struct rb_node *node,
656 u64 objectid = *((u64 *)data);
657 struct btrfs_root *root;
659 root = rb_entry(node, struct btrfs_root, rb_node);
660 if (objectid > root->objectid)
662 else if (objectid < root->objectid)
668 static int btrfs_fs_roots_compare_roots(struct rb_node *node1,
669 struct rb_node *node2)
671 struct btrfs_root *root;
673 root = rb_entry(node2, struct btrfs_root, rb_node);
674 return btrfs_fs_roots_compare_objectids(node1, (void *)&root->objectid);
677 struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
678 struct btrfs_key *location)
680 struct btrfs_root *root;
681 struct rb_node *node;
683 u64 objectid = location->objectid;
685 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
686 return fs_info->tree_root;
687 if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID)
688 return fs_info->extent_root;
689 if (location->objectid == BTRFS_CHUNK_TREE_OBJECTID)
690 return fs_info->chunk_root;
691 if (location->objectid == BTRFS_DEV_TREE_OBJECTID)
692 return fs_info->dev_root;
693 if (location->objectid == BTRFS_CSUM_TREE_OBJECTID)
694 return fs_info->csum_root;
695 if (location->objectid == BTRFS_QUOTA_TREE_OBJECTID)
696 return fs_info->quota_root;
698 BUG_ON(location->objectid == BTRFS_TREE_RELOC_OBJECTID ||
699 location->offset != (u64)-1);
701 node = rb_search(&fs_info->fs_root_tree, (void *)&objectid,
702 btrfs_fs_roots_compare_objectids, NULL);
704 return container_of(node, struct btrfs_root, rb_node);
706 root = btrfs_read_fs_root_no_cache(fs_info, location);
710 ret = rb_insert(&fs_info->fs_root_tree, &root->rb_node,
711 btrfs_fs_roots_compare_roots);
716 void btrfs_free_fs_info(struct btrfs_fs_info *fs_info)
718 free(fs_info->tree_root);
719 free(fs_info->extent_root);
720 free(fs_info->chunk_root);
721 free(fs_info->dev_root);
722 free(fs_info->csum_root);
723 free(fs_info->quota_root);
724 free(fs_info->super_copy);
725 free(fs_info->log_root_tree);
729 struct btrfs_fs_info *btrfs_new_fs_info(int writable, u64 sb_bytenr)
731 struct btrfs_fs_info *fs_info;
733 fs_info = malloc(sizeof(struct btrfs_fs_info));
737 memset(fs_info, 0, sizeof(struct btrfs_fs_info));
739 fs_info->tree_root = malloc(sizeof(struct btrfs_root));
740 fs_info->extent_root = malloc(sizeof(struct btrfs_root));
741 fs_info->chunk_root = malloc(sizeof(struct btrfs_root));
742 fs_info->dev_root = malloc(sizeof(struct btrfs_root));
743 fs_info->csum_root = malloc(sizeof(struct btrfs_root));
744 fs_info->quota_root = malloc(sizeof(struct btrfs_root));
745 fs_info->super_copy = malloc(BTRFS_SUPER_INFO_SIZE);
747 if (!fs_info->tree_root || !fs_info->extent_root ||
748 !fs_info->chunk_root || !fs_info->dev_root ||
749 !fs_info->csum_root || !fs_info->quota_root ||
750 !fs_info->super_copy)
753 memset(fs_info->super_copy, 0, BTRFS_SUPER_INFO_SIZE);
754 memset(fs_info->tree_root, 0, sizeof(struct btrfs_root));
755 memset(fs_info->extent_root, 0, sizeof(struct btrfs_root));
756 memset(fs_info->chunk_root, 0, sizeof(struct btrfs_root));
757 memset(fs_info->dev_root, 0, sizeof(struct btrfs_root));
758 memset(fs_info->csum_root, 0, sizeof(struct btrfs_root));
759 memset(fs_info->quota_root, 0, sizeof(struct btrfs_root));
761 extent_io_tree_init(&fs_info->extent_cache);
762 extent_io_tree_init(&fs_info->free_space_cache);
763 extent_io_tree_init(&fs_info->block_group_cache);
764 extent_io_tree_init(&fs_info->pinned_extents);
765 extent_io_tree_init(&fs_info->pending_del);
766 extent_io_tree_init(&fs_info->extent_ins);
767 fs_info->fs_root_tree = RB_ROOT;
768 cache_tree_init(&fs_info->mapping_tree.cache_tree);
770 mutex_init(&fs_info->fs_mutex);
771 INIT_LIST_HEAD(&fs_info->dirty_cowonly_roots);
772 INIT_LIST_HEAD(&fs_info->space_info);
773 INIT_LIST_HEAD(&fs_info->recow_ebs);
776 fs_info->readonly = 1;
778 fs_info->super_bytenr = sb_bytenr;
779 fs_info->data_alloc_profile = (u64)-1;
780 fs_info->metadata_alloc_profile = (u64)-1;
781 fs_info->system_alloc_profile = fs_info->metadata_alloc_profile;
784 btrfs_free_fs_info(fs_info);
788 int btrfs_check_fs_compatibility(struct btrfs_super_block *sb, int writable)
792 features = btrfs_super_incompat_flags(sb) &
793 ~BTRFS_FEATURE_INCOMPAT_SUPP;
795 printk("couldn't open because of unsupported "
796 "option features (%Lx).\n",
797 (unsigned long long)features);
801 features = btrfs_super_incompat_flags(sb);
802 if (!(features & BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF)) {
803 features |= BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF;
804 btrfs_set_super_incompat_flags(sb, features);
807 features = btrfs_super_compat_ro_flags(sb) &
808 ~BTRFS_FEATURE_COMPAT_RO_SUPP;
809 if (writable && features) {
810 printk("couldn't open RDWR because of unsupported "
811 "option features (%Lx).\n",
812 (unsigned long long)features);
818 static int find_best_backup_root(struct btrfs_super_block *super)
820 struct btrfs_root_backup *backup;
821 u64 orig_gen = btrfs_super_generation(super);
826 for (i = 0; i < BTRFS_NUM_BACKUP_ROOTS; i++) {
827 backup = super->super_roots + i;
828 if (btrfs_backup_tree_root_gen(backup) != orig_gen &&
829 btrfs_backup_tree_root_gen(backup) > gen) {
831 gen = btrfs_backup_tree_root_gen(backup);
837 static int setup_root_or_create_block(struct btrfs_fs_info *fs_info,
838 enum btrfs_open_ctree_flags flags,
839 struct btrfs_root *info_root,
840 u64 objectid, char *str)
842 struct btrfs_super_block *sb = fs_info->super_copy;
843 struct btrfs_root *root = fs_info->tree_root;
844 u32 leafsize = btrfs_super_leafsize(sb);
847 ret = find_and_setup_root(root, fs_info, objectid, info_root);
849 printk("Couldn't setup %s tree\n", str);
850 if (!(flags & OPEN_CTREE_PARTIAL))
853 * Need a blank node here just so we don't screw up in the
854 * million of places that assume a root has a valid ->node
857 btrfs_find_create_tree_block(info_root, 0, leafsize);
858 if (!info_root->node)
860 clear_extent_buffer_uptodate(NULL, info_root->node);
866 int btrfs_setup_all_roots(struct btrfs_fs_info *fs_info, u64 root_tree_bytenr,
867 enum btrfs_open_ctree_flags flags)
869 struct btrfs_super_block *sb = fs_info->super_copy;
870 struct btrfs_root *root;
871 struct btrfs_key key;
880 nodesize = btrfs_super_nodesize(sb);
881 leafsize = btrfs_super_leafsize(sb);
882 sectorsize = btrfs_super_sectorsize(sb);
883 stripesize = btrfs_super_stripesize(sb);
885 root = fs_info->tree_root;
886 __setup_root(nodesize, leafsize, sectorsize, stripesize,
887 root, fs_info, BTRFS_ROOT_TREE_OBJECTID);
888 blocksize = btrfs_level_size(root, btrfs_super_root_level(sb));
889 generation = btrfs_super_generation(sb);
891 if (!root_tree_bytenr && !(flags & OPEN_CTREE_BACKUP_ROOT)) {
892 root_tree_bytenr = btrfs_super_root(sb);
893 } else if (flags & OPEN_CTREE_BACKUP_ROOT) {
894 struct btrfs_root_backup *backup;
895 int index = find_best_backup_root(sb);
896 if (index >= BTRFS_NUM_BACKUP_ROOTS) {
897 fprintf(stderr, "Invalid backup root number\n");
900 backup = fs_info->super_copy->super_roots + index;
901 root_tree_bytenr = btrfs_backup_tree_root(backup);
902 generation = btrfs_backup_tree_root_gen(backup);
905 root->node = read_tree_block(root, root_tree_bytenr, blocksize,
907 if (!extent_buffer_uptodate(root->node)) {
908 fprintf(stderr, "Couldn't read tree root\n");
912 ret = setup_root_or_create_block(fs_info, flags, fs_info->extent_root,
913 BTRFS_EXTENT_TREE_OBJECTID, "extent");
916 fs_info->extent_root->track_dirty = 1;
918 ret = find_and_setup_root(root, fs_info, BTRFS_DEV_TREE_OBJECTID,
921 printk("Couldn't setup device tree\n");
924 fs_info->dev_root->track_dirty = 1;
926 ret = setup_root_or_create_block(fs_info, flags, fs_info->csum_root,
927 BTRFS_CSUM_TREE_OBJECTID, "csum");
930 fs_info->csum_root->track_dirty = 1;
932 ret = find_and_setup_root(root, fs_info, BTRFS_QUOTA_TREE_OBJECTID,
933 fs_info->quota_root);
935 fs_info->quota_enabled = 1;
937 ret = find_and_setup_log_root(root, fs_info, sb);
939 printk("Couldn't setup log root tree\n");
940 if (!(flags & OPEN_CTREE_PARTIAL))
944 fs_info->generation = generation;
945 fs_info->last_trans_committed = generation;
946 if (extent_buffer_uptodate(fs_info->extent_root->node) &&
947 !(flags & OPEN_CTREE_NO_BLOCK_GROUPS))
948 btrfs_read_block_groups(fs_info->tree_root);
950 key.objectid = BTRFS_FS_TREE_OBJECTID;
951 key.type = BTRFS_ROOT_ITEM_KEY;
952 key.offset = (u64)-1;
953 fs_info->fs_root = btrfs_read_fs_root(fs_info, &key);
955 if (IS_ERR(fs_info->fs_root))
960 void btrfs_release_all_roots(struct btrfs_fs_info *fs_info)
962 if (fs_info->quota_root)
963 free_extent_buffer(fs_info->quota_root->node);
964 if (fs_info->csum_root)
965 free_extent_buffer(fs_info->csum_root->node);
966 if (fs_info->dev_root)
967 free_extent_buffer(fs_info->dev_root->node);
968 if (fs_info->extent_root)
969 free_extent_buffer(fs_info->extent_root->node);
970 if (fs_info->tree_root)
971 free_extent_buffer(fs_info->tree_root->node);
972 if (fs_info->log_root_tree)
973 free_extent_buffer(fs_info->log_root_tree->node);
974 if (fs_info->chunk_root)
975 free_extent_buffer(fs_info->chunk_root->node);
978 static void free_map_lookup(struct cache_extent *ce)
980 struct map_lookup *map;
982 map = container_of(ce, struct map_lookup, ce);
986 FREE_EXTENT_CACHE_BASED_TREE(mapping_cache, free_map_lookup);
988 void btrfs_cleanup_all_caches(struct btrfs_fs_info *fs_info)
990 while (!list_empty(&fs_info->recow_ebs)) {
991 struct extent_buffer *eb;
992 eb = list_first_entry(&fs_info->recow_ebs,
993 struct extent_buffer, recow);
994 list_del_init(&eb->recow);
995 free_extent_buffer(eb);
997 free_mapping_cache_tree(&fs_info->mapping_tree.cache_tree);
998 extent_io_tree_cleanup(&fs_info->extent_cache);
999 extent_io_tree_cleanup(&fs_info->free_space_cache);
1000 extent_io_tree_cleanup(&fs_info->block_group_cache);
1001 extent_io_tree_cleanup(&fs_info->pinned_extents);
1002 extent_io_tree_cleanup(&fs_info->pending_del);
1003 extent_io_tree_cleanup(&fs_info->extent_ins);
1006 int btrfs_scan_fs_devices(int fd, const char *path,
1007 struct btrfs_fs_devices **fs_devices,
1008 u64 sb_bytenr, int super_recover)
1015 sb_bytenr = BTRFS_SUPER_INFO_OFFSET;
1017 seek_ret = lseek(fd, 0, SEEK_END);
1021 dev_size = seek_ret;
1022 lseek(fd, 0, SEEK_SET);
1023 if (sb_bytenr > dev_size) {
1024 fprintf(stderr, "Superblock bytenr is larger than device size\n");
1028 ret = btrfs_scan_one_device(fd, path, fs_devices,
1029 &total_devs, sb_bytenr, super_recover);
1031 fprintf(stderr, "No valid Btrfs found on %s\n", path);
1035 if (total_devs != 1) {
1036 ret = btrfs_scan_lblkid();
1043 int btrfs_setup_chunk_tree_and_device_map(struct btrfs_fs_info *fs_info)
1045 struct btrfs_super_block *sb = fs_info->super_copy;
1054 nodesize = btrfs_super_nodesize(sb);
1055 leafsize = btrfs_super_leafsize(sb);
1056 sectorsize = btrfs_super_sectorsize(sb);
1057 stripesize = btrfs_super_stripesize(sb);
1059 __setup_root(nodesize, leafsize, sectorsize, stripesize,
1060 fs_info->chunk_root, fs_info, BTRFS_CHUNK_TREE_OBJECTID);
1062 ret = btrfs_read_sys_array(fs_info->chunk_root);
1066 blocksize = btrfs_level_size(fs_info->chunk_root,
1067 btrfs_super_chunk_root_level(sb));
1068 generation = btrfs_super_chunk_root_generation(sb);
1070 fs_info->chunk_root->node = read_tree_block(fs_info->chunk_root,
1071 btrfs_super_chunk_root(sb),
1072 blocksize, generation);
1073 if (!fs_info->chunk_root->node ||
1074 !extent_buffer_uptodate(fs_info->chunk_root->node)) {
1075 fprintf(stderr, "Couldn't read chunk root\n");
1079 if (!(btrfs_super_flags(sb) & BTRFS_SUPER_FLAG_METADUMP)) {
1080 ret = btrfs_read_chunk_tree(fs_info->chunk_root);
1082 fprintf(stderr, "Couldn't read chunk tree\n");
1089 static struct btrfs_fs_info *__open_ctree_fd(int fp, const char *path,
1091 u64 root_tree_bytenr,
1092 enum btrfs_open_ctree_flags flags)
1094 struct btrfs_fs_info *fs_info;
1095 struct btrfs_super_block *disk_super;
1096 struct btrfs_fs_devices *fs_devices = NULL;
1097 struct extent_buffer *eb;
1102 sb_bytenr = BTRFS_SUPER_INFO_OFFSET;
1104 /* try to drop all the caches */
1105 if (posix_fadvise(fp, 0, 0, POSIX_FADV_DONTNEED))
1106 fprintf(stderr, "Warning, could not drop caches\n");
1108 fs_info = btrfs_new_fs_info(flags & OPEN_CTREE_WRITES, sb_bytenr);
1110 fprintf(stderr, "Failed to allocate memory for fs_info\n");
1113 if (flags & OPEN_CTREE_RESTORE)
1114 fs_info->on_restoring = 1;
1116 ret = btrfs_scan_fs_devices(fp, path, &fs_devices, sb_bytenr,
1117 (flags & OPEN_CTREE_RECOVER_SUPER));
1121 fs_info->fs_devices = fs_devices;
1122 if (flags & OPEN_CTREE_WRITES)
1127 if (flags & OPEN_CTREE_EXCLUSIVE)
1130 ret = btrfs_open_devices(fs_devices, oflags);
1134 disk_super = fs_info->super_copy;
1135 if (!(flags & OPEN_CTREE_RECOVER_SUPER))
1136 ret = btrfs_read_dev_super(fs_devices->latest_bdev,
1137 disk_super, sb_bytenr, 1);
1139 ret = btrfs_read_dev_super(fp, disk_super, sb_bytenr, 0);
1141 printk("No valid btrfs found\n");
1145 memcpy(fs_info->fsid, &disk_super->fsid, BTRFS_FSID_SIZE);
1147 ret = btrfs_check_fs_compatibility(fs_info->super_copy,
1148 flags & OPEN_CTREE_WRITES);
1152 ret = btrfs_setup_chunk_tree_and_device_map(fs_info);
1156 eb = fs_info->chunk_root->node;
1157 read_extent_buffer(eb, fs_info->chunk_tree_uuid,
1158 btrfs_header_chunk_tree_uuid(eb),
1161 ret = btrfs_setup_all_roots(fs_info, root_tree_bytenr, flags);
1168 btrfs_release_all_roots(fs_info);
1169 btrfs_cleanup_all_caches(fs_info);
1171 btrfs_close_devices(fs_devices);
1173 btrfs_free_fs_info(fs_info);
1177 struct btrfs_fs_info *open_ctree_fs_info(const char *filename,
1178 u64 sb_bytenr, u64 root_tree_bytenr,
1179 enum btrfs_open_ctree_flags flags)
1182 struct btrfs_fs_info *info;
1183 int oflags = O_CREAT | O_RDWR;
1185 if (!(flags & OPEN_CTREE_WRITES))
1188 fp = open(filename, oflags, 0600);
1190 fprintf (stderr, "Could not open %s\n", filename);
1193 info = __open_ctree_fd(fp, filename, sb_bytenr, root_tree_bytenr,
1199 struct btrfs_root *open_ctree(const char *filename, u64 sb_bytenr,
1200 enum btrfs_open_ctree_flags flags)
1202 struct btrfs_fs_info *info;
1204 info = open_ctree_fs_info(filename, sb_bytenr, 0, flags);
1207 return info->fs_root;
1210 struct btrfs_root *open_ctree_fd(int fp, const char *path, u64 sb_bytenr,
1211 enum btrfs_open_ctree_flags flags)
1213 struct btrfs_fs_info *info;
1214 info = __open_ctree_fd(fp, path, sb_bytenr, 0, flags);
1217 return info->fs_root;
1220 int btrfs_read_dev_super(int fd, struct btrfs_super_block *sb, u64 sb_bytenr,
1223 u8 fsid[BTRFS_FSID_SIZE];
1224 int fsid_is_initialized = 0;
1225 struct btrfs_super_block buf;
1228 int max_super = super_recover ? BTRFS_SUPER_MIRROR_MAX : 1;
1232 if (sb_bytenr != BTRFS_SUPER_INFO_OFFSET) {
1233 ret = pread64(fd, &buf, sizeof(buf), sb_bytenr);
1234 if (ret < sizeof(buf))
1237 if (btrfs_super_bytenr(&buf) != sb_bytenr ||
1238 btrfs_super_magic(&buf) != BTRFS_MAGIC)
1241 memcpy(sb, &buf, sizeof(*sb));
1246 * we would like to check all the supers, but that would make
1247 * a btrfs mount succeed after a mkfs from a different FS.
1248 * So, we need to add a special mount option to scan for
1249 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
1252 for (i = 0; i < max_super; i++) {
1253 bytenr = btrfs_sb_offset(i);
1254 ret = pread64(fd, &buf, sizeof(buf), bytenr);
1255 if (ret < sizeof(buf))
1258 if (btrfs_super_bytenr(&buf) != bytenr )
1260 /* if magic is NULL, the device was removed */
1261 if (btrfs_super_magic(&buf) == 0 && i == 0)
1263 if (btrfs_super_magic(&buf) != BTRFS_MAGIC)
1266 if (!fsid_is_initialized) {
1267 memcpy(fsid, buf.fsid, sizeof(fsid));
1268 fsid_is_initialized = 1;
1269 } else if (memcmp(fsid, buf.fsid, sizeof(fsid))) {
1271 * the superblocks (the original one and
1272 * its backups) contain data of different
1273 * filesystems -> the super cannot be trusted
1278 if (btrfs_super_generation(&buf) > transid) {
1279 memcpy(sb, &buf, sizeof(*sb));
1280 transid = btrfs_super_generation(&buf);
1284 return transid > 0 ? 0 : -1;
1287 static int write_dev_supers(struct btrfs_root *root,
1288 struct btrfs_super_block *sb,
1289 struct btrfs_device *device)
1295 if (root->fs_info->super_bytenr != BTRFS_SUPER_INFO_OFFSET) {
1296 btrfs_set_super_bytenr(sb, root->fs_info->super_bytenr);
1298 crc = btrfs_csum_data(NULL, (char *)sb + BTRFS_CSUM_SIZE, crc,
1299 BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE);
1300 btrfs_csum_final(crc, (char *)&sb->csum[0]);
1303 * super_copy is BTRFS_SUPER_INFO_SIZE bytes and is
1304 * zero filled, we can use it directly
1306 ret = pwrite64(device->fd, root->fs_info->super_copy,
1307 BTRFS_SUPER_INFO_SIZE,
1308 root->fs_info->super_bytenr);
1309 BUG_ON(ret != BTRFS_SUPER_INFO_SIZE);
1313 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
1314 bytenr = btrfs_sb_offset(i);
1315 if (bytenr + BTRFS_SUPER_INFO_SIZE > device->total_bytes)
1318 btrfs_set_super_bytenr(sb, bytenr);
1321 crc = btrfs_csum_data(NULL, (char *)sb + BTRFS_CSUM_SIZE, crc,
1322 BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE);
1323 btrfs_csum_final(crc, (char *)&sb->csum[0]);
1326 * super_copy is BTRFS_SUPER_INFO_SIZE bytes and is
1327 * zero filled, we can use it directly
1329 ret = pwrite64(device->fd, root->fs_info->super_copy,
1330 BTRFS_SUPER_INFO_SIZE, bytenr);
1331 BUG_ON(ret != BTRFS_SUPER_INFO_SIZE);
1337 int write_all_supers(struct btrfs_root *root)
1339 struct list_head *cur;
1340 struct list_head *head = &root->fs_info->fs_devices->devices;
1341 struct btrfs_device *dev;
1342 struct btrfs_super_block *sb;
1343 struct btrfs_dev_item *dev_item;
1347 sb = root->fs_info->super_copy;
1348 dev_item = &sb->dev_item;
1349 list_for_each(cur, head) {
1350 dev = list_entry(cur, struct btrfs_device, dev_list);
1351 if (!dev->writeable)
1354 btrfs_set_stack_device_generation(dev_item, 0);
1355 btrfs_set_stack_device_type(dev_item, dev->type);
1356 btrfs_set_stack_device_id(dev_item, dev->devid);
1357 btrfs_set_stack_device_total_bytes(dev_item, dev->total_bytes);
1358 btrfs_set_stack_device_bytes_used(dev_item, dev->bytes_used);
1359 btrfs_set_stack_device_io_align(dev_item, dev->io_align);
1360 btrfs_set_stack_device_io_width(dev_item, dev->io_width);
1361 btrfs_set_stack_device_sector_size(dev_item, dev->sector_size);
1362 memcpy(dev_item->uuid, dev->uuid, BTRFS_UUID_SIZE);
1363 memcpy(dev_item->fsid, dev->fs_devices->fsid, BTRFS_UUID_SIZE);
1365 flags = btrfs_super_flags(sb);
1366 btrfs_set_super_flags(sb, flags | BTRFS_HEADER_FLAG_WRITTEN);
1368 ret = write_dev_supers(root, sb, dev);
1374 int write_ctree_super(struct btrfs_trans_handle *trans,
1375 struct btrfs_root *root)
1378 struct btrfs_root *tree_root = root->fs_info->tree_root;
1379 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
1381 if (root->fs_info->readonly)
1384 btrfs_set_super_generation(root->fs_info->super_copy,
1386 btrfs_set_super_root(root->fs_info->super_copy,
1387 tree_root->node->start);
1388 btrfs_set_super_root_level(root->fs_info->super_copy,
1389 btrfs_header_level(tree_root->node));
1390 btrfs_set_super_chunk_root(root->fs_info->super_copy,
1391 chunk_root->node->start);
1392 btrfs_set_super_chunk_root_level(root->fs_info->super_copy,
1393 btrfs_header_level(chunk_root->node));
1394 btrfs_set_super_chunk_root_generation(root->fs_info->super_copy,
1395 btrfs_header_generation(chunk_root->node));
1397 ret = write_all_supers(root);
1399 fprintf(stderr, "failed to write new super block err %d\n", ret);
1403 int close_ctree(struct btrfs_root *root)
1406 struct btrfs_trans_handle *trans;
1407 struct btrfs_fs_info *fs_info = root->fs_info;
1409 if (fs_info->last_trans_committed !=
1410 fs_info->generation) {
1411 trans = btrfs_start_transaction(root, 1);
1412 btrfs_commit_transaction(trans, root);
1413 trans = btrfs_start_transaction(root, 1);
1414 ret = commit_tree_roots(trans, fs_info);
1416 ret = __commit_transaction(trans, root);
1418 write_ctree_super(trans, root);
1419 btrfs_free_transaction(root, trans);
1421 btrfs_free_block_groups(fs_info);
1423 free_fs_roots_tree(&fs_info->fs_root_tree);
1425 btrfs_release_all_roots(fs_info);
1426 btrfs_close_devices(fs_info->fs_devices);
1427 btrfs_cleanup_all_caches(fs_info);
1428 btrfs_free_fs_info(fs_info);
1432 int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1433 struct extent_buffer *eb)
1435 return clear_extent_buffer_dirty(eb);
1438 int wait_on_tree_block_writeback(struct btrfs_root *root,
1439 struct extent_buffer *eb)
1444 void btrfs_mark_buffer_dirty(struct extent_buffer *eb)
1446 set_extent_buffer_dirty(eb);
1449 int btrfs_buffer_uptodate(struct extent_buffer *buf, u64 parent_transid)
1453 ret = extent_buffer_uptodate(buf);
1457 ret = verify_parent_transid(buf->tree, buf, parent_transid, 1);
1461 int btrfs_set_buffer_uptodate(struct extent_buffer *eb)
1463 return set_extent_buffer_uptodate(eb);