1
2#ifndef _BTRFS_CTREE_H_
3#define _BTRFS_CTREE_H_
4
5#include <linux/btrfs.h>
6#include <linux/types.h>
7#ifdef __KERNEL__
8#include <linux/stddef.h>
9#else
10#include <stddef.h>
11#endif
12
13
14
15
16
17
18
19
20
21#define BTRFS_ROOT_TREE_OBJECTID 1ULL
22
23
24#define BTRFS_EXTENT_TREE_OBJECTID 2ULL
25
26
27
28
29
30#define BTRFS_CHUNK_TREE_OBJECTID 3ULL
31
32
33
34
35
36#define BTRFS_DEV_TREE_OBJECTID 4ULL
37
38
39#define BTRFS_FS_TREE_OBJECTID 5ULL
40
41
42#define BTRFS_ROOT_TREE_DIR_OBJECTID 6ULL
43
44
45#define BTRFS_CSUM_TREE_OBJECTID 7ULL
46
47
48#define BTRFS_QUOTA_TREE_OBJECTID 8ULL
49
50
51#define BTRFS_UUID_TREE_OBJECTID 9ULL
52
53
54#define BTRFS_FREE_SPACE_TREE_OBJECTID 10ULL
55
56
57#define BTRFS_DEV_STATS_OBJECTID 0ULL
58
59
60#define BTRFS_BALANCE_OBJECTID -4ULL
61
62
63#define BTRFS_ORPHAN_OBJECTID -5ULL
64
65
66#define BTRFS_TREE_LOG_OBJECTID -6ULL
67#define BTRFS_TREE_LOG_FIXUP_OBJECTID -7ULL
68
69
70#define BTRFS_TREE_RELOC_OBJECTID -8ULL
71#define BTRFS_DATA_RELOC_TREE_OBJECTID -9ULL
72
73
74
75
76
77
78#define BTRFS_EXTENT_CSUM_OBJECTID -10ULL
79
80
81#define BTRFS_FREE_SPACE_OBJECTID -11ULL
82
83
84
85
86
87#define BTRFS_FREE_INO_OBJECTID -12ULL
88
89
90#define BTRFS_MULTIPLE_OBJECTIDS -255ULL
91
92
93
94
95#define BTRFS_FIRST_FREE_OBJECTID 256ULL
96#define BTRFS_LAST_FREE_OBJECTID -256ULL
97#define BTRFS_FIRST_CHUNK_TREE_OBJECTID 256ULL
98
99
100
101
102
103
104#define BTRFS_DEV_ITEMS_OBJECTID 1ULL
105
106#define BTRFS_BTREE_INODE_OBJECTID 1
107
108#define BTRFS_EMPTY_SUBVOL_DIR_OBJECTID 2
109
110#define BTRFS_DEV_REPLACE_DEVID 0ULL
111
112
113
114
115
116
117#define BTRFS_INODE_ITEM_KEY 1
118#define BTRFS_INODE_REF_KEY 12
119#define BTRFS_INODE_EXTREF_KEY 13
120#define BTRFS_XATTR_ITEM_KEY 24
121#define BTRFS_ORPHAN_ITEM_KEY 48
122
123
124
125
126
127
128#define BTRFS_DIR_LOG_ITEM_KEY 60
129#define BTRFS_DIR_LOG_INDEX_KEY 72
130#define BTRFS_DIR_ITEM_KEY 84
131#define BTRFS_DIR_INDEX_KEY 96
132
133
134
135#define BTRFS_EXTENT_DATA_KEY 108
136
137
138
139
140
141#define BTRFS_EXTENT_CSUM_KEY 128
142
143
144
145
146
147#define BTRFS_ROOT_ITEM_KEY 132
148
149
150
151
152
153#define BTRFS_ROOT_BACKREF_KEY 144
154
155
156
157
158
159
160#define BTRFS_ROOT_REF_KEY 156
161
162
163
164
165
166#define BTRFS_EXTENT_ITEM_KEY 168
167
168
169
170
171
172#define BTRFS_METADATA_ITEM_KEY 169
173
174#define BTRFS_TREE_BLOCK_REF_KEY 176
175
176#define BTRFS_EXTENT_DATA_REF_KEY 178
177
178#define BTRFS_EXTENT_REF_V0_KEY 180
179
180#define BTRFS_SHARED_BLOCK_REF_KEY 182
181
182#define BTRFS_SHARED_DATA_REF_KEY 184
183
184
185
186
187
188#define BTRFS_BLOCK_GROUP_ITEM_KEY 192
189
190
191
192
193
194
195#define BTRFS_FREE_SPACE_INFO_KEY 198
196
197
198
199
200
201#define BTRFS_FREE_SPACE_EXTENT_KEY 199
202
203
204
205
206
207
208
209#define BTRFS_FREE_SPACE_BITMAP_KEY 200
210
211#define BTRFS_DEV_EXTENT_KEY 204
212#define BTRFS_DEV_ITEM_KEY 216
213#define BTRFS_CHUNK_ITEM_KEY 228
214
215
216
217
218
219
220#define BTRFS_QGROUP_STATUS_KEY 240
221
222
223
224
225#define BTRFS_QGROUP_INFO_KEY 242
226
227
228
229
230#define BTRFS_QGROUP_LIMIT_KEY 244
231
232
233
234
235
236
237#define BTRFS_QGROUP_RELATION_KEY 246
238
239
240
241
242#define BTRFS_BALANCE_ITEM_KEY 248
243
244
245
246
247
248
249
250
251
252
253
254
255#define BTRFS_TEMPORARY_ITEM_KEY 248
256
257
258
259
260#define BTRFS_DEV_STATS_KEY 249
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275#define BTRFS_PERSISTENT_ITEM_KEY 249
276
277
278
279
280
281#define BTRFS_DEV_REPLACE_KEY 250
282
283
284
285
286
287
288
289#if BTRFS_UUID_SIZE != 16
290#error "UUID items require BTRFS_UUID_SIZE == 16!"
291#endif
292#define BTRFS_UUID_KEY_SUBVOL 251
293#define BTRFS_UUID_KEY_RECEIVED_SUBVOL 252
294
295
296
297
298
299
300#define BTRFS_STRING_ITEM_KEY 253
301
302
303
304
305#define BTRFS_CSUM_SIZE 32
306
307
308enum btrfs_csum_type {
309 BTRFS_CSUM_TYPE_CRC32 = 0,
310 BTRFS_CSUM_TYPE_XXHASH = 1,
311 BTRFS_CSUM_TYPE_SHA256 = 2,
312 BTRFS_CSUM_TYPE_BLAKE2 = 3,
313};
314
315
316
317
318
319
320
321
322
323#define BTRFS_FT_UNKNOWN 0
324#define BTRFS_FT_REG_FILE 1
325#define BTRFS_FT_DIR 2
326#define BTRFS_FT_CHRDEV 3
327#define BTRFS_FT_BLKDEV 4
328#define BTRFS_FT_FIFO 5
329#define BTRFS_FT_SOCK 6
330#define BTRFS_FT_SYMLINK 7
331#define BTRFS_FT_XATTR 8
332#define BTRFS_FT_MAX 9
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351struct btrfs_disk_key {
352 __le64 objectid;
353 __u8 type;
354 __le64 offset;
355} __attribute__ ((__packed__));
356
357struct btrfs_key {
358 __u64 objectid;
359 __u8 type;
360 __u64 offset;
361} __attribute__ ((__packed__));
362
363struct btrfs_dev_item {
364
365 __le64 devid;
366
367
368 __le64 total_bytes;
369
370
371 __le64 bytes_used;
372
373
374 __le32 io_align;
375
376
377 __le32 io_width;
378
379
380 __le32 sector_size;
381
382
383 __le64 type;
384
385
386 __le64 generation;
387
388
389
390
391
392 __le64 start_offset;
393
394
395 __le32 dev_group;
396
397
398 __u8 seek_speed;
399
400
401 __u8 bandwidth;
402
403
404 __u8 uuid[BTRFS_UUID_SIZE];
405
406
407 __u8 fsid[BTRFS_UUID_SIZE];
408} __attribute__ ((__packed__));
409
410struct btrfs_stripe {
411 __le64 devid;
412 __le64 offset;
413 __u8 dev_uuid[BTRFS_UUID_SIZE];
414} __attribute__ ((__packed__));
415
416struct btrfs_chunk {
417
418 __le64 length;
419
420
421 __le64 owner;
422
423 __le64 stripe_len;
424 __le64 type;
425
426
427 __le32 io_align;
428
429
430 __le32 io_width;
431
432
433 __le32 sector_size;
434
435
436
437
438 __le16 num_stripes;
439
440
441 __le16 sub_stripes;
442 struct btrfs_stripe stripe;
443
444} __attribute__ ((__packed__));
445
446#define BTRFS_FREE_SPACE_EXTENT 1
447#define BTRFS_FREE_SPACE_BITMAP 2
448
449struct btrfs_free_space_entry {
450 __le64 offset;
451 __le64 bytes;
452 __u8 type;
453} __attribute__ ((__packed__));
454
455struct btrfs_free_space_header {
456 struct btrfs_disk_key location;
457 __le64 generation;
458 __le64 num_entries;
459 __le64 num_bitmaps;
460} __attribute__ ((__packed__));
461
462#define BTRFS_HEADER_FLAG_WRITTEN (1ULL << 0)
463#define BTRFS_HEADER_FLAG_RELOC (1ULL << 1)
464
465
466
467#define BTRFS_SUPER_FLAG_ERROR (1ULL << 2)
468
469#define BTRFS_SUPER_FLAG_SEEDING (1ULL << 32)
470#define BTRFS_SUPER_FLAG_METADUMP (1ULL << 33)
471#define BTRFS_SUPER_FLAG_METADUMP_V2 (1ULL << 34)
472#define BTRFS_SUPER_FLAG_CHANGING_FSID (1ULL << 35)
473#define BTRFS_SUPER_FLAG_CHANGING_FSID_V2 (1ULL << 36)
474
475
476
477
478
479
480
481struct btrfs_extent_item {
482 __le64 refs;
483 __le64 generation;
484 __le64 flags;
485} __attribute__ ((__packed__));
486
487struct btrfs_extent_item_v0 {
488 __le32 refs;
489} __attribute__ ((__packed__));
490
491
492#define BTRFS_EXTENT_FLAG_DATA (1ULL << 0)
493#define BTRFS_EXTENT_FLAG_TREE_BLOCK (1ULL << 1)
494
495
496
497
498#define BTRFS_BLOCK_FLAG_FULL_BACKREF (1ULL << 8)
499
500
501
502
503
504#define BTRFS_EXTENT_FLAG_SUPER (1ULL << 48)
505
506struct btrfs_tree_block_info {
507 struct btrfs_disk_key key;
508 __u8 level;
509} __attribute__ ((__packed__));
510
511struct btrfs_extent_data_ref {
512 __le64 root;
513 __le64 objectid;
514 __le64 offset;
515 __le32 count;
516} __attribute__ ((__packed__));
517
518struct btrfs_shared_data_ref {
519 __le32 count;
520} __attribute__ ((__packed__));
521
522struct btrfs_extent_inline_ref {
523 __u8 type;
524 __le64 offset;
525} __attribute__ ((__packed__));
526
527
528
529
530
531struct btrfs_dev_extent {
532 __le64 chunk_tree;
533 __le64 chunk_objectid;
534 __le64 chunk_offset;
535 __le64 length;
536 __u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
537} __attribute__ ((__packed__));
538
539struct btrfs_inode_ref {
540 __le64 index;
541 __le16 name_len;
542
543} __attribute__ ((__packed__));
544
545struct btrfs_inode_extref {
546 __le64 parent_objectid;
547 __le64 index;
548 __le16 name_len;
549 __u8 name[0];
550
551} __attribute__ ((__packed__));
552
553struct btrfs_timespec {
554 __le64 sec;
555 __le32 nsec;
556} __attribute__ ((__packed__));
557
558struct btrfs_inode_item {
559
560 __le64 generation;
561
562 __le64 transid;
563 __le64 size;
564 __le64 nbytes;
565 __le64 block_group;
566 __le32 nlink;
567 __le32 uid;
568 __le32 gid;
569 __le32 mode;
570 __le64 rdev;
571 __le64 flags;
572
573
574 __le64 sequence;
575
576
577
578
579
580 __le64 reserved[4];
581 struct btrfs_timespec atime;
582 struct btrfs_timespec ctime;
583 struct btrfs_timespec mtime;
584 struct btrfs_timespec otime;
585} __attribute__ ((__packed__));
586
587struct btrfs_dir_log_item {
588 __le64 end;
589} __attribute__ ((__packed__));
590
591struct btrfs_dir_item {
592 struct btrfs_disk_key location;
593 __le64 transid;
594 __le16 data_len;
595 __le16 name_len;
596 __u8 type;
597} __attribute__ ((__packed__));
598
599#define BTRFS_ROOT_SUBVOL_RDONLY (1ULL << 0)
600
601
602
603
604
605#define BTRFS_ROOT_SUBVOL_DEAD (1ULL << 48)
606
607struct btrfs_root_item {
608 struct btrfs_inode_item inode;
609 __le64 generation;
610 __le64 root_dirid;
611 __le64 bytenr;
612 __le64 byte_limit;
613 __le64 bytes_used;
614 __le64 last_snapshot;
615 __le64 flags;
616 __le32 refs;
617 struct btrfs_disk_key drop_progress;
618 __u8 drop_level;
619 __u8 level;
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637 __le64 generation_v2;
638 __u8 uuid[BTRFS_UUID_SIZE];
639 __u8 parent_uuid[BTRFS_UUID_SIZE];
640 __u8 received_uuid[BTRFS_UUID_SIZE];
641 __le64 ctransid;
642 __le64 otransid;
643 __le64 stransid;
644 __le64 rtransid;
645 struct btrfs_timespec ctime;
646 struct btrfs_timespec otime;
647 struct btrfs_timespec stime;
648 struct btrfs_timespec rtime;
649 __le64 reserved[8];
650} __attribute__ ((__packed__));
651
652
653
654
655
656static inline __u32 btrfs_legacy_root_item_size(void)
657{
658 return offsetof(struct btrfs_root_item, generation_v2);
659}
660
661
662
663
664struct btrfs_root_ref {
665 __le64 dirid;
666 __le64 sequence;
667 __le16 name_len;
668} __attribute__ ((__packed__));
669
670struct btrfs_disk_balance_args {
671
672
673
674
675 __le64 profiles;
676
677
678
679
680
681
682 union {
683 __le64 usage;
684 struct {
685 __le32 usage_min;
686 __le32 usage_max;
687 };
688 };
689
690
691 __le64 devid;
692
693
694 __le64 pstart;
695 __le64 pend;
696
697
698 __le64 vstart;
699 __le64 vend;
700
701
702
703
704
705 __le64 target;
706
707
708 __le64 flags;
709
710
711
712
713
714
715 union {
716 __le64 limit;
717 struct {
718 __le32 limit_min;
719 __le32 limit_max;
720 };
721 };
722
723
724
725
726
727 __le32 stripes_min;
728 __le32 stripes_max;
729
730 __le64 unused[6];
731} __attribute__ ((__packed__));
732
733
734
735
736
737struct btrfs_balance_item {
738
739 __le64 flags;
740
741 struct btrfs_disk_balance_args data;
742 struct btrfs_disk_balance_args meta;
743 struct btrfs_disk_balance_args sys;
744
745 __le64 unused[4];
746} __attribute__ ((__packed__));
747
748enum {
749 BTRFS_FILE_EXTENT_INLINE = 0,
750 BTRFS_FILE_EXTENT_REG = 1,
751 BTRFS_FILE_EXTENT_PREALLOC = 2,
752 BTRFS_NR_FILE_EXTENT_TYPES = 3,
753};
754
755struct btrfs_file_extent_item {
756
757
758
759 __le64 generation;
760
761
762
763
764
765
766
767 __le64 ram_bytes;
768
769
770
771
772
773
774
775
776 __u8 compression;
777 __u8 encryption;
778 __le16 other_encoding;
779
780
781 __u8 type;
782
783
784
785
786
787
788
789 __le64 disk_bytenr;
790 __le64 disk_num_bytes;
791
792
793
794
795
796
797
798 __le64 offset;
799
800
801
802
803 __le64 num_bytes;
804
805} __attribute__ ((__packed__));
806
807struct btrfs_csum_item {
808 __u8 csum;
809} __attribute__ ((__packed__));
810
811struct btrfs_dev_stats_item {
812
813
814
815
816 __le64 values[BTRFS_DEV_STAT_VALUES_MAX];
817} __attribute__ ((__packed__));
818
819#define BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_ALWAYS 0
820#define BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID 1
821
822struct btrfs_dev_replace_item {
823
824
825
826
827 __le64 src_devid;
828 __le64 cursor_left;
829 __le64 cursor_right;
830 __le64 cont_reading_from_srcdev_mode;
831
832 __le64 replace_state;
833 __le64 time_started;
834 __le64 time_stopped;
835 __le64 num_write_errors;
836 __le64 num_uncorrectable_read_errors;
837} __attribute__ ((__packed__));
838
839
840#define BTRFS_BLOCK_GROUP_DATA (1ULL << 0)
841#define BTRFS_BLOCK_GROUP_SYSTEM (1ULL << 1)
842#define BTRFS_BLOCK_GROUP_METADATA (1ULL << 2)
843#define BTRFS_BLOCK_GROUP_RAID0 (1ULL << 3)
844#define BTRFS_BLOCK_GROUP_RAID1 (1ULL << 4)
845#define BTRFS_BLOCK_GROUP_DUP (1ULL << 5)
846#define BTRFS_BLOCK_GROUP_RAID10 (1ULL << 6)
847#define BTRFS_BLOCK_GROUP_RAID5 (1ULL << 7)
848#define BTRFS_BLOCK_GROUP_RAID6 (1ULL << 8)
849#define BTRFS_BLOCK_GROUP_RAID1C3 (1ULL << 9)
850#define BTRFS_BLOCK_GROUP_RAID1C4 (1ULL << 10)
851#define BTRFS_BLOCK_GROUP_RESERVED (BTRFS_AVAIL_ALLOC_BIT_SINGLE | \
852 BTRFS_SPACE_INFO_GLOBAL_RSV)
853
854enum btrfs_raid_types {
855 BTRFS_RAID_RAID10,
856 BTRFS_RAID_RAID1,
857 BTRFS_RAID_DUP,
858 BTRFS_RAID_RAID0,
859 BTRFS_RAID_SINGLE,
860 BTRFS_RAID_RAID5,
861 BTRFS_RAID_RAID6,
862 BTRFS_RAID_RAID1C3,
863 BTRFS_RAID_RAID1C4,
864 BTRFS_NR_RAID_TYPES
865};
866
867#define BTRFS_BLOCK_GROUP_TYPE_MASK (BTRFS_BLOCK_GROUP_DATA | \
868 BTRFS_BLOCK_GROUP_SYSTEM | \
869 BTRFS_BLOCK_GROUP_METADATA)
870
871#define BTRFS_BLOCK_GROUP_PROFILE_MASK (BTRFS_BLOCK_GROUP_RAID0 | \
872 BTRFS_BLOCK_GROUP_RAID1 | \
873 BTRFS_BLOCK_GROUP_RAID1C3 | \
874 BTRFS_BLOCK_GROUP_RAID1C4 | \
875 BTRFS_BLOCK_GROUP_RAID5 | \
876 BTRFS_BLOCK_GROUP_RAID6 | \
877 BTRFS_BLOCK_GROUP_DUP | \
878 BTRFS_BLOCK_GROUP_RAID10)
879#define BTRFS_BLOCK_GROUP_RAID56_MASK (BTRFS_BLOCK_GROUP_RAID5 | \
880 BTRFS_BLOCK_GROUP_RAID6)
881
882#define BTRFS_BLOCK_GROUP_RAID1_MASK (BTRFS_BLOCK_GROUP_RAID1 | \
883 BTRFS_BLOCK_GROUP_RAID1C3 | \
884 BTRFS_BLOCK_GROUP_RAID1C4)
885
886
887
888
889
890
891
892
893#define BTRFS_AVAIL_ALLOC_BIT_SINGLE (1ULL << 48)
894
895
896
897
898
899#define BTRFS_SPACE_INFO_GLOBAL_RSV (1ULL << 49)
900
901#define BTRFS_EXTENDED_PROFILE_MASK (BTRFS_BLOCK_GROUP_PROFILE_MASK | \
902 BTRFS_AVAIL_ALLOC_BIT_SINGLE)
903
904static inline __u64 chunk_to_extended(__u64 flags)
905{
906 if ((flags & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0)
907 flags |= BTRFS_AVAIL_ALLOC_BIT_SINGLE;
908
909 return flags;
910}
911static inline __u64 extended_to_chunk(__u64 flags)
912{
913 return flags & ~BTRFS_AVAIL_ALLOC_BIT_SINGLE;
914}
915
916struct btrfs_block_group_item {
917 __le64 used;
918 __le64 chunk_objectid;
919 __le64 flags;
920} __attribute__ ((__packed__));
921
922struct btrfs_free_space_info {
923 __le32 extent_count;
924 __le32 flags;
925} __attribute__ ((__packed__));
926
927#define BTRFS_FREE_SPACE_USING_BITMAPS (1ULL << 0)
928
929#define BTRFS_QGROUP_LEVEL_SHIFT 48
930static inline __u16 btrfs_qgroup_level(__u64 qgroupid)
931{
932 return (__u16)(qgroupid >> BTRFS_QGROUP_LEVEL_SHIFT);
933}
934
935
936
937
938#define BTRFS_QGROUP_STATUS_FLAG_ON (1ULL << 0)
939
940
941
942#define BTRFS_QGROUP_STATUS_FLAG_RESCAN (1ULL << 1)
943
944
945
946
947
948
949
950#define BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT (1ULL << 2)
951
952#define BTRFS_QGROUP_STATUS_VERSION 1
953
954struct btrfs_qgroup_status_item {
955 __le64 version;
956
957
958
959
960
961
962 __le64 generation;
963
964
965 __le64 flags;
966
967
968
969
970
971 __le64 rescan;
972} __attribute__ ((__packed__));
973
974struct btrfs_qgroup_info_item {
975 __le64 generation;
976 __le64 rfer;
977 __le64 rfer_cmpr;
978 __le64 excl;
979 __le64 excl_cmpr;
980} __attribute__ ((__packed__));
981
982struct btrfs_qgroup_limit_item {
983
984
985
986 __le64 flags;
987 __le64 max_rfer;
988 __le64 max_excl;
989 __le64 rsv_rfer;
990 __le64 rsv_excl;
991} __attribute__ ((__packed__));
992
993#endif
994