tappers 0.4.2

Cross-platform TUN, TAP and vETH interfaces
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
// SPDX-License-Identifier: MIT OR Apache-2.0
//
// Copyright (c) 2024 Nathaniel Bennett <me[at]nathanielbennett[dotcom]>
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

#![allow(unused)]

use std::ffi::{CStr, CString};
use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
use std::{io, iter, mem, ptr};

use crate::RawFd;
use crate::{libc_extra::*, MacAddr};

#[derive(Clone, Copy, Debug)]
#[repr(u8)]
pub enum AddressFamily {
    V4 = 0x02,
    V6 = 0x0A,
}

pub struct RtNetlink {
    fd: RawFd,
    seq: u32,
}

impl RtNetlink {
    pub fn new() -> io::Result<Self> {
        let fd = unsafe { libc::socket(libc::AF_NETLINK, libc::SOCK_RAW, libc::NETLINK_ROUTE) };
        if fd < 0 {
            return Err(io::Error::last_os_error());
        }

        Ok(Self { fd, seq: 1 })
    }
}

#[derive(Clone, Copy, Debug)]
pub struct NlParseError {
    error: &'static str,
}

impl NlParseError {
    fn new(error: &'static str) -> Self {
        Self { error }
    }

    pub fn error(&self) -> &'static str {
        self.error
    }
}

impl From<NlParseError> for io::Error {
    #[inline]
    fn from(value: NlParseError) -> Self {
        io::Error::new(io::ErrorKind::InvalidData, value.error())
    }
}

// =============================================================================
//                          Netlink Request Messages
// =============================================================================

#[derive(Clone, Debug)]
pub struct NetlinkRequest {
    pub flags: u16,
    pub seq: u32,
    pub pid: u32,
    pub payload: NlmsgPayload,
}

impl NetlinkRequest {
    pub fn serialize(&self) -> Vec<u8> {
        const HDR_LEN: usize = mem::size_of::<libc::nlmsghdr>();

        // First, reserve space for the Netlink header...
        let mut v = vec![0; NLMSG_ALIGN(HDR_LEN)];

        // ...then write payload bytes...
        self.payload.serialize(&mut v);

        // ...finally, measure the total message length and write the header.
        let header = libc::nlmsghdr {
            nlmsg_len: v.len() as u32,
            nlmsg_type: match &self.payload {
                NlmsgPayload::NewAddress(_) => libc::RTM_NEWADDR,
                NlmsgPayload::GetAddress(_) => libc::RTM_GETADDR,
                NlmsgPayload::DeleteAddress(_) => libc::RTM_DELADDR,
                NlmsgPayload::NewRoute(_) => libc::RTM_NEWROUTE,
                NlmsgPayload::DeleteRoute(_) => libc::RTM_DELROUTE,
                NlmsgPayload::NewNeighbor(_) => libc::RTM_NEWNEIGH,
                NlmsgPayload::DeleteNeighbor(_) => libc::RTM_DELNEIGH,
            },
            nlmsg_flags: self.flags,
            nlmsg_seq: self.seq,
            nlmsg_pid: self.pid,
        };

        unsafe {
            ptr::copy_nonoverlapping(
                ptr::addr_of!(header) as *const u8,
                v.as_mut_ptr(),
                mem::size_of_val(&header),
            );
        }

        v
    }
}

#[derive(Clone, Debug)]
#[non_exhaustive]
pub enum NlmsgPayload {
    /// An `RTM_NEWADDR` request.
    NewAddress(NlmsgNewAddress),
    /// An `RTM_GETADDR` request.
    GetAddress(NlmsgGetAddress),
    /// An `RTM_DELADDR` request.
    DeleteAddress(NlmsgDeleteAddress),
    /// An `RTM_NEWROUTE` request.
    NewRoute(NlmsgNewRoute),
    /// An `RTM_DELROUTE` request.
    DeleteRoute(NlmsgDeleteRoute),
    /// An `RTM_NEWNEIGH` request.
    NewNeighbor(NlmsgNewNeighbor),
    /// An `RTM_DELNEIGH` request.
    DeleteNeighbor(NlmsgDeleteNeighbor),
}

impl NlmsgPayload {
    #[inline]
    fn serialize(&self, buf: &mut Vec<u8>) {
        match self {
            NlmsgPayload::NewAddress(nlmsg_new_address) => nlmsg_new_address.serialize(buf),
            NlmsgPayload::GetAddress(nlmsg_get_address) => nlmsg_get_address.serialize(buf),
            NlmsgPayload::DeleteAddress(nlmsg_delete_address) => {
                nlmsg_delete_address.serialize(buf)
            }
            NlmsgPayload::NewRoute(nlmsg_new_route) => nlmsg_new_route.serialize(buf),
            NlmsgPayload::DeleteRoute(nlmsg_delete_route) => nlmsg_delete_route.serialize(buf),
            NlmsgPayload::NewNeighbor(nlmsg_new_neighbor) => nlmsg_new_neighbor.serialize(buf),
            NlmsgPayload::DeleteNeighbor(nlmsg_delete_neighbor) => {
                nlmsg_delete_neighbor.serialize(buf)
            }
        }
    }
}

#[derive(Clone, Debug)]
pub struct NlmsgNewAddress {
    pub family: u8,
    pub prefix_length: u8,
    pub flags: u8,
    pub scope: u8,
    pub iface_idx: u32,
    pub attrs: Vec<AddressAttr>,
}

impl NlmsgNewAddress {
    fn serialize(&self, buf: &mut Vec<u8>) {
        const ADDRMSG_LEN: usize = mem::size_of::<ifaddrmsg>();
        const ADDRMSG_PADDING: usize = NLMSG_ALIGN(ADDRMSG_LEN) - ADDRMSG_LEN;

        let addrmsg = ifaddrmsg {
            ifa_family: self.family,
            ifa_prefixlen: self.prefix_length,
            ifa_flags: self.flags,
            ifa_scope: self.scope,
            ifa_index: self.iface_idx,
        };

        let addrmsg_bytes: [u8; ADDRMSG_LEN] = unsafe { mem::transmute(addrmsg) };
        buf.extend(&addrmsg_bytes);
        buf.extend(&[0u8; ADDRMSG_PADDING]);

        for attr in self.attrs.iter() {
            attr.serialize(buf);
        }
    }
}

#[derive(Clone, Debug)]
pub struct NlmsgGetAddress {
    pub family: u8,
    pub prefix_length: u8,
    pub flags: u8,
    pub scope: u8,
    pub iface_idx: u32,
}

impl NlmsgGetAddress {
    fn serialize(&self, buf: &mut Vec<u8>) {
        const ADDRMSG_LEN: usize = mem::size_of::<ifaddrmsg>();
        const ADDRMSG_PADDING: usize = NLMSG_ALIGN(ADDRMSG_LEN) - ADDRMSG_LEN;

        let addrmsg = ifaddrmsg {
            ifa_family: self.family,
            ifa_prefixlen: self.prefix_length,
            ifa_flags: self.flags,
            ifa_scope: self.scope,
            ifa_index: self.iface_idx,
        };

        let addrmsg_bytes: [u8; ADDRMSG_LEN] = unsafe { mem::transmute(addrmsg) };
        buf.extend(&addrmsg_bytes);
        buf.extend(&[0u8; ADDRMSG_PADDING]);
    }
}

#[derive(Clone, Debug)]
pub struct NlmsgDeleteAddress {
    pub family: u8,
    pub prefix_length: u8,
    pub flags: u8,
    pub scope: u8,
    pub iface_idx: u32,
    pub attrs: Vec<AddressAttr>,
}

impl NlmsgDeleteAddress {
    fn serialize(&self, buf: &mut Vec<u8>) {
        const ADDRMSG_LEN: usize = mem::size_of::<ifaddrmsg>();
        const ADDRMSG_PADDING: usize = NLMSG_ALIGN(ADDRMSG_LEN) - ADDRMSG_LEN;

        let addrmsg = ifaddrmsg {
            ifa_family: self.family,
            ifa_prefixlen: self.prefix_length,
            ifa_flags: self.flags,
            ifa_scope: self.scope,
            ifa_index: self.iface_idx,
        };

        let addrmsg_bytes: [u8; ADDRMSG_LEN] = unsafe { mem::transmute(addrmsg) };
        buf.extend(&addrmsg_bytes);
        buf.extend(&[0u8; ADDRMSG_PADDING]);

        for attr in self.attrs.iter() {
            attr.serialize(buf);
        }
    }
}

#[derive(Clone, Debug)]
pub enum AddressAttr {
    /// IFA_ADDRESS - a peer-to-peer destination address
    Address(IpAddr),
    /// IFA_LOCAL - the address of the interface
    Local(IpAddr),
    /// IFA_LOCAL - the interface name
    Label(CString),
    /// IFA_BROADCAST - the broadcast address of the interface
    Broadcast(IpAddr),
    /// IFA_ANYCAST - the anycast address of the interface
    Anycast(IpAddr),
    CacheInfo(AddrCacheInfo),
    /// IFA_UNSPEC - an unspecified RT attribute
    Unspecified(Vec<u8>),
    /// Some other unknown RT attribute
    Unknown(u16, Vec<u8>),
}

impl AddressAttr {
    fn serialize(&self, buf: &mut Vec<u8>) {
        match self {
            AddressAttr::Address(ip_addr) => {
                let rta_type = libc::IFA_ADDRESS;
                match *ip_addr {
                    IpAddr::V4(ipv4_addr) => {
                        let rta_len = 8u16;
                        buf.extend(rta_len.to_ne_bytes());
                        buf.extend(rta_type.to_ne_bytes());
                        buf.extend(u32::from(ipv4_addr).to_be_bytes());
                        let padded_len = NLMSG_ALIGN(rta_len as usize) - rta_len as usize;
                        buf.extend(iter::repeat(0).take(padded_len));
                    }
                    IpAddr::V6(ipv6_addr) => {
                        let rta_len = 20u16;
                        buf.extend(rta_len.to_ne_bytes());
                        buf.extend(rta_type.to_ne_bytes());
                        buf.extend(u128::from(ipv6_addr).to_be_bytes());
                        let padded_len = NLMSG_ALIGN(rta_len as usize) - rta_len as usize;
                        buf.extend(iter::repeat(0).take(padded_len));
                    }
                }
            }
            AddressAttr::Local(ip_addr) => {
                let rta_type = libc::IFA_LOCAL;
                match *ip_addr {
                    IpAddr::V4(ipv4_addr) => {
                        let rta_len = 8u16;
                        buf.extend(rta_len.to_ne_bytes());
                        buf.extend(rta_type.to_ne_bytes());
                        buf.extend(u32::from(ipv4_addr).to_be_bytes());
                        let padded_len = NLMSG_ALIGN(rta_len as usize) - rta_len as usize;
                        buf.extend(iter::repeat(0).take(padded_len));
                    }
                    IpAddr::V6(ipv6_addr) => {
                        let rta_len = 20u16;
                        buf.extend(rta_len.to_ne_bytes());
                        buf.extend(rta_type.to_ne_bytes());
                        buf.extend(u128::from(ipv6_addr).to_be_bytes());
                        let padded_len = NLMSG_ALIGN(rta_len as usize) - rta_len as usize;
                        buf.extend(iter::repeat(0).take(padded_len));
                    }
                }
            }
            AddressAttr::Label(cstring) => {
                let rta_type = libc::IFA_LABEL;
                let rta_len = cstring.as_bytes_with_nul().len() + 4;
                buf.extend((rta_len as u16).to_ne_bytes());
                buf.extend(rta_type.to_ne_bytes());
                buf.extend(cstring.as_bytes_with_nul());
                let padded_len = NLMSG_ALIGN(rta_len) - rta_len;
                buf.extend(iter::repeat(0).take(padded_len));
            }
            AddressAttr::Broadcast(ip_addr) => {
                let rta_type = libc::IFA_BROADCAST;
                match *ip_addr {
                    IpAddr::V4(ipv4_addr) => {
                        let rta_len = 8u16;
                        buf.extend(rta_len.to_ne_bytes());
                        buf.extend(rta_type.to_ne_bytes());
                        buf.extend(u32::from(ipv4_addr).to_be_bytes());
                        let padded_len = NLMSG_ALIGN(rta_len as usize) - rta_len as usize;
                        buf.extend(iter::repeat(0).take(padded_len));
                    }
                    IpAddr::V6(ipv6_addr) => {
                        let rta_len = 20u16;
                        buf.extend(rta_len.to_ne_bytes());
                        buf.extend(rta_type.to_ne_bytes());
                        buf.extend(u128::from(ipv6_addr).to_be_bytes());
                        let padded_len = NLMSG_ALIGN(rta_len as usize) - rta_len as usize;
                        buf.extend(iter::repeat(0).take(padded_len));
                    }
                }
            }
            AddressAttr::Anycast(ip_addr) => {
                let rta_type = libc::IFA_ANYCAST;
                match *ip_addr {
                    IpAddr::V4(ipv4_addr) => {
                        let rta_len = 8u16;
                        buf.extend(rta_len.to_ne_bytes());
                        buf.extend(rta_type.to_ne_bytes());
                        buf.extend(u32::from(ipv4_addr).to_be_bytes());
                        let padded_len = NLMSG_ALIGN(rta_len as usize) - rta_len as usize;
                        buf.extend(iter::repeat(0).take(padded_len));
                    }
                    IpAddr::V6(ipv6_addr) => {
                        let rta_len = 20u16;
                        buf.extend(rta_len.to_ne_bytes());
                        buf.extend(rta_type.to_ne_bytes());
                        buf.extend(u128::from(ipv6_addr).to_be_bytes());
                        let padded_len = NLMSG_ALIGN(rta_len as usize) - rta_len as usize;
                        buf.extend(iter::repeat(0).take(padded_len));
                    }
                }
            }
            AddressAttr::CacheInfo(cache_info) => {
                let rta_type = libc::IFA_CACHEINFO;
                let rta_len = 4u16 + mem::size_of_val(cache_info) as u16;
                buf.extend(rta_len.to_ne_bytes());
                buf.extend(rta_type.to_ne_bytes());
                let cache_info_bytes: [u8; mem::size_of::<AddrCacheInfo>()] =
                    unsafe { mem::transmute_copy(cache_info) };
                buf.extend(&cache_info_bytes);
                let padded_len = NLMSG_ALIGN(rta_len as usize) - rta_len as usize;
                buf.extend(iter::repeat(0).take(padded_len));
            }
            AddressAttr::Unspecified(unspec) => {
                let rta_type = libc::IFA_UNSPEC;
                let rta_len = 4u16 + unspec.len() as u16;
                buf.extend(rta_len.to_ne_bytes());
                buf.extend(rta_type.to_ne_bytes());
                buf.extend(unspec);
                let padded_len = NLMSG_ALIGN(rta_len as usize) - rta_len as usize;
                buf.extend(iter::repeat(0).take(padded_len));
            }
            AddressAttr::Unknown(ty, unknown) => {
                let rta_type = *ty;
                let rta_len = 4u16 + unknown.len() as u16;
                buf.extend(rta_len.to_ne_bytes());
                buf.extend(rta_type.to_ne_bytes());
                buf.extend(unknown);
                let padded_len = NLMSG_ALIGN(rta_len as usize) - rta_len as usize;
                buf.extend(iter::repeat(0).take(padded_len));
            }
        }
    }
}

#[derive(Clone, Debug)]
pub struct NlmsgNewRoute {
    pub iface_idx: i32,
    pub state: u16,
    pub flags: u8,
    pub arp_type: u8,
    pub attrs: Vec<RouteAttr>,
}

impl NlmsgNewRoute {
    fn serialize(&self, buf: &mut Vec<u8>) {
        todo!()
    }
}

#[derive(Clone, Debug)]
pub struct NlmsgDeleteRoute {
    pub iface_idx: i32,
    pub state: u16,
    pub flags: u8,
    pub arp_type: u8,
    pub attrs: Vec<RouteAttr>,
}

impl NlmsgDeleteRoute {
    fn serialize(&self, buf: &mut Vec<u8>) {
        todo!()
    }
}

#[derive(Clone, Debug)]
pub enum RouteAttr {
    /// RTA_UNSPEC - ignored
    Unspec(Vec<u8>),
    /// RTA_DST - Route destination address
    Destination(IpAddr),
    /// RTA_SRC - Route source address
    Source(IpAddr),
    /// RTA_IIF - Input interface index
    InputInterface(i32),
    /// RTA_OIF - Output interface index
    OutputInterface(i32),
    /// RTA_GATEWAY - The gateway of the route
    Gateway(IpAddr),
    /// RTA_PRIORITY - The priority of the route
    Priority(i32),
    /// RTA_PREFSRC - The preferred source address
    PreferredSource(IpAddr),
    /// RTA_METRICS - Route metric
    Metric(i32),
    /// RTA_Flow - Route realm
    Flow(i32),
    /// RTA_CACHEINFO - Route cache info
    CacheInfo(RouteCacheInfo),
    /// RTA_TABLE - Routing table ID; if set, rtm_table is ignored
    TableId(i32),
    /// RTA_MARK
    Mark(i32),
    /// RTA_MFC_STATS
    MfcStats(RouteMfcStats),
    /// RTA_VIA - Gateway in different address family
    Via(Vec<u8>),
    /// RTA_NEWDST - Change packet destination address
    NewDestination(IpAddr),
    /// RTA_PREF - RFC4191 IPv6 router preference
    Ipv6Preference(i8),
    /// RTA_EXPIRES - Expire time for IPv6 routes (in seconds)
    Expires(i32),
    /// Some other unknown RT attribute
    Unknown(u16, Vec<u8>),
}

impl RouteAttr {
    fn serialize(&self, buf: &mut Vec<u8>) {
        todo!()
    }
}

#[derive(Clone, Debug)]
pub struct NlmsgNewNeighbor {
    pub iface_idx: i32,
    pub state: u16,
    pub flags: u8,
    pub arp_type: u8,
    pub attrs: Vec<NeighborAttr>,
}

impl NlmsgNewNeighbor {
    fn serialize(&self, buf: &mut Vec<u8>) {
        todo!()
    }
}

#[derive(Clone, Debug)]
pub struct NlmsgDeleteNeighbor {
    pub iface_idx: i32,
    pub state: u16,
    pub flags: u8,
    pub arp_type: u8,
    pub attrs: Vec<NeighborAttr>,
}

impl NlmsgDeleteNeighbor {
    fn serialize(&self, buf: &mut Vec<u8>) {
        todo!()
    }
}

#[derive(Clone, Debug)]
pub enum NeighborAttr {
    /// NTA_DST - a neighbor cache network layer destination address
    DestinationAddress(IpAddr),
    /// NTA_LLADDR - a neighbor cache link layer address
    LinkAddress(MacAddr),
    /// NTA_CACHEINFO - cache statistics
    CacheInfo(NeighborCacheInfo),
    /// Some other unknown RT attribute
    Unknown(u16, Vec<u8>),
}

impl NeighborAttr {
    fn serialize(&self, buf: &mut Vec<u8>) {
        todo!()
    }
}

// =============================================================================
//                          Netlink Response Messages
// =============================================================================

pub struct NetlinkResponseRef<'a> {
    data: &'a [u8],
}

impl<'a> NetlinkResponseRef<'a> {
    #[inline]
    pub fn new(data: &'a [u8]) -> Self {
        Self { data }
    }

    #[inline]
    pub fn messages(&self) -> NlmsgIter<'a> {
        NlmsgIter::new(self.data)
    }
}

pub struct NlmsgIter<'a> {
    data: &'a [u8],
}

impl<'a> NlmsgIter<'a> {
    #[inline]
    pub fn new(data: &'a [u8]) -> Self {
        Self { data }
    }
}

impl<'a> Iterator for NlmsgIter<'a> {
    type Item = Result<NlmsgRef<'a>, NlParseError>;

    fn next(&mut self) -> Option<Self::Item> {
        if self.data.is_empty() {
            return None;
        }

        const HDR_LEN: usize = mem::size_of::<libc::nlmsghdr>();

        let Some(hdr_slice) = self.data.get(..HDR_LEN) else {
            return Some(Err(NlParseError::new(
                "netlink response had truncated nlmsg header",
            )));
        };

        let hdr_bytes: [u8; HDR_LEN] = hdr_slice.try_into().unwrap();
        let header: libc::nlmsghdr = unsafe { mem::transmute(hdr_bytes) };

        let Some(nlmsg) = self.data.get(..header.nlmsg_len as usize) else {
            return Some(Err(NlParseError::new(
                "netlink response had truncated nlmsg payload",
            )));
        };

        let padded_len = NLMSG_ALIGN(header.nlmsg_len as usize);
        // Truncated padding is fine
        self.data = self.data.get(padded_len..).unwrap_or(&[]);

        Some(NlmsgRef::parse(nlmsg))
    }
}

pub struct NlmsgRef<'a> {
    flags: u16,
    seq: u32,
    pid: u32,
    payload: NlmsgPayloadRef<'a>,
}

impl<'a> NlmsgRef<'a> {
    fn parse(data: &'a [u8]) -> Result<Self, NlParseError> {
        const HDR_LEN: usize = mem::size_of::<libc::nlmsghdr>();

        let Some(hdr_slice) = data.get(..HDR_LEN) else {
            return Err(NlParseError::new(
                "netlink response had truncated nlmsg header",
            ));
        };

        let hdr_bytes: [u8; HDR_LEN] = hdr_slice.try_into().unwrap();
        let header: libc::nlmsghdr = unsafe { mem::transmute(hdr_bytes) };

        const PAYLOAD_START: usize = NLMSG_ALIGN(HDR_LEN);

        const NLMSG_NOOP: u16 = libc::NLMSG_NOOP as u16;
        const NLMSG_OVERRUN: u16 = libc::NLMSG_OVERRUN as u16;
        const NLMSG_DONE: u16 = libc::NLMSG_DONE as u16;
        const NLMSG_ERROR: u16 = libc::NLMSG_ERROR as u16;
        Ok(NlmsgRef {
            flags: header.nlmsg_flags,
            seq: header.nlmsg_seq,
            pid: header.nlmsg_pid,
            payload: match header.nlmsg_type {
                NLMSG_NOOP => NlmsgPayloadRef::Noop,
                NLMSG_OVERRUN => NlmsgPayloadRef::Overrun,
                NLMSG_DONE => NlmsgPayloadRef::Done,
                NLMSG_ERROR => {
                    let Some(error_payload) = data.get(PAYLOAD_START..) else {
                        return Err(NlParseError::new(
                            "netlink response had truncated Error payload",
                        ));
                    };

                    NlmsgPayloadRef::Error(NlmsgError::parse(error_payload)?)
                }
                libc::RTM_NEWADDR => {
                    let Some(addr_payload) = data.get(PAYLOAD_START..) else {
                        return Err(NlParseError::new(
                            "netlink response had truncated RTM_GETADDR payload",
                        ));
                    };

                    NlmsgPayloadRef::GetAddress(NlmsgGetAddressRef::parse(addr_payload)?)
                }
                // libc::RTM_GETLINK => ,
                libc::RTM_NEWROUTE => {
                    let Some(route_payload) = data.get(PAYLOAD_START..) else {
                        return Err(NlParseError::new(
                            "netlink response had truncated RTM_GETROUTE payload",
                        ));
                    };

                    NlmsgPayloadRef::GetRoute(NlmsgGetRoute::parse(route_payload)?)
                }
                libc::RTM_NEWNEIGH => {
                    let Some(neighbor_payload) = data.get(PAYLOAD_START..) else {
                        return Err(NlParseError::new(
                            "netlink response had truncated RTM_GETNEIGH payload",
                        ));
                    };

                    NlmsgPayloadRef::GetNeighbor(NlmsgGetNeighbor::parse(neighbor_payload)?)
                }
                _ => NlmsgPayloadRef::Unknown,
            },
        })
    }

    #[inline]
    pub fn flags_raw(&self) -> u16 {
        self.flags
    }

    #[inline]
    pub fn seq(&self) -> u32 {
        self.seq
    }

    #[inline]
    pub fn pid(&self) -> u32 {
        self.pid
    }

    #[inline]
    pub fn payload(&self) -> NlmsgPayloadRef<'a> {
        self.payload
    }
}

#[derive(Clone, Copy)]
pub enum NlmsgPayloadRef<'a> {
    /// Indicates the message should be ignored; not often used in practice.
    Noop,
    /// Marks the end of a dump request.
    Done,
    /// Indicates that the socket buffer has overflown (not used to date).
    Overrun,
    /// Indicates the request failed with the designated error code.
    Error(NlmsgError), // TODO: could include original request header, payload...
    /// Informational response from an `RTM_GETADDR` request.
    GetAddress(NlmsgGetAddressRef<'a>),
    /// Informational response from an `RTM_GETROUTE` request.
    GetRoute(NlmsgGetRoute<'a>),
    /// Informational response from an `RTM_GETNEIGHBOR` request.
    GetNeighbor(NlmsgGetNeighbor<'a>),
    /// Some other RTNetlink message
    Unknown,
    /*
    // /// Informational response from an `RTM_GETLINK` request.
    // GetLink(),
    /// Informational response from an `RTM_GETRULE` request.
    GetRule(),
    /// Informational response from an `RTM_GETQDISC` request.
    GetQdisc(),
    /// Informational response from an `RTM_GETTCLASS` request.
    GetTrafficClass(),
    /// Informational response from an `RTM_GETTFILTER` request.
    GetTrafficFilter(),
    */
}

#[derive(Clone, Copy)]
pub struct NlmsgError {
    errno: i32,
}

impl NlmsgError {
    fn parse(data: &[u8]) -> Result<Self, NlParseError> {
        let Some(errno_bytes) = data.get(..4) else {
            return Err(NlParseError::new(
                "netlink Error response had truncated errno value",
            ));
        };

        Ok(Self {
            // This is meant to be negated--errno values from netlink come as negative.
            errno: -i32::from_ne_bytes(errno_bytes.try_into().unwrap()),
        })
    }

    pub fn errno(&self) -> i32 {
        self.errno
    }
}

#[derive(Clone, Copy)]
pub struct NlmsgGetAddressRef<'a> {
    family: u8,
    prefix_length: u8,
    flags: u8,
    scope: u8,
    iface_idx: u32,
    attr_data: &'a [u8],
}

impl<'a> NlmsgGetAddressRef<'a> {
    pub fn parse(data: &'a [u8]) -> Result<Self, NlParseError> {
        const ADDRMSG_LEN: usize = mem::size_of::<ifaddrmsg>();

        let Some(addrmsg_bytes) = data.get(..ADDRMSG_LEN) else {
            return Err(NlParseError::new(
                "netlink RTM_GETADDR message was truncated",
            ));
        };
        let addrmsg_arr: [u8; ADDRMSG_LEN] = addrmsg_bytes.try_into().unwrap();
        let addrmsg: ifaddrmsg = unsafe { mem::transmute(addrmsg_arr) };

        let rem = data.get(NLMSG_ALIGN(ADDRMSG_LEN)..).unwrap_or(&[]);

        Ok(Self {
            family: addrmsg.ifa_family,
            prefix_length: addrmsg.ifa_prefixlen,
            flags: addrmsg.ifa_flags,
            scope: addrmsg.ifa_scope,
            iface_idx: addrmsg.ifa_index,
            attr_data: rem,
        })
    }

    // TODO: add specific type?
    #[inline]
    pub fn family(&self) -> u8 {
        self.family
    }

    #[inline]
    pub fn prefix_len(&self) -> u8 {
        self.prefix_length
    }

    // TODO: add specific type
    #[inline]
    pub fn flags(&self) -> u8 {
        self.flags
    }

    // TODO: add specific type
    #[inline]
    pub fn scope(&self) -> u8 {
        self.scope
    }

    #[inline]
    pub fn index(&self) -> u32 {
        self.iface_idx
    }

    #[inline]
    pub fn attrs(&self) -> AddressAttrIter {
        AddressAttrIter::new(self.attr_data)
    }
}

pub struct AddressAttrIter<'a> {
    data: &'a [u8],
}

impl<'a> AddressAttrIter<'a> {
    #[inline]
    fn new(data: &'a [u8]) -> Self {
        Self { data }
    }
}

impl<'a> Iterator for AddressAttrIter<'a> {
    type Item = Result<AddressAttrRef<'a>, NlParseError>;

    fn next(&mut self) -> Option<Self::Item> {
        if self.data.is_empty() {
            return None;
        }

        let Some(attr_len_bytes) = self.data.get(..2) else {
            return Some(Err(NlParseError::new(
                "netlink RTM_GETADDR attribute had truncated length filed",
            )));
        };

        let Some(attr_type_bytes) = self.data.get(2..4) else {
            return Some(Err(NlParseError::new(
                "netlink RTM_GETADDR attribute had truncated type field",
            )));
        };

        let attr_len = u16::from_ne_bytes(attr_len_bytes.try_into().unwrap()) as usize;
        let attr_type = u16::from_ne_bytes(attr_type_bytes.try_into().unwrap());

        let Some(attr_data) = self.data.get(4..attr_len) else {
            return Some(Err(NlParseError::new(
                "netlink RTM_GETADDR attribute had truncated data field",
            )));
        };

        let padded_len = NLMSG_ALIGN(attr_len);
        // Truncated padding is fine
        self.data = self.data.get(padded_len..).unwrap_or(&[]);

        Some(Ok(match attr_type {
            libc::IFA_ADDRESS => match attr_data.len() {
                4 => AddressAttrRef::Address(IpAddr::V4(Ipv4Addr::from(u32::from_be_bytes(
                    attr_data.try_into().unwrap(),
                )))),
                16 => AddressAttrRef::Address(IpAddr::V6(Ipv6Addr::from(u128::from_be_bytes(
                    attr_data.try_into().unwrap(),
                )))),
                _ => {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETADDR had IFA_ADDRESS attribute with invalid size",
                    )))
                }
            },
            libc::IFA_LOCAL => match attr_data.len() {
                4 => AddressAttrRef::Local(IpAddr::V4(Ipv4Addr::from(u32::from_be_bytes(
                    attr_data.try_into().unwrap(),
                )))),
                16 => AddressAttrRef::Local(IpAddr::V6(Ipv6Addr::from(u128::from_be_bytes(
                    attr_data.try_into().unwrap(),
                )))),
                _ => {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETADDR had IFA_LOCAL attribute with invalid size",
                    )))
                }
            },
            libc::IFA_BROADCAST => match attr_data.len() {
                4 => AddressAttrRef::Broadcast(IpAddr::V4(Ipv4Addr::from(u32::from_be_bytes(
                    attr_data.try_into().unwrap(),
                )))),
                16 => AddressAttrRef::Broadcast(IpAddr::V6(Ipv6Addr::from(u128::from_be_bytes(
                    attr_data.try_into().unwrap(),
                )))),
                _ => {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETADDR had IFA_BROADCAST attribute with invalid size",
                    )))
                }
            },
            libc::IFA_ANYCAST => match attr_data.len() {
                4 => AddressAttrRef::Anycast(IpAddr::V4(Ipv4Addr::from(u32::from_be_bytes(
                    attr_data.try_into().unwrap(),
                )))),
                16 => AddressAttrRef::Anycast(IpAddr::V6(Ipv6Addr::from(u128::from_be_bytes(
                    attr_data.try_into().unwrap(),
                )))),
                _ => {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETADDR had IFA_ANYCAST attribute with invalid size",
                    )))
                }
            },
            libc::IFA_CACHEINFO => {
                if attr_data.len() == mem::size_of::<AddrCacheInfo>() {
                    let cache_info_bytes: [u8; mem::size_of::<AddrCacheInfo>()] =
                        attr_data.try_into().unwrap();
                    let cache_info: AddrCacheInfo = unsafe { mem::transmute(cache_info_bytes) };
                    AddressAttrRef::CacheInfo(cache_info)
                } else {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETADDR had IFA_CACHEINFO attribute with invalid size",
                    )));
                }
            }
            libc::IFA_LABEL => {
                let Ok(cstr) = CStr::from_bytes_with_nul(attr_data) else {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETADDR had IFA_LABEL attribute with invalid data",
                    )));
                };

                AddressAttrRef::Label(cstr)
            }
            libc::IFA_UNSPEC => AddressAttrRef::Unspecified(attr_data),
            _ => AddressAttrRef::Unknown(attr_type, attr_data),
        }))
    }
}

pub enum AddressAttrRef<'a> {
    /// IFA_ADDRESS - interface address
    Address(IpAddr),
    /// IFA_LOCAL - local address
    Local(IpAddr),
    /// IFA_LABEL - name of the interface
    Label(&'a CStr),
    /// IFA_BROADCAST - broadcast address
    Broadcast(IpAddr),
    /// IFA_ANYCAST - anycast address
    Anycast(IpAddr),
    /// IFA_CACHEINFO - cache info
    CacheInfo(AddrCacheInfo),
    /// IFA_UNSPEC - an unspecified RT attribute
    Unspecified(&'a [u8]),
    /// Some other unknown RT attribute
    Unknown(u16, &'a [u8]),
}

#[derive(Clone, Copy, Debug)]
#[repr(C)]
pub struct AddrCacheInfo {
    prefered: u32,
    valid: u32,
    cstamp: u32,
    tstamp: u32,
}

#[derive(Clone, Copy)]
pub struct NlmsgGetNeighbor<'a> {
    iface_idx: i32,
    state: u16,
    flags: u8,
    arp_type: u8,
    attr_data: &'a [u8],
}

impl<'a> NlmsgGetNeighbor<'a> {
    pub fn parse(data: &'a [u8]) -> Result<Self, NlParseError> {
        const NDMSG_LEN: usize = mem::size_of::<ndmsg>();

        let Some(msg_bytes) = data.get(..NDMSG_LEN) else {
            return Err(NlParseError::new(
                "netlink RTM_GETNEIGH message was truncated",
            ));
        };
        let msg_arr: [u8; NDMSG_LEN] = msg_bytes.try_into().unwrap();
        let msg: ndmsg = unsafe { mem::transmute(msg_arr) };

        let rem = data.get(NLMSG_ALIGN(NDMSG_LEN)..).unwrap_or(&[]);

        Ok(Self {
            iface_idx: msg.ndm_index,
            state: msg.ndm_state,
            flags: msg.ndm_flags,
            arp_type: msg.ndm_type,
            attr_data: rem,
        })
    }

    pub fn index(&self) -> i32 {
        self.iface_idx
    }

    pub fn state(&self) -> u16 {
        self.state
    }

    pub fn flags(&self) -> u8 {
        self.flags
    }

    pub fn arp_type(&self) -> u8 {
        self.arp_type
    }

    pub fn attrs(&self) -> NeighborAttrIter<'a> {
        NeighborAttrIter::new(self.attr_data)
    }
}

pub struct NeighborAttrIter<'a> {
    data: &'a [u8],
}

impl<'a> NeighborAttrIter<'a> {
    #[inline]
    fn new(data: &'a [u8]) -> Self {
        Self { data }
    }
}

impl<'a> Iterator for NeighborAttrIter<'a> {
    type Item = Result<NeighborAttrRef<'a>, NlParseError>;

    fn next(&mut self) -> Option<Self::Item> {
        if self.data.is_empty() {
            return None;
        }

        let Some(attr_len_bytes) = self.data.get(..2) else {
            return Some(Err(NlParseError::new(
                "netlink RTM_GETNEIGH attribute had truncated length filed",
            )));
        };

        let Some(attr_type_bytes) = self.data.get(2..4) else {
            return Some(Err(NlParseError::new(
                "netlink RTM_GETNEIGH attribute had truncated type field",
            )));
        };

        let attr_len = u16::from_ne_bytes(attr_len_bytes.try_into().unwrap()) as usize;
        let attr_type = u16::from_ne_bytes(attr_type_bytes.try_into().unwrap());

        let Some(attr_data) = self.data.get(4..attr_len) else {
            return Some(Err(NlParseError::new(
                "netlink RTM_GETNEIGH attribute had truncated data field",
            )));
        };

        let padded_len = NLMSG_ALIGN(attr_len);
        // Truncated padding is fine
        self.data = self.data.get(padded_len..).unwrap_or(&[]);

        Some(Ok(match attr_type {
            libc::NDA_DST => match attr_data.len() {
                4 => NeighborAttrRef::DestinationAddress(IpAddr::V4(Ipv4Addr::from(
                    u32::from_be_bytes(attr_data.try_into().unwrap()),
                ))),
                16 => NeighborAttrRef::DestinationAddress(IpAddr::V6(Ipv6Addr::from(
                    u128::from_be_bytes(attr_data.try_into().unwrap()),
                ))),
                _ => {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETNEIGH had NDA_DST attribute with invalid size",
                    )))
                }
            },
            libc::NDA_LLADDR => {
                if attr_data.len() == 6 {
                    let cache_info_bytes: [u8; 6] = attr_data.try_into().unwrap();
                    NeighborAttrRef::LinkAddress(MacAddr::from(cache_info_bytes))
                } else {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETNEIGH had IFA_LLADDR attribute with invalid size",
                    )));
                }
            }
            libc::NDA_CACHEINFO => {
                if attr_data.len() == mem::size_of::<NeighborCacheInfo>() {
                    let cache_info_bytes: [u8; mem::size_of::<NeighborCacheInfo>()] =
                        attr_data.try_into().unwrap();
                    let cache_info: NeighborCacheInfo = unsafe { mem::transmute(cache_info_bytes) };
                    NeighborAttrRef::CacheInfo(cache_info)
                } else {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETNEIGH had NDA_CACHEINFO attribute with invalid size",
                    )));
                }
            }
            _ => NeighborAttrRef::Unknown(attr_type, attr_data),
        }))
    }
}

pub enum NeighborAttrRef<'a> {
    /// NTA_DST - a neighbor cache network layer destination address
    DestinationAddress(IpAddr),
    /// NTA_LLADDR - a neighbor cache link layer address
    LinkAddress(MacAddr),
    /// NTA_CACHEINFO - cache statistics
    CacheInfo(NeighborCacheInfo),
    /// Some other unknown RT attribute
    Unknown(u16, &'a [u8]),
}

#[derive(Clone, Copy, Debug)]
#[repr(C)]
pub struct NeighborCacheInfo {
    pub confirmed: u32,
    pub used: u32,
    pub updated: u32,
    pub refcnt: u32,
}

#[derive(Clone, Copy)]
pub struct NlmsgGetRoute<'a> {
    family: u8,
    dst_len: u8,
    src_len: u8,
    tos: u8,
    table_id: u8,
    protocol: u8,
    scope: u8,
    route_type: u8,
    flags: u32,
    attr_data: &'a [u8],
}

impl<'a> NlmsgGetRoute<'a> {
    pub fn parse(data: &'a [u8]) -> Result<Self, NlParseError> {
        const NDMSG_LEN: usize = mem::size_of::<rtmsg>();

        let Some(msg_bytes) = data.get(..NDMSG_LEN) else {
            return Err(NlParseError::new(
                "netlink RTM_GETROUTE message was truncated",
            ));
        };
        let msg_arr: [u8; NDMSG_LEN] = msg_bytes.try_into().unwrap();
        let msg: rtmsg = unsafe { mem::transmute(msg_arr) };

        let rem = data.get(NLMSG_ALIGN(NDMSG_LEN)..).unwrap_or(&[]);

        Ok(Self {
            family: msg.rtm_family,
            dst_len: msg.rtm_dst_len,
            src_len: msg.rtm_src_len,
            tos: msg.rtm_tos,
            table_id: msg.rtm_table,
            protocol: msg.rtm_protocol,
            scope: msg.rtm_scope,
            route_type: msg.rtm_type,
            flags: msg.rtm_flags,
            attr_data: rem,
        })
    }

    pub fn family(&self) -> u8 {
        self.family
    }

    pub fn tos(&self) -> u8 {
        self.tos
    }

    pub fn table_id(&self) -> u8 {
        self.table_id
    }

    pub fn protocol(&self) -> u8 {
        self.protocol
    }

    pub fn scope(&self) -> u8 {
        self.scope
    }

    pub fn route_type(&self) -> u8 {
        self.route_type
    }

    pub fn flags(&self) -> u32 {
        self.flags
    }

    pub fn attrs(&self) -> RouteAttrIter<'a> {
        RouteAttrIter::new(self.attr_data)
    }
}

pub struct RouteAttrIter<'a> {
    data: &'a [u8],
}

impl<'a> RouteAttrIter<'a> {
    #[inline]
    fn new(data: &'a [u8]) -> Self {
        Self { data }
    }
}

impl<'a> Iterator for RouteAttrIter<'a> {
    type Item = Result<RouteAttrRef<'a>, NlParseError>;

    fn next(&mut self) -> Option<Self::Item> {
        if self.data.is_empty() {
            return None;
        }

        let Some(attr_len_bytes) = self.data.get(..2) else {
            return Some(Err(NlParseError::new(
                "netlink RTM_GETROUTE attribute had truncated length filed",
            )));
        };

        let Some(attr_type_bytes) = self.data.get(2..4) else {
            return Some(Err(NlParseError::new(
                "netlink RTM_GETROUTE attribute had truncated type field",
            )));
        };

        let attr_len = u16::from_ne_bytes(attr_len_bytes.try_into().unwrap()) as usize;
        let attr_type = u16::from_ne_bytes(attr_type_bytes.try_into().unwrap());

        let Some(attr_data) = self.data.get(4..attr_len) else {
            return Some(Err(NlParseError::new(
                "netlink RTM_GETROUTE attribute had truncated data field",
            )));
        };

        let padded_len = NLMSG_ALIGN(attr_len);
        // Truncated padding is fine
        self.data = self.data.get(padded_len..).unwrap_or(&[]);

        Some(Ok(match attr_type {
            libc::RTA_DST => match attr_data.len() {
                4 => RouteAttrRef::Destination(IpAddr::V4(Ipv4Addr::from(u32::from_be_bytes(
                    attr_data.try_into().unwrap(),
                )))),
                16 => RouteAttrRef::Destination(IpAddr::V6(Ipv6Addr::from(u128::from_be_bytes(
                    attr_data.try_into().unwrap(),
                )))),
                _ => {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETROUTE had RTA_DST attribute with invalid size",
                    )))
                }
            },
            libc::RTA_SRC => match attr_data.len() {
                4 => RouteAttrRef::Source(IpAddr::V4(Ipv4Addr::from(u32::from_be_bytes(
                    attr_data.try_into().unwrap(),
                )))),
                16 => RouteAttrRef::Source(IpAddr::V6(Ipv6Addr::from(u128::from_be_bytes(
                    attr_data.try_into().unwrap(),
                )))),
                _ => {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETROUTE had RTA_SRC attribute with invalid size",
                    )))
                }
            },
            libc::RTA_IIF => {
                if attr_data.len() == 4 {
                    RouteAttrRef::InputInterface(i32::from_ne_bytes(attr_data.try_into().unwrap()))
                } else {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETROUTE had RTA_IIF attribute with invalid size",
                    )));
                }
            }
            libc::RTA_OIF => {
                if attr_data.len() == 4 {
                    RouteAttrRef::OutputInterface(i32::from_ne_bytes(attr_data.try_into().unwrap()))
                } else {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETROUTE had RTA_OIF attribute with invalid size",
                    )));
                }
            }
            libc::RTA_GATEWAY => match attr_data.len() {
                4 => RouteAttrRef::Gateway(IpAddr::V4(Ipv4Addr::from(u32::from_be_bytes(
                    attr_data.try_into().unwrap(),
                )))),
                16 => RouteAttrRef::Gateway(IpAddr::V6(Ipv6Addr::from(u128::from_be_bytes(
                    attr_data.try_into().unwrap(),
                )))),
                _ => {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETROUTE had RTA_GATEWAY attribute with invalid size",
                    )))
                }
            },
            libc::RTA_PRIORITY => {
                if attr_data.len() == 4 {
                    RouteAttrRef::Priority(i32::from_ne_bytes(attr_data.try_into().unwrap()))
                } else {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETROUTE had RTA_PRIORITY attribute with invalid size",
                    )));
                }
            }
            libc::RTA_PREFSRC => match attr_data.len() {
                4 => RouteAttrRef::PreferredSource(IpAddr::V4(Ipv4Addr::from(u32::from_be_bytes(
                    attr_data.try_into().unwrap(),
                )))),
                16 => RouteAttrRef::PreferredSource(IpAddr::V6(Ipv6Addr::from(
                    u128::from_be_bytes(attr_data.try_into().unwrap()),
                ))),
                _ => {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETROUTE had RTA_PREFSRC attribute with invalid size",
                    )))
                }
            },
            libc::RTA_METRICS => {
                if attr_data.len() == 4 {
                    RouteAttrRef::Metric(i32::from_ne_bytes(attr_data.try_into().unwrap()))
                } else {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETROUTE had RTA_METRIC attribute with invalid size",
                    )));
                }
            }
            libc::RTA_FLOW => {
                if attr_data.len() == 4 {
                    RouteAttrRef::Flow(i32::from_ne_bytes(attr_data.try_into().unwrap()))
                } else {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETROUTE had RTA_FLOW attribute with invalid size",
                    )));
                }
            }
            libc::RTA_CACHEINFO => {
                if attr_data.len() == mem::size_of::<RouteCacheInfo>() {
                    let cache_info_bytes: [u8; mem::size_of::<RouteCacheInfo>()] =
                        attr_data.try_into().unwrap();
                    let cache_info: RouteCacheInfo = unsafe { mem::transmute(cache_info_bytes) };
                    RouteAttrRef::CacheInfo(cache_info)
                } else {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETNEIGH had NDA_CACHEINFO attribute with invalid size",
                    )));
                }
            }
            libc::RTA_TABLE => {
                if attr_data.len() == 4 {
                    RouteAttrRef::TableId(i32::from_ne_bytes(attr_data.try_into().unwrap()))
                } else {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETROUTE had RTA_TABLE attribute with invalid size",
                    )));
                }
            }
            libc::RTA_MFC_STATS => {
                if attr_data.len() == mem::size_of::<RouteMfcStats>() {
                    let mfc_stat_bytes: [u8; mem::size_of::<RouteMfcStats>()] =
                        attr_data.try_into().unwrap();
                    let mfc_stats: RouteMfcStats = unsafe { mem::transmute(mfc_stat_bytes) };
                    RouteAttrRef::MfcStats(mfc_stats)
                } else {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETROUTE had RTA_MFC_STATS attribute with invalid size",
                    )));
                }
            }
            libc::RTA_NEWDST => match attr_data.len() {
                4 => RouteAttrRef::NewDestination(IpAddr::V4(Ipv4Addr::from(u32::from_be_bytes(
                    attr_data.try_into().unwrap(),
                )))),
                16 => RouteAttrRef::NewDestination(IpAddr::V6(Ipv6Addr::from(
                    u128::from_be_bytes(attr_data.try_into().unwrap()),
                ))),
                _ => {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETROUTE had RTA_NEWDST attribute with invalid size",
                    )))
                }
            },
            libc::RTA_PREF => {
                if attr_data.len() == 1 {
                    RouteAttrRef::Ipv6Preference(attr_data[0] as i8)
                } else {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETROUTE had RTA_PREF attribute with invalid size",
                    )));
                }
            }
            libc::RTA_EXPIRES => {
                if attr_data.len() == 4 {
                    RouteAttrRef::Expires(i32::from_ne_bytes(attr_data.try_into().unwrap()))
                } else {
                    return Some(Err(NlParseError::new(
                        "netlink RTM_GETROUTE had RTA_EXPIRES attribute with invalid size",
                    )));
                }
            }
            libc::RTA_UNSPEC => RouteAttrRef::Unspec(attr_data),
            _ => RouteAttrRef::Unknown(attr_type, attr_data),
        }))
    }
}

pub enum RouteAttrRef<'a> {
    /// RTA_UNSPEC - ignored
    Unspec(&'a [u8]),
    /// RTA_DST - Route destination address
    Destination(IpAddr),
    /// RTA_SRC - Route source address
    Source(IpAddr),
    /// RTA_IIF - Input interface index
    InputInterface(i32),
    /// RTA_OIF - Output interface index
    OutputInterface(i32),
    /// RTA_GATEWAY - The gateway of the route
    Gateway(IpAddr),
    /// RTA_PRIORITY - The priority of the route
    Priority(i32),
    /// RTA_PREFSRC - The preferred source address
    PreferredSource(IpAddr),
    /// RTA_METRICS - Route metric
    Metric(i32),
    /// RTA_Flow - Route realm
    Flow(i32),
    /// RTA_CACHEINFO - Route cache info
    CacheInfo(RouteCacheInfo),
    /// RTA_TABLE - Routing table ID; if set, rtm_table is ignored
    TableId(i32),
    /// RTA_MARK
    Mark(i32),
    /// RTA_MFC_STATS
    MfcStats(RouteMfcStats),
    /// RTA_VIA - Gateway in different address family
    Via(&'a [u8]),
    /// RTA_NEWDST - Change packet destination address
    NewDestination(IpAddr),
    /// RTA_PREF - RFC4191 IPv6 router preference
    Ipv6Preference(i8),
    /// RTA_EXPIRES - Expire time for IPv6 routes (in seconds)
    Expires(i32),
    /// Some other unknown RT attribute
    Unknown(u16, &'a [u8]),
}

#[derive(Clone, Copy, Debug)]
#[repr(C)]
pub struct RouteCacheInfo {
    pub rta_clntref: u32,
    pub rta_lastuse: u32,
    pub rta_expires: i32,
    pub rta_error: u32,
    pub rta_used: u32,
    pub rta_id: u32,
    pub rta_ts: u32,
    pub rta_tsage: u32,
}

#[derive(Clone, Copy, Debug)]
#[repr(C)]
pub struct RouteMfcStats {
    pub mfcs_packets: u64,
    pub mfcs_bytes: u64,
    pub mfcs_wrong_if: u64,
}