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
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
use super::body::{check_body_cap, is_retriable_status, retry_after_from};
use super::cache::*;
use super::{
PACKUMENT_ACCEPT, PACKUMENT_FULL_ACCEPT, RegistryClient, force_full_packument,
parse_full_response,
};
use crate::{Error, NetworkMode, Packument};
use std::path::{Path, PathBuf};
impl RegistryClient {
pub fn cached_packument_lookup(&self, name: &str, cache_dir: &Path) -> CachedPackumentLookup {
let registry_url = self.config.registry_for(name).to_string();
let Some(cache_path) = packument_cache_path(cache_dir, name, ®istry_url) else {
return CachedPackumentLookup::default();
};
let Some(cached) = read_cached_packument(&cache_path) else {
return CachedPackumentLookup::default();
};
if self.trust_cached_packument(cached.fetched_at, cached.max_age_secs) {
return CachedPackumentLookup {
packument: Some(cached.packument),
stale: false,
cached: None,
};
}
CachedPackumentLookup {
packument: None,
stale: true,
cached: Some(CachedPackumentLookupEntry::Abbreviated(cached)),
}
}
pub fn cached_full_packument_lookup(
&self,
name: &str,
cache_dir: &Path,
) -> CachedPackumentLookup {
let registry_url = self.config.registry_for(name).to_string();
let Some(cache_path) = packument_full_cache_path(cache_dir, name, ®istry_url) else {
return CachedPackumentLookup::default();
};
read_cached_full_packument_typed_lookup(&cache_path, self.force_cache())
}
pub fn seed_packument_cache(
&self,
name: &str,
cache_dir: &Path,
packument: &Packument,
etag: Option<&str>,
last_modified: Option<&str>,
fresh: bool,
) {
let registry_url = self.config.registry_for(name);
let Some(cache_path) = packument_cache_path(cache_dir, name, registry_url) else {
return;
};
if cache_path.exists() {
return;
}
let cached = CachedPackument {
etag: etag.map(str::to_owned),
last_modified: last_modified.map(str::to_owned),
fetched_at: if fresh { now_secs() } else { 0 },
max_age_secs: (!fresh).then_some(0),
packument: packument.clone(),
};
if let Err(e) = write_cached_packument(&cache_path, &cached) {
tracing::debug!(
"failed to seed packument cache {} from bundled primer: {e}",
cache_path.display()
);
}
}
pub fn replace_packument_cache(&self, name: &str, cache_dir: &Path, packument: &Packument) {
let registry_url = self.config.registry_for(name);
let Some(cache_path) = packument_cache_path(cache_dir, name, registry_url) else {
return;
};
let cached = CachedPackument {
etag: None,
last_modified: None,
fetched_at: now_secs(),
max_age_secs: None,
packument: packument.clone(),
};
if let Err(e) = write_cached_packument(&cache_path, &cached) {
tracing::warn!(
code = aube_codes::warnings::WARN_AUBE_PACKUMENT_CACHE_WRITE,
"failed to write packument cache {}: {e}",
cache_path.display()
);
}
}
pub fn seed_full_packument_cache(
&self,
name: &str,
cache_dir: &Path,
packument: &Packument,
etag: Option<&str>,
last_modified: Option<&str>,
fresh: bool,
) {
let registry_url = self.config.registry_for(name);
let Some(cache_path) = packument_full_cache_path(cache_dir, name, registry_url) else {
return;
};
if cache_path.exists() {
return;
}
let Ok(packument) = serde_json::to_value(packument) else {
return;
};
let fetched_at = if fresh { now_secs() } else { 0 };
let max_age_secs = (!fresh).then_some(0);
if let Err(e) = write_cached_full_packument(
&cache_path,
etag,
last_modified,
fetched_at,
max_age_secs,
&packument,
) {
tracing::debug!(
"failed to seed full packument cache {} from bundled primer: {e}",
cache_path.display()
);
}
}
pub async fn fetch_packument_full_cached(
&self,
name: &str,
cache_dir: &Path,
) -> Result<serde_json::Value, Error> {
let registry_url = self.config.registry_for(name).to_string();
let cache_path = packument_full_cache_path(cache_dir, name, ®istry_url)
.ok_or_else(|| Error::InvalidName(name.to_string()))?;
let cached = read_cached_full_packument(&cache_path);
// --prefer-offline / --offline: trust any cached copy regardless of age.
// --offline additionally forbids falling back to the network on a miss.
let force_cache = self.force_cache();
if let Some(c) = cached.as_ref()
&& (force_cache || cached_is_fresh(c.fetched_at, c.max_age_secs))
{
return Ok(cached.unwrap().packument);
}
if self.network_mode == NetworkMode::Offline {
return Err(Error::Offline(format!("packument for {name}")));
}
// Single-flight: same shape as `fetch_packument_cached_with_entry`.
// See that method's comment for the why. Keyed `full:<registry>:<name>`
// so the full and corgi paths don't serialize through each other.
// Released before any retry backoff sleep so waiters don't pay
// a serialized recovery cost when the winner hits transient errors.
let (url, registry_url) = self.packument_url(name);
let sf_key = format!("full:{registry_url}:{name}");
let sf_mutex = self.packument_singleflight_mutex(sf_key);
let mut sf_guard = Some(sf_mutex.lock().await);
let cached = match read_cached_full_packument(&cache_path) {
Some(c) if force_cache || cached_is_fresh(c.fetched_at, c.max_age_secs) => {
return Ok(c.packument);
}
recheck => recheck.or(cached),
};
let started = std::time::Instant::now();
// Rebuild the conditional request on each retry. Held in a
// closure so the revalidation headers are consistent across
// attempts — a 503 retry with stale `If-None-Match` would be
// a caching bug.
let cached_ref = cached.as_ref();
let label = format!("packument {name}");
let max_attempts = self.fetch_policy.retries.saturating_add(1);
for attempt in 0..max_attempts {
let is_last = attempt + 1 >= max_attempts;
match {
let mut req = self
.authed_get_for_package(&url, registry_url, name)
.header("Accept", PACKUMENT_FULL_ACCEPT)
// RFC 9218: packument metadata is resolver-blocking,
// mark Critical so H2-aware origins prioritize it
// ahead of pending tarball frames.
.header(
"Priority",
aube_util::http::priority::header_value(
aube_util::http::priority::Urgency::Critical,
false,
),
);
if let Some(c) = cached_ref {
if let Some(ref etag) = c.etag {
req = req.header("If-None-Match", etag);
}
if let Some(ref lm) = c.last_modified {
req = req.header("If-Modified-Since", lm);
}
}
req
}
.send()
.await
{
Ok(resp) if is_retriable_status(resp.status()) && !is_last => {
let wait = retry_after_from(&resp)
.unwrap_or_else(|| self.fetch_policy.backoff_for_attempt(attempt + 1));
tracing::warn!(
attempt = attempt + 1,
max_attempts,
backoff_ms = wait.as_millis() as u64,
status = resp.status().as_u16(),
label,
code = aube_codes::warnings::WARN_AUBE_HTTP_RETRY_TRANSIENT,
"retrying HTTP request after transient failure",
);
drop(sf_guard.take());
tokio::time::sleep(wait).await;
}
Ok(resp) => {
if resp.status() == reqwest::StatusCode::NOT_FOUND {
self.maybe_record_slow_metadata(&label, started);
return Err(Error::NotFound(name.to_string()));
}
if resp.status() == reqwest::StatusCode::NOT_MODIFIED
&& let Some(c) = cached.as_ref()
{
let revalidated_max_age =
parse_cache_control_max_age(&resp).or(c.max_age_secs);
if let Err(e) = write_cached_full_packument(
&cache_path,
c.etag.as_deref(),
c.last_modified.as_deref(),
now_secs(),
revalidated_max_age,
&c.packument,
) {
tracing::warn!(
code = aube_codes::warnings::WARN_AUBE_PACKUMENT_CACHE_WRITE,
"failed to write packument cache {}: {e}",
cache_path.display()
);
}
self.maybe_record_slow_metadata(&label, started);
return Ok(c.packument.clone());
}
let (etag, last_modified) = extract_cache_headers(&resp);
let max_age_secs = parse_cache_control_max_age(&resp);
let resp = resp.error_for_status()?;
check_body_cap(&resp, self.fetch_policy.packument_max_bytes, &label)?;
match parse_full_response::<serde_json::Value>(resp).await {
Ok(packument) => {
if let Err(e) = write_cached_full_packument(
&cache_path,
etag.as_deref(),
last_modified.as_deref(),
now_secs(),
max_age_secs,
&packument,
) {
tracing::warn!(
code = aube_codes::warnings::WARN_AUBE_PACKUMENT_CACHE_WRITE,
"failed to write packument cache {}: {e}",
cache_path.display()
);
}
self.maybe_record_slow_metadata(&label, started);
return Ok(packument);
}
Err(err) if !is_last => {
let wait = self.fetch_policy.backoff_for_attempt(attempt + 1);
tracing::warn!(
attempt = attempt + 1,
max_attempts,
backoff_ms = wait.as_millis() as u64,
error = %err,
label,
code = aube_codes::warnings::WARN_AUBE_HTTP_RETRY_BODY_DECODE,
"retrying HTTP request after response body decode error",
);
drop(sf_guard.take());
tokio::time::sleep(wait).await;
}
Err(err) => return Err(err),
}
}
Err(err) if !is_last => {
let wait = self.fetch_policy.backoff_for_attempt(attempt + 1);
tracing::warn!(
attempt = attempt + 1,
max_attempts,
backoff_ms = wait.as_millis() as u64,
error = %err,
label,
code = aube_codes::warnings::WARN_AUBE_HTTP_RETRY_TRANSPORT,
"retrying HTTP request after transport error",
);
drop(sf_guard.take());
tokio::time::sleep(wait).await;
}
Err(err) => return Err(err.into()),
}
}
unreachable!("retry loop exited without returning; max_attempts was {max_attempts}")
}
/// Fetch the full (non-corgi) packument for a package and parse it
/// into [`Packument`]. Unlike [`Self::fetch_packument_cached`], the
/// result includes the `time` map — needed for
/// `--resolution-mode=time-based`. Shares on-disk cache layout with
/// [`Self::fetch_packument_full_cached`] so callers pay one network
/// fetch for both the `aube view`-style full JSON and the time map.
///
/// Hot path on warm cache: reads the cache file once and uses
/// `sonic-rs` to deserialize the wrapper directly into the typed
/// [`Packument`] shape in a single pass. This avoids the older
/// `serde_json::Value` + `serde_json::from_value` round-trip, which
/// walked the cached JSON twice on every resolver read.
pub async fn fetch_packument_with_time_cached(
&self,
name: &str,
cache_dir: &Path,
) -> Result<Packument, Error> {
// Fast path: try the warm-cache read first. Matches the
// freshness window logic in `fetch_packument_full_cached`
// exactly so the two APIs share revalidation behavior.
let registry_url = self.config.registry_for(name).to_string();
let cache_path = packument_full_cache_path(cache_dir, name, ®istry_url)
.ok_or_else(|| Error::InvalidName(name.to_string()))?;
let force_cache = self.force_cache();
if let Some(packument) = read_cached_full_packument_typed(&cache_path, force_cache) {
return Ok(packument);
}
// Slow path: full value round-trip covers revalidation + fresh
// network fetches + all the ETag bookkeeping.
// `fetch_packument_full_cached` is the single source of truth
// for those branches; we just re-parse its `Value` into
// `Packument` here. The one `from_value` walk this still pays
// is amortized across the network round-trip so it doesn't
// show up in steady-state resolves.
let value = self.fetch_packument_full_cached(name, cache_dir).await?;
let packument: Packument = serde_json::from_value(value)
.map_err(|e| Error::Io(std::io::Error::new(std::io::ErrorKind::InvalidData, e)))?;
Ok(packument)
}
pub async fn fetch_packument_with_time_cached_after_lookup(
&self,
name: &str,
cache_dir: &Path,
lookup: CachedPackumentLookup,
) -> Result<Packument, Error> {
match lookup.cached {
Some(CachedPackumentLookupEntry::Full(cached)) => {
self.revalidate_full_packument_typed(name, cache_dir, cached)
.await
}
_ => self.fetch_packument_with_time_cached(name, cache_dir).await,
}
}
/// Fetch the compact trust history (`time` map plus per-version trust
/// evidence) for a package, backed by its own small on-disk cache.
///
/// The lockfile trust-policy validator calls this once per package
/// *name* in the locked graph. It hits the same full-packument
/// endpoint as [`Self::fetch_packument_with_time_cached`], but
/// decodes only the fields the no-downgrade check reads and caches
/// that compact shape instead of the multi-megabyte raw document —
/// cold validations skip the `serde_json::Value` round-trip and the
/// full-packument cache write, warm revalidations re-read kilobytes
/// instead of megabytes per name.
pub async fn fetch_trust_history_cached(
&self,
name: &str,
cache_dir: &Path,
) -> Result<crate::PackumentTrustHistory, Error> {
let cache_registry_url = self.config.registry_for(name).to_string();
// Same per-origin/name file layout as the packument caches;
// only the cache root differs (`trust-history-v1/`).
let cache_path = packument_full_cache_path(cache_dir, name, &cache_registry_url)
.ok_or_else(|| Error::InvalidName(name.to_string()))?;
let force_cache = self.force_cache();
let cached = read_cached_trust_history(&cache_path);
if let Some(c) = &cached
&& (force_cache || cached_is_fresh(c.fetched_at, c.max_age_secs))
{
return Ok(c.history.clone());
}
if self.network_mode == NetworkMode::Offline {
// A stale entry beats failing outright: offline installs
// can't revalidate anything, and the caller already decided
// offline installs may proceed.
if let Some(c) = cached {
return Ok(c.history);
}
return Err(Error::Offline(format!("trust history for {name}")));
}
let (url, registry_url) = self.packument_url(name);
let etag = cached.as_ref().and_then(|c| c.etag.clone());
let last_modified = cached.as_ref().and_then(|c| c.last_modified.clone());
let label = format!("trust history {name}");
let started = std::time::Instant::now();
// Single attempt loop covering send *and* body decode, matching
// `fetch_packument_full_cached`: a truncated or malformed body on
// an otherwise-successful response is retriable, and letting it
// through would abort trust validation for the whole install.
let max_attempts = self.fetch_policy.retries.saturating_add(1);
for attempt in 0..max_attempts {
let is_last = attempt + 1 >= max_attempts;
let resp = match {
let mut req = self
.authed_get_for_package(&url, registry_url, name)
.header("Accept", PACKUMENT_FULL_ACCEPT);
if let Some(ref etag) = etag {
req = req.header("If-None-Match", etag);
}
if let Some(ref lm) = last_modified {
req = req.header("If-Modified-Since", lm);
}
req
}
.send()
.await
{
Ok(resp) if is_retriable_status(resp.status()) && !is_last => {
let wait = retry_after_from(&resp)
.unwrap_or_else(|| self.fetch_policy.backoff_for_attempt(attempt + 1));
tracing::warn!(
attempt = attempt + 1,
max_attempts,
backoff_ms = wait.as_millis() as u64,
status = resp.status().as_u16(),
label,
code = aube_codes::warnings::WARN_AUBE_HTTP_RETRY_TRANSIENT,
"retrying HTTP request after transient failure",
);
tokio::time::sleep(wait).await;
continue;
}
Ok(resp) => resp,
Err(_) if !is_last => {
let wait = self.fetch_policy.backoff_for_attempt(attempt + 1);
tokio::time::sleep(wait).await;
continue;
}
Err(e) => return Err(e.into()),
};
if resp.status() == reqwest::StatusCode::NOT_FOUND {
self.maybe_record_slow_metadata(&label, started);
return Err(Error::NotFound(name.to_string()));
}
if resp.status() == reqwest::StatusCode::NOT_MODIFIED {
if let Some(mut c) = cached {
c.max_age_secs = parse_cache_control_max_age(&resp).or(c.max_age_secs);
c.fetched_at = now_secs();
if let Err(e) = write_cached_trust_history(&cache_path, &c) {
tracing::warn!(
code = aube_codes::warnings::WARN_AUBE_PACKUMENT_CACHE_WRITE,
"failed to write trust-history cache {}: {e}",
cache_path.display()
);
}
self.maybe_record_slow_metadata(&label, started);
return Ok(c.history);
}
// 304 without a cached entry means we never sent
// conditional headers — a misbehaving registry. Treat as
// a hard error rather than parsing the empty body.
return Err(Error::Io(std::io::Error::new(
std::io::ErrorKind::InvalidData,
format!(
"registry returned 304 for unconditional trust-history request: {name}"
),
)));
}
let resp = resp.error_for_status()?;
check_body_cap(
&resp,
self.fetch_policy.packument_max_bytes,
"packument-trust-history",
)?;
let (etag, last_modified) = extract_cache_headers(&resp);
let max_age_secs = parse_cache_control_max_age(&resp);
match parse_full_response::<crate::PackumentTrustHistory>(resp).await {
Ok(history) => {
let to_cache = CachedTrustHistory {
etag,
last_modified,
fetched_at: now_secs(),
max_age_secs,
history,
};
if let Err(e) = write_cached_trust_history(&cache_path, &to_cache) {
tracing::warn!(
code = aube_codes::warnings::WARN_AUBE_PACKUMENT_CACHE_WRITE,
"failed to write trust-history cache {}: {e}",
cache_path.display()
);
}
self.maybe_record_slow_metadata(&label, started);
return Ok(to_cache.history);
}
Err(err) if !is_last => {
let wait = self.fetch_policy.backoff_for_attempt(attempt + 1);
tracing::warn!(
attempt = attempt + 1,
max_attempts,
backoff_ms = wait.as_millis() as u64,
label,
error = %err,
code = aube_codes::warnings::WARN_AUBE_HTTP_RETRY_TRANSIENT,
"retrying HTTP request after body read failure",
);
tokio::time::sleep(wait).await;
}
Err(err) => return Err(err),
}
}
unreachable!("retry loop exited without returning; max_attempts was {max_attempts}")
}
pub(super) async fn revalidate_full_packument_typed(
&self,
name: &str,
cache_dir: &Path,
cached: CachedFullPackumentTyped,
) -> Result<Packument, Error> {
let force_cache = self.force_cache();
if force_cache || cached_is_fresh(cached.fetched_at, cached.max_age_secs) {
return Ok(cached.packument);
}
if self.network_mode == NetworkMode::Offline {
return Err(Error::Offline(format!("packument for {name}")));
}
let registry_url = self.config.registry_for(name).to_string();
let cache_path = packument_full_cache_path(cache_dir, name, ®istry_url)
.ok_or_else(|| Error::InvalidName(name.to_string()))?;
let (url, registry_url) = self.packument_url(name);
// Single-flight: see `fetch_packument_cached_with_entry`.
// Coalesce concurrent revalidations for the same name into one
// network conditional-GET; later waiters re-read the warm cache.
// Released before any retry backoff sleep so waiters don't pay
// a serialized recovery cost when the winner hits transient errors.
let sf_key = format!("full:{registry_url}:{name}");
let sf_mutex = self.packument_singleflight_mutex(sf_key);
let mut sf_guard = Some(sf_mutex.lock().await);
if let Some(refreshed) = read_cached_full_packument_typed(&cache_path, force_cache) {
return Ok(refreshed);
}
let label = format!("packument {name}");
let started = std::time::Instant::now();
let max_attempts = self.fetch_policy.retries.saturating_add(1);
for attempt in 0..max_attempts {
let is_last = attempt + 1 >= max_attempts;
match {
let mut req = self
.authed_get_for_package(&url, registry_url, name)
.header("Accept", PACKUMENT_FULL_ACCEPT);
if let Some(ref etag) = cached.etag {
req = req.header("If-None-Match", etag);
}
if let Some(ref lm) = cached.last_modified {
req = req.header("If-Modified-Since", lm);
}
req
}
.send()
.await
{
Ok(resp) if is_retriable_status(resp.status()) && !is_last => {
let wait = retry_after_from(&resp)
.unwrap_or_else(|| self.fetch_policy.backoff_for_attempt(attempt + 1));
tracing::warn!(
attempt = attempt + 1,
max_attempts,
backoff_ms = wait.as_millis() as u64,
status = resp.status().as_u16(),
label,
code = aube_codes::warnings::WARN_AUBE_HTTP_RETRY_TRANSIENT,
"retrying HTTP request after transient failure",
);
drop(sf_guard.take());
tokio::time::sleep(wait).await;
}
Ok(resp) if resp.status() == reqwest::StatusCode::NOT_FOUND => {
self.maybe_record_slow_metadata(&label, started);
return Err(Error::NotFound(name.to_string()));
}
Ok(resp) if resp.status() == reqwest::StatusCode::NOT_MODIFIED => {
let revalidated_max_age =
parse_cache_control_max_age(&resp).or(cached.max_age_secs);
let to_cache = if let Some(to_cache) = read_cached_full_packument(&cache_path) {
to_cache
} else {
let packument = serde_json::to_value(&cached.packument).map_err(|e| {
Error::Io(std::io::Error::new(std::io::ErrorKind::InvalidData, e))
})?;
CachedFullPackument {
etag: cached.etag.clone(),
last_modified: cached.last_modified.clone(),
fetched_at: cached.fetched_at,
max_age_secs: cached.max_age_secs,
packument,
}
};
if let Err(e) = write_cached_full_packument(
&cache_path,
to_cache.etag.as_deref(),
to_cache.last_modified.as_deref(),
now_secs(),
revalidated_max_age,
&to_cache.packument,
) {
tracing::warn!(
code = aube_codes::warnings::WARN_AUBE_PACKUMENT_CACHE_WRITE,
"failed to write packument cache {}: {e}",
cache_path.display()
);
}
self.maybe_record_slow_metadata(&label, started);
return Ok(cached.packument);
}
Ok(resp) => {
let (etag, last_modified) = extract_cache_headers(&resp);
let max_age_secs = parse_cache_control_max_age(&resp);
let resp = resp.error_for_status()?;
check_body_cap(&resp, self.fetch_policy.packument_max_bytes, &label)?;
match parse_full_response::<serde_json::Value>(resp).await {
Ok(value) => {
if let Err(e) = write_cached_full_packument(
&cache_path,
etag.as_deref(),
last_modified.as_deref(),
now_secs(),
max_age_secs,
&value,
) {
tracing::warn!(
code = aube_codes::warnings::WARN_AUBE_PACKUMENT_CACHE_WRITE,
"failed to write packument cache {}: {e}",
cache_path.display()
);
}
let packument: Packument =
serde_json::from_value(value).map_err(|e| {
Error::Io(std::io::Error::new(
std::io::ErrorKind::InvalidData,
e,
))
})?;
self.maybe_record_slow_metadata(&label, started);
return Ok(packument);
}
Err(err) if !is_last => {
let wait = self.fetch_policy.backoff_for_attempt(attempt + 1);
tracing::warn!(
attempt = attempt + 1,
max_attempts,
backoff_ms = wait.as_millis() as u64,
error = %err,
label,
code = aube_codes::warnings::WARN_AUBE_HTTP_RETRY_BODY_DECODE,
"retrying HTTP request after response body decode error",
);
drop(sf_guard.take());
tokio::time::sleep(wait).await;
}
Err(err) => return Err(err),
}
}
Err(err) if !is_last => {
let wait = self.fetch_policy.backoff_for_attempt(attempt + 1);
tracing::warn!(
attempt = attempt + 1,
max_attempts,
backoff_ms = wait.as_millis() as u64,
error = %err,
label,
code = aube_codes::warnings::WARN_AUBE_HTTP_RETRY_TRANSPORT,
"retrying HTTP request after transport error",
);
drop(sf_guard.take());
tokio::time::sleep(wait).await;
}
Err(err) => return Err(err.into()),
}
}
unreachable!("retry loop exited without returning; max_attempts was {max_attempts}")
}
/// Fetch the abbreviated packument for a package (corgi format).
pub async fn fetch_packument(&self, name: &str) -> Result<Packument, Error> {
if self.network_mode == NetworkMode::Offline {
return Err(Error::Offline(format!("packument for {name}")));
}
let (url, registry_url) = self.packument_url(name);
let label = format!("packument {name}");
let _diag_full =
aube_util::diag::Span::new(aube_util::diag::Category::Registry, "fetch_packument")
.with_meta_fn(|| format!(r#"{{"name":{}}}"#, aube_util::diag::jstr(name)));
let max_attempts = self.fetch_policy.retries.saturating_add(1);
let started = std::time::Instant::now();
for attempt in 0..max_attempts {
let is_last = attempt + 1 >= max_attempts;
let _diag_attempt = aube_util::diag::Span::new(
aube_util::diag::Category::Registry,
"packument_http_attempt",
)
.with_meta_fn(|| {
format!(
r#"{{"name":{},"attempt":{}}}"#,
aube_util::diag::jstr(name),
attempt + 1
)
});
let _attempt_send_t0 = std::time::Instant::now();
match {
let req = self
.authed_get_for_package(&url, registry_url, name)
// RFC 9218: packument metadata is resolver-blocking,
// mark Critical so Cloudflare/Fastly H2 schedulers
// prioritize it ahead of pending tarball frames on
// the shared connection.
.header(
"Priority",
aube_util::http::priority::header_value(
aube_util::http::priority::Urgency::Critical,
false,
),
);
if force_full_packument() {
req
} else {
req.header("Accept", PACKUMENT_ACCEPT)
}
}
.send()
.await
{
Ok(resp) if is_retriable_status(resp.status()) && !is_last => {
let wait = retry_after_from(&resp)
.unwrap_or_else(|| self.fetch_policy.backoff_for_attempt(attempt + 1));
tracing::warn!(
attempt = attempt + 1,
max_attempts,
backoff_ms = wait.as_millis() as u64,
status = resp.status().as_u16(),
label,
code = aube_codes::warnings::WARN_AUBE_HTTP_RETRY_TRANSIENT,
"retrying HTTP request after transient failure",
);
tokio::time::sleep(wait).await;
}
Ok(resp) if resp.status() == reqwest::StatusCode::NOT_FOUND => {
self.maybe_record_slow_metadata(&label, started);
return Err(Error::NotFound(name.to_string()));
}
Ok(resp) => {
aube_util::diag::event_lazy(
aube_util::diag::Category::Registry,
"packument_first_byte",
_attempt_send_t0.elapsed(),
|| {
format!(
r#"{{"name":{},"status":{}}}"#,
aube_util::diag::jstr(name),
resp.status().as_u16()
)
},
);
let _diag_parse = aube_util::diag::Span::new(
aube_util::diag::Category::Registry,
"packument_body_parse",
)
.with_meta_fn(|| format!(r#"{{"name":{}}}"#, aube_util::diag::jstr(name)));
let resp = resp.error_for_status()?;
check_body_cap(&resp, self.fetch_policy.packument_max_bytes, &label)?;
match parse_full_response::<Packument>(resp).await {
Ok(packument) => {
drop(_diag_parse);
self.maybe_record_slow_metadata(&label, started);
return Ok(packument);
}
Err(err) if !is_last => {
let wait = self.fetch_policy.backoff_for_attempt(attempt + 1);
tracing::warn!(
attempt = attempt + 1,
max_attempts,
backoff_ms = wait.as_millis() as u64,
error = %err,
label,
code = aube_codes::warnings::WARN_AUBE_HTTP_RETRY_BODY_DECODE,
"retrying HTTP request after response body decode error",
);
tokio::time::sleep(wait).await;
}
Err(err) => return Err(err),
}
}
Err(err) if !is_last => {
let wait = self.fetch_policy.backoff_for_attempt(attempt + 1);
tracing::warn!(
attempt = attempt + 1,
max_attempts,
backoff_ms = wait.as_millis() as u64,
error = %err,
label,
code = aube_codes::warnings::WARN_AUBE_HTTP_RETRY_TRANSPORT,
"retrying HTTP request after transport error",
);
tokio::time::sleep(wait).await;
}
Err(err) => return Err(err.into()),
}
}
unreachable!("retry loop exited without returning; max_attempts was {max_attempts}")
}
/// Fetch a packument using a disk-backed cache:
/// - If a cached entry exists and is younger than PACKUMENT_TTL_SECS, return it
/// immediately (no network).
/// - Otherwise, send a conditional request with If-None-Match/If-Modified-Since.
/// On 304, refresh the cache timestamp and return the cached body.
/// - On 200, write the new packument to disk.
pub async fn fetch_packument_cached(
&self,
name: &str,
cache_dir: &Path,
) -> Result<Packument, Error> {
let registry_url = self.config.registry_for(name).to_string();
let cache_path = packument_cache_path(cache_dir, name, ®istry_url)
.ok_or_else(|| Error::InvalidName(name.to_string()))?;
let cached = read_cached_packument(&cache_path);
self.fetch_packument_cached_with_entry(name, cache_path, cached)
.await
}
pub async fn fetch_packument_cached_after_lookup(
&self,
name: &str,
cache_dir: &Path,
lookup: CachedPackumentLookup,
) -> Result<Packument, Error> {
let registry_url = self.config.registry_for(name).to_string();
let cache_path = packument_cache_path(cache_dir, name, ®istry_url)
.ok_or_else(|| Error::InvalidName(name.to_string()))?;
let cached = match lookup.cached {
Some(CachedPackumentLookupEntry::Abbreviated(cached)) => Some(cached),
_ => read_cached_packument(&cache_path),
};
self.fetch_packument_cached_with_entry(name, cache_path, cached)
.await
}
pub(super) async fn fetch_packument_cached_with_entry(
&self,
name: &str,
cache_path: PathBuf,
cached: Option<CachedPackument>,
) -> Result<Packument, Error> {
// Fast path: trust the cache if it's still fresh.
// Move out of the wrapper to avoid cloning the Packument.
// --prefer-offline / --offline extend "fresh" to "any cached entry"
// so we skip revalidation and, for --offline, the network entirely.
let force_cache = self.force_cache();
if let Some(c) = cached.as_ref()
&& (force_cache || cached_is_fresh(c.fetched_at, c.max_age_secs))
{
return Ok(cached.unwrap().packument);
}
if self.network_mode == NetworkMode::Offline {
return Err(Error::Offline(format!("packument for {name}")));
}
// Single-flight: when a pre-resolver speculative prefetch and
// the resolver's BFS both ask for the same name within the
// same install, the first one to land here does the network
// fetch + cache write. The second one blocks on the per-name
// tokio Mutex and re-reads the (now warm) disk cache on
// wake-up, skipping the duplicate GET entirely. Keyed by
// `corgi:<registry>:<name>` so corgi and full caches stay
// independent. Drops the std lock immediately — only the
// tokio Mutex is held across the network await.
//
// Released before any retry backoff sleep so a winner stuck
// in exponential backoff against a flaky registry doesn't
// serialize the recovery of N concurrent waiters behind it.
let (url, registry_url) = self.packument_url(name);
let sf_key = format!("corgi:{registry_url}:{name}");
let sf_mutex = self.packument_singleflight_mutex(sf_key);
let mut sf_guard = Some(sf_mutex.lock().await);
// Re-read the cache under the lock — another task may have
// populated it while we waited. Costs one disk read per
// coalesced caller but saves a full HTTP round-trip.
let cached = match read_cached_packument(&cache_path) {
Some(c) if force_cache || cached_is_fresh(c.fetched_at, c.max_age_secs) => {
return Ok(c.packument);
}
recheck => recheck.or(cached),
};
// Normally we ask for the abbreviated (corgi) response so we
// get a smaller payload. See `force_full_packument()` for why
// this escape hatch exists — it is strictly a BATS/fixture
// workaround, never a user-facing tunable.
//
// Revalidation headers are rebuilt per attempt (same contract
// as `fetch_packument_full_cached`) so retries on 503 keep
// using the correct `If-None-Match` / `If-Modified-Since`
// without silently stripping cache hints.
let cached_ref = cached.as_ref();
let label = format!("packument {name}");
let max_attempts = self.fetch_policy.retries.saturating_add(1);
let started = std::time::Instant::now();
for attempt in 0..max_attempts {
let is_last = attempt + 1 >= max_attempts;
match {
let mut req = self
.authed_get_for_package(&url, registry_url, name)
.header(
"Priority",
aube_util::http::priority::header_value(
aube_util::http::priority::Urgency::Critical,
false,
),
);
if !force_full_packument() {
req = req.header("Accept", PACKUMENT_ACCEPT);
}
if let Some(c) = cached_ref {
if let Some(ref etag) = c.etag {
req = req.header("If-None-Match", etag);
}
if let Some(ref lm) = c.last_modified {
req = req.header("If-Modified-Since", lm);
}
}
req
}
.send()
.await
{
Ok(resp) if is_retriable_status(resp.status()) && !is_last => {
let wait = retry_after_from(&resp)
.unwrap_or_else(|| self.fetch_policy.backoff_for_attempt(attempt + 1));
tracing::warn!(
attempt = attempt + 1,
max_attempts,
backoff_ms = wait.as_millis() as u64,
status = resp.status().as_u16(),
label,
code = aube_codes::warnings::WARN_AUBE_HTTP_RETRY_TRANSIENT,
"retrying HTTP request after transient failure",
);
drop(sf_guard.take());
tokio::time::sleep(wait).await;
}
Ok(resp) if resp.status() == reqwest::StatusCode::NOT_FOUND => {
self.maybe_record_slow_metadata(&label, started);
return Err(Error::NotFound(name.to_string()));
}
Ok(resp)
if resp.status() == reqwest::StatusCode::NOT_MODIFIED && cached.is_some() =>
{
let c = cached.as_ref().unwrap();
let revalidated_max_age = parse_cache_control_max_age(&resp).or(c.max_age_secs);
let to_cache = CachedPackument {
etag: c.etag.clone(),
last_modified: c.last_modified.clone(),
fetched_at: now_secs(),
max_age_secs: revalidated_max_age,
packument: c.packument.clone(),
};
if let Err(e) = write_cached_packument(&cache_path, &to_cache) {
tracing::warn!(
code = aube_codes::warnings::WARN_AUBE_PACKUMENT_CACHE_WRITE,
"failed to write packument cache {}: {e}",
cache_path.display()
);
}
self.maybe_record_slow_metadata(&label, started);
return Ok(c.packument.clone());
}
Ok(resp) => {
let (etag, last_modified) = extract_cache_headers(&resp);
let max_age_secs = parse_cache_control_max_age(&resp);
let resp = resp.error_for_status()?;
check_body_cap(&resp, self.fetch_policy.packument_max_bytes, &label)?;
match parse_full_response::<Packument>(resp).await {
Ok(packument) => {
let to_cache = CachedPackument {
etag,
last_modified,
fetched_at: now_secs(),
max_age_secs,
packument: packument.clone(),
};
if let Err(e) = write_cached_packument(&cache_path, &to_cache) {
tracing::warn!(
code = aube_codes::warnings::WARN_AUBE_PACKUMENT_CACHE_WRITE,
"failed to write packument cache {}: {e}",
cache_path.display()
);
}
self.maybe_record_slow_metadata(&label, started);
return Ok(packument);
}
Err(err) if !is_last => {
let wait = self.fetch_policy.backoff_for_attempt(attempt + 1);
tracing::warn!(
attempt = attempt + 1,
max_attempts,
backoff_ms = wait.as_millis() as u64,
error = %err,
label,
code = aube_codes::warnings::WARN_AUBE_HTTP_RETRY_BODY_DECODE,
"retrying HTTP request after response body decode error",
);
drop(sf_guard.take());
tokio::time::sleep(wait).await;
}
Err(err) => return Err(err),
}
}
Err(err) if !is_last => {
let wait = self.fetch_policy.backoff_for_attempt(attempt + 1);
tracing::warn!(
attempt = attempt + 1,
max_attempts,
backoff_ms = wait.as_millis() as u64,
error = %err,
label,
code = aube_codes::warnings::WARN_AUBE_HTTP_RETRY_TRANSPORT,
"retrying HTTP request after transport error",
);
drop(sf_guard.take());
tokio::time::sleep(wait).await;
}
Err(err) => return Err(err.into()),
}
}
unreachable!("retry loop exited without returning; max_attempts was {max_attempts}")
}
}