irontide-session 1.0.1

BitTorrent session management: peers, torrents, and piece selection
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
//! Per-torrent tracker announce lifecycle management.
//!
//! Parses tracker URLs from torrent metadata, manages announce intervals,
//! and handles exponential backoff on failure.

use std::net::SocketAddr;
use std::time::{Duration, Instant};

use serde::Serialize;
use tokio::sync::mpsc;
use tracing::{debug, warn};

use irontide_core::{Id20, InfoHashes, TorrentMetaV1};
use irontide_tracker::{AnnounceEvent, AnnounceRequest, HttpTracker, UdpTracker};

/// Maximum backoff duration for failed trackers.
const MAX_BACKOFF: Duration = Duration::from_mins(30); // 30 minutes

/// Initial backoff duration after a tracker failure.
const INITIAL_BACKOFF: Duration = Duration::from_secs(30);

/// Default re-announce interval if tracker doesn't specify one.
const DEFAULT_INTERVAL: Duration = Duration::from_mins(30); // 30 minutes

/// Protocol type for a tracker URL.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum TrackerProtocol {
    Http,
    Udp,
}

/// State of a single tracker.
#[derive(Debug, Clone)]
enum TrackerState {
    /// Ready for announce.
    NeedsAnnounce,
    /// Successfully announced, waiting for re-announce.
    Active,
    /// Failed, backing off.
    Failed { _error: String },
}

/// A single tracker entry with its state.
#[derive(Debug, Clone)]
struct TrackerEntry {
    url: String,
    tier: usize,
    protocol: TrackerProtocol,
    state: TrackerState,
    tracker_id: Option<String>,
    next_announce: Instant,
    interval: Duration,
    backoff: Duration,
    scrape_info: Option<irontide_tracker::ScrapeInfo>,
    consecutive_failures: u32,
}

/// Public tracker status (simplified view of internal `TrackerState`).
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize)]
pub enum TrackerStatus {
    /// Tracker has not been contacted yet.
    NotContacted,
    /// Last announce succeeded.
    Working,
    /// Last announce failed.
    Error,
}

/// Public info about a single tracker.
#[derive(Debug, Clone, Serialize)]
pub struct TrackerInfo {
    /// Tracker announce URL.
    pub url: String,
    /// Tier index (lower = higher priority).
    pub tier: usize,
    /// Current status of this tracker.
    pub status: TrackerStatus,
    /// Number of seeders reported by the tracker (from scrape).
    pub seeders: Option<u32>,
    /// Number of leechers reported by the tracker (from scrape).
    pub leechers: Option<u32>,
    /// Total completed downloads reported by the tracker (from scrape).
    pub downloaded: Option<u32>,
    /// Seconds until the next scheduled announce.
    pub next_announce_secs: u64,
    /// Number of consecutive announce failures.
    pub consecutive_failures: u32,
}

/// Per-tracker announce outcome (success with peer count, or error message).
#[derive(Debug, Clone)]
pub(crate) struct TrackerOutcome {
    pub url: String,
    pub result: Result<usize, String>,
}

/// Result of announcing to all trackers: aggregated peers + per-tracker outcomes.
#[derive(Debug, Clone)]
pub(crate) struct AnnounceResult {
    pub peers: Vec<SocketAddr>,
    pub outcomes: Vec<TrackerOutcome>,
}

/// M143: Single tracker's announce result, streamed back to the actor.
///
/// Each batch contains the result from one tracker announce — either a list of
/// peer addresses on success, or an error. The `tracker_idx` field identifies
/// which tracker entry to update.
#[derive(Debug)]
pub(crate) struct TrackerPeerBatch {
    /// Index into `TrackerManager::trackers` for state updates.
    pub tracker_idx: usize,
    /// Tracker announce URL (for alert reporting).
    pub url: String,
    /// Result: peers + interval + `tracker_id` + seeders + leechers, or error.
    pub result: Result<AnnounceOk, irontide_tracker::Error>,
}

/// Successful announce response from a single tracker.
pub(crate) type AnnounceOk = (
    Vec<SocketAddr>,
    u32,
    Option<String>,
    Option<u32>,
    Option<u32>,
);

/// Per-torrent tracker manager.
///
/// Handles the announce lifecycle for all trackers associated with a torrent:
/// parsing URLs from metadata, scheduling announces, and managing backoff.
pub(crate) struct TrackerManager {
    trackers: Vec<TrackerEntry>,
    info_hash: Id20,
    info_hashes: InfoHashes,
    peer_id: Id20,
    port: u16,
    http_client: HttpTracker,
    udp_client: UdpTracker,
    anonymous_mode: bool,
    dscp: u8,
    /// I2P destination Base64 for BEP 7 tracker announces.
    i2p_destination: Option<String>,
}

impl TrackerManager {
    /// Create a `TrackerManager` from torrent metadata (unfiltered, for tests only).
    ///
    /// Parses `announce` and `announce_list` (BEP 12) fields, deduplicates URLs,
    /// and classifies each as HTTP or UDP.
    #[cfg(test)]
    pub fn from_torrent(meta: &TorrentMetaV1, peer_id: Id20, port: u16) -> Self {
        let mut trackers = Vec::new();
        let mut seen_urls = std::collections::HashSet::new();

        // BEP 12: announce_list takes priority if present
        if let Some(ref tiers) = meta.announce_list {
            for (tier_idx, tier) in tiers.iter().enumerate() {
                for url in tier {
                    let url = url.trim().to_string();
                    if url.is_empty() || !seen_urls.insert(url.clone()) {
                        continue;
                    }
                    if let Some(protocol) = classify_url(&url) {
                        trackers.push(TrackerEntry {
                            url,
                            tier: tier_idx,
                            protocol,
                            state: TrackerState::NeedsAnnounce,
                            tracker_id: None,
                            next_announce: Instant::now(),
                            interval: DEFAULT_INTERVAL,
                            backoff: Duration::ZERO,
                            scrape_info: None,
                            consecutive_failures: 0,
                        });
                    }
                }
            }
        }

        // Fallback: single announce URL (only if not already in announce_list)
        if let Some(ref url) = meta.announce {
            let url = url.trim().to_string();
            if !url.is_empty()
                && seen_urls.insert(url.clone())
                && let Some(protocol) = classify_url(&url)
            {
                trackers.push(TrackerEntry {
                    url,
                    tier: if trackers.is_empty() {
                        0
                    } else {
                        trackers.last().unwrap().tier + 1
                    },
                    protocol,
                    state: TrackerState::NeedsAnnounce,
                    tracker_id: None,
                    next_announce: Instant::now(),
                    interval: DEFAULT_INTERVAL,
                    backoff: Duration::ZERO,
                    scrape_info: None,
                    consecutive_failures: 0,
                });
            }
        }

        Self {
            trackers,
            info_hash: meta.info_hash,
            info_hashes: InfoHashes::v1_only(meta.info_hash),
            peer_id,
            port,
            http_client: HttpTracker::new(),
            udp_client: UdpTracker::new(),
            anonymous_mode: false,
            dscp: 0,
            i2p_destination: None,
        }
    }

    /// Create a `TrackerManager` from torrent metadata with URL security filtering.
    ///
    /// Same as [`from_torrent`](Self::from_torrent), but each URL is validated
    /// through [`validate_tracker_url`](crate::url_guard::validate_tracker_url).
    /// URLs that fail validation are logged at warn level and skipped.
    #[allow(dead_code)] // Wired in during Task 3 (TorrentActor integration).
    pub fn from_torrent_filtered(
        meta: &TorrentMetaV1,
        peer_id: Id20,
        port: u16,
        security: crate::url_guard::UrlSecurityConfig,
        dscp: u8,
        anonymous_mode: bool,
    ) -> Self {
        let mut trackers = Vec::new();
        let mut seen_urls = std::collections::HashSet::new();

        // BEP 12: announce_list takes priority if present
        if let Some(ref tiers) = meta.announce_list {
            for (tier_idx, tier) in tiers.iter().enumerate() {
                for url in tier {
                    let url = url.trim().to_string();
                    if url.is_empty() || !seen_urls.insert(url.clone()) {
                        continue;
                    }
                    if let Err(e) = crate::url_guard::validate_tracker_url(&url, security) {
                        warn!(%url, %e, "tracker URL rejected by security policy");
                        continue;
                    }
                    if let Some(protocol) = classify_url(&url) {
                        trackers.push(TrackerEntry {
                            url,
                            tier: tier_idx,
                            protocol,
                            state: TrackerState::NeedsAnnounce,
                            tracker_id: None,
                            next_announce: Instant::now(),
                            interval: DEFAULT_INTERVAL,
                            backoff: Duration::ZERO,
                            scrape_info: None,
                            consecutive_failures: 0,
                        });
                    }
                }
            }
        }

        // Fallback: single announce URL (only if not already in announce_list)
        if let Some(ref url) = meta.announce {
            let url = url.trim().to_string();
            if !url.is_empty() && seen_urls.insert(url.clone()) {
                if let Err(e) = crate::url_guard::validate_tracker_url(&url, security) {
                    warn!(%url, %e, "tracker URL rejected by security policy");
                } else if let Some(protocol) = classify_url(&url) {
                    trackers.push(TrackerEntry {
                        url,
                        tier: if trackers.is_empty() {
                            0
                        } else {
                            trackers.last().unwrap().tier + 1
                        },
                        protocol,
                        state: TrackerState::NeedsAnnounce,
                        tracker_id: None,
                        next_announce: Instant::now(),
                        interval: DEFAULT_INTERVAL,
                        backoff: Duration::ZERO,
                        scrape_info: None,
                        consecutive_failures: 0,
                    });
                }
            }
        }

        Self {
            trackers,
            info_hash: meta.info_hash,
            info_hashes: InfoHashes::v1_only(meta.info_hash),
            peer_id,
            port,
            http_client: if anonymous_mode {
                HttpTracker::with_anonymous()
            } else {
                HttpTracker::new()
            },
            udp_client: UdpTracker::new().with_dscp(dscp),
            anonymous_mode,
            dscp,
            i2p_destination: None,
        }
    }

    /// Create an empty `TrackerManager` (for magnet links before metadata arrives).
    pub fn empty(
        info_hash: Id20,
        peer_id: Id20,
        port: u16,
        dscp: u8,
        anonymous_mode: bool,
    ) -> Self {
        Self {
            trackers: Vec::new(),
            info_hash,
            info_hashes: InfoHashes::v1_only(info_hash),
            peer_id,
            port,
            http_client: if anonymous_mode {
                HttpTracker::with_anonymous()
            } else {
                HttpTracker::new()
            },
            udp_client: UdpTracker::new().with_dscp(dscp),
            anonymous_mode,
            dscp,
            i2p_destination: None,
        }
    }

    /// Populate trackers from metadata once it's been fetched (unfiltered, for tests only).
    #[cfg(test)]
    pub fn set_metadata(&mut self, meta: &TorrentMetaV1) {
        let fresh = Self::from_torrent(meta, self.peer_id, self.port);
        self.trackers = fresh.trackers;
    }

    /// Populate trackers from metadata with URL security filtering (magnet link flow).
    pub fn set_metadata_filtered(
        &mut self,
        meta: &TorrentMetaV1,
        security: crate::url_guard::UrlSecurityConfig,
    ) {
        let fresh = Self::from_torrent_filtered(
            meta,
            self.peer_id,
            self.port,
            security,
            self.dscp,
            self.anonymous_mode,
        );
        self.trackers = fresh.trackers;
    }

    /// Set the full info hashes for dual-swarm support (hybrid torrents).
    pub fn set_info_hashes(&mut self, info_hashes: InfoHashes) {
        self.info_hashes = info_hashes;
    }

    /// Set the I2P destination Base64 string for BEP 7 tracker announces.
    pub fn set_i2p_destination(&mut self, dest: Option<String>) {
        self.i2p_destination = dest;
    }

    /// Number of configured trackers.
    #[cfg(test)]
    pub fn tracker_count(&self) -> usize {
        self.trackers.len()
    }

    /// Duration until the next tracker needs an announce.
    ///
    /// Returns `None` if there are no trackers.
    pub fn next_announce_in(&self) -> Option<Duration> {
        self.trackers
            .iter()
            .map(|t| t.next_announce.saturating_duration_since(Instant::now()))
            .min()
    }

    /// Announce to all trackers that are due.
    ///
    /// For hybrid torrents, announces both v1 and v2 info hashes separately
    /// to reach peers in both swarms. Returns all discovered peer addresses (deduplicated).
    pub async fn announce(
        &mut self,
        event: AnnounceEvent,
        uploaded: u64,
        downloaded: u64,
        left: u64,
    ) -> AnnounceResult {
        let mut all_peers = Vec::new();
        let mut seen_peers = std::collections::HashSet::new();
        let mut all_outcomes = Vec::new();

        // Always announce with the primary (v1) info hash
        let result = self
            .announce_with_hash(self.info_hash, event, uploaded, downloaded, left)
            .await;
        for peer in result.peers {
            if seen_peers.insert(peer) {
                all_peers.push(peer);
            }
        }
        all_outcomes.extend(result.outcomes);

        // Dual-swarm: also announce with v2 hash (truncated) if hybrid
        if self.info_hashes.is_hybrid()
            && let Some(v2) = self.info_hashes.v2
        {
            let v2_as_v1 = Id20(v2.0[..20].try_into().unwrap());
            // Only announce the v2 hash if it differs from the v1 hash
            if v2_as_v1 != self.info_hash {
                let result = self
                    .announce_with_hash(v2_as_v1, event, uploaded, downloaded, left)
                    .await;
                for peer in result.peers {
                    if seen_peers.insert(peer) {
                        all_peers.push(peer);
                    }
                }
                all_outcomes.extend(result.outcomes);
            }
        }

        AnnounceResult {
            peers: all_peers,
            outcomes: all_outcomes,
        }
    }

    /// Returns the port to announce (0 when anonymous mode is active).
    fn announce_port(&self) -> u16 {
        if self.anonymous_mode { 0 } else { self.port }
    }

    /// Internal: announce with a specific info hash to all due trackers.
    async fn announce_with_hash(
        &mut self,
        hash: Id20,
        event: AnnounceEvent,
        uploaded: u64,
        downloaded: u64,
        left: u64,
    ) -> AnnounceResult {
        let req = AnnounceRequest {
            info_hash: hash,
            peer_id: self.peer_id,
            port: self.announce_port(),
            uploaded,
            downloaded,
            left,
            event,
            num_want: None,
            compact: true,
            i2p_destination: self.i2p_destination.clone(),
        };
        let now = Instant::now();

        // Spawn all eligible tracker announces in parallel
        let mut join_set =
            tokio::task::JoinSet::<(usize, Result<AnnounceOk, irontide_tracker::Error>)>::new();

        for (idx, tracker) in self.trackers.iter().enumerate() {
            // For the secondary (v2) hash, always announce (don't skip based on next_announce,
            // since the timer tracks the primary hash). For the primary hash, respect the timer.
            if hash == self.info_hash && tracker.next_announce > now {
                continue;
            }

            let http_client = self.http_client.clone();
            let udp_client = self.udp_client.clone();
            let url = tracker.url.clone();
            let protocol = tracker.protocol;
            let req = req.clone();

            join_set.spawn(async move {
                let result = match protocol {
                    TrackerProtocol::Http => Self::announce_http(&http_client, &url, &req).await,
                    TrackerProtocol::Udp => Self::announce_udp(&udp_client, &url, &req).await,
                };
                (idx, result)
            });
        }

        // Collect results and update tracker state
        let mut all_peers = Vec::new();
        let mut seen_peers = std::collections::HashSet::new();
        let mut outcomes = Vec::new();

        while let Some(Ok((idx, result))) = join_set.join_next().await {
            let tracker = &mut self.trackers[idx];
            match result {
                Ok((peers, interval, tracker_id, seeders, leechers)) => {
                    let num_peers = peers.len();
                    debug!(
                        url = %tracker.url,
                        peer_count = num_peers,
                        interval,
                        %hash,
                        "tracker announce success"
                    );
                    // Only update tracker state for the primary hash
                    if hash == self.info_hash {
                        tracker.state = TrackerState::Active;
                        tracker.interval = Duration::from_secs(u64::from(interval));
                        tracker.next_announce = now + tracker.interval;
                        tracker.backoff = Duration::ZERO;
                        tracker.consecutive_failures = 0;
                        if let Some(id) = tracker_id {
                            tracker.tracker_id = Some(id);
                        }
                        if seeders.is_some() || leechers.is_some() {
                            let prev_downloaded = tracker.scrape_info.map_or(0, |s| s.downloaded);
                            tracker.scrape_info = Some(irontide_tracker::ScrapeInfo {
                                complete: seeders.unwrap_or(0),
                                incomplete: leechers.unwrap_or(0),
                                downloaded: prev_downloaded,
                            });
                        }
                    }

                    for peer in peers {
                        if seen_peers.insert(peer) {
                            all_peers.push(peer);
                        }
                    }
                    outcomes.push(TrackerOutcome {
                        url: tracker.url.clone(),
                        result: Ok(num_peers),
                    });
                }
                Err(e) => {
                    let msg = e.to_string();
                    let retry_floor = match &e {
                        irontide_tracker::Error::TrackerError {
                            retry_in: Some(secs),
                            ..
                        } => Duration::from_secs(u64::from(*secs)),
                        _ => Duration::ZERO,
                    };
                    warn!(url = %tracker.url, error = %msg, %hash, "tracker announce failed");
                    // Only update failure state for the primary hash
                    if hash == self.info_hash {
                        tracker.state = TrackerState::Failed {
                            _error: msg.clone(),
                        };
                        tracker.consecutive_failures += 1;
                        tracker.backoff = if tracker.backoff.is_zero() {
                            INITIAL_BACKOFF
                        } else {
                            (tracker.backoff * 2).min(MAX_BACKOFF)
                        };
                        tracker.backoff = tracker.backoff.max(retry_floor);
                        tracker.next_announce = now + tracker.backoff;
                    }
                    outcomes.push(TrackerOutcome {
                        url: tracker.url.clone(),
                        result: Err(msg),
                    });
                }
            }
        }

        AnnounceResult {
            peers: all_peers,
            outcomes,
        }
    }

    /// Convenience: announce with Started event.
    #[allow(dead_code)]
    pub async fn announce_started(
        &mut self,
        uploaded: u64,
        downloaded: u64,
        left: u64,
    ) -> AnnounceResult {
        self.announce(AnnounceEvent::Started, uploaded, downloaded, left)
            .await
    }

    /// Convenience: announce with Completed event.
    pub async fn announce_completed(&mut self, uploaded: u64, downloaded: u64) -> AnnounceResult {
        self.announce(AnnounceEvent::Completed, uploaded, downloaded, 0)
            .await
    }

    /// Convenience: announce with Stopped event (best-effort, errors ignored).
    pub async fn announce_stopped(&mut self, uploaded: u64, downloaded: u64, left: u64) {
        let _ = self
            .announce(AnnounceEvent::Stopped, uploaded, downloaded, left)
            .await;
    }

    // ---- M143: Non-blocking streaming announce ----

    /// Start a non-blocking announce that streams results through a channel.
    ///
    /// Spawns tracker requests as a background tokio task. Each tracker's
    /// response is sent as a [`TrackerPeerBatch`] through the returned receiver
    /// as soon as that tracker responds. The actor's `select!` loop is never
    /// blocked — it processes each batch via [`process_tracker_result`].
    ///
    /// For hybrid torrents, both v1 and v2 (truncated) info hashes are
    /// announced so peers from both swarms are discovered.
    pub fn start_announce(
        &mut self,
        event: AnnounceEvent,
        uploaded: u64,
        downloaded: u64,
        left: u64,
    ) -> mpsc::Receiver<TrackerPeerBatch> {
        let (tx, rx) = mpsc::channel(32);
        let now = Instant::now();

        // Collect due trackers into a vec we can move into the spawned task.
        let mut tasks: Vec<(usize, String, TrackerProtocol)> = Vec::new();
        for (idx, tracker) in self.trackers.iter().enumerate() {
            if tracker.next_announce > now {
                continue;
            }
            tasks.push((idx, tracker.url.clone(), tracker.protocol));
        }

        // Mark all due trackers as "announcing" — push next_announce far enough
        // ahead to prevent double-announce before results come back. The actual
        // interval will be set when `process_tracker_result` handles the response.
        for &(idx, _, _) in &tasks {
            self.trackers[idx].next_announce = now + Duration::from_mins(2);
        }

        // Nothing to do — drop tx immediately so rx returns None.
        if tasks.is_empty() {
            return rx;
        }

        let info_hash = self.info_hash;
        let info_hashes = self.info_hashes.clone();
        let peer_id = self.peer_id;
        let port = self.announce_port();
        let i2p_dest = self.i2p_destination.clone();
        let http_client = self.http_client.clone();
        let udp_client = self.udp_client.clone();

        tokio::spawn(async move {
            let req = AnnounceRequest {
                info_hash,
                peer_id,
                port,
                uploaded,
                downloaded,
                left,
                event,
                num_want: None,
                compact: true,
                i2p_destination: i2p_dest.clone(),
            };

            // Primary (v1) info hash
            Self::spawn_tracker_announces(&tx, &tasks, &req, &http_client, &udp_client).await;

            // Dual-swarm: also announce with v2 hash (truncated) if hybrid
            if info_hashes.is_hybrid()
                && let Some(v2) = info_hashes.v2
            {
                let v2_as_v1 = Id20(v2.0[..20].try_into().expect("Id32 always has >= 20 bytes"));
                if v2_as_v1 != info_hash {
                    let mut v2_req = req;
                    v2_req.info_hash = v2_as_v1;
                    Self::spawn_tracker_announces(&tx, &tasks, &v2_req, &http_client, &udp_client)
                        .await;
                }
            }
            // tx drops here → rx returns None → actor clears tracker_result_rx
        });

        rx
    }

    /// Spawn a `JoinSet` of tracker announces for one info hash and stream
    /// results through `tx`. This is an internal helper for `start_announce`.
    async fn spawn_tracker_announces(
        tx: &mpsc::Sender<TrackerPeerBatch>,
        tasks: &[(usize, String, TrackerProtocol)],
        req: &AnnounceRequest,
        http_client: &HttpTracker,
        udp_client: &UdpTracker,
    ) {
        let mut join_set = tokio::task::JoinSet::new();

        for &(idx, ref url, protocol) in tasks {
            let http = http_client.clone();
            let udp = udp_client.clone();
            let url = url.clone();
            let req = req.clone();

            join_set.spawn(async move {
                let result = match protocol {
                    TrackerProtocol::Http => Self::announce_http(&http, &url, &req).await,
                    TrackerProtocol::Udp => Self::announce_udp(&udp, &url, &req).await,
                };
                TrackerPeerBatch {
                    tracker_idx: idx,
                    url,
                    result,
                }
            });
        }

        while let Some(join_result) = join_set.join_next().await {
            if let Ok(batch) = join_result {
                // If the actor dropped its rx (e.g. torrent stopped), bail out.
                if tx.send(batch).await.is_err() {
                    break;
                }
            }
        }
    }

    /// Process a single streaming tracker result.
    ///
    /// Updates tracker state (interval, backoff, scrape info) and returns
    /// the discovered peers along with a `TrackerOutcome` for alert firing.
    pub fn process_tracker_result(
        &mut self,
        batch: TrackerPeerBatch,
    ) -> (Vec<SocketAddr>, TrackerOutcome) {
        let Some(tracker) = self.trackers.get_mut(batch.tracker_idx) else {
            // Tracker was removed while announce was in-flight (e.g. replace_all).
            return (
                Vec::new(),
                TrackerOutcome {
                    url: batch.url,
                    result: Err("tracker removed during announce".to_string()),
                },
            );
        };

        match batch.result {
            Ok((peers, interval, tracker_id, seeders, leechers)) => {
                let num_peers = peers.len();
                debug!(
                    url = %tracker.url,
                    peer_count = num_peers,
                    interval,
                    "streaming tracker announce success"
                );
                tracker.state = TrackerState::Active;
                tracker.interval = Duration::from_secs(u64::from(interval));
                tracker.next_announce = Instant::now() + tracker.interval;
                tracker.backoff = Duration::ZERO;
                tracker.consecutive_failures = 0;
                if let Some(id) = tracker_id {
                    tracker.tracker_id = Some(id);
                }
                if seeders.is_some() || leechers.is_some() {
                    let prev_downloaded = tracker.scrape_info.map_or(0, |s| s.downloaded);
                    tracker.scrape_info = Some(irontide_tracker::ScrapeInfo {
                        complete: seeders.unwrap_or(0),
                        incomplete: leechers.unwrap_or(0),
                        downloaded: prev_downloaded,
                    });
                }

                let outcome = TrackerOutcome {
                    url: batch.url,
                    result: Ok(num_peers),
                };
                (peers, outcome)
            }
            Err(e) => {
                let msg = e.to_string();
                let retry_floor = match &e {
                    irontide_tracker::Error::TrackerError {
                        retry_in: Some(secs),
                        ..
                    } => Duration::from_secs(u64::from(*secs)),
                    _ => Duration::ZERO,
                };
                warn!(url = %tracker.url, error = %msg, "streaming tracker announce failed");
                tracker.state = TrackerState::Failed {
                    _error: msg.clone(),
                };
                tracker.consecutive_failures = tracker.consecutive_failures.saturating_add(1);
                tracker.backoff = if tracker.backoff.is_zero() {
                    INITIAL_BACKOFF
                } else {
                    (tracker.backoff.saturating_mul(2)).min(MAX_BACKOFF)
                };
                tracker.backoff = tracker.backoff.max(retry_floor);
                tracker.next_announce = Instant::now() + tracker.backoff;

                let outcome = TrackerOutcome {
                    url: batch.url,
                    result: Err(msg),
                };
                (Vec::new(), outcome)
            }
        }
    }

    // ---- Internal announce helpers ----

    async fn announce_http(
        client: &HttpTracker,
        url: &str,
        req: &AnnounceRequest,
    ) -> Result<AnnounceOk, irontide_tracker::Error> {
        let resp = client.announce(url, req).await?;
        Ok((
            resp.response.peers,
            resp.response.interval,
            resp.tracker_id,
            resp.response.seeders,
            resp.response.leechers,
        ))
    }

    async fn announce_udp(
        client: &UdpTracker,
        url: &str,
        req: &AnnounceRequest,
    ) -> Result<AnnounceOk, irontide_tracker::Error> {
        // UDP tracker URLs are like "udp://tracker.example.com:6969/announce"
        // UdpTracker::announce expects "host:port"
        let addr = parse_udp_addr(url);
        let resp = client.announce(&addr, req).await?;
        Ok((
            resp.response.peers,
            resp.response.interval,
            None,
            resp.response.seeders,
            resp.response.leechers,
        ))
    }

    // ---- New public methods ----

    /// Get a list of all configured trackers with their status.
    pub fn tracker_list(&self) -> Vec<TrackerInfo> {
        self.trackers
            .iter()
            .map(|t| {
                let status = match t.state {
                    TrackerState::NeedsAnnounce => TrackerStatus::NotContacted,
                    TrackerState::Active => TrackerStatus::Working,
                    TrackerState::Failed { .. } => TrackerStatus::Error,
                };
                TrackerInfo {
                    url: t.url.clone(),
                    tier: t.tier,
                    status,
                    seeders: t.scrape_info.map(|s| s.complete),
                    leechers: t.scrape_info.map(|s| s.incomplete),
                    downloaded: t.scrape_info.map(|s| s.downloaded),
                    next_announce_secs: t
                        .next_announce
                        .saturating_duration_since(Instant::now())
                        .as_secs(),
                    consecutive_failures: t.consecutive_failures,
                }
            })
            .collect()
    }

    /// Force all trackers to re-announce immediately.
    pub fn force_reannounce(&mut self) {
        let now = Instant::now();
        for tracker in &mut self.trackers {
            tracker.next_announce = now;
        }
    }

    /// Add a new tracker URL (e.g. from `lt_trackers` exchange).
    ///
    /// Returns `true` if the URL was added, `false` if empty, unknown protocol, or duplicate.
    pub fn add_tracker_url(&mut self, url: &str) -> bool {
        let url = url.trim();
        if url.is_empty() {
            return false;
        }
        let Some(protocol) = classify_url(url) else {
            return false;
        };
        // Deduplicate
        if self.trackers.iter().any(|t| t.url == url) {
            return false;
        }
        let new_tier = self.trackers.last().map_or(0, |t| t.tier + 1);
        self.trackers.push(TrackerEntry {
            url: url.to_string(),
            tier: new_tier,
            protocol,
            state: TrackerState::NeedsAnnounce,
            tracker_id: None,
            next_announce: Instant::now(),
            interval: DEFAULT_INTERVAL,
            backoff: Duration::ZERO,
            scrape_info: None,
            consecutive_failures: 0,
        });
        true
    }

    /// Replace all trackers with a new set of URLs.
    ///
    /// Clears the existing tracker list and adds each URL via `add_tracker_url`,
    /// which handles validation and deduplication.
    pub fn replace_all(&mut self, urls: &[String]) {
        self.trackers.clear();
        for url in urls {
            self.add_tracker_url(url);
        }
    }

    /// Add a new tracker URL with URL security validation.
    ///
    /// Returns `true` if the URL was added, `false` if it failed validation,
    /// was empty, had an unknown protocol, or was a duplicate.
    #[allow(dead_code)] // Wired in during Task 3 (TorrentActor integration).
    pub fn add_tracker_url_validated(
        &mut self,
        url: &str,
        security: crate::url_guard::UrlSecurityConfig,
    ) -> bool {
        let url = url.trim();
        if url.is_empty() {
            return false;
        }
        if let Err(e) = crate::url_guard::validate_tracker_url(url, security) {
            warn!(%url, %e, "tracker URL rejected by security policy");
            return false;
        }
        self.add_tracker_url(url)
    }

    /// Scrape trackers to get seeder/leecher counts.
    ///
    /// Tries each tracker until one succeeds. Returns `(url, ScrapeInfo)` from first success.
    pub async fn scrape(&self) -> Option<(String, irontide_tracker::ScrapeInfo)> {
        for tracker in &self.trackers {
            let result = match tracker.protocol {
                TrackerProtocol::Http => self
                    .http_client
                    .scrape(&tracker.url, &[self.info_hash])
                    .await
                    .ok()
                    .and_then(|resp| resp.files.get(&self.info_hash).copied()),
                TrackerProtocol::Udp => {
                    let addr = parse_udp_addr(&tracker.url);
                    self.udp_client
                        .scrape(&addr, &[self.info_hash])
                        .await
                        .ok()
                        .and_then(|resp| resp.results.into_iter().next())
                }
            };
            if let Some(info) = result {
                return Some((tracker.url.clone(), info));
            }
        }
        None
    }
}

/// Classify a tracker URL as HTTP or UDP.
fn classify_url(url: &str) -> Option<TrackerProtocol> {
    if url.starts_with("http://") || url.starts_with("https://") {
        Some(TrackerProtocol::Http)
    } else if url.starts_with("udp://") {
        Some(TrackerProtocol::Udp)
    } else {
        None // Unknown protocol, skip
    }
}

/// Extract "host:port" from a UDP tracker URL.
///
/// Input: "<udp://tracker.example.com:6969/announce>"
/// Output: "tracker.example.com:6969"
fn parse_udp_addr(url: &str) -> String {
    let without_scheme = url.strip_prefix("udp://").unwrap_or(url);
    // Strip path (everything after host:port)
    match without_scheme.find('/') {
        Some(idx) => without_scheme[..idx].to_string(),
        None => without_scheme.to_string(),
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use irontide_core::{Id20, InfoHashes};

    /// Helper to build a minimal `TorrentMetaV1` with given tracker URLs.
    fn torrent_with_trackers(
        announce: Option<&str>,
        announce_list: Option<Vec<Vec<&str>>>,
    ) -> TorrentMetaV1 {
        use serde::Serialize;

        #[derive(Serialize)]
        struct Info<'a> {
            length: u64,
            name: &'a str,
            #[serde(rename = "piece length")]
            piece_length: u64,
            #[serde(with = "serde_bytes")]
            pieces: &'a [u8],
        }

        #[derive(Serialize)]
        struct Torrent<'a> {
            #[serde(skip_serializing_if = "Option::is_none")]
            announce: Option<&'a str>,
            info: Info<'a>,
        }

        let data = vec![0u8; 16384];
        let hash = irontide_core::sha1(&data);
        let mut pieces = Vec::new();
        pieces.extend_from_slice(hash.as_bytes());

        let t = Torrent {
            announce,
            info: Info {
                length: 16384,
                name: "test",
                piece_length: 16384,
                pieces: &pieces,
            },
        };

        let bytes = irontide_bencode::to_bytes(&t).unwrap();
        let mut meta = irontide_core::torrent_from_bytes(&bytes).unwrap();
        meta.announce_list = announce_list.map(|tiers| {
            tiers
                .into_iter()
                .map(|tier| tier.into_iter().map(String::from).collect())
                .collect()
        });
        if announce.is_some() {
            meta.announce = announce.map(String::from);
        }
        meta
    }

    fn test_peer_id() -> Id20 {
        Id20::from_hex("0102030405060708091011121314151617181920").unwrap()
    }

    #[test]
    fn parse_single_announce_url() {
        let meta = torrent_with_trackers(Some("http://tracker.example.com/announce"), None);
        let mgr = TrackerManager::from_torrent(&meta, test_peer_id(), 6881);
        assert_eq!(mgr.tracker_count(), 1);
        assert_eq!(mgr.trackers[0].protocol, TrackerProtocol::Http);
        assert_eq!(mgr.trackers[0].tier, 0);
    }

    #[test]
    fn parse_announce_list_tiers() {
        let meta = torrent_with_trackers(
            None,
            Some(vec![
                vec![
                    "http://tier0-a.example.com/announce",
                    "http://tier0-b.example.com/announce",
                ],
                vec!["udp://tier1.example.com:6969/announce"],
            ]),
        );
        let mgr = TrackerManager::from_torrent(&meta, test_peer_id(), 6881);
        assert_eq!(mgr.tracker_count(), 3);
        assert_eq!(mgr.trackers[0].tier, 0);
        assert_eq!(mgr.trackers[1].tier, 0);
        assert_eq!(mgr.trackers[2].tier, 1);
        assert_eq!(mgr.trackers[2].protocol, TrackerProtocol::Udp);
    }

    #[test]
    fn classify_http_url() {
        assert_eq!(classify_url("http://t.co/a"), Some(TrackerProtocol::Http));
        assert_eq!(classify_url("https://t.co/a"), Some(TrackerProtocol::Http));
    }

    #[test]
    fn classify_udp_url() {
        assert_eq!(
            classify_url("udp://t.co:6969/a"),
            Some(TrackerProtocol::Udp)
        );
    }

    #[test]
    fn classify_unknown_url() {
        assert_eq!(classify_url("wss://t.co/a"), None);
    }

    #[test]
    fn deduplicate_urls() {
        let meta = torrent_with_trackers(
            Some("http://tracker.example.com/announce"),
            Some(vec![vec!["http://tracker.example.com/announce"]]),
        );
        let mgr = TrackerManager::from_torrent(&meta, test_peer_id(), 6881);
        // URL appears in both announce and announce_list — should be deduplicated
        assert_eq!(mgr.tracker_count(), 1);
    }

    #[test]
    fn empty_announce_list() {
        let meta = torrent_with_trackers(None, None);
        let mgr = TrackerManager::from_torrent(&meta, test_peer_id(), 6881);
        assert_eq!(mgr.tracker_count(), 0);
        assert_eq!(mgr.next_announce_in(), None);
    }

    #[test]
    fn next_announce_timing() {
        let meta = torrent_with_trackers(Some("http://tracker.example.com/announce"), None);
        let mgr = TrackerManager::from_torrent(&meta, test_peer_id(), 6881);
        // Newly created — should be ready to announce immediately
        let next = mgr.next_announce_in().unwrap();
        assert!(next <= Duration::from_millis(10));
    }

    #[test]
    fn backoff_on_failure() {
        let meta = torrent_with_trackers(Some("http://tracker.example.com/announce"), None);
        let mut mgr = TrackerManager::from_torrent(&meta, test_peer_id(), 6881);

        // Simulate a failure by directly setting state
        mgr.trackers[0].state = TrackerState::Failed {
            _error: "connection refused".into(),
        };
        mgr.trackers[0].backoff = INITIAL_BACKOFF;
        mgr.trackers[0].next_announce = Instant::now() + INITIAL_BACKOFF;

        let next = mgr.next_announce_in().unwrap();
        // Should be approximately INITIAL_BACKOFF (30s), give or take
        assert!(next >= Duration::from_secs(29));
        assert!(next <= Duration::from_secs(31));
    }

    #[test]
    fn backoff_max_cap() {
        let meta = torrent_with_trackers(Some("http://tracker.example.com/announce"), None);
        let mut mgr = TrackerManager::from_torrent(&meta, test_peer_id(), 6881);

        // Simulate many failures — backoff should cap at MAX_BACKOFF
        mgr.trackers[0].backoff = Duration::from_mins(20); // 20 min
        // Double would be 40 min, but cap is 30 min
        let doubled = (mgr.trackers[0].backoff * 2).min(MAX_BACKOFF);
        assert_eq!(doubled, MAX_BACKOFF);
    }

    #[test]
    fn parse_udp_addr_strips_scheme_and_path() {
        assert_eq!(
            parse_udp_addr("udp://tracker.example.com:6969/announce"),
            "tracker.example.com:6969"
        );
        assert_eq!(parse_udp_addr("udp://example.com:1234"), "example.com:1234");
    }

    #[test]
    fn empty_manager_for_magnet() {
        let info_hash = Id20::from_hex("aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d").unwrap();
        let mgr = TrackerManager::empty(info_hash, test_peer_id(), 6881, 0, false);
        assert_eq!(mgr.tracker_count(), 0);
    }

    #[test]
    fn set_metadata_populates_trackers() {
        let info_hash = Id20::from_hex("aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d").unwrap();
        let mut mgr = TrackerManager::empty(info_hash, test_peer_id(), 6881, 0, false);
        assert_eq!(mgr.tracker_count(), 0);

        let meta = torrent_with_trackers(Some("http://tracker.example.com/announce"), None);
        mgr.set_metadata(&meta);
        assert_eq!(mgr.tracker_count(), 1);
    }

    #[test]
    fn tracker_list_returns_info() {
        let meta = torrent_with_trackers(
            None,
            Some(vec![
                vec!["http://tracker1.example.com/announce"],
                vec!["udp://tracker2.example.com:6969/announce"],
            ]),
        );
        let mgr = TrackerManager::from_torrent(&meta, test_peer_id(), 6881);
        let list = mgr.tracker_list();
        assert_eq!(list.len(), 2);
        assert_eq!(list[0].status, TrackerStatus::NotContacted);
        assert_eq!(list[0].seeders, None);
        assert_eq!(list[0].tier, 0);
        assert_eq!(list[1].tier, 1);
    }

    #[test]
    fn force_reannounce_resets_timers() {
        let meta = torrent_with_trackers(Some("http://tracker.example.com/announce"), None);
        let mut mgr = TrackerManager::from_torrent(&meta, test_peer_id(), 6881);
        // Push next_announce far into the future
        mgr.trackers[0].next_announce = Instant::now() + Duration::from_hours(1);
        assert!(mgr.next_announce_in().unwrap() > Duration::from_secs(3500));
        mgr.force_reannounce();
        let next = mgr.next_announce_in().unwrap();
        assert!(next <= Duration::from_millis(10));
    }

    #[test]
    fn add_tracker_url_new() {
        let meta = torrent_with_trackers(Some("http://tracker.example.com/announce"), None);
        let mut mgr = TrackerManager::from_torrent(&meta, test_peer_id(), 6881);
        assert_eq!(mgr.tracker_count(), 1);
        let added = mgr.add_tracker_url("http://new-tracker.example.com/announce");
        assert!(added);
        assert_eq!(mgr.tracker_count(), 2);
        assert_eq!(mgr.trackers[1].tier, 1); // new tier
    }

    #[test]
    fn add_tracker_url_duplicate() {
        let meta = torrent_with_trackers(Some("http://tracker.example.com/announce"), None);
        let mut mgr = TrackerManager::from_torrent(&meta, test_peer_id(), 6881);
        let added = mgr.add_tracker_url("http://tracker.example.com/announce");
        assert!(!added);
        assert_eq!(mgr.tracker_count(), 1);
    }

    #[test]
    fn tracker_manager_stores_info_hashes() {
        let meta = torrent_with_trackers(Some("http://tracker.example.com/announce"), None);
        let mut mgr = TrackerManager::from_torrent(&meta, test_peer_id(), 6881);
        assert!(!mgr.info_hashes.is_hybrid());

        let v2 = irontide_core::Id32::from_hex(
            "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
        )
        .unwrap();
        mgr.set_info_hashes(InfoHashes::hybrid(meta.info_hash, v2));
        assert!(mgr.info_hashes.is_hybrid());
    }

    #[test]
    fn add_tracker_url_empty() {
        let meta = torrent_with_trackers(Some("http://tracker.example.com/announce"), None);
        let mut mgr = TrackerManager::from_torrent(&meta, test_peer_id(), 6881);
        assert!(!mgr.add_tracker_url(""));
        assert!(!mgr.add_tracker_url("   "));
        assert_eq!(mgr.tracker_count(), 1);
    }

    fn ssrf_config() -> crate::url_guard::UrlSecurityConfig {
        crate::url_guard::UrlSecurityConfig {
            ssrf_mitigation: true,
            allow_idna: false,
            validate_https_trackers: true,
        }
    }

    #[test]
    fn localhost_tracker_announce_path_accepted() {
        // A localhost URL with /announce path should be accepted by the filter.
        let meta = torrent_with_trackers(Some("http://127.0.0.1:8080/announce"), None);
        let cfg = ssrf_config();
        let mgr = TrackerManager::from_torrent_filtered(&meta, test_peer_id(), 6881, cfg, 0, false);
        assert_eq!(mgr.tracker_count(), 1);
        assert_eq!(mgr.trackers[0].url, "http://127.0.0.1:8080/announce");
    }

    #[test]
    fn localhost_tracker_bad_path_filtered() {
        // A localhost URL with a non-/announce path should be rejected,
        // while a global URL should pass.
        let meta = torrent_with_trackers(
            None,
            Some(vec![vec![
                "http://127.0.0.1:8080/api/admin",
                "http://tracker.example.com/announce",
            ]]),
        );
        let cfg = ssrf_config();
        let mgr = TrackerManager::from_torrent_filtered(&meta, test_peer_id(), 6881, cfg, 0, false);
        assert_eq!(mgr.tracker_count(), 1);
        assert_eq!(mgr.trackers[0].url, "http://tracker.example.com/announce");
    }

    #[test]
    fn add_tracker_url_validates() {
        let meta = torrent_with_trackers(Some("http://tracker.example.com/announce"), None);
        let cfg = ssrf_config();
        let mut mgr =
            TrackerManager::from_torrent_filtered(&meta, test_peer_id(), 6881, cfg, 0, false);
        assert_eq!(mgr.tracker_count(), 1);

        // Valid URL should be added.
        assert!(mgr.add_tracker_url_validated("http://other.example.com/announce", cfg));
        assert_eq!(mgr.tracker_count(), 2);

        // Localhost with bad path should be rejected.
        assert!(!mgr.add_tracker_url_validated("http://127.0.0.1:8080/api/admin", cfg));
        assert_eq!(mgr.tracker_count(), 2);

        // UDP URL should pass (UDP skips SSRF checks).
        assert!(mgr.add_tracker_url_validated("udp://tracker.example.com:6969/announce", cfg));
        assert_eq!(mgr.tracker_count(), 3);
    }

    #[test]
    fn anonymous_mode_zeroes_announce_port() {
        let meta = torrent_with_trackers(Some("http://tracker.example.com/announce"), None);
        let cfg = ssrf_config();
        let mgr = TrackerManager::from_torrent_filtered(&meta, test_peer_id(), 6881, cfg, 0, true);
        assert!(mgr.anonymous_mode);
        assert_eq!(mgr.announce_port(), 0);
    }

    #[test]
    fn normal_mode_includes_port() {
        let meta = torrent_with_trackers(Some("http://tracker.example.com/announce"), None);
        let mgr = TrackerManager::from_torrent(&meta, test_peer_id(), 6881);
        assert!(!mgr.anonymous_mode);
        assert_eq!(mgr.announce_port(), 6881);
    }

    #[test]
    fn empty_manager_with_dscp_and_anonymous() {
        let info_hash = Id20::from_hex("aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d").unwrap();
        let mgr = TrackerManager::empty(info_hash, test_peer_id(), 6881, 0x2E, true);
        assert!(mgr.anonymous_mode);
        assert_eq!(mgr.dscp, 0x2E);
        assert_eq!(mgr.announce_port(), 0);
    }

    #[test]
    fn failure_with_retry_in_floors_backoff() {
        let meta = torrent_with_trackers(Some("http://tracker.example.com/announce"), None);
        let mut mgr = TrackerManager::from_torrent(&meta, test_peer_id(), 6881);

        let batch = TrackerPeerBatch {
            tracker_idx: 0,
            url: "http://tracker.example.com/announce".into(),
            result: Err(irontide_tracker::Error::TrackerError {
                message: "rate limited".into(),
                retry_in: Some(120),
            }),
        };

        let (_peers, outcome) = mgr.process_tracker_result(batch);
        assert!(outcome.result.is_err());
        assert!(mgr.trackers[0].backoff >= Duration::from_mins(2));
    }

    #[test]
    fn failure_without_retry_in_uses_exponential() {
        let meta = torrent_with_trackers(Some("http://tracker.example.com/announce"), None);
        let mut mgr = TrackerManager::from_torrent(&meta, test_peer_id(), 6881);

        let batch = TrackerPeerBatch {
            tracker_idx: 0,
            url: "http://tracker.example.com/announce".into(),
            result: Err(irontide_tracker::Error::TrackerError {
                message: "connection refused".into(),
                retry_in: None,
            }),
        };

        let (_peers, outcome) = mgr.process_tracker_result(batch);
        assert!(outcome.result.is_err());
        assert_eq!(mgr.trackers[0].backoff, INITIAL_BACKOFF);
    }

    #[test]
    fn success_with_min_interval_floors_reannounce() {
        let meta = torrent_with_trackers(Some("http://tracker.example.com/announce"), None);
        let mut mgr = TrackerManager::from_torrent(&meta, test_peer_id(), 6881);

        // Simulate a success where min_interval (1800) > raw interval (900).
        // The flooring happens in http.rs, so the interval arriving here is already 1800.
        let batch = TrackerPeerBatch {
            tracker_idx: 0,
            url: "http://tracker.example.com/announce".into(),
            result: Ok((
                vec!["192.168.1.1:6881".parse().unwrap()],
                1800, // already floored from http.rs
                None,
                Some(10),
                Some(5),
            )),
        };

        let (peers, outcome) = mgr.process_tracker_result(batch);
        assert_eq!(peers.len(), 1);
        assert!(outcome.result.is_ok());
        assert_eq!(mgr.trackers[0].interval, Duration::from_mins(30));
    }
}