]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/bcachefs_format.h
Update bcachefs sources to f05b3c1af9 bcachefs: Improve bucket_alloc_fail tracepoint
[bcachefs-tools-debian] / libbcachefs / bcachefs_format.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BCACHEFS_FORMAT_H
3 #define _BCACHEFS_FORMAT_H
4
5 /*
6  * bcachefs on disk data structures
7  *
8  * OVERVIEW:
9  *
10  * There are three main types of on disk data structures in bcachefs (this is
11  * reduced from 5 in bcache)
12  *
13  *  - superblock
14  *  - journal
15  *  - btree
16  *
17  * The btree is the primary structure; most metadata exists as keys in the
18  * various btrees. There are only a small number of btrees, they're not
19  * sharded - we have one btree for extents, another for inodes, et cetera.
20  *
21  * SUPERBLOCK:
22  *
23  * The superblock contains the location of the journal, the list of devices in
24  * the filesystem, and in general any metadata we need in order to decide
25  * whether we can start a filesystem or prior to reading the journal/btree
26  * roots.
27  *
28  * The superblock is extensible, and most of the contents of the superblock are
29  * in variable length, type tagged fields; see struct bch_sb_field.
30  *
31  * Backup superblocks do not reside in a fixed location; also, superblocks do
32  * not have a fixed size. To locate backup superblocks we have struct
33  * bch_sb_layout; we store a copy of this inside every superblock, and also
34  * before the first superblock.
35  *
36  * JOURNAL:
37  *
38  * The journal primarily records btree updates in the order they occurred;
39  * journal replay consists of just iterating over all the keys in the open
40  * journal entries and re-inserting them into the btrees.
41  *
42  * The journal also contains entry types for the btree roots, and blacklisted
43  * journal sequence numbers (see journal_seq_blacklist.c).
44  *
45  * BTREE:
46  *
47  * bcachefs btrees are copy on write b+ trees, where nodes are big (typically
48  * 128k-256k) and log structured. We use struct btree_node for writing the first
49  * entry in a given node (offset 0), and struct btree_node_entry for all
50  * subsequent writes.
51  *
52  * After the header, btree node entries contain a list of keys in sorted order.
53  * Values are stored inline with the keys; since values are variable length (and
54  * keys effectively are variable length too, due to packing) we can't do random
55  * access without building up additional in memory tables in the btree node read
56  * path.
57  *
58  * BTREE KEYS (struct bkey):
59  *
60  * The various btrees share a common format for the key - so as to avoid
61  * switching in fastpath lookup/comparison code - but define their own
62  * structures for the key values.
63  *
64  * The size of a key/value pair is stored as a u8 in units of u64s, so the max
65  * size is just under 2k. The common part also contains a type tag for the
66  * value, and a format field indicating whether the key is packed or not (and
67  * also meant to allow adding new key fields in the future, if desired).
68  *
69  * bkeys, when stored within a btree node, may also be packed. In that case, the
70  * bkey_format in that node is used to unpack it. Packed bkeys mean that we can
71  * be generous with field sizes in the common part of the key format (64 bit
72  * inode number, 64 bit offset, 96 bit version field, etc.) for negligible cost.
73  */
74
75 #include <asm/types.h>
76 #include <asm/byteorder.h>
77 #include <linux/kernel.h>
78 #include <linux/uuid.h>
79 #include "vstructs.h"
80
81 #define LE_BITMASK(_bits, name, type, field, offset, end)               \
82 static const unsigned   name##_OFFSET = offset;                         \
83 static const unsigned   name##_BITS = (end - offset);                   \
84 static const __u##_bits name##_MAX = (1ULL << (end - offset)) - 1;      \
85                                                                         \
86 static inline __u64 name(const type *k)                                 \
87 {                                                                       \
88         return (__le##_bits##_to_cpu(k->field) >> offset) &             \
89                 ~(~0ULL << (end - offset));                             \
90 }                                                                       \
91                                                                         \
92 static inline void SET_##name(type *k, __u64 v)                         \
93 {                                                                       \
94         __u##_bits new = __le##_bits##_to_cpu(k->field);                \
95                                                                         \
96         new &= ~(~(~0ULL << (end - offset)) << offset);                 \
97         new |= (v & ~(~0ULL << (end - offset))) << offset;              \
98         k->field = __cpu_to_le##_bits(new);                             \
99 }
100
101 #define LE16_BITMASK(n, t, f, o, e)     LE_BITMASK(16, n, t, f, o, e)
102 #define LE32_BITMASK(n, t, f, o, e)     LE_BITMASK(32, n, t, f, o, e)
103 #define LE64_BITMASK(n, t, f, o, e)     LE_BITMASK(64, n, t, f, o, e)
104
105 struct bkey_format {
106         __u8            key_u64s;
107         __u8            nr_fields;
108         /* One unused slot for now: */
109         __u8            bits_per_field[6];
110         __le64          field_offset[6];
111 };
112
113 /* Btree keys - all units are in sectors */
114
115 struct bpos {
116         /*
117          * Word order matches machine byte order - btree code treats a bpos as a
118          * single large integer, for search/comparison purposes
119          *
120          * Note that wherever a bpos is embedded in another on disk data
121          * structure, it has to be byte swabbed when reading in metadata that
122          * wasn't written in native endian order:
123          */
124 #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
125         __u32           snapshot;
126         __u64           offset;
127         __u64           inode;
128 #elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
129         __u64           inode;
130         __u64           offset;         /* Points to end of extent - sectors */
131         __u32           snapshot;
132 #else
133 #error edit for your odd byteorder.
134 #endif
135 } __attribute__((packed, aligned(4)));
136
137 #define KEY_INODE_MAX                   ((__u64)~0ULL)
138 #define KEY_OFFSET_MAX                  ((__u64)~0ULL)
139 #define KEY_SNAPSHOT_MAX                ((__u32)~0U)
140 #define KEY_SIZE_MAX                    ((__u32)~0U)
141
142 static inline struct bpos SPOS(__u64 inode, __u64 offset, __u32 snapshot)
143 {
144         return (struct bpos) {
145                 .inode          = inode,
146                 .offset         = offset,
147                 .snapshot       = snapshot,
148         };
149 }
150
151 #define POS_MIN                         SPOS(0, 0, 0)
152 #define POS_MAX                         SPOS(KEY_INODE_MAX, KEY_OFFSET_MAX, 0)
153 #define SPOS_MAX                        SPOS(KEY_INODE_MAX, KEY_OFFSET_MAX, KEY_SNAPSHOT_MAX)
154 #define POS(_inode, _offset)            SPOS(_inode, _offset, 0)
155
156 /* Empty placeholder struct, for container_of() */
157 struct bch_val {
158         __u64           __nothing[0];
159 };
160
161 struct bversion {
162 #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
163         __u64           lo;
164         __u32           hi;
165 #elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
166         __u32           hi;
167         __u64           lo;
168 #endif
169 } __attribute__((packed, aligned(4)));
170
171 struct bkey {
172         /* Size of combined key and value, in u64s */
173         __u8            u64s;
174
175         /* Format of key (0 for format local to btree node) */
176 #if defined(__LITTLE_ENDIAN_BITFIELD)
177         __u8            format:7,
178                         needs_whiteout:1;
179 #elif defined (__BIG_ENDIAN_BITFIELD)
180         __u8            needs_whiteout:1,
181                         format:7;
182 #else
183 #error edit for your odd byteorder.
184 #endif
185
186         /* Type of the value */
187         __u8            type;
188
189 #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
190         __u8            pad[1];
191
192         struct bversion version;
193         __u32           size;           /* extent size, in sectors */
194         struct bpos     p;
195 #elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
196         struct bpos     p;
197         __u32           size;           /* extent size, in sectors */
198         struct bversion version;
199
200         __u8            pad[1];
201 #endif
202 } __attribute__((packed, aligned(8)));
203
204 struct bkey_packed {
205         __u64           _data[0];
206
207         /* Size of combined key and value, in u64s */
208         __u8            u64s;
209
210         /* Format of key (0 for format local to btree node) */
211
212         /*
213          * XXX: next incompat on disk format change, switch format and
214          * needs_whiteout - bkey_packed() will be cheaper if format is the high
215          * bits of the bitfield
216          */
217 #if defined(__LITTLE_ENDIAN_BITFIELD)
218         __u8            format:7,
219                         needs_whiteout:1;
220 #elif defined (__BIG_ENDIAN_BITFIELD)
221         __u8            needs_whiteout:1,
222                         format:7;
223 #endif
224
225         /* Type of the value */
226         __u8            type;
227         __u8            key_start[0];
228
229         /*
230          * We copy bkeys with struct assignment in various places, and while
231          * that shouldn't be done with packed bkeys we can't disallow it in C,
232          * and it's legal to cast a bkey to a bkey_packed  - so padding it out
233          * to the same size as struct bkey should hopefully be safest.
234          */
235         __u8            pad[sizeof(struct bkey) - 3];
236 } __attribute__((packed, aligned(8)));
237
238 #define BKEY_U64s                       (sizeof(struct bkey) / sizeof(__u64))
239 #define BKEY_U64s_MAX                   U8_MAX
240 #define BKEY_VAL_U64s_MAX               (BKEY_U64s_MAX - BKEY_U64s)
241
242 #define KEY_PACKED_BITS_START           24
243
244 #define KEY_FORMAT_LOCAL_BTREE          0
245 #define KEY_FORMAT_CURRENT              1
246
247 enum bch_bkey_fields {
248         BKEY_FIELD_INODE,
249         BKEY_FIELD_OFFSET,
250         BKEY_FIELD_SNAPSHOT,
251         BKEY_FIELD_SIZE,
252         BKEY_FIELD_VERSION_HI,
253         BKEY_FIELD_VERSION_LO,
254         BKEY_NR_FIELDS,
255 };
256
257 #define bkey_format_field(name, field)                                  \
258         [BKEY_FIELD_##name] = (sizeof(((struct bkey *) NULL)->field) * 8)
259
260 #define BKEY_FORMAT_CURRENT                                             \
261 ((struct bkey_format) {                                                 \
262         .key_u64s       = BKEY_U64s,                                    \
263         .nr_fields      = BKEY_NR_FIELDS,                               \
264         .bits_per_field = {                                             \
265                 bkey_format_field(INODE,        p.inode),               \
266                 bkey_format_field(OFFSET,       p.offset),              \
267                 bkey_format_field(SNAPSHOT,     p.snapshot),            \
268                 bkey_format_field(SIZE,         size),                  \
269                 bkey_format_field(VERSION_HI,   version.hi),            \
270                 bkey_format_field(VERSION_LO,   version.lo),            \
271         },                                                              \
272 })
273
274 /* bkey with inline value */
275 struct bkey_i {
276         __u64                   _data[0];
277
278         union {
279         struct {
280                 /* Size of combined key and value, in u64s */
281                 __u8            u64s;
282         };
283         struct {
284                 struct bkey     k;
285                 struct bch_val  v;
286         };
287         };
288 };
289
290 #define KEY(_inode, _offset, _size)                                     \
291 ((struct bkey) {                                                        \
292         .u64s           = BKEY_U64s,                                    \
293         .format         = KEY_FORMAT_CURRENT,                           \
294         .p              = POS(_inode, _offset),                         \
295         .size           = _size,                                        \
296 })
297
298 static inline void bkey_init(struct bkey *k)
299 {
300         *k = KEY(0, 0, 0);
301 }
302
303 #define bkey_bytes(_k)          ((_k)->u64s * sizeof(__u64))
304
305 #define __BKEY_PADDED(key, pad)                                 \
306         struct { struct bkey_i key; __u64 key ## _pad[pad]; }
307
308 /*
309  * - DELETED keys are used internally to mark keys that should be ignored but
310  *   override keys in composition order.  Their version number is ignored.
311  *
312  * - DISCARDED keys indicate that the data is all 0s because it has been
313  *   discarded. DISCARDs may have a version; if the version is nonzero the key
314  *   will be persistent, otherwise the key will be dropped whenever the btree
315  *   node is rewritten (like DELETED keys).
316  *
317  * - ERROR: any read of the data returns a read error, as the data was lost due
318  *   to a failing device. Like DISCARDED keys, they can be removed (overridden)
319  *   by new writes or cluster-wide GC. Node repair can also overwrite them with
320  *   the same or a more recent version number, but not with an older version
321  *   number.
322  *
323  * - WHITEOUT: for hash table btrees
324 */
325 #define BCH_BKEY_TYPES()                                \
326         x(deleted,              0)                      \
327         x(whiteout,             1)                      \
328         x(error,                2)                      \
329         x(cookie,               3)                      \
330         x(hash_whiteout,        4)                      \
331         x(btree_ptr,            5)                      \
332         x(extent,               6)                      \
333         x(reservation,          7)                      \
334         x(inode,                8)                      \
335         x(inode_generation,     9)                      \
336         x(dirent,               10)                     \
337         x(xattr,                11)                     \
338         x(alloc,                12)                     \
339         x(quota,                13)                     \
340         x(stripe,               14)                     \
341         x(reflink_p,            15)                     \
342         x(reflink_v,            16)                     \
343         x(inline_data,          17)                     \
344         x(btree_ptr_v2,         18)                     \
345         x(indirect_inline_data, 19)                     \
346         x(alloc_v2,             20)                     \
347         x(subvolume,            21)                     \
348         x(snapshot,             22)                     \
349         x(inode_v2,             23)                     \
350         x(alloc_v3,             24)                     \
351         x(set,                  25)                     \
352         x(lru,                  26)
353
354 enum bch_bkey_type {
355 #define x(name, nr) KEY_TYPE_##name     = nr,
356         BCH_BKEY_TYPES()
357 #undef x
358         KEY_TYPE_MAX,
359 };
360
361 struct bch_deleted {
362         struct bch_val          v;
363 };
364
365 struct bch_whiteout {
366         struct bch_val          v;
367 };
368
369 struct bch_error {
370         struct bch_val          v;
371 };
372
373 struct bch_cookie {
374         struct bch_val          v;
375         __le64                  cookie;
376 };
377
378 struct bch_hash_whiteout {
379         struct bch_val          v;
380 };
381
382 struct bch_set {
383         struct bch_val          v;
384 };
385
386 /* Extents */
387
388 /*
389  * In extent bkeys, the value is a list of pointers (bch_extent_ptr), optionally
390  * preceded by checksum/compression information (bch_extent_crc32 or
391  * bch_extent_crc64).
392  *
393  * One major determining factor in the format of extents is how we handle and
394  * represent extents that have been partially overwritten and thus trimmed:
395  *
396  * If an extent is not checksummed or compressed, when the extent is trimmed we
397  * don't have to remember the extent we originally allocated and wrote: we can
398  * merely adjust ptr->offset to point to the start of the data that is currently
399  * live. The size field in struct bkey records the current (live) size of the
400  * extent, and is also used to mean "size of region on disk that we point to" in
401  * this case.
402  *
403  * Thus an extent that is not checksummed or compressed will consist only of a
404  * list of bch_extent_ptrs, with none of the fields in
405  * bch_extent_crc32/bch_extent_crc64.
406  *
407  * When an extent is checksummed or compressed, it's not possible to read only
408  * the data that is currently live: we have to read the entire extent that was
409  * originally written, and then return only the part of the extent that is
410  * currently live.
411  *
412  * Thus, in addition to the current size of the extent in struct bkey, we need
413  * to store the size of the originally allocated space - this is the
414  * compressed_size and uncompressed_size fields in bch_extent_crc32/64. Also,
415  * when the extent is trimmed, instead of modifying the offset field of the
416  * pointer, we keep a second smaller offset field - "offset into the original
417  * extent of the currently live region".
418  *
419  * The other major determining factor is replication and data migration:
420  *
421  * Each pointer may have its own bch_extent_crc32/64. When doing a replicated
422  * write, we will initially write all the replicas in the same format, with the
423  * same checksum type and compression format - however, when copygc runs later (or
424  * tiering/cache promotion, anything that moves data), it is not in general
425  * going to rewrite all the pointers at once - one of the replicas may be in a
426  * bucket on one device that has very little fragmentation while another lives
427  * in a bucket that has become heavily fragmented, and thus is being rewritten
428  * sooner than the rest.
429  *
430  * Thus it will only move a subset of the pointers (or in the case of
431  * tiering/cache promotion perhaps add a single pointer without dropping any
432  * current pointers), and if the extent has been partially overwritten it must
433  * write only the currently live portion (or copygc would not be able to reduce
434  * fragmentation!) - which necessitates a different bch_extent_crc format for
435  * the new pointer.
436  *
437  * But in the interests of space efficiency, we don't want to store one
438  * bch_extent_crc for each pointer if we don't have to.
439  *
440  * Thus, a bch_extent consists of bch_extent_crc32s, bch_extent_crc64s, and
441  * bch_extent_ptrs appended arbitrarily one after the other. We determine the
442  * type of a given entry with a scheme similar to utf8 (except we're encoding a
443  * type, not a size), encoding the type in the position of the first set bit:
444  *
445  * bch_extent_crc32     - 0b1
446  * bch_extent_ptr       - 0b10
447  * bch_extent_crc64     - 0b100
448  *
449  * We do it this way because bch_extent_crc32 is _very_ constrained on bits (and
450  * bch_extent_crc64 is the least constrained).
451  *
452  * Then, each bch_extent_crc32/64 applies to the pointers that follow after it,
453  * until the next bch_extent_crc32/64.
454  *
455  * If there are no bch_extent_crcs preceding a bch_extent_ptr, then that pointer
456  * is neither checksummed nor compressed.
457  */
458
459 /* 128 bits, sufficient for cryptographic MACs: */
460 struct bch_csum {
461         __le64                  lo;
462         __le64                  hi;
463 } __attribute__((packed, aligned(8)));
464
465 #define BCH_EXTENT_ENTRY_TYPES()                \
466         x(ptr,                  0)              \
467         x(crc32,                1)              \
468         x(crc64,                2)              \
469         x(crc128,               3)              \
470         x(stripe_ptr,           4)
471 #define BCH_EXTENT_ENTRY_MAX    5
472
473 enum bch_extent_entry_type {
474 #define x(f, n) BCH_EXTENT_ENTRY_##f = n,
475         BCH_EXTENT_ENTRY_TYPES()
476 #undef x
477 };
478
479 /* Compressed/uncompressed size are stored biased by 1: */
480 struct bch_extent_crc32 {
481 #if defined(__LITTLE_ENDIAN_BITFIELD)
482         __u32                   type:2,
483                                 _compressed_size:7,
484                                 _uncompressed_size:7,
485                                 offset:7,
486                                 _unused:1,
487                                 csum_type:4,
488                                 compression_type:4;
489         __u32                   csum;
490 #elif defined (__BIG_ENDIAN_BITFIELD)
491         __u32                   csum;
492         __u32                   compression_type:4,
493                                 csum_type:4,
494                                 _unused:1,
495                                 offset:7,
496                                 _uncompressed_size:7,
497                                 _compressed_size:7,
498                                 type:2;
499 #endif
500 } __attribute__((packed, aligned(8)));
501
502 #define CRC32_SIZE_MAX          (1U << 7)
503 #define CRC32_NONCE_MAX         0
504
505 struct bch_extent_crc64 {
506 #if defined(__LITTLE_ENDIAN_BITFIELD)
507         __u64                   type:3,
508                                 _compressed_size:9,
509                                 _uncompressed_size:9,
510                                 offset:9,
511                                 nonce:10,
512                                 csum_type:4,
513                                 compression_type:4,
514                                 csum_hi:16;
515 #elif defined (__BIG_ENDIAN_BITFIELD)
516         __u64                   csum_hi:16,
517                                 compression_type:4,
518                                 csum_type:4,
519                                 nonce:10,
520                                 offset:9,
521                                 _uncompressed_size:9,
522                                 _compressed_size:9,
523                                 type:3;
524 #endif
525         __u64                   csum_lo;
526 } __attribute__((packed, aligned(8)));
527
528 #define CRC64_SIZE_MAX          (1U << 9)
529 #define CRC64_NONCE_MAX         ((1U << 10) - 1)
530
531 struct bch_extent_crc128 {
532 #if defined(__LITTLE_ENDIAN_BITFIELD)
533         __u64                   type:4,
534                                 _compressed_size:13,
535                                 _uncompressed_size:13,
536                                 offset:13,
537                                 nonce:13,
538                                 csum_type:4,
539                                 compression_type:4;
540 #elif defined (__BIG_ENDIAN_BITFIELD)
541         __u64                   compression_type:4,
542                                 csum_type:4,
543                                 nonce:13,
544                                 offset:13,
545                                 _uncompressed_size:13,
546                                 _compressed_size:13,
547                                 type:4;
548 #endif
549         struct bch_csum         csum;
550 } __attribute__((packed, aligned(8)));
551
552 #define CRC128_SIZE_MAX         (1U << 13)
553 #define CRC128_NONCE_MAX        ((1U << 13) - 1)
554
555 /*
556  * @reservation - pointer hasn't been written to, just reserved
557  */
558 struct bch_extent_ptr {
559 #if defined(__LITTLE_ENDIAN_BITFIELD)
560         __u64                   type:1,
561                                 cached:1,
562                                 unused:1,
563                                 reservation:1,
564                                 offset:44, /* 8 petabytes */
565                                 dev:8,
566                                 gen:8;
567 #elif defined (__BIG_ENDIAN_BITFIELD)
568         __u64                   gen:8,
569                                 dev:8,
570                                 offset:44,
571                                 reservation:1,
572                                 unused:1,
573                                 cached:1,
574                                 type:1;
575 #endif
576 } __attribute__((packed, aligned(8)));
577
578 struct bch_extent_stripe_ptr {
579 #if defined(__LITTLE_ENDIAN_BITFIELD)
580         __u64                   type:5,
581                                 block:8,
582                                 redundancy:4,
583                                 idx:47;
584 #elif defined (__BIG_ENDIAN_BITFIELD)
585         __u64                   idx:47,
586                                 redundancy:4,
587                                 block:8,
588                                 type:5;
589 #endif
590 };
591
592 struct bch_extent_reservation {
593 #if defined(__LITTLE_ENDIAN_BITFIELD)
594         __u64                   type:6,
595                                 unused:22,
596                                 replicas:4,
597                                 generation:32;
598 #elif defined (__BIG_ENDIAN_BITFIELD)
599         __u64                   generation:32,
600                                 replicas:4,
601                                 unused:22,
602                                 type:6;
603 #endif
604 };
605
606 union bch_extent_entry {
607 #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ ||  __BITS_PER_LONG == 64
608         unsigned long                   type;
609 #elif __BITS_PER_LONG == 32
610         struct {
611                 unsigned long           pad;
612                 unsigned long           type;
613         };
614 #else
615 #error edit for your odd byteorder.
616 #endif
617
618 #define x(f, n) struct bch_extent_##f   f;
619         BCH_EXTENT_ENTRY_TYPES()
620 #undef x
621 };
622
623 struct bch_btree_ptr {
624         struct bch_val          v;
625
626         struct bch_extent_ptr   start[0];
627         __u64                   _data[0];
628 } __attribute__((packed, aligned(8)));
629
630 struct bch_btree_ptr_v2 {
631         struct bch_val          v;
632
633         __u64                   mem_ptr;
634         __le64                  seq;
635         __le16                  sectors_written;
636         __le16                  flags;
637         struct bpos             min_key;
638         struct bch_extent_ptr   start[0];
639         __u64                   _data[0];
640 } __attribute__((packed, aligned(8)));
641
642 LE16_BITMASK(BTREE_PTR_RANGE_UPDATED,   struct bch_btree_ptr_v2, flags, 0, 1);
643
644 struct bch_extent {
645         struct bch_val          v;
646
647         union bch_extent_entry  start[0];
648         __u64                   _data[0];
649 } __attribute__((packed, aligned(8)));
650
651 struct bch_reservation {
652         struct bch_val          v;
653
654         __le32                  generation;
655         __u8                    nr_replicas;
656         __u8                    pad[3];
657 } __attribute__((packed, aligned(8)));
658
659 /* Maximum size (in u64s) a single pointer could be: */
660 #define BKEY_EXTENT_PTR_U64s_MAX\
661         ((sizeof(struct bch_extent_crc128) +                    \
662           sizeof(struct bch_extent_ptr)) / sizeof(u64))
663
664 /* Maximum possible size of an entire extent value: */
665 #define BKEY_EXTENT_VAL_U64s_MAX                                \
666         (1 + BKEY_EXTENT_PTR_U64s_MAX * (BCH_REPLICAS_MAX + 1))
667
668 /* * Maximum possible size of an entire extent, key + value: */
669 #define BKEY_EXTENT_U64s_MAX            (BKEY_U64s + BKEY_EXTENT_VAL_U64s_MAX)
670
671 /* Btree pointers don't carry around checksums: */
672 #define BKEY_BTREE_PTR_VAL_U64s_MAX                             \
673         ((sizeof(struct bch_btree_ptr_v2) +                     \
674           sizeof(struct bch_extent_ptr) * BCH_REPLICAS_MAX) / sizeof(u64))
675 #define BKEY_BTREE_PTR_U64s_MAX                                 \
676         (BKEY_U64s + BKEY_BTREE_PTR_VAL_U64s_MAX)
677
678 /* Inodes */
679
680 #define BLOCKDEV_INODE_MAX      4096
681
682 #define BCACHEFS_ROOT_INO       4096
683
684 struct bch_inode {
685         struct bch_val          v;
686
687         __le64                  bi_hash_seed;
688         __le32                  bi_flags;
689         __le16                  bi_mode;
690         __u8                    fields[0];
691 } __attribute__((packed, aligned(8)));
692
693 struct bch_inode_v2 {
694         struct bch_val          v;
695
696         __le64                  bi_journal_seq;
697         __le64                  bi_hash_seed;
698         __le64                  bi_flags;
699         __le16                  bi_mode;
700         __u8                    fields[0];
701 } __attribute__((packed, aligned(8)));
702
703 struct bch_inode_generation {
704         struct bch_val          v;
705
706         __le32                  bi_generation;
707         __le32                  pad;
708 } __attribute__((packed, aligned(8)));
709
710 /*
711  * bi_subvol and bi_parent_subvol are only set for subvolume roots:
712  */
713
714 #define BCH_INODE_FIELDS()                      \
715         x(bi_atime,                     96)     \
716         x(bi_ctime,                     96)     \
717         x(bi_mtime,                     96)     \
718         x(bi_otime,                     96)     \
719         x(bi_size,                      64)     \
720         x(bi_sectors,                   64)     \
721         x(bi_uid,                       32)     \
722         x(bi_gid,                       32)     \
723         x(bi_nlink,                     32)     \
724         x(bi_generation,                32)     \
725         x(bi_dev,                       32)     \
726         x(bi_data_checksum,             8)      \
727         x(bi_compression,               8)      \
728         x(bi_project,                   32)     \
729         x(bi_background_compression,    8)      \
730         x(bi_data_replicas,             8)      \
731         x(bi_promote_target,            16)     \
732         x(bi_foreground_target,         16)     \
733         x(bi_background_target,         16)     \
734         x(bi_erasure_code,              16)     \
735         x(bi_fields_set,                16)     \
736         x(bi_dir,                       64)     \
737         x(bi_dir_offset,                64)     \
738         x(bi_subvol,                    32)     \
739         x(bi_parent_subvol,             32)
740
741 /* subset of BCH_INODE_FIELDS */
742 #define BCH_INODE_OPTS()                        \
743         x(data_checksum,                8)      \
744         x(compression,                  8)      \
745         x(project,                      32)     \
746         x(background_compression,       8)      \
747         x(data_replicas,                8)      \
748         x(promote_target,               16)     \
749         x(foreground_target,            16)     \
750         x(background_target,            16)     \
751         x(erasure_code,                 16)
752
753 enum inode_opt_id {
754 #define x(name, ...)                            \
755         Inode_opt_##name,
756         BCH_INODE_OPTS()
757 #undef  x
758         Inode_opt_nr,
759 };
760
761 enum {
762         /*
763          * User flags (get/settable with FS_IOC_*FLAGS, correspond to FS_*_FL
764          * flags)
765          */
766         __BCH_INODE_SYNC        = 0,
767         __BCH_INODE_IMMUTABLE   = 1,
768         __BCH_INODE_APPEND      = 2,
769         __BCH_INODE_NODUMP      = 3,
770         __BCH_INODE_NOATIME     = 4,
771
772         __BCH_INODE_I_SIZE_DIRTY= 5,
773         __BCH_INODE_I_SECTORS_DIRTY= 6,
774         __BCH_INODE_UNLINKED    = 7,
775         __BCH_INODE_BACKPTR_UNTRUSTED = 8,
776
777         /* bits 20+ reserved for packed fields below: */
778 };
779
780 #define BCH_INODE_SYNC          (1 << __BCH_INODE_SYNC)
781 #define BCH_INODE_IMMUTABLE     (1 << __BCH_INODE_IMMUTABLE)
782 #define BCH_INODE_APPEND        (1 << __BCH_INODE_APPEND)
783 #define BCH_INODE_NODUMP        (1 << __BCH_INODE_NODUMP)
784 #define BCH_INODE_NOATIME       (1 << __BCH_INODE_NOATIME)
785 #define BCH_INODE_I_SIZE_DIRTY  (1 << __BCH_INODE_I_SIZE_DIRTY)
786 #define BCH_INODE_I_SECTORS_DIRTY (1 << __BCH_INODE_I_SECTORS_DIRTY)
787 #define BCH_INODE_UNLINKED      (1 << __BCH_INODE_UNLINKED)
788 #define BCH_INODE_BACKPTR_UNTRUSTED (1 << __BCH_INODE_BACKPTR_UNTRUSTED)
789
790 LE32_BITMASK(INODE_STR_HASH,    struct bch_inode, bi_flags, 20, 24);
791 LE32_BITMASK(INODE_NR_FIELDS,   struct bch_inode, bi_flags, 24, 31);
792 LE32_BITMASK(INODE_NEW_VARINT,  struct bch_inode, bi_flags, 31, 32);
793
794 LE64_BITMASK(INODEv2_STR_HASH,  struct bch_inode_v2, bi_flags, 20, 24);
795 LE64_BITMASK(INODEv2_NR_FIELDS, struct bch_inode_v2, bi_flags, 24, 31);
796
797 /* Dirents */
798
799 /*
800  * Dirents (and xattrs) have to implement string lookups; since our b-tree
801  * doesn't support arbitrary length strings for the key, we instead index by a
802  * 64 bit hash (currently truncated sha1) of the string, stored in the offset
803  * field of the key - using linear probing to resolve hash collisions. This also
804  * provides us with the readdir cookie posix requires.
805  *
806  * Linear probing requires us to use whiteouts for deletions, in the event of a
807  * collision:
808  */
809
810 struct bch_dirent {
811         struct bch_val          v;
812
813         /* Target inode number: */
814         union {
815         __le64                  d_inum;
816         struct {                /* DT_SUBVOL */
817         __le32                  d_child_subvol;
818         __le32                  d_parent_subvol;
819         };
820         };
821
822         /*
823          * Copy of mode bits 12-15 from the target inode - so userspace can get
824          * the filetype without having to do a stat()
825          */
826         __u8                    d_type;
827
828         __u8                    d_name[];
829 } __attribute__((packed, aligned(8)));
830
831 #define DT_SUBVOL       16
832 #define BCH_DT_MAX      17
833
834 #define BCH_NAME_MAX    (U8_MAX * sizeof(u64) -                         \
835                          sizeof(struct bkey) -                          \
836                          offsetof(struct bch_dirent, d_name))
837
838
839 /* Xattrs */
840
841 #define KEY_TYPE_XATTR_INDEX_USER                       0
842 #define KEY_TYPE_XATTR_INDEX_POSIX_ACL_ACCESS   1
843 #define KEY_TYPE_XATTR_INDEX_POSIX_ACL_DEFAULT  2
844 #define KEY_TYPE_XATTR_INDEX_TRUSTED                    3
845 #define KEY_TYPE_XATTR_INDEX_SECURITY           4
846
847 struct bch_xattr {
848         struct bch_val          v;
849         __u8                    x_type;
850         __u8                    x_name_len;
851         __le16                  x_val_len;
852         __u8                    x_name[];
853 } __attribute__((packed, aligned(8)));
854
855 /* Bucket/allocation information: */
856
857 struct bch_alloc {
858         struct bch_val          v;
859         __u8                    fields;
860         __u8                    gen;
861         __u8                    data[];
862 } __attribute__((packed, aligned(8)));
863
864 #define BCH_ALLOC_FIELDS_V1()                   \
865         x(read_time,            16)             \
866         x(write_time,           16)             \
867         x(data_type,            8)              \
868         x(dirty_sectors,        16)             \
869         x(cached_sectors,       16)             \
870         x(oldest_gen,           8)              \
871         x(stripe,               32)             \
872         x(stripe_redundancy,    8)
873
874 struct bch_alloc_v2 {
875         struct bch_val          v;
876         __u8                    nr_fields;
877         __u8                    gen;
878         __u8                    oldest_gen;
879         __u8                    data_type;
880         __u8                    data[];
881 } __attribute__((packed, aligned(8)));
882
883 #define BCH_ALLOC_FIELDS_V2()                   \
884         x(read_time,            64)             \
885         x(write_time,           64)             \
886         x(dirty_sectors,        32)             \
887         x(cached_sectors,       32)             \
888         x(stripe,               32)             \
889         x(stripe_redundancy,    8)
890
891 struct bch_alloc_v3 {
892         struct bch_val          v;
893         __le64                  journal_seq;
894         __le32                  flags;
895         __u8                    nr_fields;
896         __u8                    gen;
897         __u8                    oldest_gen;
898         __u8                    data_type;
899         __u8                    data[];
900 } __attribute__((packed, aligned(8)));
901
902 LE32_BITMASK(BCH_ALLOC_NEED_DISCARD,struct bch_alloc_v3, flags,  0,  1)
903 LE32_BITMASK(BCH_ALLOC_NEED_INC_GEN,struct bch_alloc_v3, flags,  1,  2)
904
905 enum {
906 #define x(name, _bits) BCH_ALLOC_FIELD_V1_##name,
907         BCH_ALLOC_FIELDS_V1()
908 #undef x
909 };
910
911 /* Quotas: */
912
913 enum quota_types {
914         QTYP_USR                = 0,
915         QTYP_GRP                = 1,
916         QTYP_PRJ                = 2,
917         QTYP_NR                 = 3,
918 };
919
920 enum quota_counters {
921         Q_SPC                   = 0,
922         Q_INO                   = 1,
923         Q_COUNTERS              = 2,
924 };
925
926 struct bch_quota_counter {
927         __le64                  hardlimit;
928         __le64                  softlimit;
929 };
930
931 struct bch_quota {
932         struct bch_val          v;
933         struct bch_quota_counter c[Q_COUNTERS];
934 } __attribute__((packed, aligned(8)));
935
936 /* Erasure coding */
937
938 struct bch_stripe {
939         struct bch_val          v;
940         __le16                  sectors;
941         __u8                    algorithm;
942         __u8                    nr_blocks;
943         __u8                    nr_redundant;
944
945         __u8                    csum_granularity_bits;
946         __u8                    csum_type;
947         __u8                    pad;
948
949         struct bch_extent_ptr   ptrs[0];
950 } __attribute__((packed, aligned(8)));
951
952 /* Reflink: */
953
954 struct bch_reflink_p {
955         struct bch_val          v;
956         __le64                  idx;
957         /*
958          * A reflink pointer might point to an indirect extent which is then
959          * later split (by copygc or rebalance). If we only pointed to part of
960          * the original indirect extent, and then one of the fragments is
961          * outside the range we point to, we'd leak a refcount: so when creating
962          * reflink pointers, we need to store pad values to remember the full
963          * range we were taking a reference on.
964          */
965         __le32                  front_pad;
966         __le32                  back_pad;
967 } __attribute__((packed, aligned(8)));
968
969 struct bch_reflink_v {
970         struct bch_val          v;
971         __le64                  refcount;
972         union bch_extent_entry  start[0];
973         __u64                   _data[0];
974 } __attribute__((packed, aligned(8)));
975
976 struct bch_indirect_inline_data {
977         struct bch_val          v;
978         __le64                  refcount;
979         u8                      data[0];
980 };
981
982 /* Inline data */
983
984 struct bch_inline_data {
985         struct bch_val          v;
986         u8                      data[0];
987 };
988
989 /* Subvolumes: */
990
991 #define SUBVOL_POS_MIN          POS(0, 1)
992 #define SUBVOL_POS_MAX          POS(0, S32_MAX)
993 #define BCACHEFS_ROOT_SUBVOL    1
994
995 struct bch_subvolume {
996         struct bch_val          v;
997         __le32                  flags;
998         __le32                  snapshot;
999         __le64                  inode;
1000 };
1001
1002 LE32_BITMASK(BCH_SUBVOLUME_RO,          struct bch_subvolume, flags,  0,  1)
1003 /*
1004  * We need to know whether a subvolume is a snapshot so we can know whether we
1005  * can delete it (or whether it should just be rm -rf'd)
1006  */
1007 LE32_BITMASK(BCH_SUBVOLUME_SNAP,        struct bch_subvolume, flags,  1,  2)
1008 LE32_BITMASK(BCH_SUBVOLUME_UNLINKED,    struct bch_subvolume, flags,  2,  3)
1009
1010 /* Snapshots */
1011
1012 struct bch_snapshot {
1013         struct bch_val          v;
1014         __le32                  flags;
1015         __le32                  parent;
1016         __le32                  children[2];
1017         __le32                  subvol;
1018         __le32                  pad;
1019 };
1020
1021 LE32_BITMASK(BCH_SNAPSHOT_DELETED,      struct bch_snapshot, flags,  0,  1)
1022
1023 /* True if a subvolume points to this snapshot node: */
1024 LE32_BITMASK(BCH_SNAPSHOT_SUBVOL,       struct bch_snapshot, flags,  1,  2)
1025
1026 /* LRU btree: */
1027
1028 struct bch_lru {
1029         struct bch_val          v;
1030         __le64                  idx;
1031 } __attribute__((packed, aligned(8)));
1032
1033 #define LRU_ID_STRIPES          (1U << 16)
1034
1035 /* Optional/variable size superblock sections: */
1036
1037 struct bch_sb_field {
1038         __u64                   _data[0];
1039         __le32                  u64s;
1040         __le32                  type;
1041 };
1042
1043 #define BCH_SB_FIELDS()                         \
1044         x(journal,      0)                      \
1045         x(members,      1)                      \
1046         x(crypt,        2)                      \
1047         x(replicas_v0,  3)                      \
1048         x(quota,        4)                      \
1049         x(disk_groups,  5)                      \
1050         x(clean,        6)                      \
1051         x(replicas,     7)                      \
1052         x(journal_seq_blacklist, 8)             \
1053         x(journal_v2,   9)
1054
1055 enum bch_sb_field_type {
1056 #define x(f, nr)        BCH_SB_FIELD_##f = nr,
1057         BCH_SB_FIELDS()
1058 #undef x
1059         BCH_SB_FIELD_NR
1060 };
1061
1062 /*
1063  * Most superblock fields are replicated in all device's superblocks - a few are
1064  * not:
1065  */
1066 #define BCH_SINGLE_DEVICE_SB_FIELDS             \
1067         ((1U << BCH_SB_FIELD_journal)|          \
1068          (1U << BCH_SB_FIELD_journal_v2))
1069
1070 /* BCH_SB_FIELD_journal: */
1071
1072 struct bch_sb_field_journal {
1073         struct bch_sb_field     field;
1074         __le64                  buckets[0];
1075 };
1076
1077 struct bch_sb_field_journal_v2 {
1078         struct bch_sb_field     field;
1079
1080         struct bch_sb_field_journal_v2_entry {
1081                 __le64          start;
1082                 __le64          nr;
1083         }                       d[0];
1084 };
1085
1086 /* BCH_SB_FIELD_members: */
1087
1088 #define BCH_MIN_NR_NBUCKETS     (1 << 6)
1089
1090 struct bch_member {
1091         uuid_le                 uuid;
1092         __le64                  nbuckets;       /* device size */
1093         __le16                  first_bucket;   /* index of first bucket used */
1094         __le16                  bucket_size;    /* sectors */
1095         __le32                  pad;
1096         __le64                  last_mount;     /* time_t */
1097
1098         __le64                  flags[2];
1099 };
1100
1101 LE64_BITMASK(BCH_MEMBER_STATE,          struct bch_member, flags[0],  0,  4)
1102 /* 4-14 unused, was TIER, HAS_(META)DATA, REPLACEMENT */
1103 LE64_BITMASK(BCH_MEMBER_DISCARD,        struct bch_member, flags[0], 14, 15)
1104 LE64_BITMASK(BCH_MEMBER_DATA_ALLOWED,   struct bch_member, flags[0], 15, 20)
1105 LE64_BITMASK(BCH_MEMBER_GROUP,          struct bch_member, flags[0], 20, 28)
1106 LE64_BITMASK(BCH_MEMBER_DURABILITY,     struct bch_member, flags[0], 28, 30)
1107 LE64_BITMASK(BCH_MEMBER_FREESPACE_INITIALIZED,
1108                                         struct bch_member, flags[0], 30, 31)
1109
1110 #if 0
1111 LE64_BITMASK(BCH_MEMBER_NR_READ_ERRORS, struct bch_member, flags[1], 0,  20);
1112 LE64_BITMASK(BCH_MEMBER_NR_WRITE_ERRORS,struct bch_member, flags[1], 20, 40);
1113 #endif
1114
1115 #define BCH_MEMBER_STATES()                     \
1116         x(rw,           0)                      \
1117         x(ro,           1)                      \
1118         x(failed,       2)                      \
1119         x(spare,        3)
1120
1121 enum bch_member_state {
1122 #define x(t, n) BCH_MEMBER_STATE_##t = n,
1123         BCH_MEMBER_STATES()
1124 #undef x
1125         BCH_MEMBER_STATE_NR
1126 };
1127
1128 struct bch_sb_field_members {
1129         struct bch_sb_field     field;
1130         struct bch_member       members[0];
1131 };
1132
1133 /* BCH_SB_FIELD_crypt: */
1134
1135 struct nonce {
1136         __le32                  d[4];
1137 };
1138
1139 struct bch_key {
1140         __le64                  key[4];
1141 };
1142
1143 #define BCH_KEY_MAGIC                                   \
1144         (((u64) 'b' <<  0)|((u64) 'c' <<  8)|           \
1145          ((u64) 'h' << 16)|((u64) '*' << 24)|           \
1146          ((u64) '*' << 32)|((u64) 'k' << 40)|           \
1147          ((u64) 'e' << 48)|((u64) 'y' << 56))
1148
1149 struct bch_encrypted_key {
1150         __le64                  magic;
1151         struct bch_key          key;
1152 };
1153
1154 /*
1155  * If this field is present in the superblock, it stores an encryption key which
1156  * is used encrypt all other data/metadata. The key will normally be encrypted
1157  * with the key userspace provides, but if encryption has been turned off we'll
1158  * just store the master key unencrypted in the superblock so we can access the
1159  * previously encrypted data.
1160  */
1161 struct bch_sb_field_crypt {
1162         struct bch_sb_field     field;
1163
1164         __le64                  flags;
1165         __le64                  kdf_flags;
1166         struct bch_encrypted_key key;
1167 };
1168
1169 LE64_BITMASK(BCH_CRYPT_KDF_TYPE,        struct bch_sb_field_crypt, flags, 0, 4);
1170
1171 enum bch_kdf_types {
1172         BCH_KDF_SCRYPT          = 0,
1173         BCH_KDF_NR              = 1,
1174 };
1175
1176 /* stored as base 2 log of scrypt params: */
1177 LE64_BITMASK(BCH_KDF_SCRYPT_N,  struct bch_sb_field_crypt, kdf_flags,  0, 16);
1178 LE64_BITMASK(BCH_KDF_SCRYPT_R,  struct bch_sb_field_crypt, kdf_flags, 16, 32);
1179 LE64_BITMASK(BCH_KDF_SCRYPT_P,  struct bch_sb_field_crypt, kdf_flags, 32, 48);
1180
1181 /* BCH_SB_FIELD_replicas: */
1182
1183 #define BCH_DATA_TYPES()                \
1184         x(none,         0)              \
1185         x(sb,           1)              \
1186         x(journal,      2)              \
1187         x(btree,        3)              \
1188         x(user,         4)              \
1189         x(cached,       5)              \
1190         x(parity,       6)
1191
1192 enum bch_data_type {
1193 #define x(t, n) BCH_DATA_##t,
1194         BCH_DATA_TYPES()
1195 #undef x
1196         BCH_DATA_NR
1197 };
1198
1199 struct bch_replicas_entry_v0 {
1200         __u8                    data_type;
1201         __u8                    nr_devs;
1202         __u8                    devs[0];
1203 } __attribute__((packed));
1204
1205 struct bch_sb_field_replicas_v0 {
1206         struct bch_sb_field     field;
1207         struct bch_replicas_entry_v0 entries[0];
1208 } __attribute__((packed, aligned(8)));
1209
1210 struct bch_replicas_entry {
1211         __u8                    data_type;
1212         __u8                    nr_devs;
1213         __u8                    nr_required;
1214         __u8                    devs[0];
1215 } __attribute__((packed));
1216
1217 #define replicas_entry_bytes(_i)                                        \
1218         (offsetof(typeof(*(_i)), devs) + (_i)->nr_devs)
1219
1220 struct bch_sb_field_replicas {
1221         struct bch_sb_field     field;
1222         struct bch_replicas_entry entries[0];
1223 } __attribute__((packed, aligned(8)));
1224
1225 /* BCH_SB_FIELD_quota: */
1226
1227 struct bch_sb_quota_counter {
1228         __le32                          timelimit;
1229         __le32                          warnlimit;
1230 };
1231
1232 struct bch_sb_quota_type {
1233         __le64                          flags;
1234         struct bch_sb_quota_counter     c[Q_COUNTERS];
1235 };
1236
1237 struct bch_sb_field_quota {
1238         struct bch_sb_field             field;
1239         struct bch_sb_quota_type        q[QTYP_NR];
1240 } __attribute__((packed, aligned(8)));
1241
1242 /* BCH_SB_FIELD_disk_groups: */
1243
1244 #define BCH_SB_LABEL_SIZE               32
1245
1246 struct bch_disk_group {
1247         __u8                    label[BCH_SB_LABEL_SIZE];
1248         __le64                  flags[2];
1249 } __attribute__((packed, aligned(8)));
1250
1251 LE64_BITMASK(BCH_GROUP_DELETED,         struct bch_disk_group, flags[0], 0,  1)
1252 LE64_BITMASK(BCH_GROUP_DATA_ALLOWED,    struct bch_disk_group, flags[0], 1,  6)
1253 LE64_BITMASK(BCH_GROUP_PARENT,          struct bch_disk_group, flags[0], 6, 24)
1254
1255 struct bch_sb_field_disk_groups {
1256         struct bch_sb_field     field;
1257         struct bch_disk_group   entries[0];
1258 } __attribute__((packed, aligned(8)));
1259
1260 /*
1261  * On clean shutdown, store btree roots and current journal sequence number in
1262  * the superblock:
1263  */
1264 struct jset_entry {
1265         __le16                  u64s;
1266         __u8                    btree_id;
1267         __u8                    level;
1268         __u8                    type; /* designates what this jset holds */
1269         __u8                    pad[3];
1270
1271         union {
1272                 struct bkey_i   start[0];
1273                 __u64           _data[0];
1274         };
1275 };
1276
1277 struct bch_sb_field_clean {
1278         struct bch_sb_field     field;
1279
1280         __le32                  flags;
1281         __le16                  _read_clock; /* no longer used */
1282         __le16                  _write_clock;
1283         __le64                  journal_seq;
1284
1285         union {
1286                 struct jset_entry start[0];
1287                 __u64           _data[0];
1288         };
1289 };
1290
1291 struct journal_seq_blacklist_entry {
1292         __le64                  start;
1293         __le64                  end;
1294 };
1295
1296 struct bch_sb_field_journal_seq_blacklist {
1297         struct bch_sb_field     field;
1298
1299         union {
1300                 struct journal_seq_blacklist_entry start[0];
1301                 __u64           _data[0];
1302         };
1303 };
1304
1305 /* Superblock: */
1306
1307 /*
1308  * New versioning scheme:
1309  * One common version number for all on disk data structures - superblock, btree
1310  * nodes, journal entries
1311  */
1312 #define BCH_JSET_VERSION_OLD                    2
1313 #define BCH_BSET_VERSION_OLD                    3
1314
1315 enum bcachefs_metadata_version {
1316         bcachefs_metadata_version_min                   = 9,
1317         bcachefs_metadata_version_new_versioning        = 10,
1318         bcachefs_metadata_version_bkey_renumber         = 10,
1319         bcachefs_metadata_version_inode_btree_change    = 11,
1320         bcachefs_metadata_version_snapshot              = 12,
1321         bcachefs_metadata_version_inode_backpointers    = 13,
1322         bcachefs_metadata_version_btree_ptr_sectors_written = 14,
1323         bcachefs_metadata_version_snapshot_2            = 15,
1324         bcachefs_metadata_version_reflink_p_fix         = 16,
1325         bcachefs_metadata_version_subvol_dirent         = 17,
1326         bcachefs_metadata_version_inode_v2              = 18,
1327         bcachefs_metadata_version_freespace             = 19,
1328         bcachefs_metadata_version_max                   = 20,
1329 };
1330
1331 #define bcachefs_metadata_version_current       (bcachefs_metadata_version_max - 1)
1332
1333 #define BCH_SB_SECTOR                   8
1334 #define BCH_SB_MEMBERS_MAX              64 /* XXX kill */
1335
1336 struct bch_sb_layout {
1337         uuid_le                 magic;  /* bcachefs superblock UUID */
1338         __u8                    layout_type;
1339         __u8                    sb_max_size_bits; /* base 2 of 512 byte sectors */
1340         __u8                    nr_superblocks;
1341         __u8                    pad[5];
1342         __le64                  sb_offset[61];
1343 } __attribute__((packed, aligned(8)));
1344
1345 #define BCH_SB_LAYOUT_SECTOR    7
1346
1347 /*
1348  * @offset      - sector where this sb was written
1349  * @version     - on disk format version
1350  * @version_min - Oldest metadata version this filesystem contains; so we can
1351  *                safely drop compatibility code and refuse to mount filesystems
1352  *                we'd need it for
1353  * @magic       - identifies as a bcachefs superblock (BCACHE_MAGIC)
1354  * @seq         - incremented each time superblock is written
1355  * @uuid        - used for generating various magic numbers and identifying
1356  *                member devices, never changes
1357  * @user_uuid   - user visible UUID, may be changed
1358  * @label       - filesystem label
1359  * @seq         - identifies most recent superblock, incremented each time
1360  *                superblock is written
1361  * @features    - enabled incompatible features
1362  */
1363 struct bch_sb {
1364         struct bch_csum         csum;
1365         __le16                  version;
1366         __le16                  version_min;
1367         __le16                  pad[2];
1368         uuid_le                 magic;
1369         uuid_le                 uuid;
1370         uuid_le                 user_uuid;
1371         __u8                    label[BCH_SB_LABEL_SIZE];
1372         __le64                  offset;
1373         __le64                  seq;
1374
1375         __le16                  block_size;
1376         __u8                    dev_idx;
1377         __u8                    nr_devices;
1378         __le32                  u64s;
1379
1380         __le64                  time_base_lo;
1381         __le32                  time_base_hi;
1382         __le32                  time_precision;
1383
1384         __le64                  flags[8];
1385         __le64                  features[2];
1386         __le64                  compat[2];
1387
1388         struct bch_sb_layout    layout;
1389
1390         union {
1391                 struct bch_sb_field start[0];
1392                 __le64          _data[0];
1393         };
1394 } __attribute__((packed, aligned(8)));
1395
1396 /*
1397  * Flags:
1398  * BCH_SB_INITALIZED    - set on first mount
1399  * BCH_SB_CLEAN         - did we shut down cleanly? Just a hint, doesn't affect
1400  *                        behaviour of mount/recovery path:
1401  * BCH_SB_INODE_32BIT   - limit inode numbers to 32 bits
1402  * BCH_SB_128_BIT_MACS  - 128 bit macs instead of 80
1403  * BCH_SB_ENCRYPTION_TYPE - if nonzero encryption is enabled; overrides
1404  *                         DATA/META_CSUM_TYPE. Also indicates encryption
1405  *                         algorithm in use, if/when we get more than one
1406  */
1407
1408 LE16_BITMASK(BCH_SB_BLOCK_SIZE,         struct bch_sb, block_size, 0, 16);
1409
1410 LE64_BITMASK(BCH_SB_INITIALIZED,        struct bch_sb, flags[0],  0,  1);
1411 LE64_BITMASK(BCH_SB_CLEAN,              struct bch_sb, flags[0],  1,  2);
1412 LE64_BITMASK(BCH_SB_CSUM_TYPE,          struct bch_sb, flags[0],  2,  8);
1413 LE64_BITMASK(BCH_SB_ERROR_ACTION,       struct bch_sb, flags[0],  8, 12);
1414
1415 LE64_BITMASK(BCH_SB_BTREE_NODE_SIZE,    struct bch_sb, flags[0], 12, 28);
1416
1417 LE64_BITMASK(BCH_SB_GC_RESERVE,         struct bch_sb, flags[0], 28, 33);
1418 LE64_BITMASK(BCH_SB_ROOT_RESERVE,       struct bch_sb, flags[0], 33, 40);
1419
1420 LE64_BITMASK(BCH_SB_META_CSUM_TYPE,     struct bch_sb, flags[0], 40, 44);
1421 LE64_BITMASK(BCH_SB_DATA_CSUM_TYPE,     struct bch_sb, flags[0], 44, 48);
1422
1423 LE64_BITMASK(BCH_SB_META_REPLICAS_WANT, struct bch_sb, flags[0], 48, 52);
1424 LE64_BITMASK(BCH_SB_DATA_REPLICAS_WANT, struct bch_sb, flags[0], 52, 56);
1425
1426 LE64_BITMASK(BCH_SB_POSIX_ACL,          struct bch_sb, flags[0], 56, 57);
1427 LE64_BITMASK(BCH_SB_USRQUOTA,           struct bch_sb, flags[0], 57, 58);
1428 LE64_BITMASK(BCH_SB_GRPQUOTA,           struct bch_sb, flags[0], 58, 59);
1429 LE64_BITMASK(BCH_SB_PRJQUOTA,           struct bch_sb, flags[0], 59, 60);
1430
1431 LE64_BITMASK(BCH_SB_HAS_ERRORS,         struct bch_sb, flags[0], 60, 61);
1432 LE64_BITMASK(BCH_SB_HAS_TOPOLOGY_ERRORS,struct bch_sb, flags[0], 61, 62);
1433
1434 LE64_BITMASK(BCH_SB_BIG_ENDIAN,         struct bch_sb, flags[0], 62, 63);
1435
1436 LE64_BITMASK(BCH_SB_STR_HASH_TYPE,      struct bch_sb, flags[1],  0,  4);
1437 LE64_BITMASK(BCH_SB_COMPRESSION_TYPE,   struct bch_sb, flags[1],  4,  8);
1438 LE64_BITMASK(BCH_SB_INODE_32BIT,        struct bch_sb, flags[1],  8,  9);
1439
1440 LE64_BITMASK(BCH_SB_128_BIT_MACS,       struct bch_sb, flags[1],  9, 10);
1441 LE64_BITMASK(BCH_SB_ENCRYPTION_TYPE,    struct bch_sb, flags[1], 10, 14);
1442
1443 /*
1444  * Max size of an extent that may require bouncing to read or write
1445  * (checksummed, compressed): 64k
1446  */
1447 LE64_BITMASK(BCH_SB_ENCODED_EXTENT_MAX_BITS,
1448                                         struct bch_sb, flags[1], 14, 20);
1449
1450 LE64_BITMASK(BCH_SB_META_REPLICAS_REQ,  struct bch_sb, flags[1], 20, 24);
1451 LE64_BITMASK(BCH_SB_DATA_REPLICAS_REQ,  struct bch_sb, flags[1], 24, 28);
1452
1453 LE64_BITMASK(BCH_SB_PROMOTE_TARGET,     struct bch_sb, flags[1], 28, 40);
1454 LE64_BITMASK(BCH_SB_FOREGROUND_TARGET,  struct bch_sb, flags[1], 40, 52);
1455 LE64_BITMASK(BCH_SB_BACKGROUND_TARGET,  struct bch_sb, flags[1], 52, 64);
1456
1457 LE64_BITMASK(BCH_SB_BACKGROUND_COMPRESSION_TYPE,
1458                                         struct bch_sb, flags[2],  0,  4);
1459 LE64_BITMASK(BCH_SB_GC_RESERVE_BYTES,   struct bch_sb, flags[2],  4, 64);
1460
1461 LE64_BITMASK(BCH_SB_ERASURE_CODE,       struct bch_sb, flags[3],  0, 16);
1462 LE64_BITMASK(BCH_SB_METADATA_TARGET,    struct bch_sb, flags[3], 16, 28);
1463 LE64_BITMASK(BCH_SB_SHARD_INUMS,        struct bch_sb, flags[3], 28, 29);
1464 LE64_BITMASK(BCH_SB_INODES_USE_KEY_CACHE,struct bch_sb, flags[3], 29, 30);
1465 LE64_BITMASK(BCH_SB_JOURNAL_FLUSH_DELAY,struct bch_sb, flags[3], 30, 62);
1466 LE64_BITMASK(BCH_SB_JOURNAL_FLUSH_DISABLED,struct bch_sb, flags[3], 62, 63);
1467 LE64_BITMASK(BCH_SB_JOURNAL_RECLAIM_DELAY,struct bch_sb, flags[4], 0, 32);
1468 LE64_BITMASK(BCH_SB_JOURNAL_TRANSACTION_NAMES,struct bch_sb, flags[4], 32, 33);
1469
1470 /*
1471  * Features:
1472  *
1473  * journal_seq_blacklist_v3:    gates BCH_SB_FIELD_journal_seq_blacklist
1474  * reflink:                     gates KEY_TYPE_reflink
1475  * inline_data:                 gates KEY_TYPE_inline_data
1476  * new_siphash:                 gates BCH_STR_HASH_siphash
1477  * new_extent_overwrite:        gates BTREE_NODE_NEW_EXTENT_OVERWRITE
1478  */
1479 #define BCH_SB_FEATURES()                       \
1480         x(lz4,                          0)      \
1481         x(gzip,                         1)      \
1482         x(zstd,                         2)      \
1483         x(atomic_nlink,                 3)      \
1484         x(ec,                           4)      \
1485         x(journal_seq_blacklist_v3,     5)      \
1486         x(reflink,                      6)      \
1487         x(new_siphash,                  7)      \
1488         x(inline_data,                  8)      \
1489         x(new_extent_overwrite,         9)      \
1490         x(incompressible,               10)     \
1491         x(btree_ptr_v2,                 11)     \
1492         x(extents_above_btree_updates,  12)     \
1493         x(btree_updates_journalled,     13)     \
1494         x(reflink_inline_data,          14)     \
1495         x(new_varint,                   15)     \
1496         x(journal_no_flush,             16)     \
1497         x(alloc_v2,                     17)     \
1498         x(extents_across_btree_nodes,   18)
1499
1500 #define BCH_SB_FEATURES_ALWAYS                          \
1501         ((1ULL << BCH_FEATURE_new_extent_overwrite)|    \
1502          (1ULL << BCH_FEATURE_extents_above_btree_updates)|\
1503          (1ULL << BCH_FEATURE_btree_updates_journalled)|\
1504          (1ULL << BCH_FEATURE_alloc_v2)|\
1505          (1ULL << BCH_FEATURE_extents_across_btree_nodes))
1506
1507 #define BCH_SB_FEATURES_ALL                             \
1508         (BCH_SB_FEATURES_ALWAYS|                        \
1509          (1ULL << BCH_FEATURE_new_siphash)|             \
1510          (1ULL << BCH_FEATURE_btree_ptr_v2)|            \
1511          (1ULL << BCH_FEATURE_new_varint)|              \
1512          (1ULL << BCH_FEATURE_journal_no_flush))
1513
1514 enum bch_sb_feature {
1515 #define x(f, n) BCH_FEATURE_##f,
1516         BCH_SB_FEATURES()
1517 #undef x
1518         BCH_FEATURE_NR,
1519 };
1520
1521 #define BCH_SB_COMPAT()                                 \
1522         x(alloc_info,                           0)      \
1523         x(alloc_metadata,                       1)      \
1524         x(extents_above_btree_updates_done,     2)      \
1525         x(bformat_overflow_done,                3)
1526
1527 enum bch_sb_compat {
1528 #define x(f, n) BCH_COMPAT_##f,
1529         BCH_SB_COMPAT()
1530 #undef x
1531         BCH_COMPAT_NR,
1532 };
1533
1534 /* options: */
1535
1536 #define BCH_REPLICAS_MAX                4U
1537
1538 #define BCH_BKEY_PTRS_MAX               16U
1539
1540 #define BCH_ERROR_ACTIONS()             \
1541         x(continue,             0)      \
1542         x(ro,                   1)      \
1543         x(panic,                2)
1544
1545 enum bch_error_actions {
1546 #define x(t, n) BCH_ON_ERROR_##t = n,
1547         BCH_ERROR_ACTIONS()
1548 #undef x
1549         BCH_ON_ERROR_NR
1550 };
1551
1552 #define BCH_STR_HASH_TYPES()            \
1553         x(crc32c,               0)      \
1554         x(crc64,                1)      \
1555         x(siphash_old,          2)      \
1556         x(siphash,              3)
1557
1558 enum bch_str_hash_type {
1559 #define x(t, n) BCH_STR_HASH_##t = n,
1560         BCH_STR_HASH_TYPES()
1561 #undef x
1562         BCH_STR_HASH_NR
1563 };
1564
1565 #define BCH_STR_HASH_OPTS()             \
1566         x(crc32c,               0)      \
1567         x(crc64,                1)      \
1568         x(siphash,              2)
1569
1570 enum bch_str_hash_opts {
1571 #define x(t, n) BCH_STR_HASH_OPT_##t = n,
1572         BCH_STR_HASH_OPTS()
1573 #undef x
1574         BCH_STR_HASH_OPT_NR
1575 };
1576
1577 #define BCH_CSUM_TYPES()                        \
1578         x(none,                         0)      \
1579         x(crc32c_nonzero,               1)      \
1580         x(crc64_nonzero,                2)      \
1581         x(chacha20_poly1305_80,         3)      \
1582         x(chacha20_poly1305_128,        4)      \
1583         x(crc32c,                       5)      \
1584         x(crc64,                        6)      \
1585         x(xxhash,                       7)
1586
1587 enum bch_csum_type {
1588 #define x(t, n) BCH_CSUM_##t = n,
1589         BCH_CSUM_TYPES()
1590 #undef x
1591         BCH_CSUM_NR
1592 };
1593
1594 static const unsigned bch_crc_bytes[] = {
1595         [BCH_CSUM_none]                         = 0,
1596         [BCH_CSUM_crc32c_nonzero]               = 4,
1597         [BCH_CSUM_crc32c]                       = 4,
1598         [BCH_CSUM_crc64_nonzero]                = 8,
1599         [BCH_CSUM_crc64]                        = 8,
1600         [BCH_CSUM_xxhash]                       = 8,
1601         [BCH_CSUM_chacha20_poly1305_80]         = 10,
1602         [BCH_CSUM_chacha20_poly1305_128]        = 16,
1603 };
1604
1605 static inline _Bool bch2_csum_type_is_encryption(enum bch_csum_type type)
1606 {
1607         switch (type) {
1608         case BCH_CSUM_chacha20_poly1305_80:
1609         case BCH_CSUM_chacha20_poly1305_128:
1610                 return true;
1611         default:
1612                 return false;
1613         }
1614 }
1615
1616 #define BCH_CSUM_OPTS()                 \
1617         x(none,                 0)      \
1618         x(crc32c,               1)      \
1619         x(crc64,                2)      \
1620         x(xxhash,               3)
1621
1622 enum bch_csum_opts {
1623 #define x(t, n) BCH_CSUM_OPT_##t = n,
1624         BCH_CSUM_OPTS()
1625 #undef x
1626         BCH_CSUM_OPT_NR
1627 };
1628
1629 #define BCH_COMPRESSION_TYPES()         \
1630         x(none,                 0)      \
1631         x(lz4_old,              1)      \
1632         x(gzip,                 2)      \
1633         x(lz4,                  3)      \
1634         x(zstd,                 4)      \
1635         x(incompressible,       5)
1636
1637 enum bch_compression_type {
1638 #define x(t, n) BCH_COMPRESSION_TYPE_##t = n,
1639         BCH_COMPRESSION_TYPES()
1640 #undef x
1641         BCH_COMPRESSION_TYPE_NR
1642 };
1643
1644 #define BCH_COMPRESSION_OPTS()          \
1645         x(none,         0)              \
1646         x(lz4,          1)              \
1647         x(gzip,         2)              \
1648         x(zstd,         3)
1649
1650 enum bch_compression_opts {
1651 #define x(t, n) BCH_COMPRESSION_OPT_##t = n,
1652         BCH_COMPRESSION_OPTS()
1653 #undef x
1654         BCH_COMPRESSION_OPT_NR
1655 };
1656
1657 /*
1658  * Magic numbers
1659  *
1660  * The various other data structures have their own magic numbers, which are
1661  * xored with the first part of the cache set's UUID
1662  */
1663
1664 #define BCACHE_MAGIC                                                    \
1665         UUID_LE(0xf67385c6, 0x1a4e, 0xca45,                             \
1666                 0x82, 0x65, 0xf5, 0x7f, 0x48, 0xba, 0x6d, 0x81)
1667
1668 #define BCACHEFS_STATFS_MAGIC           0xca451a4e
1669
1670 #define JSET_MAGIC              __cpu_to_le64(0x245235c1a3625032ULL)
1671 #define BSET_MAGIC              __cpu_to_le64(0x90135c78b99e07f5ULL)
1672
1673 static inline __le64 __bch2_sb_magic(struct bch_sb *sb)
1674 {
1675         __le64 ret;
1676         memcpy(&ret, &sb->uuid, sizeof(ret));
1677         return ret;
1678 }
1679
1680 static inline __u64 __jset_magic(struct bch_sb *sb)
1681 {
1682         return __le64_to_cpu(__bch2_sb_magic(sb) ^ JSET_MAGIC);
1683 }
1684
1685 static inline __u64 __bset_magic(struct bch_sb *sb)
1686 {
1687         return __le64_to_cpu(__bch2_sb_magic(sb) ^ BSET_MAGIC);
1688 }
1689
1690 /* Journal */
1691
1692 #define JSET_KEYS_U64s  (sizeof(struct jset_entry) / sizeof(__u64))
1693
1694 #define BCH_JSET_ENTRY_TYPES()                  \
1695         x(btree_keys,           0)              \
1696         x(btree_root,           1)              \
1697         x(prio_ptrs,            2)              \
1698         x(blacklist,            3)              \
1699         x(blacklist_v2,         4)              \
1700         x(usage,                5)              \
1701         x(data_usage,           6)              \
1702         x(clock,                7)              \
1703         x(dev_usage,            8)              \
1704         x(log,                  9)
1705
1706 enum {
1707 #define x(f, nr)        BCH_JSET_ENTRY_##f      = nr,
1708         BCH_JSET_ENTRY_TYPES()
1709 #undef x
1710         BCH_JSET_ENTRY_NR
1711 };
1712
1713 /*
1714  * Journal sequence numbers can be blacklisted: bsets record the max sequence
1715  * number of all the journal entries they contain updates for, so that on
1716  * recovery we can ignore those bsets that contain index updates newer that what
1717  * made it into the journal.
1718  *
1719  * This means that we can't reuse that journal_seq - we have to skip it, and
1720  * then record that we skipped it so that the next time we crash and recover we
1721  * don't think there was a missing journal entry.
1722  */
1723 struct jset_entry_blacklist {
1724         struct jset_entry       entry;
1725         __le64                  seq;
1726 };
1727
1728 struct jset_entry_blacklist_v2 {
1729         struct jset_entry       entry;
1730         __le64                  start;
1731         __le64                  end;
1732 };
1733
1734 #define BCH_FS_USAGE_TYPES()                    \
1735         x(reserved,             0)              \
1736         x(inodes,               1)              \
1737         x(key_version,          2)
1738
1739 enum {
1740 #define x(f, nr)        BCH_FS_USAGE_##f        = nr,
1741         BCH_FS_USAGE_TYPES()
1742 #undef x
1743         BCH_FS_USAGE_NR
1744 };
1745
1746 struct jset_entry_usage {
1747         struct jset_entry       entry;
1748         __le64                  v;
1749 } __attribute__((packed));
1750
1751 struct jset_entry_data_usage {
1752         struct jset_entry       entry;
1753         __le64                  v;
1754         struct bch_replicas_entry r;
1755 } __attribute__((packed));
1756
1757 struct jset_entry_clock {
1758         struct jset_entry       entry;
1759         __u8                    rw;
1760         __u8                    pad[7];
1761         __le64                  time;
1762 } __attribute__((packed));
1763
1764 struct jset_entry_dev_usage_type {
1765         __le64                  buckets;
1766         __le64                  sectors;
1767         __le64                  fragmented;
1768 } __attribute__((packed));
1769
1770 struct jset_entry_dev_usage {
1771         struct jset_entry       entry;
1772         __le32                  dev;
1773         __u32                   pad;
1774
1775         __le64                  buckets_ec;
1776         __le64                  buckets_unavailable;
1777
1778         struct jset_entry_dev_usage_type d[];
1779 } __attribute__((packed));
1780
1781 static inline unsigned jset_entry_dev_usage_nr_types(struct jset_entry_dev_usage *u)
1782 {
1783         return (vstruct_bytes(&u->entry) - sizeof(struct jset_entry_dev_usage)) /
1784                 sizeof(struct jset_entry_dev_usage_type);
1785 }
1786
1787 struct jset_entry_log {
1788         struct jset_entry       entry;
1789         u8                      d[];
1790 } __attribute__((packed));
1791
1792 /*
1793  * On disk format for a journal entry:
1794  * seq is monotonically increasing; every journal entry has its own unique
1795  * sequence number.
1796  *
1797  * last_seq is the oldest journal entry that still has keys the btree hasn't
1798  * flushed to disk yet.
1799  *
1800  * version is for on disk format changes.
1801  */
1802 struct jset {
1803         struct bch_csum         csum;
1804
1805         __le64                  magic;
1806         __le64                  seq;
1807         __le32                  version;
1808         __le32                  flags;
1809
1810         __le32                  u64s; /* size of d[] in u64s */
1811
1812         __u8                    encrypted_start[0];
1813
1814         __le16                  _read_clock; /* no longer used */
1815         __le16                  _write_clock;
1816
1817         /* Sequence number of oldest dirty journal entry */
1818         __le64                  last_seq;
1819
1820
1821         union {
1822                 struct jset_entry start[0];
1823                 __u64           _data[0];
1824         };
1825 } __attribute__((packed, aligned(8)));
1826
1827 LE32_BITMASK(JSET_CSUM_TYPE,    struct jset, flags, 0, 4);
1828 LE32_BITMASK(JSET_BIG_ENDIAN,   struct jset, flags, 4, 5);
1829 LE32_BITMASK(JSET_NO_FLUSH,     struct jset, flags, 5, 6);
1830
1831 #define BCH_JOURNAL_BUCKETS_MIN         8
1832
1833 /* Btree: */
1834
1835 #define BCH_BTREE_IDS()                         \
1836         x(extents,      0)                      \
1837         x(inodes,       1)                      \
1838         x(dirents,      2)                      \
1839         x(xattrs,       3)                      \
1840         x(alloc,        4)                      \
1841         x(quotas,       5)                      \
1842         x(stripes,      6)                      \
1843         x(reflink,      7)                      \
1844         x(subvolumes,   8)                      \
1845         x(snapshots,    9)                      \
1846         x(lru,          10)                     \
1847         x(freespace,    11)                     \
1848         x(need_discard, 12)
1849
1850 enum btree_id {
1851 #define x(kwd, val) BTREE_ID_##kwd = val,
1852         BCH_BTREE_IDS()
1853 #undef x
1854         BTREE_ID_NR
1855 };
1856
1857 #define BTREE_MAX_DEPTH         4U
1858
1859 /* Btree nodes */
1860
1861 /*
1862  * Btree nodes
1863  *
1864  * On disk a btree node is a list/log of these; within each set the keys are
1865  * sorted
1866  */
1867 struct bset {
1868         __le64                  seq;
1869
1870         /*
1871          * Highest journal entry this bset contains keys for.
1872          * If on recovery we don't see that journal entry, this bset is ignored:
1873          * this allows us to preserve the order of all index updates after a
1874          * crash, since the journal records a total order of all index updates
1875          * and anything that didn't make it to the journal doesn't get used.
1876          */
1877         __le64                  journal_seq;
1878
1879         __le32                  flags;
1880         __le16                  version;
1881         __le16                  u64s; /* count of d[] in u64s */
1882
1883         union {
1884                 struct bkey_packed start[0];
1885                 __u64           _data[0];
1886         };
1887 } __attribute__((packed, aligned(8)));
1888
1889 LE32_BITMASK(BSET_CSUM_TYPE,    struct bset, flags, 0, 4);
1890
1891 LE32_BITMASK(BSET_BIG_ENDIAN,   struct bset, flags, 4, 5);
1892 LE32_BITMASK(BSET_SEPARATE_WHITEOUTS,
1893                                 struct bset, flags, 5, 6);
1894
1895 /* Sector offset within the btree node: */
1896 LE32_BITMASK(BSET_OFFSET,       struct bset, flags, 16, 32);
1897
1898 struct btree_node {
1899         struct bch_csum         csum;
1900         __le64                  magic;
1901
1902         /* this flags field is encrypted, unlike bset->flags: */
1903         __le64                  flags;
1904
1905         /* Closed interval: */
1906         struct bpos             min_key;
1907         struct bpos             max_key;
1908         struct bch_extent_ptr   _ptr; /* not used anymore */
1909         struct bkey_format      format;
1910
1911         union {
1912         struct bset             keys;
1913         struct {
1914                 __u8            pad[22];
1915                 __le16          u64s;
1916                 __u64           _data[0];
1917
1918         };
1919         };
1920 } __attribute__((packed, aligned(8)));
1921
1922 LE64_BITMASK(BTREE_NODE_ID,     struct btree_node, flags,  0,  4);
1923 LE64_BITMASK(BTREE_NODE_LEVEL,  struct btree_node, flags,  4,  8);
1924 LE64_BITMASK(BTREE_NODE_NEW_EXTENT_OVERWRITE,
1925                                 struct btree_node, flags,  8,  9);
1926 /* 9-32 unused */
1927 LE64_BITMASK(BTREE_NODE_SEQ,    struct btree_node, flags, 32, 64);
1928
1929 struct btree_node_entry {
1930         struct bch_csum         csum;
1931
1932         union {
1933         struct bset             keys;
1934         struct {
1935                 __u8            pad[22];
1936                 __le16          u64s;
1937                 __u64           _data[0];
1938
1939         };
1940         };
1941 } __attribute__((packed, aligned(8)));
1942
1943 #endif /* _BCACHEFS_FORMAT_H */