@@ -31,6 +31,11 @@ pub struct AsyncIcmpSocketImpl(tokio::net::UdpSocket);
31
31
pub struct AsyncUdpSocketWindows ( tokio:: net:: UdpSocket ) ;
32
32
33
33
/// Implementation of traceroute using `ping.exe`
34
+ ///
35
+ /// This monstrosity exists because the Windows firewall is not helpful enough to allow us to
36
+ /// permit a process (the daemon) to receive ICMP TimeExceeded packets. We can get around this by
37
+ /// using `ping.exe`, which does work for some reason. My best guess is that it has special kernel
38
+ /// access to be able to do this.
34
39
pub async fn traceroute_using_ping ( opt : & TracerouteOpt ) -> anyhow:: Result < LeakStatus > {
35
40
let interface_ip = get_interface_ip ( & opt. interface ) ?;
36
41
@@ -44,12 +49,16 @@ pub async fn traceroute_using_ping(opt: &TracerouteOpt) -> anyhow::Result<LeakSt
44
49
ping_tasks. push ( async move {
45
50
sleep ( probe_delay) . await ;
46
51
52
+ log:: debug!( "sending probe packet (ttl={ttl})" ) ;
53
+
54
+ // ping.exe will send ICMP Echo packets to the destination, and since it's running in
55
+ // the kernel it will be able to receive TimeExceeded responses.
47
56
let ping_path = r"C:\Windows\System32\ping.exe" ;
48
57
let output = tokio:: process:: Command :: new ( ping_path)
49
58
. args ( [ "-i" , & ttl. to_string ( ) ] )
50
- . args ( [ "-n" , "1" ] )
59
+ . args ( [ "-n" , "1" ] ) // number of pings
51
60
. args ( [ "-w" , & SEND_TIMEOUT . as_millis ( ) . to_string ( ) ] )
52
- . args ( [ "-S" , & interface_ip. to_string ( ) ] )
61
+ . args ( [ "-S" , & interface_ip. to_string ( ) ] ) // bind to interface IP
53
62
. arg ( opt. destination . to_string ( ) )
54
63
. kill_on_drop ( true )
55
64
. output ( )
@@ -64,7 +73,7 @@ pub async fn traceroute_using_ping(opt: &TracerouteOpt) -> anyhow::Result<LeakSt
64
73
log:: trace!( "ping stdout: {stdout}" ) ;
65
74
log:: trace!( "ping stderr: {_stderr}" ) ;
66
75
67
- // Dumbly search stdout for a line that looks like this:
76
+ // Dumbly parse stdout for a line that looks like this:
68
77
// Reply from <ip>: TTL expired
69
78
70
79
if !stdout. contains ( "TTL expired" ) {
0 commit comments