ping/lib.rs
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 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#![deny(missing_docs)]
//! Helpers to ping an IPv4 or IPv6 address by sending ICMP echo requests and
//! waiting for ICMP echo replies.
//!
//! Functionality in this crate relies on [ICMP sockets], a kind of socket where
//! each payload read/written contains ICMP headers.
//!
//! As a starting point, see [`new_unicast_sink_and_stream`], which is built
//! on top of the other facilities in the crate and models pinging as sending
//! an ICMP echo request whenever a value is sent to the sink, and a stream
//! which yields an item for every echo reply received.
//!
//! [ICMP sockets]: https://lwn.net/Articles/422330/
#[cfg(target_os = "fuchsia")]
mod fuchsia;
#[cfg(target_os = "fuchsia")]
pub use fuchsia::{new_icmp_socket, IpExt as FuchsiaIpExt};
use futures::{ready, Sink, SinkExt as _, Stream, TryStreamExt as _};
use net_types::ip::{Ip, Ipv4, Ipv6};
use std::marker::PhantomData;
use std::pin::Pin;
use std::task::{Context, Poll};
use thiserror::Error;
use zerocopy::byteorder::network_endian::U16;
use zerocopy::{FromBytes, Immutable, IntoBytes, KnownLayout, Unaligned};
/// The number of bytes of an ICMP (v4 or v6) header.
pub const ICMP_HEADER_LEN: usize = std::mem::size_of::<IcmpHeader>();
/// ICMP header representation.
#[repr(C)]
#[derive(KnownLayout, FromBytes, IntoBytes, Immutable, Unaligned, Debug, PartialEq, Eq, Clone)]
struct IcmpHeader {
r#type: u8,
code: u8,
checksum: U16,
id: U16,
sequence: U16,
}
impl IcmpHeader {
fn new<I: IpExt>(sequence: u16) -> Self {
Self {
r#type: I::ECHO_REQUEST_TYPE,
code: 0,
checksum: 0.into(),
id: 0.into(),
sequence: sequence.into(),
}
}
}
/// Ping error.
#[derive(Debug, Error)]
pub enum PingError {
/// Send error.
#[error("send error")]
Send(#[source] std::io::Error),
/// Send length mismatch.
#[error("wrong number of bytes sent, got: {got}, want: {want}")]
SendLength {
/// Number of bytes sent.
got: usize,
/// Number of bytes expected to be sent.
want: usize,
},
/// Recv error.
#[error("recv error")]
Recv(#[source] std::io::Error),
/// ICMP header parsing error.
#[error("failed to parse ICMP header")]
Parse,
/// Reply type mismatch.
#[error("wrong reply type, got: {got}, want: {want}")]
ReplyType {
/// ICMP type received in reply.
got: u8,
/// ICMP type expected in reply.
want: u8,
},
/// Reply code mismatch.
#[error("non-zero reply code: {0}")]
ReplyCode(u8),
/// ICMP message body mismatch.
#[error("reply message body mismatch, got: {got:?}, want: {want:?}")]
Body {
/// Body received in reply.
got: Vec<u8>,
/// Body expected in reply.
want: Vec<u8>,
},
}
/// Addresses which can be converted from `socket2::SockAddr`.
///
/// This trait exists to get around not being able to implement the foreign trait
/// `TryFrom<socket2::SockAddr>` for the foreign types `std::net::SocketAddr(V4|V6)?`.
pub trait TryFromSockAddr: Sized {
/// Try to convert from `socket2::SockAddr`.
fn try_from(value: socket2::SockAddr) -> std::io::Result<Self>;
}
impl TryFromSockAddr for std::net::SocketAddrV4 {
fn try_from(addr: socket2::SockAddr) -> std::io::Result<Self> {
addr.as_socket_ipv4().ok_or_else(|| {
std::io::Error::new(
std::io::ErrorKind::Other,
format!("socket address is not v4 {:?}", addr),
)
})
}
}
impl TryFromSockAddr for std::net::SocketAddrV6 {
fn try_from(addr: socket2::SockAddr) -> std::io::Result<Self> {
addr.as_socket_ipv6().ok_or_else(|| {
std::io::Error::new(
std::io::ErrorKind::Other,
format!("socket address is not v6 {:?}", addr),
)
})
}
}
/// Trait for IP protocol versions.
pub trait IpExt: Ip + Unpin {
/// IP Socket address type.
type SockAddr: Into<socket2::SockAddr>
+ TryFromSockAddr
+ Clone
+ Copy
+ Unpin
+ PartialEq
+ std::fmt::Debug
+ std::fmt::Display
+ Eq
+ std::hash::Hash;
/// ICMP socket domain.
const DOMAIN: socket2::Domain;
/// ICMP socket protocol.
const PROTOCOL: socket2::Protocol;
/// ICMP echo request type.
const ECHO_REQUEST_TYPE: u8;
/// ICMP echo reply type.
const ECHO_REPLY_TYPE: u8;
}
// TODO(https://fxbug.dev/323955204): Implement ext trait on net_types::ip::Ipv4
// instead and remove the Ipv4 type.
impl IpExt for Ipv4 {
type SockAddr = std::net::SocketAddrV4;
const DOMAIN: socket2::Domain = socket2::Domain::IPV4;
const PROTOCOL: socket2::Protocol = socket2::Protocol::ICMPV4;
const ECHO_REQUEST_TYPE: u8 = 8;
const ECHO_REPLY_TYPE: u8 = 0;
}
// TODO(https://fxbug.dev/323955204): Implement ext trait on net_types::ip::Ipv6
// instead and remove the Ipv6 type.
impl IpExt for Ipv6 {
type SockAddr = std::net::SocketAddrV6;
const DOMAIN: socket2::Domain = socket2::Domain::IPV6;
const PROTOCOL: socket2::Protocol = socket2::Protocol::ICMPV6;
const ECHO_REQUEST_TYPE: u8 = 128;
const ECHO_REPLY_TYPE: u8 = 129;
}
/// Async ICMP socket.
pub trait IcmpSocket<I>: Unpin
where
I: IpExt,
{
/// Async method for receiving an ICMP packet.
///
/// Upon successful return, `buf` will contain an ICMP packet.
fn async_recv_from(
&self,
buf: &mut [u8],
cx: &mut Context<'_>,
) -> Poll<std::io::Result<(usize, I::SockAddr)>>;
/// Async method for sending an ICMP packet.
///
/// `bufs` must contain a valid ICMP packet.
fn async_send_to_vectored(
&self,
bufs: &[std::io::IoSlice<'_>],
addr: &I::SockAddr,
cx: &mut Context<'_>,
) -> Poll<std::io::Result<usize>>;
/// Binds this to an interface so that packets can only flow in/out via the specified
/// interface.
///
/// If `interface` is `None`, the binding is removed.
fn bind_device(&self, interface: Option<&[u8]>) -> std::io::Result<()>;
}
/// Parameters of a ping request/reply.
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
pub struct PingData<I: IpExt> {
/// The destination address of a ping request; or the source address of a ping reply.
pub addr: I::SockAddr,
/// The sequence number in the ICMP header.
pub sequence: u16,
/// The body of the echo request/reply.
pub body: Vec<u8>,
}
// TODO(https://github.com/rust-lang/rust/issues/76560): Define N as the length of the message body
// rather than the length of the ICMP packet.
/// Create a ping sink and stream for pinging a unicast destination with the same body for every
/// packet.
///
/// Echo replies received with a source address not equal to `addr` will be silently dropped. Echo
/// replies with a body not equal to `body` will result in an error on the stream.
pub fn new_unicast_sink_and_stream<'a, I, S, const N: usize>(
socket: &'a S,
addr: &'a I::SockAddr,
body: &'a [u8],
) -> (impl Sink<u16, Error = PingError> + 'a, impl Stream<Item = Result<u16, PingError>> + 'a)
where
I: IpExt,
S: IcmpSocket<I>,
{
(
PingSink::new(socket).with(move |sequence| {
futures::future::ok(PingData { addr: addr.clone(), sequence, body: body.to_vec() })
}),
PingStream::<I, S, N>::new(socket).try_filter_map(
move |PingData { addr: got_addr, sequence, body: got_body }| {
futures::future::ready(if got_addr == *addr {
if got_body == body {
Ok(Some(sequence))
} else {
Err(PingError::Body { got: got_body, want: body.to_vec() })
}
} else {
Ok(None)
})
},
),
)
}
// TODO(https://github.com/rust-lang/rust/issues/76560): Define N as the length of the message body
// rather than the length of the ICMP packet.
/// Stream of received ping replies.
pub struct PingStream<'a, I, S, const N: usize>
where
I: IpExt,
S: IcmpSocket<I>,
{
socket: &'a S,
recv_buf: [u8; N],
_marker: PhantomData<I>,
}
impl<'a, I, S, const N: usize> PingStream<'a, I, S, N>
where
I: IpExt,
S: IcmpSocket<I>,
{
/// Construct a stream from an `IcmpSocket`.
///
/// `N` must be set to the length of the largest ICMP body expected
/// to be received plus the 8 bytes of overhead due to the ICMP
/// header, otherwise received packets may be truncated. Note
/// that this does not need to include the 8-byte overhead of
/// the ICMP header.
pub fn new(socket: &'a S) -> Self {
Self { socket, recv_buf: [0; N], _marker: PhantomData::<I> }
}
}
impl<'a, I, S, const N: usize> futures::stream::Stream for PingStream<'a, I, S, N>
where
I: IpExt,
S: IcmpSocket<I>,
{
type Item = Result<PingData<I>, PingError>;
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
let ping_stream = Pin::into_inner(self);
let buf = &mut ping_stream.recv_buf[..];
let socket = &ping_stream.socket;
Poll::Ready(Some(
ready!(socket.async_recv_from(buf, cx))
.map_err(PingError::Recv)
.and_then(|(len, addr)| verify_packet::<I>(addr, &ping_stream.recv_buf[..len])),
))
}
}
/// Sink for sending ping requests.
pub struct PingSink<'a, I, S>
where
I: IpExt,
S: IcmpSocket<I>,
{
socket: &'a S,
packet: Option<(I::SockAddr, IcmpHeader, Vec<u8>)>,
_marker: PhantomData<I>,
}
impl<'a, I, S> PingSink<'a, I, S>
where
I: IpExt,
S: IcmpSocket<I>,
{
/// Construct a sink from an `IcmpSocket`.
pub fn new(socket: &'a S) -> Self {
Self { socket, packet: None, _marker: PhantomData::<I> }
}
}
impl<'a, I, S> futures::sink::Sink<PingData<I>> for PingSink<'a, I, S>
where
I: IpExt,
S: IcmpSocket<I>,
{
type Error = PingError;
fn poll_ready(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
self.poll_flush(cx)
}
fn start_send(
mut self: Pin<&mut Self>,
PingData { addr, sequence, body }: PingData<I>,
) -> Result<(), Self::Error> {
let header = IcmpHeader::new::<I>(sequence);
assert_eq!(
self.packet.replace((addr, header, body)),
None,
"start_send called while element has yet to be flushed"
);
Ok(())
}
fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
Poll::Ready(match &self.packet {
Some((addr, header, body)) => {
match ready!(self.socket.async_send_to_vectored(
&[
std::io::IoSlice::new(header.as_bytes()),
std::io::IoSlice::new(body.as_bytes()),
],
addr,
cx
)) {
Ok(got) => {
let want = std::mem::size_of_val(&header) + body.len();
if got != want {
Err(PingError::SendLength { got, want })
} else {
self.packet = None;
Ok(())
}
}
Err(e) => Err(PingError::Send(e)),
}
}
None => Ok(()),
})
}
fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
self.poll_flush(cx)
}
}
fn verify_packet<I: IpExt>(addr: I::SockAddr, packet: &[u8]) -> Result<PingData<I>, PingError> {
let (reply, body): (zerocopy::Ref<_, IcmpHeader>, _) = zerocopy::Ref::from_prefix(packet)
.map_err(Into::into)
.map_err(|_: zerocopy::SizeError<_, _>| PingError::Parse)?;
// The identifier cannot be verified, since ICMP socket implementations rewrites the field on
// send and uses its value to demultiplex packets for delivery to sockets on receive.
//
// Also, don't bother verifying the checksum, since ICMP socket implementations must have
// verified the checksum since the code and identifier fields must be inspected. Also, the
// ICMPv6 checksum computation includes a pseudo header which includes the src and dst
// addresses, and the dst/local address is not readily available.
let &IcmpHeader { r#type, code, checksum: _, id: _, sequence } = zerocopy::Ref::into_ref(reply);
if r#type != I::ECHO_REPLY_TYPE {
return Err(PingError::ReplyType { got: r#type, want: I::ECHO_REPLY_TYPE });
}
if code != 0 {
return Err(PingError::ReplyCode(code));
}
Ok(PingData { addr, sequence: sequence.into(), body: body.to_vec() })
}
#[cfg(test)]
mod test {
use super::{IcmpHeader, IcmpSocket, Ipv4, Ipv6, PingData, PingSink, PingStream};
use futures::{FutureExt as _, SinkExt as _, StreamExt as _, TryStreamExt as _};
use net_declare::{std_socket_addr_v4, std_socket_addr_v6};
use std::cell::RefCell;
use std::collections::VecDeque;
use std::task::{Context, Poll};
use zerocopy::IntoBytes as _;
// A fake impl of a IcmpSocket which computes and buffers a reply when `send_to` is called,
// which is then returned when `recv_from` is called. The order in which replies are returned
// is guaranteed to be FIFO.
#[derive(Default, Debug)]
struct FakeSocket<I: IpExt> {
// NB: interior mutability is necessary here because the `IcmpSocket` trait's methods
// operate on &self.
buffer: RefCell<VecDeque<(Vec<u8>, I::SockAddr)>>,
}
impl<I: IpExt> FakeSocket<I> {
fn new() -> Self {
Self { buffer: RefCell::new(VecDeque::new()) }
}
}
impl<I: IpExt> IcmpSocket<I> for FakeSocket<I> {
fn async_recv_from(
&self,
buf: &mut [u8],
_cx: &mut Context<'_>,
) -> Poll<std::io::Result<(usize, I::SockAddr)>> {
Poll::Ready(
self.buffer
.borrow_mut()
.pop_front()
.ok_or_else(|| {
std::io::Error::new(
std::io::ErrorKind::WouldBlock,
"fake socket request buffer is empty",
)
})
.and_then(|(reply, addr)| {
if buf.len() < reply.len() {
Err(std::io::Error::new(
std::io::ErrorKind::Other,
format!(
"recv buffer too small, got: {}, want: {}",
buf.len(),
reply.len()
),
))
} else {
buf[..reply.len()].copy_from_slice(&reply);
Ok((reply.len(), addr))
}
}),
)
}
fn async_send_to_vectored(
&self,
bufs: &[std::io::IoSlice<'_>],
addr: &I::SockAddr,
_cx: &mut Context<'_>,
) -> Poll<std::io::Result<usize>> {
let mut buf = bufs
.iter()
.map(|io_slice| io_slice.as_bytes())
.flatten()
.copied()
.collect::<Vec<u8>>();
let (mut header, _): (zerocopy::Ref<_, IcmpHeader>, _) =
match zerocopy::Ref::from_prefix(&mut buf[..]).map_err(Into::into) {
Ok(layout_verified) => layout_verified,
Err(zerocopy::SizeError { .. }) => {
return Poll::Ready(Err(std::io::Error::new(
std::io::ErrorKind::InvalidInput,
"failed to parse ICMP header from provided bytes",
)))
}
};
header.r#type = I::ECHO_REPLY_TYPE;
let len = buf.len();
let () = self.buffer.borrow_mut().push_back((buf, addr.clone()));
Poll::Ready(Ok(len))
}
fn bind_device(&self, interface: Option<&[u8]>) -> std::io::Result<()> {
panic!("unexpected call to bind_device({:?})", interface);
}
}
trait IpExt: super::IpExt {
// NB: This is only a function because there is no way to create a constant for any of the
// socket address types.
fn test_addr() -> Self::SockAddr;
}
impl IpExt for Ipv4 {
fn test_addr() -> Self::SockAddr {
// A port must be specified in the socket addr, but it is irrelevant for ICMP sockets,
// so just set it to 0.
std_socket_addr_v4!("1.2.3.4:0")
}
}
impl IpExt for Ipv6 {
fn test_addr() -> Self::SockAddr {
// A port must be specified in the socket addr, but it is irrelevant for ICMP sockets,
// so just set it to 0.
std_socket_addr_v6!("[abcd::1]:0")
}
}
const PING_MESSAGE: &str = "Hello from ping library unit test!";
const PING_COUNT: u16 = 3;
const PING_SEQ_RANGE: std::ops::RangeInclusive<u16> = 1..=PING_COUNT;
#[test]
fn test_ipv4() {
test_ping::<Ipv4>();
}
#[test]
fn test_ipv6() {
test_ping::<Ipv6>();
}
fn test_ping<I: IpExt>() {
let socket = FakeSocket::<I>::new();
let packets = PING_SEQ_RANGE
.into_iter()
.map(|sequence| PingData {
addr: I::test_addr(),
sequence,
body: PING_MESSAGE.as_bytes().to_vec(),
})
.collect::<Vec<_>>();
let packet_stream = futures::stream::iter(packets.iter().cloned());
let () = PingSink::new(&socket)
.send_all(&mut packet_stream.map(Ok))
.now_or_never()
.expect("ping request send blocked unexpectedly")
.expect("ping send error");
let replies =
PingStream::<_, _, { PING_MESSAGE.len() + std::mem::size_of::<IcmpHeader>() }>::new(
&socket,
)
.take(PING_COUNT.into())
.try_collect::<Vec<_>>()
.now_or_never()
.expect("ping reply stream blocked unexpectedly")
.expect("failed to collect ping reply stream");
assert_eq!(packets, replies);
}
}