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
use crate::IfLuid;
use std::net::{Ipv4Addr, Ipv6Addr};
use windows::Win32::NetworkManagement::IpHelper::{
    FreeMibTable, GetUnicastIpAddressTable, MIB_UNICASTIPADDRESS_TABLE,
};
use windows::Win32::Networking::WinSock::AF_UNSPEC;
use windows::Win32::{
    Foundation::{SetLastError, ERROR_OBJECT_ALREADY_EXISTS, ERROR_SUCCESS, NO_ERROR},
    NetworkManagement::IpHelper::{
        CreateUnicastIpAddressEntry, DeleteUnicastIpAddressEntry, InitializeUnicastIpAddressEntry,
        MIB_UNICASTIPADDRESS_ROW,
    },
    Networking::WinSock::{
        IpDadStatePreferred, IpPrefixOriginManual, IpSuffixOriginManual, AF_INET, AF_INET6,
        IN6_ADDR, IN6_ADDR_0,
    },
};

use crate::IphlpNetworkAdapterInfo;

impl IphlpNetworkAdapterInfo {
    /// Adds an IPv4 unicast address to the network interface.
    ///
    /// This function creates a new `MIB_UNICASTIPADDRESS_ROW` with the provided IPv4 address
    /// and prefix length, and then calls the `CreateUnicastIpAddressEntry` Windows API function
    /// to add the unicast address to the network interface. On success, it returns
    /// `Some(MIB_UNICASTIPADDRESS_ROW)`; otherwise, it sets the last error and returns `None`.
    ///
    /// # Arguments
    ///
    /// * `address` - The IPv4 address to assign to the network interface.
    /// * `prefix_length` - The subnet prefix length for the IPv4 address.
    ///
    /// # Returns
    ///
    /// * `Option<MIB_UNICASTIPADDRESS_ROW>` - Returns `Some(MIB_UNICASTIPADDRESS_ROW)` if the
    ///   unicast address is successfully added to the network interface, or `None` if the
    ///   operation fails.
    ///
    /// # Safety
    ///
    /// This function uses unsafe Windows API calls (`InitializeUnicastIpAddressEntry` and
    /// `CreateUnicastIpAddressEntry`). The function takes care of initializing the
    /// `MIB_UNICASTIPADDRESS_ROW` struct and ensuring that the arguments and struct fields
    /// are properly set before making the API calls. However, any changes to this function or
    /// the underlying Windows APIs could introduce potential safety issues. Ensure that you
    /// understand the risks and consequences of using unsafe code before modifying this
    /// function or its dependencies.
    pub fn add_unicast_address_ipv4(
        &self,
        address: std::net::Ipv4Addr,
        prefix_length: u8,
    ) -> Option<MIB_UNICASTIPADDRESS_ROW> {
        let mut address_row = MIB_UNICASTIPADDRESS_ROW::default(); // Create a new MIB_UNICASTIPADDRESS_ROW
        unsafe { InitializeUnicastIpAddressEntry(&mut address_row) };

        address_row.Address.Ipv4.sin_family = AF_INET;
        address_row.Address.Ipv4.sin_addr.S_un.S_addr = u32::from_ne_bytes(address.octets());
        address_row.Address.si_family = AF_INET;

        address_row.InterfaceIndex = self.if_index;
        address_row.InterfaceLuid = self.luid.into();

        address_row.PrefixOrigin = IpPrefixOriginManual;
        address_row.SuffixOrigin = IpSuffixOriginManual;
        address_row.OnLinkPrefixLength = prefix_length;
        address_row.DadState = IpDadStatePreferred;

        // Call the CreateUnicastIpAddressEntry function (you need to implement this function)
        let error_code = unsafe { CreateUnicastIpAddressEntry(&address_row) };

        if error_code == NO_ERROR || error_code == ERROR_OBJECT_ALREADY_EXISTS {
            Some(address_row)
        } else {
            unsafe { SetLastError(error_code) };
            None
        }
    }

    /// Adds an IPv6 unicast address to the network interface.
    ///
    /// This function creates a new `MIB_UNICASTIPADDRESS_ROW` with the provided IPv6 address
    /// and prefix length, and then calls the `CreateUnicastIpAddressEntry` Windows API function
    /// to add the unicast address to the network interface. On success, it returns
    /// `Some(MIB_UNICASTIPADDRESS_ROW)`; otherwise, it sets the last error and returns `None`.
    ///
    /// # Arguments
    ///
    /// * `address` - The IPv6 address to assign to the network interface.
    /// * `prefix_length` - The subnet prefix length for the IPv6 address.
    ///
    /// # Returns
    ///
    /// * `Option<MIB_UNICASTIPADDRESS_ROW>` - Returns `Some(MIB_UNICASTIPADDRESS_ROW)` if the
    ///   unicast address is successfully added to the network interface, or `None` if the
    ///   operation fails.
    ///
    /// # Safety
    ///
    /// This function uses unsafe Windows API calls (`InitializeUnicastIpAddressEntry` and
    /// `CreateUnicastIpAddressEntry`). The function takes care of initializing the
    /// `MIB_UNICASTIPADDRESS_ROW` struct and ensuring that the arguments and struct fields
    /// are properly set before making the API calls. However, any changes to this function or
    /// the underlying Windows APIs could introduce potential safety issues. Ensure that you
    /// understand the risks and consequences of using unsafe code before modifying this
    /// function or its dependencies.
    pub fn add_unicast_address_ipv6(
        &self,
        address: std::net::Ipv6Addr,
        prefix_length: u8,
    ) -> Option<MIB_UNICASTIPADDRESS_ROW> {
        let mut address_row = MIB_UNICASTIPADDRESS_ROW::default(); // Create a new MIB_UNICASTIPADDRESS_ROW
        unsafe { InitializeUnicastIpAddressEntry(&mut address_row) };

        address_row.Address.Ipv6.sin6_family = AF_INET6;
        address_row.Address.Ipv6.sin6_addr = IN6_ADDR {
            u: IN6_ADDR_0 {
                Byte: address.octets(),
            },
        };
        address_row.Address.si_family = AF_INET6;

        address_row.InterfaceIndex = self.ipv6_if_index;
        address_row.InterfaceLuid = self.luid.into();

        address_row.PrefixOrigin = IpPrefixOriginManual;
        address_row.SuffixOrigin = IpSuffixOriginManual;
        address_row.OnLinkPrefixLength = prefix_length;
        address_row.DadState = IpDadStatePreferred;

        let error_code = unsafe { CreateUnicastIpAddressEntry(&address_row) };

        if error_code == NO_ERROR || error_code == ERROR_OBJECT_ALREADY_EXISTS {
            Some(address_row)
        } else {
            unsafe { SetLastError(error_code) };
            None
        }
    }

    /// Removes a unicast IP address from the network adapter using a reference to a `MIB_UNICASTIPADDRESS_ROW`.
    ///
    /// This function calls the `DeleteUnicastIpAddressEntry` Windows API function to remove the
    /// unicast IP address from the network adapter. On success, it returns `true`; otherwise,
    /// it sets the last error and returns `false`.
    ///
    /// # Arguments
    ///
    /// * `address` - A reference to a `MIB_UNICASTIPADDRESS_ROW`.
    ///
    /// # Returns
    ///
    /// * `bool` - Returns `true` if the unicast IP address is successfully removed from the
    ///   network adapter, or `false` if the operation fails.
    ///
    /// # Safety
    ///
    /// This function contains unsafe code as it calls the `DeleteUnicastIpAddressEntry`
    /// Windows API function, which is an unsafe operation due to the use of raw pointers.
    /// The function also sets the last error using the unsafe `SetLastError` function.
    /// The caller must ensure that the provided `address` reference is valid and correctly
    /// initialized to avoid any undefined behavior.
    pub fn delete_unicast_address(address: &MIB_UNICASTIPADDRESS_ROW) -> bool {
        unsafe { SetLastError(ERROR_SUCCESS) };

        let error_code = unsafe { DeleteUnicastIpAddressEntry(address) };

        unsafe { SetLastError(error_code) };

        error_code == NO_ERROR
    }

    /// Removes all unicast addresses associated with the network interface.
    ///
    /// # Returns
    ///
    /// * `bool`: true if successful, false otherwise.
    ///
    /// # Safety
    ///
    /// This function uses unsafe Windows API calls to get and delete unicast IP addresses.
    /// The caller should ensure that the network interface is properly configured before calling this function.
    pub fn reset_unicast_addresses(&self) -> bool {
        let mut table: *mut MIB_UNICASTIPADDRESS_TABLE = std::ptr::null_mut();

        unsafe { SetLastError(ERROR_SUCCESS) };

        let error_code = unsafe { GetUnicastIpAddressTable(AF_UNSPEC, &mut table) };

        if error_code == NO_ERROR {
            for i in 0..unsafe { (*table).NumEntries } {
                let entry = unsafe { &mut (*table).Table[i as usize] };
                if IfLuid::from(entry.InterfaceLuid) == self.luid {
                    let error_code = unsafe { DeleteUnicastIpAddressEntry(entry) };
                    if error_code != NO_ERROR {
                        unsafe { SetLastError(error_code) };
                    }
                }
            }

            unsafe { FreeMibTable(table as *mut _) };
            return true;
        }

        unsafe { SetLastError(error_code) };

        false
    }

    /// Removes the specified IPv4 address from the network interface.
    ///
    /// # Arguments
    ///
    /// * `address`: Ipv4Addr to remove
    ///
    /// # Returns
    ///
    /// * `bool`: true if successful, false otherwise.
    ///
    /// # Safety
    ///
    /// This function uses unsafe Windows API calls to get and delete unicast IP address entries.
    /// The caller should ensure that the provided IPv4 address is valid and
    /// that the network interface is properly configured before calling this function.
    pub fn delete_unicast_address_ipv4(&self, address: Ipv4Addr) -> bool {
        let mut table: *mut MIB_UNICASTIPADDRESS_TABLE = std::ptr::null_mut();

        let error_code = unsafe { GetUnicastIpAddressTable(AF_INET, &mut table) };

        if error_code == NO_ERROR {
            for i in 0..unsafe { (*table).NumEntries } {
                let entry = unsafe { &(*table).Table[i as usize] };

                if IfLuid::from(entry.InterfaceLuid) == self.luid
                    && Ipv4Addr::from(
                        unsafe { entry.Address.Ipv4.sin_addr.S_un.S_addr }.to_ne_bytes(),
                    ) == address
                {
                    let error_code = unsafe { DeleteUnicastIpAddressEntry(entry) };
                    if error_code == NO_ERROR {
                        unsafe { SetLastError(error_code) };
                    }
                }
            }

            unsafe { FreeMibTable(table as *mut _) };
            true
        } else {
            unsafe { SetLastError(error_code) };
            false
        }
    }

    /// Removes the specified IPv6 address from the network interface.
    ///
    /// # Arguments
    ///
    /// * `address`: Ipv6Addr to remove
    ///
    /// # Returns
    ///
    /// * `bool`: true if successful, false otherwise.
    ///
    /// # Safety
    ///
    /// This function uses unsafe Windows API calls to get and delete unicast IP address entries.
    /// The caller should ensure that the provided IPv6 address is valid and
    /// that the network interface is properly configured before calling this function.
    pub fn delete_unicast_address_ipv6(&self, address: Ipv6Addr) -> bool {
        let mut table: *mut MIB_UNICASTIPADDRESS_TABLE = std::ptr::null_mut();

        let error_code = unsafe { GetUnicastIpAddressTable(AF_INET6, &mut table) };

        if error_code == NO_ERROR {
            for i in 0..unsafe { (*table).NumEntries } {
                let entry = unsafe { &(*table).Table[i as usize] };

                if IfLuid::from(entry.InterfaceLuid) == self.luid
                    && Ipv6Addr::from(unsafe { entry.Address.Ipv6.sin6_addr.u.Byte }) == address
                {
                    let error_code = unsafe { DeleteUnicastIpAddressEntry(entry) };
                    if error_code == NO_ERROR {
                        unsafe { SetLastError(error_code) };
                    }
                }
            }

            unsafe { FreeMibTable(table as *mut _) };
            true
        } else {
            unsafe { SetLastError(error_code) };
            false
        }
    }
}