fstool 0.0.5

Build disk images and filesystems (ext2/3/4, MBR, GPT) from a directory tree and TOML spec, in the spirit of genext2fs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
//! `btree_node_phys_t` parsing.
//!
//! Reference: *Apple File System Reference*, section "B-Trees".
//!
//! ```text
//! btree_node_phys_t (header = 56 bytes)
//!    0   btn_o              obj_phys_t (32 B)
//!   32   btn_flags          u16
//!   34   btn_level          u16     0 = leaf
//!   36   btn_nkeys          u32
//!   40   btn_table_space    nloc_t  (u16 off, u16 len) — ToC area location
//!   44   btn_free_space     nloc_t
//!   48   btn_key_free_list  nloc_t
//!   52   btn_val_free_list  nloc_t
//!   56   btn_data[]                  — variable-size payload
//! ```
//!
//! Inside `btn_data[]`:
//! - The table of contents starts at offset `btn_table_space.off` (relative
//!   to the start of `btn_data[]`) and is `btn_table_space.len` bytes long.
//! - Each ToC entry is either a `kvloc_t` (8 B) or a `kvoff_t` (4 B),
//!   selected by the `BTNODE_FIXED_KV_SIZE` flag.
//! - Keys live in the area right after the ToC. Key offsets in ToC entries
//!   are *relative to the start of that key area* (i.e. growing forward).
//! - Values live at the high end of `btn_data[]`. Value offsets are
//!   *relative to the end of the data area* (growing backward). For a root
//!   node, the data area ends 40 bytes before the end of the block (the
//!   trailing `btree_info_t` lives there).
//!
//! A leaf value of 0xFFFF (in a `BTREE_ALLOW_GHOSTS` tree) means "no value".
//!
//! ## Internal nodes
//!
//! When `btn_level > 0`, the node is *internal*: every value slot holds
//! the identifier of a child node instead of payload data. For physical
//! trees (the container omap), this identifier is the child node's
//! **physical block number** (`u64`, 8 bytes). For virtual trees (the
//! per-volume fs-tree), it is a **virtual oid** (`u64`, 8 bytes) that
//! must be resolved through the volume's object map.
//!
//! The trailing `btree_info_t` at the root carries `bt_key_size` and
//! `bt_val_size` for *fixed-KV* leaves; internal nodes always store
//! 8-byte child pointers regardless of those sizes, so callers walking
//! internal nodes pass `child_ptr_size = 8` for the value length.

use std::collections::HashMap;

use super::obj::{OBJECT_TYPE_BTREE_NODE, ObjPhys};

/// `BTNODE_ROOT` — set on the root node of a tree. Root nodes have a
/// trailing `btree_info_t` in the last 40 bytes of the block.
pub const BTNODE_ROOT: u16 = 0x0001;
/// `BTNODE_LEAF` — set on leaf nodes.
pub const BTNODE_LEAF: u16 = 0x0002;
/// `BTNODE_FIXED_KV_SIZE` — set when every key and every value have the
/// same size (ToC uses 4-byte `kvoff_t` instead of 8-byte `kvloc_t`).
pub const BTNODE_FIXED_KV_SIZE: u16 = 0x0004;

/// Trailing `btree_info_t` is 40 bytes on every root node.
pub const BTREE_INFO_SIZE: usize = 40;

/// Sentinel value used in the value offset field when a key has no value
/// (only valid in `BTREE_ALLOW_GHOSTS` trees).
pub const BTOFF_INVALID: u16 = 0xFFFF;

/// A decoded `btree_node_phys_t` (only the header + ToC; key/value bytes
/// are looked up on demand via [`BTreeNode::entry_at`]).
#[derive(Debug)]
pub struct BTreeNode<'a> {
    /// Backing block bytes (length = container block size).
    block: &'a [u8],
    pub obj: ObjPhys,
    pub flags: u16,
    pub level: u16,
    pub nkeys: u32,
    /// Offset of the ToC area inside `btn_data[]`.
    pub toc_off: u16,
    pub toc_len: u16,
    /// True when every key/value is the same fixed size (uses `kvoff_t`).
    pub fixed_kv: bool,
    /// True when this is the root of the tree (trailing btree_info_t).
    pub is_root: bool,
    /// Absolute offset (inside `block`) of the start of `btn_data[]`.
    data_start: usize,
    /// Absolute offset (inside `block`) of the start of the key area
    /// (right after the ToC).
    pub keys_start: usize,
    /// Absolute offset (inside `block`) of the *end* of the value area.
    /// Values grow downward from here.
    pub vals_end: usize,
}

impl<'a> BTreeNode<'a> {
    /// Parse a B-tree node from `block` (a full container block). The
    /// caller is responsible for slicing `block` to the right length
    /// (usually 4096 bytes — see `nx_block_size`).
    pub fn decode(block: &'a [u8]) -> crate::Result<Self> {
        if block.len() < 56 {
            return Err(crate::Error::InvalidImage(
                "apfs: btree node block too small".into(),
            ));
        }
        let obj = ObjPhys::decode(block)?;
        if obj.obj_type() != OBJECT_TYPE_BTREE_NODE
            && obj.obj_type() != super::obj::OBJECT_TYPE_BTREE
        {
            return Err(crate::Error::InvalidImage(format!(
                "apfs: o_type {:#x} is not BTREE_NODE / BTREE",
                obj.obj_type()
            )));
        }
        let flags = u16::from_le_bytes(block[32..34].try_into().unwrap());
        let level = u16::from_le_bytes(block[34..36].try_into().unwrap());
        let nkeys = u32::from_le_bytes(block[36..40].try_into().unwrap());
        let toc_off = u16::from_le_bytes(block[40..42].try_into().unwrap());
        let toc_len = u16::from_le_bytes(block[42..44].try_into().unwrap());

        let data_start: usize = 56;
        let is_root = flags & BTNODE_ROOT != 0;
        let fixed_kv = flags & BTNODE_FIXED_KV_SIZE != 0;
        let keys_start = data_start
            .checked_add(toc_off as usize)
            .and_then(|v| v.checked_add(toc_len as usize))
            .ok_or_else(|| crate::Error::InvalidImage("apfs: btree ToC overflow".into()))?;
        let vals_end_raw = block.len();
        let vals_end = if is_root {
            vals_end_raw
                .checked_sub(BTREE_INFO_SIZE)
                .ok_or_else(|| crate::Error::InvalidImage("apfs: btree root too small".into()))?
        } else {
            vals_end_raw
        };
        if keys_start > vals_end {
            return Err(crate::Error::InvalidImage(
                "apfs: btree node key area collides with value area".into(),
            ));
        }

        Ok(Self {
            block,
            obj,
            flags,
            level,
            nkeys,
            toc_off,
            toc_len,
            fixed_kv,
            is_root,
            data_start,
            keys_start,
            vals_end,
        })
    }

    /// True iff this node is a leaf (records are key→value, not key→child).
    pub fn is_leaf(&self) -> bool {
        self.flags & BTNODE_LEAF != 0
    }

    /// Read the ToC entry at `index`, returning `(key_off, key_len,
    /// val_off, val_len)` where:
    /// - `key_off` is the offset *from `keys_start`* (i.e. add to it),
    /// - `val_off` is the offset *from `vals_end`* (i.e. subtract from it).
    ///
    /// For a non-fixed-KV node, the lengths come straight from the ToC.
    /// For a fixed-KV node, the caller must supply `(fixed_klen,
    /// fixed_vlen)` via [`BTreeNode::fixed_kv_size`] from the trailing
    /// `btree_info_t` — but for our read-only path we treat them as zero
    /// (we slice via the next entry's offsets or read at fixed sizes
    /// known to the caller). See [`BTreeNode::entry_at`] for the
    /// fully-resolved view used by record decoders.
    fn raw_entry(&self, index: u32) -> crate::Result<RawEntry> {
        if index >= self.nkeys {
            return Err(crate::Error::InvalidImage(format!(
                "apfs: btree index {index} >= nkeys {}",
                self.nkeys
            )));
        }
        let toc_base = self.data_start + self.toc_off as usize;
        if self.fixed_kv {
            let off = toc_base + (index as usize) * 4;
            if off + 4 > self.block.len() {
                return Err(crate::Error::InvalidImage(
                    "apfs: btree fixed-kv ToC out of bounds".into(),
                ));
            }
            let k = u16::from_le_bytes(self.block[off..off + 2].try_into().unwrap());
            let v = u16::from_le_bytes(self.block[off + 2..off + 4].try_into().unwrap());
            Ok(RawEntry {
                key_off: k,
                key_len: None,
                val_off: v,
                val_len: None,
            })
        } else {
            let off = toc_base + (index as usize) * 8;
            if off + 8 > self.block.len() {
                return Err(crate::Error::InvalidImage(
                    "apfs: btree var-kv ToC out of bounds".into(),
                ));
            }
            let ko = u16::from_le_bytes(self.block[off..off + 2].try_into().unwrap());
            let kl = u16::from_le_bytes(self.block[off + 2..off + 4].try_into().unwrap());
            let vo = u16::from_le_bytes(self.block[off + 4..off + 6].try_into().unwrap());
            let vl = u16::from_le_bytes(self.block[off + 6..off + 8].try_into().unwrap());
            Ok(RawEntry {
                key_off: ko,
                key_len: Some(kl),
                val_off: vo,
                val_len: Some(vl),
            })
        }
    }

    /// Iterate over `(key_bytes, value_bytes)` slices for every entry in
    /// this node. For fixed-KV nodes we expect callers to know the fixed
    /// key and value sizes (passed as `(klen, vlen)`); the trailing
    /// `btree_info_t` carries them at offsets 32 and 36 respectively. For
    /// variable-KV nodes the lengths come from the ToC, so we pass dummy
    /// zeros.
    ///
    /// Ghost entries (val_off == 0xFFFF) yield an empty value slice.
    pub fn entries(
        &self,
        fixed_klen: usize,
        fixed_vlen: usize,
    ) -> impl Iterator<Item = crate::Result<(&'a [u8], &'a [u8])>> + '_ {
        (0..self.nkeys).map(move |i| self.entry_at(i, fixed_klen, fixed_vlen))
    }

    /// Resolve the i-th entry into key / value byte slices over the
    /// underlying block. See [`BTreeNode::entries`] for `fixed_*` semantics.
    pub fn entry_at(
        &self,
        index: u32,
        fixed_klen: usize,
        fixed_vlen: usize,
    ) -> crate::Result<(&'a [u8], &'a [u8])> {
        let e = self.raw_entry(index)?;
        let klen = e.key_len.map(usize::from).unwrap_or(fixed_klen);
        let kstart = self
            .keys_start
            .checked_add(e.key_off as usize)
            .ok_or_else(|| crate::Error::InvalidImage("apfs: btree key offset overflow".into()))?;
        let kend = kstart
            .checked_add(klen)
            .ok_or_else(|| crate::Error::InvalidImage("apfs: btree key length overflow".into()))?;
        if kend > self.vals_end {
            return Err(crate::Error::InvalidImage(
                "apfs: btree key extends past value area".into(),
            ));
        }
        let key = &self.block[kstart..kend];

        let val: &[u8] = if e.val_off == BTOFF_INVALID {
            &[]
        } else {
            let vlen = e.val_len.map(usize::from).unwrap_or(fixed_vlen);
            // Per spec: `v.off` is the value's offset *measured backward
            // from `vals_end`*, and the value extends forward from there
            // for `v.len` bytes. So vstart = vals_end - v.off and
            // vend = vstart + v.len.
            let vstart = self
                .vals_end
                .checked_sub(e.val_off as usize)
                .ok_or_else(|| {
                    crate::Error::InvalidImage("apfs: btree value offset underflow".into())
                })?;
            let vend = vstart.checked_add(vlen).ok_or_else(|| {
                crate::Error::InvalidImage("apfs: btree value length overflow".into())
            })?;
            if vstart < self.keys_start || vend > self.vals_end {
                return Err(crate::Error::InvalidImage(
                    "apfs: btree value extends outside data area".into(),
                ));
            }
            &self.block[vstart..vend]
        };
        Ok((key, val))
    }

    /// Read the trailing `btree_info_t.bt_fixed.bt_key_size` and
    /// `bt_val_size` fields. Only meaningful on a root node with fixed KVs.
    ///
    /// ```text
    /// btree_info_fixed_t (32 B) at block_end - 40
    ///    0  bt_flags         u32
    ///    4  bt_node_size     u32
    ///    8  bt_key_size      u32
    ///   12  bt_val_size      u32
    /// btree_info_t (40 B) at block_end - 40
    ///    0  bt_fixed         btree_info_fixed_t (16 B)
    ///   16  bt_longest_key   u32
    ///   20  bt_longest_val   u32
    ///   24  bt_key_count     u64
    ///   32  bt_node_count    u64
    /// ```
    pub fn fixed_kv_size(&self) -> Option<(usize, usize)> {
        if !self.is_root {
            return None;
        }
        let off = self.block.len().checked_sub(BTREE_INFO_SIZE)?;
        if off + 16 > self.block.len() {
            return None;
        }
        let key_size = u32::from_le_bytes(self.block[off + 8..off + 12].try_into().unwrap());
        let val_size = u32::from_le_bytes(self.block[off + 12..off + 16].try_into().unwrap());
        Some((key_size as usize, val_size as usize))
    }
}

/// A raw ToC entry. `key_len` / `val_len` are `None` for fixed-KV nodes.
#[derive(Debug, Clone, Copy)]
struct RawEntry {
    key_off: u16,
    key_len: Option<u16>,
    val_off: u16,
    val_len: Option<u16>,
}

/// Internal-node child-pointer size: every internal node's value slot
/// holds an 8-byte object identifier (physical block address for a
/// physical tree, virtual oid for a virtual tree).
pub const CHILD_PTR_SIZE: usize = 8;

impl<'a> BTreeNode<'a> {
    /// Convenience for internal nodes: read the i-th entry as
    /// `(key_bytes, child_oid_u64)`. The value slot must be exactly 8
    /// bytes — the spec guarantees this for internal nodes regardless of
    /// the leaf-payload `bt_val_size`. Use this on any node where
    /// `is_leaf()` is false.
    pub fn child_entry_at(&self, index: u32, fixed_klen: usize) -> crate::Result<(&'a [u8], u64)> {
        let (kb, vb) = self.entry_at(index, fixed_klen, CHILD_PTR_SIZE)?;
        if vb.len() < CHILD_PTR_SIZE {
            return Err(crate::Error::InvalidImage(format!(
                "apfs: internal node value slot {} too small (got {}, need {})",
                index,
                vb.len(),
                CHILD_PTR_SIZE
            )));
        }
        let oid = u64::from_le_bytes(vb[..8].try_into().unwrap());
        Ok((kb, oid))
    }
}

/// A small fixed-capacity LRU cache, keyed by physical block address.
/// We use this to avoid re-fetching B-tree nodes during a single tree
/// walk while honouring the streaming invariant. Capacity is bounded so
/// the cache never grows unbounded over long range scans.
///
/// Implementation: a `HashMap<u64, (Vec<u8>, u64)>` where the second
/// `u64` is a monotonic access counter; on insert past capacity we
/// evict the entry with the smallest counter. This is O(n) on eviction
/// but `n` is tiny (default 64) and evictions are rare relative to
/// hits, so it's fine.
#[derive(Debug)]
pub struct NodeCache {
    cap: usize,
    tick: u64,
    map: HashMap<u64, (Vec<u8>, u64)>,
}

impl NodeCache {
    /// Default capacity used by the multi-level walkers.
    pub const DEFAULT_CAP: usize = 64;

    /// Create a cache with the given capacity. A capacity of zero
    /// disables caching: `get` always misses and `put` is a no-op.
    pub fn new(cap: usize) -> Self {
        Self {
            cap,
            tick: 0,
            map: HashMap::new(),
        }
    }

    /// Fetch a cached block by physical address. Bumps the recency
    /// counter on hit.
    pub fn get(&mut self, paddr: u64) -> Option<&[u8]> {
        if self.cap == 0 {
            return None;
        }
        self.tick = self.tick.wrapping_add(1);
        let tick = self.tick;
        let entry = self.map.get_mut(&paddr)?;
        entry.1 = tick;
        Some(&entry.0)
    }

    /// Insert a block. Evicts the least-recently-used entry when full.
    pub fn put(&mut self, paddr: u64, block: Vec<u8>) {
        if self.cap == 0 {
            return;
        }
        self.tick = self.tick.wrapping_add(1);
        if !self.map.contains_key(&paddr) && self.map.len() >= self.cap {
            // Evict LRU.
            if let Some((&victim, _)) = self.map.iter().min_by_key(|(_, (_, t))| *t) {
                self.map.remove(&victim);
            }
        }
        self.map.insert(paddr, (block, self.tick));
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::fs::apfs::obj::OBJECT_TYPE_BTREE_NODE;

    /// Hand-craft a 256-byte non-root, leaf, variable-KV B-tree node with
    /// two entries and confirm we can read both back.
    #[test]
    fn decode_variable_kv_leaf() {
        let block_size = 256usize;
        let mut block = vec![0u8; block_size];
        // obj_phys: cksum zero, oid 1, type BTREE_NODE.
        block[24..28].copy_from_slice(&OBJECT_TYPE_BTREE_NODE.to_le_bytes());
        // header
        block[32..34].copy_from_slice(&BTNODE_LEAF.to_le_bytes()); // flags = leaf only
        block[34..36].copy_from_slice(&0u16.to_le_bytes()); // level
        block[36..40].copy_from_slice(&2u32.to_le_bytes()); // nkeys = 2

        // ToC at btn_data[0..] = block[56..]. Two kvloc_t entries = 16 B.
        // Keys area starts at block[56+16] = block[72].
        // First key: "AA" (2 B) at key_off 0, len 2.
        // Second key: "BB" (2 B) at key_off 2, len 2.
        // Values are at the end of the block; first value bytes "vv" (2 B)
        // at the very end (val_off = 2 measuring backward), second value
        // "VV" (2 B) at val_off 4.
        block[40..42].copy_from_slice(&0u16.to_le_bytes()); // table_space.off
        block[42..44].copy_from_slice(&16u16.to_le_bytes()); // table_space.len

        // ToC entry 0: kvloc { k.off=0, k.len=2, v.off=2, v.len=2 }
        let toc_base = 56;
        block[toc_base..toc_base + 2].copy_from_slice(&0u16.to_le_bytes()); // k.off
        block[toc_base + 2..toc_base + 4].copy_from_slice(&2u16.to_le_bytes()); // k.len
        block[toc_base + 4..toc_base + 6].copy_from_slice(&2u16.to_le_bytes()); // v.off
        block[toc_base + 6..toc_base + 8].copy_from_slice(&2u16.to_le_bytes()); // v.len
        // ToC entry 1: kvloc { k.off=2, k.len=2, v.off=4, v.len=2 }
        block[toc_base + 8..toc_base + 10].copy_from_slice(&2u16.to_le_bytes());
        block[toc_base + 10..toc_base + 12].copy_from_slice(&2u16.to_le_bytes());
        block[toc_base + 12..toc_base + 14].copy_from_slice(&4u16.to_le_bytes());
        block[toc_base + 14..toc_base + 16].copy_from_slice(&2u16.to_le_bytes());

        // Keys.
        let keys_start = toc_base + 16; // 72
        block[keys_start..keys_start + 2].copy_from_slice(b"AA");
        block[keys_start + 2..keys_start + 4].copy_from_slice(b"BB");

        // Values, growing from end of block.
        let vend = block_size;
        block[vend - 2..vend].copy_from_slice(b"vv");
        block[vend - 4..vend - 2].copy_from_slice(b"VV");

        let node = BTreeNode::decode(&block).unwrap();
        assert!(node.is_leaf());
        assert!(!node.fixed_kv);
        assert!(!node.is_root);
        assert_eq!(node.nkeys, 2);
        let (k0, v0) = node.entry_at(0, 0, 0).unwrap();
        let (k1, v1) = node.entry_at(1, 0, 0).unwrap();
        assert_eq!(k0, b"AA");
        assert_eq!(v0, b"vv");
        assert_eq!(k1, b"BB");
        assert_eq!(v1, b"VV");
    }

    /// Verify the LRU cache evicts the oldest entry when capacity is hit.
    #[test]
    fn node_cache_evicts_lru() {
        let mut c = NodeCache::new(2);
        c.put(1, vec![1]);
        c.put(2, vec![2]);
        // Touch 1 so it becomes more recent than 2.
        assert!(c.get(1).is_some());
        c.put(3, vec![3]); // should evict 2
        assert!(c.get(2).is_none());
        assert!(c.get(1).is_some());
        assert!(c.get(3).is_some());
    }

    /// A zero-cap cache is a no-op: get always misses, put doesn't store.
    #[test]
    fn node_cache_zero_cap_no_op() {
        let mut c = NodeCache::new(0);
        c.put(1, vec![1, 2, 3]);
        assert!(c.get(1).is_none());
    }

    /// Build a fixed-KV internal node with 8-byte child pointers and
    /// confirm `child_entry_at` returns the right oid.
    #[test]
    fn child_entry_reads_8byte_oid() {
        let block_size = 512usize;
        let mut block = vec![0u8; block_size];
        block[24..28].copy_from_slice(&OBJECT_TYPE_BTREE_NODE.to_le_bytes());
        // ROOT, NOT leaf, FIXED_KV. Keys 16, "values" 8 (per spec internal
        // node values are always 8-byte child pointers regardless of
        // bt_val_size which describes the leaf payload).
        let flags = BTNODE_ROOT | BTNODE_FIXED_KV_SIZE;
        block[32..34].copy_from_slice(&flags.to_le_bytes());
        block[34..36].copy_from_slice(&1u16.to_le_bytes()); // level
        block[36..40].copy_from_slice(&2u32.to_le_bytes()); // nkeys = 2
        block[40..42].copy_from_slice(&0u16.to_le_bytes()); // toc_off
        block[42..44].copy_from_slice(&8u16.to_le_bytes()); // toc_len (2 kvoff)

        // ToC: two kvoff_t entries (4B each)
        let toc_base = 56;
        block[toc_base..toc_base + 2].copy_from_slice(&0u16.to_le_bytes()); // k.off
        block[toc_base + 2..toc_base + 4].copy_from_slice(&8u16.to_le_bytes()); // v.off
        block[toc_base + 4..toc_base + 6].copy_from_slice(&16u16.to_le_bytes()); // k.off
        block[toc_base + 6..toc_base + 8].copy_from_slice(&16u16.to_le_bytes()); // v.off
        // Keys area starts at toc_base + 8 = 64.
        // We don't care about key bytes for this test.
        // Values: vals_end is at block_size - 40 (root). Two 8-byte child
        // pointers: first at vals_end-8 (offset 8), second at vals_end-16
        // (offset 16).
        let vals_end = block_size - BTREE_INFO_SIZE;
        block[vals_end - 8..vals_end].copy_from_slice(&0x100u64.to_le_bytes());
        block[vals_end - 16..vals_end - 8].copy_from_slice(&0x200u64.to_le_bytes());
        // Populate bt_key_size = 16, bt_val_size = 16 (the leaf would carry
        // 16-byte values; internal nodes still store 8-byte child ptrs).
        let info_off = block_size - BTREE_INFO_SIZE;
        block[info_off + 8..info_off + 12].copy_from_slice(&16u32.to_le_bytes());
        block[info_off + 12..info_off + 16].copy_from_slice(&16u32.to_le_bytes());

        let node = BTreeNode::decode(&block).unwrap();
        assert!(!node.is_leaf());
        let (_k0, c0) = node.child_entry_at(0, 16).unwrap();
        let (_k1, c1) = node.child_entry_at(1, 16).unwrap();
        assert_eq!(c0, 0x100);
        assert_eq!(c1, 0x200);
    }

    /// Hand-craft a fixed-KV root node (e.g. an omap node) with one entry.
    /// Keys are 16 bytes, values 16 bytes — matching real omap layouts.
    #[test]
    fn decode_fixed_kv_root() {
        let block_size = 512usize;
        let mut block = vec![0u8; block_size];
        block[24..28].copy_from_slice(&OBJECT_TYPE_BTREE_NODE.to_le_bytes());
        let flags = BTNODE_ROOT | BTNODE_LEAF | BTNODE_FIXED_KV_SIZE;
        block[32..34].copy_from_slice(&flags.to_le_bytes());
        block[36..40].copy_from_slice(&1u32.to_le_bytes()); // nkeys
        block[40..42].copy_from_slice(&0u16.to_le_bytes()); // table_space.off
        block[42..44].copy_from_slice(&4u16.to_le_bytes()); // table_space.len (one kvoff_t)

        // Single kvoff_t: k=0, v=16
        let toc_base = 56;
        block[toc_base..toc_base + 2].copy_from_slice(&0u16.to_le_bytes());
        block[toc_base + 2..toc_base + 4].copy_from_slice(&16u16.to_le_bytes());

        // Keys area starts at 56+4 = 60.
        let keys_start = 60;
        for (i, b) in block.iter_mut().enumerate().skip(keys_start).take(16) {
            *b = (i as u8).wrapping_add(0x10);
        }
        // Value area ends 40 bytes before block end (root has trailing
        // btree_info_t). Value bytes occupy [vals_end-16, vals_end).
        let vals_end = block_size - BTREE_INFO_SIZE;
        for (i, b) in block[vals_end - 16..vals_end].iter_mut().enumerate() {
            *b = (i as u8).wrapping_add(0xa0);
        }

        // Populate btree_info.bt_fixed.bt_key_size = 16, bt_val_size = 16.
        let info_off = block_size - BTREE_INFO_SIZE;
        block[info_off + 8..info_off + 12].copy_from_slice(&16u32.to_le_bytes());
        block[info_off + 12..info_off + 16].copy_from_slice(&16u32.to_le_bytes());

        let node = BTreeNode::decode(&block).unwrap();
        assert!(node.fixed_kv);
        assert!(node.is_root);
        let (klen, vlen) = node.fixed_kv_size().unwrap();
        assert_eq!((klen, vlen), (16, 16));
        let (k, v) = node.entry_at(0, klen, vlen).unwrap();
        assert_eq!(k.len(), 16);
        assert_eq!(v.len(), 16);
        assert_eq!(k[0], 0x10 + keys_start as u8);
        assert_eq!(v[0], 0xa0);
    }
}