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
use crate::{IfLuid, IphlpNetworkAdapterInfo};
use ipnetwork::IpNetwork;
use std::collections::VecDeque;
use windows::Win32::NetworkManagement::IpHelper::{
DeleteIpForwardEntry2, FreeMibTable, GetIpForwardTable2, MIB_IPFORWARD_TABLE2,
};
use windows::Win32::Networking::WinSock::AF_UNSPEC;
use windows::Win32::{
Foundation::{SetLastError, ERROR_OBJECT_ALREADY_EXISTS, ERROR_SUCCESS, NO_ERROR},
NetworkManagement::IpHelper::{
CreateIpForwardEntry2, InitializeIpForwardEntry, MIB_IPFORWARD_ROW2,
},
Networking::WinSock::{
NlroManual, AF_INET, AF_INET6, IN6_ADDR, IN_ADDR, MIB_IPPROTO_NT_STATIC,
},
};
impl IphlpNetworkAdapterInfo {
/// Configures IPv4 network interface routes (Wireguard AllowedIps parameter).
///
/// # Arguments
///
/// * `ips`: Vec of IpNetwork (Ipv4Network or Ipv6Network) subnets to configure
///
/// # Returns
///
/// * `VecDeque<MIB_IPFORWARD_ROW2>`: VecDeque of MIB_IPFORWARD_ROW2 on success
///
/// # Safety
///
/// This function uses unsafe Windows API calls to initialize and create IP forward entries.
/// The caller should ensure that the provided IPv4/IPv6 subnets are valid and
/// that the network interface is properly configured before calling this function.
pub fn add_routes_ipv4(&self, ips: Vec<IpNetwork>) -> VecDeque<MIB_IPFORWARD_ROW2> {
let mut ret_val = VecDeque::new();
for ip in ips {
if let IpNetwork::V4(subnet_v4) = ip {
let mut forward_row = MIB_IPFORWARD_ROW2::default();
unsafe { InitializeIpForwardEntry(&mut forward_row) };
forward_row.InterfaceIndex = self.if_index;
forward_row.InterfaceLuid = self.luid.into();
forward_row.DestinationPrefix.Prefix.si_family = AF_INET;
forward_row.DestinationPrefix.Prefix.Ipv4.sin_family = AF_INET;
forward_row
.DestinationPrefix
.Prefix
.Ipv4
.sin_addr
.S_un
.S_addr = u32::from_ne_bytes(subnet_v4.ip().octets());
forward_row.DestinationPrefix.PrefixLength = subnet_v4.prefix();
forward_row.NextHop.si_family = AF_INET;
forward_row.NextHop.Ipv4.sin_family = AF_INET;
forward_row.NextHop.Ipv4.sin_addr = IN_ADDR::default();
forward_row.SitePrefixLength = 0;
forward_row.Metric = 0;
forward_row.Protocol = MIB_IPPROTO_NT_STATIC;
forward_row.Origin = NlroManual;
let error_code = unsafe { CreateIpForwardEntry2(&forward_row) };
if error_code == NO_ERROR || error_code == ERROR_OBJECT_ALREADY_EXISTS {
ret_val.push_back(forward_row);
} else {
unsafe { SetLastError(error_code) };
}
}
}
ret_val
}
/// Configures IPv6 network interface routes (Wireguard AllowedIps parameter).
///
/// # Arguments
///
/// * `ips`: Vec of IpNetwork (Ipv4Network or Ipv6Network) subnets to configure
///
/// # Returns
///
/// * `VecDeque<MIB_IPFORWARD_ROW2>`: VecDeque of MIB_IPFORWARD_ROW2 on success
///
/// # Safety
///
/// This function uses unsafe Windows API calls to initialize and create IP forward entries.
/// The caller should ensure that the provided IPv4/IPv6 subnets are valid and
/// that the network interface is properly configured before calling this function.
pub fn add_routes_ipv6(&self, ips: Vec<IpNetwork>) -> VecDeque<MIB_IPFORWARD_ROW2> {
let mut return_value = VecDeque::new();
for ip in ips {
if let IpNetwork::V6(subnet_v6) = ip {
let mut forward_row = MIB_IPFORWARD_ROW2::default();
unsafe { InitializeIpForwardEntry(&mut forward_row) };
forward_row.InterfaceIndex = self.ipv6_if_index;
forward_row.InterfaceLuid = self.luid.into();
forward_row.DestinationPrefix.Prefix.si_family = AF_INET6;
forward_row.DestinationPrefix.Prefix.Ipv6.sin6_family = AF_INET6;
forward_row.DestinationPrefix.Prefix.Ipv6.sin6_addr.u.Byte =
subnet_v6.ip().octets();
forward_row.DestinationPrefix.PrefixLength = subnet_v6.prefix();
forward_row.NextHop.si_family = AF_INET6;
forward_row.NextHop.Ipv6.sin6_family = AF_INET6;
forward_row.NextHop.Ipv6.sin6_addr = IN6_ADDR::default();
forward_row.SitePrefixLength = 0;
forward_row.Metric = 0;
forward_row.Protocol = MIB_IPPROTO_NT_STATIC;
forward_row.Origin = NlroManual;
let status = unsafe { CreateIpForwardEntry2(&forward_row) };
if status == NO_ERROR || status == ERROR_OBJECT_ALREADY_EXISTS {
return_value.push_back(forward_row);
}
}
}
return_value
}
/// Deletes routing table entry by MIB_IPFORWARD_ROW2 reference.
///
/// # Arguments
///
/// * `address`: Reference to MIB_IPFORWARD_ROW2
///
/// # Returns
///
/// * `bool`: `true` if successful, `false` otherwise
///
/// # Safety
///
/// This function uses an unsafe Windows API call to delete IP forward entries.
/// The caller should ensure that the provided MIB_IPFORWARD_ROW2 reference is valid before calling this function.
pub fn delete_route(address: &MIB_IPFORWARD_ROW2) -> bool {
unsafe { SetLastError(ERROR_SUCCESS) };
let error_code = unsafe { DeleteIpForwardEntry2(address) };
if error_code == NO_ERROR {
true
} else {
unsafe { SetLastError(error_code) };
false
}
}
/// Deletes routing table entries by MIB_IPFORWARD_ROW2 references.
///
/// # Arguments
///
/// * `addresses`: Vec of MIB_IPFORWARD_ROW2 references
///
/// # Returns
///
/// * `bool`: `true` if successful, `false` otherwise
///
/// # Safety
///
/// This function uses an unsafe Windows API call to delete IP forward entries.
/// The caller should ensure that the provided MIB_IPFORWARD_ROW2 reference is valid before calling this function.
pub fn delete_routes(addresses: &mut [MIB_IPFORWARD_ROW2]) -> bool {
let mut status = true;
unsafe { SetLastError(ERROR_SUCCESS) };
for address in addresses.iter() {
let error_code = unsafe { DeleteIpForwardEntry2(address) };
if error_code != NO_ERROR {
status = false;
unsafe { SetLastError(error_code) };
}
}
status
}
/// Removes all routing table entries associated with the network interface.
///
/// # Returns
///
/// * `bool`: `true` if successful, `false` otherwise
///
/// # Safety
///
/// This function uses unsafe Windows API calls to get the IP forward table, delete IP forward entries,
/// and free the MIB table. The caller should ensure that the network interface is properly configured
/// before calling this function.
pub fn reset_adapter_routes(&self) -> bool {
let mut table: *mut MIB_IPFORWARD_TABLE2 = std::ptr::null_mut();
let error_code = unsafe { GetIpForwardTable2(AF_UNSPEC, &mut table) };
if error_code == NO_ERROR {
let num_entries = unsafe { (*table).NumEntries };
for i in 0..num_entries {
let entry = unsafe { &mut (*table).Table[i as usize] };
if IfLuid::from(entry.InterfaceLuid) == self.luid {
unsafe { DeleteIpForwardEntry2(entry) };
}
}
unsafe { FreeMibTable(table as *mut _) };
return true;
} else {
unsafe { SetLastError(error_code) };
}
false
}
}