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
#[cfg(unix)]
use std::os::unix::io::{FromRawFd, IntoRawFd};
#[cfg(windows)]
use std::os::windows::io::{FromRawSocket, IntoRawSocket};
use std::{
collections::HashMap,
io,
net::{IpAddr, SocketAddr},
sync::Arc,
time::Instant,
};
use parking_lot::Mutex;
use socket2::{Domain, Protocol, Socket, Type};
use tokio::{
net::UdpSocket,
sync::oneshot,
task::{self, JoinHandle},
};
use tracing::debug;
use crate::{
config::Config,
icmp::{icmpv4::Icmpv4Packet, icmpv6::Icmpv6Packet},
IcmpPacket, PingIdentifier, PingSequence, Pinger, SurgeError, ICMP,
};
#[derive(Clone)]
pub(crate) struct AsyncSocket {
inner: Arc<UdpSocket>,
}
impl AsyncSocket {
pub(crate) fn new(config: &Config) -> io::Result<Self> {
let socket = match config.kind {
ICMP::V4 => Socket::new(Domain::IPV4, Type::RAW, Some(Protocol::ICMPV4))?,
ICMP::V6 => Socket::new(Domain::IPV6, Type::RAW, Some(Protocol::ICMPV6))?,
};
socket.set_nonblocking(true)?;
if let Some(sock_addr) = &config.bind {
socket.bind(sock_addr)?;
}
#[cfg(any(target_os = "android", target_os = "fuchsia", target_os = "linux"))]
if let Some(interface) = &config.interface {
socket.bind_device(Some(interface.as_bytes()))?;
}
if let Some(ttl) = config.ttl {
socket.set_ttl(ttl)?;
}
#[cfg(target_os = "freebsd")]
if let Some(fib) = config.fib {
socket.set_fib(fib)?;
}
#[cfg(windows)]
let socket = UdpSocket::from_std(unsafe {
std::net::UdpSocket::from_raw_socket(socket.into_raw_socket())
})?;
#[cfg(unix)]
let socket =
UdpSocket::from_std(unsafe { std::net::UdpSocket::from_raw_fd(socket.into_raw_fd()) })?;
Ok(Self {
inner: Arc::new(socket),
})
}
pub(crate) async fn recv_from(&self, buf: &mut [u8]) -> io::Result<(usize, SocketAddr)> {
self.inner.recv_from(buf).await
}
pub(crate) async fn send_to(&self, buf: &mut [u8], target: &SocketAddr) -> io::Result<usize> {
self.inner.send_to(buf, target).await
}
}
#[derive(PartialEq, Eq, Hash)]
struct ReplyToken(IpAddr, PingIdentifier, PingSequence);
pub(crate) struct Reply {
pub timestamp: Instant,
pub packet: IcmpPacket,
}
#[derive(Clone, Default)]
pub(crate) struct ReplyMap(Arc<Mutex<HashMap<ReplyToken, oneshot::Sender<Reply>>>>);
impl ReplyMap {
pub fn new_waiter(
&self,
host: IpAddr,
ident: PingIdentifier,
seq: PingSequence,
) -> Result<oneshot::Receiver<Reply>, SurgeError> {
let (tx, rx) = oneshot::channel();
if self
.0
.lock()
.insert(ReplyToken(host, ident, seq), tx)
.is_some()
{
return Err(SurgeError::IdenticalRequests { host, ident, seq });
}
Ok(rx)
}
pub(crate) fn remove(
&self,
host: IpAddr,
ident: PingIdentifier,
seq: PingSequence,
) -> Option<oneshot::Sender<Reply>> {
self.0.lock().remove(&ReplyToken(host, ident, seq))
}
}
#[derive(Clone)]
pub struct Client {
socket: AsyncSocket,
reply_map: ReplyMap,
recv: Arc<JoinHandle<()>>,
}
impl Drop for Client {
fn drop(&mut self) {
if Arc::strong_count(&self.recv) <= 1 {
self.recv.abort();
}
}
}
impl Client {
pub fn new(config: &Config) -> io::Result<Self> {
let socket = AsyncSocket::new(config)?;
let reply_map = ReplyMap::default();
let recv = task::spawn(recv_task(socket.clone(), reply_map.clone()));
Ok(Self {
socket,
reply_map,
recv: Arc::new(recv),
})
}
pub async fn pinger(&self, host: IpAddr, ident: PingIdentifier) -> Pinger {
Pinger::new(host, ident, self.socket.clone(), self.reply_map.clone())
}
}
async fn recv_task(socket: AsyncSocket, reply_map: ReplyMap) {
let mut buf = [0; 2048];
loop {
if let Ok((sz, addr)) = socket.recv_from(&mut buf).await {
let timestamp = Instant::now();
let message = &buf[..sz];
let packet = {
let result = match addr.ip() {
IpAddr::V4(_addr) => Icmpv4Packet::decode(message).map(IcmpPacket::V4),
IpAddr::V6(addr) => Icmpv6Packet::decode(message, addr).map(IcmpPacket::V6),
};
match result {
Ok(packet) => packet,
Err(err) => {
debug!("error decoding ICMP packet: {:?}", err);
continue;
}
}
};
if let Some(waiter) =
reply_map.remove(addr.ip(), packet.get_identifier(), packet.get_sequence())
{
let _ = waiter.send(Reply { timestamp, packet });
} else {
debug!("no one is waiting for ICMP packet ({:?})", packet);
}
}
}
}