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