@@ -97,140 +97,3 @@ pub async fn traceroute_using_ping(opt: &TracerouteOpt) -> anyhow::Result<LeakSt
97
97
result = wait_for_first_leak. fuse( ) => result,
98
98
}
99
99
}
100
-
101
- // TODO: remove this
102
- /*
103
- use std::{
104
- ffi::c_void,
105
- io, mem,
106
- net::{IpAddr, SocketAddr},
107
- os::windows::io::{AsRawSocket, AsSocket, FromRawSocket, IntoRawSocket},
108
- ptr::null_mut,
109
- str,
110
- };
111
-
112
- use anyhow::{anyhow, bail, Context};
113
- use futures::{select, stream::FuturesUnordered, FutureExt, StreamExt};
114
- use socket2::Socket;
115
- use talpid_windows::net::{get_ip_address_for_interface, luid_from_alias, AddressFamily};
116
-
117
- use tokio::time::sleep;
118
- use windows_sys::Win32::Networking::WinSock::{
119
- WSAGetLastError, WSAIoctl, SIO_RCVALL, SOCKET, SOCKET_ERROR,
120
- };
121
-
122
- use crate::{
123
- traceroute::{
124
- Ip, TracerouteOpt, DEFAULT_TTL_RANGE, LEAK_TIMEOUT, PROBE_INTERVAL, SEND_TIMEOUT,
125
- },
126
- Interface, LeakInfo, LeakStatus,
127
- };
128
- use super::{common, AsyncIcmpSocket, AsyncUdpSocket, Traceroute};
129
-
130
- pub struct TracerouteWindows;
131
-
132
- pub struct AsyncIcmpSocketImpl(tokio::net::UdpSocket);
133
-
134
- pub struct AsyncUdpSocketWindows(tokio::net::UdpSocket);
135
-
136
- impl Traceroute for TracerouteWindows {
137
- type AsyncIcmpSocket = AsyncIcmpSocketImpl;
138
- type AsyncUdpSocket = AsyncUdpSocketWindows;
139
-
140
- fn bind_socket_to_interface(
141
- socket: &Socket,
142
- interface: &Interface,
143
- ip_version: Ip,
144
- ) -> anyhow::Result<()> {
145
- common::bind_socket_to_interface::<Self>(socket, interface, ip_version)
146
- }
147
-
148
- fn get_interface_ip(interface: &Interface, ip_version: Ip) -> anyhow::Result<IpAddr> {
149
- get_interface_ip(interface, ip_version)
150
- }
151
-
152
- fn configure_icmp_socket(socket: &socket2::Socket, _opt: &TracerouteOpt) -> anyhow::Result<()> {
153
- configure_icmp_socket(socket)
154
- }
155
- }
156
-
157
- impl AsyncIcmpSocket for AsyncIcmpSocketImpl {
158
- fn from_socket2(socket: Socket) -> Self {
159
- let raw_socket = socket.as_socket().as_raw_socket();
160
- mem::forget(socket);
161
- let std_socket = unsafe { std::net::UdpSocket::from_raw_socket(raw_socket) };
162
- let tokio_socket = tokio::net::UdpSocket::from_std(std_socket).unwrap();
163
- AsyncIcmpSocketImpl(tokio_socket)
164
- }
165
-
166
- fn set_ttl(&self, ttl: u32) -> anyhow::Result<()> {
167
- self.0
168
- .set_ttl(ttl)
169
- .context("Failed to set TTL value for ICMP socket")
170
- }
171
-
172
- async fn send_to(&self, packet: &[u8], destination: impl Into<IpAddr>) -> io::Result<usize> {
173
- self.0.send_to(packet, (destination.into(), 0)).await
174
- }
175
-
176
- async fn recv_from(&self, buf: &mut [u8]) -> io::Result<(usize, std::net::IpAddr)> {
177
- let (n, source) = self.0.recv_from(buf).await?;
178
- Ok((n, source.ip()))
179
- }
180
-
181
- async fn recv_ttl_responses(&self, opt: &TracerouteOpt) -> anyhow::Result<LeakStatus> {
182
- common::recv_ttl_responses(self, &opt.interface).await
183
- }
184
- }
185
-
186
- impl AsyncUdpSocket for AsyncUdpSocketWindows {
187
- fn from_socket2(socket: socket2::Socket) -> Self {
188
- // HACK: Wrap the socket in a tokio::net::UdpSocket to be able to use it async
189
- let udp_socket = unsafe { std::net::UdpSocket::from_raw_socket(socket.into_raw_socket()) };
190
- let udp_socket = tokio::net::UdpSocket::from_std(udp_socket).unwrap();
191
- AsyncUdpSocketWindows(udp_socket)
192
- }
193
-
194
- fn set_ttl(&self, ttl: u32) -> anyhow::Result<()> {
195
- self.0
196
- .set_ttl(ttl)
197
- .context("Failed to set TTL value for UDP socket")
198
- }
199
-
200
- async fn send_to(
201
- &self,
202
- packet: &[u8],
203
- destination: impl Into<SocketAddr>,
204
- ) -> std::io::Result<usize> {
205
- self.0.send_to(packet, destination.into()).await
206
- }
207
- }
208
-
209
- /// Configure the raw socket we use for listening to ICMP responses.
210
- ///
211
- /// This will set the `SIO_RCVALL`-option.
212
- pub fn configure_icmp_socket(socket: &Socket) -> anyhow::Result<()> {
213
- let j = 1;
214
- let mut _in: u32 = 0;
215
- let result = unsafe {
216
- WSAIoctl(
217
- socket.as_raw_socket() as SOCKET,
218
- SIO_RCVALL,
219
- &j as *const _ as *const c_void,
220
- size_of_val(&j) as u32,
221
- null_mut(),
222
- 0,
223
- &mut _in as *mut u32,
224
- null_mut(),
225
- None,
226
- )
227
- };
228
-
229
- if result == SOCKET_ERROR {
230
- let code = unsafe { WSAGetLastError() };
231
- bail!("Failed to call WSAIoctl(listen_socket, SIO_RCVALL, ...), code = {code}");
232
- }
233
-
234
- Ok(())
235
- }
236
- */
0 commit comments