hashtree-cli 0.2.62

Hashtree daemon and CLI - content-addressed storage with P2P sync
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
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
use super::*;
use crate::fips_transport::DaemonFipsTransport;
use crate::server::blob_read::{
    acquire_blob_read, acquire_blob_write, blob_read_timeout, BLOB_READ_BUSY,
};
use crate::webrtc::WebRTCState;

pub(super) async fn fetch_and_cache_blob(state: &AppState, hash: &[u8]) -> bool {
    fetch_and_cache_blob_with_source(state, hash)
        .await
        .is_some()
}

pub(super) async fn fetch_and_cache_blob_with_source(
    state: &AppState,
    hash: &[u8],
) -> Option<BlobSource> {
    if !state.hash_get_enabled {
        return None;
    }

    let hash_hex = hex::encode(hash);
    tracing::info!(
        "[htree-fetch] Trying to fetch blob {} from upstream",
        &hash_hex[..16.min(hash_hex.len())]
    );

    enum FetchResult {
        WebRtc { data: Vec<u8>, peer_id: String },
        Fips { data: Vec<u8> },
        Upstream { data: Vec<u8>, server: String },
    }

    let mut fetches: Vec<BoxFuture<'static, Option<FetchResult>>> = Vec::new();

    if state.hash_get_enabled && state.http_webrtc_fetch {
        if let Some(ref webrtc_state) = state.webrtc_peers {
            tracing::info!(
                "[htree-fetch] Querying mesh peers for {}",
                &hash_hex[..16.min(hash_hex.len())]
            );
            let webrtc_state = webrtc_state.clone();
            let peer_hash_hex = hash_hex.clone();
            fetches.push(
                async move {
                    let query_hash_hex = peer_hash_hex.clone();
                    await_fetch_task("webrtc", &peer_hash_hex, async move {
                        query_webrtc_peers(&webrtc_state, &query_hash_hex).await
                    })
                    .await
                    .map(|(data, peer_id)| FetchResult::WebRtc { data, peer_id })
                }
                .boxed(),
            );
        }
    }

    if state.hash_get_enabled && state.fetch_from_fips_peers {
        if let Some(ref fips_transport) = state.fips_transport {
            tracing::info!(
                "[htree-fetch] Querying FIPS peers for {}",
                &hash_hex[..16.min(hash_hex.len())]
            );
            let fips_transport = fips_transport.clone();
            let fips_hash = hash.to_vec();
            let fips_hash_hex = hash_hex.clone();
            fetches.push(
                async move {
                    await_fetch_task("fips", &fips_hash_hex, async move {
                        query_fips_peers(&fips_transport, &fips_hash).await
                    })
                    .await
                    .map(|data| FetchResult::Fips { data })
                }
                .boxed(),
            );
        }
    }

    if !state.upstream_blossom.is_empty() {
        tracing::info!(
            "[htree-fetch] Querying {} Blossom servers for {}",
            state.upstream_blossom.len(),
            &hash_hex[..16.min(hash_hex.len())]
        );
        let upstream_blossom = state.upstream_blossom.clone();
        let upstream_hash_hex = hash_hex.clone();
        fetches.push(
            async move {
                let query_hash_hex = upstream_hash_hex.clone();
                await_fetch_task("upstream", &upstream_hash_hex, async move {
                    query_upstream_blossom(&upstream_blossom, &query_hash_hex).await
                })
                .await
                .map(|(data, server)| FetchResult::Upstream { data, server })
            }
            .boxed(),
        );
    } else {
        tracing::info!("[htree-fetch] No upstream Blossom servers configured");
    }

    if let Some(result) = first_available_fetch(fetches).await {
        match result {
            FetchResult::WebRtc { data, peer_id } => {
                tracing::info!(
                    "[htree-fetch] Got {} bytes from peer {} for {}",
                    data.len(),
                    peer_id,
                    &hash_hex[..16.min(hash_hex.len())]
                );
                let (_data, result) = put_cached_blob_without_blocking_runtime(state, data).await;
                if let Err(e) = result {
                    tracing::warn!("[htree-fetch] Failed to cache peer data: {}", e);
                    return None;
                }
                return Some(BlobSource::WebRtc(peer_id));
            }
            FetchResult::Fips { data } => {
                tracing::info!(
                    "[htree-fetch] Got {} bytes from FIPS peers for {}",
                    data.len(),
                    &hash_hex[..16.min(hash_hex.len())]
                );
                let (_data, result) = put_cached_blob_without_blocking_runtime(state, data).await;
                if let Err(e) = result {
                    tracing::warn!("[htree-fetch] Failed to cache FIPS peer data: {}", e);
                    return None;
                }
                return Some(BlobSource::Fips);
            }
            FetchResult::Upstream { data, server } => {
                tracing::info!(
                    "[htree-fetch] Got {} bytes from upstream {} for {}",
                    data.len(),
                    server,
                    &hash_hex[..16.min(hash_hex.len())]
                );
                let (_data, result) = put_cached_blob_without_blocking_runtime(state, data).await;
                if let Err(e) = result {
                    tracing::warn!("[htree-fetch] Failed to cache upstream data: {}", e);
                    return None;
                }
                return Some(BlobSource::Upstream(server));
            }
        }
    }

    if !state.upstream_blossom.is_empty() {
        tracing::info!(
            "[htree-fetch] No upstream had {}",
            &hash_hex[..16.min(hash_hex.len())]
        );
    }

    None
}

pub(super) async fn put_cached_blob_without_blocking_runtime(
    state: &AppState,
    data: Vec<u8>,
) -> (Vec<u8>, Result<String, String>) {
    if let Err(rejection) = crate::server::ingest_filter::validate_untrusted_blob(
        &data,
        state.require_random_untrusted_ingest,
    ) {
        return (data, Err(rejection.reason));
    }

    let permit = match acquire_blob_write().await {
        Ok(permit) => permit,
        Err(error) => return (data, Err(error.to_string())),
    };
    let store = state.store.clone();
    let blob_cache = state.blob_cache.clone();
    match tokio::task::spawn_blocking(move || {
        let _permit = permit;
        let result = store.put_cached_blob(&data).map_err(|e| e.to_string());
        if let Ok(hash_hex) = &result {
            blob_cache.put_size(hash_hex.clone(), Some(data.len() as u64));
            blob_cache.put_body(hash_hex.clone(), &data);
        }
        (data, result)
    })
    .await
    {
        Ok(result) => result,
        Err(err) => (
            Vec::new(),
            Err(format!("cached blob write task failed: {}", err)),
        ),
    }
}

pub(super) async fn get_blob_without_blocking_runtime(
    state: &AppState,
    hash: [u8; 32],
) -> Result<Option<Vec<u8>>, String> {
    let hash_hex = to_hex(&hash);
    if let Some(data) = state.blob_cache.get_body(&hash_hex) {
        return Ok(Some(data));
    }

    let read = {
        let mut inflight = state.inflight_blob_reads.lock().await;
        if let Some(existing) = inflight.get(&hash_hex) {
            existing.clone()
        } else {
            let state = state.clone();
            let hash_for_read = hash;
            let hash_hex_for_task = hash_hex.clone();
            let read = async move {
                let result = get_blob_once_without_blocking_runtime(&state, hash_for_read).await;
                state
                    .inflight_blob_reads
                    .lock()
                    .await
                    .remove(&hash_hex_for_task);
                result
            }
            .boxed()
            .shared();
            inflight.insert(hash_hex, read.clone());
            read
        }
    };

    read.await
}

pub(super) async fn get_blob_size_without_blocking_runtime(
    state: &AppState,
    hash: [u8; 32],
) -> Result<Option<u64>, String> {
    let hash_hex = to_hex(&hash);
    if let Some(size) = state.blob_cache.get_size(&hash_hex) {
        return Ok(size);
    }

    let permit = acquire_blob_read().await.map_err(str::to_string)?;
    let store = state.store.clone();
    let read =
        tokio::task::spawn_blocking(move || store.blob_size(&hash).map_err(|e| e.to_string()));
    let result = tokio::time::timeout(blob_read_timeout(), read).await;
    drop(permit);
    match result {
        Ok(Ok(result)) => {
            if let Ok(size) = &result {
                state.blob_cache.put_size(hash_hex, *size);
            }
            result
        }
        Ok(Err(err)) => Err(format!("blob size task failed: {}", err)),
        Err(_) => Err("blob size timed out".to_string()),
    }
}

pub(super) async fn get_blob_range_without_blocking_runtime(
    state: &AppState,
    hash: [u8; 32],
    start: u64,
    end_inclusive: u64,
) -> Result<Option<Vec<u8>>, String> {
    let permit = acquire_blob_read().await.map_err(str::to_string)?;
    let store = state.store.clone();
    let read = tokio::task::spawn_blocking(move || {
        store
            .get_blob_range(&hash, start, end_inclusive)
            .map_err(|e| e.to_string())
    });
    let result = tokio::time::timeout(blob_read_timeout(), read).await;
    drop(permit);
    match result {
        Ok(Ok(result)) => result,
        Ok(Err(err)) => Err(format!("blob range read task failed: {}", err)),
        Err(_) => Err("blob range read timed out".to_string()),
    }
}

async fn get_blob_once_without_blocking_runtime(
    state: &AppState,
    hash: [u8; 32],
) -> Result<Option<Vec<u8>>, String> {
    let permit = acquire_blob_read().await.map_err(str::to_string)?;
    let store = state.store.clone();
    let read =
        tokio::task::spawn_blocking(move || store.get_blob(&hash).map_err(|e| e.to_string()));
    let result = tokio::time::timeout(blob_read_timeout(), read).await;
    drop(permit);
    match result {
        Ok(Ok(result)) => {
            if let Ok(data) = &result {
                match data {
                    Some(data) => {
                        let hash_hex = to_hex(&hash);
                        state
                            .blob_cache
                            .put_size(hash_hex.clone(), Some(data.len() as u64));
                        state.blob_cache.put_body(hash_hex, data);
                    }
                    None => {
                        state.blob_cache.put_size(to_hex(&hash), None);
                    }
                }
            }
            result
        }
        Ok(Err(err)) => Err(format!("blob read task failed: {}", err)),
        Err(_) => Err("blob read timed out".to_string()),
    }
}

pub(super) fn blob_read_busy_error() -> &'static str {
    BLOB_READ_BUSY
}

pub(super) async fn await_fetch_task<F, T>(source: &str, hash_hex: &str, future: F) -> Option<T>
where
    F: std::future::Future<Output = Option<T>>,
{
    match std::panic::AssertUnwindSafe(future).catch_unwind().await {
        Ok(result) => result,
        Err(_) => {
            tracing::warn!(
                "[htree-fetch] {} fetch task panicked for {}",
                source,
                &hash_hex[..16.min(hash_hex.len())],
            );
            None
        }
    }
}

pub(super) async fn first_available_fetch<T>(
    futures: Vec<BoxFuture<'static, Option<T>>>,
) -> Option<T> {
    let mut pending = FuturesUnordered::new();
    for future in futures {
        pending.push(future);
    }

    while let Some(result) = pending.next().await {
        if let Some(value) = result {
            return Some(value);
        }
    }

    None
}

pub(super) async fn ensure_blob_available(
    state: &AppState,
    hash: &[u8; 32],
) -> Result<bool, String> {
    if state.store.blob_exists(hash).map_err(|e| e.to_string())? {
        return Ok(true);
    }

    let hash_hex = to_hex(hash);
    let fetch = {
        let mut inflight = state.inflight_blob_fetches.lock().await;
        if let Some(existing) = inflight.get(&hash_hex) {
            existing.clone()
        } else {
            let state = state.clone();
            let hash_bytes = *hash;
            let hash_hex_for_task = hash_hex.clone();
            let fetch = async move {
                let fetched = fetch_and_cache_blob(&state, &hash_bytes).await;
                state
                    .inflight_blob_fetches
                    .lock()
                    .await
                    .remove(&hash_hex_for_task);
                fetched
            }
            .boxed()
            .shared();
            inflight.insert(hash_hex.clone(), fetch.clone());
            fetch
        }
    };

    if fetch.await {
        return Ok(true);
    }

    state.store.blob_exists(hash).map_err(|e| e.to_string())
}

pub(super) async fn fetch_missing_chunk(
    state: &AppState,
    seen_missing: &mut HashSet<String>,
    missing: &str,
) -> Result<bool, String> {
    if !seen_missing.insert(missing.to_string()) {
        return Err(format!("Repeated missing chunk {}", missing));
    }

    let hash =
        from_hex(missing).map_err(|e| format!("Invalid missing chunk hash {}: {}", missing, e))?;
    Ok(fetch_and_cache_blob(state, &hash).await)
}

pub(super) async fn list_directory_with_fetch<S: Store>(
    state: &AppState,
    tree: &HashTree<S>,
    cid: &Cid,
) -> Result<Option<Vec<TreeEntry>>, String> {
    let cache_key = cid_cache_key(cid);
    if let Some(cached) = get_cached_lookup(&state.directory_listing_cache, &cache_key) {
        return Ok(cached);
    }

    let mut seen_missing = HashSet::new();

    loop {
        if !ensure_blob_available(state, &cid.hash).await? {
            put_cached_lookup(&state.directory_listing_cache, cache_key.clone(), None);
            return Ok(None);
        }

        match tree.list_directory(cid).await {
            Ok(entries) => {
                put_cached_lookup(
                    &state.directory_listing_cache,
                    cache_key.clone(),
                    Some(entries.clone()),
                );
                return Ok(Some(entries));
            }
            Err(HashTreeError::MissingChunk(missing)) => {
                if !fetch_missing_chunk(state, &mut seen_missing, &missing).await? {
                    put_cached_lookup(&state.directory_listing_cache, cache_key.clone(), None);
                    return Ok(None);
                }
            }
            Err(err) => return Err(err.to_string()),
        }
    }
}

pub(super) async fn resolve_path_with_fetch<S: Store>(
    state: &AppState,
    tree: &HashTree<S>,
    root_cid: &Cid,
    path: &str,
) -> Result<Option<ResolvedPathEntry>, String> {
    let cache_key = resolved_path_cache_key(root_cid, path);
    if let Some(cached) = get_cached_lookup(&state.resolved_path_cache, &cache_key) {
        return Ok(cached.map(|entry| ResolvedPathEntry {
            cid: entry.cid,
            link_type: entry.link_type,
        }));
    }

    let parts: Vec<&str> = path.split('/').filter(|part| !part.is_empty()).collect();
    if parts.is_empty() {
        let entry = ResolvedPathEntry {
            cid: root_cid.clone(),
            link_type: LinkType::Dir,
        };
        put_cached_lookup(
            &state.resolved_path_cache,
            cache_key,
            Some(cached_resolved_path_entry(&entry)),
        );
        return Ok(Some(entry));
    }

    let mut current_cid = root_cid.clone();
    let mut current_link_type = LinkType::Dir;

    for part in parts {
        let entries = match list_directory_with_fetch(state, tree, &current_cid).await? {
            Some(entries) => entries,
            None => {
                put_cached_lookup(&state.resolved_path_cache, cache_key, None);
                return Ok(None);
            }
        };

        let Some(entry) = entries.into_iter().find(|entry| entry.name == part) else {
            put_cached_lookup(&state.resolved_path_cache, cache_key, None);
            return Ok(None);
        };

        current_link_type = entry.link_type;
        current_cid = Cid {
            hash: entry.hash,
            key: entry.key,
        };
    }

    let entry = ResolvedPathEntry {
        cid: current_cid,
        link_type: current_link_type,
    };
    put_cached_lookup(
        &state.resolved_path_cache,
        cache_key,
        Some(cached_resolved_path_entry(&entry)),
    );
    Ok(Some(entry))
}

pub(super) async fn get_cid_with_fetch<S: Store>(
    state: &AppState,
    tree: &HashTree<S>,
    cid: &Cid,
) -> Result<Option<Vec<u8>>, String> {
    let mut seen_missing = HashSet::new();

    loop {
        if !ensure_blob_available(state, &cid.hash).await? {
            return Ok(None);
        }

        match tree.get(cid, None).await {
            Ok(data) => return Ok(data),
            Err(HashTreeError::MissingChunk(missing)) => {
                if !fetch_missing_chunk(state, &mut seen_missing, &missing).await? {
                    return Ok(None);
                }
            }
            Err(err) => return Err(err.to_string()),
        }
    }
}

pub(super) async fn read_file_range_cid_with_fetch<S: Store>(
    state: &AppState,
    tree: &HashTree<S>,
    cid: &Cid,
    start: u64,
    end: Option<u64>,
) -> Result<Option<Vec<u8>>, String> {
    let mut seen_missing = HashSet::new();

    loop {
        if !ensure_blob_available(state, &cid.hash).await? {
            return Ok(None);
        }

        match tree.read_file_range_cid(cid, start, end).await {
            Ok(data) => return Ok(data),
            Err(HashTreeError::MissingChunk(missing)) => {
                if !fetch_missing_chunk(state, &mut seen_missing, &missing).await? {
                    return Ok(None);
                }
            }
            Err(err) => return Err(err.to_string()),
        }
    }
}

pub(super) fn stream_file_range_cid_with_fetch(
    state: AppState,
    cid: Cid,
    start: u64,
    end_inclusive: u64,
) -> impl futures::Stream<Item = Result<Bytes, std::io::Error>> {
    stream::unfold(
        (state, cid, start, end_inclusive, false),
        |(state, cid, offset, end_inclusive, finished)| async move {
            if finished || offset > end_inclusive {
                return None;
            }

            let chunk_end_inclusive = offset
                .saturating_add(CID_RANGE_STREAM_CHUNK_SIZE - 1)
                .min(end_inclusive);
            let chunk_end_exclusive = chunk_end_inclusive.saturating_add(1);
            let tree = HashTree::new(HashTreeConfig::new(state.store.store_arc()).public());

            match read_file_range_cid_with_fetch(
                &state,
                &tree,
                &cid,
                offset,
                Some(chunk_end_exclusive),
            )
            .await
            {
                Ok(Some(data)) if !data.is_empty() => Some((
                    Ok(Bytes::from(data)),
                    (
                        state,
                        cid,
                        chunk_end_inclusive.saturating_add(1),
                        end_inclusive,
                        false,
                    ),
                )),
                Ok(Some(_)) | Ok(None) => Some((
                    Err(std::io::Error::other("CID range returned no data")),
                    (state, cid, end_inclusive, end_inclusive, true),
                )),
                Err(err) => Some((
                    Err(std::io::Error::other(err)),
                    (state, cid, end_inclusive, end_inclusive, true),
                )),
            }
        },
    )
}

pub(super) async fn get_size_cid_with_fetch<S: Store>(
    state: &AppState,
    tree: &HashTree<S>,
    cid: &Cid,
) -> Result<Option<u64>, String> {
    let cache_key = cid_cache_key(cid);
    if let Some(cached) = get_cached_lookup(&state.cid_size_cache, &cache_key) {
        return Ok(cached);
    }

    let mut seen_missing = HashSet::new();

    loop {
        if !ensure_blob_available(state, &cid.hash).await? {
            put_cached_lookup(&state.cid_size_cache, cache_key.clone(), None);
            return Ok(None);
        }

        match tree.get_size_cid(cid).await {
            Ok(size) => {
                put_cached_lookup(&state.cid_size_cache, cache_key.clone(), Some(size));
                return Ok(Some(size));
            }
            Err(HashTreeError::MissingChunk(missing)) => {
                if !fetch_missing_chunk(state, &mut seen_missing, &missing).await? {
                    put_cached_lookup(&state.cid_size_cache, cache_key.clone(), None);
                    return Ok(None);
                }
            }
            Err(err) => return Err(err.to_string()),
        }
    }
}

pub(super) async fn root_is_directory_with_fetch<S: Store>(
    state: &AppState,
    tree: &HashTree<S>,
    cid: &Cid,
) -> Result<bool, String> {
    if !ensure_blob_available(state, &cid.hash).await? {
        return Ok(false);
    }

    match tree.get_node(cid).await.map_err(|e| e.to_string())? {
        Some(node) if node.node_type == LinkType::Dir => Ok(true),
        Some(node) if node.node_type == LinkType::File => {
            let mut seen_missing = HashSet::new();
            loop {
                match tree.is_dir(cid).await {
                    Ok(is_dir) => return Ok(is_dir),
                    Err(HashTreeError::MissingChunk(missing)) => {
                        if !fetch_missing_chunk(state, &mut seen_missing, &missing).await? {
                            return Ok(false);
                        }
                    }
                    Err(err) => return Err(err.to_string()),
                }
            }
        }
        Some(_) | None => Ok(false),
    }
}

#[cfg(test)]
pub(super) async fn await_webrtc_peer_response<F>(
    future: F,
    hash_hex: &str,
    timeout: Duration,
) -> Option<(Vec<u8>, String)>
where
    F: std::future::Future<Output = Option<(Vec<u8>, String)>>,
{
    match tokio::time::timeout(timeout, future).await {
        Ok(result) => result,
        Err(_) => {
            tracing::warn!(
                "[htree-fetch] Mesh peer query timed out for {}",
                &hash_hex[..16.min(hash_hex.len())]
            );
            None
        }
    }
}

pub(super) enum BlobSource {
    Local,
    WebRtc(String),
    Fips,
    Upstream(String),
}

impl BlobSource {
    fn to_header_value(&self) -> String {
        match self {
            BlobSource::Local => "local".to_string(),
            BlobSource::WebRtc(peer_id) => format!("webrtc:{peer_id}"),
            BlobSource::Fips => "fips".to_string(),
            BlobSource::Upstream(server) => format!("upstream:{server}"),
        }
    }
}

/// Build a blob response with optional X-Source header (only for localhost)
pub(super) fn build_blob_response(
    data: Vec<u8>,
    source: BlobSource,
    is_localhost: bool,
) -> Response<Body> {
    let mut builder = Response::builder()
        .status(StatusCode::OK)
        .header(header::CONTENT_TYPE, "application/octet-stream")
        .header(header::CONTENT_LENGTH, data.len())
        .header(header::ACCEPT_RANGES, "bytes")
        .header(header::CACHE_CONTROL, IMMUTABLE_CACHE_CONTROL)
        .header(header::ACCESS_CONTROL_ALLOW_ORIGIN, "*")
        .header(CROSS_ORIGIN_RESOURCE_POLICY_HEADER, CORP_CROSS_ORIGIN);

    if is_localhost {
        builder = builder.header("X-Source", source.to_header_value());
    }

    builder.body(Body::from(data)).unwrap()
}

pub(super) async fn query_fips_peers(
    fips_transport: &Arc<DaemonFipsTransport>,
    hash: &[u8],
) -> Option<Vec<u8>> {
    let hash: [u8; 32] = hash.try_into().ok()?;
    match fips_transport.get(&hash).await {
        Ok(Some(data)) => Some(data),
        Ok(None) => None,
        Err(err) => {
            tracing::warn!("FIPS peer fetch failed: {}", err);
            None
        }
    }
}

pub(super) async fn query_webrtc_peers(
    webrtc_state: &Arc<WebRTCState>,
    hash_hex: &str,
) -> Option<(Vec<u8>, String)> {
    if let Some((data, peer_id)) = webrtc_state.request_from_peers_with_source(hash_hex).await {
        tracing::info!(
            "Got {} bytes from peer {} for hash {}",
            data.len(),
            peer_id,
            &hash_hex[..16.min(hash_hex.len())]
        );
        return Some((data, peer_id));
    }

    tracing::debug!(
        "No connected mesh peer returned hash {}",
        &hash_hex[..16.min(hash_hex.len())]
    );

    None
}

/// Query upstream Blossom servers for content by hash
/// Returns the first successful response with server URL, or None if not found
pub(super) async fn query_upstream_blossom(
    servers: &[String],
    hash_hex: &str,
) -> Option<(Vec<u8>, String)> {
    use sha2::{Digest, Sha256};

    let client = reqwest::Client::builder()
        .timeout(Duration::from_secs(10))
        .build()
        .ok()?;

    let mut pending = FuturesUnordered::new();
    for server in servers {
        let client = client.clone();
        let server = server.clone();
        let hash_hex = hash_hex.to_string();
        pending.push(async move {
            let url = format!("{}/{}.bin", server.trim_end_matches('/'), hash_hex);
            tracing::debug!("Trying upstream Blossom: {}", url);

            match client.get(&url).send().await {
                Ok(resp) if resp.status().is_success() => match resp.bytes().await {
                    Ok(bytes) => {
                        let mut hasher = Sha256::new();
                        hasher.update(&bytes);
                        let computed = hex::encode(hasher.finalize());

                        if computed == hash_hex {
                            tracing::info!(
                                "Got {} bytes from upstream {} for hash {}",
                                bytes.len(),
                                server,
                                &hash_hex[..16.min(hash_hex.len())]
                            );
                            Some((bytes.to_vec(), server))
                        } else {
                            tracing::warn!(
                                "Hash mismatch from {}: expected {}, got {}",
                                server,
                                &hash_hex[..16.min(hash_hex.len())],
                                &computed[..16.min(computed.len())]
                            );
                            None
                        }
                    }
                    Err(err) => {
                        tracing::debug!("Upstream {} body read error: {}", server, err);
                        None
                    }
                },
                Ok(resp) => {
                    tracing::debug!("Upstream {} returned {}", server, resp.status());
                    None
                }
                Err(e) => {
                    tracing::debug!("Upstream {} error: {}", server, e);
                    None
                }
            }
        });
    }

    while let Some(result) = pending.next().await {
        if result.is_some() {
            return result;
        }
    }

    None
}