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
use crate::ip_addr_string::IpAddrString;
use std::{
convert::{
TryFrom,
TryInto,
},
ffi::CStr,
time::{
Duration,
SystemTime,
},
};
use winapi::{
shared::{
ipifcons::{
IF_TYPE_IEEE80211,
IF_TYPE_ISO88025_TOKENRING,
MIB_IF_TYPE_ETHERNET,
MIB_IF_TYPE_LOOPBACK,
MIB_IF_TYPE_OTHER,
MIB_IF_TYPE_PPP,
MIB_IF_TYPE_SLIP,
},
minwindef::{
DWORD,
TRUE,
},
},
ucrt::corecrt::time_t,
um::iptypes::IP_ADAPTER_INFO,
};
#[derive(Debug)]
pub enum AdaperKind {
Other,
Ethernet,
TokenRing,
Ppp,
Loopback,
Atm,
IEEE80211,
}
impl TryFrom<DWORD> for AdaperKind {
type Error = DWORD;
fn try_from(n: DWORD) -> Result<Self, Self::Error> {
match n {
MIB_IF_TYPE_OTHER => Ok(AdaperKind::Other),
MIB_IF_TYPE_ETHERNET => Ok(AdaperKind::Ethernet),
IF_TYPE_ISO88025_TOKENRING => Ok(AdaperKind::TokenRing),
MIB_IF_TYPE_PPP => Ok(AdaperKind::Ppp),
MIB_IF_TYPE_LOOPBACK => Ok(AdaperKind::Loopback),
MIB_IF_TYPE_SLIP => Ok(AdaperKind::Atm),
IF_TYPE_IEEE80211 => Ok(AdaperKind::IEEE80211),
_ => Err(n),
}
}
}
fn time_to_system_time(time: time_t) -> Option<SystemTime> {
if time == -1 {
return None;
}
let time = time.try_into().ok()?;
SystemTime::UNIX_EPOCH.checked_add(Duration::from_secs(time))
}
#[repr(transparent)]
pub struct IpAdapterInfo(IP_ADAPTER_INFO);
impl IpAdapterInfo {
pub fn next(&self) -> Option<&Self> {
unsafe { self.0.Next.cast::<IpAdapterInfo>().as_ref() }
}
pub fn iter(&self) -> Iter {
Iter::new(Some(self))
}
pub fn get_combo_index(&self) -> u32 {
self.0.ComboIndex
}
pub fn get_name(&self) -> &CStr {
unsafe { CStr::from_ptr(self.0.AdapterName.as_ptr()) }
}
pub fn get_description(&self) -> &CStr {
unsafe { CStr::from_ptr(self.0.Description.as_ptr()) }
}
pub fn get_address(&self) -> &[u8] {
&self.0.Address[..self.0.AddressLength.try_into().unwrap()]
}
pub fn get_index(&self) -> u32 {
self.0.Index
}
pub fn get_kind(&self) -> Result<AdaperKind, u32> {
self.0.Type.try_into()
}
pub fn get_dhcp_enabled(&self) -> bool {
self.0.DhcpEnabled != 0
}
pub fn get_current_ip_address(&self) -> Option<&IpAddrString> {
Some(unsafe { self.0.CurrentIpAddress.as_ref()?.into() })
}
pub fn get_ip_address_list(&self) -> &IpAddrString {
(&self.0.IpAddressList).into()
}
pub fn get_gateway_list(&self) -> &IpAddrString {
(&self.0.GatewayList).into()
}
pub fn get_dhcp_server(&self) -> Option<&IpAddrString> {
if !self.get_dhcp_enabled() {
return None;
}
Some((&self.0.DhcpServer).into())
}
pub fn get_have_wins(&self) -> bool {
self.0.HaveWins == TRUE
}
pub fn get_primary_wins_server(&self) -> Option<&IpAddrString> {
if !self.get_have_wins() {
return None;
}
Some((&self.0.PrimaryWinsServer).into())
}
pub fn get_secondary_wins_server(&self) -> Option<&IpAddrString> {
if !self.get_have_wins() {
return None;
}
Some((&self.0.SecondaryWinsServer).into())
}
pub fn get_lease_obtained(&self) -> Option<SystemTime> {
if !self.get_dhcp_enabled() {
return None;
}
time_to_system_time(self.0.LeaseObtained)
}
pub fn get_lease_expires(&self) -> Option<SystemTime> {
if !self.get_dhcp_enabled() {
return None;
}
time_to_system_time(self.0.LeaseExpires)
}
}
impl std::fmt::Debug for IpAdapterInfo {
fn fmt(&self, fmt: &mut std::fmt::Formatter) -> std::fmt::Result {
fmt.debug_struct("IpAdapterInfo")
.field("combo_index", &self.get_combo_index())
.field("name", &self.get_name().to_string_lossy())
.field("description", &self.get_description().to_string_lossy())
.field("address", &self.get_address())
.field("index", &self.get_index())
.field("kind", &self.get_kind())
.field("dhcp_enabled", &self.get_dhcp_enabled())
.field("current_ip_address", &self.get_current_ip_address())
.field("ip_address_list", &self.get_ip_address_list())
.field("gateway_list", &self.get_gateway_list())
.field("dhcp_server", &self.get_dhcp_server())
.field("have_wins", &self.get_have_wins())
.field("primary_wins_server", &self.get_primary_wins_server())
.field("secondary_wins_server", &self.get_primary_wins_server())
.field("lease_obtained", &self.get_lease_obtained())
.field("lease_expires", &self.get_lease_expires())
.finish()
}
}
pub struct Iter<'a> {
adapter: Option<&'a IpAdapterInfo>,
}
impl<'a> Iter<'a> {
pub fn new(adapter: Option<&'a IpAdapterInfo>) -> Self {
Self { adapter }
}
}
impl<'a> Iterator for Iter<'a> {
type Item = &'a IpAdapterInfo;
fn next(&mut self) -> Option<Self::Item> {
let mut ret = self.adapter.and_then(|a| a.next());
std::mem::swap(&mut ret, &mut self.adapter);
ret
}
}