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