syd 3.58.0

rock-solid application kernel
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
//
// Syd: rock-solid application kernel
// src/ip.rs: IP address utilities
//
// Copyright (c) 2025, 2026 Ali Polatel <alip@chesswob.org>
//
// SPDX-License-Identifier: GPL-3.0

// SAFETY: This module has been liberated from unsafe code!
#![forbid(unsafe_code)]

use std::{
    fmt::{self, LowerHex, UpperHex},
    net::{Ipv4Addr, Ipv6Addr, SocketAddrV4, SocketAddrV6},
    os::fd::{AsFd, BorrowedFd},
    str::FromStr,
};

use bitflags::bitflags;
use ipnet::{IpNet, Ipv4Net};
use libc::c_int;
use libseccomp::ScmpArch;
use nix::{errno::Errno, sys::socket::SockaddrStorage};
use serde::{Serialize, Serializer};

use crate::{
    compat::{
        AddressFamily, SockType, BTPROTO_AVDTP, BTPROTO_BNEP, BTPROTO_CMTP, BTPROTO_HCI,
        BTPROTO_HIDP, BTPROTO_ISO, BTPROTO_L2CAP, BTPROTO_RFCOMM, BTPROTO_SCO, CAN_BCM, CAN_ISOTP,
        CAN_J1939, CAN_MCNET, CAN_RAW, CAN_TP16, CAN_TP20, NFC_SOCKPROTO_LLCP, NFC_SOCKPROTO_RAW,
        PF_KEY_V2, PN_PROTO_PHONET, PN_PROTO_PIPE, PN_PROTO_TRANSPORT, PX_PROTO_OE, PX_PROTO_OL2TP,
        PX_PROTO_PPTP, SMCPROTO_SMC, SMCPROTO_SMC6,
    },
    config::MAX_RW_COUNT,
    confine::SydSys,
    cookie::{
        safe_getsockdomain, safe_getsockproto, safe_getsocktcpulp, safe_getsocktlsrx,
        safe_getsocktype,
    },
    fd::SafeOwnedFd,
    proc::info::PROC_INFO,
};

// IPv4-mapped IPv6 loopback: ::ffff:127.0.0.1
const LOOPBACK_MAPPED: Ipv6Addr = Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0x7f00, 1);

bitflags! {
    #[derive(Clone, Copy, Debug, Default, Eq, PartialEq, Ord, PartialOrd, Hash)]
    pub(crate) struct NetlinkFamily: u32 {
        const NETLINK_ROUTE = 1 << 0;     // Routing/device hook
        //const NETLINK_UNUSED = 1 << 1;  // Unused number
        const NETLINK_USERSOCK = 1 << 2;  // Reserved for user mode socket protocols
        const NETLINK_FIREWALL = 1 << 3;  // Unused number, formerly ip_queue
        const NETLINK_SOCK_DIAG = 1 << 4; // socket monitoring
        const NETLINK_NFLOG = 1 << 5;     // netfilter/iptables ULOG
        const NETLINK_XFRM = 1 << 6;      // ipsec
        const NETLINK_SELINUX = 1 << 7;   // SELinux event notifications
        const NETLINK_ISCSI = 1 << 8;     // Open-iSCSI
        const NETLINK_AUDIT = 1 << 9;     // auditing
        const NETLINK_FIB_LOOKUP = 1 << 10;
        const NETLINK_CONNECTOR = 1 << 11;
        const NETLINK_NETFILTER = 1 << 12; // netfilter subsystem
        const NETLINK_IP6_FW = 1 << 13;
        const NETLINK_DNRTMSG = 1 << 14;        // DECnet routing messages (obsolete)
        const NETLINK_KOBJECT_UEVENT = 1 << 15; // Kernel messages to userspace
        const NETLINK_GENERIC = 1 << 16;
        // leave room for const NETLINK_DM (DM Events)
        const NETLINK_SCSITRANSPORT = 1 << 18; // SCSI Transports
        const NETLINK_ECRYPTFS = 1 << 19;
        const NETLINK_RDMA = 1 << 20;
        const NETLINK_CRYPTO = 1 << 21; // Crypto layer
        const NETLINK_SMC = 1 << 22;    // SMC monitoring

        const NONROOT_RECV =
            Self::NETLINK_ROUTE.bits() |
            Self::NETLINK_SOCK_DIAG.bits() |
            Self::NETLINK_SELINUX.bits() |
            Self::NETLINK_AUDIT.bits() |
            Self::NETLINK_CONNECTOR.bits() |
            Self::NETLINK_KOBJECT_UEVENT.bits() |
            Self::NETLINK_GENERIC.bits() |
            Self::NETLINK_RDMA.bits();
    }
}

impl NetlinkFamily {
    pub(crate) const fn from_proto(proto: c_int) -> Option<Self> {
        if proto < 0 || proto >= 32 {
            return None;
        }
        Self::from_bits(1u32 << proto)
    }
}

impl FromStr for NetlinkFamily {
    type Err = Errno;

    fn from_str(value: &str) -> Result<Self, Self::Err> {
        let mut families = NetlinkFamily::empty();
        for family in value.split(',') {
            families |= match family.to_ascii_lowercase().as_str() {
                "all" => Self::all(),
                "route" => Self::NETLINK_ROUTE,
                "usersock" => Self::NETLINK_USERSOCK,
                "firewall" => Self::NETLINK_FIREWALL,
                "inet_diag" | "sock_diag" => Self::NETLINK_SOCK_DIAG,
                "nflog" => Self::NETLINK_NFLOG,
                "xfrm" => Self::NETLINK_XFRM,
                "selinux" => Self::NETLINK_SELINUX,
                "iscsi" => Self::NETLINK_ISCSI,
                "audit" => Self::NETLINK_AUDIT,
                "fib_lookup" => Self::NETLINK_FIB_LOOKUP,
                "connector" => Self::NETLINK_CONNECTOR,
                "netfilter" => Self::NETLINK_NETFILTER,
                "ip6_fw" => Self::NETLINK_IP6_FW,
                "dnrtmsg" => Self::NETLINK_DNRTMSG,
                "kobject_uevent" => Self::NETLINK_KOBJECT_UEVENT,
                "generic" => Self::NETLINK_GENERIC,
                "scsitransport" => Self::NETLINK_SCSITRANSPORT,
                "ecryptfs" => Self::NETLINK_ECRYPTFS,
                "rdma" => Self::NETLINK_RDMA,
                "crypto" => Self::NETLINK_CRYPTO,
                "smc" => Self::NETLINK_SMC,
                _ => return Err(Errno::EINVAL),
            };
        }

        if !families.is_empty() {
            Ok(families)
        } else {
            Err(Errno::ENOENT)
        }
    }
}

impl NetlinkFamily {
    pub(crate) fn max() -> c_int {
        libc::NETLINK_CRYPTO + 1 // NETLINK_SMC
    }
}

/// Represents an IP protocol used in network address filtering.
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub enum IpProto {
    /// Transmission Control Protocol, `IPPROTO_TCP`.
    Tcp,
    /// Multipath TCP, `IPPROTO_MPTCP`.
    Mptcp,
    /// User Datagram Protocol, `IPPROTO_UDP`.
    Udp,
    /// Lightweight User Datagram Protocol, `IPPROTO_UDPLITE`.
    UdpLite,
    /// Stream Control Transmission Protocol, `IPPROTO_SCTP`.
    Sctp,
    /// Datagram Congestion Control Protocol, `IPPROTO_DCCP`.
    Dccp,
    /// Internet Control Message Protocol, `IPPROTO_ICMP`.
    Icmp4,
    /// Internet Control Message Protocol for IPv6, `IPPROTO_ICMPV6`.
    Icmp6,
}

impl IpProto {
    /// Return the protocol name.
    pub const fn name(self) -> &'static str {
        match self {
            Self::Tcp => "tcp",
            Self::Mptcp => "mptcp",
            Self::Udp => "udp",
            Self::UdpLite => "udplite",
            Self::Sctp => "sctp",
            Self::Dccp => "dccp",
            Self::Icmp4 => "icmp4",
            Self::Icmp6 => "icmp6",
        }
    }

    /// Convert a raw `SO_PROTOCOL` value into an `IpProto`.
    ///
    /// Returns None for protocols without a network name.
    pub const fn from_raw(proto: c_int) -> Option<Self> {
        match proto {
            libc::IPPROTO_TCP => Some(Self::Tcp),
            libc::IPPROTO_MPTCP => Some(Self::Mptcp),
            libc::IPPROTO_UDP => Some(Self::Udp),
            libc::IPPROTO_UDPLITE => Some(Self::UdpLite),
            libc::IPPROTO_SCTP => Some(Self::Sctp),
            libc::IPPROTO_DCCP => Some(Self::Dccp),
            libc::IPPROTO_ICMP => Some(Self::Icmp4),
            libc::IPPROTO_ICMPV6 => Some(Self::Icmp6),
            _ => None,
        }
    }

    /// Return true if protocol is port-based.
    pub const fn has_port(self) -> bool {
        !matches!(self, Self::Icmp4 | Self::Icmp6)
    }
}

impl fmt::Display for IpProto {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str(self.name())
    }
}

impl Serialize for IpProto {
    fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
        serializer.serialize_str(self.name())
    }
}

/// Represents a Bluetooth protocol, see socket(2) for AF_BLUETOOTH.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub(crate) enum BtProto {
    /// Logical Link Control and Adaptation Protocol, `BTPROTO_L2CAP`.
    L2cap,
    /// Host Controller Interface, `BTPROTO_HCI`.
    Hci,
    /// Synchronous Connection-Oriented link, `BTPROTO_SCO`.
    Sco,
    /// Radio Frequency Communication, `BTPROTO_RFCOMM`.
    Rfcomm,
    /// Network Encapsulation Protocol, `BTPROTO_BNEP`.
    Bnep,
    /// CAPI Message Transport Protocol, `BTPROTO_CMTP`.
    Cmtp,
    /// Human Interface Device Protocol, `BTPROTO_HIDP`.
    Hidp,
    /// Audio/Video Distribution Transport Protocol, `BTPROTO_AVDTP`.
    Avdtp,
    /// Isochronous Channels, `BTPROTO_ISO`.
    Iso,
}

impl BtProto {
    pub(crate) const fn from_raw(proto: c_int) -> Option<Self> {
        match proto {
            BTPROTO_L2CAP => Some(Self::L2cap),
            BTPROTO_HCI => Some(Self::Hci),
            BTPROTO_SCO => Some(Self::Sco),
            BTPROTO_RFCOMM => Some(Self::Rfcomm),
            BTPROTO_BNEP => Some(Self::Bnep),
            BTPROTO_CMTP => Some(Self::Cmtp),
            BTPROTO_HIDP => Some(Self::Hidp),
            BTPROTO_AVDTP => Some(Self::Avdtp),
            BTPROTO_ISO => Some(Self::Iso),
            _ => None,
        }
    }
}

/// Represents a CAN protocol, see socket(2) for AF_CAN.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub(crate) enum CanProto {
    /// Raw sockets, `CAN_RAW`.
    Raw,
    /// Broadcast Manager, `CAN_BCM`.
    Bcm,
    /// VAG Transport Protocol v1.6, `CAN_TP16`.
    Tp16,
    /// VAG Transport Protocol v2.0, `CAN_TP20`.
    Tp20,
    /// Bosch MCNet, `CAN_MCNET`.
    McNet,
    /// ISO 15765-2 Transport Protocol, `CAN_ISOTP`.
    IsoTp,
    /// SAE J1939, `CAN_J1939`.
    J1939,
}

impl CanProto {
    pub(crate) const fn from_raw(proto: c_int) -> Option<Self> {
        match proto {
            CAN_RAW => Some(Self::Raw),
            CAN_BCM => Some(Self::Bcm),
            CAN_TP16 => Some(Self::Tp16),
            CAN_TP20 => Some(Self::Tp20),
            CAN_MCNET => Some(Self::McNet),
            CAN_ISOTP => Some(Self::IsoTp),
            CAN_J1939 => Some(Self::J1939),
            _ => None,
        }
    }
}

/// Represents an NFC protocol, see socket(2) for AF_NFC.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub(crate) enum NfcProto {
    /// Raw sockets, `NFC_SOCKPROTO_RAW`.
    Raw,
    /// Logical Link Control Protocol, `NFC_SOCKPROTO_LLCP`.
    Llcp,
}

impl NfcProto {
    pub(crate) const fn from_raw(proto: c_int) -> Option<Self> {
        match proto {
            NFC_SOCKPROTO_RAW => Some(Self::Raw),
            NFC_SOCKPROTO_LLCP => Some(Self::Llcp),
            _ => None,
        }
    }
}

/// Represents a PPPoX protocol, see socket(2) for AF_PPPOX.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub(crate) enum PppoxProto {
    /// PPP over Ethernet, `PX_PROTO_OE`.
    Oe,
    /// PPP over L2TP, `PX_PROTO_OL2TP`.
    Ol2tp,
    /// Point-to-Point Tunneling Protocol, `PX_PROTO_PPTP`.
    Pptp,
}

impl PppoxProto {
    pub(crate) const fn from_raw(proto: c_int) -> Option<Self> {
        match proto {
            PX_PROTO_OE => Some(Self::Oe),
            PX_PROTO_OL2TP => Some(Self::Ol2tp),
            PX_PROTO_PPTP => Some(Self::Pptp),
            _ => None,
        }
    }
}

/// Represents a Phonet protocol, see socket(2) for AF_PHONET.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub(crate) enum PhonetProto {
    /// Transport protocol, `PN_PROTO_TRANSPORT`.
    Transport,
    /// Phonet datagram protocol, `PN_PROTO_PHONET`.
    Phonet,
    /// Phonet pipe protocol, `PN_PROTO_PIPE`.
    Pipe,
}

impl PhonetProto {
    pub(crate) const fn from_raw(proto: c_int) -> Option<Self> {
        match proto {
            PN_PROTO_TRANSPORT => Some(Self::Transport),
            PN_PROTO_PHONET => Some(Self::Phonet),
            PN_PROTO_PIPE => Some(Self::Pipe),
            _ => None,
        }
    }
}

/// Represents an SMC protocol, see socket(2) for AF_SMC.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub(crate) enum SmcProto {
    /// SMC protocol over IPv4, `SMCPROTO_SMC`.
    Smc,
    /// SMC protocol over IPv6, `SMCPROTO_SMC6`.
    Smc6,
}

impl SmcProto {
    pub(crate) const fn from_raw(proto: c_int) -> Option<Self> {
        match proto {
            SMCPROTO_SMC => Some(Self::Smc),
            SMCPROTO_SMC6 => Some(Self::Smc6),
            _ => None,
        }
    }
}

/// Represents a socket protocol as returned by `SO_PROTOCOL`.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub(crate) enum SockProto {
    /// Internet protocol, AF_INET and AF_INET6.
    Ip(IpProto),
    /// netlink(7) family, AF_NETLINK.
    Netlink(NetlinkFamily),
    /// Bluetooth protocol, AF_BLUETOOTH.
    Bluetooth(BtProto),
    /// Controller Area Network protocol, AF_CAN.
    Can(CanProto),
    /// NFC protocol, AF_NFC.
    Nfc(NfcProto),
    /// PPPoX protocol, AF_PPPOX.
    Pppox(PppoxProto),
    /// Phonet protocol, AF_PHONET.
    Phonet(PhonetProto),
    /// SMC protocol, AF_SMC.
    Smc(SmcProto),
    /// PF_KEY v2 protocol, AF_KEY.
    Key,
    /// Protocol without a name, with its address family.
    Other(AddressFamily, c_int),
}

impl SockProto {
    pub(crate) const fn from_raw(dom: AddressFamily, proto: c_int) -> Self {
        match dom {
            AddressFamily::Inet | AddressFamily::Inet6 => match IpProto::from_raw(proto) {
                Some(proto) => Self::Ip(proto),
                None => Self::Other(dom, proto),
            },
            AddressFamily::Netlink => match NetlinkFamily::from_proto(proto) {
                Some(family) => Self::Netlink(family),
                None => Self::Other(dom, proto),
            },
            AddressFamily::Bluetooth => match BtProto::from_raw(proto) {
                Some(proto) => Self::Bluetooth(proto),
                None => Self::Other(dom, proto),
            },
            AddressFamily::Can => match CanProto::from_raw(proto) {
                Some(proto) => Self::Can(proto),
                None => Self::Other(dom, proto),
            },
            AddressFamily::Nfc => match NfcProto::from_raw(proto) {
                Some(proto) => Self::Nfc(proto),
                None => Self::Other(dom, proto),
            },
            AddressFamily::Pppox => match PppoxProto::from_raw(proto) {
                Some(proto) => Self::Pppox(proto),
                None => Self::Other(dom, proto),
            },
            AddressFamily::Phonet => match PhonetProto::from_raw(proto) {
                Some(proto) => Self::Phonet(proto),
                None => Self::Other(dom, proto),
            },
            AddressFamily::Smc => match SmcProto::from_raw(proto) {
                Some(proto) => Self::Smc(proto),
                None => Self::Other(dom, proto),
            },
            AddressFamily::Key if proto == PF_KEY_V2 => Self::Key,
            _ => Self::Other(dom, proto),
        }
    }

    pub(crate) const fn ip(self) -> Option<IpProto> {
        match self {
            Self::Ip(proto) => Some(proto),
            _ => None,
        }
    }

    pub(crate) const fn nonroot_recv(self) -> bool {
        match self {
            Self::Netlink(family) => family.intersects(NetlinkFamily::NONROOT_RECV),
            _ => false,
        }
    }
}

// Number of arguments each socketcall(2) subcall accepts, indexed by subcall.
pub(crate) const SOCKETCALL_NARGS: [u8; 21] = [
    0, 3, 3, 3, 2, 3, 3, 3, 4, 4, 4, 6, 6, 2, 5, 5, 3, 3, 4, 5, 4,
];

// socketcall(2) subcall identifiers.
//
// Each variant corresponds to a Linux socketcall(2) subcall number.
// `RecvMmsg64` is a synthetic value (0xFF) used for recvmmsg_time64
// which has no socketcall(2) equivalent.
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
#[repr(u8)]
pub(crate) enum SocketCall {
    Socket = 0x1,
    Bind = 0x2,
    Connect = 0x3,
    Accept = 0x5,
    GetSockName = 0x6,
    GetPeerName = 0x7,
    SocketPair = 0x8,
    Send = 0x9,
    Recv = 0xa,
    SendTo = 0xb,
    RecvFrom = 0xc,
    SetSockOpt = 0xe,
    GetSockOpt = 0xf,
    SendMsg = 0x10,
    RecvMsg = 0x11,
    Accept4 = 0x12,
    RecvMmsg = 0x13,
    SendMmsg = 0x14,
    RecvMmsg64 = 0xFF, // synthetic
}

impl SocketCall {
    pub(crate) fn name(self) -> &'static str {
        SydSys::from(self).name()
    }
}

impl From<SocketCall> for SydSys {
    fn from(call: SocketCall) -> Self {
        match call {
            SocketCall::Socket => SydSys::SysSocket,
            SocketCall::Bind => SydSys::SysBind,
            SocketCall::Connect => SydSys::SysConnect,
            SocketCall::Accept => SydSys::SysAccept,
            SocketCall::GetSockName => SydSys::SysGetsockname,
            SocketCall::GetPeerName => SydSys::SysGetpeername,
            SocketCall::SocketPair => SydSys::SysSocketpair,
            SocketCall::Send => SydSys::SysSend,
            SocketCall::Recv => SydSys::SysRecv,
            SocketCall::SendTo => SydSys::SysSendto,
            SocketCall::RecvFrom => SydSys::SysRecvfrom,
            SocketCall::SetSockOpt => SydSys::SysSetsockopt,
            SocketCall::GetSockOpt => SydSys::SysGetsockopt,
            SocketCall::SendMsg => SydSys::SysSendmsg,
            SocketCall::RecvMsg => SydSys::SysRecvmsg,
            SocketCall::Accept4 => SydSys::SysAccept4,
            SocketCall::RecvMmsg => SydSys::SysRecvmmsg,
            SocketCall::RecvMmsg64 => SydSys::SysRecvmmsgTime64,
            SocketCall::SendMmsg => SydSys::SysSendmmsg,
        }
    }
}

impl fmt::Display for SocketCall {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str(self.name())
    }
}

impl Serialize for SocketCall {
    fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
        serializer.serialize_str(self.name())
    }
}

impl From<SocketCall> for Errno {
    fn from(call: SocketCall) -> Self {
        match call {
            SocketCall::Bind => Self::EADDRNOTAVAIL,
            SocketCall::Connect => Self::ECONNREFUSED,
            SocketCall::SendTo | SocketCall::SendMsg | SocketCall::SendMmsg => Self::ENOTCONN,
            SocketCall::Accept | SocketCall::Accept4 => Self::ECONNABORTED,
            SocketCall::SocketPair => Self::EOPNOTSUPP,
            _ => Self::EACCES,
        }
    }
}

impl TryFrom<u8> for SocketCall {
    type Error = Errno;

    fn try_from(v: u8) -> Result<Self, Errno> {
        match v {
            0x1 => Ok(Self::Socket),
            0x2 => Ok(Self::Bind),
            0x3 => Ok(Self::Connect),
            0x5 => Ok(Self::Accept),
            0x6 => Ok(Self::GetSockName),
            0x7 => Ok(Self::GetPeerName),
            0x8 => Ok(Self::SocketPair),
            0x9 => Ok(Self::Send),
            0xa => Ok(Self::Recv),
            0xb => Ok(Self::SendTo),
            0xc => Ok(Self::RecvFrom),
            0xe => Ok(Self::SetSockOpt),
            0xf => Ok(Self::GetSockOpt),
            0x10 => Ok(Self::SendMsg),
            0x11 => Ok(Self::RecvMsg),
            0x12 => Ok(Self::Accept4),
            0x13 => Ok(Self::RecvMmsg),
            0x14 => Ok(Self::SendMmsg),
            0xFF => Ok(Self::RecvMmsg64),
            _ => Err(Errno::EINVAL),
        }
    }
}

impl LowerHex for SocketCall {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        LowerHex::fmt(&(*self as u8), f)
    }
}

impl UpperHex for SocketCall {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        UpperHex::fmt(&(*self as u8), f)
    }
}

// Returns true if `subcall` is a connect-like operation.
//
// Returns true for connect(2), send(2), sendto(2), sendmsg(2), and sendmmsg(2).
pub(crate) const fn is_outbound_call(subcall: SocketCall) -> bool {
    matches!(
        subcall,
        SocketCall::Connect
            | SocketCall::Send
            | SocketCall::SendTo
            | SocketCall::SendMsg
            | SocketCall::SendMmsg
    )
}

/// Return the appropriate IPv6 loopback address for `addr`.
///
/// Preserves IPv4-mapped semantics for dual-stack sockets.
pub const fn loopback6(addr: Ipv6Addr) -> Ipv6Addr {
    if addr.to_ipv4_mapped().is_some() {
        LOOPBACK_MAPPED
    } else {
        Ipv6Addr::LOCALHOST
    }
}

/// Normalize an IpNet so IPv4-mapped IPv6 networks are stored as V4.
pub fn normalize_ipnet(net: IpNet) -> Result<IpNet, ipnet::PrefixLenError> {
    if let IpNet::V6(v6) = net {
        if let Some(v4) = v6.addr().to_ipv4_mapped() {
            let prefix = v6
                .prefix_len()
                .checked_sub(96)
                .ok_or(ipnet::PrefixLenError)?;
            return Ok(IpNet::from(Ipv4Net::new_assert(v4, prefix)));
        }
    }
    Ok(net)
}

/// Return true if `addr` is 0.0.0.0 (IPv4).
pub fn is_anyaddr(addr: &SockaddrStorage) -> bool {
    addr.as_sockaddr_in()
        .map(|sin| sin.ip() == Ipv4Addr::UNSPECIFIED)
        .unwrap_or(false)
}

/// Return true if `addr` is :: or ::ffff:0.0.0.0 (IPv6).
pub fn is_any6addr(addr: &SockaddrStorage) -> bool {
    addr.as_sockaddr_in6()
        .map(|sin6| sin6.ip().to_canonical().is_unspecified())
        .unwrap_or(false)
}

/// Return true if `addr` has a privileged port (IPv4).
pub fn has_privileged_port_v4(addr: &SockaddrStorage) -> bool {
    addr.as_sockaddr_in()
        .map(|sin| {
            let port = sin.port();
            port != 0 && port < PROC_INFO.ip_unprivileged_port_start
        })
        .unwrap_or(false)
}

/// Return true if `addr` has a privileged port (IPv6).
pub fn has_privileged_port_v6(addr: &SockaddrStorage) -> bool {
    addr.as_sockaddr_in6()
        .map(|sin6| {
            let port = sin6.port();
            port != 0 && port < PROC_INFO.ip_unprivileged_port_start
        })
        .unwrap_or(false)
}

// Rewrite 0.0.0.0 to 127.0.0.1 (IPv4).
//
// If `force` is true, rewrite all addresses.
// Deny connect/sendto to anyaddr with ENETUNREACH.
pub(crate) fn make_loaddr(
    call: SocketCall,
    addr: &mut SockaddrStorage,
    force: bool,
) -> Result<(), Errno> {
    let is_any = is_anyaddr(addr);

    // Deny connect/sendto to anyaddr with ENETUNREACH. This is
    // consistent with FreeBSD's net.inet.ip.connect_inaddr_wild sysctl.
    if is_any && is_outbound_call(call) {
        return Err(Errno::ENETUNREACH);
    }

    if !force && !is_any {
        return Ok(());
    }

    if let Some(sin) = addr.as_sockaddr_in() {
        let port = sin.port();
        *addr = SockaddrStorage::from(SocketAddrV4::new(Ipv4Addr::LOCALHOST, port));
    }

    Ok(())
}

// Rewrite :: to ::1, ::ffff:0.0.0.0 to ::ffff:127.0.0.1 (IPv6).
//
// If `force` is true, rewrite all addresses.
// Deny connect/sendto to anyaddr with ENETUNREACH.
pub(crate) fn make_lo6addr(
    call: SocketCall,
    addr: &mut SockaddrStorage,
    force: bool,
) -> Result<(), Errno> {
    let is_any = is_any6addr(addr);

    // Deny connect/sendto to anyaddr with ENETUNREACH. This is
    // consistent with FreeBSD's net.inet.ip.connect_inaddr_wild sysctl.
    if is_any && is_outbound_call(call) {
        return Err(Errno::ENETUNREACH);
    }

    if !force && !is_any {
        return Ok(());
    }

    if let Some(sin6) = addr.as_sockaddr_in6() {
        let port = sin6.port();
        let flowinfo = sin6.flowinfo();
        let scope_id = sin6.scope_id();
        let loopback = loopback6(sin6.ip());
        *addr = SockaddrStorage::from(SocketAddrV6::new(loopback, port, flowinfo, scope_id));
    }

    Ok(())
}

// Zero sin6_scope_id on addr.
//
// Returns Some((prior_scope_id, ip, port)) if addr was modified, None otherwise.
pub(crate) fn clear_scope6(addr: &mut SockaddrStorage) -> Option<(u32, Ipv6Addr, u16)> {
    let sin6 = addr.as_sockaddr_in6()?;
    let scope_id = sin6.scope_id();
    if scope_id == 0 {
        return None;
    }
    let port = sin6.port();
    let flowinfo = sin6.flowinfo();
    let ip = sin6.ip();
    *addr = SockaddrStorage::from(SocketAddrV6::new(ip, port, flowinfo, 0));
    Some((scope_id, ip, port))
}

// Convert socketcall(2) subcall to its new version system call number.
pub(crate) fn sock2direct(name: &str, arch: ScmpArch) -> Option<i32> {
    Some(match arch {
        ScmpArch::M68k => match name {
            "socket" => 356,
            "socketpair" => 357,
            "bind" => 358,
            "accept4" => 361, // no accept(2) on m68k
            "connect" => 359,
            "getpeername" => 365,
            "getsockname" => 364,
            "getsockopt" => 362,
            "setsockopt" => 363,
            "recvfrom" => 368,
            "recvmsg" => 369,
            "recvmmsg" => 371,
            "recvmmsg_time64" => 417,
            "sendto" => 366,
            "sendmsg" => 367,
            "sendmmsg" => 372,
            _ => return None,
        },
        ScmpArch::Mips | ScmpArch::Mipsel => match name {
            "socket" => 183,
            "socketpair" => 184,
            "bind" => 169,
            "accept" => 168,
            "accept4" => 334,
            "connect" => 170,
            "getpeername" => 171,
            "getsockname" => 172,
            "getsockopt" => 173,
            "setsockopt" => 181,
            "recvfrom" => 176,
            "recvmsg" => 177,
            "recvmmsg" => 335,
            "recvmmsg_time64" => 417,
            "sendto" => 180,
            "sendmsg" => 179,
            "sendmmsg" => 343,
            _ => return None,
        },
        ScmpArch::Ppc | ScmpArch::Ppc64 | ScmpArch::Ppc64Le => match name {
            "socket" => 326,
            "socketpair" => 333,
            "bind" => 327,
            "accept" => 330,
            "accept4" => 344,
            "connect" => 328,
            "getpeername" => 332,
            "getsockname" => 331,
            "getsockopt" => 340,
            "setsockopt" => 339,
            "recvfrom" => 337,
            "recvmsg" => 342,
            "recvmmsg" => 343,
            "recvmmsg_time64" => 417,
            "sendto" => 335,
            "sendmsg" => 341,
            "sendmmsg" => 349,
            _ => return None,
        },
        ScmpArch::S390X | ScmpArch::S390 => match name {
            "socket" => 359,
            "socketpair" => 360,
            "bind" => 361,
            "accept4" => 364, // no accept(2) on s390x
            "connect" => 362,
            "getpeername" => 368,
            "getsockname" => 367,
            "getsockopt" => 365,
            "setsockopt" => 366,
            "recvfrom" => 371,
            "recvmsg" => 372,
            "recvmmsg" => 357,
            "sendto" => 369,
            "sendmsg" => 370,
            "sendmmsg" => 358,
            _ => return None,
        },
        ScmpArch::X86 => match name {
            "socket" => 359,
            "socketpair" => 360,
            "bind" => 361,
            "accept4" => 364, // no accept(2) on x86
            "connect" => 362,
            "getpeername" => 368,
            "getsockname" => 367,
            "getsockopt" => 365,
            "setsockopt" => 366,
            "recvfrom" => 371,
            "recvmsg" => 372,
            "recvmmsg" => 337,
            "recvmmsg_time64" => 417,
            "sendto" => 369,
            "sendmsg" => 370,
            "sendmmsg" => 345,
            _ => return None,
        },
        _ => return None,
    })
}

pub(crate) struct SockInfo {
    fd: SafeOwnedFd,
    dom: Option<AddressFamily>,
    proto: Option<SockProto>,
    stype: Option<SockType>,
    trunc_discard: Option<bool>,
}

impl SockInfo {
    pub(crate) fn new(fd: SafeOwnedFd) -> Self {
        Self {
            fd,
            dom: None,
            proto: None,
            stype: None,
            trunc_discard: None,
        }
    }

    pub(crate) fn into_fd(self) -> SafeOwnedFd {
        self.fd
    }

    pub(crate) fn fd(&self) -> &SafeOwnedFd {
        &self.fd
    }

    pub(crate) fn get_dom(&mut self) -> Result<AddressFamily, Errno> {
        match self.dom {
            Some(dom) => Ok(dom),
            None => {
                let dom = safe_getsockdomain(&self.fd)?;
                self.dom = Some(dom);
                Ok(dom)
            }
        }
    }

    pub(crate) fn get_ipproto(&mut self) -> Result<Option<IpProto>, Errno> {
        Ok(self.get_sockproto()?.ip())
    }

    pub(crate) fn get_sockproto(&mut self) -> Result<SockProto, Errno> {
        match self.proto {
            Some(proto) => Ok(proto),
            None => {
                let dom = self.get_dom()?;
                let proto = safe_getsockproto(&self.fd, dom)?;
                self.proto = Some(proto);
                Ok(proto)
            }
        }
    }

    pub(crate) fn get_stype(&mut self) -> Result<SockType, Errno> {
        match self.stype {
            Some(stype) => Ok(stype),
            None => {
                let stype = safe_getsocktype(&self.fd)?;
                self.stype = Some(stype);
                Ok(stype)
            }
        }
    }

    pub(crate) fn get_trunc_discard(&mut self) -> Result<bool, Errno> {
        match self.trunc_discard {
            Some(discard) => Ok(discard),
            None => {
                // Linux discards bytes with MSG_TRUNC for TCP and MPTCP.
                let discard = match self.get_ipproto()? {
                    Some(IpProto::Mptcp) => true,
                    Some(IpProto::Tcp) => match safe_getsocktcpulp(&self.fd)? {
                        None => true,
                        Some(name) if name.starts_with(b"tls\0") => !safe_getsocktlsrx(&self.fd)?,
                        Some(_) => false,
                    },
                    _ => false,
                };
                self.trunc_discard = Some(discard);
                Ok(discard)
            }
        }
    }

    pub(crate) fn get_send_errno(&mut self) -> Result<Errno, Errno> {
        if self.get_dom()? != AddressFamily::Inet6 {
            return Ok(Errno::EAFNOSUPPORT);
        }

        Ok(match (self.get_stype()?, self.get_ipproto()?) {
            (SockType::Raw, _) | (SockType::Datagram, Some(IpProto::Icmp6)) => Errno::EAFNOSUPPORT,
            _ => Errno::EINVAL,
        })
    }

    pub(crate) fn get_send_sigpipe(&mut self) -> Result<bool, Errno> {
        Ok(self.get_dom()? != AddressFamily::Unix || self.get_stype()? == SockType::Stream)
    }

    pub(crate) fn get_stream_send(&mut self) -> Result<bool, Errno> {
        if self.get_stype()? != SockType::Stream {
            return Ok(false);
        }

        Ok(match self.get_dom()? {
            AddressFamily::Unix => true,
            AddressFamily::Inet | AddressFamily::Inet6 => {
                matches!(self.get_ipproto()?, Some(IpProto::Tcp | IpProto::Mptcp))
            }
            _ => false,
        })
    }

    pub(crate) fn check_send_len(&mut self, len: usize) -> Result<(), Errno> {
        if len.min(*MAX_RW_COUNT) <= PROC_INFO.sndbuf_max {
            return Ok(());
        }

        if self.get_dom()? == AddressFamily::Alg || self.get_stream_send()? {
            return Ok(());
        }

        Err(Errno::EMSGSIZE)
    }
}

impl AsFd for SockInfo {
    fn as_fd(&self) -> BorrowedFd<'_> {
        self.fd.as_fd()
    }
}

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

    fn v4(ip: Ipv4Addr, port: u16) -> SockaddrStorage {
        SockaddrStorage::from(SocketAddrV4::new(ip, port))
    }

    fn v6(ip: Ipv6Addr, port: u16) -> SockaddrStorage {
        SockaddrStorage::from(SocketAddrV6::new(ip, port, 0, 0))
    }

    #[test]
    fn test_ip_proto_1() {
        assert_eq!(IpProto::from_raw(libc::IPPROTO_TCP), Some(IpProto::Tcp));
    }

    #[test]
    fn test_ip_proto_2() {
        assert_eq!(IpProto::from_raw(libc::IPPROTO_UDP), Some(IpProto::Udp));
    }

    #[test]
    fn test_ip_proto_3() {
        assert_eq!(IpProto::from_raw(0), None);
        assert_eq!(IpProto::from_raw(libc::IPPROTO_RAW), None);
        assert_eq!(IpProto::from_raw(-1), None);
    }

    #[test]
    fn test_ip_proto_4() {
        assert_eq!(IpProto::Tcp.name(), "tcp");
        assert_eq!(IpProto::Mptcp.name(), "mptcp");
        assert_eq!(IpProto::Udp.name(), "udp");
        assert_eq!(IpProto::UdpLite.name(), "udplite");
        assert_eq!(IpProto::Sctp.name(), "sctp");
        assert_eq!(IpProto::Dccp.name(), "dccp");
        assert_eq!(IpProto::Icmp4.name(), "icmp4");
        assert_eq!(IpProto::Icmp6.name(), "icmp6");
    }

    #[test]
    fn test_ip_proto_5() {
        assert_eq!(IpProto::from_raw(libc::IPPROTO_MPTCP), Some(IpProto::Mptcp));
        assert_eq!(
            IpProto::from_raw(libc::IPPROTO_UDPLITE),
            Some(IpProto::UdpLite)
        );
        assert_eq!(IpProto::from_raw(libc::IPPROTO_SCTP), Some(IpProto::Sctp));
        assert_eq!(IpProto::from_raw(libc::IPPROTO_DCCP), Some(IpProto::Dccp));
        assert_eq!(IpProto::from_raw(libc::IPPROTO_ICMP), Some(IpProto::Icmp4));
        assert_eq!(
            IpProto::from_raw(libc::IPPROTO_ICMPV6),
            Some(IpProto::Icmp6)
        );
    }

    #[test]
    fn test_loopback6_1() {
        assert_eq!(loopback6(Ipv6Addr::UNSPECIFIED), Ipv6Addr::LOCALHOST);
    }

    #[test]
    fn test_loopback6_2() {
        let addr = "2001:db8::1".parse::<Ipv6Addr>().unwrap();
        assert_eq!(loopback6(addr), Ipv6Addr::LOCALHOST);
    }

    #[test]
    fn test_loopback6_3() {
        assert_eq!(loopback6(Ipv6Addr::LOCALHOST), Ipv6Addr::LOCALHOST);
    }

    #[test]
    fn test_loopback6_4() {
        let mapped = "::ffff:0.0.0.0".parse::<Ipv6Addr>().unwrap();
        assert_eq!(loopback6(mapped), LOOPBACK_MAPPED);
    }

    #[test]
    fn test_loopback6_5() {
        let mapped = "::ffff:10.0.0.1".parse::<Ipv6Addr>().unwrap();
        assert_eq!(loopback6(mapped), LOOPBACK_MAPPED);
    }

    #[test]
    fn test_loopback6_6() {
        assert_eq!(loopback6(LOOPBACK_MAPPED), LOOPBACK_MAPPED);
    }

    #[test]
    fn test_is_anyaddr_1() {
        assert!(is_anyaddr(&v4(Ipv4Addr::UNSPECIFIED, 0)));
        assert!(is_anyaddr(&v4(Ipv4Addr::UNSPECIFIED, 8080)));
    }

    #[test]
    fn test_is_anyaddr_2() {
        assert!(!is_anyaddr(&v4(Ipv4Addr::LOCALHOST, 0)));
    }

    #[test]
    fn test_is_anyaddr_3() {
        assert!(!is_anyaddr(&v4(Ipv4Addr::new(192, 168, 1, 1), 443)));
    }

    #[test]
    fn test_is_anyaddr_4() {
        assert!(!is_anyaddr(&v6(Ipv6Addr::UNSPECIFIED, 0)));
    }

    #[test]
    fn test_is_any6addr_1() {
        assert!(is_any6addr(&v6(Ipv6Addr::UNSPECIFIED, 0)));
        assert!(is_any6addr(&v6(Ipv6Addr::UNSPECIFIED, 8080)));
    }

    #[test]
    fn test_is_any6addr_2() {
        let mapped = "::ffff:0.0.0.0".parse::<Ipv6Addr>().unwrap();
        assert!(is_any6addr(&v6(mapped, 0)));
        assert!(is_any6addr(&v6(mapped, 4244)));
    }

    #[test]
    fn test_is_any6addr_3() {
        let mapped_lo = "::ffff:127.0.0.1".parse::<Ipv6Addr>().unwrap();
        assert!(!is_any6addr(&v6(mapped_lo, 0)));
    }

    #[test]
    fn test_is_any6addr_4() {
        assert!(!is_any6addr(&v6(Ipv6Addr::LOCALHOST, 0)));
    }

    #[test]
    fn test_is_any6addr_5() {
        let addr = "2001:db8::1".parse::<Ipv6Addr>().unwrap();
        assert!(!is_any6addr(&v6(addr, 443)));
    }

    #[test]
    fn test_is_any6addr_6() {
        assert!(!is_any6addr(&v4(Ipv4Addr::UNSPECIFIED, 0)));
    }

    #[test]
    fn test_privileged_port_v4_1() {
        let start = PROC_INFO.ip_unprivileged_port_start;
        if start > 1 {
            assert!(has_privileged_port_v4(&v4(Ipv4Addr::LOCALHOST, 1)));
            assert!(has_privileged_port_v4(&v4(Ipv4Addr::LOCALHOST, start - 1)));
        }
    }

    #[test]
    fn test_privileged_port_v4_2() {
        let start = PROC_INFO.ip_unprivileged_port_start;
        assert!(!has_privileged_port_v4(&v4(Ipv4Addr::LOCALHOST, 0)));
        assert!(!has_privileged_port_v4(&v4(Ipv4Addr::LOCALHOST, start)));
        assert!(!has_privileged_port_v4(&v4(Ipv4Addr::LOCALHOST, 65535)));
    }

    #[test]
    fn test_privileged_port_v4_3() {
        assert!(!has_privileged_port_v4(&v6(Ipv6Addr::LOCALHOST, 80)));
    }

    #[test]
    fn test_privileged_port_v6_1() {
        let start = PROC_INFO.ip_unprivileged_port_start;
        if start > 1 {
            assert!(has_privileged_port_v6(&v6(Ipv6Addr::LOCALHOST, 1)));
            assert!(has_privileged_port_v6(&v6(Ipv6Addr::LOCALHOST, start - 1)));
        }
    }

    #[test]
    fn test_privileged_port_v6_2() {
        let start = PROC_INFO.ip_unprivileged_port_start;
        assert!(!has_privileged_port_v6(&v6(Ipv6Addr::LOCALHOST, 0)));
        assert!(!has_privileged_port_v6(&v6(Ipv6Addr::LOCALHOST, start)));
        assert!(!has_privileged_port_v6(&v6(Ipv6Addr::LOCALHOST, 65535)));
    }

    #[test]
    fn test_privileged_port_v6_3() {
        assert!(!has_privileged_port_v6(&v4(Ipv4Addr::LOCALHOST, 80)));
    }

    #[test]
    fn test_make_loaddr_1() {
        let mut addr = v4(Ipv4Addr::UNSPECIFIED, 8080);
        assert!(make_loaddr(SocketCall::Bind, &mut addr, false).is_ok());
        assert_eq!(addr.as_sockaddr_in().unwrap().ip(), Ipv4Addr::LOCALHOST);
    }

    #[test]
    fn test_make_loaddr_2() {
        let mut addr = v4(Ipv4Addr::UNSPECIFIED, 8080);
        assert_eq!(
            make_loaddr(SocketCall::Connect, &mut addr, false),
            Err(Errno::ENETUNREACH)
        );
    }

    #[test]
    fn test_make_loaddr_3() {
        let mut addr = v4(Ipv4Addr::new(10, 0, 0, 1), 8080);
        assert!(make_loaddr(SocketCall::Connect, &mut addr, false).is_ok());
        assert_eq!(
            addr.as_sockaddr_in().unwrap().ip(),
            Ipv4Addr::new(10, 0, 0, 1)
        );
    }

    #[test]
    fn test_make_loaddr_4() {
        let mut addr = v4(Ipv4Addr::new(10, 0, 0, 1), 8080);
        assert!(make_loaddr(SocketCall::Connect, &mut addr, true).is_ok());
        assert_eq!(addr.as_sockaddr_in().unwrap().ip(), Ipv4Addr::LOCALHOST);
    }

    #[test]
    fn test_make_lo6addr_1() {
        let mut addr = v6(Ipv6Addr::UNSPECIFIED, 8080);
        assert!(make_lo6addr(SocketCall::Bind, &mut addr, false).is_ok());
        assert_eq!(addr.as_sockaddr_in6().unwrap().ip(), Ipv6Addr::LOCALHOST);
    }

    #[test]
    fn test_make_lo6addr_2() {
        let mut addr = v6(Ipv6Addr::UNSPECIFIED, 8080);
        assert_eq!(
            make_lo6addr(SocketCall::Connect, &mut addr, false),
            Err(Errno::ENETUNREACH)
        );
    }

    #[test]
    fn test_make_lo6addr_3() {
        let mapped = "::ffff:0.0.0.0".parse::<Ipv6Addr>().unwrap();
        let mut addr = v6(mapped, 8080);
        assert_eq!(
            make_lo6addr(SocketCall::Connect, &mut addr, false),
            Err(Errno::ENETUNREACH)
        );
    }

    #[test]
    fn test_make_lo6addr_4() {
        let mapped = "::ffff:0.0.0.0".parse::<Ipv6Addr>().unwrap();
        let mut addr = v6(mapped, 8080);
        assert!(make_lo6addr(SocketCall::Bind, &mut addr, false).is_ok());
        assert_eq!(addr.as_sockaddr_in6().unwrap().ip(), LOOPBACK_MAPPED);
    }

    #[test]
    fn test_make_lo6addr_5() {
        let mapped = "::ffff:0.0.0.0".parse::<Ipv6Addr>().unwrap();
        let mut addr = v6(mapped, 8080);
        assert_eq!(
            make_lo6addr(SocketCall::SendTo, &mut addr, false),
            Err(Errno::ENETUNREACH)
        );
    }

    #[test]
    fn test_make_lo6addr_6() {
        let mapped = "::ffff:0.0.0.0".parse::<Ipv6Addr>().unwrap();
        let mut addr = v6(mapped, 8080);
        assert_eq!(
            make_lo6addr(SocketCall::SendMsg, &mut addr, false),
            Err(Errno::ENETUNREACH)
        );
    }

    #[test]
    fn test_make_lo6addr_7() {
        let mapped_lo = "::ffff:127.0.0.1".parse::<Ipv6Addr>().unwrap();
        let mut addr = v6(mapped_lo, 8080);
        assert!(make_lo6addr(SocketCall::Connect, &mut addr, false).is_ok());
        assert_eq!(addr.as_sockaddr_in6().unwrap().ip(), mapped_lo);
    }

    #[test]
    fn test_make_lo6addr_8() {
        let mut addr = v6(Ipv6Addr::LOCALHOST, 8080);
        assert!(make_lo6addr(SocketCall::Connect, &mut addr, false).is_ok());
        assert_eq!(addr.as_sockaddr_in6().unwrap().ip(), Ipv6Addr::LOCALHOST);
    }

    #[test]
    fn test_make_lo6addr_9() {
        let normal = "2001:db8::1".parse::<Ipv6Addr>().unwrap();
        let mut addr = v6(normal, 8080);
        assert!(make_lo6addr(SocketCall::Connect, &mut addr, true).is_ok());
        assert_eq!(addr.as_sockaddr_in6().unwrap().ip(), Ipv6Addr::LOCALHOST);
    }

    #[test]
    fn test_make_lo6addr_10() {
        let mapped_normal = "::ffff:10.0.0.1".parse::<Ipv6Addr>().unwrap();
        let mut addr = v6(mapped_normal, 8080);
        assert!(make_lo6addr(SocketCall::Connect, &mut addr, true).is_ok());
        assert_eq!(addr.as_sockaddr_in6().unwrap().ip(), LOOPBACK_MAPPED);
    }

    #[test]
    fn test_make_lo6addr_11() {
        let mut addr = v6(Ipv6Addr::UNSPECIFIED, 443);
        assert!(make_lo6addr(SocketCall::Bind, &mut addr, false).is_ok());
        assert_eq!(addr.as_sockaddr_in6().unwrap().ip(), Ipv6Addr::LOCALHOST);
    }

    #[test]
    fn test_normalize_ipnet_1() {
        let net: IpNet = "127.0.0.1/32".parse().unwrap();
        assert!(matches!(normalize_ipnet(net).unwrap(), IpNet::V4(_)));
    }

    #[test]
    fn test_normalize_ipnet_2() {
        let net: IpNet = "::1/128".parse().unwrap();
        assert!(matches!(normalize_ipnet(net).unwrap(), IpNet::V6(_)));
    }

    #[test]
    fn test_normalize_ipnet_3() {
        let net: IpNet = "::ffff:127.0.0.1/128".parse().unwrap();
        let norm = normalize_ipnet(net).unwrap();
        assert!(matches!(norm, IpNet::V4(_)), "not normalized: {norm}");
        assert_eq!(norm.to_string(), "127.0.0.1/32");
    }

    #[test]
    fn test_normalize_ipnet_4() {
        let net: IpNet = "::ffff:0.0.0.0/128".parse().unwrap();
        let norm = normalize_ipnet(net).unwrap();
        assert!(matches!(norm, IpNet::V4(_)), "not normalized: {norm}");
        assert_eq!(norm.to_string(), "0.0.0.0/32");
    }

    #[test]
    fn test_normalize_ipnet_5() {
        let net: IpNet = "::ffff:10.0.0.0/104".parse().unwrap();
        let norm = normalize_ipnet(net).unwrap();
        assert!(matches!(norm, IpNet::V4(_)), "not normalized: {norm}");
        assert_eq!(norm.to_string(), "10.0.0.0/8");
    }

    #[test]
    fn test_normalize_ipnet_6() {
        let net: IpNet = "::ffff:0.0.0.0/96".parse().unwrap();
        let norm = normalize_ipnet(net).unwrap();
        assert!(matches!(norm, IpNet::V4(_)), "not normalized: {norm}");
        assert_eq!(norm.to_string(), "0.0.0.0/0");
    }

    #[test]
    fn test_normalize_ipnet_7() {
        let net: IpNet = "2001:db8::/32".parse().unwrap();
        assert!(matches!(normalize_ipnet(net).unwrap(), IpNet::V6(_)));
    }

    #[test]
    fn test_normalize_ipnet_8() {
        let net: IpNet = "::ffff:10.0.0.0/64".parse().unwrap();
        assert!(normalize_ipnet(net).is_err());
    }

    #[test]
    fn test_normalize_ipnet_9() {
        let net: IpNet = "::ffff:0.0.0.0/95".parse().unwrap();
        assert!(normalize_ipnet(net).is_err());
    }

    #[test]
    fn test_clear_scope6_1() {
        let mut addr = SockaddrStorage::from(SocketAddrV4::new(Ipv4Addr::LOCALHOST, 4242));
        let prev = addr;
        assert_eq!(clear_scope6(&mut addr), None);
        assert_eq!(addr, prev);
    }

    #[test]
    fn test_clear_scope6_2() {
        let mut addr = SockaddrStorage::from(SocketAddrV6::new(Ipv6Addr::LOCALHOST, 4242, 0, 0));
        let prev = addr;
        assert_eq!(clear_scope6(&mut addr), None);
        assert_eq!(addr, prev);
    }

    #[test]
    fn test_clear_scope6_3() {
        let lla = "fe80::1".parse::<Ipv6Addr>().unwrap();
        let mut addr = SockaddrStorage::from(SocketAddrV6::new(lla, 4242, 0, 1));
        assert_eq!(clear_scope6(&mut addr), Some((1, lla, 4242)));
        assert_eq!(addr.as_sockaddr_in6().unwrap().scope_id(), 0);
    }

    #[test]
    fn test_clear_scope6_4() {
        let lla = "fe80::1".parse::<Ipv6Addr>().unwrap();
        let mut addr = SockaddrStorage::from(SocketAddrV6::new(lla, 4242, 0, u32::MAX));
        assert_eq!(clear_scope6(&mut addr), Some((u32::MAX, lla, 4242)));
        assert_eq!(addr.as_sockaddr_in6().unwrap().scope_id(), 0);
    }

    #[test]
    fn test_clear_scope6_5() {
        let lla = "fe80::beef".parse::<Ipv6Addr>().unwrap();
        let mut addr = SockaddrStorage::from(SocketAddrV6::new(lla, 4242, 0xCAFE, 7));
        assert_eq!(clear_scope6(&mut addr), Some((7, lla, 4242)));
        let sin6 = addr.as_sockaddr_in6().unwrap();
        assert_eq!(sin6.ip(), lla);
        assert_eq!(sin6.port(), 4242);
        assert_eq!(sin6.flowinfo(), 0xCAFE);
        assert_eq!(sin6.scope_id(), 0);
    }

    #[test]
    fn test_clear_scope6_6() {
        let mcast = "ff02::1".parse::<Ipv6Addr>().unwrap();
        let mut addr = SockaddrStorage::from(SocketAddrV6::new(mcast, 4242, 0, 2));
        assert_eq!(clear_scope6(&mut addr), Some((2, mcast, 4242)));
        assert_eq!(addr.as_sockaddr_in6().unwrap().scope_id(), 0);
    }

    #[test]
    fn test_clear_scope6_7() {
        let mut addr = SockaddrStorage::from(SocketAddrV6::new(Ipv6Addr::LOCALHOST, 4242, 0, 3));
        assert_eq!(
            clear_scope6(&mut addr),
            Some((3, Ipv6Addr::LOCALHOST, 4242))
        );
        assert_eq!(addr.as_sockaddr_in6().unwrap().scope_id(), 0);
    }

    #[test]
    fn test_clear_scope6_8() {
        let mut addr = SockaddrStorage::from(SocketAddrV6::new(Ipv6Addr::UNSPECIFIED, 0, 0, 0));
        let prev = addr;
        assert_eq!(clear_scope6(&mut addr), None);
        assert_eq!(addr, prev);
    }

    #[test]
    fn test_clear_scope6_9() {
        let mut addr = SockaddrStorage::from(SocketAddrV6::new(Ipv6Addr::UNSPECIFIED, 0, 0, 5));
        assert_eq!(clear_scope6(&mut addr), Some((5, Ipv6Addr::UNSPECIFIED, 0)));
        assert_eq!(addr.as_sockaddr_in6().unwrap().scope_id(), 0);
    }
}