freenet 0.2.94

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
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
#[cfg(debug_assertions)]
use std::backtrace::Backtrace as StdTrace;
use std::time::Duration;

use freenet_stdlib::prelude::{ContractInstanceId, ContractKey};
use tokio::sync::mpsc::error::SendError;

use crate::{
    config::GlobalExecutor,
    contract::{ContractError, ExecutorError},
    message::{Transaction, TransactionType},
    node::{ConnectionError, OpManager},
    ring::{Location, PeerKeyLocation, RingError},
};

pub(crate) mod bootstrap;
pub(crate) mod connect;
pub(crate) mod get;
pub(crate) mod op_ctx;
pub(crate) mod orphan_streams;
pub(crate) mod put;
pub(crate) mod stream_progress;
pub(crate) mod subscribe;
#[cfg(test)]
pub(crate) mod test_utils;
pub(crate) mod update;
pub(crate) mod visited_peers;

pub(crate) use op_ctx::OpCtx;
pub(crate) use visited_peers::VisitedPeers;

// Driver finalization paths publish `HostResult` directly via
// `result_router_tx` (see `op_ctx_task::*`); no central carrier
// is required.

#[derive(Debug)]
#[allow(dead_code)]
pub(crate) enum OpOutcome<'a> {
    /// An op which involves a contract completed successfully.
    ContractOpSuccess {
        target_peer: &'a PeerKeyLocation,
        contract_location: Location,
        /// Time the operation took to initiate.
        first_response_time: Duration,
        /// Size of the payload (contract, state, etc.) in bytes.
        payload_size: usize,
        /// Transfer time of the payload.
        payload_transfer_time: Duration,
    },
    /// An op which involves a contract completed successfully but has no timing data
    /// (put, update). Feeds only the failure estimator.
    ContractOpSuccessUntimed {
        target_peer: &'a PeerKeyLocation,
        contract_location: Location,
    },
    /// An op which involves a contract completed unsuccessfully.
    ContractOpFailure {
        target_peer: &'a PeerKeyLocation,
        contract_location: Location,
    },
    /// In transit contract operation.
    Incomplete,
    /// This operation stats are not relevant for this peer.
    Irrelevant,
}

#[derive(Debug, thiserror::Error)]
pub(crate) enum OpError {
    #[error(transparent)]
    ConnError(#[from] ConnectionError),
    #[error(transparent)]
    RingError(#[from] RingError),
    #[error(transparent)]
    ContractError(#[from] ContractError),
    #[error(transparent)]
    ExecutorError(#[from] ExecutorError),

    #[error("unexpected operation state")]
    UnexpectedOpState,
    #[error(
        "cannot perform a state transition from the current state with the provided input (tx: {tx})"
    )]
    InvalidStateTransition {
        tx: Transaction,
        #[cfg(debug_assertions)]
        state: Option<Box<dyn std::fmt::Debug + Send + Sync>>,
        #[cfg(debug_assertions)]
        trace: StdTrace,
    },
    #[error("failed notifying, channel closed")]
    NotificationError,
    /// The peer this op was awaiting was pruned before sending its terminal
    /// reply (#4313). Delivered through the waiter channel by the
    /// `TransactionOrphaned` handler. Routes to the generic advance arm in
    /// `drive_retry_loop` (the peer is gone — do not infra-retry it), unlike
    /// `NotificationError` which infra-retries the same peer.
    #[error("awaited peer {peer} disconnected before replying")]
    PeerDisconnected { peer: std::net::SocketAddr },
    #[error("notification channel error: {0}")]
    NotificationChannelError(String),
    #[allow(dead_code)]
    #[error("unspected transaction type, trying to get a {0:?} from a {1:?}")]
    IncorrectTxType(TransactionType, TransactionType),
    #[allow(dead_code)]
    #[error("op not present: {0}")]
    OpNotPresent(Transaction),

    // Streaming-related errors
    #[error("stream was cancelled")]
    StreamCancelled,
    #[error("failed to claim orphan stream")]
    OrphanStreamClaimFailed,

    /// Admission-gate rejection: a `start_client_*` was called after
    /// `ShutdownHandle::shutdown` flipped the `OpManager::shutting_down`
    /// flag. The driver task is NOT spawned and the counter is NOT
    /// bumped — the client should retry once the node is back up.
    /// Closes the drain race window between `counter == 0` and
    /// `NodeEvent::Disconnect`.
    #[error("node is shutting down; client operation rejected")]
    NodeShuttingDown,

    /// Phase 7 egress self-block (#4300): a local client tried to
    /// originate a PUT/GET/SUBSCRIBE/UPDATE for a contract this node
    /// has banned. The driver task is NOT spawned — we refuse to
    /// launder requests for a contract we have decided is harmful. The
    /// receive-side gate (PR #4299) already drops inbound requests for
    /// the same contract; this is the complementary egress gate so the
    /// ban is a true block, not just a receive-side filter. Surfaced to
    /// the client as a typed error rather than silently proceeding into
    /// a timeout.
    #[error("contract {instance_id} is banned on this node; request rejected")]
    ContractBanned { instance_id: ContractInstanceId },
}

impl OpError {
    pub fn invalid_transition(tx: Transaction) -> Self {
        Self::InvalidStateTransition {
            tx,
            #[cfg(debug_assertions)]
            state: None,
            #[cfg(debug_assertions)]
            trace: StdTrace::force_capture(),
        }
    }

    /// Returns true if this error indicates a contract's WASM merge function
    /// ran and rejected the update. When true, the contract code is present
    /// locally and auto-fetching would be unnecessary.
    ///
    /// BROADER than `is_invalid_update_rejection` : includes runtime failures
    /// like OOG/timeout/traps. Use this for auto-fetch decisions, NOT for log
    /// severity. See `ExecutorError::is_contract_exec_rejection`.
    pub fn is_contract_exec_rejection(&self) -> bool {
        matches!(self, Self::ExecutorError(e) if e.is_contract_exec_rejection())
    }

    /// Narrow predicate for the originator-side UPDATE auto-fetch
    /// trigger: returns true only for "missing contract parameters"
    /// from `runtime.rs::get_params`. See
    /// `ExecutorError::is_missing_contract_parameters` for rationale.
    pub fn is_missing_contract_parameters(&self) -> bool {
        matches!(self, Self::ExecutorError(e) if e.is_missing_contract_parameters())
    }

    /// Returns true ONLY when the contract WASM merge function rejected the
    /// update with a typed `InvalidUpdate{,WithInfo}` error (the benign
    /// stale-state case from issue #3914). Use this for log-severity
    /// decisions: real WASM faults (OOG, traps, timeouts) return false here
    /// and stay at ERROR/WARN. See `ExecutorError::is_invalid_update_rejection`.
    pub fn is_invalid_update_rejection(&self) -> bool {
        matches!(self, Self::ExecutorError(e) if e.is_invalid_update_rejection())
    }

    /// Returns true for the typed `ContractQueueFull` marker. Callers MUST
    /// gate amplification side effects (auto-fetch, ResyncRequest, ERROR
    /// logs) on this predicate so a saturated contract queue doesn't induce
    /// network-wide storms. See `ExecutorError::is_contract_queue_full` and
    /// issue #4251.
    pub fn is_contract_queue_full(&self) -> bool {
        matches!(self, Self::ExecutorError(e) if e.is_contract_queue_full())
    }
}

impl<T> From<SendError<T>> for OpError {
    fn from(_: SendError<T>) -> OpError {
        OpError::NotificationError
    }
}

/// Phase 7 egress self-block (#4300). Returns `Err(OpError::ContractBanned)`
/// if `instance_id`'s contract is on this node's ban list, otherwise
/// `Ok(())`.
///
/// Called at the top of every client-originator entry point
/// (`start_client_put` / `_get` / `_subscribe` / `_update`) BEFORE the
/// driver task is spawned, so a banned contract's request is rejected
/// with a typed error instead of consuming this node's outbound network
/// resources and then failing (or worse, succeeding at peers that don't
/// know about our ban). This mirrors the receive-side wire-boundary drop
/// added in PR #4299: a banned contract can neither receive new state via
/// this node (receive gate) nor transmit new state via this node (this
/// egress gate).
///
/// Keyed on `ContractInstanceId` because that is what the ban list keys
/// on and what every entry point has available (`key.id()` for PUT/UPDATE,
/// the bare `instance_id` for GET/SUBSCRIBE). Factored out of the four
/// entry points so the gate logic is unit-testable against a
/// `ContractBanList` directly, and so the early-return shape stays
/// identical across ops. The fan-out egress path (`BroadcastStateChange`)
/// has no client to notify, so it skips rather than erroring — that gate
/// lives at its own call site in `p2p_protoc.rs`.
///
/// # Errors
///
/// Returns `Err(OpError::ContractBanned { instance_id })` when the
/// contract is currently on this node's `ContractBanList`. Returns
/// `Ok(())` for any non-banned (or expired-ban) contract.
pub(crate) fn reject_if_contract_banned(
    op_manager: &OpManager,
    instance_id: &ContractInstanceId,
) -> Result<(), OpError> {
    reject_if_contract_banned_on(&op_manager.ring.contract_ban_list, instance_id)
}

/// Egress-gate core, extracted from [`reject_if_contract_banned`] so the
/// real `is_banned`-backed decision can be unit-tested against a
/// `ContractBanList` fixture directly, without standing up a full
/// `OpManager` (which spawns background tasks and needs a `NodeConfig`,
/// channels, and a `NetEventRegister`). Mirrors the `*_on` extraction
/// convention used throughout `op_state_manager.rs` for the same reason.
///
/// # Errors
///
/// Returns `Err(OpError::ContractBanned { instance_id })` when the
/// contract is currently on `ban_list`. Returns `Ok(())` otherwise.
pub(crate) fn reject_if_contract_banned_on(
    ban_list: &crate::ring::contract_ban_list::ContractBanList,
    instance_id: &ContractInstanceId,
) -> Result<(), OpError> {
    if ban_list.is_banned(instance_id) {
        tracing::debug!(
            %instance_id,
            phase = "egress_banned_reject",
            "rejecting client-originated request for banned contract"
        );
        return Err(OpError::ContractBanned {
            instance_id: *instance_id,
        });
    }
    Ok(())
}

/// Announces to neighbors that we're hosting a contract.
/// This broadcasts to all connected peers so they know to forward UPDATEs to us.
pub(crate) async fn announce_contract_hosted(op_manager: &OpManager, key: &ContractKey) {
    if let Some(announcement) = op_manager.neighbor_hosting.on_contract_hosted(key) {
        tracing::debug!(
            %key,
            "NEIGHBOR_HOSTING: Announcing contract hosted to neighbors"
        );
        // DELIBERATELY blocking — unlike the other Broadcast* emission
        // sites in this PR, `announce_contract_hosted` carries a
        // one-shot transition: `on_contract_hosted(key)` above just
        // inserted `key` into `my_contracts`, and any subsequent call
        // for the same key returns `None` (the `if let Some(...)`
        // arm we are inside never re-fires). Dropping this emission
        // on `Full` would silently lose the only hosting
        // announcement we will ever send for this contract, leaving
        // neighbors unaware that this node hosts it until a
        // reconnect or unrelated state-exchange round.
        //
        // Acceptable trade-off because this path runs only on the
        // *first* PUT/GET of a new contract — low frequency, so a
        // 30s blocking await under wedge conditions is rare and the
        // error is preferable to silent loss. If this becomes a
        // wedge contributor in its own right, the right fix is to
        // separate the `my_contracts` insertion from the
        // announcement (so the transition isn't consumed until the
        // broadcast is queued), not to switch back to try_notify.
        // See review on PR #4231 (Codex P1) and #4145.
        if let Err(err) = op_manager
            .notify_node_event(crate::message::NodeEvent::BroadcastHostingUpdate {
                message: announcement,
            })
            .await
        {
            tracing::warn!(
                contract = %key,
                error = %err,
                phase = "error",
                "NEIGHBOR_HOSTING: Failed to broadcast hosting announcement"
            );
        }
    }
}

/// Retracts our advertisement that we host `key`, telling connected co-hosts to
/// stop fanning updates to us and stop routing reads to us for it. The retraction
/// half of Fix 1 (#4642 spec step 1).
///
/// Called from `RuntimePool::remove_contract` once a required on-disk half is
/// actually gone — the confirmed-`ReclaimOutcome::Full | Partial` delete path (a
/// `Partial` half-delete can no longer be served, so it retracts too; `Err`, with
/// nothing deleted, does not) — i.e. AFTER the re-host / re-subscribe /
/// newer-generation guards that would otherwise keep the contract. Wiring it there
/// (not at the eviction *decision* in [`reclaim_evicted_contract`]) is what keeps
/// a contract kept alive by that race both fresh AND advertised.
///
/// Best-effort and non-blocking (`try_notify_node_event`): unlike
/// [`announce_contract_hosted`] (a one-shot hosting announce that MUST be
/// delivered, hence its blocking await), a dropped retraction self-heals within
/// one interest-heartbeat interval (~5 min) when a co-host re-requests our full
/// hosted set and full-replaces its view of us (the piggybacked hosting
/// re-request in `interest_heartbeat`). `on_contract_unhosted` is idempotent, so
/// a pending-reclamation retry that reaches this after the state is already gone
/// is a harmless no-op.
pub(crate) fn announce_contract_unhosted(op_manager: &OpManager, key: &ContractKey) {
    if let Some(retraction) = op_manager.neighbor_hosting.on_contract_unhosted(key) {
        tracing::debug!(
            %key,
            "NEIGHBOR_HOSTING: Retracting hosting advertisement to neighbors"
        );
        if let Err(err) =
            op_manager.try_notify_node_event(crate::message::NodeEvent::BroadcastHostingUpdate {
                message: retraction,
            })
        {
            // Best-effort by design — the periodic full-set re-request
            // (piggybacked on `interest_heartbeat`) is the convergence backstop for
            // a dropped retraction. Debug, not warn: benign back-pressure under load.
            tracing::debug!(
                contract = %key,
                error = %err,
                "NEIGHBOR_HOSTING: retraction broadcast dropped (best-effort; \
                 healed by periodic full-set re-request)"
            );
        }
    }
}

/// Terminal advertisement consult (hosting redesign piece C, invariant 5:
/// "findability is routing + on-demand advertisement").
///
/// A GET/SUBSCRIBE routes toward a contract's key and reaches a *terminus*
/// — the closest peer it can route to, from which `k_closest_potentially_
/// hosting` yields no closer candidate. Location routing is purely
/// distance-based, so it never selects a neighbor that happens to host the
/// contract but sits *off* the direct routing path (farther from the key).
/// Before the terminus gives up with NotFound, it consults the host
/// advertisements its neighbors already broadcast (`NeighborHostingManager`)
/// and forwards the request to an advertised host if one exists.
///
/// This is NOT speculative pre-replication (invariant 5 forbids that): it
/// only ever forwards to a peer that *already advertised* hosting the
/// contract. It pushes and caches nothing and manufactures no demand.
///
/// Returns up to `max_hosts` connected advertised hosts, closest-to-key
/// first, each paired with its resolved socket address. `is_excluded`
/// screens out peers already tried/visited plus this node and the upstream
/// (so the consult can reuse the caller's existing visited/dedup state and
/// cannot loop back). Records the per-node consult attempt (and a hit when
/// at least one usable host is returned) on both the production
/// `network_status` scalars and the simulation-visible `GlobalTestMetrics`.
pub(crate) fn consult_advertised_hosts(
    op_manager: &OpManager,
    instance_id: &ContractInstanceId,
    max_hosts: usize,
    is_excluded: impl Fn(std::net::SocketAddr) -> bool,
) -> Vec<(PeerKeyLocation, std::net::SocketAddr)> {
    crate::config::GlobalTestMetrics::record_terminal_consult_attempt();
    crate::node::network_status::record_terminal_consult_attempt();

    // Resolve advertised neighbor pub keys to currently-connected peers.
    let advertised: Vec<PeerKeyLocation> = op_manager
        .neighbor_hosting
        .neighbors_with_contract_id(instance_id)
        .into_iter()
        .filter_map(|pub_key| {
            op_manager
                .ring
                .connection_manager
                .get_peer_by_pub_key(&pub_key)
        })
        .collect();

    let hosts = rank_advertised_hosts(
        Location::from(instance_id),
        advertised,
        max_hosts,
        is_excluded,
    );

    if !hosts.is_empty() {
        crate::config::GlobalTestMetrics::record_terminal_consult_hit();
        crate::node::network_status::record_terminal_consult_hit();
        tracing::debug!(
            %instance_id,
            advertised_hosts = hosts.len(),
            "TERMINAL_CONSULT: found advertised host(s) off the routing path"
        );
    }

    hosts
}

/// Pure ranking core of [`consult_advertised_hosts`], split out for unit
/// testing. Filters `advertised` to peers with a routable address and a
/// location that `is_excluded` does not reject, orders them closest-to-key
/// first (deterministic address tie-break), and returns at most `max_hosts`.
fn rank_advertised_hosts(
    target: Location,
    advertised: Vec<PeerKeyLocation>,
    max_hosts: usize,
    is_excluded: impl Fn(std::net::SocketAddr) -> bool,
) -> Vec<(PeerKeyLocation, std::net::SocketAddr)> {
    let mut candidates: Vec<(PeerKeyLocation, std::net::SocketAddr, Location)> = advertised
        .into_iter()
        .filter_map(|peer| {
            // Need a routable address AND a location to rank by; an
            // addressless advertised host cannot be a wire target.
            let addr = peer.socket_addr()?;
            let loc = peer.location()?;
            if is_excluded(addr) {
                return None;
            }
            Some((peer, addr, loc))
        })
        .collect();

    // Deterministic ordering: closest to the key first, tie-break on addr so
    // the pick is stable across runs (DashMap iteration is not).
    candidates.sort_by(|(_, a_addr, a_loc), (_, b_addr, b_loc)| {
        a_loc
            .distance(target)
            .partial_cmp(&b_loc.distance(target))
            .unwrap_or(std::cmp::Ordering::Equal)
            .then_with(|| a_addr.cmp(b_addr))
    });
    candidates.truncate(max_hosts);

    candidates
        .into_iter()
        .map(|(peer, addr, _loc)| (peer, addr))
        .collect()
}

/// Record the terminal outcome of a consult that ran at a terminus:
/// `resolved_found = true` when a consult forward closed the dead-end
/// (Found/Subscribed), `false` when the request still ended NotFound.
/// Mirrors to both the production `network_status` scalars and the
/// simulation-visible `GlobalTestMetrics`.
pub(crate) fn record_terminal_consult_outcome(resolved_found: bool) {
    if resolved_found {
        crate::config::GlobalTestMetrics::record_terminal_consult_resolved_found();
        crate::node::network_status::record_terminal_consult_resolved_found();
    } else {
        crate::config::GlobalTestMetrics::record_terminal_consult_still_not_found();
        crate::node::network_status::record_terminal_consult_still_not_found();
    }
}

/// Reclaim the on-disk storage of a contract that was evicted from the
/// hosting cache. Skips contracts that are still in use — an active client
/// subscription or a downstream peer subscriber means something still
/// depends on us hosting it, so its state/code must NOT be deleted. See
/// `HostingManager::contract_in_use` for why an active upstream network
/// subscription alone is NOT included in the gate.
///
/// `expected_generation` is the state-write generation captured atomically
/// with the eviction decision (see `HostingCache::record_access` /
/// `sweep_expired`). It is carried through `EvictContract` so the
/// deletion-time guard in `RuntimePool::remove_contract` can detect a
/// state write (PUT/UPDATE) that re-hosted the contract between eviction
/// and this handler running — that case must skip disk reclamation
/// because the freshly written state would otherwise be deleted.
///
/// Fire-and-forget: emits an `EvictContract` event to the contract handler,
/// which routes it through the fair queue (serialized per-contract with other
/// ops on the same key) and reclaims disk in `handle_contract_event`.
pub(crate) fn reclaim_evicted_contract(
    op_manager: &OpManager,
    key: ContractKey,
    expected_generation: u64,
) {
    if op_manager.ring.contract_in_use(&key) {
        tracing::debug!(
            contract = %key,
            "Skipping disk reclamation for evicted contract — still in use \
             (client subscription or downstream subscriber); queued for retry"
        );
        // Queue for retry by the periodic sweep: the hosting-cache entry is
        // already gone (we are processing its `evicted` tuple), so when the
        // subscriber later expires nothing else would emit another
        // EvictContract for this key — without this, the disk state/code
        // would leak permanently. Mirrors the symmetric in-use skip in
        // RuntimePool::remove_contract.
        op_manager
            .ring
            .pending_reclamation_add(key, expected_generation);
        return;
    }
    // NOTE (Fix 1 retraction, #4642 spec step 1): the hosting-advertisement
    // retraction is NOT emitted here at the eviction DECISION. `EvictContract` is
    // fire-and-forget and the deletion-time guards in `RuntimePool::remove_contract`
    // DELIBERATELY skip the delete if the contract was re-hosted / re-subscribed /
    // written to a newer generation in the eviction→reclaim window. Retracting
    // here would then leave the node holding fresh state it no longer advertises
    // (an under-advertisement the periodic heartbeat cannot heal). Instead the
    // retraction is wired on the confirmed-delete path (`ReclaimOutcome::Full |
    // Partial`) in `RuntimePool::remove_contract`, so it fires exactly when a
    // required on-disk half is truly gone. That single point covers every eviction
    // funnel (GET/PUT insert
    // eviction, the periodic sweep, and — once built — evict-to-admit). (Interest-
    // gated COLLAPSE does not stop hosting on current `main`: `send_unsubscribe_
    // upstream` drops only the lease, leaving a still-fresh cached copy that must
    // keep advertising; when the reconcile-core flip makes demand-loss stop
    // hosting, that collapse-then-evict flows through this very funnel too.)

    // Disk reclamation after hosting-cache eviction is best-effort GC —
    // background-tier so it yields the contract loop to client/relay work (#4534).
    op_manager.notify_contract_handler_fire_and_forget_prioritized(
        crate::contract::ContractHandlerEvent::EvictContract {
            key,
            expected_generation,
        },
        crate::contract::Priority::Background,
    );
}

// `complete_piggyback_subscription` and `auto_subscribe_on_get_response` were
// REMOVED in piece E of the demand-driven hosting redesign
// (docs/design/demand-driven-hosting.md §9, hosting-invariants anti-patterns
// table). Their only caller was the GET-auto-subscribe block in
// `get/op_ctx_task.rs`, which auto-installed a durable subscription on every
// successful GET (subscribe=false) — the "GET-auto-subscribe" anti-pattern that
// manufactures demand no client requested. A GET now hosts on the return path
// only under piece A's demand gauge (evictable, non-durable); a client that
// wants ongoing freshness sets `subscribe=true`, which routes through the
// explicit subscribe path (`maybe_subscribe_child` -> `run_client_subscribe`).
// do NOT re-add an auto-subscribe-on-GET helper — see hosting-invariants
// (invariants 1 & 2).

/// Broadcast ChangeInterests message to all connected peers.
///
/// Called when local interest in contracts changes (gained or lost).
pub(crate) async fn broadcast_change_interests(
    op_manager: &OpManager,
    added: Vec<ContractKey>,
    removed: Vec<ContractKey>,
) {
    use crate::ring::interest::contract_hash;

    if added.is_empty() && removed.is_empty() {
        return;
    }

    let added_hashes: Vec<u32> = added.iter().map(contract_hash).collect();
    let removed_hashes: Vec<u32> = removed.iter().map(contract_hash).collect();

    tracing::debug!(
        added_count = added_hashes.len(),
        removed_count = removed_hashes.len(),
        "Broadcasting ChangeInterests to neighbors"
    );

    // Non-blocking emit: interest changes are best-effort gossip;
    // a missed one will be re-broadcast on the next change or
    // converged via the periodic InterestSync exchange (#4145).
    if let Err(err) =
        op_manager.try_notify_node_event(crate::message::NodeEvent::BroadcastChangeInterests {
            added: added_hashes,
            removed: removed_hashes,
        })
    {
        // Best-effort by design — log at debug to keep the caller
        // layer in step with the helper-internal downgrade (#4238).
        tracing::debug!(
            error = %err,
            "Failed to broadcast ChangeInterests (best-effort)"
        );
    }
}

/// Initiates a subscription after a PUT or GET, routing through the
/// subscribe driver as a fire-and-forget background task.
///
/// `blocking` is accepted for API stability (callers may inspect it for
/// telemetry) but has no behavioral effect here: PUT/GET drivers that
/// want to wait for completion `await` `subscribe::run_client_subscribe`
/// inline (see `maybe_subscribe_child` in `put/op_ctx_task.rs` and
/// `get/op_ctx_task.rs`).
pub(super) fn start_subscription_request(
    op_manager: &OpManager,
    parent_tx: Transaction,
    key: ContractKey,
    blocking: bool,
) -> Transaction {
    let child_tx = Transaction::new_child_of::<subscribe::SubscribeMsg>(&parent_tx);

    tracing::debug!(
        %parent_tx,
        %child_tx,
        %key,
        blocking,
        "spawning child subscription operation (driver)"
    );

    // `run_client_subscribe` requires `Arc<OpManager>`. Callers on
    // legacy `process_message` paths only have `&OpManager`, so we
    // wrap a single clone here. PUT/GET task drivers that already
    // hold `&Arc<OpManager>` route through their own
    // `maybe_subscribe_child` helper (see
    // `put/op_ctx_task.rs::maybe_subscribe_child` and the GET
    // counterpart) and don't pay this cost.
    let op_manager_arc = std::sync::Arc::new(op_manager.clone());
    let instance_id = *key.id();
    GlobalExecutor::spawn(async move {
        subscribe::run_client_subscribe(op_manager_arc, instance_id, child_tx).await;
    });

    child_tx
}

pub(crate) async fn has_contract(
    op_manager: &OpManager,
    instance_id: ContractInstanceId,
) -> Result<Option<ContractKey>, OpError> {
    match op_manager
        .notify_contract_handler(crate::contract::ContractHandlerEvent::GetQuery {
            instance_id,
            return_contract_code: false,
        })
        .await?
    {
        crate::contract::ContractHandlerEvent::GetResponse {
            key,
            response: Ok(crate::contract::StoreResponse { state: Some(_), .. }),
        } => Ok(key),
        crate::contract::ContractHandlerEvent::DelegateRequest { .. }
        | crate::contract::ContractHandlerEvent::DelegateResponse(_)
        | crate::contract::ContractHandlerEvent::ExportUserSecrets { .. }
        | crate::contract::ContractHandlerEvent::ExportUserSecretsResponse(_)
        | crate::contract::ContractHandlerEvent::ImportSecrets { .. }
        | crate::contract::ContractHandlerEvent::ImportSecretsResponse(_)
        | crate::contract::ContractHandlerEvent::PutQuery { .. }
        | crate::contract::ContractHandlerEvent::PutResponse { .. }
        | crate::contract::ContractHandlerEvent::GetQuery { .. }
        | crate::contract::ContractHandlerEvent::GetResponse { .. }
        | crate::contract::ContractHandlerEvent::UpdateQuery { .. }
        | crate::contract::ContractHandlerEvent::UpdateResponse { .. }
        | crate::contract::ContractHandlerEvent::UpdateNoChange { .. }
        | crate::contract::ContractHandlerEvent::RegisterSubscriberListener { .. }
        | crate::contract::ContractHandlerEvent::RegisterSubscriberListenerResponse
        | crate::contract::ContractHandlerEvent::QuerySubscriptions { .. }
        | crate::contract::ContractHandlerEvent::QuerySubscriptionsResponse
        | crate::contract::ContractHandlerEvent::GetSummaryQuery { .. }
        | crate::contract::ContractHandlerEvent::GetSummaryResponse { .. }
        | crate::contract::ContractHandlerEvent::GetDeltaQuery { .. }
        | crate::contract::ContractHandlerEvent::GetDeltaResponse { .. }
        | crate::contract::ContractHandlerEvent::ClientDisconnect { .. }
        | crate::contract::ContractHandlerEvent::EvictContract { .. } => Ok(None),
    }
}

/// Determines if streaming transport should be used for a payload of the given size.
///
/// Returns `true` if the payload size exceeds the streaming threshold (default: 64KB).
///
/// # Arguments
/// * `streaming_threshold` - Size threshold above which streaming is used (exclusive)
/// * `payload_size` - Size of the payload in bytes
///
/// # Note
/// The threshold comparison is exclusive (`>`), meaning payloads exactly at the
/// threshold will NOT use streaming. This is intentional: the threshold represents
/// "the maximum size for non-streaming transfers", so payloads must exceed it.
pub(crate) fn should_use_streaming(streaming_threshold: usize, payload_size: usize) -> bool {
    payload_size > streaming_threshold
}

/// Conservative effective throughput floor for streaming transfers (bytes/sec).
///
/// Used to scale the per-attempt timeout for streaming PUTs. Set to 20 KiB/s
/// so that even a slow link (or congested gateway) has time to drain a large
/// payload before the retry loop fires. Real-world end-to-end throughput
/// observed for the freenet.org website upload (2.4 MB in ~62 s) is ~40 KiB/s,
/// so 20 KiB/s gives ~2x safety margin.
const STREAMING_THROUGHPUT_FLOOR_BPS: usize = 20 * 1024;

/// Minimum drain budget added to streaming timeouts on top of `OPERATION_TTL`.
///
/// Without this floor, payloads just above `streaming_threshold` (where
/// `payload_size / STREAMING_THROUGHPUT_FLOOR_BPS` rounds down to 0) would
/// fall back to the unscaled `OPERATION_TTL` even though `process_message`
/// chose to stream them. That's exactly the #4001 bug — so guarantee at
/// least an extra 30 s of headroom for *every* streaming-eligible payload.
/// 30 s covers stream handshake + first chunk RTT + brief congestion.
const STREAMING_MIN_DRAIN_SECS: u64 = 30;

/// Hard ceiling on the per-attempt timeout for streaming PUTs.
///
/// Even at the throughput floor, a 25 MB payload would only need ~21 minutes,
/// but capping at 10 minutes prevents pathological cases (a wedged remote that
/// never errors) from holding the driver hostage indefinitely. The retry loop
/// can still recover by advancing to a different peer when this fires.
pub(crate) const STREAMING_ATTEMPT_TIMEOUT_CAP: std::time::Duration =
    std::time::Duration::from_secs(600);

/// Compute the per-attempt timeout for an operation whose payload may use
/// streaming transport.
///
/// For non-streaming payloads (size <= `streaming_threshold`), returns
/// [`crate::config::OPERATION_TTL`] (60 s) — there is no per-fragment progress
/// to wait on, so the standard timeout applies.
///
/// For streaming payloads, returns `OPERATION_TTL` (handshake / k-closest /
/// downstream relays) plus `max(STREAMING_MIN_DRAIN_SECS, payload_size /
/// STREAMING_THROUGHPUT_FLOOR_BPS)` seconds to give the streaming layer time
/// to drain the bytes, capped at [`STREAMING_ATTEMPT_TIMEOUT_CAP`] (10 min).
/// The `STREAMING_MIN_DRAIN_SECS` floor ensures payloads just above the
/// threshold still escape the unscaled `OPERATION_TTL` (integer truncation
/// would otherwise reduce the drain term to zero — re-introducing the
/// #4001 bug for payloads of size `(threshold, threshold + floor_bps)`).
///
/// This is a heuristic: it relocates the cliff at which `drive_retry_loop`
/// fires retries while the original streaming op is still in flight, but does
/// not eliminate it. Issue #4001 has a follow-up design to replace this with
/// a true stream-inactivity timeout that observes per-fragment progress.
pub(crate) fn streaming_aware_attempt_timeout(
    streaming_threshold: usize,
    payload_size: usize,
) -> std::time::Duration {
    if !should_use_streaming(streaming_threshold, payload_size) {
        return crate::config::OPERATION_TTL;
    }
    let drain_secs =
        ((payload_size / STREAMING_THROUGHPUT_FLOOR_BPS) as u64).max(STREAMING_MIN_DRAIN_SECS);
    let total = crate::config::OPERATION_TTL + std::time::Duration::from_secs(drain_secs);
    total.min(STREAMING_ATTEMPT_TIMEOUT_CAP)
}

/// Records a routing event observed by a relay/forwarding hop.
///
/// Without this hook, only the operation's originator feeds events into the
/// router. `OpOutcome::ContractOp*` is only produced for ops where
/// `upstream_addr.is_none()`, and relay hops return `SendAndComplete` without
/// going through `outcome()`. On a relay-heavy node the router would see
/// almost no per-peer data, leaving the failure-probability model untrained
/// and the per-peer dashboard panels empty even when MB of traffic flowed
/// through each connection.
///
/// Call this at the relay-side response sites in each operation when the
/// downstream peer the relay chose returns success or failure. Timeout and
/// disconnect paths are already covered by `report_timeout_failure` in
/// `node/op_state_manager.rs` via `failure_routing_info`.
///
/// # Outcome attribution
///
/// The `outcome` argument matches the legacy originator-side semantics
/// (see `OpOutcome::Contract*` and the per-op `outcome()` methods). In
/// particular, **prompt `NotFound` from a downstream peer is recorded
/// as `RouteOutcome::Failure`**, not Success. A peer that promptly
/// answers "I don't host this contract" behaved correctly at the
/// transport level, but the failure-probability model is asking "will
/// this peer deliver the contract at this location?" and a `NotFound`
/// reply means it won't — so for routing-decision purposes it's a
/// negative signal for *that contract location*. The relay sites
/// follow the same convention used by the originator's stalled-peer
/// retry path (`get.rs:2686` and `report_timeout_failure` in
/// `op_state_manager.rs`). Splitting transport-success from
/// content-availability would require a new `RouteOutcome::NotHosted`
/// variant and is out of scope here.
///
/// `LocalCompletion` and unexpected-reply variants are also recorded as
/// `Failure` against the downstream peer; these are "shouldn't happen"
/// paths and recording them as failures matches the relay's decision to
/// abandon that peer and try another.
///
/// # UPDATE exclusion
///
/// **UPDATE is intentionally not covered by this helper at relay sites.**
/// UPDATE relays use `send_fire_and_forget` for downstream forwarding
/// (`drive_relay_request_update`, `drive_relay_broadcast_to`, and the
/// streaming variants), so the relay never observes whether the downstream
/// peer succeeded or failed. Recording only the local send-error path
/// would bias the per-peer UPDATE failure rate to 100% by construction.
/// `report_timeout_failure` in `op_state_manager.rs` still records UPDATE
/// timeouts via `failure_routing_info` on the originator side; this is
/// the same signal as for the other ops, just not augmented by relay
/// observations.
pub(crate) fn record_relay_route_event(
    op_manager: &OpManager,
    next_hop: PeerKeyLocation,
    contract_location: Location,
    outcome: crate::router::RouteOutcome,
    op_type: crate::node::network_status::OpType,
) {
    #[cfg(any(test, feature = "testing"))]
    {
        use std::sync::atomic::Ordering;
        let counter = match op_type {
            crate::node::network_status::OpType::Get => &RELAY_GET_ROUTE_EVENT_COUNT,
            crate::node::network_status::OpType::Put => &RELAY_PUT_ROUTE_EVENT_COUNT,
            crate::node::network_status::OpType::Update => &RELAY_UPDATE_ROUTE_EVENT_COUNT,
            crate::node::network_status::OpType::Subscribe => &RELAY_SUBSCRIBE_ROUTE_EVENT_COUNT,
        };
        counter.fetch_add(1, Ordering::Relaxed);
    }
    // Feed only the routing model — NOT peer_health or topology_manager.
    //
    // `Ring::routing_finished` also updates `peer_health` (which uses
    // `std::time::Instant::now()` in `connection_manager.rs::PeerHealthTracker`
    // around lines 182-203, a pre-existing TimeSource rule violation)
    // and the topology_manager's `request_density_tracker`. An earlier
    // iteration of this branch routed relay events through
    // `routing_finished` and broke three strict-determinism tests
    // (`test_strict_determinism_*` / `test_direct_runner_determinism` /
    // `test_thundering_herd_connect_storm`). Bypassing those side
    // effects fixed all three.
    //
    // CAVEAT: `Router::add_event` itself transitively calls
    // `RoutingPredictor::record` → `wall_clock_hours()` → `SystemTime::now()`
    // (see `router/routing_predictor.rs:608-614`). So the router path is
    // not strictly TimeSource-clean either; the determinism tests pass
    // because the wall-clock variance there is well below the events
    // each test counts. Migrating both `peer_health` and
    // `routing_predictor` to `TimeSource` would let
    // `record_relay_route_event` go back to calling `routing_finished`
    // straightforwardly. Tracked as a follow-up.
    op_manager
        .ring
        .router
        .write()
        .add_event(crate::router::RouteEvent {
            peer: next_hop,
            contract_location,
            outcome,
            op_type: Some(op_type),
        });
}

/// Test hook: counter incremented every time `record_relay_route_event`
/// fires for a relay-forwarded GET. Used by simulation tests to verify
/// the per-op-type relay hooks are reached. See `dev_tool` re-export.
#[cfg(any(test, feature = "testing"))]
pub static RELAY_GET_ROUTE_EVENT_COUNT: std::sync::atomic::AtomicU64 =
    std::sync::atomic::AtomicU64::new(0);

#[cfg(any(test, feature = "testing"))]
pub static RELAY_PUT_ROUTE_EVENT_COUNT: std::sync::atomic::AtomicU64 =
    std::sync::atomic::AtomicU64::new(0);

#[cfg(any(test, feature = "testing"))]
pub static RELAY_UPDATE_ROUTE_EVENT_COUNT: std::sync::atomic::AtomicU64 =
    std::sync::atomic::AtomicU64::new(0);

#[cfg(any(test, feature = "testing"))]
pub static RELAY_SUBSCRIBE_ROUTE_EVENT_COUNT: std::sync::atomic::AtomicU64 =
    std::sync::atomic::AtomicU64::new(0);

#[cfg(test)]
mod ordering_invariant_tests {
    //! Tests documenting critical ordering invariants in the operations module.
    //!
    //! These tests don't reproduce actual race conditions (which would require
    //! non-deterministic timing), but document the design decisions and invariants
    //! that prevent them.
    //!
    //! # Push-Before-Send Invariant
    //!
    //! The `handle_op_result` function (lines 178-182) maintains a critical invariant:
    //!
    //! ```text
    //! op_manager.push(id, updated_state).await?;  // FIRST
    //! network_bridge.send(target, msg).await?;    // SECOND
    //! ```
    //!
    //! ## Why This Ordering Matters
    //!
    //! If the order were reversed:
    //! 1. Message is sent to peer
    //! 2. Peer processes and responds FAST
    //! 3. Response arrives at origin
    //! 4. `load_or_init` tries to find operation in storage
    //! 5. **RACE**: `push` hasn't happened yet → operation not found → error
    //!
    //! ## The Invariant
    //!
    //! By pushing state BEFORE sending, we guarantee that when a response
    //! arrives (no matter how fast), the operation state is already in storage.
    //!
    //! ## Why We Can't Easily Test This
    //!
    //! Testing the race would require:
    //! 1. Intercepting between `push` and `send` calls
    //! 2. Simulating an instant response arrival
    //! 3. Verifying `load_or_init` finds the state
    //!
    //! This would require modifying production code to accept test hooks,
    //! which adds complexity for minimal benefit since the invariant is
    //! clear and the code correctly implements it.
    //!
    //! Instead, we document the invariant here and verify the building blocks work.

    use super::test_utils::MockNetworkBridge;
    use crate::message::{NetMessage, NetMessageV1, Transaction};
    use crate::node::NetworkBridge;
    use crate::operations::connect::ConnectMsg;
    use std::net::{IpAddr, Ipv4Addr, SocketAddr};

    /// Verify that MockNetworkBridge correctly records send ordering.
    ///
    /// This is a building block for any future ordering tests.
    #[tokio::test]
    async fn mock_network_bridge_records_send_ordering() {
        let bridge = MockNetworkBridge::new();
        let addr1 = SocketAddr::new(IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1)), 5000);
        let addr2 = SocketAddr::new(IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1)), 5001);

        let tx1 = Transaction::new::<ConnectMsg>();
        let tx2 = Transaction::new::<ConnectMsg>();

        // Send in specific order
        bridge
            .send(addr1, NetMessage::V1(NetMessageV1::Aborted(tx1)))
            .await
            .unwrap();
        bridge
            .send(addr2, NetMessage::V1(NetMessageV1::Aborted(tx2)))
            .await
            .unwrap();

        // Verify ordering is preserved in recording
        let sent = bridge.sent_messages();
        assert_eq!(sent.len(), 2);
        assert_eq!(sent[0].0, addr1, "First send should be to addr1");
        assert_eq!(sent[1].0, addr2, "Second send should be to addr2");
    }

    /// Document that push-before-send is intentional via code comment verification.
    ///
    /// This test serves as a tripwire: if someone removes the comment explaining
    /// the invariant, this test name will remind them of its importance.
    #[test]
    fn push_before_send_invariant_is_documented() {
        // The invariant is documented at operations.rs lines 178-182:
        //
        // ```rust
        // // IMPORTANT: Push state BEFORE sending message to avoid race condition.
        // // If we send first, a fast response might arrive before the state is saved,
        // // causing load_or_init to fail to find the operation.
        // op_manager.push(id, updated_state).await?;
        // network_bridge.send(target, msg).await?;
        // ```
        //
        // This test documents that the invariant exists and is intentional.
        // If refactoring this code, maintain the push-before-send ordering!
    }
}

#[cfg(test)]
mod streaming_tests {
    use super::{
        STREAMING_ATTEMPT_TIMEOUT_CAP, should_use_streaming, streaming_aware_attempt_timeout,
    };
    use crate::config::OPERATION_TTL;
    use std::time::Duration;

    const DEFAULT_THRESHOLD: usize = 64 * 1024; // 64KB

    #[test]
    fn test_streaming_respects_threshold() {
        assert!(!should_use_streaming(DEFAULT_THRESHOLD, 0));
        assert!(!should_use_streaming(DEFAULT_THRESHOLD, 1000));
        assert!(!should_use_streaming(DEFAULT_THRESHOLD, DEFAULT_THRESHOLD)); // exactly at threshold
        assert!(should_use_streaming(
            DEFAULT_THRESHOLD,
            DEFAULT_THRESHOLD + 1
        )); // just above
        assert!(should_use_streaming(DEFAULT_THRESHOLD, 1024 * 1024)); // 1MB
    }

    #[test]
    fn test_streaming_custom_threshold() {
        let custom_threshold = 128 * 1024; // 128KB
        assert!(!should_use_streaming(custom_threshold, 64 * 1024));
        assert!(!should_use_streaming(custom_threshold, custom_threshold));
        assert!(should_use_streaming(custom_threshold, custom_threshold + 1));
    }

    #[test]
    fn test_streaming_zero_threshold() {
        // With threshold of 0, any non-zero payload uses streaming
        assert!(!should_use_streaming(0, 0));
        assert!(should_use_streaming(0, 1));
        assert!(should_use_streaming(0, 100));
    }

    /// Non-streaming payloads (at or below the threshold) get the standard
    /// `OPERATION_TTL`. Crossing the threshold is what triggers scaling.
    #[test]
    fn non_streaming_payload_uses_operation_ttl() {
        assert_eq!(
            streaming_aware_attempt_timeout(DEFAULT_THRESHOLD, 0),
            OPERATION_TTL
        );
        assert_eq!(
            streaming_aware_attempt_timeout(DEFAULT_THRESHOLD, 1024),
            OPERATION_TTL
        );
        assert_eq!(
            streaming_aware_attempt_timeout(DEFAULT_THRESHOLD, DEFAULT_THRESHOLD),
            OPERATION_TTL
        );
    }

    /// Regression test for #4001: a 2.4 MB payload (the freenet.org website
    /// case) MUST get a per-attempt timeout that exceeds the observed
    /// end-to-end completion time of ~62 s. With the old hard-coded 60 s
    /// `OPERATION_TTL`, the retry loop fired three retries while the
    /// original streaming PUT was still in flight, causing version-conflict
    /// failures on every push to `freenet/web`.
    #[test]
    fn website_payload_attempt_timeout_exceeds_observed_completion() {
        let website_payload_size = 2_460_242; // bytes, from freenet/web 2026-05-01 logs
        let timeout = streaming_aware_attempt_timeout(DEFAULT_THRESHOLD, website_payload_size);
        let observed_completion = Duration::from_secs(63); // log: elapsed_ms=62335

        assert!(
            timeout > observed_completion,
            "streaming-aware timeout ({timeout:?}) must exceed observed \
             completion time ({observed_completion:?}) so the retry loop \
             does not fire while the original streaming PUT is still in \
             flight (issue #4001)"
        );
        assert!(
            timeout > OPERATION_TTL,
            "streaming-aware timeout ({timeout:?}) must exceed OPERATION_TTL \
             ({OPERATION_TTL:?}); otherwise the fix is a no-op for the bug \
             reported in #4001"
        );
    }

    /// Streaming timeouts grow with payload size — a 10 MB payload gets a
    /// strictly larger timeout than a 1 MB payload, so the cliff scales.
    #[test]
    fn streaming_timeout_scales_with_payload_size() {
        let small_streaming = streaming_aware_attempt_timeout(DEFAULT_THRESHOLD, 1_000_000);
        let medium_streaming = streaming_aware_attempt_timeout(DEFAULT_THRESHOLD, 10_000_000);

        assert!(
            small_streaming < medium_streaming,
            "1 MB timeout ({small_streaming:?}) must be smaller than \
             10 MB timeout ({medium_streaming:?})"
        );
        assert!(small_streaming > OPERATION_TTL);
        assert!(medium_streaming > OPERATION_TTL);
    }

    /// Pathological payloads cannot push the per-attempt timeout above the
    /// hard ceiling. Without this, a wedged remote could hold the driver
    /// hostage indefinitely.
    #[test]
    fn streaming_timeout_capped_at_ceiling() {
        // 1 GB — far beyond the per-attempt ceiling at 20 KB/s floor.
        let huge = streaming_aware_attempt_timeout(DEFAULT_THRESHOLD, 1024 * 1024 * 1024);
        assert_eq!(
            huge, STREAMING_ATTEMPT_TIMEOUT_CAP,
            "huge payloads must clamp to the cap"
        );
    }

    /// Boundary: the threshold itself is non-streaming, but `threshold + 1`
    /// crosses into streaming territory. The timeout MUST jump *strictly*
    /// above `OPERATION_TTL` at the crossing — otherwise streaming PUTs
    /// just over the threshold inherit the unscaled 60 s timeout that this
    /// fix is trying to escape.
    ///
    /// Without [`super::STREAMING_MIN_DRAIN_SECS`], integer division
    /// would truncate `1 / 20 KiB` to 0 s of drain budget for any payload
    /// of size `(threshold, threshold + STREAMING_THROUGHPUT_FLOOR_BPS)`,
    /// silently re-introducing the #4001 bug. Pin both ends of that gap.
    #[test]
    fn streaming_timeout_jumps_above_threshold_boundary() {
        let at_threshold = streaming_aware_attempt_timeout(DEFAULT_THRESHOLD, DEFAULT_THRESHOLD);
        let just_above = streaming_aware_attempt_timeout(DEFAULT_THRESHOLD, DEFAULT_THRESHOLD + 1);
        // 19 KiB above threshold — would be `0 s drain` under naive
        // truncation, but the floor saves us.
        let in_truncation_gap =
            streaming_aware_attempt_timeout(DEFAULT_THRESHOLD, DEFAULT_THRESHOLD + 19 * 1024);
        assert_eq!(at_threshold, OPERATION_TTL);
        assert!(
            just_above > OPERATION_TTL,
            "just-above-threshold timeout {just_above:?} must STRICTLY \
             exceed OPERATION_TTL ({OPERATION_TTL:?}); a fix that lets \
             this equal OPERATION_TTL is a no-op for the size range \
             (threshold, threshold + 20 KiB) — exactly the truncation \
             gap STREAMING_MIN_DRAIN_SECS exists to close (#4001 \
             skeptical review)"
        );
        assert!(
            in_truncation_gap > OPERATION_TTL,
            "payload in the truncation gap (threshold + 19 KiB) must \
             exceed OPERATION_TTL — STREAMING_MIN_DRAIN_SECS guarantees it"
        );
    }

    /// The minimum-drain floor applies to every streaming-eligible payload.
    /// Pin the exact value so a future tightening of the floor can't
    /// silently reintroduce the truncation gap.
    #[test]
    fn streaming_timeout_min_drain_floor() {
        let just_above = streaming_aware_attempt_timeout(DEFAULT_THRESHOLD, DEFAULT_THRESHOLD + 1);
        assert_eq!(
            just_above,
            OPERATION_TTL + Duration::from_secs(super::STREAMING_MIN_DRAIN_SECS),
            "streaming-eligible payloads must get at least \
             OPERATION_TTL + STREAMING_MIN_DRAIN_SECS"
        );
    }

    /// Pin the exact payload size where the timeout stops scaling and
    /// clamps to the 10-min ceiling. With a 60 s base + 20 KiB/s floor +
    /// 600 s cap, scaling stops at exactly `(600 - 60) * 20 KiB`.
    #[test]
    fn streaming_timeout_cap_boundary() {
        const FLOOR_BPS: usize = 20 * 1024;
        let scaling_max_bytes =
            (STREAMING_ATTEMPT_TIMEOUT_CAP - OPERATION_TTL).as_secs() as usize * FLOOR_BPS;
        let just_below_cap = streaming_aware_attempt_timeout(DEFAULT_THRESHOLD, scaling_max_bytes);
        let at_cap = streaming_aware_attempt_timeout(DEFAULT_THRESHOLD, scaling_max_bytes + 1);
        assert_eq!(just_below_cap, STREAMING_ATTEMPT_TIMEOUT_CAP);
        assert_eq!(at_cap, STREAMING_ATTEMPT_TIMEOUT_CAP);
    }
}

#[cfg(test)]
mod sub_op_subscribe_pin_tests {
    //! Pin tests that prove `start_subscription_request` spawns
    //! `subscribe::run_client_subscribe` and does not register with a
    //! sub-operation tracker.

    fn extract_start_subscription_request_body() -> &'static str {
        let src = include_str!("operations.rs");
        // Compose runtime-needle to avoid self-trigger (the test file
        // itself contains the literal "fn start_subscription_request").
        let head = ["fn ", "start_subscription_request("].concat();
        let start = src
            .find(&head)
            .expect("`fn start_subscription_request(` must exist in operations.rs");
        // Walk forward from the function signature to the first `{`,
        // then track brace depth until we find the matching close.
        // This is robust against renaming/moving the next function.
        let body_open = src[start..]
            .find('{')
            .map(|off| start + off)
            .expect("expected `{` after function signature");
        let mut depth: i32 = 0;
        let mut end = body_open;
        for (i, ch) in src[body_open..].char_indices() {
            match ch {
                '{' => depth += 1,
                '}' => {
                    depth -= 1;
                    if depth == 0 {
                        end = body_open + i + 1;
                        break;
                    }
                }
                _ => {}
            }
        }
        assert!(
            end > body_open,
            "failed to find matching `}}` for start_subscription_request"
        );
        &src[start..end]
    }

    #[test]
    fn start_subscription_request_uses_run_client_subscribe() {
        let body = extract_start_subscription_request_body();
        assert!(
            !body.contains("subscribe::request_subscribe"),
            "`start_subscription_request` must route through \
             `subscribe::run_client_subscribe`, not `request_subscribe`."
        );
    }

    #[test]
    fn start_subscription_request_does_not_register_with_sub_op_tracker() {
        let body = extract_start_subscription_request_body();
        assert!(
            !body.contains("expect_and_register_sub_operation"),
            "`start_subscription_request` must NOT register with a \
             sub-operation tracker."
        );
        assert!(
            !body.contains("sub_operation_failed"),
            "`start_subscription_request` must NOT propagate failures \
             via `sub_operation_failed` — the subscribe driver \
             publishes its own `HostResult::Err`."
        );
    }

    #[test]
    fn start_subscription_request_spawns_driver_driver() {
        let body = extract_start_subscription_request_body();
        assert!(
            body.contains("subscribe::run_client_subscribe"),
            "`start_subscription_request` must spawn the driver \
             subscribe driver `subscribe::run_client_subscribe` — \
             matches the `maybe_subscribe_child` pattern in \
             `put/op_ctx_task.rs` and `get/op_ctx_task.rs`."
        );
    }
}

#[cfg(test)]
mod reclaim_retraction_pin_tests {
    //! Pin tests for the Fix 1 retraction wiring (#4642 spec step 1). The
    //! hosting-advertisement retraction must fire on the CONFIRMED-delete path
    //! (`RuntimePool::remove_contract`, gated `ReclaimOutcome::Full | Partial`),
    //! NOT at the eviction DECISION in `reclaim_evicted_contract`: the deletion-time
    //! guards
    //! (re-host / re-subscribe / newer-generation) may skip the delete, and a
    //! retraction at the decision site would then leave the node holding fresh
    //! state it no longer advertises. A future refactor — including the
    //! reconcile-core `Retract` flip — must neither move it back to the decision
    //! site nor drop it. (Every eviction funnels through `remove_contract`:
    //! GET/PUT insert eviction, the periodic sweep, and — once built —
    //! evict-to-admit.)

    fn extract_fn_body(src: &'static str, needle: &str) -> &'static str {
        let start = src
            .find(needle)
            .unwrap_or_else(|| panic!("`{needle}` must exist"));
        let body_open = src[start..]
            .find('{')
            .map(|off| start + off)
            .expect("expected `{` after function signature");
        let mut depth: i32 = 0;
        let mut end = body_open;
        for (i, ch) in src[body_open..].char_indices() {
            match ch {
                '{' => depth += 1,
                '}' => {
                    depth -= 1;
                    if depth == 0 {
                        end = body_open + i + 1;
                        break;
                    }
                }
                _ => {}
            }
        }
        assert!(
            end > body_open,
            "failed to find matching `}}` for `{needle}`"
        );
        &src[start..end]
    }

    #[test]
    fn reclaim_evicted_contract_does_not_retract_at_the_decision_site() {
        let src = include_str!("operations.rs");
        // Runtime-compose the needle so this pin does not match itself.
        let needle = ["fn ", "reclaim_evicted_contract("].concat();
        let body = extract_fn_body(src, &needle);
        assert!(
            !body.contains("announce_contract_unhosted("),
            "`reclaim_evicted_contract` must NOT retract at the eviction decision — \
             the deletion-time guards may skip the delete, which would leave the \
             node holding fresh state it no longer advertises. The retraction is \
             wired on the confirmed-delete path in `RuntimePool::remove_contract`."
        );
    }

    #[test]
    fn remove_contract_retracts_on_any_confirmed_delete_not_on_err() {
        // pool.rs is the ONLY layer with the deletion-time generation guard and
        // the Full/Partial reclaim outcome, so the retraction lives there.
        let src = include_str!("contract/executor/runtime/pool.rs");
        let needle = ["fn ", "remove_contract("].concat();
        let body = extract_fn_body(src, &needle);
        assert!(
            body.contains("announce_contract_unhosted("),
            "`RuntimePool::remove_contract` must retract the hosting advertisement \
             on the confirmed delete (Fix 1, invariant 1)."
        );
        // It must fire only when a required on-disk half is actually gone — i.e.
        // gated on `ReclaimOutcome::Full | ReclaimOutcome::Partial`. `Err` (both
        // deletes failed → nothing removed → still serveable) must KEEP advertising.
        assert!(
            body.contains("ReclaimOutcome::Full | ReclaimOutcome::Partial"),
            "the retraction must be gated on `ReclaimOutcome::Full | ReclaimOutcome::\
             Partial` (any required half gone) — a `Partial` half-delete can no \
             longer be served, so it must retract too; `Err` (nothing deleted) must \
             not."
        );
        // It must come AFTER the deletion-time guards / the reclaim match — never at
        // the eviction decision (the premature-retraction bug Codex flagged): a
        // guard-bail (re-host / re-subscribe / newer generation) returns early
        // BEFORE reaching the reclaim, so it never retracts a still-present contract.
        let outcome = body
            .find("ReclaimOutcome::Full")
            .expect("the reclaim-outcome match must exist");
        let retract = body
            .find("announce_contract_unhosted(")
            .expect("the retraction call must exist");
        assert!(
            retract > outcome,
            "the retraction must come after the reclaim-outcome match (post-guards), \
             so a guard-bail does NOT retract a contract whose state is still present"
        );
    }
}

#[cfg(test)]
mod egress_banned_gate_tests {
    //! Direct behavioral tests for the #4300 egress self-block gate
    //! (`reject_if_contract_banned` → `reject_if_contract_banned_on`).
    //!
    //! The source-scrape pins in each `op_ctx_task.rs` prove the four
    //! `start_client_*` entry points *call* the gate, and the mapping
    //! test in `client_events.rs` proves `OpError::ContractBanned` maps
    //! to the right `ErrorKind`. Neither exercises the gate's actual
    //! decision against a real `ContractBanList`, so an inverted
    //! predicate (`!is_banned`), a wrong-id lookup, or a swapped
    //! `Ok`/`Err` return would pass every existing test. These tests
    //! drive the real `is_banned`-backed logic so that class of bug
    //! fails CI.
    use super::{OpError, reject_if_contract_banned_on};
    use crate::ring::contract_ban_list::{BanReason, ContractBanList};
    use crate::util::time_source::{SharedMockTimeSource, TimeSource};
    use freenet_stdlib::prelude::ContractInstanceId;
    use std::sync::Arc;
    use std::time::Duration;

    fn mk_contract(byte: u8) -> ContractInstanceId {
        ContractInstanceId::new([byte; 32])
    }

    fn mk_ban_list() -> (ContractBanList, SharedMockTimeSource) {
        let ts = SharedMockTimeSource::new();
        let bl = ContractBanList::new(Arc::new(ts.clone()));
        (bl, ts)
    }

    /// A banned contract's id must be rejected with the typed
    /// `OpError::ContractBanned` carrying that exact id. Catches an
    /// inverted predicate (would return `Ok`) and a swapped return.
    #[test]
    fn banned_contract_is_rejected_with_typed_error() {
        let (bl, ts) = mk_ban_list();
        let banned = mk_contract(1);
        bl.ban(
            banned,
            ts.now() + Duration::from_secs(60),
            BanReason::AutoMad,
        );

        match reject_if_contract_banned_on(&bl, &banned) {
            Err(OpError::ContractBanned { instance_id }) => {
                assert_eq!(
                    instance_id, banned,
                    "the rejected id must be the banned contract's id, not some other id"
                );
            }
            other => panic!(
                "banned contract must be rejected with OpError::ContractBanned, got {other:?}"
            ),
        }
    }

    /// A contract that is NOT on the ban list must pass the gate.
    /// Catches an inverted predicate (would reject everything).
    #[test]
    fn unbanned_contract_passes() {
        let (bl, _ts) = mk_ban_list();
        assert!(
            reject_if_contract_banned_on(&bl, &mk_contract(2)).is_ok(),
            "a contract that is not banned must pass the egress gate"
        );
    }

    /// The gate keys on the specific id: banning contract A must not
    /// reject a different, unbanned contract B. Catches a wrong-id
    /// lookup that ignores the argument and consults the whole list.
    #[test]
    fn ban_is_scoped_to_the_specific_contract_id() {
        let (bl, ts) = mk_ban_list();
        let banned = mk_contract(1);
        let other = mk_contract(2);
        bl.ban(
            banned,
            ts.now() + Duration::from_secs(60),
            BanReason::AutoMad,
        );

        assert!(
            reject_if_contract_banned_on(&bl, &banned).is_err(),
            "the banned contract must be rejected"
        );
        assert!(
            reject_if_contract_banned_on(&bl, &other).is_ok(),
            "a different, unbanned contract must NOT be rejected by another contract's ban"
        );
    }

    /// Once a ban's TTL expires, the gate must let the contract through
    /// again — the egress block is time-bounded, matching the
    /// receive-side `is_banned` expiry semantics.
    #[test]
    fn expired_ban_no_longer_rejects() {
        let (bl, ts) = mk_ban_list();
        let contract = mk_contract(1);
        bl.ban(
            contract,
            ts.now() + Duration::from_secs(60),
            BanReason::AutoMad,
        );
        assert!(
            reject_if_contract_banned_on(&bl, &contract).is_err(),
            "contract must be rejected while the ban is active"
        );

        ts.advance_time(Duration::from_secs(61));
        assert!(
            reject_if_contract_banned_on(&bl, &contract).is_ok(),
            "contract must pass the gate once its ban TTL has expired"
        );
    }
}

#[cfg(test)]
mod terminal_consult_tests {
    //! Unit tests for the pure ranking core of the terminal advertisement
    //! consult (hosting redesign piece C, invariant 5). The end-to-end
    //! behaviour (a GET whose only host is one hop off the routing path)
    //! is covered by the simulation test
    //! `test_terminal_advertisement_consult_closes_get_dead_end`.
    use super::rank_advertised_hosts;
    use crate::ring::{Location, PeerKeyLocation};
    use crate::transport::TransportKeypair;
    use std::net::SocketAddr;

    // Loopback addresses so `Location::from_address` differentiates by port
    // (it masks the last IP byte for non-loopback addresses, which would
    // collapse distinct hosts onto one ring location).
    fn peer_at(addr: &str) -> PeerKeyLocation {
        let addr: SocketAddr = addr.parse().unwrap();
        PeerKeyLocation::new(TransportKeypair::new().public().clone(), addr)
    }

    #[test]
    fn ranks_closest_advertised_host_to_key_first() {
        let a = peer_at("127.0.0.1:1000");
        let b = peer_at("127.0.0.1:2000");
        let c = peer_at("127.0.0.1:3000");
        // Target = location of peer `b`'s address, so `b` is the closest
        // advertised host and must rank first regardless of input order.
        let target = b.location().unwrap();

        let ranked =
            rank_advertised_hosts(target, vec![a.clone(), b.clone(), c.clone()], 3, |_| false);

        assert_eq!(ranked.len(), 3);
        assert_eq!(
            ranked[0].0.pub_key(),
            b.pub_key(),
            "the advertised host closest to the key must be returned first"
        );
    }

    #[test]
    fn truncates_to_max_hosts() {
        let peers = vec![
            peer_at("127.0.0.1:1000"),
            peer_at("127.0.0.1:2000"),
            peer_at("127.0.0.1:3000"),
        ];
        let target = Location::from_address(&"127.0.0.1:9000".parse().unwrap());

        let ranked = rank_advertised_hosts(target, peers, 2, |_| false);
        assert_eq!(ranked.len(), 2, "must return at most max_hosts candidates");
    }

    #[test]
    fn excludes_filtered_addresses() {
        let keep = peer_at("127.0.0.1:1000");
        let skip = peer_at("127.0.0.1:2000");
        let skip_addr = skip.socket_addr().unwrap();
        let target = Location::from_address(&"127.0.0.1:9000".parse().unwrap());

        let ranked =
            rank_advertised_hosts(target, vec![keep.clone(), skip.clone()], 5, move |addr| {
                addr == skip_addr
            });

        assert_eq!(
            ranked.len(),
            1,
            "the excluded (already-visited) host must be dropped"
        );
        assert_eq!(ranked[0].0.pub_key(), keep.pub_key());
        assert!(
            ranked.iter().all(|(_, addr)| *addr != skip_addr),
            "the excluded address must never be returned as a forward target"
        );
    }

    #[test]
    fn empty_when_no_advertised_hosts() {
        let target = Location::from_address(&"127.0.0.1:9000".parse().unwrap());
        let ranked = rank_advertised_hosts(target, vec![], 2, |_| false);
        assert!(ranked.is_empty());
    }

    #[test]
    fn terminal_consult_metrics_reset_and_increment() {
        use crate::config::GlobalTestMetrics;
        GlobalTestMetrics::reset();
        assert_eq!(GlobalTestMetrics::terminal_consult_attempts(), 0);
        assert_eq!(GlobalTestMetrics::terminal_consult_hits(), 0);
        assert_eq!(GlobalTestMetrics::terminal_consult_resolved_found(), 0);
        assert_eq!(GlobalTestMetrics::terminal_consult_still_not_found(), 0);

        GlobalTestMetrics::record_terminal_consult_attempt();
        GlobalTestMetrics::record_terminal_consult_hit();
        super::record_terminal_consult_outcome(true);
        super::record_terminal_consult_outcome(false);

        assert_eq!(GlobalTestMetrics::terminal_consult_attempts(), 1);
        assert_eq!(GlobalTestMetrics::terminal_consult_hits(), 1);
        assert_eq!(GlobalTestMetrics::terminal_consult_resolved_found(), 1);
        assert_eq!(GlobalTestMetrics::terminal_consult_still_not_found(), 1);
        GlobalTestMetrics::reset();
    }
}