Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 2 | /* |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 3 | * Mini ping implementation for busybox |
| 4 | * |
| 5 | * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> |
| 6 | * |
Rob Landley | 42eddba | 2005-12-15 08:04:17 +0000 | [diff] [blame] | 7 | * Adapted from the ping in netkit-base 0.10: |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 8 | * Copyright (c) 1989 The Regents of the University of California. |
Denis Vlasenko | 35d4da0 | 2007-01-22 14:04:27 +0000 | [diff] [blame] | 9 | * All rights reserved. |
| 10 | * |
| 11 | * This code is derived from software contributed to Berkeley by |
| 12 | * Mike Muuss. |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 13 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 14 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 15 | */ |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 16 | /* from ping6.c: |
| 17 | * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> |
| 18 | * |
| 19 | * This version of ping is adapted from the ping in netkit-base 0.10, |
| 20 | * which is: |
| 21 | * |
| 22 | * Original copyright notice is retained at the end of this file. |
| 23 | * |
| 24 | * This version is an adaptation of ping.c from busybox. |
| 25 | * The code was modified by Bart Visscher <magick@linux-fan.com> |
| 26 | */ |
Joachim Nilsson | 714e2b7 | 2010-11-28 23:01:18 +0100 | [diff] [blame] | 27 | //config:config PING |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 28 | //config: bool "ping (10 kb)" |
Joachim Nilsson | 714e2b7 | 2010-11-28 23:01:18 +0100 | [diff] [blame] | 29 | //config: default y |
Joachim Nilsson | 714e2b7 | 2010-11-28 23:01:18 +0100 | [diff] [blame] | 30 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 31 | //config: ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to |
| 32 | //config: elicit an ICMP ECHO_RESPONSE from a host or gateway. |
Joachim Nilsson | 714e2b7 | 2010-11-28 23:01:18 +0100 | [diff] [blame] | 33 | //config: |
| 34 | //config:config PING6 |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 35 | //config: bool "ping6 (11 kb)" |
Joachim Nilsson | 714e2b7 | 2010-11-28 23:01:18 +0100 | [diff] [blame] | 36 | //config: default y |
Denys Vlasenko | 8342397 | 2016-11-23 09:25:57 +0100 | [diff] [blame] | 37 | //config: depends on FEATURE_IPV6 |
Joachim Nilsson | 714e2b7 | 2010-11-28 23:01:18 +0100 | [diff] [blame] | 38 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 39 | //config: Alias to "ping -6". |
Joachim Nilsson | 714e2b7 | 2010-11-28 23:01:18 +0100 | [diff] [blame] | 40 | //config: |
| 41 | //config:config FEATURE_FANCY_PING |
| 42 | //config: bool "Enable fancy ping output" |
| 43 | //config: default y |
Denys Vlasenko | 8342397 | 2016-11-23 09:25:57 +0100 | [diff] [blame] | 44 | //config: depends on PING || PING6 |
Joachim Nilsson | 714e2b7 | 2010-11-28 23:01:18 +0100 | [diff] [blame] | 45 | //config: help |
Denys Vlasenko | a680f40 | 2017-07-21 11:58:43 +0200 | [diff] [blame] | 46 | //config: With this option off, ping will say "HOST is alive!" |
| 47 | //config: or terminate with SIGALRM in 5 seconds otherwise. |
| 48 | //config: No command-line options will be recognized. |
Joachim Nilsson | 714e2b7 | 2010-11-28 23:01:18 +0100 | [diff] [blame] | 49 | |
Denys Vlasenko | b9f2d9f | 2011-01-18 13:58:01 +0100 | [diff] [blame] | 50 | /* Needs socket(AF_INET, SOCK_RAW, IPPROTO_ICMP), therefore BB_SUID_MAYBE: */ |
| 51 | //applet:IF_PING(APPLET(ping, BB_DIR_BIN, BB_SUID_MAYBE)) |
| 52 | //applet:IF_PING6(APPLET(ping6, BB_DIR_BIN, BB_SUID_MAYBE)) |
Joachim Nilsson | 714e2b7 | 2010-11-28 23:01:18 +0100 | [diff] [blame] | 53 | |
| 54 | //kbuild:lib-$(CONFIG_PING) += ping.o |
| 55 | //kbuild:lib-$(CONFIG_PING6) += ping.o |
| 56 | |
| 57 | //usage:#if !ENABLE_FEATURE_FANCY_PING |
| 58 | //usage:# define ping_trivial_usage |
| 59 | //usage: "HOST" |
| 60 | //usage:# define ping_full_usage "\n\n" |
Denys Vlasenko | b164cdb | 2020-12-18 23:33:19 +0100 | [diff] [blame] | 61 | //usage: "Send ICMP ECHO_REQUESTs to HOST" |
Joachim Nilsson | 714e2b7 | 2010-11-28 23:01:18 +0100 | [diff] [blame] | 62 | //usage:# define ping6_trivial_usage |
| 63 | //usage: "HOST" |
| 64 | //usage:# define ping6_full_usage "\n\n" |
Denys Vlasenko | b164cdb | 2020-12-18 23:33:19 +0100 | [diff] [blame] | 65 | //usage: "Send ICMP ECHO_REQUESTs to HOST" |
Joachim Nilsson | 714e2b7 | 2010-11-28 23:01:18 +0100 | [diff] [blame] | 66 | //usage:#else |
| 67 | //usage:# define ping_trivial_usage |
| 68 | //usage: "[OPTIONS] HOST" |
| 69 | //usage:# define ping_full_usage "\n\n" |
Denys Vlasenko | b164cdb | 2020-12-18 23:33:19 +0100 | [diff] [blame] | 70 | //usage: "Send ICMP ECHO_REQUESTs to HOST\n" |
Denys Vlasenko | af4a07a | 2013-03-15 00:11:35 +0100 | [diff] [blame] | 71 | //usage: IF_PING6( |
Joachim Nilsson | 714e2b7 | 2010-11-28 23:01:18 +0100 | [diff] [blame] | 72 | //usage: "\n -4,-6 Force IP or IPv6 name resolution" |
Denys Vlasenko | af4a07a | 2013-03-15 00:11:35 +0100 | [diff] [blame] | 73 | //usage: ) |
Joachim Nilsson | 714e2b7 | 2010-11-28 23:01:18 +0100 | [diff] [blame] | 74 | //usage: "\n -c CNT Send only CNT pings" |
Denys Vlasenko | f3d705f | 2017-01-21 03:46:35 +0100 | [diff] [blame] | 75 | //usage: "\n -s SIZE Send SIZE data bytes in packets (default 56)" |
Denys Vlasenko | 36d198e | 2018-08-03 18:50:50 +0200 | [diff] [blame] | 76 | //usage: "\n -i SECS Interval" |
Henrique Rodrigues | 9eddf16 | 2022-08-01 12:55:32 +0100 | [diff] [blame] | 77 | //usage: "\n -A Ping as soon as reply is received" |
Joachim Nilsson | 714e2b7 | 2010-11-28 23:01:18 +0100 | [diff] [blame] | 78 | //usage: "\n -t TTL Set TTL" |
Denys Vlasenko | f3d705f | 2017-01-21 03:46:35 +0100 | [diff] [blame] | 79 | //usage: "\n -I IFACE/IP Source interface or IP address" |
| 80 | //usage: "\n -W SEC Seconds to wait for the first response (default 10)" |
Joachim Nilsson | 714e2b7 | 2010-11-28 23:01:18 +0100 | [diff] [blame] | 81 | //usage: "\n (after all -c CNT packets are sent)" |
| 82 | //usage: "\n -w SEC Seconds until ping exits (default:infinite)" |
| 83 | //usage: "\n (can exit earlier with -c CNT)" |
Denys Vlasenko | c8f6c1d | 2020-12-20 11:25:50 +0100 | [diff] [blame] | 84 | //usage: "\n -q Quiet, only display output at start/finish" |
| 85 | //usage: "\n -p HEXBYTE Payload pattern" |
Joachim Nilsson | 714e2b7 | 2010-11-28 23:01:18 +0100 | [diff] [blame] | 86 | //usage: |
| 87 | //usage:# define ping6_trivial_usage |
| 88 | //usage: "[OPTIONS] HOST" |
| 89 | //usage:# define ping6_full_usage "\n\n" |
Denys Vlasenko | b164cdb | 2020-12-18 23:33:19 +0100 | [diff] [blame] | 90 | //usage: "Send ICMP ECHO_REQUESTs to HOST\n" |
Joachim Nilsson | 714e2b7 | 2010-11-28 23:01:18 +0100 | [diff] [blame] | 91 | //usage: "\n -c CNT Send only CNT pings" |
Denys Vlasenko | f3d705f | 2017-01-21 03:46:35 +0100 | [diff] [blame] | 92 | //usage: "\n -s SIZE Send SIZE data bytes in packets (default 56)" |
Denys Vlasenko | 36d198e | 2018-08-03 18:50:50 +0200 | [diff] [blame] | 93 | //usage: "\n -i SECS Interval" |
Henrique Rodrigues | 9eddf16 | 2022-08-01 12:55:32 +0100 | [diff] [blame] | 94 | //usage: "\n -A Ping as soon as reply is received" |
Denys Vlasenko | c8f6c1d | 2020-12-20 11:25:50 +0100 | [diff] [blame] | 95 | ///////: "\n -t TTL Set TTL" |
| 96 | ///////^^^^^ -t not tested for IPv6, might be not working |
Denys Vlasenko | f3d705f | 2017-01-21 03:46:35 +0100 | [diff] [blame] | 97 | //usage: "\n -I IFACE/IP Source interface or IP address" |
Denys Vlasenko | c8f6c1d | 2020-12-20 11:25:50 +0100 | [diff] [blame] | 98 | //usage: "\n -W SEC Seconds to wait for the first response (default 10)" |
| 99 | //usage: "\n (after all -c CNT packets are sent)" |
| 100 | //usage: "\n -w SEC Seconds until ping exits (default:infinite)" |
| 101 | //usage: "\n (can exit earlier with -c CNT)" |
| 102 | //usage: "\n -q Quiet, only display output at start/finish" |
| 103 | //usage: "\n -p HEXBYTE Payload pattern" |
Joachim Nilsson | 714e2b7 | 2010-11-28 23:01:18 +0100 | [diff] [blame] | 104 | //usage: |
| 105 | //usage:#endif |
| 106 | //usage: |
| 107 | //usage:#define ping_example_usage |
| 108 | //usage: "$ ping localhost\n" |
| 109 | //usage: "PING slag (127.0.0.1): 56 data bytes\n" |
| 110 | //usage: "64 bytes from 127.0.0.1: icmp_seq=0 ttl=255 time=20.1 ms\n" |
| 111 | //usage: "\n" |
| 112 | //usage: "--- debian ping statistics ---\n" |
| 113 | //usage: "1 packets transmitted, 1 packets received, 0% packet loss\n" |
| 114 | //usage: "round-trip min/avg/max = 20.1/20.1/20.1 ms\n" |
| 115 | //usage:#define ping6_example_usage |
| 116 | //usage: "$ ping6 ip6-localhost\n" |
| 117 | //usage: "PING ip6-localhost (::1): 56 data bytes\n" |
| 118 | //usage: "64 bytes from ::1: icmp6_seq=0 ttl=64 time=20.1 ms\n" |
| 119 | //usage: "\n" |
| 120 | //usage: "--- ip6-localhost ping statistics ---\n" |
| 121 | //usage: "1 packets transmitted, 1 packets received, 0% packet loss\n" |
| 122 | //usage: "round-trip min/avg/max = 20.1/20.1/20.1 ms\n" |
| 123 | |
Denys Vlasenko | 0c4dbd4 | 2017-09-18 16:28:43 +0200 | [diff] [blame] | 124 | #include <net/if.h> |
Alex Samorukov | ca2dc96 | 2021-01-04 01:31:11 +0100 | [diff] [blame] | 125 | #if defined(__FreeBSD__) |
| 126 | # include <netinet/in.h> /* struct ip and friends */ |
| 127 | # include <netinet/ip.h> |
| 128 | #endif |
Denys Vlasenko | 0c4dbd4 | 2017-09-18 16:28:43 +0200 | [diff] [blame] | 129 | #include <netinet/ip_icmp.h> |
| 130 | #include "libbb.h" |
| 131 | #include "common_bufsiz.h" |
| 132 | |
| 133 | #ifdef __BIONIC__ |
| 134 | /* should be in netinet/ip_icmp.h */ |
| 135 | # define ICMP_DEST_UNREACH 3 /* Destination Unreachable */ |
| 136 | # define ICMP_SOURCE_QUENCH 4 /* Source Quench */ |
| 137 | # define ICMP_REDIRECT 5 /* Redirect (change route) */ |
| 138 | # define ICMP_ECHO 8 /* Echo Request */ |
| 139 | # define ICMP_TIME_EXCEEDED 11 /* Time Exceeded */ |
| 140 | # define ICMP_PARAMETERPROB 12 /* Parameter Problem */ |
| 141 | # define ICMP_TIMESTAMP 13 /* Timestamp Request */ |
| 142 | # define ICMP_TIMESTAMPREPLY 14 /* Timestamp Reply */ |
| 143 | # define ICMP_INFO_REQUEST 15 /* Information Request */ |
| 144 | # define ICMP_INFO_REPLY 16 /* Information Reply */ |
| 145 | # define ICMP_ADDRESS 17 /* Address Mask Request */ |
| 146 | # define ICMP_ADDRESSREPLY 18 /* Address Mask Reply */ |
| 147 | #endif |
| 148 | |
James Clarke | 4d0971b | 2017-10-07 18:53:21 +0100 | [diff] [blame] | 149 | /* Some operating systems, like GNU/Hurd, don't define SOL_RAW, but do have |
| 150 | * IPPROTO_RAW. Since the IPPROTO definitions are also valid to use for |
| 151 | * setsockopt (and take the same value as their corresponding SOL definitions, |
| 152 | * if they exist), we can just fall back on IPPROTO_RAW. */ |
| 153 | #ifndef SOL_RAW |
| 154 | # define SOL_RAW IPPROTO_RAW |
| 155 | #endif |
| 156 | |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 157 | #if ENABLE_PING6 |
Denys Vlasenko | ad7d94b | 2009-11-20 18:12:12 +0100 | [diff] [blame] | 158 | # include <netinet/icmp6.h> |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 159 | /* I see RENUMBERED constants in bits/in.h - !!? |
| 160 | * What a fuck is going on with libc? Is it a glibc joke? */ |
Denys Vlasenko | ad7d94b | 2009-11-20 18:12:12 +0100 | [diff] [blame] | 161 | # ifdef IPV6_2292HOPLIMIT |
| 162 | # undef IPV6_HOPLIMIT |
| 163 | # define IPV6_HOPLIMIT IPV6_2292HOPLIMIT |
| 164 | # endif |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 165 | #endif |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 166 | |
Alex Samorukov | ca2dc96 | 2021-01-04 01:31:11 +0100 | [diff] [blame] | 167 | #if defined(__FreeBSD__) |
| 168 | /** |
| 169 | * On BSD the IPv4 struct is called struct ip and instead of iXX |
| 170 | * the members are called ip_XX. One could change this code to use |
| 171 | * struct ip but that would require to define _BSD_SOURCE and that |
| 172 | * might have other complications. Instead make sure struct iphdr |
| 173 | * is present on FreeBSD. The below is taken from GLIBC. |
| 174 | * |
| 175 | * The GNU C Library is free software; you can redistribute it and/or |
| 176 | * modify it under the terms of the GNU Lesser General Public |
| 177 | * License as published by the Free Software Foundation; either |
| 178 | * version 2.1 of the License, or (at your option) any later version. |
| 179 | */ |
| 180 | struct iphdr { |
| 181 | # if BYTE_ORDER == LITTLE_ENDIAN |
| 182 | unsigned int ihl:4; |
| 183 | unsigned int version:4; |
| 184 | # elif BYTE_ORDER == BIG_ENDIAN |
| 185 | unsigned int version:4; |
| 186 | unsigned int ihl:4; |
| 187 | # endif |
| 188 | uint8_t tos; |
| 189 | uint16_t tot_len; |
| 190 | uint16_t id; |
| 191 | uint16_t frag_off; |
| 192 | uint8_t ttl; |
| 193 | uint8_t protocol; |
| 194 | uint16_t check; |
| 195 | uint32_t saddr; |
| 196 | uint32_t daddr; |
| 197 | /*The options start here. */ |
| 198 | }; |
| 199 | #endif |
| 200 | |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 201 | enum { |
| 202 | DEFDATALEN = 56, |
| 203 | MAXIPLEN = 60, |
| 204 | MAXICMPLEN = 76, |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 205 | MAX_DUP_CHK = (8 * 128), |
| 206 | MAXWAIT = 10, |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 207 | PINGINTERVAL = 1, /* 1 second */ |
Denys Vlasenko | 59f4667 | 2013-06-28 00:30:46 +0200 | [diff] [blame] | 208 | pingsock = 0, |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 209 | }; |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 210 | |
Denys Vlasenko | 59f4667 | 2013-06-28 00:30:46 +0200 | [diff] [blame] | 211 | static void |
| 212 | #if ENABLE_PING6 |
| 213 | create_icmp_socket(len_and_sockaddr *lsa) |
| 214 | #else |
| 215 | create_icmp_socket(void) |
| 216 | #define create_icmp_socket(lsa) create_icmp_socket() |
| 217 | #endif |
| 218 | { |
| 219 | int sock; |
| 220 | #if ENABLE_PING6 |
| 221 | if (lsa->u.sa.sa_family == AF_INET6) |
| 222 | sock = socket(AF_INET6, SOCK_RAW, IPPROTO_ICMPV6); |
| 223 | else |
| 224 | #endif |
| 225 | sock = socket(AF_INET, SOCK_RAW, 1); /* 1 == ICMP */ |
| 226 | if (sock < 0) { |
Denys Vlasenko | f0058b1 | 2014-01-09 11:53:26 +0100 | [diff] [blame] | 227 | if (errno == EPERM) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 228 | bb_simple_error_msg_and_die(bb_msg_perm_denied_are_you_root); |
| 229 | bb_simple_perror_msg_and_die(bb_msg_can_not_create_raw_socket); |
Denys Vlasenko | 59f4667 | 2013-06-28 00:30:46 +0200 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | xmove_fd(sock, pingsock); |
| 233 | } |
| 234 | |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 235 | #if !ENABLE_FEATURE_FANCY_PING |
Denis Vlasenko | 4a5cf16 | 2006-11-20 00:48:22 +0000 | [diff] [blame] | 236 | |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 237 | /* Simple version */ |
Denis Vlasenko | 4a5cf16 | 2006-11-20 00:48:22 +0000 | [diff] [blame] | 238 | |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 239 | struct globals { |
| 240 | char *hostname; |
| 241 | char packet[DEFDATALEN + MAXIPLEN + MAXICMPLEN]; |
Jonas Danielsson | 4d5acd2 | 2016-06-23 18:26:32 +0200 | [diff] [blame] | 242 | uint16_t myid; |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 243 | } FIX_ALIASING; |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 244 | #define G (*(struct globals*)bb_common_bufsiz1) |
Denys Vlasenko | 47cfbf3 | 2016-04-21 18:18:48 +0200 | [diff] [blame] | 245 | #define INIT_G() do { setup_common_bufsiz(); } while (0) |
Denis Vlasenko | cb6874c | 2006-09-02 16:13:36 +0000 | [diff] [blame] | 246 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 247 | static void noresp(int ign UNUSED_PARAM) |
Eric Andersen | b5474c4 | 2002-03-20 11:59:28 +0000 | [diff] [blame] | 248 | { |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 249 | printf("No response from %s\n", G.hostname); |
Eric Andersen | 4e486a5 | 2003-01-12 06:08:33 +0000 | [diff] [blame] | 250 | exit(EXIT_FAILURE); |
Eric Andersen | b5474c4 | 2002-03-20 11:59:28 +0000 | [diff] [blame] | 251 | } |
Eric Andersen | 19db07b | 1999-12-11 08:41:28 +0000 | [diff] [blame] | 252 | |
Denis Vlasenko | e935602 | 2007-01-29 18:03:54 +0000 | [diff] [blame] | 253 | static void ping4(len_and_sockaddr *lsa) |
Eric Andersen | 19db07b | 1999-12-11 08:41:28 +0000 | [diff] [blame] | 254 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 255 | struct icmp *pkt; |
Denys Vlasenko | 59f4667 | 2013-06-28 00:30:46 +0200 | [diff] [blame] | 256 | int c; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 257 | |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 258 | pkt = (struct icmp *) G.packet; |
Denys Vlasenko | 59f4667 | 2013-06-28 00:30:46 +0200 | [diff] [blame] | 259 | /*memset(pkt, 0, sizeof(G.packet)); already is */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 260 | pkt->icmp_type = ICMP_ECHO; |
Jonas Danielsson | 4d5acd2 | 2016-06-23 18:26:32 +0200 | [diff] [blame] | 261 | pkt->icmp_id = G.myid; |
Denys Vlasenko | 4a0eb03 | 2020-10-01 03:07:22 +0200 | [diff] [blame] | 262 | pkt->icmp_cksum = inet_cksum(pkt, sizeof(G.packet)); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 263 | |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 264 | xsendto(pingsock, G.packet, DEFDATALEN + ICMP_MINLEN, &lsa->u.sa, lsa->len); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 265 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 266 | /* listen for replies */ |
| 267 | while (1) { |
Denys Vlasenko | 59f4667 | 2013-06-28 00:30:46 +0200 | [diff] [blame] | 268 | #if 0 |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 269 | struct sockaddr_in from; |
Mike Frysinger | 03e827a | 2005-07-26 23:00:59 +0000 | [diff] [blame] | 270 | socklen_t fromlen = sizeof(from); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 271 | |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 272 | c = recvfrom(pingsock, G.packet, sizeof(G.packet), 0, |
Denis Vlasenko | 806116b | 2006-12-31 12:14:16 +0000 | [diff] [blame] | 273 | (struct sockaddr *) &from, &fromlen); |
Denys Vlasenko | 59f4667 | 2013-06-28 00:30:46 +0200 | [diff] [blame] | 274 | #else |
| 275 | c = recv(pingsock, G.packet, sizeof(G.packet), 0); |
| 276 | #endif |
Denis Vlasenko | 806116b | 2006-12-31 12:14:16 +0000 | [diff] [blame] | 277 | if (c < 0) { |
Denis Vlasenko | 44c2eb2 | 2007-01-08 23:55:33 +0000 | [diff] [blame] | 278 | if (errno != EINTR) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 279 | bb_simple_perror_msg("recvfrom"); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 280 | continue; |
| 281 | } |
| 282 | if (c >= 76) { /* ip + icmp */ |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 283 | struct iphdr *iphdr = (struct iphdr *) G.packet; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 284 | |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 285 | pkt = (struct icmp *) (G.packet + (iphdr->ihl << 2)); /* skip ip hdr */ |
Jonas Danielsson | 4d5acd2 | 2016-06-23 18:26:32 +0200 | [diff] [blame] | 286 | if (pkt->icmp_id != G.myid) |
| 287 | continue; /* not our ping */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 288 | if (pkt->icmp_type == ICMP_ECHOREPLY) |
| 289 | break; |
| 290 | } |
| 291 | } |
Eric Andersen | 19db07b | 1999-12-11 08:41:28 +0000 | [diff] [blame] | 292 | } |
| 293 | |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 294 | #if ENABLE_PING6 |
| 295 | static void ping6(len_and_sockaddr *lsa) |
| 296 | { |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 297 | struct icmp6_hdr *pkt; |
Denys Vlasenko | 59f4667 | 2013-06-28 00:30:46 +0200 | [diff] [blame] | 298 | int c; |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 299 | int sockopt; |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 300 | |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 301 | pkt = (struct icmp6_hdr *) G.packet; |
Denys Vlasenko | 59f4667 | 2013-06-28 00:30:46 +0200 | [diff] [blame] | 302 | /*memset(pkt, 0, sizeof(G.packet)); already is */ |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 303 | pkt->icmp6_type = ICMP6_ECHO_REQUEST; |
Jonas Danielsson | 4d5acd2 | 2016-06-23 18:26:32 +0200 | [diff] [blame] | 304 | pkt->icmp6_id = G.myid; |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 305 | |
| 306 | sockopt = offsetof(struct icmp6_hdr, icmp6_cksum); |
Denys Vlasenko | c52cbea | 2015-08-24 19:48:03 +0200 | [diff] [blame] | 307 | setsockopt_int(pingsock, SOL_RAW, IPV6_CHECKSUM, sockopt); |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 308 | |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 309 | xsendto(pingsock, G.packet, DEFDATALEN + sizeof(struct icmp6_hdr), &lsa->u.sa, lsa->len); |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 310 | |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 311 | /* listen for replies */ |
| 312 | while (1) { |
Denys Vlasenko | 59f4667 | 2013-06-28 00:30:46 +0200 | [diff] [blame] | 313 | #if 0 |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 314 | struct sockaddr_in6 from; |
| 315 | socklen_t fromlen = sizeof(from); |
| 316 | |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 317 | c = recvfrom(pingsock, G.packet, sizeof(G.packet), 0, |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 318 | (struct sockaddr *) &from, &fromlen); |
Denys Vlasenko | 59f4667 | 2013-06-28 00:30:46 +0200 | [diff] [blame] | 319 | #else |
| 320 | c = recv(pingsock, G.packet, sizeof(G.packet), 0); |
| 321 | #endif |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 322 | if (c < 0) { |
| 323 | if (errno != EINTR) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 324 | bb_simple_perror_msg("recvfrom"); |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 325 | continue; |
| 326 | } |
Denys Vlasenko | 59f4667 | 2013-06-28 00:30:46 +0200 | [diff] [blame] | 327 | if (c >= ICMP_MINLEN) { /* icmp6_hdr */ |
Jonas Danielsson | 4d5acd2 | 2016-06-23 18:26:32 +0200 | [diff] [blame] | 328 | if (pkt->icmp6_id != G.myid) |
| 329 | continue; /* not our ping */ |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 330 | if (pkt->icmp6_type == ICMP6_ECHO_REPLY) |
| 331 | break; |
| 332 | } |
| 333 | } |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 334 | } |
| 335 | #endif |
| 336 | |
Denys Vlasenko | ad7d94b | 2009-11-20 18:12:12 +0100 | [diff] [blame] | 337 | #if !ENABLE_PING6 |
| 338 | # define common_ping_main(af, argv) common_ping_main(argv) |
| 339 | #endif |
| 340 | static int common_ping_main(sa_family_t af, char **argv) |
Eric Andersen | 19db07b | 1999-12-11 08:41:28 +0000 | [diff] [blame] | 341 | { |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 342 | len_and_sockaddr *lsa; |
Denis Vlasenko | 3483e85 | 2007-07-02 15:47:52 +0000 | [diff] [blame] | 343 | |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 344 | INIT_G(); |
| 345 | |
Denys Vlasenko | ad7d94b | 2009-11-20 18:12:12 +0100 | [diff] [blame] | 346 | #if ENABLE_PING6 |
Denis Vlasenko | 3483e85 | 2007-07-02 15:47:52 +0000 | [diff] [blame] | 347 | while ((++argv)[0] && argv[0][0] == '-') { |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 348 | if (argv[0][1] == '4') { |
| 349 | af = AF_INET; |
| 350 | continue; |
| 351 | } |
| 352 | if (argv[0][1] == '6') { |
| 353 | af = AF_INET6; |
| 354 | continue; |
| 355 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 356 | bb_show_usage(); |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 357 | } |
| 358 | #else |
| 359 | argv++; |
| 360 | #endif |
| 361 | |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 362 | G.hostname = *argv; |
| 363 | if (!G.hostname) |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 364 | bb_show_usage(); |
| 365 | |
| 366 | #if ENABLE_PING6 |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 367 | lsa = xhost_and_af2sockaddr(G.hostname, 0, af); |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 368 | #else |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 369 | lsa = xhost_and_af2sockaddr(G.hostname, 0, AF_INET); |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 370 | #endif |
| 371 | /* Set timer _after_ DNS resolution */ |
| 372 | signal(SIGALRM, noresp); |
| 373 | alarm(5); /* give the host 5000ms to respond */ |
| 374 | |
Denys Vlasenko | 59f4667 | 2013-06-28 00:30:46 +0200 | [diff] [blame] | 375 | create_icmp_socket(lsa); |
Jonas Danielsson | 4d5acd2 | 2016-06-23 18:26:32 +0200 | [diff] [blame] | 376 | G.myid = (uint16_t) getpid(); |
Denys Vlasenko | 623e55a | 2020-12-13 15:53:06 +0100 | [diff] [blame] | 377 | /* we can use native-endian ident, but other Unix ping/traceroute |
| 378 | * utils use *big-endian pid*, and e.g. traceroute on our machine may be |
| 379 | * *not* from busybox, idents may collide. Follow the convention: |
| 380 | */ |
| 381 | G.myid = htons(G.myid); |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 382 | #if ENABLE_PING6 |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 383 | if (lsa->u.sa.sa_family == AF_INET6) |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 384 | ping6(lsa); |
| 385 | else |
| 386 | #endif |
Denis Vlasenko | e935602 | 2007-01-29 18:03:54 +0000 | [diff] [blame] | 387 | ping4(lsa); |
Denys Vlasenko | a680f40 | 2017-07-21 11:58:43 +0200 | [diff] [blame] | 388 | if (ENABLE_FEATURE_CLEAN_UP) |
| 389 | close(pingsock); |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 390 | printf("%s is alive!\n", G.hostname); |
Matt Kraai | 3e856ce | 2000-12-01 02:55:13 +0000 | [diff] [blame] | 391 | return EXIT_SUCCESS; |
Eric Andersen | 19db07b | 1999-12-11 08:41:28 +0000 | [diff] [blame] | 392 | } |
| 393 | |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 394 | |
| 395 | #else /* FEATURE_FANCY_PING */ |
| 396 | |
Denis Vlasenko | 4a5cf16 | 2006-11-20 00:48:22 +0000 | [diff] [blame] | 397 | |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 398 | /* Full(er) version */ |
Denis Vlasenko | 4a5cf16 | 2006-11-20 00:48:22 +0000 | [diff] [blame] | 399 | |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 400 | /* -c NUM, -t NUM, -w NUM, -W NUM */ |
Denys Vlasenko | 36d198e | 2018-08-03 18:50:50 +0200 | [diff] [blame] | 401 | #define OPT_STRING "qvAc:+s:t:+w:+W:+I:np:i:4"IF_PING6("6") |
Denis Vlasenko | 4a5cf16 | 2006-11-20 00:48:22 +0000 | [diff] [blame] | 402 | enum { |
| 403 | OPT_QUIET = 1 << 0, |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 404 | OPT_VERBOSE = 1 << 1, |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 405 | OPT_A = 1 << 2, |
| 406 | OPT_c = 1 << 3, |
| 407 | OPT_s = 1 << 4, |
| 408 | OPT_t = 1 << 5, |
| 409 | OPT_w = 1 << 6, |
| 410 | OPT_W = 1 << 7, |
| 411 | OPT_I = 1 << 8, |
| 412 | /*OPT_n = 1 << 9, - ignored */ |
| 413 | OPT_p = 1 << 10, |
Denys Vlasenko | 36d198e | 2018-08-03 18:50:50 +0200 | [diff] [blame] | 414 | OPT_i = 1 << 11, |
| 415 | OPT_IPV4 = 1 << 12, |
| 416 | OPT_IPV6 = (1 << 13) * ENABLE_PING6, |
Denis Vlasenko | 4a5cf16 | 2006-11-20 00:48:22 +0000 | [diff] [blame] | 417 | }; |
| 418 | |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 419 | |
Denis Vlasenko | 821cc25 | 2007-06-04 10:33:48 +0000 | [diff] [blame] | 420 | struct globals { |
Denis Vlasenko | 1a7afb4 | 2007-10-19 21:39:25 +0000 | [diff] [blame] | 421 | int if_index; |
Denis Vlasenko | 59f502b | 2008-10-27 11:54:45 +0000 | [diff] [blame] | 422 | char *str_I; |
Denis Vlasenko | 821cc25 | 2007-06-04 10:33:48 +0000 | [diff] [blame] | 423 | len_and_sockaddr *source_lsa; |
| 424 | unsigned datalen; |
Denis Vlasenko | 59f502b | 2008-10-27 11:54:45 +0000 | [diff] [blame] | 425 | unsigned pingcount; /* must be int-sized */ |
Joachim Nilsson | 714e2b7 | 2010-11-28 23:01:18 +0100 | [diff] [blame] | 426 | unsigned opt_ttl; |
Denis Vlasenko | 59f502b | 2008-10-27 11:54:45 +0000 | [diff] [blame] | 427 | unsigned long ntransmitted, nreceived, nrepeats; |
Denis Vlasenko | 821cc25 | 2007-06-04 10:33:48 +0000 | [diff] [blame] | 428 | uint16_t myid; |
Florian Fainelli | 6ff0551 | 2014-08-27 16:01:25 +0200 | [diff] [blame] | 429 | uint8_t pattern; |
Denis Vlasenko | 7679145 | 2007-06-18 08:55:57 +0000 | [diff] [blame] | 430 | unsigned tmin, tmax; /* in us */ |
| 431 | unsigned long long tsum; /* in us, sum of all times */ |
Denys Vlasenko | 256adb0 | 2018-02-13 23:53:24 +0100 | [diff] [blame] | 432 | unsigned cur_us; /* low word only, we don't need more */ |
| 433 | unsigned deadline_us; |
Denys Vlasenko | 36d198e | 2018-08-03 18:50:50 +0200 | [diff] [blame] | 434 | unsigned interval_us; |
Denis Vlasenko | 90c31b3 | 2008-04-07 00:46:29 +0000 | [diff] [blame] | 435 | unsigned timeout; |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 436 | unsigned sizeof_rcv_packet; |
| 437 | char *rcv_packet; /* [datalen + MAXIPLEN + MAXICMPLEN] */ |
| 438 | void *snd_packet; /* [datalen + ipv4/ipv6_const] */ |
Denis Vlasenko | 821cc25 | 2007-06-04 10:33:48 +0000 | [diff] [blame] | 439 | const char *hostname; |
| 440 | const char *dotted; |
| 441 | union { |
| 442 | struct sockaddr sa; |
| 443 | struct sockaddr_in sin; |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 444 | #if ENABLE_PING6 |
Denis Vlasenko | 821cc25 | 2007-06-04 10:33:48 +0000 | [diff] [blame] | 445 | struct sockaddr_in6 sin6; |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 446 | #endif |
Denis Vlasenko | 821cc25 | 2007-06-04 10:33:48 +0000 | [diff] [blame] | 447 | } pingaddr; |
Denys Vlasenko | 26a7e2e | 2013-06-28 01:33:47 +0200 | [diff] [blame] | 448 | unsigned char rcvd_tbl[MAX_DUP_CHK / 8]; |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 449 | } FIX_ALIASING; |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 450 | #define G (*(struct globals*)bb_common_bufsiz1) |
Denis Vlasenko | 821cc25 | 2007-06-04 10:33:48 +0000 | [diff] [blame] | 451 | #define if_index (G.if_index ) |
Denis Vlasenko | 1a7afb4 | 2007-10-19 21:39:25 +0000 | [diff] [blame] | 452 | #define source_lsa (G.source_lsa ) |
Denis Vlasenko | 59f502b | 2008-10-27 11:54:45 +0000 | [diff] [blame] | 453 | #define str_I (G.str_I ) |
Denis Vlasenko | 1a7afb4 | 2007-10-19 21:39:25 +0000 | [diff] [blame] | 454 | #define datalen (G.datalen ) |
Denis Vlasenko | 821cc25 | 2007-06-04 10:33:48 +0000 | [diff] [blame] | 455 | #define pingcount (G.pingcount ) |
Joachim Nilsson | 714e2b7 | 2010-11-28 23:01:18 +0100 | [diff] [blame] | 456 | #define opt_ttl (G.opt_ttl ) |
Denis Vlasenko | 821cc25 | 2007-06-04 10:33:48 +0000 | [diff] [blame] | 457 | #define myid (G.myid ) |
| 458 | #define tmin (G.tmin ) |
| 459 | #define tmax (G.tmax ) |
| 460 | #define tsum (G.tsum ) |
Denis Vlasenko | 90c31b3 | 2008-04-07 00:46:29 +0000 | [diff] [blame] | 461 | #define timeout (G.timeout ) |
Denis Vlasenko | 821cc25 | 2007-06-04 10:33:48 +0000 | [diff] [blame] | 462 | #define hostname (G.hostname ) |
| 463 | #define dotted (G.dotted ) |
| 464 | #define pingaddr (G.pingaddr ) |
| 465 | #define rcvd_tbl (G.rcvd_tbl ) |
Denis Vlasenko | 821cc25 | 2007-06-04 10:33:48 +0000 | [diff] [blame] | 466 | #define INIT_G() do { \ |
Denys Vlasenko | 47cfbf3 | 2016-04-21 18:18:48 +0200 | [diff] [blame] | 467 | setup_common_bufsiz(); \ |
Denys Vlasenko | ab3964d | 2015-10-13 14:50:20 +0200 | [diff] [blame] | 468 | BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \ |
Denis Vlasenko | 90c31b3 | 2008-04-07 00:46:29 +0000 | [diff] [blame] | 469 | datalen = DEFDATALEN; \ |
| 470 | timeout = MAXWAIT; \ |
Denis Vlasenko | 821cc25 | 2007-06-04 10:33:48 +0000 | [diff] [blame] | 471 | tmin = UINT_MAX; \ |
| 472 | } while (0) |
Eric Andersen | 19db07b | 1999-12-11 08:41:28 +0000 | [diff] [blame] | 473 | |
Eric Andersen | 19db07b | 1999-12-11 08:41:28 +0000 | [diff] [blame] | 474 | |
Denys Vlasenko | 26a7e2e | 2013-06-28 01:33:47 +0200 | [diff] [blame] | 475 | #define BYTE(bit) rcvd_tbl[(bit)>>3] |
| 476 | #define MASK(bit) (1 << ((bit) & 7)) |
| 477 | #define SET(bit) (BYTE(bit) |= MASK(bit)) |
| 478 | #define CLR(bit) (BYTE(bit) &= (~MASK(bit))) |
| 479 | #define TST(bit) (BYTE(bit) & MASK(bit)) |
Eric Andersen | 19db07b | 1999-12-11 08:41:28 +0000 | [diff] [blame] | 480 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 481 | static void print_stats_and_exit(int junk) NORETURN; |
| 482 | static void print_stats_and_exit(int junk UNUSED_PARAM) |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 483 | { |
Denys Vlasenko | af4a07a | 2013-03-15 00:11:35 +0100 | [diff] [blame] | 484 | unsigned long ul; |
| 485 | unsigned long nrecv; |
| 486 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 487 | signal(SIGINT, SIG_IGN); |
| 488 | |
Denys Vlasenko | af4a07a | 2013-03-15 00:11:35 +0100 | [diff] [blame] | 489 | nrecv = G.nreceived; |
| 490 | printf("\n--- %s ping statistics ---\n" |
| 491 | "%lu packets transmitted, " |
| 492 | "%lu packets received, ", |
| 493 | hostname, G.ntransmitted, nrecv |
| 494 | ); |
| 495 | if (G.nrepeats) |
| 496 | printf("%lu duplicates, ", G.nrepeats); |
| 497 | ul = G.ntransmitted; |
| 498 | if (ul != 0) |
| 499 | ul = (ul - nrecv) * 100 / ul; |
| 500 | printf("%lu%% packet loss\n", ul); |
Denis Vlasenko | 7679145 | 2007-06-18 08:55:57 +0000 | [diff] [blame] | 501 | if (tmin != UINT_MAX) { |
Denys Vlasenko | af4a07a | 2013-03-15 00:11:35 +0100 | [diff] [blame] | 502 | unsigned tavg = tsum / (nrecv + G.nrepeats); |
Denis Vlasenko | 7679145 | 2007-06-18 08:55:57 +0000 | [diff] [blame] | 503 | printf("round-trip min/avg/max = %u.%03u/%u.%03u/%u.%03u ms\n", |
| 504 | tmin / 1000, tmin % 1000, |
| 505 | tavg / 1000, tavg % 1000, |
| 506 | tmax / 1000, tmax % 1000); |
| 507 | } |
Denis Vlasenko | 90c31b3 | 2008-04-07 00:46:29 +0000 | [diff] [blame] | 508 | /* if condition is true, exit with 1 -- 'failure' */ |
Denys Vlasenko | 256adb0 | 2018-02-13 23:53:24 +0100 | [diff] [blame] | 509 | exit(nrecv == 0 || (G.deadline_us && nrecv < pingcount)); |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 510 | } |
| 511 | |
Denys Vlasenko | 281e7b8 | 2011-02-06 17:51:45 +0100 | [diff] [blame] | 512 | static void sendping_tail(void (*sp)(int), int size_pkt) |
Denis Vlasenko | e935602 | 2007-01-29 18:03:54 +0000 | [diff] [blame] | 513 | { |
Denis Vlasenko | c8e9993 | 2007-02-09 18:14:42 +0000 | [diff] [blame] | 514 | int sz; |
| 515 | |
Denys Vlasenko | 256adb0 | 2018-02-13 23:53:24 +0100 | [diff] [blame] | 516 | if (G.deadline_us) { |
| 517 | unsigned n = G.cur_us - G.deadline_us; |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 518 | if ((int)n >= 0) |
| 519 | print_stats_and_exit(0); |
| 520 | } |
| 521 | |
Denys Vlasenko | bc2c1b4 | 2020-12-20 11:16:32 +0100 | [diff] [blame] | 522 | CLR((uint16_t)G.ntransmitted % MAX_DUP_CHK); |
| 523 | G.ntransmitted++; |
| 524 | size_pkt += datalen; |
| 525 | |
Denis Vlasenko | c8e9993 | 2007-02-09 18:14:42 +0000 | [diff] [blame] | 526 | /* sizeof(pingaddr) can be larger than real sa size, but I think |
| 527 | * it doesn't matter */ |
Denys Vlasenko | 281e7b8 | 2011-02-06 17:51:45 +0100 | [diff] [blame] | 528 | sz = xsendto(pingsock, G.snd_packet, size_pkt, &pingaddr.sa, sizeof(pingaddr)); |
Denis Vlasenko | c8e9993 | 2007-02-09 18:14:42 +0000 | [diff] [blame] | 529 | if (sz != size_pkt) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 530 | bb_simple_error_msg_and_die(bb_msg_write_error); |
Denis Vlasenko | e935602 | 2007-01-29 18:03:54 +0000 | [diff] [blame] | 531 | |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 532 | if (pingcount == 0 || G.ntransmitted < pingcount) { |
Denys Vlasenko | 78a5ef9 | 2018-08-25 19:36:06 +0200 | [diff] [blame] | 533 | /* Didn't send all pings yet - schedule next in -i SEC interval */ |
| 534 | struct itimerval i; |
Denis Vlasenko | 90c31b3 | 2008-04-07 00:46:29 +0000 | [diff] [blame] | 535 | signal(SIGALRM, sp); |
Denys Vlasenko | 78a5ef9 | 2018-08-25 19:36:06 +0200 | [diff] [blame] | 536 | /*ualarm(G.interval_us, 0); - does not work for >=1sec on some libc */ |
| 537 | i.it_interval.tv_sec = 0; |
| 538 | i.it_interval.tv_usec = 0; |
| 539 | i.it_value.tv_sec = G.interval_us / 1000000; |
| 540 | i.it_value.tv_usec = G.interval_us % 1000000; |
| 541 | setitimer(ITIMER_REAL, &i, NULL); |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 542 | } else { /* -c NN, and all NN are sent */ |
Denis Vlasenko | 90c31b3 | 2008-04-07 00:46:29 +0000 | [diff] [blame] | 543 | /* Wait for the last ping to come back. |
| 544 | * -W timeout: wait for a response in seconds. |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 545 | * Affects only timeout in absence of any responses, |
Denis Vlasenko | 90c31b3 | 2008-04-07 00:46:29 +0000 | [diff] [blame] | 546 | * otherwise ping waits for two RTTs. */ |
| 547 | unsigned expire = timeout; |
| 548 | |
Denys Vlasenko | af4a07a | 2013-03-15 00:11:35 +0100 | [diff] [blame] | 549 | if (G.nreceived) { |
Denis Vlasenko | 90c31b3 | 2008-04-07 00:46:29 +0000 | [diff] [blame] | 550 | /* approx. 2*tmax, in seconds (2 RTT) */ |
| 551 | expire = tmax / (512*1024); |
| 552 | if (expire == 0) |
| 553 | expire = 1; |
| 554 | } |
| 555 | signal(SIGALRM, print_stats_and_exit); |
| 556 | alarm(expire); |
Denis Vlasenko | e935602 | 2007-01-29 18:03:54 +0000 | [diff] [blame] | 557 | } |
| 558 | } |
| 559 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 560 | static void sendping4(int junk UNUSED_PARAM) |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 561 | { |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 562 | struct icmp *pkt = G.snd_packet; |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 563 | |
Florian Fainelli | 6ff0551 | 2014-08-27 16:01:25 +0200 | [diff] [blame] | 564 | memset(pkt, G.pattern, datalen + ICMP_MINLEN + 4); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 565 | pkt->icmp_type = ICMP_ECHO; |
Denis Vlasenko | b34266b | 2008-04-29 12:31:53 +0000 | [diff] [blame] | 566 | /*pkt->icmp_code = 0;*/ |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 567 | pkt->icmp_cksum = 0; /* cksum is calculated with this field set to 0 */ |
Denys Vlasenko | af4a07a | 2013-03-15 00:11:35 +0100 | [diff] [blame] | 568 | pkt->icmp_seq = htons(G.ntransmitted); /* don't ++ here, it can be a macro */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 569 | pkt->icmp_id = myid; |
Denis Vlasenko | 7b72fc1 | 2007-06-16 13:37:59 +0000 | [diff] [blame] | 570 | |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 571 | /* If datalen < 4, we store timestamp _past_ the packet, |
| 572 | * but it's ok - we allocated 4 extra bytes in xzalloc() just in case. |
| 573 | */ |
Denis Vlasenko | 7679145 | 2007-06-18 08:55:57 +0000 | [diff] [blame] | 574 | /*if (datalen >= 4)*/ |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 575 | /* No hton: we'll read it back on the same machine */ |
Denys Vlasenko | 256adb0 | 2018-02-13 23:53:24 +0100 | [diff] [blame] | 576 | *(uint32_t*)&pkt->icmp_dun = G.cur_us = monotonic_us(); |
Denis Vlasenko | 7b72fc1 | 2007-06-16 13:37:59 +0000 | [diff] [blame] | 577 | |
Denys Vlasenko | 4a0eb03 | 2020-10-01 03:07:22 +0200 | [diff] [blame] | 578 | pkt->icmp_cksum = inet_cksum(pkt, datalen + ICMP_MINLEN); |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 579 | |
Denys Vlasenko | 281e7b8 | 2011-02-06 17:51:45 +0100 | [diff] [blame] | 580 | sendping_tail(sendping4, ICMP_MINLEN); |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 581 | } |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 582 | #if ENABLE_PING6 |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 583 | static void sendping6(int junk UNUSED_PARAM) |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 584 | { |
Denys Vlasenko | 1bb52a9 | 2011-02-05 03:58:43 +0100 | [diff] [blame] | 585 | struct icmp6_hdr *pkt = G.snd_packet; |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 586 | |
Florian Fainelli | 6ff0551 | 2014-08-27 16:01:25 +0200 | [diff] [blame] | 587 | memset(pkt, G.pattern, datalen + sizeof(struct icmp6_hdr) + 4); |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 588 | pkt->icmp6_type = ICMP6_ECHO_REQUEST; |
Denis Vlasenko | b34266b | 2008-04-29 12:31:53 +0000 | [diff] [blame] | 589 | /*pkt->icmp6_code = 0;*/ |
| 590 | /*pkt->icmp6_cksum = 0;*/ |
Denys Vlasenko | af4a07a | 2013-03-15 00:11:35 +0100 | [diff] [blame] | 591 | pkt->icmp6_seq = htons(G.ntransmitted); /* don't ++ here, it can be a macro */ |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 592 | pkt->icmp6_id = myid; |
Denis Vlasenko | 7b72fc1 | 2007-06-16 13:37:59 +0000 | [diff] [blame] | 593 | |
Denis Vlasenko | 7679145 | 2007-06-18 08:55:57 +0000 | [diff] [blame] | 594 | /*if (datalen >= 4)*/ |
Denys Vlasenko | 256adb0 | 2018-02-13 23:53:24 +0100 | [diff] [blame] | 595 | *(bb__aliased_uint32_t*)(&pkt->icmp6_data8[4]) = G.cur_us = monotonic_us(); |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 596 | |
Baruch Siach | e8f3633 | 2011-09-07 17:52:37 +0200 | [diff] [blame] | 597 | //TODO? pkt->icmp_cksum = inet_cksum(...); |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 598 | |
Denys Vlasenko | 281e7b8 | 2011-02-06 17:51:45 +0100 | [diff] [blame] | 599 | sendping_tail(sendping6, sizeof(struct icmp6_hdr)); |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 600 | } |
| 601 | #endif |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 602 | |
Denis Vlasenko | 89ef65f | 2007-01-29 23:43:18 +0000 | [diff] [blame] | 603 | static const char *icmp_type_name(int id) |
Erik Andersen | 227a59b | 2000-04-25 23:24:55 +0000 | [diff] [blame] | 604 | { |
| 605 | switch (id) { |
Denis Vlasenko | 35d4da0 | 2007-01-22 14:04:27 +0000 | [diff] [blame] | 606 | case ICMP_ECHOREPLY: return "Echo Reply"; |
| 607 | case ICMP_DEST_UNREACH: return "Destination Unreachable"; |
| 608 | case ICMP_SOURCE_QUENCH: return "Source Quench"; |
| 609 | case ICMP_REDIRECT: return "Redirect (change route)"; |
| 610 | case ICMP_ECHO: return "Echo Request"; |
| 611 | case ICMP_TIME_EXCEEDED: return "Time Exceeded"; |
| 612 | case ICMP_PARAMETERPROB: return "Parameter Problem"; |
| 613 | case ICMP_TIMESTAMP: return "Timestamp Request"; |
| 614 | case ICMP_TIMESTAMPREPLY: return "Timestamp Reply"; |
| 615 | case ICMP_INFO_REQUEST: return "Information Request"; |
| 616 | case ICMP_INFO_REPLY: return "Information Reply"; |
| 617 | case ICMP_ADDRESS: return "Address Mask Request"; |
| 618 | case ICMP_ADDRESSREPLY: return "Address Mask Reply"; |
| 619 | default: return "unknown ICMP type"; |
Erik Andersen | 227a59b | 2000-04-25 23:24:55 +0000 | [diff] [blame] | 620 | } |
| 621 | } |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 622 | #if ENABLE_PING6 |
| 623 | /* RFC3542 changed some definitions from RFC2292 for no good reason, whee! |
| 624 | * the newer 3542 uses a MLD_ prefix where as 2292 uses ICMP6_ prefix */ |
| 625 | #ifndef MLD_LISTENER_QUERY |
| 626 | # define MLD_LISTENER_QUERY ICMP6_MEMBERSHIP_QUERY |
| 627 | #endif |
| 628 | #ifndef MLD_LISTENER_REPORT |
| 629 | # define MLD_LISTENER_REPORT ICMP6_MEMBERSHIP_REPORT |
| 630 | #endif |
| 631 | #ifndef MLD_LISTENER_REDUCTION |
| 632 | # define MLD_LISTENER_REDUCTION ICMP6_MEMBERSHIP_REDUCTION |
| 633 | #endif |
Denis Vlasenko | 89ef65f | 2007-01-29 23:43:18 +0000 | [diff] [blame] | 634 | static const char *icmp6_type_name(int id) |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 635 | { |
| 636 | switch (id) { |
| 637 | case ICMP6_DST_UNREACH: return "Destination Unreachable"; |
| 638 | case ICMP6_PACKET_TOO_BIG: return "Packet too big"; |
| 639 | case ICMP6_TIME_EXCEEDED: return "Time Exceeded"; |
| 640 | case ICMP6_PARAM_PROB: return "Parameter Problem"; |
| 641 | case ICMP6_ECHO_REPLY: return "Echo Reply"; |
| 642 | case ICMP6_ECHO_REQUEST: return "Echo Request"; |
| 643 | case MLD_LISTENER_QUERY: return "Listener Query"; |
| 644 | case MLD_LISTENER_REPORT: return "Listener Report"; |
| 645 | case MLD_LISTENER_REDUCTION: return "Listener Reduction"; |
| 646 | default: return "unknown ICMP type"; |
| 647 | } |
| 648 | } |
| 649 | #endif |
Erik Andersen | 227a59b | 2000-04-25 23:24:55 +0000 | [diff] [blame] | 650 | |
Denis Vlasenko | 7679145 | 2007-06-18 08:55:57 +0000 | [diff] [blame] | 651 | static void unpack_tail(int sz, uint32_t *tp, |
Denis Vlasenko | 19c238b | 2007-03-03 00:36:35 +0000 | [diff] [blame] | 652 | const char *from_str, |
| 653 | uint16_t recv_seq, int ttl) |
| 654 | { |
Denys Vlasenko | 26a7e2e | 2013-06-28 01:33:47 +0200 | [diff] [blame] | 655 | unsigned char *b, m; |
Denis Vlasenko | 19c238b | 2007-03-03 00:36:35 +0000 | [diff] [blame] | 656 | const char *dupmsg = " (DUP!)"; |
| 657 | unsigned triptime = triptime; /* for gcc */ |
| 658 | |
Denis Vlasenko | 19c238b | 2007-03-03 00:36:35 +0000 | [diff] [blame] | 659 | if (tp) { |
Denis Vlasenko | 7679145 | 2007-06-18 08:55:57 +0000 | [diff] [blame] | 660 | /* (int32_t) cast is for hypothetical 64-bit unsigned */ |
| 661 | /* (doesn't hurt 32-bit real-world anyway) */ |
| 662 | triptime = (int32_t) ((uint32_t)monotonic_us() - *tp); |
Denis Vlasenko | 19c238b | 2007-03-03 00:36:35 +0000 | [diff] [blame] | 663 | tsum += triptime; |
| 664 | if (triptime < tmin) |
| 665 | tmin = triptime; |
| 666 | if (triptime > tmax) |
| 667 | tmax = triptime; |
| 668 | } |
| 669 | |
Denys Vlasenko | 26a7e2e | 2013-06-28 01:33:47 +0200 | [diff] [blame] | 670 | b = &BYTE(recv_seq % MAX_DUP_CHK); |
| 671 | m = MASK(recv_seq % MAX_DUP_CHK); |
| 672 | /*if TST(recv_seq % MAX_DUP_CHK):*/ |
| 673 | if (*b & m) { |
Denys Vlasenko | af4a07a | 2013-03-15 00:11:35 +0100 | [diff] [blame] | 674 | ++G.nrepeats; |
Denis Vlasenko | 19c238b | 2007-03-03 00:36:35 +0000 | [diff] [blame] | 675 | } else { |
Denys Vlasenko | 26a7e2e | 2013-06-28 01:33:47 +0200 | [diff] [blame] | 676 | /*SET(recv_seq % MAX_DUP_CHK):*/ |
| 677 | *b |= m; |
| 678 | ++G.nreceived; |
Denis Vlasenko | 19c238b | 2007-03-03 00:36:35 +0000 | [diff] [blame] | 679 | dupmsg += 7; |
| 680 | } |
| 681 | |
| 682 | if (option_mask32 & OPT_QUIET) |
| 683 | return; |
| 684 | |
| 685 | printf("%d bytes from %s: seq=%u ttl=%d", sz, |
| 686 | from_str, recv_seq, ttl); |
| 687 | if (tp) |
Denis Vlasenko | 7679145 | 2007-06-18 08:55:57 +0000 | [diff] [blame] | 688 | printf(" time=%u.%03u ms", triptime / 1000, triptime % 1000); |
Denis Vlasenko | 19c238b | 2007-03-03 00:36:35 +0000 | [diff] [blame] | 689 | puts(dupmsg); |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 690 | fflush_all(); |
Denis Vlasenko | 19c238b | 2007-03-03 00:36:35 +0000 | [diff] [blame] | 691 | } |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 692 | static int unpack4(char *buf, int sz, struct sockaddr_in *from) |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 693 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 694 | struct icmp *icmppkt; |
| 695 | struct iphdr *iphdr; |
Denis Vlasenko | 19c238b | 2007-03-03 00:36:35 +0000 | [diff] [blame] | 696 | int hlen; |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 697 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 698 | /* discard if too short */ |
Pavel Roskin | 0024abc | 2000-06-07 20:38:15 +0000 | [diff] [blame] | 699 | if (sz < (datalen + ICMP_MINLEN)) |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 700 | return 0; |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 701 | |
Denis Vlasenko | 2cbe6e6 | 2006-09-02 16:17:30 +0000 | [diff] [blame] | 702 | /* check IP header */ |
| 703 | iphdr = (struct iphdr *) buf; |
| 704 | hlen = iphdr->ihl << 2; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 705 | sz -= hlen; |
| 706 | icmppkt = (struct icmp *) (buf + hlen); |
Erik Andersen | 227a59b | 2000-04-25 23:24:55 +0000 | [diff] [blame] | 707 | if (icmppkt->icmp_id != myid) |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 708 | return 0; /* not our ping */ |
Erik Andersen | 227a59b | 2000-04-25 23:24:55 +0000 | [diff] [blame] | 709 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 710 | if (icmppkt->icmp_type == ICMP_ECHOREPLY) { |
Denis Vlasenko | 35d4da0 | 2007-01-22 14:04:27 +0000 | [diff] [blame] | 711 | uint16_t recv_seq = ntohs(icmppkt->icmp_seq); |
Denis Vlasenko | 7679145 | 2007-06-18 08:55:57 +0000 | [diff] [blame] | 712 | uint32_t *tp = NULL; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 713 | |
Denis Vlasenko | 7679145 | 2007-06-18 08:55:57 +0000 | [diff] [blame] | 714 | if (sz >= ICMP_MINLEN + sizeof(uint32_t)) |
| 715 | tp = (uint32_t *) icmppkt->icmp_data; |
Denis Vlasenko | 19c238b | 2007-03-03 00:36:35 +0000 | [diff] [blame] | 716 | unpack_tail(sz, tp, |
| 717 | inet_ntoa(*(struct in_addr *) &from->sin_addr.s_addr), |
| 718 | recv_seq, iphdr->ttl); |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 719 | return 1; |
| 720 | } |
| 721 | if (icmppkt->icmp_type != ICMP_ECHO) { |
Denis Vlasenko | 19c238b | 2007-03-03 00:36:35 +0000 | [diff] [blame] | 722 | bb_error_msg("warning: got ICMP %d (%s)", |
| 723 | icmppkt->icmp_type, |
| 724 | icmp_type_name(icmppkt->icmp_type)); |
Denis Vlasenko | 35d4da0 | 2007-01-22 14:04:27 +0000 | [diff] [blame] | 725 | } |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 726 | return 0; |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 727 | } |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 728 | #if ENABLE_PING6 |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 729 | static int unpack6(char *packet, int sz, struct sockaddr_in6 *from, int hoplimit) |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 730 | { |
| 731 | struct icmp6_hdr *icmppkt; |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 732 | char buf[INET6_ADDRSTRLEN]; |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 733 | |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 734 | /* discard if too short */ |
| 735 | if (sz < (datalen + sizeof(struct icmp6_hdr))) |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 736 | return 0; |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 737 | |
| 738 | icmppkt = (struct icmp6_hdr *) packet; |
| 739 | if (icmppkt->icmp6_id != myid) |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 740 | return 0; /* not our ping */ |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 741 | |
| 742 | if (icmppkt->icmp6_type == ICMP6_ECHO_REPLY) { |
| 743 | uint16_t recv_seq = ntohs(icmppkt->icmp6_seq); |
Denis Vlasenko | 7679145 | 2007-06-18 08:55:57 +0000 | [diff] [blame] | 744 | uint32_t *tp = NULL; |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 745 | |
Denis Vlasenko | 7679145 | 2007-06-18 08:55:57 +0000 | [diff] [blame] | 746 | if (sz >= sizeof(struct icmp6_hdr) + sizeof(uint32_t)) |
| 747 | tp = (uint32_t *) &icmppkt->icmp6_data8[4]; |
Denis Vlasenko | 19c238b | 2007-03-03 00:36:35 +0000 | [diff] [blame] | 748 | unpack_tail(sz, tp, |
Denys Vlasenko | 5126cf9 | 2011-09-11 20:27:28 +0200 | [diff] [blame] | 749 | inet_ntop(AF_INET6, &from->sin6_addr, |
Denis Vlasenko | 19c238b | 2007-03-03 00:36:35 +0000 | [diff] [blame] | 750 | buf, sizeof(buf)), |
| 751 | recv_seq, hoplimit); |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 752 | return 1; |
| 753 | } |
| 754 | if (icmppkt->icmp6_type != ICMP6_ECHO_REQUEST) { |
Denis Vlasenko | 19c238b | 2007-03-03 00:36:35 +0000 | [diff] [blame] | 755 | bb_error_msg("warning: got ICMP %d (%s)", |
| 756 | icmppkt->icmp6_type, |
| 757 | icmp6_type_name(icmppkt->icmp6_type)); |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 758 | } |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 759 | return 0; |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 760 | } |
| 761 | #endif |
| 762 | |
Denis Vlasenko | e935602 | 2007-01-29 18:03:54 +0000 | [diff] [blame] | 763 | static void ping4(len_and_sockaddr *lsa) |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 764 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 765 | int sockopt; |
| 766 | |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 767 | pingaddr.sin = lsa->u.sin; |
Denis Vlasenko | 5ad1048 | 2007-06-19 22:54:21 +0000 | [diff] [blame] | 768 | if (source_lsa) { |
| 769 | if (setsockopt(pingsock, IPPROTO_IP, IP_MULTICAST_IF, |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 770 | &source_lsa->u.sa, source_lsa->len)) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 771 | bb_simple_error_msg_and_die("can't set multicast source interface"); |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 772 | xbind(pingsock, &source_lsa->u.sa, source_lsa->len); |
Denis Vlasenko | 5ad1048 | 2007-06-19 22:54:21 +0000 | [diff] [blame] | 773 | } |
Denis Vlasenko | 2cbe6e6 | 2006-09-02 16:17:30 +0000 | [diff] [blame] | 774 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 775 | /* enable broadcast pings */ |
Denis Vlasenko | 48237b0 | 2006-11-22 23:22:06 +0000 | [diff] [blame] | 776 | setsockopt_broadcast(pingsock); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 777 | |
Denis Vlasenko | 5770715 | 2008-08-24 00:02:18 +0000 | [diff] [blame] | 778 | /* set recv buf (needed if we can get lots of responses: flood ping, |
| 779 | * broadcast ping etc) */ |
| 780 | sockopt = (datalen * 2) + 7 * 1024; /* giving it a bit of extra room */ |
Denys Vlasenko | c52cbea | 2015-08-24 19:48:03 +0200 | [diff] [blame] | 781 | setsockopt_SOL_SOCKET_int(pingsock, SO_RCVBUF, sockopt); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 782 | |
Denys Vlasenko | 3c8799b | 2010-11-29 12:07:12 +0100 | [diff] [blame] | 783 | if (opt_ttl != 0) { |
Denys Vlasenko | c52cbea | 2015-08-24 19:48:03 +0200 | [diff] [blame] | 784 | setsockopt_int(pingsock, IPPROTO_IP, IP_TTL, opt_ttl); |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 785 | /* above doesn't affect packets sent to bcast IP, so... */ |
Denys Vlasenko | c52cbea | 2015-08-24 19:48:03 +0200 | [diff] [blame] | 786 | setsockopt_int(pingsock, IPPROTO_IP, IP_MULTICAST_TTL, opt_ttl); |
Denys Vlasenko | 3c8799b | 2010-11-29 12:07:12 +0100 | [diff] [blame] | 787 | } |
Joachim Nilsson | 714e2b7 | 2010-11-28 23:01:18 +0100 | [diff] [blame] | 788 | |
Denis Vlasenko | 90c31b3 | 2008-04-07 00:46:29 +0000 | [diff] [blame] | 789 | signal(SIGINT, print_stats_and_exit); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 790 | |
| 791 | /* start the ping's going ... */ |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 792 | send_ping: |
Denis Vlasenko | e935602 | 2007-01-29 18:03:54 +0000 | [diff] [blame] | 793 | sendping4(0); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 794 | |
| 795 | /* listen for replies */ |
| 796 | while (1) { |
| 797 | struct sockaddr_in from; |
Erik Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 798 | socklen_t fromlen = (socklen_t) sizeof(from); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 799 | int c; |
| 800 | |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 801 | c = recvfrom(pingsock, G.rcv_packet, G.sizeof_rcv_packet, 0, |
Denis Vlasenko | 44c2eb2 | 2007-01-08 23:55:33 +0000 | [diff] [blame] | 802 | (struct sockaddr *) &from, &fromlen); |
| 803 | if (c < 0) { |
| 804 | if (errno != EINTR) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 805 | bb_simple_perror_msg("recvfrom"); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 806 | continue; |
| 807 | } |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 808 | c = unpack4(G.rcv_packet, c, &from); |
Denys Vlasenko | af4a07a | 2013-03-15 00:11:35 +0100 | [diff] [blame] | 809 | if (pingcount && G.nreceived >= pingcount) |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 810 | break; |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 811 | if (c && (option_mask32 & OPT_A)) { |
| 812 | goto send_ping; |
| 813 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 814 | } |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 815 | } |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 816 | #if ENABLE_PING6 |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 817 | static void ping6(len_and_sockaddr *lsa) |
| 818 | { |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 819 | int sockopt; |
| 820 | struct msghdr msg; |
| 821 | struct sockaddr_in6 from; |
| 822 | struct iovec iov; |
| 823 | char control_buf[CMSG_SPACE(36)]; |
| 824 | |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 825 | pingaddr.sin6 = lsa->u.sin6; |
Denis Vlasenko | 9ca26d3 | 2007-02-09 17:32:16 +0000 | [diff] [blame] | 826 | if (source_lsa) |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 827 | xbind(pingsock, &source_lsa->u.sa, source_lsa->len); |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 828 | |
| 829 | #ifdef ICMP6_FILTER |
| 830 | { |
| 831 | struct icmp6_filter filt; |
| 832 | if (!(option_mask32 & OPT_VERBOSE)) { |
| 833 | ICMP6_FILTER_SETBLOCKALL(&filt); |
| 834 | ICMP6_FILTER_SETPASS(ICMP6_ECHO_REPLY, &filt); |
| 835 | } else { |
| 836 | ICMP6_FILTER_SETPASSALL(&filt); |
| 837 | } |
| 838 | if (setsockopt(pingsock, IPPROTO_ICMPV6, ICMP6_FILTER, &filt, |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 839 | sizeof(filt)) < 0) |
Denys Vlasenko | 2db782b | 2015-08-24 19:08:14 +0200 | [diff] [blame] | 840 | bb_error_msg_and_die("setsockopt(%s)", "ICMP6_FILTER"); |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 841 | } |
| 842 | #endif /*ICMP6_FILTER*/ |
| 843 | |
| 844 | /* enable broadcast pings */ |
| 845 | setsockopt_broadcast(pingsock); |
| 846 | |
Denis Vlasenko | 5770715 | 2008-08-24 00:02:18 +0000 | [diff] [blame] | 847 | /* set recv buf (needed if we can get lots of responses: flood ping, |
| 848 | * broadcast ping etc) */ |
| 849 | sockopt = (datalen * 2) + 7 * 1024; /* giving it a bit of extra room */ |
Denys Vlasenko | c52cbea | 2015-08-24 19:48:03 +0200 | [diff] [blame] | 850 | setsockopt_SOL_SOCKET_int(pingsock, SO_RCVBUF, sockopt); |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 851 | |
| 852 | sockopt = offsetof(struct icmp6_hdr, icmp6_cksum); |
Denys Vlasenko | ab3964d | 2015-10-13 14:50:20 +0200 | [diff] [blame] | 853 | BUILD_BUG_ON(offsetof(struct icmp6_hdr, icmp6_cksum) != 2); |
Denys Vlasenko | c52cbea | 2015-08-24 19:48:03 +0200 | [diff] [blame] | 854 | setsockopt_int(pingsock, SOL_RAW, IPV6_CHECKSUM, sockopt); |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 855 | |
| 856 | /* request ttl info to be returned in ancillary data */ |
Denys Vlasenko | c52cbea | 2015-08-24 19:48:03 +0200 | [diff] [blame] | 857 | setsockopt_1(pingsock, SOL_IPV6, IPV6_HOPLIMIT); |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 858 | |
| 859 | if (if_index) |
Denis Vlasenko | aeb4bdd | 2007-01-25 00:00:02 +0000 | [diff] [blame] | 860 | pingaddr.sin6.sin6_scope_id = if_index; |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 861 | |
Denis Vlasenko | 90c31b3 | 2008-04-07 00:46:29 +0000 | [diff] [blame] | 862 | signal(SIGINT, print_stats_and_exit); |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 863 | |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 864 | msg.msg_name = &from; |
| 865 | msg.msg_namelen = sizeof(from); |
| 866 | msg.msg_iov = &iov; |
| 867 | msg.msg_iovlen = 1; |
| 868 | msg.msg_control = control_buf; |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 869 | iov.iov_base = G.rcv_packet; |
| 870 | iov.iov_len = G.sizeof_rcv_packet; |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 871 | |
| 872 | /* start the ping's going ... */ |
| 873 | send_ping: |
| 874 | sendping6(0); |
| 875 | |
| 876 | /* listen for replies */ |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 877 | while (1) { |
| 878 | int c; |
| 879 | struct cmsghdr *mp; |
| 880 | int hoplimit = -1; |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 881 | |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 882 | msg.msg_controllen = sizeof(control_buf); |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 883 | c = recvmsg(pingsock, &msg, 0); |
| 884 | if (c < 0) { |
| 885 | if (errno != EINTR) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 886 | bb_simple_perror_msg("recvfrom"); |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 887 | continue; |
| 888 | } |
| 889 | for (mp = CMSG_FIRSTHDR(&msg); mp; mp = CMSG_NXTHDR(&msg, mp)) { |
| 890 | if (mp->cmsg_level == SOL_IPV6 |
| 891 | && mp->cmsg_type == IPV6_HOPLIMIT |
| 892 | /* don't check len - we trust the kernel: */ |
| 893 | /* && mp->cmsg_len >= CMSG_LEN(sizeof(int)) */ |
| 894 | ) { |
Denys Vlasenko | 57be1ee | 2009-11-26 15:26:31 +0100 | [diff] [blame] | 895 | /*hoplimit = *(int*)CMSG_DATA(mp); - unaligned access */ |
| 896 | move_from_unaligned_int(hoplimit, CMSG_DATA(mp)); |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 897 | } |
| 898 | } |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 899 | c = unpack6(G.rcv_packet, c, &from, hoplimit); |
Denys Vlasenko | af4a07a | 2013-03-15 00:11:35 +0100 | [diff] [blame] | 900 | if (pingcount && G.nreceived >= pingcount) |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 901 | break; |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 902 | if (c && (option_mask32 & OPT_A)) { |
| 903 | goto send_ping; |
| 904 | } |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 905 | } |
| 906 | } |
| 907 | #endif |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 908 | |
Denis Vlasenko | 9ca26d3 | 2007-02-09 17:32:16 +0000 | [diff] [blame] | 909 | static void ping(len_and_sockaddr *lsa) |
Denis Vlasenko | 2cbe6e6 | 2006-09-02 16:17:30 +0000 | [diff] [blame] | 910 | { |
Denis Vlasenko | 9ca26d3 | 2007-02-09 17:32:16 +0000 | [diff] [blame] | 911 | printf("PING %s (%s)", hostname, dotted); |
| 912 | if (source_lsa) { |
| 913 | printf(" from %s", |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 914 | xmalloc_sockaddr2dotted_noport(&source_lsa->u.sa)); |
Denis Vlasenko | 2cbe6e6 | 2006-09-02 16:17:30 +0000 | [diff] [blame] | 915 | } |
Denis Vlasenko | 9ca26d3 | 2007-02-09 17:32:16 +0000 | [diff] [blame] | 916 | printf(": %d data bytes\n", datalen); |
| 917 | |
Denys Vlasenko | 59f4667 | 2013-06-28 00:30:46 +0200 | [diff] [blame] | 918 | create_icmp_socket(lsa); |
| 919 | /* untested whether "-I addr" really works for IPv6: */ |
| 920 | if (str_I) |
| 921 | setsockopt_bindtodevice(pingsock, str_I); |
| 922 | |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 923 | G.sizeof_rcv_packet = datalen + MAXIPLEN + MAXICMPLEN; |
| 924 | G.rcv_packet = xzalloc(G.sizeof_rcv_packet); |
Denis Vlasenko | 9ca26d3 | 2007-02-09 17:32:16 +0000 | [diff] [blame] | 925 | #if ENABLE_PING6 |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 926 | if (lsa->u.sa.sa_family == AF_INET6) { |
| 927 | /* +4 reserves a place for timestamp, which may end up sitting |
| 928 | * _after_ packet. Saves one if() - see sendping4/6() */ |
| 929 | G.snd_packet = xzalloc(datalen + sizeof(struct icmp6_hdr) + 4); |
Denis Vlasenko | 9ca26d3 | 2007-02-09 17:32:16 +0000 | [diff] [blame] | 930 | ping6(lsa); |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 931 | } else |
Denis Vlasenko | 9ca26d3 | 2007-02-09 17:32:16 +0000 | [diff] [blame] | 932 | #endif |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 933 | { |
| 934 | G.snd_packet = xzalloc(datalen + ICMP_MINLEN + 4); |
Denis Vlasenko | 9ca26d3 | 2007-02-09 17:32:16 +0000 | [diff] [blame] | 935 | ping4(lsa); |
Denys Vlasenko | 9341fd2 | 2010-03-03 01:10:29 +0100 | [diff] [blame] | 936 | } |
Denis Vlasenko | 2cbe6e6 | 2006-09-02 16:17:30 +0000 | [diff] [blame] | 937 | } |
| 938 | |
Denys Vlasenko | ad7d94b | 2009-11-20 18:12:12 +0100 | [diff] [blame] | 939 | static int common_ping_main(int opt, char **argv) |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 940 | { |
Denis Vlasenko | aeb4bdd | 2007-01-25 00:00:02 +0000 | [diff] [blame] | 941 | len_and_sockaddr *lsa; |
Florian Fainelli | 6ff0551 | 2014-08-27 16:01:25 +0200 | [diff] [blame] | 942 | char *str_s, *str_p; |
Denys Vlasenko | 36d198e | 2018-08-03 18:50:50 +0200 | [diff] [blame] | 943 | char *str_i = (char*)"1"; |
| 944 | duration_t interval; |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 945 | |
Denis Vlasenko | 821cc25 | 2007-06-04 10:33:48 +0000 | [diff] [blame] | 946 | INIT_G(); |
| 947 | |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 948 | opt |= getopt32(argv, "^" |
| 949 | OPT_STRING |
| 950 | /* exactly one arg; -v and -q don't mix */ |
| 951 | "\0" "=1:q--v:v--q", |
Denys Vlasenko | 36d198e | 2018-08-03 18:50:50 +0200 | [diff] [blame] | 952 | &pingcount, &str_s, &opt_ttl, &G.deadline_us, &timeout, &str_I, &str_p, &str_i |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 953 | ); |
Denis Vlasenko | 59f502b | 2008-10-27 11:54:45 +0000 | [diff] [blame] | 954 | if (opt & OPT_s) |
| 955 | datalen = xatou16(str_s); // -s |
| 956 | if (opt & OPT_I) { // -I |
| 957 | if_index = if_nametoindex(str_I); |
Denis Vlasenko | 9ca26d3 | 2007-02-09 17:32:16 +0000 | [diff] [blame] | 958 | if (!if_index) { |
| 959 | /* TODO: I'm not sure it takes IPv6 unless in [XX:XX..] format */ |
Denis Vlasenko | 59f502b | 2008-10-27 11:54:45 +0000 | [diff] [blame] | 960 | source_lsa = xdotted2sockaddr(str_I, 0); |
| 961 | str_I = NULL; /* don't try to bind to device later */ |
Denis Vlasenko | 9ca26d3 | 2007-02-09 17:32:16 +0000 | [diff] [blame] | 962 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 963 | } |
Florian Fainelli | 6ff0551 | 2014-08-27 16:01:25 +0200 | [diff] [blame] | 964 | if (opt & OPT_p) |
| 965 | G.pattern = xstrtou_range(str_p, 16, 0, 255); |
Denys Vlasenko | 256adb0 | 2018-02-13 23:53:24 +0100 | [diff] [blame] | 966 | if (G.deadline_us) { |
| 967 | unsigned d = G.deadline_us < INT_MAX/1000000 ? G.deadline_us : INT_MAX/1000000; |
| 968 | G.deadline_us = 1 | ((d * 1000000) + monotonic_us()); |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 969 | } |
Denys Vlasenko | 36d198e | 2018-08-03 18:50:50 +0200 | [diff] [blame] | 970 | interval = parse_duration_str(str_i); |
| 971 | if (interval > INT_MAX/1000000) |
| 972 | interval = INT_MAX/1000000; |
| 973 | G.interval_us = interval * 1000000; |
Florian Fainelli | 6ff0551 | 2014-08-27 16:01:25 +0200 | [diff] [blame] | 974 | |
Denis Vlasenko | 1c9ad62 | 2007-05-27 00:53:41 +0000 | [diff] [blame] | 975 | myid = (uint16_t) getpid(); |
Denys Vlasenko | 623e55a | 2020-12-13 15:53:06 +0100 | [diff] [blame] | 976 | /* we can use native-endian ident, but other Unix ping/traceroute |
| 977 | * utils use *big-endian pid*, and e.g. traceroute on our machine may be |
| 978 | * *not* from busybox, idents may collide. Follow the convention: |
| 979 | */ |
| 980 | myid = htons(myid); |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 981 | hostname = argv[optind]; |
| 982 | #if ENABLE_PING6 |
Denis Vlasenko | 59f502b | 2008-10-27 11:54:45 +0000 | [diff] [blame] | 983 | { |
| 984 | sa_family_t af = AF_UNSPEC; |
| 985 | if (opt & OPT_IPV4) |
| 986 | af = AF_INET; |
| 987 | if (opt & OPT_IPV6) |
| 988 | af = AF_INET6; |
| 989 | lsa = xhost_and_af2sockaddr(hostname, 0, af); |
| 990 | } |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 991 | #else |
Denis Vlasenko | 42823d5 | 2007-02-04 02:39:08 +0000 | [diff] [blame] | 992 | lsa = xhost_and_af2sockaddr(hostname, 0, AF_INET); |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 993 | #endif |
Denis Vlasenko | 9ca26d3 | 2007-02-09 17:32:16 +0000 | [diff] [blame] | 994 | |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 995 | if (source_lsa && source_lsa->u.sa.sa_family != lsa->u.sa.sa_family) |
Denis Vlasenko | 9ca26d3 | 2007-02-09 17:32:16 +0000 | [diff] [blame] | 996 | /* leaking it here... */ |
| 997 | source_lsa = NULL; |
| 998 | |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 999 | dotted = xmalloc_sockaddr2dotted_noport(&lsa->u.sa); |
Denis Vlasenko | 9ca26d3 | 2007-02-09 17:32:16 +0000 | [diff] [blame] | 1000 | ping(lsa); |
Denys Vlasenko | 7189af8 | 2018-02-13 23:21:33 +0100 | [diff] [blame] | 1001 | print_stats_and_exit(0); |
Denis Vlasenko | 90c31b3 | 2008-04-07 00:46:29 +0000 | [diff] [blame] | 1002 | /*return EXIT_SUCCESS;*/ |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 1003 | } |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 1004 | #endif /* FEATURE_FANCY_PING */ |
| 1005 | |
| 1006 | |
Denys Vlasenko | 8342397 | 2016-11-23 09:25:57 +0100 | [diff] [blame] | 1007 | #if ENABLE_PING |
Denys Vlasenko | ad7d94b | 2009-11-20 18:12:12 +0100 | [diff] [blame] | 1008 | int ping_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 1009 | int ping_main(int argc UNUSED_PARAM, char **argv) |
| 1010 | { |
Denys Vlasenko | 8342397 | 2016-11-23 09:25:57 +0100 | [diff] [blame] | 1011 | # if !ENABLE_FEATURE_FANCY_PING |
Denys Vlasenko | ad7d94b | 2009-11-20 18:12:12 +0100 | [diff] [blame] | 1012 | return common_ping_main(AF_UNSPEC, argv); |
Denys Vlasenko | 8342397 | 2016-11-23 09:25:57 +0100 | [diff] [blame] | 1013 | # else |
Denys Vlasenko | ad7d94b | 2009-11-20 18:12:12 +0100 | [diff] [blame] | 1014 | return common_ping_main(0, argv); |
Denys Vlasenko | 8342397 | 2016-11-23 09:25:57 +0100 | [diff] [blame] | 1015 | # endif |
Denys Vlasenko | ad7d94b | 2009-11-20 18:12:12 +0100 | [diff] [blame] | 1016 | } |
Denys Vlasenko | 8342397 | 2016-11-23 09:25:57 +0100 | [diff] [blame] | 1017 | #endif |
Denys Vlasenko | ad7d94b | 2009-11-20 18:12:12 +0100 | [diff] [blame] | 1018 | |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 1019 | #if ENABLE_PING6 |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 1020 | int ping6_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | 59f502b | 2008-10-27 11:54:45 +0000 | [diff] [blame] | 1021 | int ping6_main(int argc UNUSED_PARAM, char **argv) |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 1022 | { |
Denys Vlasenko | ad7d94b | 2009-11-20 18:12:12 +0100 | [diff] [blame] | 1023 | # if !ENABLE_FEATURE_FANCY_PING |
| 1024 | return common_ping_main(AF_INET6, argv); |
| 1025 | # else |
| 1026 | return common_ping_main(OPT_IPV6, argv); |
| 1027 | # endif |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 1028 | } |
| 1029 | #endif |
| 1030 | |
| 1031 | /* from ping6.c: |
| 1032 | * Copyright (c) 1989 The Regents of the University of California. |
| 1033 | * All rights reserved. |
| 1034 | * |
| 1035 | * This code is derived from software contributed to Berkeley by |
| 1036 | * Mike Muuss. |
| 1037 | * |
| 1038 | * Redistribution and use in source and binary forms, with or without |
| 1039 | * modification, are permitted provided that the following conditions |
| 1040 | * are met: |
| 1041 | * 1. Redistributions of source code must retain the above copyright |
| 1042 | * notice, this list of conditions and the following disclaimer. |
| 1043 | * 2. Redistributions in binary form must reproduce the above copyright |
| 1044 | * notice, this list of conditions and the following disclaimer in the |
| 1045 | * documentation and/or other materials provided with the distribution. |
| 1046 | * |
| 1047 | * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change |
| 1048 | * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change> |
| 1049 | * |
| 1050 | * 4. Neither the name of the University nor the names of its contributors |
| 1051 | * may be used to endorse or promote products derived from this software |
| 1052 | * without specific prior written permission. |
| 1053 | * |
Denys Vlasenko | 95f7953 | 2017-08-02 14:26:33 +0200 | [diff] [blame] | 1054 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 1055 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1056 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1057 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1058 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1059 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1060 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1061 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1062 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1063 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1064 | * SUCH DAMAGE. |
| 1065 | */ |