eggress-config 1.0.4

TOML configuration and validation for eggress proxy
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
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
use std::collections::HashSet;

use crate::error::{ConfigError, ConfigWarning};
use crate::model::{ConfigFile, LeafMatcher, MatchExprConfig};

const VALID_PROTOCOLS: &[&str] = &[
    "http",
    "socks4",
    "socks5",
    "shadowsocks",
    "trojan",
    "h2",
    "h3",
    "quic",
    "websocket",
    "ws",
    "wss",
    "raw",
    "echo",
];

const VALID_SCHEDULERS: &[&str] = &[
    "first-available",
    "round-robin",
    "random",
    "least-connections",
];

const VALID_FALLBACKS: &[&str] = &["reject", "direct", "use-unhealthy"];

const VALID_AUTH_TYPES: &[&str] = &["password"];

const VALID_REJECT_REASONS: &[&str] = &[
    "unsupported-protocol",
    "auth-required",
    "access-denied",
    "blocked",
    "internal-error",
];

const VALID_HEALTH_MODES: &[&str] = &["tcp_connect"];
const VALID_HEALTH_INITIAL_STATES: &[&str] = &["unknown", "healthy", "unhealthy", "disabled"];

pub fn validate_config(config: &ConfigFile) -> Result<(), Vec<ConfigError>> {
    let mut errors = Vec::new();

    if let Some(version) = config.version {
        if version != 1 {
            errors.push(ConfigError::UnsupportedVersion(version));
        }
    }

    if let Some(ref listeners) = config.listeners {
        validate_listeners(listeners, &mut errors);
    }

    if let Some(ref upstreams) = config.upstreams {
        validate_upstreams(upstreams, &mut errors);
    }

    if let Some(ref groups) = config.upstream_groups {
        validate_upstream_groups(groups, config.upstreams.as_deref(), &mut errors);
    }

    if let Some(ref rules) = config.rules {
        validate_rules(rules, config.upstream_groups.as_deref(), &mut errors);
    }

    if let Some(ref timeouts) = config.timeouts {
        validate_timeouts(timeouts, &mut errors);
    }

    if let Some(ref process) = config.process {
        validate_process(process, &mut errors);
    }

    if let Some(ref admin) = config.admin {
        validate_admin(admin, &mut errors);
    }

    if let Some(ref routing) = config.routing {
        if let Some(ref default) = routing.default {
            if default != "direct" && default != "reject" {
                let group_ids: Vec<&str> = config
                    .upstream_groups
                    .as_ref()
                    .map(|gs| gs.iter().map(|g| g.id.as_str()).collect())
                    .unwrap_or_default();
                if !group_ids.contains(&default.as_str()) {
                    errors.push(ConfigError::validation(
                        "routing.default",
                        &format!("unknown upstream group or action: {}", default),
                    ));
                }
            }
        }
    }

    if let Some(ref upstreams) = config.upstreams {
        if let Some(ref groups) = config.upstream_groups {
            validate_upstream_transport(upstreams, groups, config, &mut errors);
        }
    }

    if errors.is_empty() {
        Ok(())
    } else {
        Err(errors)
    }
}

/// Validate configuration against the composition matrix.
///
/// Produces warnings (not errors) for unsupported listener→upstream
/// protocol combinations. The composition matrix is resolved relative to the
/// working directory; if it cannot be loaded, a warning is emitted so the
/// suppressed checks remain visible.
pub fn validate_config_composition(config: &ConfigFile) -> Vec<ConfigWarning> {
    let mut warnings = Vec::new();

    // Load the composition matrix directly (no testkit dependency)
    let matrix = match load_composition_matrix() {
        Some(m) => m,
        None => {
            warnings.push(ConfigWarning {
                path: "composition_matrix".to_string(),
                message: "composition matrix not found relative to the working directory; \
                          protocol composition warnings are suppressed"
                    .to_string(),
            });
            return warnings;
        }
    };

    // Collect listener protocols from the `protocols` field
    let listener_protocols: Vec<&str> = config
        .listeners
        .as_ref()
        .map(|listeners| {
            listeners
                .iter()
                .flat_map(|l| l.protocols.iter().map(|p| p.as_str()))
                .collect()
        })
        .unwrap_or_default();

    // Collect upstream protocols from all groups
    if let Some(ref upstreams) = config.upstreams {
        let upstream_chains: std::collections::HashMap<&str, eggress_uri::ProxyChainSpec> =
            upstreams
                .iter()
                .filter_map(|u| {
                    eggress_uri::parse_proxy_chain(&u.uri)
                        .ok()
                        .map(|chain| (u.id.as_str(), chain))
                })
                .collect();

        for upstream in upstreams {
            if let Some(chain) = upstream_chains.get(upstream.id.as_str()) {
                let caps = eggress_core::capability::classify_upstream_chain(chain);

                // Check TCP capability
                if caps.is_tcp_supported() {
                    for &proto in &listener_protocols {
                        if !matrix_cell_supported(&matrix, proto, "listener", "tcp") {
                            warnings.push(ConfigWarning {
                                path: format!("upstreams[{}].uri", upstream.id),
                                message: format!(
                                    "listener protocol '{proto}' has no TCP composition cell; \
                                     upstream '{}' may not work",
                                    upstream.id
                                ),
                            });
                        }
                    }
                }

                // Check UDP capability
                if caps.is_udp_supported() {
                    for &proto in &listener_protocols {
                        if !matrix_cell_supported(&matrix, proto, "listener", "udp") {
                            warnings.push(ConfigWarning {
                                path: format!("upstreams[{}].uri", upstream.id),
                                message: format!(
                                    "listener protocol '{proto}' has no UDP composition cell; \
                                     upstream '{}' may not work with UDP relay",
                                    upstream.id
                                ),
                            });
                        }
                    }
                }
            }
        }
    }

    warnings
}

// Minimal composition matrix types for loading from TOML
#[derive(serde::Deserialize)]
struct CompositionCellMinimal {
    protocol: String,
    role: String,
    traffic_kind: String,
    tier: String,
}

#[derive(serde::Deserialize)]
struct CompositionMatrixMinimal {
    cell: Vec<CompositionCellMinimal>,
}

// Embedded at compile time so embedders (eggress-embed, PyO3, binaries run
// from another CWD) do not silently suppress composition warnings.
// The file is vendored inside the crate (rather than included from
// `docs/parity/`) because `cargo package` only ships files under the crate
// directory; an escaping include would break every from-registry build.
// `docs/parity/composition_matrix.toml` remains canonical —
// `vendored_matrix_matches_canonical` below enforces byte equality.
const EMBEDDED_COMPOSITION_MATRIX: &str = include_str!("../composition_matrix.toml");

fn load_composition_matrix() -> Option<CompositionMatrixMinimal> {
    // Look for the composition matrix relative to the workspace root first so
    // developers get live updates without recompiling; fall back to the
    // compile-time embedded copy for embedders and other CWDs.
    let candidates = [
        "docs/parity/composition_matrix.toml",
        "../docs/parity/composition_matrix.toml",
        "../../docs/parity/composition_matrix.toml",
    ];
    for path in &candidates {
        if let Ok(content) = std::fs::read_to_string(path) {
            if let Ok(matrix) = toml::from_str::<CompositionMatrixMinimal>(&content) {
                return Some(matrix);
            }
        }
    }
    if let Ok(matrix) = toml::from_str::<CompositionMatrixMinimal>(EMBEDDED_COMPOSITION_MATRIX) {
        return Some(matrix);
    }
    None
}

fn matrix_cell_supported(
    matrix: &CompositionMatrixMinimal,
    protocol: &str,
    role: &str,
    traffic_kind: &str,
) -> bool {
    matrix.cell.iter().any(|c| {
        c.protocol == protocol
            && c.role == role
            && c.traffic_kind == traffic_kind
            && c.tier != "unsupported"
    })
}

fn validate_listeners(listeners: &[crate::model::ListenerConfig], errors: &mut Vec<ConfigError>) {
    let mut names = HashSet::new();

    for (i, listener) in listeners.iter().enumerate() {
        let path = format!("listeners[{}]", i);

        if !names.insert(&listener.name) {
            errors.push(ConfigError::validation(
                &path,
                &format!("duplicate listener name: {}", listener.name),
            ));
        }

        if listener.protocols.is_empty() {
            errors.push(ConfigError::validation(
                &path,
                "protocols must not be empty",
            ));
        }

        for protocol in &listener.protocols {
            if !VALID_PROTOCOLS.contains(&protocol.as_str()) {
                errors.push(ConfigError::validation(
                    &path,
                    &format!("unknown protocol: {}", protocol),
                ));
            }
        }

        if let Some(ref auth) = listener.auth {
            if !VALID_AUTH_TYPES.contains(&auth.auth_type.as_str()) {
                errors.push(ConfigError::validation(
                    &path,
                    &format!("unknown auth type: {}", auth.auth_type),
                ));
            }
            if auth.username.as_deref().unwrap_or("").is_empty() {
                errors.push(ConfigError::validation(
                    &path,
                    "auth requires a non-empty username",
                ));
            }
            if auth.password.is_none() && auth.password_env.is_none() {
                errors.push(ConfigError::validation(
                    &path,
                    "auth requires at least one of password or password_env",
                ));
            }
            if auth.password.as_deref() == Some("") {
                errors.push(ConfigError::validation(
                    &path,
                    "auth password must not be empty",
                ));
            }
        }

        if listener.connection_limit == Some(0) {
            errors.push(ConfigError::validation(
                &path,
                "connection_limit must be greater than 0",
            ));
        }

        if let Some(ref udp) = listener.udp {
            validate_listener_udp(udp, &path, errors);
        }

        // Trojan requires TLS — the TLS layer is part of the protocol
        if listener.protocols.contains(&"trojan".to_string()) && listener.tls.is_none() {
            errors.push(ConfigError::validation(
                &path,
                "trojan protocol requires TLS configuration ([listeners.tls])",
            ));
        }

        // Trojan requires a [listeners.trojan] section with a password
        if listener.protocols.contains(&"trojan".to_string()) && listener.trojan.is_none() {
            errors.push(ConfigError::validation(
                &path,
                "trojan protocol requires [listeners.trojan] section with password",
            ));
        }

        // Trojan password must not be empty if provided
        if let Some(ref trojan) = listener.trojan {
            if trojan.password.is_empty() {
                errors.push(ConfigError::validation(
                    &format!("{}.trojan.password", path),
                    "trojan password must not be empty",
                ));
            }
            // Validate fallback address format if provided
            if let Some(ref fallback) = trojan.fallback {
                if fallback.parse::<eggress_core::TargetAddr>().is_err() {
                    errors.push(ConfigError::validation(
                        &format!("{}.trojan.fallback", path),
                        &format!(
                            "invalid fallback address format: '{fallback}' (expected host:port)"
                        ),
                    ));
                }
            }
        }
    }
}

fn validate_upstreams(upstreams: &[crate::model::UpstreamConfig], errors: &mut Vec<ConfigError>) {
    let mut ids = HashSet::new();

    for (i, upstream) in upstreams.iter().enumerate() {
        let path = format!("upstreams[{}]", i);

        if !ids.insert(&upstream.id) {
            errors.push(ConfigError::validation(
                &path,
                &format!("duplicate upstream ID: {}", upstream.id),
            ));
        }

        if eggress_uri::parse_proxy_chain(&upstream.uri).is_err() {
            errors.push(ConfigError::validation(&path, "invalid upstream URI"));
        }

        if let Some(ref health) = upstream.health {
            validate_health_config(health, &path, errors);
        }

        if let Some(ref h2) = upstream.h2 {
            validate_h2_config(h2, &path, errors);
        }
    }
}

fn validate_health_config(
    health: &crate::model::HealthConfigToml,
    parent_path: &str,
    errors: &mut Vec<ConfigError>,
) {
    if let Some(ref mode) = health.mode {
        if !VALID_HEALTH_MODES.contains(&mode.as_str()) {
            errors.push(ConfigError::validation(
                &format!("{}.health.mode", parent_path),
                &format!(
                    "unknown health mode '{}', must be one of: {}",
                    mode,
                    VALID_HEALTH_MODES.join(", ")
                ),
            ));
        }
    }
    if let Some(ref interval) = health.interval {
        if let Ok(d) = parse_duration(interval) {
            if d.is_zero() {
                errors.push(ConfigError::validation(
                    &format!("{}.health.interval", parent_path),
                    &format!("must be greater than 0, got: {}", interval),
                ));
            }
        } else {
            errors.push(ConfigError::validation(
                &format!("{}.health.interval", parent_path),
                &format!("invalid duration: {}", interval),
            ));
        }
    }
    if let Some(ref timeout) = health.timeout {
        if let Ok(d) = parse_duration(timeout) {
            if d.is_zero() {
                errors.push(ConfigError::validation(
                    &format!("{}.health.timeout", parent_path),
                    &format!("must be greater than 0, got: {}", timeout),
                ));
            }
        } else {
            errors.push(ConfigError::validation(
                &format!("{}.health.timeout", parent_path),
                &format!("invalid duration: {}", timeout),
            ));
        }
    }
    if let Some(failures) = health.failures_to_unhealthy {
        if failures == 0 {
            errors.push(ConfigError::validation(
                &format!("{}.health.failures_to_unhealthy", parent_path),
                "must be greater than 0",
            ));
        }
    }
    if let Some(successes) = health.successes_to_healthy {
        if successes == 0 {
            errors.push(ConfigError::validation(
                &format!("{}.health.successes_to_healthy", parent_path),
                "must be greater than 0",
            ));
        }
    }
    if let Some(ref initial_state) = health.initial_state {
        if !VALID_HEALTH_INITIAL_STATES.contains(&initial_state.as_str()) {
            errors.push(ConfigError::validation(
                &format!("{}.health.initial_state", parent_path),
                &format!(
                    "unknown state '{}', must be one of: {}",
                    initial_state,
                    VALID_HEALTH_INITIAL_STATES.join(", ")
                ),
            ));
        }
    }
}

fn validate_h2_config(
    h2: &crate::model::H2UpstreamConfig,
    parent_path: &str,
    errors: &mut Vec<ConfigError>,
) {
    if let Some(max) = h2.max_concurrent_streams {
        if max == 0 {
            errors.push(ConfigError::validation(
                &format!("{}.h2.max_concurrent_streams", parent_path),
                "must be greater than 0",
            ));
        }
    }
    if let Some(pool) = h2.pool_size {
        if pool == 0 {
            errors.push(ConfigError::validation(
                &format!("{}.h2.pool_size", parent_path),
                "must be greater than 0",
            ));
        }
    }
    if let Some(ref idle) = h2.idle_timeout {
        if parse_duration(idle).is_err() {
            errors.push(ConfigError::validation(
                &format!("{}.h2.idle_timeout", parent_path),
                &format!("invalid duration: {}", idle),
            ));
        }
    }
    if let Some(ref interval) = h2.keepalive_interval {
        if parse_duration(interval).is_err() {
            errors.push(ConfigError::validation(
                &format!("{}.h2.keepalive_interval", parent_path),
                &format!("invalid duration: {}", interval),
            ));
        }
    }
    if let Some(ref timeout) = h2.keepalive_timeout {
        if parse_duration(timeout).is_err() {
            errors.push(ConfigError::validation(
                &format!("{}.h2.keepalive_timeout", parent_path),
                &format!("invalid duration: {}", timeout),
            ));
        }
    }
    if let Some(window) = h2.stream_receive_window {
        if window == 0 {
            errors.push(ConfigError::validation(
                &format!("{}.h2.stream_receive_window", parent_path),
                "must be greater than 0",
            ));
        }
    }
    if let Some(window) = h2.connection_receive_window {
        if window == 0 {
            errors.push(ConfigError::validation(
                &format!("{}.h2.connection_receive_window", parent_path),
                "must be greater than 0",
            ));
        }
    }
    if let Some(size) = h2.max_frame_size {
        if size == 0 {
            errors.push(ConfigError::validation(
                &format!("{}.h2.max_frame_size", parent_path),
                "must be greater than 0",
            ));
        }
    }
    if let Some(size) = h2.max_header_list_size {
        if size == 0 {
            errors.push(ConfigError::validation(
                &format!("{}.h2.max_header_list_size", parent_path),
                "must be greater than 0",
            ));
        }
    }
}

fn validate_upstream_groups(
    groups: &[crate::model::UpstreamGroupConfig],
    upstreams: Option<&[crate::model::UpstreamConfig]>,
    errors: &mut Vec<ConfigError>,
) {
    let mut ids = HashSet::new();
    let upstream_ids: HashSet<&str> = upstreams
        .map(|u| u.iter().map(|u| u.id.as_str()).collect())
        .unwrap_or_default();

    for (i, group) in groups.iter().enumerate() {
        let path = format!("upstream_groups[{}]", i);

        if !ids.insert(&group.id) {
            errors.push(ConfigError::validation(
                &path,
                &format!("duplicate group ID: {}", group.id),
            ));
        }

        if let Some(ref scheduler) = group.scheduler {
            if !VALID_SCHEDULERS.contains(&scheduler.as_str()) {
                errors.push(ConfigError::validation(
                    &path,
                    &format!("unknown scheduler: {}", scheduler),
                ));
            }
        }

        if let Some(ref fallback) = group.fallback {
            if !VALID_FALLBACKS.contains(&fallback.as_str()) {
                errors.push(ConfigError::validation(
                    &path,
                    &format!("unknown fallback: {}", fallback),
                ));
            }
        }

        if group.members.is_empty() {
            errors.push(ConfigError::validation(
                &path,
                "upstream group must have at least one member",
            ));
        }

        let mut seen_members = HashSet::new();
        for (j, member) in group.members.iter().enumerate() {
            if !seen_members.insert(member.as_str()) {
                errors.push(ConfigError::validation(
                    &path,
                    &format!("duplicate member '{}' at index {}", member, j),
                ));
            }
            if !upstream_ids.contains(member.as_str()) {
                errors.push(ConfigError::validation(
                    &path,
                    &format!("member {} references unknown upstream: {}", j, member),
                ));
            }
        }
    }
}

fn validate_upstream_transport(
    upstreams: &[crate::model::UpstreamConfig],
    groups: &[crate::model::UpstreamGroupConfig],
    config: &ConfigFile,
    errors: &mut Vec<ConfigError>,
) {
    let upstream_chains: std::collections::HashMap<&str, eggress_uri::ProxyChainSpec> = upstreams
        .iter()
        .filter_map(|u| {
            eggress_uri::parse_proxy_chain(&u.uri)
                .ok()
                .map(|chain| (u.id.as_str(), chain))
        })
        .collect();

    let mut group_udp_support: std::collections::HashMap<&str, bool> =
        std::collections::HashMap::new();

    for group in groups {
        let has_udp_upstream = group.members.iter().any(|member_id| {
            upstream_chains
                .get(member_id.as_str())
                .map(|chain| {
                    eggress_core::capability::classify_upstream_chain(chain).is_udp_supported()
                })
                .unwrap_or(false)
        });
        group_udp_support.insert(group.id.as_str(), has_udp_upstream);
    }

    let udp_listener_exists = config
        .listeners
        .as_ref()
        .map(|listeners| {
            listeners.iter().any(|l| {
                l.udp_enabled == Some(true)
                    || l.udp.as_ref().is_some_and(|u| u.enabled != Some(false))
            })
        })
        .unwrap_or(false);

    if let Some(ref rules) = config.rules {
        for rule in rules {
            if let Some(ref upstream_group) = rule.upstream_group {
                let group_id = upstream_group.as_str();
                let group_supports_udp = group_udp_support.get(group_id).copied().unwrap_or(false);

                let rule_could_match_udp = rule_upstream_group_could_match_udp(rule);

                if !group_supports_udp && rule_could_match_udp && udp_listener_exists {
                    errors.push(ConfigError::validation(
                        &format!("rules[{}].upstream_group", rule.id),
                        &format!(
                            "upstream group '{}' contains no UDP-capable upstreams but is referenced by a rule that could match UDP traffic",
                            upstream_group
                        ),
                    ));
                }
            }
        }
    }

    if let Some(ref routing) = config.routing {
        if let Some(ref default) = routing.default {
            if default != "direct" && default != "reject" {
                let group_supports_udp = group_udp_support
                    .get(default.as_str())
                    .copied()
                    .unwrap_or(false);
                if !group_supports_udp && udp_listener_exists {
                    errors.push(ConfigError::validation(
                        "routing.default",
                        &format!(
                            "upstream group '{}' contains no UDP-capable upstreams but is the default route while UDP listeners exist",
                            default
                        ),
                    ));
                }
            }
        }
    }
}

fn rule_upstream_group_could_match_udp(rule: &crate::model::RuleConfig) -> bool {
    if let Some(ref match_expr) = rule.match_expr {
        return matcher_could_match_udp(match_expr);
    }

    if rule.host_exact.is_some()
        || rule.host_suffix.is_some()
        || rule.host_regex.is_some()
        || rule.destination_port.is_some()
    {
        return true;
    }

    if rule.any.unwrap_or(false) {
        return true;
    }

    true
}

const MAX_MATCH_EXPR_DEPTH: usize = 10;

fn matcher_could_match_udp(matcher: &MatchExprConfig) -> bool {
    matcher_could_match_udp_limited(matcher, 0)
}

fn matcher_could_match_udp_limited(matcher: &MatchExprConfig, depth: usize) -> bool {
    // The full validator rejects deeper expressions. Stay conservative here
    // so this pre-validation diagnostic never suppresses a useful warning.
    if depth >= MAX_MATCH_EXPR_DEPTH {
        return true;
    }
    match matcher {
        MatchExprConfig::Leaf(leaf) => leaf_could_match_udp(leaf),
        MatchExprConfig::Composite(composite) => {
            if let Some(ref all) = composite.all {
                return all
                    .iter()
                    .all(|child| matcher_could_match_udp_limited(child, depth + 1));
            }
            if let Some(ref any_of) = composite.any_of {
                return any_of
                    .iter()
                    .any(|child| matcher_could_match_udp_limited(child, depth + 1));
            }
            if let Some(ref not) = composite.not {
                return matcher_could_match_udp_limited(not, depth + 1);
            }
            true
        }
    }
}

fn leaf_could_match_udp(leaf: &LeafMatcher) -> bool {
    if let Some(ref transport) = leaf.transport {
        return transport == "udp";
    }
    true
}

fn validate_rules(
    rules: &[crate::model::RuleConfig],
    groups: Option<&[crate::model::UpstreamGroupConfig]>,
    errors: &mut Vec<ConfigError>,
) {
    let group_ids: HashSet<&str> = groups
        .map(|g| g.iter().map(|g| g.id.as_str()).collect())
        .unwrap_or_default();

    for (i, rule) in rules.iter().enumerate() {
        let path = format!("rules[{}]", i);

        let matcher_count = [
            rule.host_exact.is_some(),
            rule.host_suffix.is_some(),
            rule.host_regex.is_some(),
            rule.destination_port.is_some(),
            rule.destination_port_regex.is_some(),
            rule.any.unwrap_or(false),
        ]
        .iter()
        .filter(|&&b| b)
        .count();

        if rule.match_expr.is_none() {
            if matcher_count > 1 {
                errors.push(ConfigError::validation(
                    &path,
                    "rule must have exactly one matcher field",
                ));
            }

            if let Some(ref host_regex) = rule.host_regex {
                if regex::Regex::new(host_regex).is_err() {
                    errors.push(ConfigError::validation(
                        &path,
                        &format!("invalid host regex: {}", host_regex),
                    ));
                }
            }
        } else if let Some(ref match_expr) = rule.match_expr {
            if matcher_count > 0 {
                errors.push(ConfigError::validation(
                    &path,
                    "rule must not combine match with legacy matcher fields",
                ));
            }
            validate_match_expr(match_expr, &path, errors, 0);
        }

        let action_count = [
            rule.direct.is_some(),
            rule.upstream_group.is_some(),
            rule.reject.is_some(),
        ]
        .iter()
        .filter(|&&b| b)
        .count();

        if action_count != 1 {
            errors.push(ConfigError::validation(
                &path,
                "rule must have exactly one action field",
            ));
        }

        if let Some(ref upstream_group) = rule.upstream_group {
            if !group_ids.contains(upstream_group.as_str()) {
                errors.push(ConfigError::validation(
                    &path,
                    &format!(
                        "action references unknown upstream group: {}",
                        upstream_group
                    ),
                ));
            }
        }

        if let Some(ref reject) = rule.reject {
            if !VALID_REJECT_REASONS.contains(&reject.as_str()) {
                errors.push(ConfigError::validation(
                    &path,
                    &format!("unknown reject reason: {}", reject),
                ));
            }
        }
    }
}

fn validate_match_expr(
    expr: &crate::model::MatchExprConfig,
    path: &str,
    errors: &mut Vec<ConfigError>,
    depth: usize,
) {
    if depth >= MAX_MATCH_EXPR_DEPTH {
        errors.push(ConfigError::validation(
            path,
            &format!(
                "expression exceeds maximum depth ({})",
                MAX_MATCH_EXPR_DEPTH
            ),
        ));
        return;
    }
    match expr {
        crate::model::MatchExprConfig::Composite(composite) => {
            let has_all = composite.all.is_some();
            let has_any = composite.any_of.is_some();
            let has_not = composite.not.is_some();
            if !has_all && !has_any && !has_not {
                errors.push(ConfigError::validation(
                    &format!("{}.match", path),
                    "composite must have exactly one of: all, any_of, not",
                ));
            }
            if let Some(ref all) = composite.all {
                if all.is_empty() {
                    errors.push(ConfigError::validation(
                        &format!("{}.match.all", path),
                        "must not be empty",
                    ));
                }
                for (j, item) in all.iter().enumerate() {
                    validate_match_expr(
                        item,
                        &format!("{}.match.all[{}]", path, j),
                        errors,
                        depth + 1,
                    );
                }
            }
            if let Some(ref any_of) = composite.any_of {
                if any_of.is_empty() {
                    errors.push(ConfigError::validation(
                        &format!("{}.match.any_of", path),
                        "must not be empty",
                    ));
                }
                for (j, item) in any_of.iter().enumerate() {
                    validate_match_expr(
                        item,
                        &format!("{}.match.any_of[{}]", path, j),
                        errors,
                        depth + 1,
                    );
                }
            }
            if let Some(ref not) = composite.not {
                validate_match_expr(not, &format!("{}.match.not", path), errors, depth + 1);
            }
        }
        crate::model::MatchExprConfig::Leaf(leaf) => {
            if let Some(ref regex_str) = leaf.host_regex {
                if regex::Regex::new(regex_str).is_err() {
                    errors.push(ConfigError::validation(
                        &format!("{}.host_regex", path),
                        &format!("invalid regex: {}", regex_str),
                    ));
                }
            }
            if let Some(ref cidr) = leaf.destination_cidr {
                if cidr.parse::<ipnet::IpNet>().is_err() {
                    errors.push(ConfigError::validation(
                        &format!("{}.destination_cidr", path),
                        &format!("invalid CIDR: {}", cidr),
                    ));
                }
            }
            if let Some(ref cidr) = leaf.source_cidr {
                if cidr.parse::<ipnet::IpNet>().is_err() {
                    errors.push(ConfigError::validation(
                        &format!("{}.source_cidr", path),
                        &format!("invalid CIDR: {}", cidr),
                    ));
                }
            }
            if let Some(ref range) = leaf.destination_port_range {
                if range.len() != 2 {
                    errors.push(ConfigError::validation(
                        &format!("{}.destination_port_range", path),
                        "must have exactly 2 elements [start, end]",
                    ));
                } else if range[0] > range[1] {
                    errors.push(ConfigError::validation(
                        &format!("{}.destination_port_range", path),
                        &format!("start ({}) must be <= end ({})", range[0], range[1]),
                    ));
                }
            }
            if let Some(ref ports) = leaf.destination_port_set {
                if ports.is_empty() {
                    errors.push(ConfigError::validation(
                        &format!("{}.destination_port_set", path),
                        "must not be empty",
                    ));
                }
            }
            if let Some(ref proto) = leaf.protocol {
                if !VALID_PROTOCOLS.contains(&proto.as_str()) && proto != "httponly" {
                    errors.push(ConfigError::validation(
                        &format!("{}.protocol", path),
                        &format!("unknown protocol: {}", proto),
                    ));
                }
            }
        }
    }
}

fn parse_duration(s: &str) -> Result<std::time::Duration, String> {
    let s = s.trim();
    if s.is_empty() {
        return Err("empty duration".to_string());
    }

    let (num_part, unit) = if let Some(pos) = s.find(|c: char| c.is_alphabetic()) {
        (&s[..pos], &s[pos..])
    } else {
        return Err(format!("missing unit in duration: {}", s));
    };

    let value: u64 = num_part
        .parse()
        .map_err(|_| format!("invalid duration value: {}", num_part))?;

    match unit {
        "ns" => Ok(std::time::Duration::from_nanos(value)),
        "us" | "μs" => Ok(std::time::Duration::from_micros(value)),
        "ms" => Ok(std::time::Duration::from_millis(value)),
        "s" => Ok(std::time::Duration::from_secs(value)),
        "m" => value
            .checked_mul(60)
            .map(std::time::Duration::from_secs)
            .ok_or_else(|| format!("duration overflow: {}m", value)),
        "h" => value
            .checked_mul(3600)
            .map(std::time::Duration::from_secs)
            .ok_or_else(|| format!("duration overflow: {}h", value)),
        "d" => value
            .checked_mul(86400)
            .map(std::time::Duration::from_secs)
            .ok_or_else(|| format!("duration overflow: {}d", value)),
        _ => Err(format!("unknown duration unit: {}", unit)),
    }
}

pub fn validate_duration(s: &str) -> Result<std::time::Duration, ConfigError> {
    parse_duration(s).map_err(|msg| ConfigError::validation("duration", &msg))
}

fn validate_timeouts(timeouts: &crate::model::TimeoutConfig, errors: &mut Vec<ConfigError>) {
    if let Some(ref handshake) = timeouts.handshake {
        if let Ok(d) = parse_duration(handshake) {
            if d.is_zero() {
                errors.push(ConfigError::validation(
                    "timeouts.handshake",
                    &format!("must be greater than 0, got: {}", handshake),
                ));
            }
        } else {
            errors.push(ConfigError::validation(
                "timeouts.handshake",
                &format!("invalid duration: {}", handshake),
            ));
        }
    }
    if let Some(ref connect) = timeouts.connect {
        if let Ok(d) = parse_duration(connect) {
            if d.is_zero() {
                errors.push(ConfigError::validation(
                    "timeouts.connect",
                    &format!("must be greater than 0, got: {}", connect),
                ));
            }
        } else {
            errors.push(ConfigError::validation(
                "timeouts.connect",
                &format!("invalid duration: {}", connect),
            ));
        }
    }
}

fn validate_process(process: &crate::model::ProcessConfig, errors: &mut Vec<ConfigError>) {
    if let Some(ref log_level) = process.log_level {
        let valid_levels = ["trace", "debug", "info", "warn", "error"];
        if !valid_levels.contains(&log_level.as_str()) {
            errors.push(ConfigError::validation(
                "process.log_level",
                &format!("unknown log level: {}", log_level),
            ));
        }
    }
    if let Some(ref shutdown_grace) = process.shutdown_grace {
        if parse_duration(shutdown_grace).is_err() {
            errors.push(ConfigError::validation(
                "process.shutdown_grace",
                &format!("invalid duration: {}", shutdown_grace),
            ));
        }
    }
}

fn validate_admin(admin: &crate::model::AdminConfig, errors: &mut Vec<ConfigError>) {
    if let Some(ref bind) = admin.bind {
        if bind.parse::<std::net::SocketAddr>().is_err()
            && bind.parse::<std::net::SocketAddrV4>().is_err()
            && bind.parse::<std::net::SocketAddrV6>().is_err()
        {
            errors.push(ConfigError::validation(
                "admin.bind",
                &format!("invalid bind address: {}", bind),
            ));
        }
    }

    if admin.enabled.unwrap_or(true)
        && admin
            .bind
            .as_deref()
            .is_some_and(|bind| !is_loopback_bind(bind))
        && admin.auth.is_none()
    {
        errors.push(ConfigError::validation(
            "admin.auth",
            "non-loopback admin binds require authentication",
        ));
    }

    if let Some(auth) = &admin.auth {
        if auth.bearer_token.as_deref().is_some_and(str::is_empty) {
            errors.push(ConfigError::validation(
                "admin.auth.bearer_token",
                "bearer token must not be empty",
            ));
        }
        if auth.bearer_token.is_some() && auth.bearer_token_env.is_some() {
            errors.push(ConfigError::validation(
                "admin.auth",
                "configure either bearer_token or bearer_token_env, not both",
            ));
        }
        if let Some(basic) = &auth.basic_auth {
            if basic.user.is_empty() {
                errors.push(ConfigError::validation(
                    "admin.auth.basic_auth.user",
                    "basic auth username must not be empty",
                ));
            }
            if basic.password.as_deref().is_some_and(str::is_empty) {
                errors.push(ConfigError::validation(
                    "admin.auth.basic_auth.password",
                    "basic auth password must not be empty",
                ));
            }
            if basic.password.is_some() && basic.password_env.is_some() {
                errors.push(ConfigError::validation(
                    "admin.auth.basic_auth",
                    "configure either password or password_env, not both",
                ));
            }
        }
        if auth.bearer_token.is_some() && auth.basic_auth.is_some() {
            errors.push(ConfigError::validation(
                "admin.auth",
                "configure either bearer_token or basic_auth, not both",
            ));
        }
    }

    if let Some(ref pac) = admin.pac {
        if let Some(ref path) = pac.path {
            if !path.starts_with('/') {
                errors.push(ConfigError::validation(
                    "admin.pac.path",
                    &format!("PAC path must start with '/': {}", path),
                ));
            }
        }
    }

    if let Some(ref static_content) = admin.static_content {
        let reserved_paths = [
            "/-/health",
            "/-/ready",
            "/-/status",
            "/-/routes",
            "/-/upstreams",
            "/-/config",
            "/-/route-explain",
            "/metrics",
            "/pac",
        ];
        let mut seen_paths = HashSet::new();

        for (i, entry) in static_content.iter().enumerate() {
            let path = format!("admin.static_content[{}]", i);

            if !entry.path.starts_with('/') {
                errors.push(ConfigError::validation(
                    &path,
                    &format!("static path must start with '/': {}", entry.path),
                ));
            }

            if !seen_paths.insert(&entry.path) {
                errors.push(ConfigError::validation(
                    &path,
                    &format!("duplicate static path: {}", entry.path),
                ));
            }

            if reserved_paths.contains(&entry.path.as_str()) {
                errors.push(ConfigError::validation(
                    &path,
                    &format!(
                        "static path collides with reserved admin endpoint: {}",
                        entry.path
                    ),
                ));
            }

            if let Some(ref body) = entry.body {
                if body.is_empty() {
                    errors.push(ConfigError::validation(
                        &path,
                        "static body must be non-empty if provided",
                    ));
                }
            }
        }
    }
}

fn validate_listener_udp(
    udp: &crate::model::ListenerUdpConfig,
    parent_path: &str,
    errors: &mut Vec<ConfigError>,
) {
    let udp_path = format!("{}.udp", parent_path);

    if let Some(ref bind) = udp.bind {
        if bind.parse::<std::net::SocketAddr>().is_err() {
            errors.push(ConfigError::validation(
                &format!("{}.bind", udp_path),
                &format!("invalid socket address: {}", bind),
            ));
        }
    }

    if let Some(ref advertise) = udp.advertise {
        if advertise.parse::<std::net::IpAddr>().is_err() {
            errors.push(ConfigError::validation(
                &format!("{}.advertise", udp_path),
                &format!("invalid IP address: {}", advertise),
            ));
        }
    }

    if let Some(ref idle_timeout) = udp.idle_timeout {
        if parse_duration(idle_timeout).is_err() {
            errors.push(ConfigError::validation(
                &format!("{}.idle_timeout", udp_path),
                &format!("invalid duration: {}", idle_timeout),
            ));
        }
    }

    if let Some(ref target_idle_timeout) = udp.target_idle_timeout {
        if parse_duration(target_idle_timeout).is_err() {
            errors.push(ConfigError::validation(
                &format!("{}.target_idle_timeout", udp_path),
                &format!("invalid duration: {}", target_idle_timeout),
            ));
        }
    }

    if let Some(max_associations) = udp.max_associations {
        if max_associations == 0 {
            errors.push(ConfigError::validation(
                &format!("{}.max_associations", udp_path),
                "must be greater than 0",
            ));
        }
    }

    if let Some(max_targets) = udp.max_targets_per_association {
        if max_targets == 0 {
            errors.push(ConfigError::validation(
                &format!("{}.max_targets_per_association", udp_path),
                "must be greater than 0",
            ));
        }
    }

    if let Some(max_datagram_size) = udp.max_datagram_size {
        if !(257..=65535).contains(&max_datagram_size) {
            errors.push(ConfigError::validation(
                &format!("{}.max_datagram_size", udp_path),
                &format!("must be between 257 and 65535, got {}", max_datagram_size),
            ));
        }
    }
}

/// Check if a socket address string binds to loopback.
///
/// Returns `true` for `127.x.x.x`, `::1`, and IPv4-mapped loopback addresses,
/// including bare IPs without a port and `localhost` hostnames.
/// Returns `false` for `0.0.0.0`, `::`, and other non-loopback addresses.
fn is_loopback_bind(addr: &str) -> bool {
    // Canonical `SocketAddr` form (host:port, including `[::1]:8080`).
    if let Ok(socket) = addr.parse::<std::net::SocketAddr>() {
        return match socket.ip() {
            std::net::IpAddr::V4(v4) => v4.is_loopback(),
            std::net::IpAddr::V6(v6) => {
                v6.is_loopback() || v6.to_ipv4_mapped().is_some_and(|v4| v4.is_loopback())
            }
        };
    }
    // Bare IP without port (e.g. `127.0.0.1`, `::1`, `::ffff:127.0.0.1`).
    if let Ok(ip) = addr.parse::<std::net::IpAddr>() {
        return match ip {
            std::net::IpAddr::V4(v4) => v4.is_loopback(),
            std::net::IpAddr::V6(v6) => {
                v6.is_loopback() || v6.to_ipv4_mapped().is_some_and(|v4| v4.is_loopback())
            }
        };
    }
    // Hostname forms: `localhost` or `localhost:8080`, plus bracketed IPv6
    // without port. Only `localhost` is treated as loopback at the hostname
    // layer; other names are conservative non-loopback.
    let host_part = if addr.starts_with('[') {
        if let Some(end) = addr.find(']') {
            let inside = &addr[1..end];
            // Validate that trailing part is either empty or `:port`.
            let after = &addr[end + 1..];
            if after.is_empty() || (after.starts_with(':') && after[1..].parse::<u16>().is_ok()) {
                inside
            } else {
                addr
            }
        } else {
            addr
        }
    } else if let Some(colon) = addr.rfind(':') {
        let host = &addr[..colon];
        let port_part = &addr[colon + 1..];
        if port_part.parse::<u16>().is_ok() && !host.is_empty() {
            host
        } else {
            addr
        }
    } else {
        addr
    };
    if host_part.eq_ignore_ascii_case("localhost") {
        return true;
    }
    if let Ok(ip) = host_part.parse::<std::net::IpAddr>() {
        return match ip {
            std::net::IpAddr::V4(v4) => v4.is_loopback(),
            std::net::IpAddr::V6(v6) => {
                v6.is_loopback() || v6.to_ipv4_mapped().is_some_and(|v4| v4.is_loopback())
            }
        };
    }
    false
}

/// Emit security warnings for dangerous config combinations.
///
/// This runs after structural validation succeeds and produces non-fatal
/// warnings about configurations that could expose services to untrusted
/// networks without authentication.
pub fn validate_config_security(config: &ConfigFile) -> Vec<ConfigWarning> {
    let mut warnings = Vec::new();

    // 35.2 / 35.7: Warn about non-loopback listener binds without auth
    if let Some(ref listeners) = config.listeners {
        for (i, listener) in listeners.iter().enumerate() {
            let path = format!("listeners[{}].bind", i);
            if !is_loopback_bind(&listener.bind) {
                let has_auth = listener.auth.is_some();
                let has_shadowsocks = listener.shadowsocks.is_some();
                let has_ssr = listener.ssr.is_some();
                let has_trojan = listener.trojan.is_some();
                if !has_auth && !has_shadowsocks && !has_ssr && !has_trojan {
                    warnings.push(ConfigWarning {
                        path,
                        message: format!(
                            "listener '{}' binds to {} without authentication — \
                             this may expose the proxy to untrusted networks",
                            listener.name, listener.bind,
                        ),
                    });
                }
            }
        }
    }

    // 35.4 / 35.7: Warn about non-loopback admin bind
    if let Some(ref admin) = config.admin {
        if let Some(ref bind) = admin.bind {
            if !is_loopback_bind(bind) && admin.auth.is_none() {
                warnings.push(ConfigWarning {
                    path: "admin.bind".to_string(),
                    message: format!(
                        "admin server binds to {} without authentication — \
                         this may expose admin endpoints to untrusted networks",
                        bind,
                    ),
                });
            }
        }
    }

    // 35.5 / 35.7: Warn about non-loopback reverse control_bind without auth
    if let Some(ref servers) = config.reverse_servers {
        for (i, server) in servers.iter().enumerate() {
            let path = format!("reverse_servers[{}].control_bind", i);
            if !is_loopback_bind(&server.control_bind) {
                let has_auth = server.auth_username.is_some()
                    && (server.auth_password.is_some() || server.auth_password_env.is_some());
                if !has_auth {
                    warnings.push(ConfigWarning {
                        path,
                        message: format!(
                            "reverse server '{}' control channel binds to {} without authentication — \
                             any client can connect and request proxying",
                            server.id, server.control_bind,
                        ),
                    });
                }
                // M-11: reverse control auth is sent in plaintext without TLS
                // at the protocol level; callers must layer TLS externally when
                // binding non-loopback, even with auth. Documented here as
                // best-effort advisory — no additional warning emitted to avoid
                // breaking existing valid configurations that rely on external TLS
                // termination.
            }
        }
    }

    warn_protocol_aliases(config, &mut warnings);

    warnings
}

fn warn_protocol_aliases(config: &ConfigFile, warnings: &mut Vec<ConfigWarning>) {
    if let Some(ref rules) = config.rules {
        for (i, rule) in rules.iter().enumerate() {
            let base = format!("rules[{i}]");
            if let Some(ref expr) = rule.match_expr {
                walk_match_expr_for_alias(expr, &format!("{base}.match"), warnings, 0);
            }
        }
    }
}

fn walk_match_expr_for_alias(
    expr: &MatchExprConfig,
    path: &str,
    warnings: &mut Vec<ConfigWarning>,
    depth: usize,
) {
    if depth >= MAX_MATCH_EXPR_DEPTH {
        return;
    }
    match expr {
        MatchExprConfig::Composite(composite) => {
            if let Some(ref all) = composite.all {
                for (i, child) in all.iter().enumerate() {
                    walk_match_expr_for_alias(
                        child,
                        &format!("{path}.all[{i}]"),
                        warnings,
                        depth + 1,
                    );
                }
            }
            if let Some(ref any) = composite.any_of {
                for (i, child) in any.iter().enumerate() {
                    walk_match_expr_for_alias(
                        child,
                        &format!("{path}.any_of[{i}]"),
                        warnings,
                        depth + 1,
                    );
                }
            }
            if let Some(ref not) = composite.not {
                walk_match_expr_for_alias(not, &format!("{path}.not"), warnings, depth + 1);
            }
        }
        MatchExprConfig::Leaf(leaf) => {
            if leaf.protocol.as_deref() == Some("httponly") {
                warnings.push(ConfigWarning {
                    path: format!("{path}.protocol"),
                    message: "'httponly' is a pproxy compatibility alias for 'http' \
                              and does not select distinct protocol semantics"
                        .to_string(),
                });
            }
        }
    }
}

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

    #[test]
    fn vendored_matrix_matches_canonical() {
        // `docs/parity/composition_matrix.toml` is the canonical contract;
        // the crate ships a vendored copy for `cargo package` self-containment.
        // From-registry checkouts lack `docs/`, so skip there instead of failing.
        let canonical_path = concat!(
            env!("CARGO_MANIFEST_DIR"),
            "/../../docs/parity/composition_matrix.toml"
        );
        let Ok(canonical) = std::fs::read_to_string(canonical_path) else {
            eprintln!("skipping canonical-matrix sync check (no workspace docs/)");
            return;
        };
        assert_eq!(
            EMBEDDED_COMPOSITION_MATRIX, canonical,
            "crates/eggress-config/composition_matrix.toml is stale; copy docs/parity/composition_matrix.toml over it"
        );
        // The vendored copy must also parse as the expected shape.
        toml::from_str::<CompositionMatrixMinimal>(EMBEDDED_COMPOSITION_MATRIX)
            .expect("vendored composition matrix must parse");
    }

    #[test]
    fn zero_durations_rejected_for_timeouts() {
        let timeouts = crate::model::TimeoutConfig {
            handshake: Some("0s".to_string()),
            connect: Some("0ms".to_string()),
        };
        let mut errors = Vec::new();
        validate_timeouts(&timeouts, &mut errors);
        assert_eq!(errors.len(), 2, "zero handshake and connect must both fail");
        for error in &errors {
            let ConfigError::Validation { message, .. } = error else {
                panic!("expected validation error, got {error:?}");
            };
            assert!(message.contains("greater than 0"), "unexpected: {message}");
        }
    }

    #[test]
    fn nonzero_and_missing_timeouts_accepted() {
        let timeouts = crate::model::TimeoutConfig {
            handshake: Some("5s".to_string()),
            connect: None,
        };
        let mut errors = Vec::new();
        validate_timeouts(&timeouts, &mut errors);
        assert!(errors.is_empty());
    }

    #[test]
    fn zero_health_durations_rejected() {
        let health = crate::model::HealthConfigToml {
            mode: None,
            interval: Some("0s".to_string()),
            timeout: Some("0s".to_string()),
            failures_to_unhealthy: None,
            successes_to_healthy: None,
            initial_state: None,
        };
        let mut errors = Vec::new();
        validate_health_config(&health, "upstreams[0]", &mut errors);
        assert_eq!(errors.len(), 2, "zero interval and timeout must both fail");
        for error in &errors {
            let ConfigError::Validation { message, .. } = error else {
                panic!("expected validation error, got {error:?}");
            };
            assert!(message.contains("greater than 0"), "unexpected: {message}");
        }
    }

    #[test]
    fn loopback_detection() {
        assert!(is_loopback_bind("127.0.0.1:8080"));
        assert!(is_loopback_bind("127.0.0.1:0"));
        assert!(is_loopback_bind("[::1]:8080"));
        assert!(is_loopback_bind("[::ffff:127.0.0.1]:8080"));
        assert!(!is_loopback_bind("0.0.0.0:8080"));
        assert!(!is_loopback_bind("[::]:8080"));
        assert!(!is_loopback_bind("10.0.0.1:8080"));
        assert!(!is_loopback_bind("192.168.1.1:8080"));
        assert!(!is_loopback_bind("not-an-addr"));
    }

    #[test]
    fn warn_non_loopback_listener_without_auth() {
        let config = ConfigFile {
            version: Some(1),
            listeners: Some(vec![crate::model::ListenerConfig {
                name: "public".to_string(),
                bind: "0.0.0.0:8080".to_string(),
                protocols: vec!["http".to_string()],
                reuse_port: None,
                connection_limit: None,
                auth: None,
                udp_enabled: None,
                udp: None,
                tls: None,
                shadowsocks: None,
                ssr: None,
                trojan: None,
                transparent: None,
                unix: None,
                fixed_target: None,
                local_bind: None,
            }]),
            upstreams: None,
            upstream_groups: None,
            rules: None,
            rules_file: None,
            routing: None,
            admin: None,
            process: None,
            timeouts: None,
            reverse_servers: None,
            reverse_clients: None,
        };
        let warnings = validate_config_security(&config);
        assert!(!warnings.is_empty());
        assert!(warnings[0].message.contains("0.0.0.0:8080"));
    }

    #[test]
    fn no_warn_loopback_listener() {
        let config = ConfigFile {
            version: Some(1),
            listeners: Some(vec![crate::model::ListenerConfig {
                name: "local".to_string(),
                bind: "127.0.0.1:8080".to_string(),
                protocols: vec!["http".to_string()],
                reuse_port: None,
                connection_limit: None,
                auth: None,
                udp_enabled: None,
                udp: None,
                tls: None,
                shadowsocks: None,
                ssr: None,
                trojan: None,
                transparent: None,
                unix: None,
                fixed_target: None,
                local_bind: None,
            }]),
            upstreams: None,
            upstream_groups: None,
            rules: None,
            rules_file: None,
            routing: None,
            admin: None,
            process: None,
            timeouts: None,
            reverse_servers: None,
            reverse_clients: None,
        };
        let warnings = validate_config_security(&config);
        assert!(warnings.is_empty());
    }

    #[test]
    fn no_warn_authed_listener() {
        let config = ConfigFile {
            version: Some(1),
            listeners: Some(vec![crate::model::ListenerConfig {
                name: "public-ss".to_string(),
                bind: "0.0.0.0:8388".to_string(),
                protocols: vec!["shadowsocks".to_string()],
                reuse_port: None,
                connection_limit: None,
                auth: None,
                udp_enabled: None,
                udp: None,
                tls: None,
                shadowsocks: Some(crate::model::ShadowsocksListenerConfig {
                    method: "aes-256-gcm".to_string(),
                    password: "secret".to_string(),
                    auth_prefix: None,
                    plugins: Vec::new(),
                }),
                ssr: None,
                trojan: None,
                transparent: None,
                unix: None,
                fixed_target: None,
                local_bind: None,
            }]),
            upstreams: None,
            upstream_groups: None,
            rules: None,
            rules_file: None,
            routing: None,
            admin: None,
            process: None,
            timeouts: None,
            reverse_servers: None,
            reverse_clients: None,
        };
        let warnings = validate_config_security(&config);
        // Shadowsocks provides its own auth, so no warning
        assert!(warnings.is_empty());
    }

    #[test]
    fn warn_non_loopback_admin() {
        let config = ConfigFile {
            version: Some(1),
            listeners: None,
            upstreams: None,
            upstream_groups: None,
            rules: None,
            rules_file: None,
            routing: None,
            admin: Some(crate::model::AdminConfig {
                bind: Some("0.0.0.0:9090".to_string()),
                enabled: None,
                metrics: None,
                auth: None,
                pac: None,
                static_content: None,
            }),
            process: None,
            timeouts: None,
            reverse_servers: None,
            reverse_clients: None,
        };
        let warnings = validate_config_security(&config);
        assert!(!warnings.is_empty());
        assert!(warnings.iter().any(|w| w.path == "admin.bind"));
    }

    #[test]
    fn no_warn_loopback_admin() {
        let config = ConfigFile {
            version: Some(1),
            listeners: None,
            upstreams: None,
            upstream_groups: None,
            rules: None,
            rules_file: None,
            routing: None,
            admin: Some(crate::model::AdminConfig {
                bind: Some("127.0.0.1:9090".to_string()),
                enabled: None,
                metrics: None,
                auth: None,
                pac: None,
                static_content: None,
            }),
            process: None,
            timeouts: None,
            reverse_servers: None,
            reverse_clients: None,
        };
        let warnings = validate_config_security(&config);
        assert!(warnings.is_empty());
    }

    #[test]
    fn warn_reverse_control_bind_without_auth() {
        let config = ConfigFile {
            version: Some(1),
            listeners: None,
            upstreams: None,
            upstream_groups: None,
            rules: None,
            rules_file: None,
            routing: None,
            admin: None,
            process: None,
            timeouts: None,
            reverse_servers: Some(vec![crate::model::ReverseServerConfig {
                id: "rs1".to_string(),
                control_bind: "0.0.0.0:8443".to_string(),
                external_bind: "0.0.0.0:9000".to_string(),
                auth_username: None,
                auth_password: None,
                auth_password_env: None,
                max_streams: None,
                heartbeat_interval: None,
                pproxy_compat: false,
            }]),
            reverse_clients: None,
        };
        let warnings = validate_config_security(&config);
        assert!(!warnings.is_empty());
        assert!(warnings.iter().any(|w| w.path.contains("control_bind")));
    }

    #[test]
    fn no_warn_reverse_control_bind_with_auth() {
        let config = ConfigFile {
            version: Some(1),
            listeners: None,
            upstreams: None,
            upstream_groups: None,
            rules: None,
            rules_file: None,
            routing: None,
            admin: None,
            process: None,
            timeouts: None,
            reverse_servers: Some(vec![crate::model::ReverseServerConfig {
                id: "rs1".to_string(),
                control_bind: "0.0.0.0:8443".to_string(),
                external_bind: "0.0.0.0:9000".to_string(),
                auth_username: Some("user".to_string()),
                auth_password: Some("pass".to_string()),
                auth_password_env: None,
                max_streams: None,
                heartbeat_interval: None,
                pproxy_compat: false,
            }]),
            reverse_clients: None,
        };
        let warnings = validate_config_security(&config);
        assert!(warnings.is_empty());
    }

    #[test]
    fn no_warn_reverse_control_bind_with_env_auth() {
        let config = ConfigFile {
            version: Some(1),
            listeners: None,
            upstreams: None,
            upstream_groups: None,
            rules: None,
            rules_file: None,
            routing: None,
            admin: None,
            process: None,
            timeouts: None,
            reverse_servers: Some(vec![crate::model::ReverseServerConfig {
                id: "rs1".to_string(),
                control_bind: "0.0.0.0:8443".to_string(),
                external_bind: "0.0.0.0:9000".to_string(),
                auth_username: Some("user".to_string()),
                auth_password: None,
                auth_password_env: Some("MY_SECRET".to_string()),
                max_streams: None,
                heartbeat_interval: None,
                pproxy_compat: false,
            }]),
            reverse_clients: None,
        };
        let warnings = validate_config_security(&config);
        assert!(warnings.is_empty());
    }

    #[test]
    fn warn_trojan_listener_without_auth() {
        let config = ConfigFile {
            version: Some(1),
            listeners: Some(vec![crate::model::ListenerConfig {
                name: "public-trojan".to_string(),
                bind: "0.0.0.0:443".to_string(),
                protocols: vec!["trojan".to_string()],
                reuse_port: None,
                connection_limit: None,
                auth: None,
                udp_enabled: None,
                udp: None,
                tls: Some(crate::model::ListenerTlsConfig {
                    cert: "/path/cert.pem".to_string(),
                    key: "/path/key.pem".to_string(),
                    alpn: None,
                }),
                shadowsocks: None,
                ssr: None,
                trojan: Some(crate::model::ListenerTrojanConfig {
                    password: "secret".to_string(),
                    fallback: None,
                }),
                transparent: None,
                unix: None,
                fixed_target: None,
                local_bind: None,
            }]),
            upstreams: None,
            upstream_groups: None,
            rules: None,
            rules_file: None,
            routing: None,
            admin: None,
            process: None,
            timeouts: None,
            reverse_servers: None,
            reverse_clients: None,
        };
        // Trojan provides its own auth via password hash, no warning expected
        let warnings = validate_config_security(&config);
        assert!(warnings.is_empty());
    }

    #[test]
    fn validate_trojan_requires_tls() {
        let config = ConfigFile {
            version: Some(1),
            listeners: Some(vec![crate::model::ListenerConfig {
                name: "trojan-notls".to_string(),
                bind: "127.0.0.1:443".to_string(),
                protocols: vec!["trojan".to_string()],
                reuse_port: None,
                connection_limit: None,
                auth: None,
                udp_enabled: None,
                udp: None,
                tls: None,
                shadowsocks: None,
                ssr: None,
                trojan: Some(crate::model::ListenerTrojanConfig {
                    password: "secret".to_string(),
                    fallback: None,
                }),
                transparent: None,
                unix: None,
                fixed_target: None,
                local_bind: None,
            }]),
            upstreams: None,
            upstream_groups: None,
            rules: None,
            rules_file: None,
            routing: None,
            admin: None,
            process: None,
            timeouts: None,
            reverse_servers: None,
            reverse_clients: None,
        };
        let result = validate_config(&config);
        assert!(result.is_err());
        let errors = result.unwrap_err();
        assert!(errors
            .iter()
            .any(|e| e.to_string().contains("requires TLS")));
    }

    #[test]
    fn validate_trojan_requires_trojan_section() {
        let config = ConfigFile {
            version: Some(1),
            listeners: Some(vec![crate::model::ListenerConfig {
                name: "trojan-nosection".to_string(),
                bind: "127.0.0.1:443".to_string(),
                protocols: vec!["trojan".to_string()],
                reuse_port: None,
                connection_limit: None,
                auth: None,
                udp_enabled: None,
                udp: None,
                tls: Some(crate::model::ListenerTlsConfig {
                    cert: "/path/cert.pem".to_string(),
                    key: "/path/key.pem".to_string(),
                    alpn: None,
                }),
                shadowsocks: None,
                ssr: None,
                trojan: None,
                transparent: None,
                unix: None,
                fixed_target: None,
                local_bind: None,
            }]),
            upstreams: None,
            upstream_groups: None,
            rules: None,
            rules_file: None,
            routing: None,
            admin: None,
            process: None,
            timeouts: None,
            reverse_servers: None,
            reverse_clients: None,
        };
        let result = validate_config(&config);
        assert!(result.is_err());
        let errors = result.unwrap_err();
        assert!(errors
            .iter()
            .any(|e| e.to_string().contains("requires [listeners.trojan]")));
    }

    #[test]
    fn validate_trojan_empty_password_rejected() {
        let config = ConfigFile {
            version: Some(1),
            listeners: Some(vec![crate::model::ListenerConfig {
                name: "trojan-empty".to_string(),
                bind: "127.0.0.1:443".to_string(),
                protocols: vec!["trojan".to_string()],
                reuse_port: None,
                connection_limit: None,
                auth: None,
                udp_enabled: None,
                udp: None,
                tls: Some(crate::model::ListenerTlsConfig {
                    cert: "/path/cert.pem".to_string(),
                    key: "/path/key.pem".to_string(),
                    alpn: None,
                }),
                shadowsocks: None,
                ssr: None,
                trojan: Some(crate::model::ListenerTrojanConfig {
                    password: String::new(),
                    fallback: None,
                }),
                transparent: None,
                unix: None,
                fixed_target: None,
                local_bind: None,
            }]),
            upstreams: None,
            upstream_groups: None,
            rules: None,
            rules_file: None,
            routing: None,
            admin: None,
            process: None,
            timeouts: None,
            reverse_servers: None,
            reverse_clients: None,
        };
        let result = validate_config(&config);
        assert!(result.is_err());
        let errors = result.unwrap_err();
        assert!(errors
            .iter()
            .any(|e| e.to_string().contains("password must not be empty")));
    }

    #[test]
    fn validate_empty_protocols_rejected() {
        let config = ConfigFile {
            version: Some(1),
            listeners: Some(vec![crate::model::ListenerConfig {
                name: "bad".to_string(),
                bind: "127.0.0.1:0".to_string(),
                protocols: vec![],
                reuse_port: None,
                connection_limit: None,
                auth: None,
                udp_enabled: None,
                udp: None,
                tls: None,
                shadowsocks: None,
                ssr: None,
                trojan: None,
                transparent: None,
                unix: None,
                fixed_target: None,
                local_bind: None,
            }]),
            upstreams: None,
            upstream_groups: None,
            rules: None,
            rules_file: None,
            routing: None,
            admin: None,
            process: None,
            timeouts: None,
            reverse_servers: None,
            reverse_clients: None,
        };
        let result = validate_config(&config);
        assert!(result.is_err());
        let errors = result.unwrap_err();
        assert!(errors
            .iter()
            .any(|e| e.to_string().contains("protocols must not be empty")));
    }

    #[test]
    fn validate_trojan_with_tls_and_password_passes() {
        let config = ConfigFile {
            version: Some(1),
            listeners: Some(vec![crate::model::ListenerConfig {
                name: "trojan-valid".to_string(),
                bind: "127.0.0.1:443".to_string(),
                protocols: vec!["trojan".to_string()],
                reuse_port: None,
                connection_limit: None,
                auth: None,
                udp_enabled: None,
                udp: None,
                tls: Some(crate::model::ListenerTlsConfig {
                    cert: "/path/cert.pem".to_string(),
                    key: "/path/key.pem".to_string(),
                    alpn: None,
                }),
                shadowsocks: None,
                ssr: None,
                trojan: Some(crate::model::ListenerTrojanConfig {
                    password: "my-secret".to_string(),
                    fallback: None,
                }),
                transparent: None,
                unix: None,
                fixed_target: None,
                local_bind: None,
            }]),
            upstreams: None,
            upstream_groups: None,
            rules: None,
            rules_file: None,
            routing: None,
            admin: None,
            process: None,
            timeouts: None,
            reverse_servers: None,
            reverse_clients: None,
        };
        let result = validate_config(&config);
        assert!(
            result.is_ok(),
            "valid trojan config should pass: {:?}",
            result.err()
        );
    }

    #[test]
    fn validate_trojan_fallback_invalid_address_rejected() {
        let config = ConfigFile {
            version: Some(1),
            listeners: Some(vec![crate::model::ListenerConfig {
                name: "trojan-bad-fallback".to_string(),
                bind: "127.0.0.1:443".to_string(),
                protocols: vec!["trojan".to_string()],
                reuse_port: None,
                connection_limit: None,
                auth: None,
                udp_enabled: None,
                udp: None,
                tls: Some(crate::model::ListenerTlsConfig {
                    cert: "/path/cert.pem".to_string(),
                    key: "/path/key.pem".to_string(),
                    alpn: None,
                }),
                shadowsocks: None,
                ssr: None,
                trojan: Some(crate::model::ListenerTrojanConfig {
                    password: "secret".to_string(),
                    fallback: Some("not-a-valid-address".to_string()),
                }),
                transparent: None,
                unix: None,
                fixed_target: None,
                local_bind: None,
            }]),
            upstreams: None,
            upstream_groups: None,
            rules: None,
            rules_file: None,
            routing: None,
            admin: None,
            process: None,
            timeouts: None,
            reverse_servers: None,
            reverse_clients: None,
        };
        let result = validate_config(&config);
        assert!(result.is_err());
        let errors = result.unwrap_err();
        assert!(errors
            .iter()
            .any(|e| e.to_string().contains("invalid fallback address")));
    }

    #[test]
    fn validate_trojan_fallback_valid_address_passes() {
        let config = ConfigFile {
            version: Some(1),
            listeners: Some(vec![crate::model::ListenerConfig {
                name: "trojan-good-fallback".to_string(),
                bind: "127.0.0.1:443".to_string(),
                protocols: vec!["trojan".to_string()],
                reuse_port: None,
                connection_limit: None,
                auth: None,
                udp_enabled: None,
                udp: None,
                tls: Some(crate::model::ListenerTlsConfig {
                    cert: "/path/cert.pem".to_string(),
                    key: "/path/key.pem".to_string(),
                    alpn: None,
                }),
                shadowsocks: None,
                ssr: None,
                trojan: Some(crate::model::ListenerTrojanConfig {
                    password: "secret".to_string(),
                    fallback: Some("127.0.0.1:443".to_string()),
                }),
                transparent: None,
                unix: None,
                fixed_target: None,
                local_bind: None,
            }]),
            upstreams: None,
            upstream_groups: None,
            rules: None,
            rules_file: None,
            routing: None,
            admin: None,
            process: None,
            timeouts: None,
            reverse_servers: None,
            reverse_clients: None,
        };
        let result = validate_config(&config);
        assert!(
            result.is_ok(),
            "valid trojan config with fallback should pass: {:?}",
            result.err()
        );
    }
}