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.
21 #include <sys/types.h>
25 #include <uuid/uuid.h>
26 #include "kerncompat.h"
27 #include "radix-tree.h"
31 #include "transaction.h"
34 #include "print-tree.h"
35 #include "rbtree-utils.h"
37 /* specified errno for check_tree_block */
38 #define BTRFS_BAD_BYTENR (-1)
39 #define BTRFS_BAD_FSID (-2)
40 #define BTRFS_BAD_LEVEL (-3)
41 #define BTRFS_BAD_NRITEMS (-4)
43 /* Calculate max possible nritems for a leaf/node */
44 static u32
max_nritems(u8 level
, u32 nodesize
)
48 return ((nodesize
- sizeof(struct btrfs_header
)) /
49 sizeof(struct btrfs_item
));
50 return ((nodesize
- sizeof(struct btrfs_header
)) /
51 sizeof(struct btrfs_key_ptr
));
54 static int check_tree_block(struct btrfs_fs_info
*fs_info
,
55 struct extent_buffer
*buf
)
58 struct btrfs_fs_devices
*fs_devices
;
59 u32 nodesize
= fs_info
->nodesize
;
60 int ret
= BTRFS_BAD_FSID
;
62 if (buf
->start
!= btrfs_header_bytenr(buf
))
63 return BTRFS_BAD_BYTENR
;
64 if (btrfs_header_level(buf
) >= BTRFS_MAX_LEVEL
)
65 return BTRFS_BAD_LEVEL
;
66 if (btrfs_header_nritems(buf
) > max_nritems(btrfs_header_level(buf
),
68 return BTRFS_BAD_NRITEMS
;
70 /* Only leaf can be empty */
71 if (btrfs_header_nritems(buf
) == 0 &&
72 btrfs_header_level(buf
) != 0)
73 return BTRFS_BAD_NRITEMS
;
75 fs_devices
= fs_info
->fs_devices
;
77 if (fs_info
->ignore_fsid_mismatch
||
78 !memcmp_extent_buffer(buf
, fs_devices
->fsid
,
84 fs_devices
= fs_devices
->seed
;
89 static void print_tree_block_error(struct btrfs_fs_info
*fs_info
,
90 struct extent_buffer
*eb
,
93 char fs_uuid
[BTRFS_UUID_UNPARSED_SIZE
] = {'\0'};
94 char found_uuid
[BTRFS_UUID_UNPARSED_SIZE
] = {'\0'};
95 u8 buf
[BTRFS_UUID_SIZE
];
99 read_extent_buffer(eb
, buf
, btrfs_header_fsid(),
101 uuid_unparse(buf
, found_uuid
);
102 uuid_unparse(fs_info
->fsid
, fs_uuid
);
103 fprintf(stderr
, "fsid mismatch, want=%s, have=%s\n",
104 fs_uuid
, found_uuid
);
106 case BTRFS_BAD_BYTENR
:
107 fprintf(stderr
, "bytenr mismatch, want=%llu, have=%llu\n",
108 eb
->start
, btrfs_header_bytenr(eb
));
110 case BTRFS_BAD_LEVEL
:
111 fprintf(stderr
, "bad level, %u > %u\n",
112 btrfs_header_level(eb
), BTRFS_MAX_LEVEL
);
114 case BTRFS_BAD_NRITEMS
:
115 fprintf(stderr
, "invalid nr_items: %u\n",
116 btrfs_header_nritems(eb
));
121 u32
btrfs_csum_data(char *data
, u32 seed
, size_t len
)
123 return crc32c(seed
, data
, len
);
126 void btrfs_csum_final(u32 crc
, u8
*result
)
128 put_unaligned_le32(~crc
, result
);
131 static int __csum_tree_block_size(struct extent_buffer
*buf
, u16 csum_size
,
132 int verify
, int silent
)
134 u8 result
[BTRFS_CSUM_SIZE
];
138 len
= buf
->len
- BTRFS_CSUM_SIZE
;
139 crc
= crc32c(crc
, buf
->data
+ BTRFS_CSUM_SIZE
, len
);
140 btrfs_csum_final(crc
, result
);
143 if (memcmp_extent_buffer(buf
, result
, 0, csum_size
)) {
145 printk("checksum verify failed on %llu found %08X wanted %08X\n",
146 (unsigned long long)buf
->start
,
148 *((u32
*)(char *)buf
->data
));
152 write_extent_buffer(buf
, result
, 0, csum_size
);
157 int csum_tree_block_size(struct extent_buffer
*buf
, u16 csum_size
, int verify
)
159 return __csum_tree_block_size(buf
, csum_size
, verify
, 0);
162 int verify_tree_block_csum_silent(struct extent_buffer
*buf
, u16 csum_size
)
164 return __csum_tree_block_size(buf
, csum_size
, 1, 1);
167 int csum_tree_block(struct btrfs_fs_info
*fs_info
,
168 struct extent_buffer
*buf
, int verify
)
171 btrfs_super_csum_size(fs_info
->super_copy
);
172 if (verify
&& fs_info
->suppress_check_block_errors
)
173 return verify_tree_block_csum_silent(buf
, csum_size
);
174 return csum_tree_block_size(buf
, csum_size
, verify
);
177 struct extent_buffer
*btrfs_find_tree_block(struct btrfs_fs_info
*fs_info
,
178 u64 bytenr
, u32 blocksize
)
180 return find_extent_buffer(&fs_info
->extent_cache
,
184 struct extent_buffer
* btrfs_find_create_tree_block(
185 struct btrfs_fs_info
*fs_info
, u64 bytenr
)
187 return alloc_extent_buffer(&fs_info
->extent_cache
, bytenr
,
191 void readahead_tree_block(struct btrfs_fs_info
*fs_info
, u64 bytenr
,
194 struct extent_buffer
*eb
;
196 struct btrfs_multi_bio
*multi
= NULL
;
197 struct btrfs_device
*device
;
199 eb
= btrfs_find_tree_block(fs_info
, bytenr
, fs_info
->nodesize
);
200 if (!(eb
&& btrfs_buffer_uptodate(eb
, parent_transid
)) &&
201 !btrfs_map_block(fs_info
, READ
, bytenr
, &length
, &multi
, 0,
203 device
= multi
->stripes
[0].dev
;
205 readahead(device
->fd
, multi
->stripes
[0].physical
,
209 free_extent_buffer(eb
);
213 static int verify_parent_transid(struct extent_io_tree
*io_tree
,
214 struct extent_buffer
*eb
, u64 parent_transid
,
219 if (!parent_transid
|| btrfs_header_generation(eb
) == parent_transid
)
222 if (extent_buffer_uptodate(eb
) &&
223 btrfs_header_generation(eb
) == parent_transid
) {
227 printk("parent transid verify failed on %llu wanted %llu found %llu\n",
228 (unsigned long long)eb
->start
,
229 (unsigned long long)parent_transid
,
230 (unsigned long long)btrfs_header_generation(eb
));
232 eb
->flags
|= EXTENT_BAD_TRANSID
;
233 printk("Ignoring transid failure\n");
239 clear_extent_buffer_uptodate(eb
);
245 int read_whole_eb(struct btrfs_fs_info
*info
, struct extent_buffer
*eb
, int mirror
)
247 unsigned long offset
= 0;
248 struct btrfs_multi_bio
*multi
= NULL
;
249 struct btrfs_device
*device
;
252 unsigned long bytes_left
= eb
->len
;
255 read_len
= bytes_left
;
258 if (!info
->on_restoring
&&
259 eb
->start
!= BTRFS_SUPER_INFO_OFFSET
) {
260 ret
= btrfs_map_block(info
, READ
, eb
->start
+ offset
,
261 &read_len
, &multi
, mirror
, NULL
);
263 printk("Couldn't map the block %Lu\n", eb
->start
+ offset
);
267 device
= multi
->stripes
[0].dev
;
269 if (device
->fd
<= 0) {
276 eb
->dev_bytenr
= multi
->stripes
[0].physical
;
280 /* special case for restore metadump */
281 list_for_each_entry(device
, &info
->fs_devices
->devices
, dev_list
) {
282 if (device
->devid
== 1)
287 eb
->dev_bytenr
= eb
->start
;
291 if (read_len
> bytes_left
)
292 read_len
= bytes_left
;
294 ret
= read_extent_from_disk(eb
, offset
, read_len
);
298 bytes_left
-= read_len
;
303 struct extent_buffer
* read_tree_block(struct btrfs_fs_info
*fs_info
, u64 bytenr
,
307 struct extent_buffer
*eb
;
308 u64 best_transid
= 0;
309 u32 sectorsize
= fs_info
->sectorsize
;
316 * Don't even try to create tree block for unaligned tree block
318 * Such unaligned tree block will free overlapping extent buffer,
319 * causing use-after-free bugs for fuzzed images.
321 if (bytenr
< sectorsize
|| !IS_ALIGNED(bytenr
, sectorsize
)) {
322 error("tree block bytenr %llu is not aligned to sectorsize %u",
324 return ERR_PTR(-EIO
);
327 eb
= btrfs_find_create_tree_block(fs_info
, bytenr
);
329 return ERR_PTR(-ENOMEM
);
331 if (btrfs_buffer_uptodate(eb
, parent_transid
))
335 ret
= read_whole_eb(fs_info
, eb
, mirror_num
);
336 if (ret
== 0 && csum_tree_block(fs_info
, eb
, 1) == 0 &&
337 check_tree_block(fs_info
, eb
) == 0 &&
338 verify_parent_transid(eb
->tree
, eb
, parent_transid
, ignore
)
340 if (eb
->flags
& EXTENT_BAD_TRANSID
&&
341 list_empty(&eb
->recow
)) {
342 list_add_tail(&eb
->recow
,
343 &fs_info
->recow_ebs
);
346 btrfs_set_buffer_uptodate(eb
);
350 if (check_tree_block(fs_info
, eb
)) {
351 if (!fs_info
->suppress_check_block_errors
)
352 print_tree_block_error(fs_info
, eb
,
353 check_tree_block(fs_info
, eb
));
355 if (!fs_info
->suppress_check_block_errors
)
356 fprintf(stderr
, "Csum didn't match\n");
361 num_copies
= btrfs_num_copies(fs_info
, eb
->start
, eb
->len
);
362 if (num_copies
== 1) {
366 if (btrfs_header_generation(eb
) > best_transid
&& mirror_num
) {
367 best_transid
= btrfs_header_generation(eb
);
368 good_mirror
= mirror_num
;
371 if (mirror_num
> num_copies
) {
372 mirror_num
= good_mirror
;
377 free_extent_buffer(eb
);
381 int read_extent_data(struct btrfs_fs_info
*fs_info
, char *data
, u64 logical
,
382 u64
*len
, int mirror
)
385 struct btrfs_multi_bio
*multi
= NULL
;
386 struct btrfs_device
*device
;
390 ret
= btrfs_map_block(fs_info
, READ
, logical
, len
, &multi
, mirror
,
393 fprintf(stderr
, "Couldn't map the block %llu\n",
397 device
= multi
->stripes
[0].dev
;
404 ret
= pread64(device
->fd
, data
, *len
, multi
->stripes
[0].physical
);
414 int write_and_map_eb(struct btrfs_fs_info
*fs_info
, struct extent_buffer
*eb
)
419 u64
*raid_map
= NULL
;
420 struct btrfs_multi_bio
*multi
= NULL
;
424 ret
= btrfs_map_block(fs_info
, WRITE
, eb
->start
, &length
,
425 &multi
, 0, &raid_map
);
428 ret
= write_raid56_with_parity(fs_info
, eb
, multi
,
431 } else while (dev_nr
< multi
->num_stripes
) {
433 eb
->fd
= multi
->stripes
[dev_nr
].dev
->fd
;
434 eb
->dev_bytenr
= multi
->stripes
[dev_nr
].physical
;
435 multi
->stripes
[dev_nr
].dev
->total_ios
++;
437 ret
= write_extent_to_disk(eb
);
445 int write_tree_block(struct btrfs_trans_handle
*trans
,
446 struct btrfs_fs_info
*fs_info
,
447 struct extent_buffer
*eb
)
449 if (check_tree_block(fs_info
, eb
)) {
450 print_tree_block_error(fs_info
, eb
,
451 check_tree_block(fs_info
, eb
));
455 if (trans
&& !btrfs_buffer_uptodate(eb
, trans
->transid
))
458 btrfs_set_header_flag(eb
, BTRFS_HEADER_FLAG_WRITTEN
);
459 csum_tree_block(fs_info
, eb
, 0);
461 return write_and_map_eb(fs_info
, eb
);
464 void btrfs_setup_root(struct btrfs_root
*root
, struct btrfs_fs_info
*fs_info
,
468 root
->commit_root
= NULL
;
470 root
->track_dirty
= 0;
472 root
->fs_info
= fs_info
;
473 root
->objectid
= objectid
;
474 root
->last_trans
= 0;
475 root
->last_inode_alloc
= 0;
477 INIT_LIST_HEAD(&root
->dirty_list
);
478 INIT_LIST_HEAD(&root
->orphan_data_extents
);
479 memset(&root
->root_key
, 0, sizeof(root
->root_key
));
480 memset(&root
->root_item
, 0, sizeof(root
->root_item
));
481 root
->root_key
.objectid
= objectid
;
484 static int find_and_setup_root(struct btrfs_root
*tree_root
,
485 struct btrfs_fs_info
*fs_info
,
486 u64 objectid
, struct btrfs_root
*root
)
491 btrfs_setup_root(root
, fs_info
, objectid
);
492 ret
= btrfs_find_last_root(tree_root
, objectid
,
493 &root
->root_item
, &root
->root_key
);
497 generation
= btrfs_root_generation(&root
->root_item
);
498 root
->node
= read_tree_block(fs_info
,
499 btrfs_root_bytenr(&root
->root_item
), generation
);
500 if (!extent_buffer_uptodate(root
->node
))
506 static int find_and_setup_log_root(struct btrfs_root
*tree_root
,
507 struct btrfs_fs_info
*fs_info
,
508 struct btrfs_super_block
*disk_super
)
510 u64 blocknr
= btrfs_super_log_root(disk_super
);
511 struct btrfs_root
*log_root
= malloc(sizeof(struct btrfs_root
));
521 btrfs_setup_root(log_root
, fs_info
,
522 BTRFS_TREE_LOG_OBJECTID
);
524 log_root
->node
= read_tree_block(fs_info
, blocknr
,
525 btrfs_super_generation(disk_super
) + 1);
527 fs_info
->log_root_tree
= log_root
;
529 if (!extent_buffer_uptodate(log_root
->node
)) {
530 free_extent_buffer(log_root
->node
);
532 fs_info
->log_root_tree
= NULL
;
539 int btrfs_free_fs_root(struct btrfs_root
*root
)
542 free_extent_buffer(root
->node
);
543 if (root
->commit_root
)
544 free_extent_buffer(root
->commit_root
);
549 static void __free_fs_root(struct rb_node
*node
)
551 struct btrfs_root
*root
;
553 root
= container_of(node
, struct btrfs_root
, rb_node
);
554 btrfs_free_fs_root(root
);
557 FREE_RB_BASED_TREE(fs_roots
, __free_fs_root
);
559 struct btrfs_root
*btrfs_read_fs_root_no_cache(struct btrfs_fs_info
*fs_info
,
560 struct btrfs_key
*location
)
562 struct btrfs_root
*root
;
563 struct btrfs_root
*tree_root
= fs_info
->tree_root
;
564 struct btrfs_path
*path
;
565 struct extent_buffer
*l
;
569 root
= calloc(1, sizeof(*root
));
571 return ERR_PTR(-ENOMEM
);
572 if (location
->offset
== (u64
)-1) {
573 ret
= find_and_setup_root(tree_root
, fs_info
,
574 location
->objectid
, root
);
582 btrfs_setup_root(root
, fs_info
,
585 path
= btrfs_alloc_path();
588 return ERR_PTR(-ENOMEM
);
591 ret
= btrfs_search_slot(NULL
, tree_root
, location
, path
, 0, 0);
598 read_extent_buffer(l
, &root
->root_item
,
599 btrfs_item_ptr_offset(l
, path
->slots
[0]),
600 sizeof(root
->root_item
));
601 memcpy(&root
->root_key
, location
, sizeof(*location
));
604 btrfs_free_path(path
);
609 generation
= btrfs_root_generation(&root
->root_item
);
610 root
->node
= read_tree_block(fs_info
,
611 btrfs_root_bytenr(&root
->root_item
), generation
);
612 if (!extent_buffer_uptodate(root
->node
)) {
614 return ERR_PTR(-EIO
);
621 static int btrfs_fs_roots_compare_objectids(struct rb_node
*node
,
624 u64 objectid
= *((u64
*)data
);
625 struct btrfs_root
*root
;
627 root
= rb_entry(node
, struct btrfs_root
, rb_node
);
628 if (objectid
> root
->objectid
)
630 else if (objectid
< root
->objectid
)
636 static int btrfs_fs_roots_compare_roots(struct rb_node
*node1
,
637 struct rb_node
*node2
)
639 struct btrfs_root
*root
;
641 root
= rb_entry(node2
, struct btrfs_root
, rb_node
);
642 return btrfs_fs_roots_compare_objectids(node1
, (void *)&root
->objectid
);
645 struct btrfs_root
*btrfs_read_fs_root(struct btrfs_fs_info
*fs_info
,
646 struct btrfs_key
*location
)
648 struct btrfs_root
*root
;
649 struct rb_node
*node
;
651 u64 objectid
= location
->objectid
;
653 if (location
->objectid
== BTRFS_ROOT_TREE_OBJECTID
)
654 return fs_info
->tree_root
;
655 if (location
->objectid
== BTRFS_EXTENT_TREE_OBJECTID
)
656 return fs_info
->extent_root
;
657 if (location
->objectid
== BTRFS_CHUNK_TREE_OBJECTID
)
658 return fs_info
->chunk_root
;
659 if (location
->objectid
== BTRFS_DEV_TREE_OBJECTID
)
660 return fs_info
->dev_root
;
661 if (location
->objectid
== BTRFS_CSUM_TREE_OBJECTID
)
662 return fs_info
->csum_root
;
663 if (location
->objectid
== BTRFS_QUOTA_TREE_OBJECTID
)
664 return fs_info
->quota_enabled
? fs_info
->quota_root
:
667 BUG_ON(location
->objectid
== BTRFS_TREE_RELOC_OBJECTID
||
668 location
->offset
!= (u64
)-1);
670 node
= rb_search(&fs_info
->fs_root_tree
, (void *)&objectid
,
671 btrfs_fs_roots_compare_objectids
, NULL
);
673 return container_of(node
, struct btrfs_root
, rb_node
);
675 root
= btrfs_read_fs_root_no_cache(fs_info
, location
);
679 ret
= rb_insert(&fs_info
->fs_root_tree
, &root
->rb_node
,
680 btrfs_fs_roots_compare_roots
);
685 void btrfs_free_fs_info(struct btrfs_fs_info
*fs_info
)
687 if (fs_info
->quota_root
)
688 free(fs_info
->quota_root
);
690 free(fs_info
->tree_root
);
691 free(fs_info
->extent_root
);
692 free(fs_info
->chunk_root
);
693 free(fs_info
->dev_root
);
694 free(fs_info
->csum_root
);
695 free(fs_info
->free_space_root
);
696 free(fs_info
->super_copy
);
697 free(fs_info
->log_root_tree
);
701 struct btrfs_fs_info
*btrfs_new_fs_info(int writable
, u64 sb_bytenr
)
703 struct btrfs_fs_info
*fs_info
;
705 fs_info
= calloc(1, sizeof(struct btrfs_fs_info
));
709 fs_info
->tree_root
= calloc(1, sizeof(struct btrfs_root
));
710 fs_info
->extent_root
= calloc(1, sizeof(struct btrfs_root
));
711 fs_info
->chunk_root
= calloc(1, sizeof(struct btrfs_root
));
712 fs_info
->dev_root
= calloc(1, sizeof(struct btrfs_root
));
713 fs_info
->csum_root
= calloc(1, sizeof(struct btrfs_root
));
714 fs_info
->quota_root
= calloc(1, sizeof(struct btrfs_root
));
715 fs_info
->free_space_root
= calloc(1, sizeof(struct btrfs_root
));
716 fs_info
->super_copy
= calloc(1, BTRFS_SUPER_INFO_SIZE
);
718 if (!fs_info
->tree_root
|| !fs_info
->extent_root
||
719 !fs_info
->chunk_root
|| !fs_info
->dev_root
||
720 !fs_info
->csum_root
|| !fs_info
->quota_root
||
721 !fs_info
->free_space_root
|| !fs_info
->super_copy
)
724 extent_io_tree_init(&fs_info
->extent_cache
);
725 extent_io_tree_init(&fs_info
->free_space_cache
);
726 extent_io_tree_init(&fs_info
->block_group_cache
);
727 extent_io_tree_init(&fs_info
->pinned_extents
);
728 extent_io_tree_init(&fs_info
->pending_del
);
729 extent_io_tree_init(&fs_info
->extent_ins
);
730 fs_info
->excluded_extents
= NULL
;
732 fs_info
->fs_root_tree
= RB_ROOT
;
733 cache_tree_init(&fs_info
->mapping_tree
.cache_tree
);
735 mutex_init(&fs_info
->fs_mutex
);
736 INIT_LIST_HEAD(&fs_info
->dirty_cowonly_roots
);
737 INIT_LIST_HEAD(&fs_info
->space_info
);
738 INIT_LIST_HEAD(&fs_info
->recow_ebs
);
741 fs_info
->readonly
= 1;
743 fs_info
->super_bytenr
= sb_bytenr
;
744 fs_info
->data_alloc_profile
= (u64
)-1;
745 fs_info
->metadata_alloc_profile
= (u64
)-1;
746 fs_info
->system_alloc_profile
= fs_info
->metadata_alloc_profile
;
749 btrfs_free_fs_info(fs_info
);
753 int btrfs_check_fs_compatibility(struct btrfs_super_block
*sb
,
758 features
= btrfs_super_incompat_flags(sb
) &
759 ~BTRFS_FEATURE_INCOMPAT_SUPP
;
761 printk("couldn't open because of unsupported "
762 "option features (%Lx).\n",
763 (unsigned long long)features
);
767 features
= btrfs_super_incompat_flags(sb
);
768 if (!(features
& BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF
)) {
769 features
|= BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF
;
770 btrfs_set_super_incompat_flags(sb
, features
);
773 features
= btrfs_super_compat_ro_flags(sb
);
774 if (flags
& OPEN_CTREE_WRITES
) {
775 if (flags
& OPEN_CTREE_INVALIDATE_FST
) {
776 /* Clear the FREE_SPACE_TREE_VALID bit on disk... */
777 features
&= ~BTRFS_FEATURE_COMPAT_RO_FREE_SPACE_TREE_VALID
;
778 btrfs_set_super_compat_ro_flags(sb
, features
);
779 /* ... and ignore the free space tree bit. */
780 features
&= ~BTRFS_FEATURE_COMPAT_RO_FREE_SPACE_TREE
;
782 if (features
& ~BTRFS_FEATURE_COMPAT_RO_SUPP
) {
783 printk("couldn't open RDWR because of unsupported "
784 "option features (%Lx).\n",
785 (unsigned long long)features
);
793 static int find_best_backup_root(struct btrfs_super_block
*super
)
795 struct btrfs_root_backup
*backup
;
796 u64 orig_gen
= btrfs_super_generation(super
);
801 for (i
= 0; i
< BTRFS_NUM_BACKUP_ROOTS
; i
++) {
802 backup
= super
->super_roots
+ i
;
803 if (btrfs_backup_tree_root_gen(backup
) != orig_gen
&&
804 btrfs_backup_tree_root_gen(backup
) > gen
) {
806 gen
= btrfs_backup_tree_root_gen(backup
);
812 static int setup_root_or_create_block(struct btrfs_fs_info
*fs_info
,
814 struct btrfs_root
*info_root
,
815 u64 objectid
, char *str
)
817 struct btrfs_root
*root
= fs_info
->tree_root
;
820 ret
= find_and_setup_root(root
, fs_info
, objectid
, info_root
);
822 printk("Couldn't setup %s tree\n", str
);
823 if (!(flags
& OPEN_CTREE_PARTIAL
))
826 * Need a blank node here just so we don't screw up in the
827 * million of places that assume a root has a valid ->node
830 btrfs_find_create_tree_block(fs_info
, 0);
831 if (!info_root
->node
)
833 clear_extent_buffer_uptodate(info_root
->node
);
839 int btrfs_setup_all_roots(struct btrfs_fs_info
*fs_info
, u64 root_tree_bytenr
,
842 struct btrfs_super_block
*sb
= fs_info
->super_copy
;
843 struct btrfs_root
*root
;
844 struct btrfs_key key
;
848 root
= fs_info
->tree_root
;
849 btrfs_setup_root(root
, fs_info
, BTRFS_ROOT_TREE_OBJECTID
);
850 generation
= btrfs_super_generation(sb
);
852 if (!root_tree_bytenr
&& !(flags
& OPEN_CTREE_BACKUP_ROOT
)) {
853 root_tree_bytenr
= btrfs_super_root(sb
);
854 } else if (flags
& OPEN_CTREE_BACKUP_ROOT
) {
855 struct btrfs_root_backup
*backup
;
856 int index
= find_best_backup_root(sb
);
857 if (index
>= BTRFS_NUM_BACKUP_ROOTS
) {
858 fprintf(stderr
, "Invalid backup root number\n");
861 backup
= fs_info
->super_copy
->super_roots
+ index
;
862 root_tree_bytenr
= btrfs_backup_tree_root(backup
);
863 generation
= btrfs_backup_tree_root_gen(backup
);
866 root
->node
= read_tree_block(fs_info
, root_tree_bytenr
, generation
);
867 if (!extent_buffer_uptodate(root
->node
)) {
868 fprintf(stderr
, "Couldn't read tree root\n");
872 ret
= setup_root_or_create_block(fs_info
, flags
, fs_info
->extent_root
,
873 BTRFS_EXTENT_TREE_OBJECTID
, "extent");
876 fs_info
->extent_root
->track_dirty
= 1;
878 ret
= find_and_setup_root(root
, fs_info
, BTRFS_DEV_TREE_OBJECTID
,
881 printk("Couldn't setup device tree\n");
884 fs_info
->dev_root
->track_dirty
= 1;
886 ret
= setup_root_or_create_block(fs_info
, flags
, fs_info
->csum_root
,
887 BTRFS_CSUM_TREE_OBJECTID
, "csum");
890 fs_info
->csum_root
->track_dirty
= 1;
892 ret
= find_and_setup_root(root
, fs_info
, BTRFS_QUOTA_TREE_OBJECTID
,
893 fs_info
->quota_root
);
895 free(fs_info
->quota_root
);
896 fs_info
->quota_root
= NULL
;
898 fs_info
->quota_enabled
= 1;
901 if (btrfs_fs_compat_ro(fs_info
, FREE_SPACE_TREE
)) {
902 ret
= find_and_setup_root(root
, fs_info
, BTRFS_FREE_SPACE_TREE_OBJECTID
,
903 fs_info
->free_space_root
);
905 printk("Couldn't read free space tree\n");
908 fs_info
->free_space_root
->track_dirty
= 1;
911 ret
= find_and_setup_log_root(root
, fs_info
, sb
);
913 printk("Couldn't setup log root tree\n");
914 if (!(flags
& OPEN_CTREE_PARTIAL
))
918 fs_info
->generation
= generation
;
919 fs_info
->last_trans_committed
= generation
;
920 if (extent_buffer_uptodate(fs_info
->extent_root
->node
) &&
921 !(flags
& OPEN_CTREE_NO_BLOCK_GROUPS
)) {
922 ret
= btrfs_read_block_groups(fs_info
->tree_root
);
924 * If we don't find any blockgroups (ENOENT) we're either
925 * restoring or creating the filesystem, where it's expected,
926 * anything else is error
932 key
.objectid
= BTRFS_FS_TREE_OBJECTID
;
933 key
.type
= BTRFS_ROOT_ITEM_KEY
;
934 key
.offset
= (u64
)-1;
935 fs_info
->fs_root
= btrfs_read_fs_root(fs_info
, &key
);
937 if (IS_ERR(fs_info
->fs_root
))
942 void btrfs_release_all_roots(struct btrfs_fs_info
*fs_info
)
944 if (fs_info
->free_space_root
)
945 free_extent_buffer(fs_info
->free_space_root
->node
);
946 if (fs_info
->quota_root
)
947 free_extent_buffer(fs_info
->quota_root
->node
);
948 if (fs_info
->csum_root
)
949 free_extent_buffer(fs_info
->csum_root
->node
);
950 if (fs_info
->dev_root
)
951 free_extent_buffer(fs_info
->dev_root
->node
);
952 if (fs_info
->extent_root
)
953 free_extent_buffer(fs_info
->extent_root
->node
);
954 if (fs_info
->tree_root
)
955 free_extent_buffer(fs_info
->tree_root
->node
);
956 if (fs_info
->log_root_tree
)
957 free_extent_buffer(fs_info
->log_root_tree
->node
);
958 if (fs_info
->chunk_root
)
959 free_extent_buffer(fs_info
->chunk_root
->node
);
962 static void free_map_lookup(struct cache_extent
*ce
)
964 struct map_lookup
*map
;
966 map
= container_of(ce
, struct map_lookup
, ce
);
970 FREE_EXTENT_CACHE_BASED_TREE(mapping_cache
, free_map_lookup
);
972 void btrfs_cleanup_all_caches(struct btrfs_fs_info
*fs_info
)
974 while (!list_empty(&fs_info
->recow_ebs
)) {
975 struct extent_buffer
*eb
;
976 eb
= list_first_entry(&fs_info
->recow_ebs
,
977 struct extent_buffer
, recow
);
978 list_del_init(&eb
->recow
);
979 free_extent_buffer(eb
);
981 free_mapping_cache_tree(&fs_info
->mapping_tree
.cache_tree
);
982 extent_io_tree_cleanup(&fs_info
->extent_cache
);
983 extent_io_tree_cleanup(&fs_info
->free_space_cache
);
984 extent_io_tree_cleanup(&fs_info
->block_group_cache
);
985 extent_io_tree_cleanup(&fs_info
->pinned_extents
);
986 extent_io_tree_cleanup(&fs_info
->pending_del
);
987 extent_io_tree_cleanup(&fs_info
->extent_ins
);
990 int btrfs_scan_fs_devices(int fd
, const char *path
,
991 struct btrfs_fs_devices
**fs_devices
,
992 u64 sb_bytenr
, unsigned sbflags
,
1000 sb_bytenr
= BTRFS_SUPER_INFO_OFFSET
;
1002 seek_ret
= lseek(fd
, 0, SEEK_END
);
1006 dev_size
= seek_ret
;
1007 lseek(fd
, 0, SEEK_SET
);
1008 if (sb_bytenr
> dev_size
) {
1009 error("superblock bytenr %llu is larger than device size %llu",
1010 (unsigned long long)sb_bytenr
,
1011 (unsigned long long)dev_size
);
1015 ret
= btrfs_scan_one_device(fd
, path
, fs_devices
,
1016 &total_devs
, sb_bytenr
, sbflags
);
1018 fprintf(stderr
, "No valid Btrfs found on %s\n", path
);
1022 if (!skip_devices
&& total_devs
!= 1) {
1023 ret
= btrfs_scan_devices();
1030 int btrfs_setup_chunk_tree_and_device_map(struct btrfs_fs_info
*fs_info
,
1031 u64 chunk_root_bytenr
)
1033 struct btrfs_super_block
*sb
= fs_info
->super_copy
;
1037 btrfs_setup_root(fs_info
->chunk_root
, fs_info
,
1038 BTRFS_CHUNK_TREE_OBJECTID
);
1040 ret
= btrfs_read_sys_array(fs_info
);
1044 generation
= btrfs_super_chunk_root_generation(sb
);
1046 if (chunk_root_bytenr
&& !IS_ALIGNED(chunk_root_bytenr
,
1047 fs_info
->sectorsize
)) {
1048 warning("chunk_root_bytenr %llu is unaligned to %u, ignore it",
1049 chunk_root_bytenr
, fs_info
->sectorsize
);
1050 chunk_root_bytenr
= 0;
1053 if (!chunk_root_bytenr
)
1054 chunk_root_bytenr
= btrfs_super_chunk_root(sb
);
1058 fs_info
->chunk_root
->node
= read_tree_block(fs_info
,
1061 if (!extent_buffer_uptodate(fs_info
->chunk_root
->node
)) {
1062 if (fs_info
->ignore_chunk_tree_error
) {
1063 warning("cannot read chunk root, continue anyway");
1064 fs_info
->chunk_root
= NULL
;
1067 error("cannot read chunk root");
1072 if (!(btrfs_super_flags(sb
) & BTRFS_SUPER_FLAG_METADUMP
)) {
1073 ret
= btrfs_read_chunk_tree(fs_info
);
1075 fprintf(stderr
, "Couldn't read chunk tree\n");
1082 static struct btrfs_fs_info
*__open_ctree_fd(int fp
, const char *path
,
1084 u64 root_tree_bytenr
,
1085 u64 chunk_root_bytenr
,
1088 struct btrfs_fs_info
*fs_info
;
1089 struct btrfs_super_block
*disk_super
;
1090 struct btrfs_fs_devices
*fs_devices
= NULL
;
1091 struct extent_buffer
*eb
;
1094 unsigned sbflags
= SBREAD_DEFAULT
;
1097 sb_bytenr
= BTRFS_SUPER_INFO_OFFSET
;
1099 /* try to drop all the caches */
1100 if (posix_fadvise(fp
, 0, 0, POSIX_FADV_DONTNEED
))
1101 fprintf(stderr
, "Warning, could not drop caches\n");
1103 fs_info
= btrfs_new_fs_info(flags
& OPEN_CTREE_WRITES
, sb_bytenr
);
1105 fprintf(stderr
, "Failed to allocate memory for fs_info\n");
1108 if (flags
& OPEN_CTREE_RESTORE
)
1109 fs_info
->on_restoring
= 1;
1110 if (flags
& OPEN_CTREE_SUPPRESS_CHECK_BLOCK_ERRORS
)
1111 fs_info
->suppress_check_block_errors
= 1;
1112 if (flags
& OPEN_CTREE_IGNORE_FSID_MISMATCH
)
1113 fs_info
->ignore_fsid_mismatch
= 1;
1114 if (flags
& OPEN_CTREE_IGNORE_CHUNK_TREE_ERROR
)
1115 fs_info
->ignore_chunk_tree_error
= 1;
1117 if ((flags
& OPEN_CTREE_RECOVER_SUPER
)
1118 && (flags
& OPEN_CTREE_FS_PARTIAL
)) {
1120 "cannot open a partially created filesystem for recovery");
1124 if (flags
& OPEN_CTREE_FS_PARTIAL
)
1125 sbflags
= SBREAD_PARTIAL
;
1127 ret
= btrfs_scan_fs_devices(fp
, path
, &fs_devices
, sb_bytenr
, sbflags
,
1128 (flags
& OPEN_CTREE_NO_DEVICES
));
1132 fs_info
->fs_devices
= fs_devices
;
1133 if (flags
& OPEN_CTREE_WRITES
)
1138 if (flags
& OPEN_CTREE_EXCLUSIVE
)
1141 ret
= btrfs_open_devices(fs_devices
, oflags
);
1145 disk_super
= fs_info
->super_copy
;
1146 if (flags
& OPEN_CTREE_RECOVER_SUPER
)
1147 ret
= btrfs_read_dev_super(fs_devices
->latest_bdev
, disk_super
,
1148 sb_bytenr
, SBREAD_RECOVER
);
1150 ret
= btrfs_read_dev_super(fp
, disk_super
, sb_bytenr
,
1153 printk("No valid btrfs found\n");
1157 if (btrfs_super_flags(disk_super
) & BTRFS_SUPER_FLAG_CHANGING_FSID
&&
1158 !fs_info
->ignore_fsid_mismatch
) {
1159 fprintf(stderr
, "ERROR: Filesystem UUID change in progress\n");
1163 memcpy(fs_info
->fsid
, &disk_super
->fsid
, BTRFS_FSID_SIZE
);
1164 fs_info
->sectorsize
= btrfs_super_sectorsize(disk_super
);
1165 fs_info
->nodesize
= btrfs_super_nodesize(disk_super
);
1166 fs_info
->stripesize
= btrfs_super_stripesize(disk_super
);
1168 ret
= btrfs_check_fs_compatibility(fs_info
->super_copy
, flags
);
1172 ret
= btrfs_setup_chunk_tree_and_device_map(fs_info
, chunk_root_bytenr
);
1176 /* Chunk tree root is unable to read, return directly */
1177 if (!fs_info
->chunk_root
)
1180 eb
= fs_info
->chunk_root
->node
;
1181 read_extent_buffer(eb
, fs_info
->chunk_tree_uuid
,
1182 btrfs_header_chunk_tree_uuid(eb
),
1185 ret
= btrfs_setup_all_roots(fs_info
, root_tree_bytenr
, flags
);
1186 if (ret
&& !(flags
& __OPEN_CTREE_RETURN_CHUNK_ROOT
) &&
1187 !fs_info
->ignore_chunk_tree_error
)
1193 btrfs_release_all_roots(fs_info
);
1194 btrfs_cleanup_all_caches(fs_info
);
1196 btrfs_close_devices(fs_devices
);
1198 btrfs_free_fs_info(fs_info
);
1202 struct btrfs_fs_info
*open_ctree_fs_info(const char *filename
,
1203 u64 sb_bytenr
, u64 root_tree_bytenr
,
1204 u64 chunk_root_bytenr
,
1209 struct btrfs_fs_info
*info
;
1210 int oflags
= O_RDWR
;
1213 ret
= stat(filename
, &st
);
1215 error("cannot stat '%s': %m", filename
);
1218 if (!(((st
.st_mode
& S_IFMT
) == S_IFREG
) || ((st
.st_mode
& S_IFMT
) == S_IFBLK
))) {
1219 error("not a regular file or block device: %s", filename
);
1223 if (!(flags
& OPEN_CTREE_WRITES
))
1226 fp
= open(filename
, oflags
);
1228 error("cannot open '%s': %m", filename
);
1231 info
= __open_ctree_fd(fp
, filename
, sb_bytenr
, root_tree_bytenr
,
1232 chunk_root_bytenr
, flags
);
1237 struct btrfs_root
*open_ctree(const char *filename
, u64 sb_bytenr
,
1240 struct btrfs_fs_info
*info
;
1242 /* This flags may not return fs_info with any valid root */
1243 BUG_ON(flags
& OPEN_CTREE_IGNORE_CHUNK_TREE_ERROR
);
1244 info
= open_ctree_fs_info(filename
, sb_bytenr
, 0, 0, flags
);
1247 if (flags
& __OPEN_CTREE_RETURN_CHUNK_ROOT
)
1248 return info
->chunk_root
;
1249 return info
->fs_root
;
1252 struct btrfs_root
*open_ctree_fd(int fp
, const char *path
, u64 sb_bytenr
,
1255 struct btrfs_fs_info
*info
;
1257 /* This flags may not return fs_info with any valid root */
1258 if (flags
& OPEN_CTREE_IGNORE_CHUNK_TREE_ERROR
) {
1259 error("invalid open_ctree flags: 0x%llx",
1260 (unsigned long long)flags
);
1263 info
= __open_ctree_fd(fp
, path
, sb_bytenr
, 0, 0, flags
);
1266 if (flags
& __OPEN_CTREE_RETURN_CHUNK_ROOT
)
1267 return info
->chunk_root
;
1268 return info
->fs_root
;
1272 * Check if the super is valid:
1273 * - nodesize/sectorsize - minimum, maximum, alignment
1274 * - tree block starts - alignment
1275 * - number of devices - something sane
1276 * - sys array size - maximum
1278 static int check_super(struct btrfs_super_block
*sb
, unsigned sbflags
)
1280 u8 result
[BTRFS_CSUM_SIZE
];
1285 if (btrfs_super_magic(sb
) != BTRFS_MAGIC
) {
1286 if (btrfs_super_magic(sb
) == BTRFS_MAGIC_PARTIAL
) {
1287 if (!(sbflags
& SBREAD_PARTIAL
)) {
1288 error("superblock magic doesn't match");
1294 csum_type
= btrfs_super_csum_type(sb
);
1295 if (csum_type
>= ARRAY_SIZE(btrfs_csum_sizes
)) {
1296 error("unsupported checksum algorithm %u", csum_type
);
1299 csum_size
= btrfs_csum_sizes
[csum_type
];
1302 crc
= btrfs_csum_data((char *)sb
+ BTRFS_CSUM_SIZE
, crc
,
1303 BTRFS_SUPER_INFO_SIZE
- BTRFS_CSUM_SIZE
);
1304 btrfs_csum_final(crc
, result
);
1306 if (memcmp(result
, sb
->csum
, csum_size
)) {
1307 error("superblock checksum mismatch");
1310 if (btrfs_super_root_level(sb
) >= BTRFS_MAX_LEVEL
) {
1311 error("tree_root level too big: %d >= %d",
1312 btrfs_super_root_level(sb
), BTRFS_MAX_LEVEL
);
1315 if (btrfs_super_chunk_root_level(sb
) >= BTRFS_MAX_LEVEL
) {
1316 error("chunk_root level too big: %d >= %d",
1317 btrfs_super_chunk_root_level(sb
), BTRFS_MAX_LEVEL
);
1320 if (btrfs_super_log_root_level(sb
) >= BTRFS_MAX_LEVEL
) {
1321 error("log_root level too big: %d >= %d",
1322 btrfs_super_log_root_level(sb
), BTRFS_MAX_LEVEL
);
1326 if (!IS_ALIGNED(btrfs_super_root(sb
), 4096)) {
1327 error("tree_root block unaligned: %llu", btrfs_super_root(sb
));
1330 if (!IS_ALIGNED(btrfs_super_chunk_root(sb
), 4096)) {
1331 error("chunk_root block unaligned: %llu",
1332 btrfs_super_chunk_root(sb
));
1335 if (!IS_ALIGNED(btrfs_super_log_root(sb
), 4096)) {
1336 error("log_root block unaligned: %llu",
1337 btrfs_super_log_root(sb
));
1340 if (btrfs_super_nodesize(sb
) < 4096) {
1341 error("nodesize too small: %u < 4096",
1342 btrfs_super_nodesize(sb
));
1345 if (!IS_ALIGNED(btrfs_super_nodesize(sb
), 4096)) {
1346 error("nodesize unaligned: %u", btrfs_super_nodesize(sb
));
1349 if (btrfs_super_sectorsize(sb
) < 4096) {
1350 error("sectorsize too small: %u < 4096",
1351 btrfs_super_sectorsize(sb
));
1354 if (!IS_ALIGNED(btrfs_super_sectorsize(sb
), 4096)) {
1355 error("sectorsize unaligned: %u", btrfs_super_sectorsize(sb
));
1358 if (btrfs_super_total_bytes(sb
) == 0) {
1359 error("invalid total_bytes 0");
1362 if (btrfs_super_bytes_used(sb
) < 6 * btrfs_super_nodesize(sb
)) {
1363 error("invalid bytes_used %llu", btrfs_super_bytes_used(sb
));
1366 if ((btrfs_super_stripesize(sb
) != 4096)
1367 && (btrfs_super_stripesize(sb
) != btrfs_super_sectorsize(sb
))) {
1368 error("invalid stripesize %u", btrfs_super_stripesize(sb
));
1372 if (memcmp(sb
->fsid
, sb
->dev_item
.fsid
, BTRFS_UUID_SIZE
) != 0) {
1373 char fsid
[BTRFS_UUID_UNPARSED_SIZE
];
1374 char dev_fsid
[BTRFS_UUID_UNPARSED_SIZE
];
1376 uuid_unparse(sb
->fsid
, fsid
);
1377 uuid_unparse(sb
->dev_item
.fsid
, dev_fsid
);
1378 error("dev_item UUID does not match fsid: %s != %s",
1384 * Hint to catch really bogus numbers, bitflips or so
1386 if (btrfs_super_num_devices(sb
) > (1UL << 31)) {
1387 warning("suspicious number of devices: %llu",
1388 btrfs_super_num_devices(sb
));
1391 if (btrfs_super_num_devices(sb
) == 0) {
1392 error("number of devices is 0");
1397 * Obvious sys_chunk_array corruptions, it must hold at least one key
1400 if (btrfs_super_sys_array_size(sb
) > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE
) {
1401 error("system chunk array too big %u > %u",
1402 btrfs_super_sys_array_size(sb
),
1403 BTRFS_SYSTEM_CHUNK_ARRAY_SIZE
);
1406 if (btrfs_super_sys_array_size(sb
) < sizeof(struct btrfs_disk_key
)
1407 + sizeof(struct btrfs_chunk
)) {
1408 error("system chunk array too small %u < %zu",
1409 btrfs_super_sys_array_size(sb
),
1410 sizeof(struct btrfs_disk_key
) +
1411 sizeof(struct btrfs_chunk
));
1418 error("superblock checksum matches but it has invalid members");
1423 * btrfs_read_dev_super - read a valid superblock from a block device
1424 * @fd: file descriptor of the device
1425 * @sb: buffer where the superblock is going to be read in
1426 * @sb_bytenr: offset of the particular superblock copy we want
1427 * @sbflags: flags controlling how the superblock is read
1429 * This function is used by various btrfs comands to obtain a valid superblock.
1431 * It's mode of operation is controlled by the @sb_bytenr and @sbdflags
1432 * parameters. If SBREAD_RECOVER flag is set and @sb_bytenr is
1433 * BTRFS_SUPER_INFO_OFFSET then the function reads all 3 superblock copies and
1434 * returns the newest one. If SBREAD_RECOVER is not set then only a single
1435 * copy is read, which one is decided by @sb_bytenr. If @sb_bytenr !=
1436 * BTRFS_SUPER_INFO_OFFSET then the @sbflags is effectively ignored and only a
1437 * single copy is read.
1439 int btrfs_read_dev_super(int fd
, struct btrfs_super_block
*sb
, u64 sb_bytenr
,
1442 u8 fsid
[BTRFS_FSID_SIZE
];
1443 int fsid_is_initialized
= 0;
1444 char tmp
[BTRFS_SUPER_INFO_SIZE
];
1445 struct btrfs_super_block
*buf
= (struct btrfs_super_block
*)tmp
;
1448 int max_super
= sbflags
& SBREAD_RECOVER
? BTRFS_SUPER_MIRROR_MAX
: 1;
1452 if (sb_bytenr
!= BTRFS_SUPER_INFO_OFFSET
) {
1453 ret
= pread64(fd
, buf
, BTRFS_SUPER_INFO_SIZE
, sb_bytenr
);
1458 /* Not large enough sb, return -ENOENT instead of normal -EIO */
1459 if (ret
< BTRFS_SUPER_INFO_SIZE
)
1462 if (btrfs_super_bytenr(buf
) != sb_bytenr
)
1465 ret
= check_super(buf
, sbflags
);
1468 memcpy(sb
, buf
, BTRFS_SUPER_INFO_SIZE
);
1473 * we would like to check all the supers, but that would make
1474 * a btrfs mount succeed after a mkfs from a different FS.
1475 * So, we need to add a special mount option to scan for
1476 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
1479 for (i
= 0; i
< max_super
; i
++) {
1480 bytenr
= btrfs_sb_offset(i
);
1481 ret
= pread64(fd
, buf
, BTRFS_SUPER_INFO_SIZE
, bytenr
);
1482 if (ret
< BTRFS_SUPER_INFO_SIZE
)
1485 if (btrfs_super_bytenr(buf
) != bytenr
)
1487 /* if magic is NULL, the device was removed */
1488 if (btrfs_super_magic(buf
) == 0 && i
== 0)
1490 if (check_super(buf
, sbflags
))
1493 if (!fsid_is_initialized
) {
1494 memcpy(fsid
, buf
->fsid
, sizeof(fsid
));
1495 fsid_is_initialized
= 1;
1496 } else if (memcmp(fsid
, buf
->fsid
, sizeof(fsid
))) {
1498 * the superblocks (the original one and
1499 * its backups) contain data of different
1500 * filesystems -> the super cannot be trusted
1505 if (btrfs_super_generation(buf
) > transid
) {
1506 memcpy(sb
, buf
, BTRFS_SUPER_INFO_SIZE
);
1507 transid
= btrfs_super_generation(buf
);
1511 return transid
> 0 ? 0 : -1;
1514 static int write_dev_supers(struct btrfs_fs_info
*fs_info
,
1515 struct btrfs_super_block
*sb
,
1516 struct btrfs_device
*device
)
1522 if (fs_info
->super_bytenr
!= BTRFS_SUPER_INFO_OFFSET
) {
1523 btrfs_set_super_bytenr(sb
, fs_info
->super_bytenr
);
1525 crc
= btrfs_csum_data((char *)sb
+ BTRFS_CSUM_SIZE
, crc
,
1526 BTRFS_SUPER_INFO_SIZE
- BTRFS_CSUM_SIZE
);
1527 btrfs_csum_final(crc
, &sb
->csum
[0]);
1530 * super_copy is BTRFS_SUPER_INFO_SIZE bytes and is
1531 * zero filled, we can use it directly
1533 ret
= pwrite64(device
->fd
, fs_info
->super_copy
,
1534 BTRFS_SUPER_INFO_SIZE
,
1535 fs_info
->super_bytenr
);
1536 if (ret
!= BTRFS_SUPER_INFO_SIZE
)
1541 for (i
= 0; i
< BTRFS_SUPER_MIRROR_MAX
; i
++) {
1542 bytenr
= btrfs_sb_offset(i
);
1543 if (bytenr
+ BTRFS_SUPER_INFO_SIZE
> device
->total_bytes
)
1546 btrfs_set_super_bytenr(sb
, bytenr
);
1549 crc
= btrfs_csum_data((char *)sb
+ BTRFS_CSUM_SIZE
, crc
,
1550 BTRFS_SUPER_INFO_SIZE
- BTRFS_CSUM_SIZE
);
1551 btrfs_csum_final(crc
, &sb
->csum
[0]);
1554 * super_copy is BTRFS_SUPER_INFO_SIZE bytes and is
1555 * zero filled, we can use it directly
1557 ret
= pwrite64(device
->fd
, fs_info
->super_copy
,
1558 BTRFS_SUPER_INFO_SIZE
, bytenr
);
1559 if (ret
!= BTRFS_SUPER_INFO_SIZE
)
1567 fprintf(stderr
, "WARNING: failed to write all sb data\n");
1569 fprintf(stderr
, "WARNING: failed to write sb: %m\n");
1573 int write_all_supers(struct btrfs_fs_info
*fs_info
)
1575 struct list_head
*head
= &fs_info
->fs_devices
->devices
;
1576 struct btrfs_device
*dev
;
1577 struct btrfs_super_block
*sb
;
1578 struct btrfs_dev_item
*dev_item
;
1582 sb
= fs_info
->super_copy
;
1583 dev_item
= &sb
->dev_item
;
1584 list_for_each_entry(dev
, head
, dev_list
) {
1585 if (!dev
->writeable
)
1588 btrfs_set_stack_device_generation(dev_item
, 0);
1589 btrfs_set_stack_device_type(dev_item
, dev
->type
);
1590 btrfs_set_stack_device_id(dev_item
, dev
->devid
);
1591 btrfs_set_stack_device_total_bytes(dev_item
, dev
->total_bytes
);
1592 btrfs_set_stack_device_bytes_used(dev_item
, dev
->bytes_used
);
1593 btrfs_set_stack_device_io_align(dev_item
, dev
->io_align
);
1594 btrfs_set_stack_device_io_width(dev_item
, dev
->io_width
);
1595 btrfs_set_stack_device_sector_size(dev_item
, dev
->sector_size
);
1596 memcpy(dev_item
->uuid
, dev
->uuid
, BTRFS_UUID_SIZE
);
1597 memcpy(dev_item
->fsid
, dev
->fs_devices
->fsid
, BTRFS_UUID_SIZE
);
1599 flags
= btrfs_super_flags(sb
);
1600 btrfs_set_super_flags(sb
, flags
| BTRFS_HEADER_FLAG_WRITTEN
);
1602 ret
= write_dev_supers(fs_info
, sb
, dev
);
1608 int write_ctree_super(struct btrfs_trans_handle
*trans
,
1609 struct btrfs_fs_info
*fs_info
)
1612 struct btrfs_root
*tree_root
= fs_info
->tree_root
;
1613 struct btrfs_root
*chunk_root
= fs_info
->chunk_root
;
1615 if (fs_info
->readonly
)
1618 btrfs_set_super_generation(fs_info
->super_copy
,
1620 btrfs_set_super_root(fs_info
->super_copy
,
1621 tree_root
->node
->start
);
1622 btrfs_set_super_root_level(fs_info
->super_copy
,
1623 btrfs_header_level(tree_root
->node
));
1624 btrfs_set_super_chunk_root(fs_info
->super_copy
,
1625 chunk_root
->node
->start
);
1626 btrfs_set_super_chunk_root_level(fs_info
->super_copy
,
1627 btrfs_header_level(chunk_root
->node
));
1628 btrfs_set_super_chunk_root_generation(fs_info
->super_copy
,
1629 btrfs_header_generation(chunk_root
->node
));
1631 ret
= write_all_supers(fs_info
);
1633 fprintf(stderr
, "failed to write new super block err %d\n", ret
);
1637 int close_ctree_fs_info(struct btrfs_fs_info
*fs_info
)
1641 struct btrfs_trans_handle
*trans
;
1642 struct btrfs_root
*root
= fs_info
->tree_root
;
1644 if (fs_info
->last_trans_committed
!=
1645 fs_info
->generation
) {
1647 trans
= btrfs_start_transaction(root
, 1);
1648 if (IS_ERR(trans
)) {
1649 err
= PTR_ERR(trans
);
1652 btrfs_commit_transaction(trans
, root
);
1653 trans
= btrfs_start_transaction(root
, 1);
1654 BUG_ON(IS_ERR(trans
));
1655 ret
= commit_tree_roots(trans
, fs_info
);
1657 ret
= __commit_transaction(trans
, root
);
1659 write_ctree_super(trans
, fs_info
);
1663 if (fs_info
->finalize_on_close
) {
1664 btrfs_set_super_magic(fs_info
->super_copy
, BTRFS_MAGIC
);
1665 root
->fs_info
->finalize_on_close
= 0;
1666 ret
= write_all_supers(fs_info
);
1669 "failed to write new super block err %d\n", ret
);
1673 btrfs_free_block_groups(fs_info
);
1675 free_fs_roots_tree(&fs_info
->fs_root_tree
);
1677 btrfs_release_all_roots(fs_info
);
1678 ret
= btrfs_close_devices(fs_info
->fs_devices
);
1679 btrfs_cleanup_all_caches(fs_info
);
1680 btrfs_free_fs_info(fs_info
);
1686 int clean_tree_block(struct btrfs_trans_handle
*trans
, struct btrfs_root
*root
,
1687 struct extent_buffer
*eb
)
1689 return clear_extent_buffer_dirty(eb
);
1692 void btrfs_mark_buffer_dirty(struct extent_buffer
*eb
)
1694 set_extent_buffer_dirty(eb
);
1697 int btrfs_buffer_uptodate(struct extent_buffer
*buf
, u64 parent_transid
)
1701 ret
= extent_buffer_uptodate(buf
);
1705 ret
= verify_parent_transid(buf
->tree
, buf
, parent_transid
, 1);
1709 int btrfs_set_buffer_uptodate(struct extent_buffer
*eb
)
1711 return set_extent_buffer_uptodate(eb
);