btrfs: add xxhash64 to checksumming algorithms
[linux-2.6-block.git] / include / uapi / linux / btrfs_tree.h
CommitLineData
6f52b16c 1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
db671160
JM
2#ifndef _BTRFS_CTREE_H_
3#define _BTRFS_CTREE_H_
4
3a4e7f56 5#include <linux/btrfs.h>
9078b4ee
ND
6#include <linux/types.h>
7
db671160
JM
8/*
9 * This header contains the structure definitions and constants used
10 * by file system objects that can be retrieved using
11 * the BTRFS_IOC_SEARCH_TREE ioctl. That means basically anything that
12 * is needed to describe a leaf node's key or item contents.
13 */
14
15/* holds pointers to all of the tree roots */
16#define BTRFS_ROOT_TREE_OBJECTID 1ULL
17
18/* stores information about which extents are in use, and reference counts */
19#define BTRFS_EXTENT_TREE_OBJECTID 2ULL
20
21/*
22 * chunk tree stores translations from logical -> physical block numbering
23 * the super block points to the chunk tree
24 */
25#define BTRFS_CHUNK_TREE_OBJECTID 3ULL
26
27/*
28 * stores information about which areas of a given device are in use.
29 * one per device. The tree of tree roots points to the device tree
30 */
31#define BTRFS_DEV_TREE_OBJECTID 4ULL
32
33/* one per subvolume, storing files and directories */
34#define BTRFS_FS_TREE_OBJECTID 5ULL
35
36/* directory objectid inside the root tree */
37#define BTRFS_ROOT_TREE_DIR_OBJECTID 6ULL
38
39/* holds checksums of all the data extents */
40#define BTRFS_CSUM_TREE_OBJECTID 7ULL
41
42/* holds quota configuration and tracking */
43#define BTRFS_QUOTA_TREE_OBJECTID 8ULL
44
45/* for storing items that use the BTRFS_UUID_KEY* types */
46#define BTRFS_UUID_TREE_OBJECTID 9ULL
47
48/* tracks free space in block groups. */
49#define BTRFS_FREE_SPACE_TREE_OBJECTID 10ULL
50
51/* device stats in the device tree */
52#define BTRFS_DEV_STATS_OBJECTID 0ULL
53
54/* for storing balance parameters in the root tree */
55#define BTRFS_BALANCE_OBJECTID -4ULL
56
57/* orhpan objectid for tracking unlinked/truncated files */
58#define BTRFS_ORPHAN_OBJECTID -5ULL
59
60/* does write ahead logging to speed up fsyncs */
61#define BTRFS_TREE_LOG_OBJECTID -6ULL
62#define BTRFS_TREE_LOG_FIXUP_OBJECTID -7ULL
63
64/* for space balancing */
65#define BTRFS_TREE_RELOC_OBJECTID -8ULL
66#define BTRFS_DATA_RELOC_TREE_OBJECTID -9ULL
67
68/*
69 * extent checksums all have this objectid
70 * this allows them to share the logging tree
71 * for fsyncs
72 */
73#define BTRFS_EXTENT_CSUM_OBJECTID -10ULL
74
75/* For storing free space cache */
76#define BTRFS_FREE_SPACE_OBJECTID -11ULL
77
78/*
79 * The inode number assigned to the special inode for storing
80 * free ino cache
81 */
82#define BTRFS_FREE_INO_OBJECTID -12ULL
83
84/* dummy objectid represents multiple objectids */
85#define BTRFS_MULTIPLE_OBJECTIDS -255ULL
86
87/*
88 * All files have objectids in this range.
89 */
90#define BTRFS_FIRST_FREE_OBJECTID 256ULL
91#define BTRFS_LAST_FREE_OBJECTID -256ULL
92#define BTRFS_FIRST_CHUNK_TREE_OBJECTID 256ULL
93
94
95/*
96 * the device items go into the chunk tree. The key is in the form
97 * [ 1 BTRFS_DEV_ITEM_KEY device_id ]
98 */
99#define BTRFS_DEV_ITEMS_OBJECTID 1ULL
100
101#define BTRFS_BTREE_INODE_OBJECTID 1
102
103#define BTRFS_EMPTY_SUBVOL_DIR_OBJECTID 2
104
105#define BTRFS_DEV_REPLACE_DEVID 0ULL
106
107/*
108 * inode items have the data typically returned from stat and store other
109 * info about object characteristics. There is one for every file and dir in
110 * the FS
111 */
112#define BTRFS_INODE_ITEM_KEY 1
113#define BTRFS_INODE_REF_KEY 12
114#define BTRFS_INODE_EXTREF_KEY 13
115#define BTRFS_XATTR_ITEM_KEY 24
116#define BTRFS_ORPHAN_ITEM_KEY 48
117/* reserve 2-15 close to the inode for later flexibility */
118
119/*
120 * dir items are the name -> inode pointers in a directory. There is one
121 * for every name in a directory.
122 */
123#define BTRFS_DIR_LOG_ITEM_KEY 60
124#define BTRFS_DIR_LOG_INDEX_KEY 72
125#define BTRFS_DIR_ITEM_KEY 84
126#define BTRFS_DIR_INDEX_KEY 96
127/*
128 * extent data is for file data
129 */
130#define BTRFS_EXTENT_DATA_KEY 108
131
132/*
133 * extent csums are stored in a separate tree and hold csums for
134 * an entire extent on disk.
135 */
136#define BTRFS_EXTENT_CSUM_KEY 128
137
138/*
139 * root items point to tree roots. They are typically in the root
140 * tree used by the super block to find all the other trees
141 */
142#define BTRFS_ROOT_ITEM_KEY 132
143
144/*
145 * root backrefs tie subvols and snapshots to the directory entries that
146 * reference them
147 */
148#define BTRFS_ROOT_BACKREF_KEY 144
149
150/*
151 * root refs make a fast index for listing all of the snapshots and
152 * subvolumes referenced by a given root. They point directly to the
153 * directory item in the root that references the subvol
154 */
155#define BTRFS_ROOT_REF_KEY 156
156
157/*
158 * extent items are in the extent map tree. These record which blocks
159 * are used, and how many references there are to each block
160 */
161#define BTRFS_EXTENT_ITEM_KEY 168
162
163/*
164 * The same as the BTRFS_EXTENT_ITEM_KEY, except it's metadata we already know
165 * the length, so we save the level in key->offset instead of the length.
166 */
167#define BTRFS_METADATA_ITEM_KEY 169
168
169#define BTRFS_TREE_BLOCK_REF_KEY 176
170
171#define BTRFS_EXTENT_DATA_REF_KEY 178
172
173#define BTRFS_EXTENT_REF_V0_KEY 180
174
175#define BTRFS_SHARED_BLOCK_REF_KEY 182
176
177#define BTRFS_SHARED_DATA_REF_KEY 184
178
179/*
180 * block groups give us hints into the extent allocation trees. Which
181 * blocks are free etc etc
182 */
183#define BTRFS_BLOCK_GROUP_ITEM_KEY 192
184
185/*
186 * Every block group is represented in the free space tree by a free space info
187 * item, which stores some accounting information. It is keyed on
188 * (block_group_start, FREE_SPACE_INFO, block_group_length).
189 */
190#define BTRFS_FREE_SPACE_INFO_KEY 198
191
192/*
193 * A free space extent tracks an extent of space that is free in a block group.
194 * It is keyed on (start, FREE_SPACE_EXTENT, length).
195 */
196#define BTRFS_FREE_SPACE_EXTENT_KEY 199
197
198/*
199 * When a block group becomes very fragmented, we convert it to use bitmaps
200 * instead of extents. A free space bitmap is keyed on
201 * (start, FREE_SPACE_BITMAP, length); the corresponding item is a bitmap with
202 * (length / sectorsize) bits.
203 */
204#define BTRFS_FREE_SPACE_BITMAP_KEY 200
205
206#define BTRFS_DEV_EXTENT_KEY 204
207#define BTRFS_DEV_ITEM_KEY 216
208#define BTRFS_CHUNK_ITEM_KEY 228
209
210/*
211 * Records the overall state of the qgroups.
212 * There's only one instance of this key present,
213 * (0, BTRFS_QGROUP_STATUS_KEY, 0)
214 */
215#define BTRFS_QGROUP_STATUS_KEY 240
216/*
217 * Records the currently used space of the qgroup.
218 * One key per qgroup, (0, BTRFS_QGROUP_INFO_KEY, qgroupid).
219 */
220#define BTRFS_QGROUP_INFO_KEY 242
221/*
222 * Contains the user configured limits for the qgroup.
223 * One key per qgroup, (0, BTRFS_QGROUP_LIMIT_KEY, qgroupid).
224 */
225#define BTRFS_QGROUP_LIMIT_KEY 244
226/*
227 * Records the child-parent relationship of qgroups. For
228 * each relation, 2 keys are present:
229 * (childid, BTRFS_QGROUP_RELATION_KEY, parentid)
230 * (parentid, BTRFS_QGROUP_RELATION_KEY, childid)
231 */
232#define BTRFS_QGROUP_RELATION_KEY 246
233
234/*
235 * Obsolete name, see BTRFS_TEMPORARY_ITEM_KEY.
236 */
237#define BTRFS_BALANCE_ITEM_KEY 248
238
239/*
240 * The key type for tree items that are stored persistently, but do not need to
241 * exist for extended period of time. The items can exist in any tree.
242 *
243 * [subtype, BTRFS_TEMPORARY_ITEM_KEY, data]
244 *
245 * Existing items:
246 *
247 * - balance status item
248 * (BTRFS_BALANCE_OBJECTID, BTRFS_TEMPORARY_ITEM_KEY, 0)
249 */
250#define BTRFS_TEMPORARY_ITEM_KEY 248
251
252/*
253 * Obsolete name, see BTRFS_PERSISTENT_ITEM_KEY
254 */
255#define BTRFS_DEV_STATS_KEY 249
256
257/*
258 * The key type for tree items that are stored persistently and usually exist
259 * for a long period, eg. filesystem lifetime. The item kinds can be status
260 * information, stats or preference values. The item can exist in any tree.
261 *
262 * [subtype, BTRFS_PERSISTENT_ITEM_KEY, data]
263 *
264 * Existing items:
265 *
266 * - device statistics, store IO stats in the device tree, one key for all
267 * stats
268 * (BTRFS_DEV_STATS_OBJECTID, BTRFS_DEV_STATS_KEY, 0)
269 */
270#define BTRFS_PERSISTENT_ITEM_KEY 249
271
272/*
273 * Persistantly stores the device replace state in the device tree.
274 * The key is built like this: (0, BTRFS_DEV_REPLACE_KEY, 0).
275 */
276#define BTRFS_DEV_REPLACE_KEY 250
277
278/*
279 * Stores items that allow to quickly map UUIDs to something else.
280 * These items are part of the filesystem UUID tree.
281 * The key is built like this:
282 * (UUID_upper_64_bits, BTRFS_UUID_KEY*, UUID_lower_64_bits).
283 */
284#if BTRFS_UUID_SIZE != 16
285#error "UUID items require BTRFS_UUID_SIZE == 16!"
286#endif
287#define BTRFS_UUID_KEY_SUBVOL 251 /* for UUIDs assigned to subvols */
288#define BTRFS_UUID_KEY_RECEIVED_SUBVOL 252 /* for UUIDs assigned to
289 * received subvols */
290
291/*
292 * string items are for debugging. They just store a short string of
293 * data in the FS
294 */
295#define BTRFS_STRING_ITEM_KEY 253
296
297
298
299/* 32 bytes in various csum fields */
300#define BTRFS_CSUM_SIZE 32
301
302/* csum types */
e35b79a1
JT
303enum btrfs_csum_type {
304 BTRFS_CSUM_TYPE_CRC32 = 0,
3951e7f0 305 BTRFS_CSUM_TYPE_XXHASH = 1,
e35b79a1 306};
db671160
JM
307
308/*
309 * flags definitions for directory entry item type
310 *
311 * Used by:
312 * struct btrfs_dir_item.type
7d157c3d
PP
313 *
314 * Values 0..7 must match common file type values in fs_types.h.
db671160
JM
315 */
316#define BTRFS_FT_UNKNOWN 0
317#define BTRFS_FT_REG_FILE 1
318#define BTRFS_FT_DIR 2
319#define BTRFS_FT_CHRDEV 3
320#define BTRFS_FT_BLKDEV 4
321#define BTRFS_FT_FIFO 5
322#define BTRFS_FT_SOCK 6
323#define BTRFS_FT_SYMLINK 7
324#define BTRFS_FT_XATTR 8
325#define BTRFS_FT_MAX 9
326
327/*
328 * The key defines the order in the tree, and so it also defines (optimal)
329 * block layout.
330 *
331 * objectid corresponds to the inode number.
332 *
333 * type tells us things about the object, and is a kind of stream selector.
334 * so for a given inode, keys with type of 1 might refer to the inode data,
335 * type of 2 may point to file data in the btree and type == 3 may point to
336 * extents.
337 *
338 * offset is the starting byte offset for this key in the stream.
339 *
340 * btrfs_disk_key is in disk byte order. struct btrfs_key is always
341 * in cpu native order. Otherwise they are identical and their sizes
342 * should be the same (ie both packed)
343 */
344struct btrfs_disk_key {
345 __le64 objectid;
14b05c51 346 __u8 type;
db671160
JM
347 __le64 offset;
348} __attribute__ ((__packed__));
349
350struct btrfs_key {
14b05c51
JM
351 __u64 objectid;
352 __u8 type;
353 __u64 offset;
db671160
JM
354} __attribute__ ((__packed__));
355
356struct btrfs_dev_item {
357 /* the internal btrfs device id */
358 __le64 devid;
359
360 /* size of the device */
361 __le64 total_bytes;
362
363 /* bytes used */
364 __le64 bytes_used;
365
366 /* optimal io alignment for this device */
367 __le32 io_align;
368
369 /* optimal io width for this device */
370 __le32 io_width;
371
372 /* minimal io size for this device */
373 __le32 sector_size;
374
375 /* type and info about this device */
376 __le64 type;
377
378 /* expected generation for this device */
379 __le64 generation;
380
381 /*
382 * starting byte of this partition on the device,
383 * to allow for stripe alignment in the future
384 */
385 __le64 start_offset;
386
387 /* grouping information for allocation decisions */
388 __le32 dev_group;
389
390 /* seek speed 0-100 where 100 is fastest */
14b05c51 391 __u8 seek_speed;
db671160
JM
392
393 /* bandwidth 0-100 where 100 is fastest */
14b05c51 394 __u8 bandwidth;
db671160
JM
395
396 /* btrfs generated uuid for this device */
14b05c51 397 __u8 uuid[BTRFS_UUID_SIZE];
db671160
JM
398
399 /* uuid of FS who owns this device */
14b05c51 400 __u8 fsid[BTRFS_UUID_SIZE];
db671160
JM
401} __attribute__ ((__packed__));
402
403struct btrfs_stripe {
404 __le64 devid;
405 __le64 offset;
14b05c51 406 __u8 dev_uuid[BTRFS_UUID_SIZE];
db671160
JM
407} __attribute__ ((__packed__));
408
409struct btrfs_chunk {
410 /* size of this chunk in bytes */
411 __le64 length;
412
413 /* objectid of the root referencing this chunk */
414 __le64 owner;
415
416 __le64 stripe_len;
417 __le64 type;
418
419 /* optimal io alignment for this chunk */
420 __le32 io_align;
421
422 /* optimal io width for this chunk */
423 __le32 io_width;
424
425 /* minimal io size for this chunk */
426 __le32 sector_size;
427
428 /* 2^16 stripes is quite a lot, a second limit is the size of a single
429 * item in the btree
430 */
431 __le16 num_stripes;
432
433 /* sub stripes only matter for raid10 */
434 __le16 sub_stripes;
435 struct btrfs_stripe stripe;
436 /* additional stripes go here */
437} __attribute__ ((__packed__));
438
439#define BTRFS_FREE_SPACE_EXTENT 1
440#define BTRFS_FREE_SPACE_BITMAP 2
441
442struct btrfs_free_space_entry {
443 __le64 offset;
444 __le64 bytes;
14b05c51 445 __u8 type;
db671160
JM
446} __attribute__ ((__packed__));
447
448struct btrfs_free_space_header {
449 struct btrfs_disk_key location;
450 __le64 generation;
451 __le64 num_entries;
452 __le64 num_bitmaps;
453} __attribute__ ((__packed__));
454
455#define BTRFS_HEADER_FLAG_WRITTEN (1ULL << 0)
456#define BTRFS_HEADER_FLAG_RELOC (1ULL << 1)
457
458/* Super block flags */
459/* Errors detected */
460#define BTRFS_SUPER_FLAG_ERROR (1ULL << 2)
461
462#define BTRFS_SUPER_FLAG_SEEDING (1ULL << 32)
463#define BTRFS_SUPER_FLAG_METADUMP (1ULL << 33)
e2731e55 464#define BTRFS_SUPER_FLAG_METADUMP_V2 (1ULL << 34)
98820a7e 465#define BTRFS_SUPER_FLAG_CHANGING_FSID (1ULL << 35)
7239ff4b 466#define BTRFS_SUPER_FLAG_CHANGING_FSID_V2 (1ULL << 36)
db671160
JM
467
468
469/*
470 * items in the extent btree are used to record the objectid of the
471 * owner of the block and the number of references
472 */
473
474struct btrfs_extent_item {
475 __le64 refs;
476 __le64 generation;
477 __le64 flags;
478} __attribute__ ((__packed__));
479
480struct btrfs_extent_item_v0 {
481 __le32 refs;
482} __attribute__ ((__packed__));
483
484
485#define BTRFS_EXTENT_FLAG_DATA (1ULL << 0)
486#define BTRFS_EXTENT_FLAG_TREE_BLOCK (1ULL << 1)
487
488/* following flags only apply to tree blocks */
489
490/* use full backrefs for extent pointers in the block */
491#define BTRFS_BLOCK_FLAG_FULL_BACKREF (1ULL << 8)
492
493/*
494 * this flag is only used internally by scrub and may be changed at any time
495 * it is only declared here to avoid collisions
496 */
497#define BTRFS_EXTENT_FLAG_SUPER (1ULL << 48)
498
499struct btrfs_tree_block_info {
500 struct btrfs_disk_key key;
14b05c51 501 __u8 level;
db671160
JM
502} __attribute__ ((__packed__));
503
504struct btrfs_extent_data_ref {
505 __le64 root;
506 __le64 objectid;
507 __le64 offset;
508 __le32 count;
509} __attribute__ ((__packed__));
510
511struct btrfs_shared_data_ref {
512 __le32 count;
513} __attribute__ ((__packed__));
514
515struct btrfs_extent_inline_ref {
14b05c51 516 __u8 type;
db671160
JM
517 __le64 offset;
518} __attribute__ ((__packed__));
519
520/* old style backrefs item */
521struct btrfs_extent_ref_v0 {
522 __le64 root;
523 __le64 generation;
524 __le64 objectid;
525 __le32 count;
526} __attribute__ ((__packed__));
527
528
529/* dev extents record free space on individual devices. The owner
530 * field points back to the chunk allocation mapping tree that allocated
531 * the extent. The chunk tree uuid field is a way to double check the owner
532 */
533struct btrfs_dev_extent {
534 __le64 chunk_tree;
535 __le64 chunk_objectid;
536 __le64 chunk_offset;
537 __le64 length;
14b05c51 538 __u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
db671160
JM
539} __attribute__ ((__packed__));
540
541struct btrfs_inode_ref {
542 __le64 index;
543 __le16 name_len;
544 /* name goes here */
545} __attribute__ ((__packed__));
546
547struct btrfs_inode_extref {
548 __le64 parent_objectid;
549 __le64 index;
550 __le16 name_len;
551 __u8 name[0];
552 /* name goes here */
553} __attribute__ ((__packed__));
554
555struct btrfs_timespec {
556 __le64 sec;
557 __le32 nsec;
558} __attribute__ ((__packed__));
559
560struct btrfs_inode_item {
561 /* nfs style generation number */
562 __le64 generation;
563 /* transid that last touched this inode */
564 __le64 transid;
565 __le64 size;
566 __le64 nbytes;
567 __le64 block_group;
568 __le32 nlink;
569 __le32 uid;
570 __le32 gid;
571 __le32 mode;
572 __le64 rdev;
573 __le64 flags;
574
575 /* modification sequence number for NFS */
576 __le64 sequence;
577
578 /*
579 * a little future expansion, for more than this we can
580 * just grow the inode item and version it
581 */
582 __le64 reserved[4];
583 struct btrfs_timespec atime;
584 struct btrfs_timespec ctime;
585 struct btrfs_timespec mtime;
586 struct btrfs_timespec otime;
587} __attribute__ ((__packed__));
588
589struct btrfs_dir_log_item {
590 __le64 end;
591} __attribute__ ((__packed__));
592
593struct btrfs_dir_item {
594 struct btrfs_disk_key location;
595 __le64 transid;
596 __le16 data_len;
597 __le16 name_len;
14b05c51 598 __u8 type;
db671160
JM
599} __attribute__ ((__packed__));
600
601#define BTRFS_ROOT_SUBVOL_RDONLY (1ULL << 0)
602
603/*
604 * Internal in-memory flag that a subvolume has been marked for deletion but
605 * still visible as a directory
606 */
607#define BTRFS_ROOT_SUBVOL_DEAD (1ULL << 48)
608
609struct btrfs_root_item {
610 struct btrfs_inode_item inode;
611 __le64 generation;
612 __le64 root_dirid;
613 __le64 bytenr;
614 __le64 byte_limit;
615 __le64 bytes_used;
616 __le64 last_snapshot;
617 __le64 flags;
618 __le32 refs;
619 struct btrfs_disk_key drop_progress;
14b05c51
JM
620 __u8 drop_level;
621 __u8 level;
db671160
JM
622
623 /*
624 * The following fields appear after subvol_uuids+subvol_times
625 * were introduced.
626 */
627
628 /*
629 * This generation number is used to test if the new fields are valid
630 * and up to date while reading the root item. Every time the root item
631 * is written out, the "generation" field is copied into this field. If
632 * anyone ever mounted the fs with an older kernel, we will have
633 * mismatching generation values here and thus must invalidate the
634 * new fields. See btrfs_update_root and btrfs_find_last_root for
635 * details.
636 * the offset of generation_v2 is also used as the start for the memset
637 * when invalidating the fields.
638 */
639 __le64 generation_v2;
14b05c51
JM
640 __u8 uuid[BTRFS_UUID_SIZE];
641 __u8 parent_uuid[BTRFS_UUID_SIZE];
642 __u8 received_uuid[BTRFS_UUID_SIZE];
db671160
JM
643 __le64 ctransid; /* updated when an inode changes */
644 __le64 otransid; /* trans when created */
645 __le64 stransid; /* trans when sent. non-zero for received subvol */
646 __le64 rtransid; /* trans when received. non-zero for received subvol */
647 struct btrfs_timespec ctime;
648 struct btrfs_timespec otime;
649 struct btrfs_timespec stime;
650 struct btrfs_timespec rtime;
651 __le64 reserved[8]; /* for future */
652} __attribute__ ((__packed__));
653
654/*
655 * this is used for both forward and backward root refs
656 */
657struct btrfs_root_ref {
658 __le64 dirid;
659 __le64 sequence;
660 __le16 name_len;
661} __attribute__ ((__packed__));
662
663struct btrfs_disk_balance_args {
664 /*
665 * profiles to operate on, single is denoted by
666 * BTRFS_AVAIL_ALLOC_BIT_SINGLE
667 */
668 __le64 profiles;
669
670 /*
671 * usage filter
672 * BTRFS_BALANCE_ARGS_USAGE with a single value means '0..N'
673 * BTRFS_BALANCE_ARGS_USAGE_RANGE - range syntax, min..max
674 */
675 union {
676 __le64 usage;
677 struct {
678 __le32 usage_min;
679 __le32 usage_max;
680 };
681 };
682
683 /* devid filter */
684 __le64 devid;
685
686 /* devid subset filter [pstart..pend) */
687 __le64 pstart;
688 __le64 pend;
689
690 /* btrfs virtual address space subset filter [vstart..vend) */
691 __le64 vstart;
692 __le64 vend;
693
694 /*
695 * profile to convert to, single is denoted by
696 * BTRFS_AVAIL_ALLOC_BIT_SINGLE
697 */
698 __le64 target;
699
700 /* BTRFS_BALANCE_ARGS_* */
701 __le64 flags;
702
703 /*
704 * BTRFS_BALANCE_ARGS_LIMIT with value 'limit'
705 * BTRFS_BALANCE_ARGS_LIMIT_RANGE - the extend version can use minimum
706 * and maximum
707 */
708 union {
709 __le64 limit;
710 struct {
711 __le32 limit_min;
712 __le32 limit_max;
713 };
714 };
715
716 /*
717 * Process chunks that cross stripes_min..stripes_max devices,
718 * BTRFS_BALANCE_ARGS_STRIPES_RANGE
719 */
720 __le32 stripes_min;
721 __le32 stripes_max;
722
723 __le64 unused[6];
724} __attribute__ ((__packed__));
725
726/*
727 * store balance parameters to disk so that balance can be properly
728 * resumed after crash or unmount
729 */
730struct btrfs_balance_item {
731 /* BTRFS_BALANCE_* */
732 __le64 flags;
733
734 struct btrfs_disk_balance_args data;
735 struct btrfs_disk_balance_args meta;
736 struct btrfs_disk_balance_args sys;
737
738 __le64 unused[4];
739} __attribute__ ((__packed__));
740
b9b1a53e
CX
741enum {
742 BTRFS_FILE_EXTENT_INLINE = 0,
743 BTRFS_FILE_EXTENT_REG = 1,
744 BTRFS_FILE_EXTENT_PREALLOC = 2,
745 BTRFS_NR_FILE_EXTENT_TYPES = 3,
746};
db671160
JM
747
748struct btrfs_file_extent_item {
749 /*
750 * transaction id that created this extent
751 */
752 __le64 generation;
753 /*
754 * max number of bytes to hold this extent in ram
755 * when we split a compressed extent we can't know how big
756 * each of the resulting pieces will be. So, this is
757 * an upper limit on the size of the extent in ram instead of
758 * an exact limit.
759 */
760 __le64 ram_bytes;
761
762 /*
763 * 32 bits for the various ways we might encode the data,
764 * including compression and encryption. If any of these
765 * are set to something a given disk format doesn't understand
766 * it is treated like an incompat flag for reading and writing,
767 * but not for stat.
768 */
14b05c51
JM
769 __u8 compression;
770 __u8 encryption;
db671160
JM
771 __le16 other_encoding; /* spare for later use */
772
773 /* are we inline data or a real extent? */
14b05c51 774 __u8 type;
db671160
JM
775
776 /*
777 * disk space consumed by the extent, checksum blocks are included
778 * in these numbers
779 *
780 * At this offset in the structure, the inline extent data start.
781 */
782 __le64 disk_bytenr;
783 __le64 disk_num_bytes;
784 /*
785 * the logical offset in file blocks (no csums)
786 * this extent record is for. This allows a file extent to point
787 * into the middle of an existing extent on disk, sharing it
788 * between two snapshots (useful if some bytes in the middle of the
789 * extent have changed
790 */
791 __le64 offset;
792 /*
793 * the logical number of file blocks (no csums included). This
794 * always reflects the size uncompressed and without encoding.
795 */
796 __le64 num_bytes;
797
798} __attribute__ ((__packed__));
799
800struct btrfs_csum_item {
14b05c51 801 __u8 csum;
db671160
JM
802} __attribute__ ((__packed__));
803
804struct btrfs_dev_stats_item {
805 /*
806 * grow this item struct at the end for future enhancements and keep
807 * the existing values unchanged
808 */
809 __le64 values[BTRFS_DEV_STAT_VALUES_MAX];
810} __attribute__ ((__packed__));
811
812#define BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_ALWAYS 0
813#define BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID 1
db671160
JM
814
815struct btrfs_dev_replace_item {
816 /*
817 * grow this item struct at the end for future enhancements and keep
818 * the existing values unchanged
819 */
820 __le64 src_devid;
821 __le64 cursor_left;
822 __le64 cursor_right;
823 __le64 cont_reading_from_srcdev_mode;
824
825 __le64 replace_state;
826 __le64 time_started;
827 __le64 time_stopped;
828 __le64 num_write_errors;
829 __le64 num_uncorrectable_read_errors;
830} __attribute__ ((__packed__));
831
832/* different types of block groups (and chunks) */
833#define BTRFS_BLOCK_GROUP_DATA (1ULL << 0)
834#define BTRFS_BLOCK_GROUP_SYSTEM (1ULL << 1)
835#define BTRFS_BLOCK_GROUP_METADATA (1ULL << 2)
836#define BTRFS_BLOCK_GROUP_RAID0 (1ULL << 3)
837#define BTRFS_BLOCK_GROUP_RAID1 (1ULL << 4)
838#define BTRFS_BLOCK_GROUP_DUP (1ULL << 5)
839#define BTRFS_BLOCK_GROUP_RAID10 (1ULL << 6)
840#define BTRFS_BLOCK_GROUP_RAID5 (1ULL << 7)
841#define BTRFS_BLOCK_GROUP_RAID6 (1ULL << 8)
842#define BTRFS_BLOCK_GROUP_RESERVED (BTRFS_AVAIL_ALLOC_BIT_SINGLE | \
843 BTRFS_SPACE_INFO_GLOBAL_RSV)
844
845enum btrfs_raid_types {
846 BTRFS_RAID_RAID10,
847 BTRFS_RAID_RAID1,
848 BTRFS_RAID_DUP,
849 BTRFS_RAID_RAID0,
850 BTRFS_RAID_SINGLE,
851 BTRFS_RAID_RAID5,
852 BTRFS_RAID_RAID6,
853 BTRFS_NR_RAID_TYPES
854};
855
856#define BTRFS_BLOCK_GROUP_TYPE_MASK (BTRFS_BLOCK_GROUP_DATA | \
857 BTRFS_BLOCK_GROUP_SYSTEM | \
858 BTRFS_BLOCK_GROUP_METADATA)
859
860#define BTRFS_BLOCK_GROUP_PROFILE_MASK (BTRFS_BLOCK_GROUP_RAID0 | \
861 BTRFS_BLOCK_GROUP_RAID1 | \
862 BTRFS_BLOCK_GROUP_RAID5 | \
863 BTRFS_BLOCK_GROUP_RAID6 | \
864 BTRFS_BLOCK_GROUP_DUP | \
865 BTRFS_BLOCK_GROUP_RAID10)
866#define BTRFS_BLOCK_GROUP_RAID56_MASK (BTRFS_BLOCK_GROUP_RAID5 | \
867 BTRFS_BLOCK_GROUP_RAID6)
868
c7369b3f
DS
869#define BTRFS_BLOCK_GROUP_RAID1_MASK (BTRFS_BLOCK_GROUP_RAID1)
870
db671160
JM
871/*
872 * We need a bit for restriper to be able to tell when chunks of type
873 * SINGLE are available. This "extended" profile format is used in
874 * fs_info->avail_*_alloc_bits (in-memory) and balance item fields
875 * (on-disk). The corresponding on-disk bit in chunk.type is reserved
876 * to avoid remappings between two formats in future.
877 */
878#define BTRFS_AVAIL_ALLOC_BIT_SINGLE (1ULL << 48)
879
880/*
881 * A fake block group type that is used to communicate global block reserve
882 * size to userspace via the SPACE_INFO ioctl.
883 */
884#define BTRFS_SPACE_INFO_GLOBAL_RSV (1ULL << 49)
885
886#define BTRFS_EXTENDED_PROFILE_MASK (BTRFS_BLOCK_GROUP_PROFILE_MASK | \
887 BTRFS_AVAIL_ALLOC_BIT_SINGLE)
888
14b05c51 889static inline __u64 chunk_to_extended(__u64 flags)
db671160
JM
890{
891 if ((flags & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0)
892 flags |= BTRFS_AVAIL_ALLOC_BIT_SINGLE;
893
894 return flags;
895}
14b05c51 896static inline __u64 extended_to_chunk(__u64 flags)
db671160
JM
897{
898 return flags & ~BTRFS_AVAIL_ALLOC_BIT_SINGLE;
899}
900
901struct btrfs_block_group_item {
902 __le64 used;
903 __le64 chunk_objectid;
904 __le64 flags;
905} __attribute__ ((__packed__));
906
907struct btrfs_free_space_info {
908 __le32 extent_count;
909 __le32 flags;
910} __attribute__ ((__packed__));
911
912#define BTRFS_FREE_SPACE_USING_BITMAPS (1ULL << 0)
913
914#define BTRFS_QGROUP_LEVEL_SHIFT 48
14b05c51 915static inline __u64 btrfs_qgroup_level(__u64 qgroupid)
db671160
JM
916{
917 return qgroupid >> BTRFS_QGROUP_LEVEL_SHIFT;
918}
919
920/*
921 * is subvolume quota turned on?
922 */
923#define BTRFS_QGROUP_STATUS_FLAG_ON (1ULL << 0)
924/*
925 * RESCAN is set during the initialization phase
926 */
927#define BTRFS_QGROUP_STATUS_FLAG_RESCAN (1ULL << 1)
928/*
929 * Some qgroup entries are known to be out of date,
930 * either because the configuration has changed in a way that
931 * makes a rescan necessary, or because the fs has been mounted
932 * with a non-qgroup-aware version.
933 * Turning qouta off and on again makes it inconsistent, too.
934 */
935#define BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT (1ULL << 2)
936
937#define BTRFS_QGROUP_STATUS_VERSION 1
938
939struct btrfs_qgroup_status_item {
940 __le64 version;
941 /*
942 * the generation is updated during every commit. As older
943 * versions of btrfs are not aware of qgroups, it will be
944 * possible to detect inconsistencies by checking the
945 * generation on mount time
946 */
947 __le64 generation;
948
949 /* flag definitions see above */
950 __le64 flags;
951
952 /*
953 * only used during scanning to record the progress
954 * of the scan. It contains a logical address
955 */
956 __le64 rescan;
957} __attribute__ ((__packed__));
958
959struct btrfs_qgroup_info_item {
960 __le64 generation;
961 __le64 rfer;
962 __le64 rfer_cmpr;
963 __le64 excl;
964 __le64 excl_cmpr;
965} __attribute__ ((__packed__));
966
967struct btrfs_qgroup_limit_item {
968 /*
969 * only updated when any of the other values change
970 */
971 __le64 flags;
972 __le64 max_rfer;
973 __le64 max_excl;
974 __le64 rsv_rfer;
975 __le64 rsv_excl;
976} __attribute__ ((__packed__));
977
978#endif /* _BTRFS_CTREE_H_ */