zakura-state 6.1.0

State contextual verification and storage code for the Zakura node. Internal crate, published to support cargo install zakura
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
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
//! Reading note commitment trees.
//!
//! In the functions in this module:
//!
//! The block write task commits blocks to the finalized state before updating
//! `chain` with a cached copy of the best non-finalized chain from
//! `NonFinalizedState.chain_set`. Then the block commit task can commit additional blocks to
//! the finalized state after we've cloned the `chain`.
//!
//! This means that some blocks can be in both:
//! - the cached [`Chain`], and
//! - the shared finalized [`ZakuraDb`] reference.

use std::{collections::BTreeMap, sync::Arc};

use zakura_chain::{
    block, ironwood, orchard,
    parameters::NetworkUpgrade,
    sapling,
    subtree::{NoteCommitmentSubtreeData, NoteCommitmentSubtreeIndex, TRACKED_SUBTREE_HEIGHT},
};

use crate::{
    error::{
        HistoricalSubtreeUnavailable, HistoricalSubtreeUnavailableReason, HistoricalTreeUnavailable,
    },
    service::{
        finalized_state::{embedded_last_checkpoint_leaf_counts, ZakuraDb},
        non_finalized_state::Chain,
    },
    HashOrHeight,
};

// Doc-only items
#[allow(unused_imports)]
use zakura_chain::subtree::NoteCommitmentSubtree;

/// Returns `tree` if it exists, or the consensus-defined empty frontier before `pool_activation`.
///
/// Returns an error if the tree was never written because `db` was built by the
/// verified-commitment-trees fast-sync path and `hash_or_height` falls in the absent band `[U, H)`.
fn resolve_historical_tree<Tree: Default>(
    db: &ZakuraDb,
    hash_or_height: HashOrHeight,
    pool_activation: NetworkUpgrade,
    tree: Option<Tree>,
) -> Result<Option<Tree>, HistoricalTreeUnavailable> {
    if tree.is_some() {
        return Ok(tree);
    }

    // An empty frontier is only an answer for a block this node has. Both arms resolve through an
    // index column family (`height_by_hash` and `hash_by_height`), which pruning retains — it
    // removes only the `tx_by_loc` bodies. Keep it that way: a body-backed probe such as
    // `contains_body_at_height` would report every pruned block as absent, silently turning a
    // pre-activation empty frontier back into a "missing tree" error in pruned storage mode.
    let Some(height) = (match hash_or_height {
        HashOrHeight::Hash(hash) => db.height(hash),
        HashOrHeight::Height(height) => db.contains_height(height).then_some(height),
    }) else {
        return Ok(None);
    };

    if pool_activation
        .activation_height(&db.network())
        .is_none_or(|activation| height < activation)
    {
        return Ok(Some(Default::default()));
    }

    match db.vct_synced_below() {
        Some(last_checkpoint) if db.vct_tree_absent(height) => Err(HistoricalTreeUnavailable {
            hash_or_height,
            last_checkpoint,
        }),
        _ => Ok(None),
    }
}

/// Returns `true` if the subtree at `start_index` completed at or below the last checkpoint,
/// given `last_checkpoint_leaves`, the pool's note commitment count at the last checkpoint height.
///
/// Subtrees complete at every multiple of `1 << TRACKED_SUBTREE_HEIGHT` leaves, so the leaf
/// count floor-divides to the number of subtrees completed by then, and index `i` is one of
/// them exactly when `i` is below that count.
pub(crate) fn subtree_completed_by_last_checkpoint(
    start_index: NoteCommitmentSubtreeIndex,
    last_checkpoint_leaves: u64,
) -> bool {
    u64::from(start_index) < (last_checkpoint_leaves >> TRACKED_SUBTREE_HEIGHT)
}

/// Returns `true` while the finalized tip has not reached the last checkpoint.
pub(crate) fn is_syncing_below_last_checkpoint(
    finalized_tip: Option<block::Height>,
    last_checkpoint: block::Height,
) -> bool {
    finalized_tip.is_some_and(|tip| tip < last_checkpoint)
}

/// Returns an error if the served run stops short of a subtree that exists on this chain but
/// this node cannot supply.
///
/// `first_missing` is the lowest index the served run does not cover: `start_index` when nothing
/// was served, otherwise one past the end of the contiguous run. `last_checkpoint_leaves` reads
/// the pool's commitment count at the last checkpoint, which bounds the indexes the fast path
/// could have skipped: anything at or above it completed after the last checkpoint and is
/// genuinely absent on any node, so a client asking past the tip still gets today's empty list.
///
/// # Correctness
///
/// Checking only that `start_index` was served is not enough. `z_getsubtreesbyindex` returns one
/// contiguous run, so a gap anywhere in it truncates the response — and a single unbounded request
/// from index 0 would then return a short list with no error, which a client reads as "that is
/// every subtree on this chain". That is the same silent-truncation failure the typed errors exist
/// to remove, just arriving through a truncated artifact instead of an absent one.
fn check_historical_subtree_available(
    db: &ZakuraDb,
    pool: &'static str,
    first_missing: Option<NoteCommitmentSubtreeIndex>,
    authenticated_last_checkpoint_leaves: impl FnOnce(&ZakuraDb, block::Height) -> Option<u64>,
    last_checkpoint_leaves: impl FnOnce(&ZakuraDb, block::Height) -> Option<u64>,
) -> Result<(), HistoricalSubtreeUnavailable> {
    // No gap: either the run covered everything asked for, or it ran past the last possible index.
    let Some(first_missing) = first_missing else {
        return Ok(());
    };

    let Some(last_checkpoint) = db.vct_synced_below() else {
        return Ok(());
    };

    // The embedded final frontier is authenticated before fast sync begins, so its leaf count can
    // bound skipped subtrees even while the finalized tip is still below the last checkpoint.
    if let Some(leaves) = authenticated_last_checkpoint_leaves(db, last_checkpoint) {
        return if subtree_completed_by_last_checkpoint(first_missing, leaves) {
            Err(HistoricalSubtreeUnavailable {
                pool,
                index: first_missing,
                last_checkpoint,
                reason: HistoricalSubtreeUnavailableReason::NotStored,
            })
        } else {
            Ok(())
        };
    }

    // The durable last-checkpoint marker is written by the first fast-path commit, so it exists
    // throughout an ordinary fast sync even though the last checkpoint height is still above the
    // finalized tip. If no matching authenticated frontier is available, do not run
    // `last_checkpoint_leaves`: its backward search has no tip guard and can return a row below the
    // unreached last checkpoint.
    if is_syncing_below_last_checkpoint(db.finalized_tip_height(), last_checkpoint) {
        tracing::debug!(
            pool,
            ?last_checkpoint,
            "last checkpoint has not been reached; refusing to serve incomplete subtrees",
        );

        return Err(HistoricalSubtreeUnavailable {
            pool,
            index: first_missing,
            last_checkpoint,
            reason: HistoricalSubtreeUnavailableReason::Indeterminate,
        });
    }

    // Without the last checkpoint leaf count there is no way to tell a skipped subtree from one that
    // never existed, so fail closed. Reporting the archive-mode error for a subtree that was
    // genuinely never completed is a visible, diagnosable wrong answer; serving a truncated list
    // is the silent one this whole path exists to remove. Once the tip reaches the last checkpoint,
    // its tree is outside the absent band and must be present.
    let Some(leaves) = last_checkpoint_leaves(db, last_checkpoint) else {
        tracing::error!(
            pool,
            ?last_checkpoint,
            "no note commitment tree at the last checkpoint, so completed subtrees cannot be \
             distinguished from absent ones; refusing to serve",
        );
        metrics::counter!("state.historical_tree.last_checkpoint_tree_missing").increment(1);

        return Err(HistoricalSubtreeUnavailable {
            pool,
            index: first_missing,
            last_checkpoint,
            reason: HistoricalSubtreeUnavailableReason::NotStored,
        });
    };

    if subtree_completed_by_last_checkpoint(first_missing, leaves) {
        Err(HistoricalSubtreeUnavailable {
            pool,
            index: first_missing,
            last_checkpoint,
            reason: HistoricalSubtreeUnavailableReason::NotStored,
        })
    } else {
        Ok(())
    }
}

/// Returns the lowest index in `[start_index, end_index)` that `subtrees` does not serve, or
/// `None` when the run covers the whole request.
///
/// Scans the returned keys in order so an internal gap is detected even when later subtrees are
/// present.
pub(crate) fn first_missing_subtree_index<Node>(
    subtrees: &BTreeMap<NoteCommitmentSubtreeIndex, NoteCommitmentSubtreeData<Node>>,
    start_index: NoteCommitmentSubtreeIndex,
    end_index: Option<NoteCommitmentSubtreeIndex>,
) -> Option<NoteCommitmentSubtreeIndex> {
    let mut first_missing = start_index;

    for index in subtrees.keys() {
        if *index != first_missing {
            break;
        }

        // `u16::MAX` is the last index that can exist, so a run reaching it has no successor to
        // be missing.
        first_missing = NoteCommitmentSubtreeIndex(first_missing.0.checked_add(1)?);
    }

    // An index the client did not ask for is not missing from its answer.
    match end_index {
        Some(end) if first_missing >= end => None,
        _ => Some(first_missing),
    }
}

/// Returns an error if the Sapling subtree list `subtrees` is missing `start_index` because it
/// completed inside the verified-commitment-trees absent band.
///
/// See [`check_historical_subtree_available`].
fn check_historical_sapling_subtrees_available(
    db: &ZakuraDb,
    start_index: NoteCommitmentSubtreeIndex,
    end_index: Option<NoteCommitmentSubtreeIndex>,
    subtrees: &BTreeMap<
        NoteCommitmentSubtreeIndex,
        NoteCommitmentSubtreeData<sapling_crypto::Node>,
    >,
) -> Result<(), HistoricalSubtreeUnavailable> {
    check_historical_subtree_available(
        db,
        "sapling",
        first_missing_subtree_index(subtrees, start_index, end_index),
        |db, last_checkpoint| {
            embedded_last_checkpoint_leaf_counts(&db.network(), last_checkpoint)
                .map(|(sapling, _, _)| sapling)
        },
        |db, last_checkpoint| {
            // Sparse-tree dedup only omits the last checkpoint row when an older frontier is identical.
            db.latest_stored_sapling_tree(&last_checkpoint)
                .map(|tree| tree.count())
        },
    )
}

/// Returns an error if the Orchard subtree list `subtrees` is missing `start_index` because it
/// completed inside the verified-commitment-trees absent band.
///
/// See [`check_historical_subtree_available`].
fn check_historical_orchard_subtrees_available(
    db: &ZakuraDb,
    start_index: NoteCommitmentSubtreeIndex,
    end_index: Option<NoteCommitmentSubtreeIndex>,
    subtrees: &BTreeMap<NoteCommitmentSubtreeIndex, NoteCommitmentSubtreeData<orchard::tree::Node>>,
) -> Result<(), HistoricalSubtreeUnavailable> {
    check_historical_subtree_available(
        db,
        "orchard",
        first_missing_subtree_index(subtrees, start_index, end_index),
        |db, last_checkpoint| {
            embedded_last_checkpoint_leaf_counts(&db.network(), last_checkpoint)
                .map(|(_, orchard, _)| orchard)
        },
        |db, last_checkpoint| {
            // Sparse-tree dedup only omits the last checkpoint row when an older frontier is identical.
            db.latest_stored_orchard_tree(&last_checkpoint)
                .map(|tree| tree.count())
        },
    )
}

/// Returns an error if the Ironwood subtree list `subtrees` is missing `start_index` because it
/// completed inside the verified-commitment-trees absent band.
///
/// See [`check_historical_subtree_available`].
fn check_historical_ironwood_subtrees_available(
    db: &ZakuraDb,
    start_index: NoteCommitmentSubtreeIndex,
    end_index: Option<NoteCommitmentSubtreeIndex>,
    subtrees: &BTreeMap<
        NoteCommitmentSubtreeIndex,
        NoteCommitmentSubtreeData<ironwood::tree::Node>,
    >,
) -> Result<(), HistoricalSubtreeUnavailable> {
    check_historical_subtree_available(
        db,
        "ironwood",
        first_missing_subtree_index(subtrees, start_index, end_index),
        |db, last_checkpoint| {
            embedded_last_checkpoint_leaf_counts(&db.network(), last_checkpoint)
                .map(|(_, _, ironwood)| ironwood)
        },
        |db, last_checkpoint| {
            // Sparse-tree dedup only omits the last checkpoint row when an older frontier is identical.
            db.latest_stored_ironwood_tree(&last_checkpoint)
                .map(|tree| tree.count())
        },
    )
}

/// Returns the Sapling
/// [`NoteCommitmentTree`](sapling::tree::NoteCommitmentTree) specified by a
/// hash or height, if it exists in the non-finalized `chain` or finalized `db`.
pub fn sapling_tree<C>(
    chain: Option<C>,
    db: &ZakuraDb,
    hash_or_height: HashOrHeight,
) -> Result<Option<Arc<sapling::tree::NoteCommitmentTree>>, HistoricalTreeUnavailable>
where
    C: AsRef<Chain>,
{
    // # Correctness
    //
    // Since sapling treestates are the same in the finalized and non-finalized
    // state, we check the most efficient alternative first. (`chain` is always
    // in memory, but `db` stores blocks on disk, with a memory cache.)
    let tree = chain
        .and_then(|chain| chain.as_ref().sapling_tree(hash_or_height))
        .or_else(|| db.sapling_tree_by_hash_or_height(hash_or_height));

    resolve_historical_tree(db, hash_or_height, NetworkUpgrade::Sapling, tree)
}

/// Returns a list of Sapling [`NoteCommitmentSubtree`]s with indexes in the provided range.
///
/// If there is no subtree at the first index in the range, the returned list is empty.
/// Otherwise, subtrees are continuous up to the finalized tip.
///
/// See [`subtrees`] for more details.
pub fn sapling_subtrees<C>(
    chain: Option<C>,
    db: &ZakuraDb,
    range: impl std::ops::RangeBounds<NoteCommitmentSubtreeIndex> + Clone,
) -> Result<
    BTreeMap<NoteCommitmentSubtreeIndex, NoteCommitmentSubtreeData<sapling_crypto::Node>>,
    HistoricalSubtreeUnavailable,
>
where
    C: AsRef<Chain>,
{
    let (start_index, end_index) = subtree_range_bounds(&range);
    let subtrees = subtrees(
        chain,
        range,
        |chain, range| chain.sapling_subtrees_in_range(range),
        |range| db.sapling_subtree_list_by_index_range(range),
    );

    if let Some(start_index) = start_index {
        check_historical_sapling_subtrees_available(db, start_index, end_index, &subtrees)?;
    }

    Ok(subtrees)
}

/// Returns the Orchard
/// [`NoteCommitmentTree`](orchard::tree::NoteCommitmentTree) specified by a
/// hash or height, if it exists in the non-finalized `chain` or finalized `db`.
pub fn orchard_tree<C>(
    chain: Option<C>,
    db: &ZakuraDb,
    hash_or_height: HashOrHeight,
) -> Result<Option<Arc<orchard::tree::NoteCommitmentTree>>, HistoricalTreeUnavailable>
where
    C: AsRef<Chain>,
{
    // # Correctness
    //
    // Since orchard treestates are the same in the finalized and non-finalized
    // state, we check the most efficient alternative first. (`chain` is always
    // in memory, but `db` stores blocks on disk, with a memory cache.)
    let tree = chain
        .and_then(|chain| chain.as_ref().orchard_tree(hash_or_height))
        .or_else(|| db.orchard_tree_by_hash_or_height(hash_or_height));

    resolve_historical_tree(db, hash_or_height, NetworkUpgrade::Nu5, tree)
}

/// Returns a list of Orchard [`NoteCommitmentSubtree`]s with indexes in the provided range.
///
/// If there is no subtree at the first index in the range, the returned list is empty.
/// Otherwise, subtrees are continuous up to the finalized tip.
///
/// See [`subtrees`] for more details.
pub fn orchard_subtrees<C>(
    chain: Option<C>,
    db: &ZakuraDb,
    range: impl std::ops::RangeBounds<NoteCommitmentSubtreeIndex> + Clone,
) -> Result<
    BTreeMap<NoteCommitmentSubtreeIndex, NoteCommitmentSubtreeData<orchard::tree::Node>>,
    HistoricalSubtreeUnavailable,
>
where
    C: AsRef<Chain>,
{
    let (start_index, end_index) = subtree_range_bounds(&range);
    let subtrees = subtrees(
        chain,
        range,
        |chain, range| chain.orchard_subtrees_in_range(range),
        |range| db.orchard_subtree_list_by_index_range(range),
    );

    if let Some(start_index) = start_index {
        check_historical_orchard_subtrees_available(db, start_index, end_index, &subtrees)?;
    }

    Ok(subtrees)
}

/// Returns the Ironwood
/// [`NoteCommitmentTree`](ironwood::tree::NoteCommitmentTree) specified by a
/// hash or height, if it exists in the non-finalized `chain` or finalized `db`.
pub fn ironwood_tree<C>(
    chain: Option<C>,
    db: &ZakuraDb,
    hash_or_height: HashOrHeight,
) -> Result<Option<Arc<ironwood::tree::NoteCommitmentTree>>, HistoricalTreeUnavailable>
where
    C: AsRef<Chain>,
{
    let tree = chain
        .and_then(|chain| chain.as_ref().ironwood_tree(hash_or_height))
        .or_else(|| db.ironwood_tree_by_hash_or_height(hash_or_height));

    resolve_historical_tree(db, hash_or_height, NetworkUpgrade::Nu6_3, tree)
}

/// Returns a list of Ironwood [`NoteCommitmentSubtree`]s with indexes in the
/// provided range.
///
/// If there is no subtree at the first index in the range, the returned list is
/// empty. Otherwise, subtrees are continuous up to the finalized tip.
///
/// See [`subtrees`] for more details.
pub fn ironwood_subtrees<C>(
    chain: Option<C>,
    db: &ZakuraDb,
    range: impl std::ops::RangeBounds<NoteCommitmentSubtreeIndex> + Clone,
) -> Result<
    BTreeMap<NoteCommitmentSubtreeIndex, NoteCommitmentSubtreeData<ironwood::tree::Node>>,
    HistoricalSubtreeUnavailable,
>
where
    C: AsRef<Chain>,
{
    let (start_index, end_index) = subtree_range_bounds(&range);
    let subtrees = subtrees(
        chain,
        range,
        |chain, range| chain.ironwood_subtrees_in_range(range),
        |range| db.ironwood_subtree_list_by_index_range(range),
    );

    if let Some(start_index) = start_index {
        check_historical_ironwood_subtrees_available(db, start_index, end_index, &subtrees)?;
    }

    Ok(subtrees)
}

/// Returns the first requested subtree index and the exclusive end bound.
fn subtree_range_bounds(
    range: &impl std::ops::RangeBounds<NoteCommitmentSubtreeIndex>,
) -> (
    Option<NoteCommitmentSubtreeIndex>,
    Option<NoteCommitmentSubtreeIndex>,
) {
    use std::ops::Bound::*;

    let start = match range.start_bound().cloned() {
        Included(start) => Some(start),
        Excluded(start) => start.0.checked_add(1).map(Into::into),
        Unbounded => Some(0.into()),
    };
    let end = match range.end_bound().cloned() {
        Included(end) => end.0.checked_add(1).map(Into::into),
        Excluded(end) => Some(end),
        Unbounded => None,
    };

    (start, end)
}

/// Returns a list of [`NoteCommitmentSubtree`]s in the provided range.
///
/// If there is no subtree at the first index in the range, the returned list is empty.
/// Otherwise, subtrees are continuous up to the finalized tip.
///
/// Accepts a `chain` from the non-finalized state, a `range` of subtree indexes to retrieve,
/// a `read_chain` function for retrieving the `range` of subtrees from `chain`, and
/// a `read_disk` function for retrieving the `range` from [`ZakuraDb`].
///
/// Returns a consistent set of subtrees for the supplied chain fork and database.
/// Avoids reading the database if the subtrees are present in memory.
///
/// # Correctness
///
/// APIs that return single subtrees can't be used for `read_chain` and `read_disk`, because they
/// can create an inconsistent list of subtrees after concurrent non-finalized and finalized updates.
fn subtrees<C, Range, Node, ChainSubtreeFn, DbSubtreeFn>(
    chain: Option<C>,
    range: Range,
    read_chain: ChainSubtreeFn,
    read_disk: DbSubtreeFn,
) -> BTreeMap<NoteCommitmentSubtreeIndex, NoteCommitmentSubtreeData<Node>>
where
    C: AsRef<Chain>,
    Node: PartialEq,
    Range: std::ops::RangeBounds<NoteCommitmentSubtreeIndex> + Clone,
    ChainSubtreeFn: FnOnce(
        &Chain,
        Range,
    )
        -> BTreeMap<NoteCommitmentSubtreeIndex, NoteCommitmentSubtreeData<Node>>,
    DbSubtreeFn:
        FnOnce(Range) -> BTreeMap<NoteCommitmentSubtreeIndex, NoteCommitmentSubtreeData<Node>>,
{
    use std::ops::Bound::*;

    let Some(start_index) = (match range.start_bound().cloned() {
        Included(start_index) => Some(start_index),
        Excluded(start_index) => start_index.0.checked_add(1).map(Into::into),
        Unbounded => Some(0.into()),
    }) else {
        return BTreeMap::new();
    };

    // # Correctness
    //
    // After `chain` was cloned, the StateService can commit additional blocks to the finalized state `db`.
    // Usually, the subtrees of these blocks are consistent. But if the `chain` is a different fork to `db`,
    // then the trees can be inconsistent. In that case, if `chain` does not contain a subtree at the first
    // index in the provided range, we ignore all the trees in `chain` after the first inconsistent tree,
    // because we know they will be inconsistent as well. (It is cryptographically impossible for tree roots
    // to be equal once the leaves have diverged.)

    let results = match chain.map(|chain| read_chain(chain.as_ref(), range.clone())) {
        Some(chain_results) if chain_results.contains_key(&start_index) => return chain_results,
        Some(chain_results) => {
            let mut db_results = read_disk(range);

            // Check for inconsistent trees in the fork.
            for (chain_index, chain_subtree) in chain_results {
                // If there's no matching index, just update the list of trees.
                let Some(db_subtree) = db_results.get(&chain_index) else {
                    db_results.insert(chain_index, chain_subtree);
                    continue;
                };

                // We have an outdated chain fork, so skip this subtree and all remaining subtrees.
                if &chain_subtree != db_subtree {
                    break;
                }
                // Otherwise, the subtree is already in the list, so we don't need to add it.
            }

            db_results
        }
        None => read_disk(range),
    };

    // Check that we got the start subtree
    if results.contains_key(&start_index) {
        results
    } else {
        BTreeMap::new()
    }
}

/// Get the history tree of the provided chain.
pub fn history_tree<C>(
    chain: Option<C>,
    db: &ZakuraDb,
    hash_or_height: HashOrHeight,
) -> Option<Arc<zakura_chain::history_tree::HistoryTree>>
where
    C: AsRef<Chain>,
{
    chain
        .and_then(|chain| chain.as_ref().history_tree(hash_or_height))
        .or_else(|| {
            let (tip_height, tip_hash) = db.tip()?;
            match hash_or_height {
                HashOrHeight::Height(height) if height == tip_height => Some(db.history_tree()),
                HashOrHeight::Hash(hash) if hash == tip_hash => Some(db.history_tree()),
                _ => None,
            }
        })
}