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