ping.rs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. #[macro_use]
  2. extern crate log;
  3. extern crate env_logger;
  4. extern crate getopts;
  5. extern crate smoltcp;
  6. extern crate byteorder;
  7. mod utils;
  8. use std::str::FromStr;
  9. use std::time::Instant;
  10. use std::os::unix::io::AsRawFd;
  11. use smoltcp::phy::Device;
  12. use smoltcp::phy::wait as phy_wait;
  13. use smoltcp::wire::{EthernetAddress, IpAddress, IpCidr,
  14. Ipv4Address, Icmpv4Repr, Icmpv4Packet};
  15. use smoltcp::iface::{ArpCache, SliceArpCache, EthernetInterface};
  16. use smoltcp::socket::{SocketSet, IcmpSocket, IcmpSocketBuffer, IcmpPacketBuffer, IcmpEndpoint};
  17. use std::collections::HashMap;
  18. use byteorder::{ByteOrder, NetworkEndian};
  19. fn main() {
  20. utils::setup_logging("warn");
  21. let (mut opts, mut free) = utils::create_options();
  22. utils::add_tap_options(&mut opts, &mut free);
  23. utils::add_middleware_options(&mut opts, &mut free);
  24. opts.optopt("c", "count", "Amount of echo request packets to send (default: 4)", "COUNT");
  25. opts.optopt("i", "interval",
  26. "Interval between successive packets sent (seconds) (default: 1)", "INTERVAL");
  27. opts.optopt("", "timeout",
  28. "Maximum wait duration for an echo response packet (seconds) (default: 5)",
  29. "TIMEOUT");
  30. free.push("ADDRESS");
  31. let mut matches = utils::parse_options(&opts, free);
  32. let device = utils::parse_tap_options(&mut matches);
  33. let fd = device.as_raw_fd();
  34. let device = utils::parse_middleware_options(&mut matches, device, /*loopback=*/false);
  35. let device_caps = device.capabilities();
  36. let address = Ipv4Address::from_str(&matches.free[0]).expect("invalid address format");
  37. let count = matches.opt_str("count").map(|s| usize::from_str(&s).unwrap()).unwrap_or(4);
  38. let interval = matches.opt_str("interval").map(|s| u64::from_str(&s).unwrap()).unwrap_or(1);
  39. let timeout = matches.opt_str("timeout").map(|s| u64::from_str(&s).unwrap()).unwrap_or(5);
  40. let startup_time = Instant::now();
  41. let arp_cache = SliceArpCache::new(vec![Default::default(); 8]);
  42. let remote_addr = address;
  43. let local_addr = Ipv4Address::new(192, 168, 69, 1);
  44. let icmp_rx_buffer = IcmpSocketBuffer::new(vec![IcmpPacketBuffer::new(vec![0; 256])]);
  45. let icmp_tx_buffer = IcmpSocketBuffer::new(vec![IcmpPacketBuffer::new(vec![0; 256])]);
  46. let icmp_socket = IcmpSocket::new(icmp_rx_buffer, icmp_tx_buffer);
  47. let ethernet_addr = EthernetAddress([0x02, 0x00, 0x00, 0x00, 0x00, 0x02]);
  48. let ip_addr = IpCidr::new(IpAddress::from(local_addr), 24);
  49. let default_v4_gw = Ipv4Address::new(192, 168, 69, 100);
  50. let mut iface = EthernetInterface::new(
  51. device, Box::new(arp_cache) as Box<ArpCache>,
  52. ethernet_addr, [ip_addr], Some(default_v4_gw));
  53. let mut sockets = SocketSet::new(vec![]);
  54. let icmp_handle = sockets.add(icmp_socket);
  55. let mut send_at = 0;
  56. let mut seq_no = 0;
  57. let mut received = 0;
  58. let mut echo_payload = [0xffu8; 40];
  59. let mut waiting_queue = HashMap::new();
  60. let ident = 0x22b;
  61. let endpoint = IpAddress::Ipv4(remote_addr);
  62. loop {
  63. {
  64. let mut socket = sockets.get::<IcmpSocket>(icmp_handle);
  65. if !socket.is_open() {
  66. socket.bind(IcmpEndpoint::Ident(ident)).unwrap()
  67. }
  68. let timestamp = Instant::now().duration_since(startup_time);
  69. let timestamp_us = (timestamp.as_secs() * 1000000) +
  70. (timestamp.subsec_nanos() / 1000) as u64;
  71. if socket.can_send() && seq_no < count as u16 &&
  72. send_at <= utils::millis_since(startup_time) {
  73. NetworkEndian::write_u64(&mut echo_payload, timestamp_us);
  74. let icmp_repr = Icmpv4Repr::EchoRequest {
  75. ident: ident,
  76. seq_no,
  77. data: &echo_payload,
  78. };
  79. let icmp_payload = socket
  80. .send(icmp_repr.buffer_len(), endpoint)
  81. .unwrap();
  82. let mut icmp_packet = Icmpv4Packet::new(icmp_payload);
  83. icmp_repr.emit(&mut icmp_packet, &device_caps.checksum);
  84. waiting_queue.insert(seq_no, timestamp);
  85. seq_no += 1;
  86. send_at += interval * 1000;
  87. }
  88. if socket.can_recv() {
  89. let (payload, _) = socket.recv().unwrap();
  90. let icmp_packet = Icmpv4Packet::new(&payload);
  91. let icmp_repr = Icmpv4Repr::parse(&icmp_packet, &device_caps.checksum).unwrap();
  92. if let Icmpv4Repr::EchoReply { seq_no, data, .. } = icmp_repr {
  93. if let Some(_) = waiting_queue.get(&seq_no) {
  94. let packet_timestamp_us = NetworkEndian::read_u64(data);
  95. println!("{} bytes from {}: icmp_seq={}, time={:.3}ms",
  96. data.len(), remote_addr, seq_no,
  97. (timestamp_us - packet_timestamp_us) as f64 / 1000.0);
  98. waiting_queue.remove(&seq_no);
  99. received += 1;
  100. }
  101. }
  102. }
  103. waiting_queue.retain(|seq, from| {
  104. if (timestamp - *from).as_secs() < timeout {
  105. true
  106. } else {
  107. println!("From {} icmp_seq={} timeout", remote_addr, seq);
  108. false
  109. }
  110. });
  111. if seq_no == count as u16 && waiting_queue.is_empty() {
  112. break
  113. }
  114. }
  115. let timestamp = utils::millis_since(startup_time);
  116. let poll_at = iface.poll(&mut sockets, timestamp).expect("poll error");
  117. let resume_at = [poll_at, Some(send_at)].iter().flat_map(|x| *x).min();
  118. phy_wait(fd, resume_at.map(|at| at.saturating_sub(timestamp))).expect("wait error");
  119. }
  120. println!("--- {} ping statistics ---", remote_addr);
  121. println!("{} packets transmitted, {} received, {:.0}% packet loss",
  122. seq_no, received, 100.0 * (seq_no - received) as f64 / seq_no as f64);
  123. }