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 <uuid/uuid.h>
22 #include "kerncompat.h"
23 #include "radix-tree.h"
26 #include "print-tree.h"
30 static void print_dir_item_type(struct extent_buffer
*eb
,
31 struct btrfs_dir_item
*di
)
33 u8 type
= btrfs_dir_type(eb
, di
);
34 static const char* dir_item_str
[] = {
35 [BTRFS_FT_REG_FILE
] = "FILE",
36 [BTRFS_FT_DIR
] = "DIR",
37 [BTRFS_FT_CHRDEV
] = "CHRDEV",
38 [BTRFS_FT_BLKDEV
] = "BLKDEV",
39 [BTRFS_FT_FIFO
] = "FIFO",
40 [BTRFS_FT_SOCK
] = "SOCK",
41 [BTRFS_FT_SYMLINK
] = "SYMLINK",
42 [BTRFS_FT_XATTR
] = "XATTR"
45 if (type
< ARRAY_SIZE(dir_item_str
) && dir_item_str
[type
])
46 printf("%s", dir_item_str
[type
]);
48 printf("DIR_ITEM.%u", type
);
51 static void print_dir_item(struct extent_buffer
*eb
, u32 size
,
52 struct btrfs_dir_item
*di
)
58 char namebuf
[BTRFS_NAME_LEN
];
59 struct btrfs_disk_key location
;
62 btrfs_dir_item_key(eb
, di
, &location
);
63 printf("\t\tlocation ");
64 btrfs_print_key(&location
);
66 print_dir_item_type(eb
, di
);
68 name_len
= btrfs_dir_name_len(eb
, di
);
69 data_len
= btrfs_dir_data_len(eb
, di
);
70 len
= (name_len
<= sizeof(namebuf
))? name_len
: sizeof(namebuf
);
71 read_extent_buffer(eb
, namebuf
, (unsigned long)(di
+ 1), len
);
72 printf("\t\ttransid %llu data_len %u name_len %u\n",
73 btrfs_dir_transid(eb
, di
),
75 printf("\t\tname: %.*s\n", len
, namebuf
);
77 len
= (data_len
<= sizeof(namebuf
))? data_len
: sizeof(namebuf
);
78 read_extent_buffer(eb
, namebuf
,
79 (unsigned long)(di
+ 1) + name_len
, len
);
80 printf("\t\tdata %.*s\n", len
, namebuf
);
82 len
= sizeof(*di
) + name_len
+ data_len
;
83 di
= (struct btrfs_dir_item
*)((char *)di
+ len
);
88 static void print_inode_extref_item(struct extent_buffer
*eb
, u32 size
,
89 struct btrfs_inode_extref
*extref
)
96 char namebuf
[BTRFS_NAME_LEN
];
99 index
= btrfs_inode_extref_index(eb
, extref
);
100 name_len
= btrfs_inode_extref_name_len(eb
, extref
);
101 parent_objid
= btrfs_inode_extref_parent(eb
, extref
);
103 len
= (name_len
<= sizeof(namebuf
))? name_len
: sizeof(namebuf
);
105 read_extent_buffer(eb
, namebuf
, (unsigned long)(extref
->name
), len
);
107 printf("\t\tindex %llu parent %llu namelen %u name: %.*s\n",
108 (unsigned long long)index
,
109 (unsigned long long)parent_objid
,
110 name_len
, len
, namebuf
);
112 len
= sizeof(*extref
) + name_len
;
113 extref
= (struct btrfs_inode_extref
*)((char *)extref
+ len
);
118 static void print_inode_ref_item(struct extent_buffer
*eb
, u32 size
,
119 struct btrfs_inode_ref
*ref
)
125 char namebuf
[BTRFS_NAME_LEN
];
128 name_len
= btrfs_inode_ref_name_len(eb
, ref
);
129 index
= btrfs_inode_ref_index(eb
, ref
);
130 len
= (name_len
<= sizeof(namebuf
))? name_len
: sizeof(namebuf
);
131 read_extent_buffer(eb
, namebuf
, (unsigned long)(ref
+ 1), len
);
132 printf("\t\tindex %llu namelen %u name: %.*s\n",
133 (unsigned long long)index
, name_len
, len
, namebuf
);
134 len
= sizeof(*ref
) + name_len
;
135 ref
= (struct btrfs_inode_ref
*)((char *)ref
+ len
);
140 /* Caller should ensure sizeof(*ret)>=21 "DATA|METADATA|RAID10" */
141 static void bg_flags_to_str(u64 flags
, char *ret
)
145 if (flags
& BTRFS_BLOCK_GROUP_DATA
) {
149 if (flags
& BTRFS_BLOCK_GROUP_METADATA
) {
152 strcat(ret
, "METADATA");
154 if (flags
& BTRFS_BLOCK_GROUP_SYSTEM
) {
157 strcat(ret
, "SYSTEM");
159 switch (flags
& BTRFS_BLOCK_GROUP_PROFILE_MASK
) {
160 case BTRFS_BLOCK_GROUP_RAID0
:
161 strcat(ret
, "|RAID0");
163 case BTRFS_BLOCK_GROUP_RAID1
:
164 strcat(ret
, "|RAID1");
166 case BTRFS_BLOCK_GROUP_DUP
:
169 case BTRFS_BLOCK_GROUP_RAID10
:
170 strcat(ret
, "|RAID10");
172 case BTRFS_BLOCK_GROUP_RAID5
:
173 strcat(ret
, "|RAID5");
175 case BTRFS_BLOCK_GROUP_RAID6
:
176 strcat(ret
, "|RAID6");
183 /* Caller should ensure sizeof(*ret)>= 26 "OFF|SCANNING|INCONSISTENT" */
184 static void qgroup_flags_to_str(u64 flags
, char *ret
)
186 if (flags
& BTRFS_QGROUP_STATUS_FLAG_ON
)
191 if (flags
& BTRFS_QGROUP_STATUS_FLAG_RESCAN
)
192 strcat(ret
, "|SCANNING");
193 if (flags
& BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT
)
194 strcat(ret
, "|INCONSISTENT");
197 void print_chunk_item(struct extent_buffer
*eb
, struct btrfs_chunk
*chunk
)
199 u16 num_stripes
= btrfs_chunk_num_stripes(eb
, chunk
);
202 char chunk_flags_str
[32] = {0};
204 /* The chunk must contain at least one stripe */
205 if (num_stripes
< 1) {
206 printf("invalid num_stripes: %u\n", num_stripes
);
210 chunk_item_size
= btrfs_chunk_item_size(num_stripes
);
212 if ((unsigned long)chunk
+ chunk_item_size
> eb
->len
) {
213 printf("\t\tchunk item invalid\n");
217 bg_flags_to_str(btrfs_chunk_type(eb
, chunk
), chunk_flags_str
);
218 printf("\t\tlength %llu owner %llu stripe_len %llu type %s\n",
219 (unsigned long long)btrfs_chunk_length(eb
, chunk
),
220 (unsigned long long)btrfs_chunk_owner(eb
, chunk
),
221 (unsigned long long)btrfs_chunk_stripe_len(eb
, chunk
),
223 printf("\t\tio_align %u io_width %u sector_size %u\n",
224 btrfs_chunk_io_align(eb
, chunk
),
225 btrfs_chunk_io_width(eb
, chunk
),
226 btrfs_chunk_sector_size(eb
, chunk
));
227 printf("\t\tnum_stripes %hu sub_stripes %hu\n", num_stripes
,
228 btrfs_chunk_sub_stripes(eb
, chunk
));
229 for (i
= 0 ; i
< num_stripes
; i
++) {
230 unsigned char dev_uuid
[BTRFS_UUID_SIZE
];
231 char str_dev_uuid
[BTRFS_UUID_UNPARSED_SIZE
];
235 uuid_offset
= (unsigned long)btrfs_stripe_dev_uuid_nr(chunk
, i
);
236 stripe_offset
= (unsigned long)btrfs_stripe_nr(chunk
, i
);
238 if (uuid_offset
< stripe_offset
||
239 (uuid_offset
+ BTRFS_UUID_SIZE
) >
240 (stripe_offset
+ sizeof(struct btrfs_stripe
))) {
241 printf("\t\t\tstripe %d invalid\n", i
);
245 read_extent_buffer(eb
, dev_uuid
,
248 uuid_unparse(dev_uuid
, str_dev_uuid
);
249 printf("\t\t\tstripe %d devid %llu offset %llu\n", i
,
250 (unsigned long long)btrfs_stripe_devid_nr(eb
, chunk
, i
),
251 (unsigned long long)btrfs_stripe_offset_nr(eb
, chunk
, i
));
252 printf("\t\t\tdev_uuid %s\n", str_dev_uuid
);
256 static void print_dev_item(struct extent_buffer
*eb
,
257 struct btrfs_dev_item
*dev_item
)
259 char uuid_str
[BTRFS_UUID_UNPARSED_SIZE
];
260 char fsid_str
[BTRFS_UUID_UNPARSED_SIZE
];
261 u8 uuid
[BTRFS_UUID_SIZE
];
262 u8 fsid
[BTRFS_UUID_SIZE
];
264 read_extent_buffer(eb
, uuid
,
265 (unsigned long)btrfs_device_uuid(dev_item
),
267 uuid_unparse(uuid
, uuid_str
);
268 read_extent_buffer(eb
, fsid
,
269 (unsigned long)btrfs_device_fsid(dev_item
),
271 uuid_unparse(fsid
, fsid_str
);
272 printf("\t\tdevid %llu total_bytes %llu bytes_used %Lu\n"
273 "\t\tio_align %u io_width %u sector_size %u type %llu\n"
274 "\t\tgeneration %llu start_offset %llu dev_group %u\n"
275 "\t\tseek_speed %hhu bandwidth %hhu\n"
278 (unsigned long long)btrfs_device_id(eb
, dev_item
),
279 (unsigned long long)btrfs_device_total_bytes(eb
, dev_item
),
280 (unsigned long long)btrfs_device_bytes_used(eb
, dev_item
),
281 btrfs_device_io_align(eb
, dev_item
),
282 btrfs_device_io_width(eb
, dev_item
),
283 btrfs_device_sector_size(eb
, dev_item
),
284 (unsigned long long)btrfs_device_type(eb
, dev_item
),
285 (unsigned long long)btrfs_device_generation(eb
, dev_item
),
286 (unsigned long long)btrfs_device_start_offset(eb
, dev_item
),
287 btrfs_device_group(eb
, dev_item
),
288 btrfs_device_seek_speed(eb
, dev_item
),
289 btrfs_device_bandwidth(eb
, dev_item
),
293 static void print_uuids(struct extent_buffer
*eb
)
295 char fs_uuid
[BTRFS_UUID_UNPARSED_SIZE
];
296 char chunk_uuid
[BTRFS_UUID_UNPARSED_SIZE
];
297 u8 disk_uuid
[BTRFS_UUID_SIZE
];
299 read_extent_buffer(eb
, disk_uuid
, btrfs_header_fsid(),
302 fs_uuid
[BTRFS_UUID_UNPARSED_SIZE
- 1] = '\0';
303 uuid_unparse(disk_uuid
, fs_uuid
);
305 read_extent_buffer(eb
, disk_uuid
,
306 btrfs_header_chunk_tree_uuid(eb
),
309 chunk_uuid
[BTRFS_UUID_UNPARSED_SIZE
- 1] = '\0';
310 uuid_unparse(disk_uuid
, chunk_uuid
);
311 printf("fs uuid %s\nchunk uuid %s\n", fs_uuid
, chunk_uuid
);
314 static void compress_type_to_str(u8 compress_type
, char *ret
)
316 switch (compress_type
) {
317 case BTRFS_COMPRESS_NONE
:
320 case BTRFS_COMPRESS_ZLIB
:
323 case BTRFS_COMPRESS_LZO
:
326 case BTRFS_COMPRESS_ZSTD
:
330 sprintf(ret
, "UNKNOWN.%d", compress_type
);
334 static const char* file_extent_type_to_str(u8 type
)
337 case BTRFS_FILE_EXTENT_INLINE
: return "inline";
338 case BTRFS_FILE_EXTENT_PREALLOC
: return "prealloc";
339 case BTRFS_FILE_EXTENT_REG
: return "regular";
340 default: return "unknown";
344 static void print_file_extent_item(struct extent_buffer
*eb
,
345 struct btrfs_item
*item
,
347 struct btrfs_file_extent_item
*fi
)
349 unsigned char extent_type
= btrfs_file_extent_type(eb
, fi
);
350 char compress_str
[16];
352 compress_type_to_str(btrfs_file_extent_compression(eb
, fi
),
355 printf("\t\tgeneration %llu type %hhu (%s)\n",
356 btrfs_file_extent_generation(eb
, fi
),
357 extent_type
, file_extent_type_to_str(extent_type
));
359 if (extent_type
== BTRFS_FILE_EXTENT_INLINE
) {
360 printf("\t\tinline extent data size %u ram_bytes %u compression %hhu (%s)\n",
361 btrfs_file_extent_inline_item_len(eb
, item
),
362 btrfs_file_extent_inline_len(eb
, slot
, fi
),
363 btrfs_file_extent_compression(eb
, fi
),
367 if (extent_type
== BTRFS_FILE_EXTENT_PREALLOC
) {
368 printf("\t\tprealloc data disk byte %llu nr %llu\n",
369 (unsigned long long)btrfs_file_extent_disk_bytenr(eb
, fi
),
370 (unsigned long long)btrfs_file_extent_disk_num_bytes(eb
, fi
));
371 printf("\t\tprealloc data offset %llu nr %llu\n",
372 (unsigned long long)btrfs_file_extent_offset(eb
, fi
),
373 (unsigned long long)btrfs_file_extent_num_bytes(eb
, fi
));
376 printf("\t\textent data disk byte %llu nr %llu\n",
377 (unsigned long long)btrfs_file_extent_disk_bytenr(eb
, fi
),
378 (unsigned long long)btrfs_file_extent_disk_num_bytes(eb
, fi
));
379 printf("\t\textent data offset %llu nr %llu ram %llu\n",
380 (unsigned long long)btrfs_file_extent_offset(eb
, fi
),
381 (unsigned long long)btrfs_file_extent_num_bytes(eb
, fi
),
382 (unsigned long long)btrfs_file_extent_ram_bytes(eb
, fi
));
383 printf("\t\textent compression %hhu (%s)\n",
384 btrfs_file_extent_compression(eb
, fi
),
388 /* Caller should ensure sizeof(*ret) >= 16("DATA|TREE_BLOCK") */
389 static void extent_flags_to_str(u64 flags
, char *ret
)
393 if (flags
& BTRFS_EXTENT_FLAG_DATA
) {
397 if (flags
& BTRFS_EXTENT_FLAG_TREE_BLOCK
) {
402 strcat(ret
, "TREE_BLOCK");
404 if (flags
& BTRFS_BLOCK_FLAG_FULL_BACKREF
) {
406 strcat(ret
, "FULL_BACKREF");
410 void print_extent_item(struct extent_buffer
*eb
, int slot
, int metadata
)
412 struct btrfs_extent_item
*ei
;
413 struct btrfs_extent_inline_ref
*iref
;
414 struct btrfs_extent_data_ref
*dref
;
415 struct btrfs_shared_data_ref
*sref
;
416 struct btrfs_disk_key key
;
420 u32 item_size
= btrfs_item_size_nr(eb
, slot
);
423 char flags_str
[32] = {0};
425 if (item_size
< sizeof(*ei
)) {
426 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
427 struct btrfs_extent_item_v0
*ei0
;
428 BUG_ON(item_size
!= sizeof(*ei0
));
429 ei0
= btrfs_item_ptr(eb
, slot
, struct btrfs_extent_item_v0
);
430 printf("\t\trefs %u\n",
431 btrfs_extent_refs_v0(eb
, ei0
));
438 ei
= btrfs_item_ptr(eb
, slot
, struct btrfs_extent_item
);
439 flags
= btrfs_extent_flags(eb
, ei
);
440 extent_flags_to_str(flags
, flags_str
);
442 printf("\t\trefs %llu gen %llu flags %s\n",
443 (unsigned long long)btrfs_extent_refs(eb
, ei
),
444 (unsigned long long)btrfs_extent_generation(eb
, ei
),
447 if (flags
& BTRFS_EXTENT_FLAG_TREE_BLOCK
&& !metadata
) {
448 struct btrfs_tree_block_info
*info
;
449 info
= (struct btrfs_tree_block_info
*)(ei
+ 1);
450 btrfs_tree_block_key(eb
, info
, &key
);
451 printf("\t\ttree block ");
452 btrfs_print_key(&key
);
453 printf(" level %d\n", btrfs_tree_block_level(eb
, info
));
454 iref
= (struct btrfs_extent_inline_ref
*)(info
+ 1);
455 } else if (metadata
) {
456 struct btrfs_key tmp
;
458 btrfs_item_key_to_cpu(eb
, &tmp
, slot
);
459 printf("\t\ttree block skinny level %d\n", (int)tmp
.offset
);
460 iref
= (struct btrfs_extent_inline_ref
*)(ei
+ 1);
462 iref
= (struct btrfs_extent_inline_ref
*)(ei
+ 1);
465 ptr
= (unsigned long)iref
;
466 end
= (unsigned long)ei
+ item_size
;
468 iref
= (struct btrfs_extent_inline_ref
*)ptr
;
469 type
= btrfs_extent_inline_ref_type(eb
, iref
);
470 offset
= btrfs_extent_inline_ref_offset(eb
, iref
);
472 case BTRFS_TREE_BLOCK_REF_KEY
:
473 printf("\t\ttree block backref root %llu\n",
474 (unsigned long long)offset
);
476 case BTRFS_SHARED_BLOCK_REF_KEY
:
477 printf("\t\tshared block backref parent %llu\n",
478 (unsigned long long)offset
);
480 case BTRFS_EXTENT_DATA_REF_KEY
:
481 dref
= (struct btrfs_extent_data_ref
*)(&iref
->offset
);
482 printf("\t\textent data backref root %llu "
483 "objectid %llu offset %llu count %u\n",
484 (unsigned long long)btrfs_extent_data_ref_root(eb
, dref
),
485 (unsigned long long)btrfs_extent_data_ref_objectid(eb
, dref
),
486 (unsigned long long)btrfs_extent_data_ref_offset(eb
, dref
),
487 btrfs_extent_data_ref_count(eb
, dref
));
489 case BTRFS_SHARED_DATA_REF_KEY
:
490 sref
= (struct btrfs_shared_data_ref
*)(iref
+ 1);
491 printf("\t\tshared data backref parent %llu count %u\n",
492 (unsigned long long)offset
,
493 btrfs_shared_data_ref_count(eb
, sref
));
498 ptr
+= btrfs_extent_inline_ref_size(type
);
503 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
504 static void print_extent_ref_v0(struct extent_buffer
*eb
, int slot
)
506 struct btrfs_extent_ref_v0
*ref0
;
508 ref0
= btrfs_item_ptr(eb
, slot
, struct btrfs_extent_ref_v0
);
509 printf("\t\textent back ref root %llu gen %llu "
510 "owner %llu num_refs %lu\n",
511 (unsigned long long)btrfs_ref_root_v0(eb
, ref0
),
512 (unsigned long long)btrfs_ref_generation_v0(eb
, ref0
),
513 (unsigned long long)btrfs_ref_objectid_v0(eb
, ref0
),
514 (unsigned long)btrfs_ref_count_v0(eb
, ref0
));
518 static void print_root_ref(struct extent_buffer
*leaf
, int slot
, const char *tag
)
520 struct btrfs_root_ref
*ref
;
521 char namebuf
[BTRFS_NAME_LEN
];
524 ref
= btrfs_item_ptr(leaf
, slot
, struct btrfs_root_ref
);
525 namelen
= btrfs_root_ref_name_len(leaf
, ref
);
526 read_extent_buffer(leaf
, namebuf
, (unsigned long)(ref
+ 1), namelen
);
527 printf("\t\troot %s key dirid %llu sequence %llu name %.*s\n", tag
,
528 (unsigned long long)btrfs_root_ref_dirid(leaf
, ref
),
529 (unsigned long long)btrfs_root_ref_sequence(leaf
, ref
),
533 static int empty_uuid(const u8
*uuid
)
537 for (i
= 0; i
< BTRFS_UUID_SIZE
; i
++)
544 * Caller must ensure sizeof(*ret) >= 7 "RDONLY"
546 static void root_flags_to_str(u64 flags
, char *ret
)
548 if (flags
& BTRFS_ROOT_SUBVOL_RDONLY
)
549 strcat(ret
, "RDONLY");
554 static void print_timespec(struct extent_buffer
*eb
,
555 struct btrfs_timespec
*timespec
, const char *prefix
,
564 tmp_u64
= btrfs_timespec_sec(eb
, timespec
);
565 tmp_u32
= btrfs_timespec_nsec(eb
, timespec
);
567 localtime_r(&tmp_time
, &tm
);
568 strftime(timestamp
, sizeof(timestamp
),
569 "%Y-%m-%d %H:%M:%S", &tm
);
570 printf("%s%llu.%u (%s)%s", prefix
, (unsigned long long)tmp_u64
, tmp_u32
,
574 static void print_root_item(struct extent_buffer
*leaf
, int slot
)
576 struct btrfs_root_item
*ri
;
577 struct btrfs_root_item root_item
;
579 char uuid_str
[BTRFS_UUID_UNPARSED_SIZE
];
580 char flags_str
[32] = {0};
581 struct btrfs_key drop_key
;
583 ri
= btrfs_item_ptr(leaf
, slot
, struct btrfs_root_item
);
584 len
= btrfs_item_size_nr(leaf
, slot
);
586 memset(&root_item
, 0, sizeof(root_item
));
587 read_extent_buffer(leaf
, &root_item
, (unsigned long)ri
, len
);
588 root_flags_to_str(btrfs_root_flags(&root_item
), flags_str
);
590 printf("\t\tgeneration %llu root_dirid %llu bytenr %llu level %hhu refs %u\n",
591 (unsigned long long)btrfs_root_generation(&root_item
),
592 (unsigned long long)btrfs_root_dirid(&root_item
),
593 (unsigned long long)btrfs_root_bytenr(&root_item
),
594 btrfs_root_level(&root_item
),
595 btrfs_root_refs(&root_item
));
596 printf("\t\tlastsnap %llu byte_limit %llu bytes_used %llu flags 0x%llx(%s)\n",
597 (unsigned long long)btrfs_root_last_snapshot(&root_item
),
598 (unsigned long long)btrfs_root_limit(&root_item
),
599 (unsigned long long)btrfs_root_used(&root_item
),
600 (unsigned long long)btrfs_root_flags(&root_item
),
603 if (root_item
.generation
== root_item
.generation_v2
) {
604 uuid_unparse(root_item
.uuid
, uuid_str
);
605 printf("\t\tuuid %s\n", uuid_str
);
606 if (!empty_uuid(root_item
.parent_uuid
)) {
607 uuid_unparse(root_item
.parent_uuid
, uuid_str
);
608 printf("\t\tparent_uuid %s\n", uuid_str
);
610 if (!empty_uuid(root_item
.received_uuid
)) {
611 uuid_unparse(root_item
.received_uuid
, uuid_str
);
612 printf("\t\treceived_uuid %s\n", uuid_str
);
614 if (root_item
.ctransid
) {
615 printf("\t\tctransid %llu otransid %llu stransid %llu rtransid %llu\n",
616 btrfs_root_ctransid(&root_item
),
617 btrfs_root_otransid(&root_item
),
618 btrfs_root_stransid(&root_item
),
619 btrfs_root_rtransid(&root_item
));
621 if (btrfs_timespec_sec(leaf
, btrfs_root_ctime(ri
)))
622 print_timespec(leaf
, btrfs_root_ctime(ri
),
624 if (btrfs_timespec_sec(leaf
, btrfs_root_otime(ri
)))
625 print_timespec(leaf
, btrfs_root_otime(ri
),
627 if (btrfs_timespec_sec(leaf
, btrfs_root_stime(ri
)))
628 print_timespec(leaf
, btrfs_root_stime(ri
),
630 if (btrfs_timespec_sec(leaf
, btrfs_root_rtime(ri
)))
631 print_timespec(leaf
, btrfs_root_rtime(ri
),
635 btrfs_disk_key_to_cpu(&drop_key
, &root_item
.drop_progress
);
637 btrfs_print_key(&root_item
.drop_progress
);
638 printf(" level %hhu\n", root_item
.drop_level
);
641 static void print_free_space_header(struct extent_buffer
*leaf
, int slot
)
643 struct btrfs_free_space_header
*header
;
644 struct btrfs_disk_key location
;
646 header
= btrfs_item_ptr(leaf
, slot
, struct btrfs_free_space_header
);
647 btrfs_free_space_key(leaf
, header
, &location
);
648 printf("\t\tlocation ");
649 btrfs_print_key(&location
);
651 printf("\t\tcache generation %llu entries %llu bitmaps %llu\n",
652 (unsigned long long)btrfs_free_space_generation(leaf
, header
),
653 (unsigned long long)btrfs_free_space_entries(leaf
, header
),
654 (unsigned long long)btrfs_free_space_bitmaps(leaf
, header
));
657 void print_key_type(FILE *stream
, u64 objectid
, u8 type
)
659 static const char* key_to_str
[256] = {
660 [BTRFS_INODE_ITEM_KEY
] = "INODE_ITEM",
661 [BTRFS_INODE_REF_KEY
] = "INODE_REF",
662 [BTRFS_INODE_EXTREF_KEY
] = "INODE_EXTREF",
663 [BTRFS_DIR_ITEM_KEY
] = "DIR_ITEM",
664 [BTRFS_DIR_INDEX_KEY
] = "DIR_INDEX",
665 [BTRFS_DIR_LOG_ITEM_KEY
] = "DIR_LOG_ITEM",
666 [BTRFS_DIR_LOG_INDEX_KEY
] = "DIR_LOG_INDEX",
667 [BTRFS_XATTR_ITEM_KEY
] = "XATTR_ITEM",
668 [BTRFS_ORPHAN_ITEM_KEY
] = "ORPHAN_ITEM",
669 [BTRFS_ROOT_ITEM_KEY
] = "ROOT_ITEM",
670 [BTRFS_ROOT_REF_KEY
] = "ROOT_REF",
671 [BTRFS_ROOT_BACKREF_KEY
] = "ROOT_BACKREF",
672 [BTRFS_EXTENT_ITEM_KEY
] = "EXTENT_ITEM",
673 [BTRFS_METADATA_ITEM_KEY
] = "METADATA_ITEM",
674 [BTRFS_TREE_BLOCK_REF_KEY
] = "TREE_BLOCK_REF",
675 [BTRFS_SHARED_BLOCK_REF_KEY
] = "SHARED_BLOCK_REF",
676 [BTRFS_EXTENT_DATA_REF_KEY
] = "EXTENT_DATA_REF",
677 [BTRFS_SHARED_DATA_REF_KEY
] = "SHARED_DATA_REF",
678 [BTRFS_EXTENT_REF_V0_KEY
] = "EXTENT_REF_V0",
679 [BTRFS_CSUM_ITEM_KEY
] = "CSUM_ITEM",
680 [BTRFS_EXTENT_CSUM_KEY
] = "EXTENT_CSUM",
681 [BTRFS_EXTENT_DATA_KEY
] = "EXTENT_DATA",
682 [BTRFS_BLOCK_GROUP_ITEM_KEY
] = "BLOCK_GROUP_ITEM",
683 [BTRFS_FREE_SPACE_INFO_KEY
] = "FREE_SPACE_INFO",
684 [BTRFS_FREE_SPACE_EXTENT_KEY
] = "FREE_SPACE_EXTENT",
685 [BTRFS_FREE_SPACE_BITMAP_KEY
] = "FREE_SPACE_BITMAP",
686 [BTRFS_CHUNK_ITEM_KEY
] = "CHUNK_ITEM",
687 [BTRFS_DEV_ITEM_KEY
] = "DEV_ITEM",
688 [BTRFS_DEV_EXTENT_KEY
] = "DEV_EXTENT",
689 [BTRFS_TEMPORARY_ITEM_KEY
] = "TEMPORARY_ITEM",
690 [BTRFS_DEV_REPLACE_KEY
] = "DEV_REPLACE",
691 [BTRFS_STRING_ITEM_KEY
] = "STRING_ITEM",
692 [BTRFS_QGROUP_STATUS_KEY
] = "QGROUP_STATUS",
693 [BTRFS_QGROUP_RELATION_KEY
] = "QGROUP_RELATION",
694 [BTRFS_QGROUP_INFO_KEY
] = "QGROUP_INFO",
695 [BTRFS_QGROUP_LIMIT_KEY
] = "QGROUP_LIMIT",
696 [BTRFS_PERSISTENT_ITEM_KEY
] = "PERSISTENT_ITEM",
697 [BTRFS_UUID_KEY_SUBVOL
] = "UUID_KEY_SUBVOL",
698 [BTRFS_UUID_KEY_RECEIVED_SUBVOL
] = "UUID_KEY_RECEIVED_SUBVOL",
701 if (type
== 0 && objectid
== BTRFS_FREE_SPACE_OBJECTID
) {
702 fprintf(stream
, "UNTYPED");
707 if (key_to_str
[type
])
708 fputs(key_to_str
[type
], stream
);
710 fprintf(stream
, "UNKNOWN.%d", type
);
713 void print_objectid(FILE *stream
, u64 objectid
, u8 type
)
716 case BTRFS_DEV_EXTENT_KEY
:
718 fprintf(stream
, "%llu", (unsigned long long)objectid
);
720 case BTRFS_QGROUP_RELATION_KEY
:
721 fprintf(stream
, "%llu/%llu", btrfs_qgroup_level(objectid
),
722 btrfs_qgroup_subvid(objectid
));
724 case BTRFS_UUID_KEY_SUBVOL
:
725 case BTRFS_UUID_KEY_RECEIVED_SUBVOL
:
726 fprintf(stream
, "0x%016llx", (unsigned long long)objectid
);
731 case BTRFS_ROOT_TREE_OBJECTID
:
732 if (type
== BTRFS_DEV_ITEM_KEY
)
733 fprintf(stream
, "DEV_ITEMS");
735 fprintf(stream
, "ROOT_TREE");
737 case BTRFS_EXTENT_TREE_OBJECTID
:
738 fprintf(stream
, "EXTENT_TREE");
740 case BTRFS_CHUNK_TREE_OBJECTID
:
741 fprintf(stream
, "CHUNK_TREE");
743 case BTRFS_DEV_TREE_OBJECTID
:
744 fprintf(stream
, "DEV_TREE");
746 case BTRFS_FS_TREE_OBJECTID
:
747 fprintf(stream
, "FS_TREE");
749 case BTRFS_ROOT_TREE_DIR_OBJECTID
:
750 fprintf(stream
, "ROOT_TREE_DIR");
752 case BTRFS_CSUM_TREE_OBJECTID
:
753 fprintf(stream
, "CSUM_TREE");
755 case BTRFS_BALANCE_OBJECTID
:
756 fprintf(stream
, "BALANCE");
758 case BTRFS_ORPHAN_OBJECTID
:
759 fprintf(stream
, "ORPHAN");
761 case BTRFS_TREE_LOG_OBJECTID
:
762 fprintf(stream
, "TREE_LOG");
764 case BTRFS_TREE_LOG_FIXUP_OBJECTID
:
765 fprintf(stream
, "LOG_FIXUP");
767 case BTRFS_TREE_RELOC_OBJECTID
:
768 fprintf(stream
, "TREE_RELOC");
770 case BTRFS_DATA_RELOC_TREE_OBJECTID
:
771 fprintf(stream
, "DATA_RELOC_TREE");
773 case BTRFS_EXTENT_CSUM_OBJECTID
:
774 fprintf(stream
, "EXTENT_CSUM");
776 case BTRFS_FREE_SPACE_OBJECTID
:
777 fprintf(stream
, "FREE_SPACE");
779 case BTRFS_FREE_INO_OBJECTID
:
780 fprintf(stream
, "FREE_INO");
782 case BTRFS_QUOTA_TREE_OBJECTID
:
783 fprintf(stream
, "QUOTA_TREE");
785 case BTRFS_UUID_TREE_OBJECTID
:
786 fprintf(stream
, "UUID_TREE");
788 case BTRFS_FREE_SPACE_TREE_OBJECTID
:
789 fprintf(stream
, "FREE_SPACE_TREE");
791 case BTRFS_MULTIPLE_OBJECTIDS
:
792 fprintf(stream
, "MULTIPLE");
795 fprintf(stream
, "-1");
797 case BTRFS_FIRST_CHUNK_TREE_OBJECTID
:
798 if (type
== BTRFS_CHUNK_ITEM_KEY
) {
799 fprintf(stream
, "FIRST_CHUNK_TREE");
804 fprintf(stream
, "%llu", (unsigned long long)objectid
);
808 void btrfs_print_key(struct btrfs_disk_key
*disk_key
)
810 u64 objectid
= btrfs_disk_key_objectid(disk_key
);
811 u8 type
= btrfs_disk_key_type(disk_key
);
812 u64 offset
= btrfs_disk_key_offset(disk_key
);
815 print_objectid(stdout
, objectid
, type
);
817 print_key_type(stdout
, objectid
, type
);
819 case BTRFS_QGROUP_RELATION_KEY
:
820 case BTRFS_QGROUP_INFO_KEY
:
821 case BTRFS_QGROUP_LIMIT_KEY
:
822 printf(" %llu/%llu)", btrfs_qgroup_level(offset
),
823 btrfs_qgroup_subvid(offset
));
825 case BTRFS_UUID_KEY_SUBVOL
:
826 case BTRFS_UUID_KEY_RECEIVED_SUBVOL
:
827 printf(" 0x%016llx)", (unsigned long long)offset
);
831 * Key offsets of ROOT_ITEM point to tree root, print them in human
832 * readable format. Especially useful for trees like data/tree reloc
833 * tree, whose tree id can be negative.
835 case BTRFS_ROOT_ITEM_KEY
:
838 * Normally offset of ROOT_ITEM should present the generation
839 * of creation time of the root.
840 * However if this is reloc tree, offset is the subvolume
841 * id of its source. Here we do extra check on this.
843 if (objectid
== BTRFS_TREE_RELOC_OBJECTID
)
844 print_objectid(stdout
, offset
, type
);
846 printf("%lld", offset
);
850 if (offset
== (u64
)-1)
853 printf(" %llu)", (unsigned long long)offset
);
858 static void print_uuid_item(struct extent_buffer
*l
, unsigned long offset
,
861 if (item_size
& (sizeof(u64
) - 1)) {
862 printf("btrfs: uuid item with illegal size %lu!\n",
863 (unsigned long)item_size
);
869 read_extent_buffer(l
, &subvol_id
, offset
, sizeof(u64
));
870 printf("\t\tsubvol_id %llu\n",
871 (unsigned long long)le64_to_cpu(subvol_id
));
872 item_size
-= sizeof(u64
);
873 offset
+= sizeof(u64
);
877 /* Btrfs inode flag stringification helper */
878 #define STRCAT_ONE_INODE_FLAG(flags, name, empty, dst) ({ \
879 if (flags & BTRFS_INODE_##name) { \
882 strcat(dst, #name); \
888 * Caller should ensure sizeof(*ret) >= 102: all charactors plus '|' of
889 * BTRFS_INODE_* flags
891 static void inode_flags_to_str(u64 flags
, char *ret
)
895 STRCAT_ONE_INODE_FLAG(flags
, NODATASUM
, empty
, ret
);
896 STRCAT_ONE_INODE_FLAG(flags
, NODATACOW
, empty
, ret
);
897 STRCAT_ONE_INODE_FLAG(flags
, READONLY
, empty
, ret
);
898 STRCAT_ONE_INODE_FLAG(flags
, NOCOMPRESS
, empty
, ret
);
899 STRCAT_ONE_INODE_FLAG(flags
, PREALLOC
, empty
, ret
);
900 STRCAT_ONE_INODE_FLAG(flags
, SYNC
, empty
, ret
);
901 STRCAT_ONE_INODE_FLAG(flags
, IMMUTABLE
, empty
, ret
);
902 STRCAT_ONE_INODE_FLAG(flags
, APPEND
, empty
, ret
);
903 STRCAT_ONE_INODE_FLAG(flags
, NODUMP
, empty
, ret
);
904 STRCAT_ONE_INODE_FLAG(flags
, NOATIME
, empty
, ret
);
905 STRCAT_ONE_INODE_FLAG(flags
, DIRSYNC
, empty
, ret
);
906 STRCAT_ONE_INODE_FLAG(flags
, COMPRESS
, empty
, ret
);
911 static void print_inode_item(struct extent_buffer
*eb
,
912 struct btrfs_inode_item
*ii
)
916 memset(flags_str
, 0, sizeof(flags_str
));
917 inode_flags_to_str(btrfs_inode_flags(eb
, ii
), flags_str
);
918 printf("\t\tgeneration %llu transid %llu size %llu nbytes %llu\n"
919 "\t\tblock group %llu mode %o links %u uid %u gid %u rdev %llu\n"
920 "\t\tsequence %llu flags 0x%llx(%s)\n",
921 (unsigned long long)btrfs_inode_generation(eb
, ii
),
922 (unsigned long long)btrfs_inode_transid(eb
, ii
),
923 (unsigned long long)btrfs_inode_size(eb
, ii
),
924 (unsigned long long)btrfs_inode_nbytes(eb
, ii
),
925 (unsigned long long)btrfs_inode_block_group(eb
,ii
),
926 btrfs_inode_mode(eb
, ii
),
927 btrfs_inode_nlink(eb
, ii
),
928 btrfs_inode_uid(eb
, ii
),
929 btrfs_inode_gid(eb
, ii
),
930 (unsigned long long)btrfs_inode_rdev(eb
,ii
),
931 (unsigned long long)btrfs_inode_sequence(eb
, ii
),
932 (unsigned long long)btrfs_inode_flags(eb
,ii
),
934 print_timespec(eb
, btrfs_inode_atime(ii
), "\t\tatime ", "\n");
935 print_timespec(eb
, btrfs_inode_ctime(ii
), "\t\tctime ", "\n");
936 print_timespec(eb
, btrfs_inode_mtime(ii
), "\t\tmtime ", "\n");
937 print_timespec(eb
, btrfs_inode_otime(ii
), "\t\totime ", "\n");
940 static void print_disk_balance_args(struct btrfs_disk_balance_args
*ba
)
942 printf("\t\tprofiles %llu devid %llu target %llu flags %llu\n",
943 (unsigned long long)le64_to_cpu(ba
->profiles
),
944 (unsigned long long)le64_to_cpu(ba
->devid
),
945 (unsigned long long)le64_to_cpu(ba
->target
),
946 (unsigned long long)le64_to_cpu(ba
->flags
));
947 printf("\t\tusage_min %u usage_max %u pstart %llu pend %llu\n",
948 le32_to_cpu(ba
->usage_min
),
949 le32_to_cpu(ba
->usage_max
),
950 (unsigned long long)le64_to_cpu(ba
->pstart
),
951 (unsigned long long)le64_to_cpu(ba
->pend
));
952 printf("\t\tvstart %llu vend %llu limit_min %u limit_max %u\n",
953 (unsigned long long)le64_to_cpu(ba
->vstart
),
954 (unsigned long long)le64_to_cpu(ba
->vend
),
955 le32_to_cpu(ba
->limit_min
),
956 le32_to_cpu(ba
->limit_max
));
957 printf("\t\tstripes_min %u stripes_max %u\n",
958 le32_to_cpu(ba
->stripes_min
),
959 le32_to_cpu(ba
->stripes_max
));
962 static void print_balance_item(struct extent_buffer
*eb
,
963 struct btrfs_balance_item
*bi
)
965 printf("\t\tbalance status flags %llu\n",
966 btrfs_balance_item_flags(eb
, bi
));
968 printf("\t\tDATA\n");
969 print_disk_balance_args(btrfs_balance_item_data(eb
, bi
));
970 printf("\t\tMETADATA\n");
971 print_disk_balance_args(btrfs_balance_item_meta(eb
, bi
));
972 printf("\t\tSYSTEM\n");
973 print_disk_balance_args(btrfs_balance_item_sys(eb
, bi
));
976 static void print_dev_stats(struct extent_buffer
*eb
,
977 struct btrfs_dev_stats_item
*stats
, u32 size
)
980 u32 known
= BTRFS_DEV_STAT_VALUES_MAX
* sizeof(__le64
);
981 __le64
*values
= btrfs_dev_stats_values(eb
, stats
);
983 printf("\t\tdevice stats\n");
984 printf("\t\twrite_errs %llu read_errs %llu flush_errs %llu corruption_errs %llu generation %llu\n",
985 (unsigned long long)le64_to_cpu(values
[BTRFS_DEV_STAT_WRITE_ERRS
]),
986 (unsigned long long)le64_to_cpu(values
[BTRFS_DEV_STAT_READ_ERRS
]),
987 (unsigned long long)le64_to_cpu(values
[BTRFS_DEV_STAT_FLUSH_ERRS
]),
988 (unsigned long long)le64_to_cpu(values
[BTRFS_DEV_STAT_CORRUPTION_ERRS
]),
989 (unsigned long long)le64_to_cpu(values
[BTRFS_DEV_STAT_GENERATION_ERRS
]));
992 printf("\t\tunknown stats item bytes %u", size
- known
);
993 for (i
= BTRFS_DEV_STAT_VALUES_MAX
; i
* sizeof(__le64
) < size
; i
++) {
994 printf("\t\tunknown item %u offset %zu value %llu\n",
995 i
, i
* sizeof(__le64
),
996 (unsigned long long)le64_to_cpu(values
[i
]));
1001 static void print_block_group_item(struct extent_buffer
*eb
,
1002 struct btrfs_block_group_item
*bgi
)
1004 struct btrfs_block_group_item bg_item
;
1005 char flags_str
[256];
1007 read_extent_buffer(eb
, &bg_item
, (unsigned long)bgi
, sizeof(bg_item
));
1008 memset(flags_str
, 0, sizeof(flags_str
));
1009 bg_flags_to_str(btrfs_block_group_flags(&bg_item
), flags_str
);
1010 printf("\t\tblock group used %llu chunk_objectid %llu flags %s\n",
1011 (unsigned long long)btrfs_block_group_used(&bg_item
),
1012 (unsigned long long)btrfs_block_group_chunk_objectid(&bg_item
),
1016 static void print_extent_data_ref(struct extent_buffer
*eb
, int slot
)
1018 struct btrfs_extent_data_ref
*dref
;
1020 dref
= btrfs_item_ptr(eb
, slot
, struct btrfs_extent_data_ref
);
1021 printf("\t\textent data backref root %llu "
1022 "objectid %llu offset %llu count %u\n",
1023 (unsigned long long)btrfs_extent_data_ref_root(eb
, dref
),
1024 (unsigned long long)btrfs_extent_data_ref_objectid(eb
, dref
),
1025 (unsigned long long)btrfs_extent_data_ref_offset(eb
, dref
),
1026 btrfs_extent_data_ref_count(eb
, dref
));
1029 static void print_shared_data_ref(struct extent_buffer
*eb
, int slot
)
1031 struct btrfs_shared_data_ref
*sref
;
1033 sref
= btrfs_item_ptr(eb
, slot
, struct btrfs_shared_data_ref
);
1034 printf("\t\tshared data backref count %u\n",
1035 btrfs_shared_data_ref_count(eb
, sref
));
1038 static void print_free_space_info(struct extent_buffer
*eb
, int slot
)
1040 struct btrfs_free_space_info
*free_info
;
1042 free_info
= btrfs_item_ptr(eb
, slot
, struct btrfs_free_space_info
);
1043 printf("\t\tfree space info extent count %u flags %u\n",
1044 (unsigned)btrfs_free_space_extent_count(eb
, free_info
),
1045 (unsigned)btrfs_free_space_flags(eb
, free_info
));
1048 static void print_dev_extent(struct extent_buffer
*eb
, int slot
)
1050 struct btrfs_dev_extent
*dev_extent
;
1051 u8 uuid
[BTRFS_UUID_SIZE
];
1052 char uuid_str
[BTRFS_UUID_UNPARSED_SIZE
];
1054 dev_extent
= btrfs_item_ptr(eb
, slot
, struct btrfs_dev_extent
);
1055 read_extent_buffer(eb
, uuid
,
1056 (unsigned long)btrfs_dev_extent_chunk_tree_uuid(dev_extent
),
1058 uuid_unparse(uuid
, uuid_str
);
1059 printf("\t\tdev extent chunk_tree %llu\n"
1060 "\t\tchunk_objectid %llu chunk_offset %llu "
1062 "\t\tchunk_tree_uuid %s\n",
1063 (unsigned long long)btrfs_dev_extent_chunk_tree(eb
, dev_extent
),
1064 (unsigned long long)btrfs_dev_extent_chunk_objectid(eb
, dev_extent
),
1065 (unsigned long long)btrfs_dev_extent_chunk_offset(eb
, dev_extent
),
1066 (unsigned long long)btrfs_dev_extent_length(eb
, dev_extent
),
1070 static void print_qgroup_status(struct extent_buffer
*eb
, int slot
)
1072 struct btrfs_qgroup_status_item
*qg_status
;
1073 char flags_str
[256];
1075 qg_status
= btrfs_item_ptr(eb
, slot
, struct btrfs_qgroup_status_item
);
1076 memset(flags_str
, 0, sizeof(flags_str
));
1077 qgroup_flags_to_str(btrfs_qgroup_status_flags(eb
, qg_status
),
1079 printf("\t\tversion %llu generation %llu flags %s scan %lld\n",
1080 (unsigned long long)btrfs_qgroup_status_version(eb
, qg_status
),
1081 (unsigned long long)btrfs_qgroup_status_generation(eb
, qg_status
),
1083 (unsigned long long)btrfs_qgroup_status_rescan(eb
, qg_status
));
1086 static void print_qgroup_info(struct extent_buffer
*eb
, int slot
)
1088 struct btrfs_qgroup_info_item
*qg_info
;
1090 qg_info
= btrfs_item_ptr(eb
, slot
, struct btrfs_qgroup_info_item
);
1091 printf("\t\tgeneration %llu\n"
1092 "\t\treferenced %llu referenced_compressed %llu\n"
1093 "\t\texclusive %llu exclusive_compressed %llu\n",
1094 (unsigned long long)btrfs_qgroup_info_generation(eb
, qg_info
),
1095 (unsigned long long)btrfs_qgroup_info_referenced(eb
, qg_info
),
1096 (unsigned long long)btrfs_qgroup_info_referenced_compressed(eb
,
1098 (unsigned long long)btrfs_qgroup_info_exclusive(eb
, qg_info
),
1099 (unsigned long long)btrfs_qgroup_info_exclusive_compressed(eb
,
1103 static void print_qgroup_limit(struct extent_buffer
*eb
, int slot
)
1105 struct btrfs_qgroup_limit_item
*qg_limit
;
1107 qg_limit
= btrfs_item_ptr(eb
, slot
, struct btrfs_qgroup_limit_item
);
1108 printf("\t\tflags %llx\n"
1109 "\t\tmax_referenced %lld max_exclusive %lld\n"
1110 "\t\trsv_referenced %lld rsv_exclusive %lld\n",
1111 (unsigned long long)btrfs_qgroup_limit_flags(eb
, qg_limit
),
1112 (long long)btrfs_qgroup_limit_max_referenced(eb
, qg_limit
),
1113 (long long)btrfs_qgroup_limit_max_exclusive(eb
, qg_limit
),
1114 (long long)btrfs_qgroup_limit_rsv_referenced(eb
, qg_limit
),
1115 (long long)btrfs_qgroup_limit_rsv_exclusive(eb
, qg_limit
));
1118 static void print_persistent_item(struct extent_buffer
*eb
, void *ptr
,
1119 u32 item_size
, u64 objectid
, u64 offset
)
1121 printf("\t\tpersistent item objectid ");
1122 print_objectid(stdout
, objectid
, BTRFS_PERSISTENT_ITEM_KEY
);
1123 printf(" offset %llu\n", (unsigned long long)offset
);
1125 case BTRFS_DEV_STATS_OBJECTID
:
1126 print_dev_stats(eb
, ptr
, item_size
);
1129 printf("\t\tunknown persistent item objectid %llu\n", objectid
);
1133 static void print_temporary_item(struct extent_buffer
*eb
, void *ptr
,
1134 u64 objectid
, u64 offset
)
1136 printf("\t\ttemporary item objectid ");
1137 print_objectid(stdout
, objectid
, BTRFS_TEMPORARY_ITEM_KEY
);
1138 printf(" offset %llu\n", (unsigned long long)offset
);
1140 case BTRFS_BALANCE_OBJECTID
:
1141 print_balance_item(eb
, ptr
);
1144 printf("\t\tunknown temporary item objectid %llu\n", objectid
);
1148 static void print_extent_csum(struct extent_buffer
*eb
,
1149 struct btrfs_fs_info
*fs_info
, u32 item_size
, u64 start
)
1154 * If we don't have fs_info, only output its start position as we
1155 * don't have sectorsize for the calculation
1158 printf("\t\trange start %llu\n", (unsigned long long)start
);
1161 size
= (item_size
/ btrfs_super_csum_size(fs_info
->super_copy
)) *
1162 fs_info
->sectorsize
;
1163 printf("\t\trange start %llu end %llu length %u\n",
1164 (unsigned long long)start
,
1165 (unsigned long long)start
+ size
, size
);
1168 /* Caller must ensure sizeof(*ret) >= 14 "WRITTEN|RELOC" */
1169 static void header_flags_to_str(u64 flags
, char *ret
)
1173 if (flags
& BTRFS_HEADER_FLAG_WRITTEN
) {
1175 strcpy(ret
, "WRITTEN");
1177 if (flags
& BTRFS_HEADER_FLAG_RELOC
) {
1180 strcat(ret
, "RELOC");
1184 void btrfs_print_leaf(struct extent_buffer
*eb
)
1186 struct btrfs_fs_info
*fs_info
= eb
->fs_info
;
1187 struct btrfs_item
*item
;
1188 struct btrfs_disk_key disk_key
;
1189 char flags_str
[128];
1190 u32 leaf_data_size
= BTRFS_LEAF_DATA_SIZE(fs_info
);
1196 flags
= btrfs_header_flags(eb
) & ~BTRFS_BACKREF_REV_MASK
;
1197 backref_rev
= btrfs_header_flags(eb
) >> BTRFS_BACKREF_REV_SHIFT
;
1198 header_flags_to_str(flags
, flags_str
);
1199 nr
= btrfs_header_nritems(eb
);
1201 printf("leaf %llu items %d free space %d generation %llu owner ",
1202 (unsigned long long)btrfs_header_bytenr(eb
), nr
,
1203 btrfs_leaf_free_space(eb
),
1204 (unsigned long long)btrfs_header_generation(eb
));
1205 print_objectid(stdout
, btrfs_header_owner(eb
), 0);
1207 printf("leaf %llu flags 0x%llx(%s) backref revision %d\n",
1208 btrfs_header_bytenr(eb
), flags
, flags_str
, backref_rev
);
1212 for (i
= 0; i
< nr
; i
++) {
1220 * Extra check on item pointers
1221 * Here we don't need to be as strict as kernel leaf check.
1222 * Only need to ensure all pointers are pointing range inside
1223 * the leaf, thus no segfault.
1225 if (btrfs_item_offset_nr(eb
, i
) > leaf_data_size
||
1226 btrfs_item_size_nr(eb
, i
) + btrfs_item_offset_nr(eb
, i
) >
1229 "leaf %llu slot %u pointer invalid, offset %u size %u leaf data limit %u",
1230 btrfs_header_bytenr(eb
), i
,
1231 btrfs_item_offset_nr(eb
, i
),
1232 btrfs_item_size_nr(eb
, i
), leaf_data_size
);
1233 error("skip remaining slots");
1236 item
= btrfs_item_nr(i
);
1237 item_size
= btrfs_item_size(eb
, item
);
1238 /* Untyped extraction of slot from btrfs_item_ptr */
1239 ptr
= btrfs_item_ptr(eb
, i
, void*);
1241 btrfs_item_key(eb
, &disk_key
, i
);
1242 objectid
= btrfs_disk_key_objectid(&disk_key
);
1243 type
= btrfs_disk_key_type(&disk_key
);
1244 offset
= btrfs_disk_key_offset(&disk_key
);
1246 printf("\titem %d ", i
);
1247 btrfs_print_key(&disk_key
);
1248 printf(" itemoff %d itemsize %d\n",
1249 btrfs_item_offset(eb
, item
),
1250 btrfs_item_size(eb
, item
));
1252 if (type
== 0 && objectid
== BTRFS_FREE_SPACE_OBJECTID
)
1253 print_free_space_header(eb
, i
);
1256 case BTRFS_INODE_ITEM_KEY
:
1257 print_inode_item(eb
, ptr
);
1259 case BTRFS_INODE_REF_KEY
:
1260 print_inode_ref_item(eb
, item_size
, ptr
);
1262 case BTRFS_INODE_EXTREF_KEY
:
1263 print_inode_extref_item(eb
, item_size
, ptr
);
1265 case BTRFS_DIR_ITEM_KEY
:
1266 case BTRFS_DIR_INDEX_KEY
:
1267 case BTRFS_XATTR_ITEM_KEY
:
1268 print_dir_item(eb
, item_size
, ptr
);
1270 case BTRFS_DIR_LOG_INDEX_KEY
:
1271 case BTRFS_DIR_LOG_ITEM_KEY
: {
1272 struct btrfs_dir_log_item
*dlog
;
1274 dlog
= btrfs_item_ptr(eb
, i
, struct btrfs_dir_log_item
);
1275 printf("\t\tdir log end %Lu\n",
1276 (unsigned long long)btrfs_dir_log_end(eb
, dlog
));
1279 case BTRFS_ORPHAN_ITEM_KEY
:
1280 printf("\t\torphan item\n");
1282 case BTRFS_ROOT_ITEM_KEY
:
1283 print_root_item(eb
, i
);
1285 case BTRFS_ROOT_REF_KEY
:
1286 print_root_ref(eb
, i
, "ref");
1288 case BTRFS_ROOT_BACKREF_KEY
:
1289 print_root_ref(eb
, i
, "backref");
1291 case BTRFS_EXTENT_ITEM_KEY
:
1292 print_extent_item(eb
, i
, 0);
1294 case BTRFS_METADATA_ITEM_KEY
:
1295 print_extent_item(eb
, i
, 1);
1297 case BTRFS_TREE_BLOCK_REF_KEY
:
1298 printf("\t\ttree block backref\n");
1300 case BTRFS_SHARED_BLOCK_REF_KEY
:
1301 printf("\t\tshared block backref\n");
1303 case BTRFS_EXTENT_DATA_REF_KEY
:
1304 print_extent_data_ref(eb
, i
);
1306 case BTRFS_SHARED_DATA_REF_KEY
:
1307 print_shared_data_ref(eb
, i
);
1309 case BTRFS_EXTENT_REF_V0_KEY
:
1310 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1311 print_extent_ref_v0(eb
, i
);
1316 case BTRFS_CSUM_ITEM_KEY
:
1317 printf("\t\tcsum item\n");
1319 case BTRFS_EXTENT_CSUM_KEY
:
1320 print_extent_csum(eb
, fs_info
, item_size
,
1323 case BTRFS_EXTENT_DATA_KEY
:
1324 print_file_extent_item(eb
, item
, i
, ptr
);
1326 case BTRFS_BLOCK_GROUP_ITEM_KEY
:
1327 print_block_group_item(eb
, ptr
);
1329 case BTRFS_FREE_SPACE_INFO_KEY
:
1330 print_free_space_info(eb
, i
);
1332 case BTRFS_FREE_SPACE_EXTENT_KEY
:
1333 printf("\t\tfree space extent\n");
1335 case BTRFS_FREE_SPACE_BITMAP_KEY
:
1336 printf("\t\tfree space bitmap\n");
1338 case BTRFS_CHUNK_ITEM_KEY
:
1339 print_chunk_item(eb
, ptr
);
1341 case BTRFS_DEV_ITEM_KEY
:
1342 print_dev_item(eb
, ptr
);
1344 case BTRFS_DEV_EXTENT_KEY
:
1345 print_dev_extent(eb
, i
);
1347 case BTRFS_QGROUP_STATUS_KEY
:
1348 print_qgroup_status(eb
, i
);
1350 case BTRFS_QGROUP_RELATION_KEY
:
1352 case BTRFS_QGROUP_INFO_KEY
:
1353 print_qgroup_info(eb
, i
);
1355 case BTRFS_QGROUP_LIMIT_KEY
:
1356 print_qgroup_limit(eb
, i
);
1358 case BTRFS_UUID_KEY_SUBVOL
:
1359 case BTRFS_UUID_KEY_RECEIVED_SUBVOL
:
1360 print_uuid_item(eb
, btrfs_item_ptr_offset(eb
, i
),
1361 btrfs_item_size_nr(eb
, i
));
1363 case BTRFS_STRING_ITEM_KEY
: {
1364 const char *str
= eb
->data
+ btrfs_item_ptr_offset(eb
, i
);
1366 printf("\t\titem data %.*s\n", item_size
, str
);
1369 case BTRFS_PERSISTENT_ITEM_KEY
:
1370 print_persistent_item(eb
, ptr
, item_size
, objectid
,
1373 case BTRFS_TEMPORARY_ITEM_KEY
:
1374 print_temporary_item(eb
, ptr
, objectid
, offset
);
1381 void btrfs_print_tree(struct extent_buffer
*eb
, int follow
)
1385 struct btrfs_fs_info
*fs_info
= eb
->fs_info
;
1386 struct btrfs_disk_key disk_key
;
1387 struct btrfs_key key
;
1388 struct extent_buffer
*next
;
1392 nr
= btrfs_header_nritems(eb
);
1393 if (btrfs_is_leaf(eb
)) {
1394 btrfs_print_leaf(eb
);
1397 printf("node %llu level %d items %d free %u generation %llu owner ",
1398 (unsigned long long)eb
->start
,
1399 btrfs_header_level(eb
), nr
,
1400 (u32
)BTRFS_NODEPTRS_PER_EXTENT_BUFFER(eb
) - nr
,
1401 (unsigned long long)btrfs_header_generation(eb
));
1402 print_objectid(stdout
, btrfs_header_owner(eb
), 0);
1406 for (i
= 0; i
< nr
; i
++) {
1407 u64 blocknr
= btrfs_node_blockptr(eb
, i
);
1408 btrfs_node_key(eb
, &disk_key
, i
);
1409 btrfs_disk_key_to_cpu(&key
, &disk_key
);
1411 btrfs_print_key(&disk_key
);
1412 printf(" block %llu (%llu) gen %llu\n",
1413 (unsigned long long)blocknr
,
1414 (unsigned long long)blocknr
/ eb
->len
,
1415 (unsigned long long)btrfs_node_ptr_generation(eb
, i
));
1421 if (follow
&& !fs_info
)
1424 for (i
= 0; i
< nr
; i
++) {
1425 next
= read_tree_block(fs_info
,
1426 btrfs_node_blockptr(eb
, i
),
1427 btrfs_node_ptr_generation(eb
, i
));
1428 if (!extent_buffer_uptodate(next
)) {
1429 fprintf(stderr
, "failed to read %llu in tree %llu\n",
1430 (unsigned long long)btrfs_node_blockptr(eb
, i
),
1431 (unsigned long long)btrfs_header_owner(eb
));
1434 if (btrfs_header_level(next
) != btrfs_header_level(eb
) - 1) {
1436 "eb corrupted: parent bytenr %llu slot %d level %d child bytenr %llu level has %d expect %d, skipping the slot",
1437 btrfs_header_bytenr(eb
), i
,
1438 btrfs_header_level(eb
),
1439 btrfs_header_bytenr(next
),
1440 btrfs_header_level(next
),
1441 btrfs_header_level(eb
) - 1);
1442 free_extent_buffer(next
);
1445 btrfs_print_tree(next
, 1);
1446 free_extent_buffer(next
);
1451 free_extent_buffer(next
);