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