freenet 0.2.93

Freenet core software
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
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
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
//! Zero-friction "magic-link" secrets migration (#4592, the primary path).
//!
//! Turns the hosted → self-host handoff into a link the user clicks on their
//! own peer. Three cooperating HTTP surfaces, on the SAME binary (a node can be
//! either side), plus a small confirmation page:
//!
//! 1. **Hosted MINT** — `POST /v{1,2}/hosted/migrate/mint` (on try.freenet.org).
//!    Gated exactly like the live EXPORT (hosted ON + loopback + `XFP:https` +
//!    the durable `X-Freenet-User-Token`). Exports the user's secrets under a
//!    FRESH EPHEMERAL key, stores the ephemeral-keyed bundle + key server-side
//!    under a single-use, short-TTL, per-user-bounded pull token, and returns
//!    the token. The frontend builds the link
//!    `http://127.0.0.1:7509/hosted/import?source=<origin>&pt=<token>`.
//!
//! 2. **Hosted PULL** — `GET /v{1,2}/hosted/migrate/pull?pt=<token>` (public,
//!    reachable over the internet through the hosting node's reverse proxy).
//!    The ONLY auth is the pull token: a 256-bit unguessable, single-use,
//!    short-TTL capability. Returns the ephemeral bundle bytes + the ephemeral
//!    key (in headers, over TLS). NOT gated on the durable token — the pulling
//!    peer never has it.
//!
//! 3. **Local IMPORT PAGE** — `GET /hosted/import` (on the user's own peer).
//!    A first-party confirmation page ("Import your data from <source>?"). It
//!    does NOT auto-pull: a state-changing import requires an explicit click,
//!    defeating drive-by / CSRF navigation to the link.
//!
//! 4. **Local PULL-IMPORT** — `POST /v{1,2}/hosted/pull-import` (on the user's
//!    own peer). Gated by the SAME loopback + trusted-origin gate as the live
//!    import (`hosted_import`), so only the node's own dashboard/confirmation
//!    page can drive it. Fetches the bundle over HTTPS from an ALLOWLISTED
//!    source (`try.freenet.org` only, https, default port) — a strict SSRF
//!    guard — then imports it into `Local` with `overwrite=false`
//!    (NON-DESTRUCTIVE: a secret already present locally is kept and reported
//!    in `skipped`, never clobbered).
//!
//! # Why the durable token never leaves the hosting node
//!
//! The bundle key and the user scope are DECOUPLED at the crypto layer
//! (`export_bundle(store, scope, material)` — independent args). The mint
//! exports the real user's scope under a random ephemeral key, so the pulling
//! peer only ever handles the ephemeral key (delivered once, over TLS, then the
//! token is burned). The durable `X-Freenet-User-Token` stays on the hosting
//! node.
//!
//! # Pull-token lifecycle (the load-bearing auth object)
//!
//! - **Minted** only behind the authenticated mint gate.
//! - **256-bit** from `OsRng` (unguessable capability — brute force infeasible).
//! - **Single-use**: `take` removes it; a replay gets a uniform 404.
//! - **Short-TTL** ([`PULL_TOKEN_TTL`]): expired tokens are pruned and read as
//!   absent (same 404), so a leaked-but-stale link is inert.
//! - **Bounded**: per-user ([`MAX_PULL_TOKENS_PER_USER`]) and global (count +
//!   bytes), so an authenticated token-holder cannot exhaust node memory by
//!   minting repeatedly; minting also shares the per-user EXPORT rate limit.

use std::net::SocketAddr;
use std::sync::Arc;
use std::time::Duration;

use axum::{
    Json, Router,
    extract::{ConnectInfo, DefaultBodyLimit},
    http::{HeaderMap, HeaderName, HeaderValue, StatusCode, header::CONTENT_TYPE},
    response::{Html, IntoResponse, Response},
    routing::{get, post},
};
use dashmap::DashMap;
use serde::Deserialize;
use serde_json::json;
use tokio::time::Instant;
use zeroize::Zeroizing;

use crate::client_events::user_op_rate_limit::UserOpRateLimiter;
use crate::contract::BundleKeyKind;
use crate::server::{AllowedHosts, AllowedSourceCidrs, HostedMode};
use crate::wasm_runtime::UserId;

use super::hosted_export::{
    ExportOpManagerHandle, export_rate_limited, export_user_context_or_reject, run_export,
};
use super::hosted_import::{
    BUNDLE_KEY_HEADER, BUNDLE_KEY_KIND_HEADER, MAX_IMPORT_BUNDLE_BYTES, import_gate_or_reject,
    run_import,
};
use super::{ApiVersion, OriginContractMap};

/// How long a minted migration pull token stays valid. A focused "do it now"
/// window: long enough to open the link on your own peer, short enough that a
/// leaked-but-stale link is inert. Expired tokens read as absent (404).
const PULL_TOKEN_TTL: Duration = Duration::from_secs(600);

/// Max live pull tokens a single user may hold. Minting past the cap evicts the
/// user's OLDEST token. Bounds a single authenticated token-holder's footprint
/// (minting also shares the per-user export rate limit).
const MAX_PULL_TOKENS_PER_USER: usize = 5;

/// Global cap on live pull tokens across all users. With the per-user caps and
/// the byte budgets, bounds total store memory. Minting past it evicts the
/// globally-oldest token first.
const MAX_PULL_TOKENS_TOTAL: usize = 512;

/// Per-user byte budget for buffered ephemeral bundles. Sized to hold one
/// maximal export (`MAX_IMPORT_BUNDLE_BYTES`) plus headroom, so a legitimate
/// large migration always fits — while capping how much RAM ONE account can
/// pin. This is the load-bearing anti-griefing bound: without it, a single user
/// minting two ~max bundles could evict every OTHER user's pending migration
/// via the global byte budget (a griefing/OOM vector raised in review). Real
/// bundles are kilobytes, so this ceiling is only ever hit adversarially.
const MAX_PULL_BYTES_PER_USER: usize = MAX_IMPORT_BUNDLE_BYTES + 64 * 1024 * 1024;

/// Global byte budget for buffered ephemeral bundles — the last-resort OOM
/// ceiling, only reached when MANY users have filled the store (a broad-load
/// condition, since the per-user byte budget already bounds each account).
/// Minting evicts globally-oldest tokens until the new bundle fits; a single
/// bundle larger than the budget is refused (can't happen for a valid export,
/// which is capped below this).
const MAX_PULL_STORE_BYTES: usize = 2 * MAX_PULL_BYTES_PER_USER;

/// Upper bound on the JSON body of a `pull-import` request (`{source, pt}` is a
/// few hundred bytes; this is generous). Over ⇒ 413.
const MAX_PULL_IMPORT_REQUEST_BYTES: usize = 64 * 1024;

/// Timeout for the local peer's outbound HTTPS pull from the hosting node.
const MIGRATION_PULL_TIMEOUT_SECS: u64 = 30;

/// The ONLY hosts a local peer will pull a migration bundle FROM. A strict SSRF
/// allowlist: a caller-supplied `source` must be `https`, on the default port,
/// with a host in this list. Kept a small constant list so it is trivial to
/// extend, but shipped locked to the one production hosting origin.
const ALLOWED_MIGRATION_HOSTS: &[&str] = &["try.freenet.org"];

// ---------------------------------------------------------------------------
// Pull-token store
// ---------------------------------------------------------------------------

/// One minted, pre-computed migration bundle awaiting a single pull.
struct PullEntry {
    /// The ephemeral-keyed FNSX bundle bytes (encrypted under `key`).
    bundle: Vec<u8>,
    /// The ephemeral bundle key (bs58). Delivered to the pulling peer once, over
    /// TLS; zeroized when the entry drops.
    key: Zeroizing<String>,
    /// The user this bundle was minted for — used ONLY for the per-user cap.
    user_id: UserId,
    /// Monotonic expiry. A token at or past this reads as absent.
    expires_at: Instant,
}

/// The four bounds [`MigratePullStore::insert_with_limits`] enforces. Factored
/// into a struct so tests can pass tiny values.
#[derive(Clone, Copy)]
struct StoreLimits {
    max_per_user_count: usize,
    max_per_user_bytes: usize,
    max_total_count: usize,
    max_total_bytes: usize,
}

/// Production bounds, from the module constants.
const PROD_STORE_LIMITS: StoreLimits = StoreLimits {
    max_per_user_count: MAX_PULL_TOKENS_PER_USER,
    max_per_user_bytes: MAX_PULL_BYTES_PER_USER,
    max_total_count: MAX_PULL_TOKENS_TOTAL,
    max_total_bytes: MAX_PULL_STORE_BYTES,
};

/// Per-node handle to the migration pull-token store. Cheap to clone (an `Arc`),
/// injected as a router `Extension` in
/// [`HttpClientApi::as_router_with_origin_contracts`](super::HttpClientApi).
/// Each node owns its own store, so parallel in-process nodes never collide.
#[derive(Clone, Default)]
pub(crate) struct MigratePullStore(Arc<DashMap<String, PullEntry>>);

impl MigratePullStore {
    /// Store a freshly-minted ephemeral bundle under a new random single-use
    /// token, returning the token. Prunes expired entries, enforces the per-user
    /// count + byte budget (evicting THAT user's oldest first — so one account
    /// can never push other users' pending migrations out of the store), then
    /// the global count + byte budget (evicting the globally-oldest). Returns
    /// `None` only if the new bundle alone exceeds a budget (a valid export
    /// never does), which the caller maps to a 503.
    ///
    /// NOTE: `insert` is a sequence of DashMap ops, not one atomic transaction,
    /// so two concurrent mints for the SAME user can each observe room and both
    /// land, transiently exceeding the per-user count cap by one or two. That is
    /// harmless (still bounded) and is additionally gated by the shared per-user
    /// EXPORT rate limit on the mint path, which serializes a user's mints far
    /// below any contention window.
    fn insert(&self, user_id: UserId, bundle: Vec<u8>, key: String) -> Option<String> {
        self.insert_with_limits(user_id, bundle, key, PROD_STORE_LIMITS)
    }

    /// [`Self::insert`] with the bounds made explicit, so tests can exercise the
    /// eviction / oversize-refusal paths at small limits without allocating
    /// gigabyte buffers (mirrors `secret_export::export_bundle_with_limits`).
    fn insert_with_limits(
        &self,
        user_id: UserId,
        bundle: Vec<u8>,
        key: String,
        limits: StoreLimits,
    ) -> Option<String> {
        let now = Instant::now();
        let new_len = bundle.len();
        // A bundle that can't fit either budget can never be stored.
        if new_len > limits.max_per_user_bytes || new_len > limits.max_total_bytes {
            return None;
        }

        // (1) Drop expired entries so caps count only live tokens.
        self.0.retain(|_, e| e.expires_at > now);

        // (2) Per-user budget (count AND bytes): evict THIS user's own oldest
        // until adding the new entry stays within both caps. Evicting the
        // minter's own oldest first is what stops one account from evicting
        // other users' pending migrations.
        self.evict_oldest_until(
            |v| v.user_id == user_id,
            |count, bytes| {
                count < limits.max_per_user_count && bytes + new_len <= limits.max_per_user_bytes
            },
        );

        // (3) Global budget (count AND bytes): the last-resort OOM ceiling,
        // rarely reached because (2) already bounds each user. Evict
        // globally-oldest across all users.
        self.evict_oldest_until(
            |_| true,
            |count, bytes| {
                count < limits.max_total_count && bytes + new_len <= limits.max_total_bytes
            },
        );

        let token = random_token();
        self.0.insert(
            token.clone(),
            PullEntry {
                bundle,
                key: Zeroizing::new(key),
                user_id,
                expires_at: now + PULL_TOKEN_TTL,
            },
        );
        Some(token)
    }

    /// Evict the oldest entries matching `scope` (by expiry) until
    /// `fits(count, bytes)` holds for the matching set, or none remain. `count`
    /// / `bytes` are the current totals of the in-scope entries; the caller's
    /// `fits` closure accounts for the entry about to be added.
    fn evict_oldest_until(
        &self,
        scope: impl Fn(&PullEntry) -> bool,
        fits: impl Fn(usize, usize) -> bool,
    ) {
        loop {
            let mut in_scope: Vec<(String, Instant, usize)> = self
                .0
                .iter()
                .filter(|r| scope(r.value()))
                .map(|r| {
                    (
                        r.key().clone(),
                        r.value().expires_at,
                        r.value().bundle.len(),
                    )
                })
                .collect();
            let count = in_scope.len();
            let bytes: usize = in_scope.iter().map(|(_, _, len)| *len).sum();
            if in_scope.is_empty() || fits(count, bytes) {
                break;
            }
            in_scope.sort_by_key(|(_, exp, _)| *exp);
            let (oldest_id, _, _) = in_scope.remove(0);
            self.0.remove(&oldest_id);
        }
    }

    /// Consume the entry for `token` (single-use). Returns `None` — uniformly,
    /// with no distinction an attacker could probe — if the token is unknown,
    /// already used, or expired.
    fn take(&self, token: &str) -> Option<PullEntry> {
        let (_, entry) = self.0.remove(token)?;
        if entry.expires_at <= Instant::now() {
            return None;
        }
        Some(entry)
    }
}

/// A cryptographically-random, unguessable 256-bit capability token, bs58
/// encoded. Used for BOTH the pull token (a download-authorizing bearer
/// capability) and the ephemeral bundle key (the decryption secret) — both must
/// be unguessable, so `OsRng` (the documented crypto-material exception to
/// `GlobalRng`) is correct: a `GlobalRng` seed leak would let an attacker
/// predict tokens and either steal a pending migration or forge a valid link.
fn random_token() -> String {
    // OsRng: cryptographic capability/key material — see the module + code-style
    // `OsRng` exception. Never `GlobalRng` here.
    use chacha20poly1305::aead::OsRng;
    use chacha20poly1305::aead::rand_core::RngCore;
    // Zeroize the raw 32 bytes after encoding: for the pull TOKEN this is only
    // hygiene (it is a capability, not a secret), but this same function mints
    // the ephemeral BUNDLE KEY, whose raw pre-encoding bytes must not linger in
    // the stack frame.
    let mut buf = Zeroizing::new([0u8; 32]);
    OsRng.fill_bytes(buf.as_mut_slice());
    bs58::encode(buf.as_ref())
        .with_alphabet(bs58::Alphabet::BITCOIN)
        .into_string()
}

// ---------------------------------------------------------------------------
// Routes
// ---------------------------------------------------------------------------

/// Registers the migration HTTP endpoints for `version`: the hosted `mint` +
/// `pull` and the local `pull-import`. The confirmation PAGE (`/hosted/import`)
/// is unversioned and registered separately in `client_api.rs` (like `/`).
pub(super) fn routes(version: ApiVersion) -> Router {
    let prefix = version.prefix();
    Router::new()
        .route(
            &format!("/{prefix}/hosted/migrate/mint"),
            post(mint_handler),
        )
        .route(&format!("/{prefix}/hosted/migrate/pull"), get(pull_handler))
        .route(
            &format!("/{prefix}/hosted/pull-import"),
            post(pull_import_handler).layer(DefaultBodyLimit::max(MAX_PULL_IMPORT_REQUEST_BYTES)),
        )
}

// ---------------------------------------------------------------------------
// Hosted side: mint + pull
// ---------------------------------------------------------------------------

/// `POST /v{1,2}/hosted/migrate/mint` — mint a one-time migration link for the
/// authenticated hosted user. Gated identically to the live export; the durable
/// token authenticates the user but is NOT used as the bundle key.
async fn mint_handler(req: axum::extract::Request) -> Response {
    let hosted_mode = req
        .extensions()
        .get::<HostedMode>()
        .map(|hm| hm.0)
        .unwrap_or(false);
    let source_ip = req
        .extensions()
        .get::<ConnectInfo<SocketAddr>>()
        .map(|ci| ci.0.ip());
    let headers = req.headers();

    // Same gate as the live export (hosted + loopback + XFP:https + valid
    // token). We take the user CONTEXT (the scope) and DISCARD the durable token
    // — the bundle is sealed under a fresh ephemeral key instead.
    let (user_context, durable_token) =
        match export_user_context_or_reject(headers, source_ip, hosted_mode) {
            Ok(v) => v,
            Err((status, reason)) => {
                tracing::warn!(source_ip = ?source_ip, reason, "Rejected migration mint");
                return (status, reason).into_response();
            }
        };
    // The durable token is only used to authenticate + scope; it is NEVER the
    // bundle key here (the mint seals under a fresh ephemeral key). Wipe it now
    // so it does not linger in freed memory — it must not leave this node.
    drop(zeroize::Zeroizing::new(durable_token));

    // Minting runs a full export, so it shares the per-user EXPORT rate limit.
    let limiter = req.extensions().get::<UserOpRateLimiter>();
    if export_rate_limited(limiter, &user_context) {
        tracing::warn!(
            user_id = ?user_context.user_id(),
            "Rejected migration mint: per-user export rate limit exceeded"
        );
        return (
            StatusCode::TOO_MANY_REQUESTS,
            "migration rate limit exceeded; retry shortly",
        )
            .into_response();
    }

    let op_manager = req
        .extensions()
        .get::<ExportOpManagerHandle>()
        .and_then(ExportOpManagerHandle::current);
    let Some(op_manager) = op_manager else {
        tracing::warn!("Migration mint requested but no running node is registered");
        return (
            StatusCode::SERVICE_UNAVAILABLE,
            "node is not ready to serve migrations",
        )
            .into_response();
    };

    let Some(store) = req.extensions().get::<MigratePullStore>().cloned() else {
        return (
            StatusCode::SERVICE_UNAVAILABLE,
            "migration is not available on this node",
        )
            .into_response();
    };

    // Fresh ephemeral bundle key (never derived from the durable token). The
    // user id is only for the store's per-user cap.
    let ephemeral_key = random_token();
    let user_id = *user_context.user_id();

    // Export the user's scope under the ephemeral key (same executor round-trip
    // as the live export). Over-limit / busy / failure map to 413 / 503 / 500.
    let bundle = match run_export(
        &op_manager,
        user_context,
        ephemeral_key.clone().into_bytes(),
    )
    .await
    {
        Ok(b) => b,
        Err((status, reason)) => return (status, reason).into_response(),
    };

    let Some(pull_token) = store.insert(user_id, bundle, ephemeral_key) else {
        return (
            StatusCode::SERVICE_UNAVAILABLE,
            "too many pending migrations; retry shortly",
        )
            .into_response();
    };

    (
        StatusCode::OK,
        Json(json!({
            "pull_token": pull_token,
            "expires_in_secs": PULL_TOKEN_TTL.as_secs(),
        })),
    )
        .into_response()
}

/// `GET /v{1,2}/hosted/migrate/pull?pt=<token>` — hand the ephemeral bundle to
/// the pulling peer. PUBLIC: the single-use pull token is the entire auth. A
/// missing / expired / already-used token gets a uniform 404.
///
/// The pull token rides in the URL query (unlike the export/import credentials,
/// which use a header to stay out of access logs) because a clickable magic
/// link cannot set a header. That divergence is acceptable here: the token is
/// single-use and short-TTL, so a copy captured from a log is already spent by
/// the time anyone reads it, and the design assumes the public reverse proxy
/// terminates TLS and does not itself log query strings for this path.
async fn pull_handler(req: axum::extract::Request) -> Response {
    let Some(store) = req.extensions().get::<MigratePullStore>().cloned() else {
        return pull_not_found();
    };
    let Some(pt) = pt_from_query(req.uri().query()) else {
        return pull_not_found();
    };
    let Some(entry) = store.take(&pt) else {
        return pull_not_found();
    };

    let mut headers = HeaderMap::new();
    headers.insert(
        CONTENT_TYPE,
        HeaderValue::from_static("application/octet-stream"),
    );
    // Never let a shared/proxy cache persist the response: it carries the
    // ephemeral bundle key header and the encrypted secrets, keyed by a
    // single-use `pt` URL a cache must not replay.
    headers.insert(
        axum::http::header::CACHE_CONTROL,
        HeaderValue::from_static("no-store"),
    );
    // The ephemeral key rides in a header (never the URL) — the same discipline
    // and header names the local pull-import forwards into the import path.
    match HeaderValue::from_str(entry.key.as_str()) {
        Ok(v) => {
            headers.insert(HeaderName::from_static(BUNDLE_KEY_HEADER), v);
        }
        Err(_) => {
            // A bs58 key is always a valid header value; this cannot happen. Fail
            // closed rather than serve a keyless bundle.
            return (
                StatusCode::INTERNAL_SERVER_ERROR,
                "migration key encoding error",
            )
                .into_response();
        }
    }
    headers.insert(
        HeaderName::from_static(BUNDLE_KEY_KIND_HEADER),
        HeaderValue::from_static("token"),
    );

    (StatusCode::OK, headers, entry.bundle).into_response()
}

/// Uniform "no such pull" response — identical for unknown / expired / used, so
/// it is not an oracle for token existence.
fn pull_not_found() -> Response {
    (
        StatusCode::NOT_FOUND,
        "migration link not found, expired, or already used",
    )
        .into_response()
}

/// Extract and validate the `pt` query parameter. A valid pull token is
/// non-empty, bounded, and bs58 (ASCII alphanumeric); anything else is treated
/// as absent so a malformed `pt` can never reach the store as a lookup key.
fn pt_from_query(query: Option<&str>) -> Option<String> {
    let q = query?;
    for pair in q.split('&') {
        if let Some(val) = pair.strip_prefix("pt=")
            && is_valid_pull_token(val)
        {
            return Some(val.to_owned());
        }
    }
    None
}

/// A pull token is bs58 of 32 bytes: non-empty, at most 64 chars, ASCII
/// alphanumeric. Rejecting anything else keeps injection/oversized values out
/// of both the store lookup and the outbound pull URL.
fn is_valid_pull_token(pt: &str) -> bool {
    !pt.is_empty() && pt.len() <= 64 && pt.chars().all(|c| c.is_ascii_alphanumeric())
}

// ---------------------------------------------------------------------------
// Local side: confirmation page + pull-import
// ---------------------------------------------------------------------------

/// `GET /hosted/import` — the local peer's confirmation page. Served from the
/// node's own first-party origin. It reads `source`/`pt` from the URL
/// CLIENT-side (so no untrusted input is interpolated server-side) and requires
/// an explicit click before POSTing to `pull-import` — a state-changing import
/// is never triggered by mere navigation to the link.
///
/// Ships anti-framing headers (mirroring the permission-prompt page): the click
/// on "Import my data" is a state-changing confirmation, so a remote page must
/// not be able to FRAME this page and steal that click (clickjacking) to drive
/// the victim's node into importing an attacker-minted bundle. `frame-ancestors
/// 'none'` + `X-Frame-Options: DENY` forbid framing; `Cache-Control: no-store`
/// keeps the `pt`-bearing URL out of the disk cache.
pub(super) async fn import_page() -> impl IntoResponse {
    let headers = [
        ("X-Frame-Options", "DENY"),
        (
            "Content-Security-Policy",
            "frame-ancestors 'none'; default-src 'self' 'unsafe-inline'",
        ),
        ("Cache-Control", "no-store"),
        ("Cross-Origin-Opener-Policy", "same-origin"),
    ];
    (
        headers,
        Html(format!(
            include_str!("assets/hosted_import_page.html"),
            style = HOSTED_IMPORT_PAGE_CSS,
            script = HOSTED_IMPORT_PAGE_JS,
        )),
    )
}

const HOSTED_IMPORT_PAGE_CSS: &str = include_str!("assets/hosted_import_page.css");
const HOSTED_IMPORT_PAGE_JS: &str = include_str!("assets/hosted_import_page.js");

#[derive(Deserialize)]
struct PullImportRequest {
    source: String,
    pt: String,
}

/// `POST /v{1,2}/hosted/pull-import` — the local peer fetches the bundle from
/// the allowlisted hosting node and imports it (non-destructively). Gated by the
/// SAME loopback + trusted-origin gate as the live import, so only the node's
/// own confirmation page can drive it.
async fn pull_import_handler(req: axum::extract::Request) -> Response {
    let (parts, body) = req.into_parts();
    let headers = &parts.headers;

    let source_ip = parts
        .extensions
        .get::<ConnectInfo<SocketAddr>>()
        .map(|ci| ci.0.ip());
    let allowed_hosts = parts.extensions.get::<AllowedHosts>();
    let allowed_source_cidrs = parts.extensions.get::<AllowedSourceCidrs>();
    let empty_origin_contracts: OriginContractMap = Arc::new(DashMap::new());
    let origin_contracts = parts
        .extensions
        .get::<OriginContractMap>()
        .unwrap_or(&empty_origin_contracts);

    // Reuse the live-import gate verbatim: loopback + trusted first-party origin
    // + no per-contract token. This is what makes the pull-import CSRF-safe (a
    // sandboxed contract iframe presents Origin: null and is rejected).
    if let Err((status, reason)) = import_gate_or_reject(
        headers,
        source_ip,
        allowed_hosts,
        allowed_source_cidrs,
        parts.uri.query(),
        origin_contracts,
    ) {
        tracing::warn!(source_ip = ?source_ip, reason, "Rejected migration pull-import");
        return (status, reason).into_response();
    }

    let op_manager = parts
        .extensions
        .get::<ExportOpManagerHandle>()
        .and_then(ExportOpManagerHandle::current);
    let Some(op_manager) = op_manager else {
        return (
            StatusCode::SERVICE_UNAVAILABLE,
            "node is not ready to serve imports",
        )
            .into_response();
    };

    let body_bytes = match axum::body::to_bytes(body, MAX_PULL_IMPORT_REQUEST_BYTES).await {
        Ok(b) => b,
        Err(_) => {
            return (StatusCode::PAYLOAD_TOO_LARGE, "request body too large").into_response();
        }
    };
    let request: PullImportRequest = match serde_json::from_slice(&body_bytes) {
        Ok(v) => v,
        Err(_) => {
            return (StatusCode::BAD_REQUEST, "invalid pull-import request body").into_response();
        }
    };

    // SSRF guard: the source MUST be https, default port, allowlisted host. We
    // then build the pull URL from the trusted constant host (not the raw
    // source), so a path/port/userinfo in `source` cannot redirect the fetch.
    let Some(host) = allowed_migration_host(&request.source) else {
        tracing::warn!(source = %request.source, "Rejected migration pull-import: source not allowed");
        return (
            StatusCode::FORBIDDEN,
            "migration source is not an allowed origin",
        )
            .into_response();
    };
    if !is_valid_pull_token(&request.pt) {
        return (StatusCode::BAD_REQUEST, "invalid migration token").into_response();
    }

    let (bundle, key, key_kind) = match pull_bundle_from_source(host, &request.pt).await {
        Ok(v) => v,
        Err((status, reason)) => return (status, reason).into_response(),
    };

    // Non-destructive: overwrite=false. A secret already present locally is kept
    // and reported in `skipped`, never clobbered. (TODO(#4592): an optional
    // pre-import snapshot could add belt-and-suspenders, deferred for v1 since
    // import is already non-destructive.)
    match run_import(&op_manager, bundle, key, key_kind, false).await {
        Ok(report) => (
            StatusCode::OK,
            Json(json!({
                "imported": report.imported,
                "skipped": report.skipped,
            })),
        )
            .into_response(),
        Err((status, reason)) => (status, reason).into_response(),
    }
}

/// Validate a caller-supplied migration `source` against the SSRF allowlist,
/// returning the matched trusted host on success. Requires `https`, no explicit
/// (non-default) port, and an exact (case-insensitive) host match. Returns the
/// CONSTANT host string so callers build the pull URL from trusted data.
fn allowed_migration_host(source: &str) -> Option<&'static str> {
    // `reqwest::Url` re-exports the `url` crate's `Url`; use it rather than a
    // direct `url` dep (reqwest is already a lib dependency).
    let url = reqwest::Url::parse(source).ok()?;
    if url.scheme() != "https" {
        return None;
    }
    // Only the default https port (443). An explicit port is rejected so a
    // crafted `https://try.freenet.org:1234/` cannot redirect the fetch.
    if url.port().is_some() {
        return None;
    }
    let host = url.host_str()?;
    ALLOWED_MIGRATION_HOSTS
        .iter()
        .copied()
        .find(|allowed| allowed.eq_ignore_ascii_case(host))
}

/// Fetch the ephemeral bundle from the hosting node's public pull endpoint over
/// HTTPS (TLS validated). The URL is built from the ALREADY-VALIDATED constant
/// host and validated token. The body is read with a hard cap so a hostile /
/// oversized response cannot exhaust memory.
async fn pull_bundle_from_source(
    host: &str,
    pt: &str,
) -> Result<(Vec<u8>, String, BundleKeyKind), (StatusCode, &'static str)> {
    let url = format!("https://{host}/v1/hosted/migrate/pull?pt={pt}");
    let client = reqwest::Client::builder()
        .timeout(Duration::from_secs(MIGRATION_PULL_TIMEOUT_SECS))
        .https_only(true)
        // Do NOT follow redirects: the SSRF allowlist only vets the FIRST URL's
        // host, so a redirect from the allowlisted origin to an internal address
        // would defeat it. The pull endpoint answers 200/404 directly, never a
        // redirect, so this only closes the SSRF-via-redirect hole.
        .redirect(reqwest::redirect::Policy::none())
        // Ignore ambient HTTP(S)_PROXY/ALL_PROXY env vars: the outbound pull
        // must go straight to the allowlisted origin, not through an
        // operator-or-attacker-influenced proxy, keeping the fetch fully
        // self-contained for the SSRF guarantee.
        .no_proxy()
        .build()
        .map_err(|_| {
            (
                StatusCode::INTERNAL_SERVER_ERROR,
                "migration HTTP client init failed",
            )
        })?;

    let resp = client.get(&url).send().await.map_err(|_| {
        (
            StatusCode::BAD_GATEWAY,
            "could not reach the migration source",
        )
    })?;
    read_pull_response(resp).await
}

/// Consume a pull response into `(bundle, key, key_kind)`, enforcing: 2xx
/// status, a non-empty bundle key header, a hard body-size cap
/// ([`MAX_IMPORT_BUNDLE_BYTES`], read incrementally so an oversized/hostile
/// response can't be buffered), and a non-empty body. Split out from the
/// client-building [`pull_bundle_from_source`] so the response-handling logic
/// (the part with branches) is unit-testable against a synthesized response
/// without needing a live HTTPS server.
async fn read_pull_response(
    mut resp: reqwest::Response,
) -> Result<(Vec<u8>, String, BundleKeyKind), (StatusCode, &'static str)> {
    if !resp.status().is_success() {
        return Err((
            StatusCode::BAD_GATEWAY,
            "migration source rejected the link (expired or already used)",
        ));
    }

    // Extract the key + kind (owned) BEFORE the streaming body read.
    let key = resp
        .headers()
        .get(BUNDLE_KEY_HEADER)
        .and_then(|v| v.to_str().ok())
        .map(str::to_owned)
        .filter(|k| !k.is_empty());
    let Some(key) = key else {
        return Err((
            StatusCode::BAD_GATEWAY,
            "migration source returned no bundle key",
        ));
    };
    let key_kind = match resp
        .headers()
        .get(BUNDLE_KEY_KIND_HEADER)
        .and_then(|v| v.to_str().ok())
    {
        Some(s) if s.eq_ignore_ascii_case("passphrase") => BundleKeyKind::Passphrase,
        _ => BundleKeyKind::Token,
    };

    let mut bundle = Vec::new();
    loop {
        match resp.chunk().await {
            Ok(Some(chunk)) => {
                if bundle.len() + chunk.len() > MAX_IMPORT_BUNDLE_BYTES {
                    return Err((StatusCode::BAD_GATEWAY, "migration bundle too large"));
                }
                bundle.extend_from_slice(&chunk);
            }
            Ok(None) => break,
            Err(_) => {
                return Err((
                    StatusCode::BAD_GATEWAY,
                    "error reading the migration bundle",
                ));
            }
        }
    }
    if bundle.is_empty() {
        return Err((
            StatusCode::BAD_GATEWAY,
            "migration source returned an empty bundle",
        ));
    }
    Ok((bundle, key, key_kind))
}

#[cfg(test)]
mod tests {
    use super::*;

    fn user(tag: u8) -> UserId {
        UserId::new([tag; 32])
    }

    /// A minted token round-trips exactly once: the first pull returns the
    /// bundle + key, and a second pull of the same token gets nothing
    /// (single-use).
    #[tokio::test(start_paused = true)]
    async fn pull_token_is_single_use() {
        let store = MigratePullStore::default();
        let token = store
            .insert(
                user(1),
                b"bundle-bytes".to_vec(),
                "ephemeral-key".to_owned(),
            )
            .expect("mint must store the bundle");

        let first = store.take(&token).expect("first pull returns the entry");
        assert_eq!(first.bundle, b"bundle-bytes");
        assert_eq!(first.key.as_str(), "ephemeral-key");

        assert!(
            store.take(&token).is_none(),
            "a second pull of the same token must find nothing (single-use)"
        );
    }

    /// An unknown token is a miss (no panic, uniform None).
    #[tokio::test(start_paused = true)]
    async fn pull_unknown_token_is_none() {
        let store = MigratePullStore::default();
        assert!(store.take("never-minted").is_none());
    }

    /// A token past its TTL reads as absent, even though it was never pulled.
    #[tokio::test(start_paused = true)]
    async fn pull_token_expires() {
        let store = MigratePullStore::default();
        let token = store
            .insert(user(1), b"b".to_vec(), "k".to_owned())
            .expect("mint");
        tokio::time::advance(PULL_TOKEN_TTL + Duration::from_secs(1)).await;
        assert!(
            store.take(&token).is_none(),
            "an expired token must read as absent"
        );
    }

    /// Minting past the per-user cap evicts that user's OLDEST token while
    /// leaving other users untouched. Distinct users get distinct tokens/scopes.
    #[tokio::test(start_paused = true)]
    async fn per_user_cap_evicts_oldest() {
        let store = MigratePullStore::default();
        let mut tokens = Vec::new();
        for i in 0..MAX_PULL_TOKENS_PER_USER {
            let t = store
                .insert(user(1), vec![i as u8], format!("k{i}"))
                .expect("mint");
            tokens.push(t);
            // Space entries in time so "oldest" is well-defined.
            tokio::time::advance(Duration::from_secs(1)).await;
        }
        // A user-2 token is independent and must survive user-1 churn.
        let other = store
            .insert(user(2), b"other".to_vec(), "ok".to_owned())
            .expect("mint");

        // One more user-1 mint pushes over the cap, evicting user-1's oldest.
        let newest = store
            .insert(user(1), b"newest".to_vec(), "kn".to_owned())
            .expect("mint");

        assert!(
            store.take(&tokens[0]).is_none(),
            "user-1's oldest token must have been evicted at the cap"
        );
        assert!(
            store.take(&newest).is_some(),
            "the newest user-1 token must be present"
        );
        assert!(
            store.take(&other).is_some(),
            "another user's token must be unaffected by user-1's cap"
        );
    }

    /// Small tunable limits so the byte-budget / count paths are exercised
    /// without allocating gigabyte buffers.
    fn tiny_limits() -> StoreLimits {
        StoreLimits {
            max_per_user_count: 10,
            max_per_user_bytes: 100,
            max_total_count: 10,
            max_total_bytes: 1000,
        }
    }

    /// The per-user BYTE budget evicts the minter's OWN oldest — never another
    /// user's — which is the anti-griefing property. Two 60-byte user-1 bundles
    /// exceed the 100-byte per-user budget, so the first is dropped; a small
    /// user-2 bundle is untouched.
    #[tokio::test(start_paused = true)]
    async fn per_user_byte_budget_evicts_own_oldest_not_others() {
        let store = MigratePullStore::default();
        let limits = tiny_limits();

        let t1 = store
            .insert_with_limits(user(1), vec![0u8; 60], "k1".to_owned(), limits)
            .expect("mint");
        tokio::time::advance(Duration::from_secs(1)).await;
        let other = store
            .insert_with_limits(user(2), vec![0u8; 10], "ok".to_owned(), limits)
            .expect("mint");
        tokio::time::advance(Duration::from_secs(1)).await;
        let t2 = store
            .insert_with_limits(user(1), vec![0u8; 60], "k2".to_owned(), limits)
            .expect("mint");

        assert!(
            store.take(&t1).is_none(),
            "user-1's oldest must be evicted by the per-user byte budget"
        );
        assert!(
            store.take(&t2).is_some(),
            "the newest user-1 bundle remains"
        );
        assert!(
            store.take(&other).is_some(),
            "another user's bundle must NOT be evicted by user-1's byte pressure"
        );
    }

    /// A bundle larger than a budget is refused outright (maps to 503), with
    /// nothing stored.
    #[tokio::test(start_paused = true)]
    async fn oversize_bundle_is_refused() {
        let store = MigratePullStore::default();
        let limits = tiny_limits(); // per-user byte budget = 100
        assert!(
            store
                .insert_with_limits(user(1), vec![0u8; 101], "k".to_owned(), limits)
                .is_none(),
            "a bundle over the per-user byte budget must be refused"
        );
        assert_eq!(store.0.len(), 0, "a refused oversize mint stores nothing");
    }

    /// The GLOBAL count cap evicts the globally-oldest across users once the
    /// store is full.
    #[tokio::test(start_paused = true)]
    async fn global_count_cap_evicts_globally_oldest() {
        let store = MigratePullStore::default();
        // total count cap 3, generous bytes, per-user count high so the GLOBAL
        // cap is the binding one.
        let limits = StoreLimits {
            max_per_user_count: 100,
            max_per_user_bytes: 10_000,
            max_total_count: 3,
            max_total_bytes: 10_000,
        };
        let a = store
            .insert_with_limits(user(1), vec![1], "a".to_owned(), limits)
            .expect("mint");
        tokio::time::advance(Duration::from_secs(1)).await;
        let b = store
            .insert_with_limits(user(2), vec![2], "b".to_owned(), limits)
            .expect("mint");
        tokio::time::advance(Duration::from_secs(1)).await;
        let c = store
            .insert_with_limits(user(3), vec![3], "c".to_owned(), limits)
            .expect("mint");
        tokio::time::advance(Duration::from_secs(1)).await;
        // A 4th mint (from yet another user) evicts the globally-oldest (a).
        let d = store
            .insert_with_limits(user(4), vec![4], "d".to_owned(), limits)
            .expect("mint");

        assert!(store.take(&a).is_none(), "globally-oldest evicted at cap");
        for (name, tok) in [("b", &b), ("c", &c), ("d", &d)] {
            assert!(
                store.take(tok).is_some(),
                "{name} must remain under the cap"
            );
        }
    }

    /// Build a `reqwest::Response` from a synthesized HTTP response so
    /// `read_pull_response` (the body-cap / key-extraction logic) is testable
    /// without a live HTTPS server. `axum::http` is the same `http` crate
    /// reqwest 0.12 consumes, so the `From` conversion type-checks.
    fn synth_response(status: u16, headers: &[(&str, &str)], body: Vec<u8>) -> reqwest::Response {
        let mut builder = axum::http::Response::builder().status(status);
        for (name, value) in headers {
            builder = builder.header(*name, *value);
        }
        reqwest::Response::from(builder.body(body).expect("valid synthetic response"))
    }

    #[tokio::test]
    async fn read_pull_response_success_extracts_bundle_and_key() {
        let resp = synth_response(
            200,
            &[
                ("x-freenet-bundle-key", "ephemeral-key-xyz"),
                ("x-freenet-bundle-key-kind", "token"),
            ],
            b"the-bundle-bytes".to_vec(),
        );
        let (bundle, key, kind) = read_pull_response(resp).await.expect("must succeed");
        assert_eq!(bundle, b"the-bundle-bytes");
        assert_eq!(key, "ephemeral-key-xyz");
        assert!(matches!(kind, BundleKeyKind::Token));
    }

    #[tokio::test]
    async fn read_pull_response_kind_defaults_token_and_honors_passphrase() {
        // Missing kind header defaults to Token.
        let resp = synth_response(200, &[("x-freenet-bundle-key", "k")], b"b".to_vec());
        let (_, _, kind) = read_pull_response(resp).await.unwrap();
        assert!(matches!(kind, BundleKeyKind::Token));
        // Explicit passphrase kind is honored.
        let resp = synth_response(
            200,
            &[
                ("x-freenet-bundle-key", "k"),
                ("x-freenet-bundle-key-kind", "passphrase"),
            ],
            b"b".to_vec(),
        );
        let (_, _, kind) = read_pull_response(resp).await.unwrap();
        assert!(matches!(kind, BundleKeyKind::Passphrase));
    }

    #[tokio::test]
    async fn read_pull_response_rejects_non_success_missing_key_and_empty() {
        // Non-2xx (the source 404'd the link).
        let resp = synth_response(404, &[("x-freenet-bundle-key", "k")], b"b".to_vec());
        assert_eq!(
            read_pull_response(resp).await.unwrap_err().0,
            StatusCode::BAD_GATEWAY
        );
        // 200 but no bundle key header.
        let resp = synth_response(200, &[], b"b".to_vec());
        assert_eq!(
            read_pull_response(resp).await.unwrap_err().0,
            StatusCode::BAD_GATEWAY
        );
        // 200 with a key but an empty body.
        let resp = synth_response(200, &[("x-freenet-bundle-key", "k")], Vec::new());
        assert_eq!(
            read_pull_response(resp).await.unwrap_err().0,
            StatusCode::BAD_GATEWAY
        );
    }

    #[test]
    fn ssrf_allowlist_accepts_only_https_default_port_trusted_host() {
        assert_eq!(
            allowed_migration_host("https://try.freenet.org"),
            Some("try.freenet.org")
        );
        assert_eq!(
            allowed_migration_host("https://try.freenet.org/"),
            Some("try.freenet.org")
        );
        // Case-insensitive host match.
        assert_eq!(
            allowed_migration_host("https://TRY.freenet.org"),
            Some("try.freenet.org")
        );
    }

    #[test]
    fn ssrf_allowlist_rejects_non_https_and_untrusted() {
        // Non-https (plaintext) is rejected.
        assert!(allowed_migration_host("http://try.freenet.org").is_none());
        // A different host is rejected.
        assert!(allowed_migration_host("https://evil.example.com").is_none());
        // A look-alike subdomain is rejected (exact host match).
        assert!(allowed_migration_host("https://try.freenet.org.evil.com").is_none());
        // An explicit port is rejected (only default 443).
        assert!(allowed_migration_host("https://try.freenet.org:8443").is_none());
        // An embedded-credential / host-confusion attempt is rejected.
        assert!(allowed_migration_host("https://try.freenet.org@evil.com").is_none());
        // Loopback (the classic SSRF target) is rejected.
        assert!(allowed_migration_host("https://127.0.0.1").is_none());
        // Garbage is rejected.
        assert!(allowed_migration_host("not a url").is_none());
    }

    #[test]
    fn pull_token_validation() {
        assert!(is_valid_pull_token("abcDEF123"));
        assert!(!is_valid_pull_token(""));
        assert!(!is_valid_pull_token("has-dash"));
        assert!(!is_valid_pull_token("has space"));
        assert!(!is_valid_pull_token("has/slash"));
        assert!(!is_valid_pull_token(&"a".repeat(65)));
    }

    #[test]
    fn pt_extracted_and_validated_from_query() {
        assert_eq!(pt_from_query(Some("pt=abc123")).as_deref(), Some("abc123"));
        assert_eq!(
            pt_from_query(Some("x=1&pt=tok9&y=2")).as_deref(),
            Some("tok9")
        );
        // A malformed pt value is treated as absent.
        assert!(pt_from_query(Some("pt=bad-token")).is_none());
        assert!(pt_from_query(Some("nopt=here")).is_none());
        assert!(pt_from_query(None).is_none());
    }

    /// The confirmation page must render the confirm control and wire the POST
    /// to the local pull-import endpoint — and must NOT auto-run it (a
    /// state-changing import needs an explicit click).
    #[test]
    fn import_page_wiring() {
        // The page is a format-template; render it and scan the served bytes.
        let html = format!(
            include_str!("assets/hosted_import_page.html"),
            style = HOSTED_IMPORT_PAGE_CSS,
            script = HOSTED_IMPORT_PAGE_JS,
        );
        assert!(
            html.contains("/v1/hosted/pull-import"),
            "the page JS must POST to the local pull-import endpoint"
        );
        assert!(
            HOSTED_IMPORT_PAGE_JS.contains("addEventListener"),
            "the import must be behind an explicit user gesture, not auto-run"
        );
    }

    /// Regression test: the confirmation page must ship anti-framing headers so
    /// a remote page cannot frame it and steal the import-confirmation click
    /// (clickjacking), plus `no-store` so the `pt`-bearing URL isn't cached.
    #[tokio::test]
    async fn import_page_sets_anti_framing_headers() {
        let resp = import_page().await.into_response();
        let h = resp.headers();
        assert_eq!(
            h.get("x-frame-options").expect("X-Frame-Options present"),
            "DENY"
        );
        assert_eq!(
            h.get("cache-control").expect("Cache-Control present"),
            "no-store"
        );
        assert_eq!(
            h.get("cross-origin-opener-policy").expect("COOP present"),
            "same-origin"
        );
        let csp = h
            .get("content-security-policy")
            .expect("CSP present")
            .to_str()
            .unwrap();
        assert!(
            csp.contains("frame-ancestors 'none'"),
            "CSP must forbid framing, got: {csp}"
        );
    }

    /// Regression test: the pull response must carry `Cache-Control: no-store`
    /// (it returns the encrypted bundle plus the ephemeral key header over a
    /// single-use `pt` URL, which a shared/proxy cache must never persist),
    /// alongside the bundle-key header the local import forwards.
    #[tokio::test]
    async fn pull_response_is_no_store_and_carries_key() {
        let store = MigratePullStore::default();
        let token = store
            .insert(
                user(1),
                b"bundle-bytes".to_vec(),
                "ephemeral-key".to_owned(),
            )
            .expect("mint");
        let req = axum::http::Request::builder()
            .uri(format!("/v1/hosted/migrate/pull?pt={token}"))
            .extension(store)
            .body(axum::body::Body::empty())
            .unwrap();

        let resp = pull_handler(req).await;
        assert_eq!(resp.status(), StatusCode::OK);
        let h = resp.headers();
        assert_eq!(
            h.get("cache-control").expect("Cache-Control present"),
            "no-store"
        );
        assert_eq!(
            h.get(BUNDLE_KEY_HEADER).expect("bundle key header present"),
            "ephemeral-key"
        );
        assert_eq!(
            h.get(BUNDLE_KEY_KIND_HEADER).expect("kind header present"),
            "token"
        );
    }
}