blob: c475395e7d2d3bfcc3016436b5486fae55d2a111 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersen485b9551999-12-07 23:14:59 +00002/*
Eric Andersen485b9551999-12-07 23:14:59 +00003 * Mini ping implementation for busybox
4 *
5 * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
6 *
Rob Landley42eddba2005-12-15 08:04:17 +00007 * Adapted from the ping in netkit-base 0.10:
Eric Andersen485b9551999-12-07 23:14:59 +00008 * Copyright (c) 1989 The Regents of the University of California.
Denis Vlasenko35d4da02007-01-22 14:04:27 +00009 * All rights reserved.
10 *
11 * This code is derived from software contributed to Berkeley by
12 * Mike Muuss.
Eric Andersen485b9551999-12-07 23:14:59 +000013 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020014 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersen485b9551999-12-07 23:14:59 +000015 */
Denis Vlasenkob9a279b2007-01-24 23:53:22 +000016/* 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 Andersen485b9551999-12-07 23:14:59 +000027
Denis Vlasenkob9a279b2007-01-24 23:53:22 +000028#include <net/if.h>
Eric Andersen485b9551999-12-07 23:14:59 +000029#include <netinet/ip_icmp.h>
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000030#include "libbb.h"
Denis Vlasenkoe9356022007-01-29 18:03:54 +000031
Denys Vlasenko14bd16a2011-07-08 08:49:40 +020032#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 Nilsson714e2b72010-11-28 23:01:18 +010048//config:config PING
49//config: bool "ping"
50//config: default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +010051//config: select PLATFORM_LINUX
Joachim Nilsson714e2b72010-11-28 23:01:18 +010052//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 Vlasenkob9f2d9f2011-01-18 13:58:01 +010071/* 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 Nilsson714e2b72010-11-28 23:01:18 +010074
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 Vlasenkoaf4a07a2013-03-15 00:11:35 +010092//usage: IF_PING6(
Joachim Nilsson714e2b72010-11-28 23:01:18 +010093//usage: "\n -4,-6 Force IP or IPv6 name resolution"
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +010094//usage: )
Joachim Nilsson714e2b72010-11-28 23:01:18 +010095//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)"
Florian Fainelli6ff05512014-08-27 16:01:25 +0200103//usage: "\n -q Quiet, only display output at start"
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100104//usage: "\n and when finished"
Florian Fainelli6ff05512014-08-27 16:01:25 +0200105//usage: "\n -p Pattern to use for payload"
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100106//usage:
107//usage:# define ping6_trivial_usage
108//usage: "[OPTIONS] HOST"
109//usage:# define ping6_full_usage "\n\n"
110//usage: "Send ICMP ECHO_REQUEST packets to network hosts\n"
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100111//usage: "\n -c CNT Send only CNT pings"
112//usage: "\n -s SIZE Send SIZE data bytes in packets (default:56)"
113//usage: "\n -I IFACE/IP Use interface or IP address as source"
Florian Fainelli6ff05512014-08-27 16:01:25 +0200114//usage: "\n -q Quiet, only display output at start"
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100115//usage: "\n and when finished"
Florian Fainelli6ff05512014-08-27 16:01:25 +0200116//usage: "\n -p Pattern to use for payload"
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100117//usage:
118//usage:#endif
119//usage:
120//usage:#define ping_example_usage
121//usage: "$ ping localhost\n"
122//usage: "PING slag (127.0.0.1): 56 data bytes\n"
123//usage: "64 bytes from 127.0.0.1: icmp_seq=0 ttl=255 time=20.1 ms\n"
124//usage: "\n"
125//usage: "--- debian ping statistics ---\n"
126//usage: "1 packets transmitted, 1 packets received, 0% packet loss\n"
127//usage: "round-trip min/avg/max = 20.1/20.1/20.1 ms\n"
128//usage:#define ping6_example_usage
129//usage: "$ ping6 ip6-localhost\n"
130//usage: "PING ip6-localhost (::1): 56 data bytes\n"
131//usage: "64 bytes from ::1: icmp6_seq=0 ttl=64 time=20.1 ms\n"
132//usage: "\n"
133//usage: "--- ip6-localhost ping statistics ---\n"
134//usage: "1 packets transmitted, 1 packets received, 0% packet loss\n"
135//usage: "round-trip min/avg/max = 20.1/20.1/20.1 ms\n"
136
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000137#if ENABLE_PING6
Denys Vlasenkoad7d94b2009-11-20 18:12:12 +0100138# include <netinet/icmp6.h>
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000139/* I see RENUMBERED constants in bits/in.h - !!?
140 * What a fuck is going on with libc? Is it a glibc joke? */
Denys Vlasenkoad7d94b2009-11-20 18:12:12 +0100141# ifdef IPV6_2292HOPLIMIT
142# undef IPV6_HOPLIMIT
143# define IPV6_HOPLIMIT IPV6_2292HOPLIMIT
144# endif
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000145#endif
Eric Andersen485b9551999-12-07 23:14:59 +0000146
Rob Landleybc68cd12006-03-10 19:22:06 +0000147enum {
148 DEFDATALEN = 56,
149 MAXIPLEN = 60,
150 MAXICMPLEN = 76,
Rob Landleybc68cd12006-03-10 19:22:06 +0000151 MAX_DUP_CHK = (8 * 128),
152 MAXWAIT = 10,
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000153 PINGINTERVAL = 1, /* 1 second */
Denys Vlasenko59f46672013-06-28 00:30:46 +0200154 pingsock = 0,
Rob Landleybc68cd12006-03-10 19:22:06 +0000155};
Eric Andersen485b9551999-12-07 23:14:59 +0000156
Denys Vlasenko59f46672013-06-28 00:30:46 +0200157static void
158#if ENABLE_PING6
159create_icmp_socket(len_and_sockaddr *lsa)
160#else
161create_icmp_socket(void)
162#define create_icmp_socket(lsa) create_icmp_socket()
163#endif
164{
165 int sock;
166#if ENABLE_PING6
167 if (lsa->u.sa.sa_family == AF_INET6)
168 sock = socket(AF_INET6, SOCK_RAW, IPPROTO_ICMPV6);
169 else
170#endif
171 sock = socket(AF_INET, SOCK_RAW, 1); /* 1 == ICMP */
172 if (sock < 0) {
Denys Vlasenkof0058b12014-01-09 11:53:26 +0100173 if (errno == EPERM)
174 bb_error_msg_and_die(bb_msg_perm_denied_are_you_root);
175 bb_perror_msg_and_die(bb_msg_can_not_create_raw_socket);
Denys Vlasenko59f46672013-06-28 00:30:46 +0200176 }
177
178 xmove_fd(sock, pingsock);
179}
180
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000181#if !ENABLE_FEATURE_FANCY_PING
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000182
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100183/* Simple version */
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000184
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100185struct globals {
186 char *hostname;
187 char packet[DEFDATALEN + MAXIPLEN + MAXICMPLEN];
188} FIX_ALIASING;
189#define G (*(struct globals*)&bb_common_bufsiz1)
190#define INIT_G() do { } while (0)
Denis Vlasenkocb6874c2006-09-02 16:13:36 +0000191
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000192static void noresp(int ign UNUSED_PARAM)
Eric Andersenb5474c42002-03-20 11:59:28 +0000193{
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100194 printf("No response from %s\n", G.hostname);
Eric Andersen4e486a52003-01-12 06:08:33 +0000195 exit(EXIT_FAILURE);
Eric Andersenb5474c42002-03-20 11:59:28 +0000196}
Eric Andersen19db07b1999-12-11 08:41:28 +0000197
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000198static void ping4(len_and_sockaddr *lsa)
Eric Andersen19db07b1999-12-11 08:41:28 +0000199{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000200 struct icmp *pkt;
Denys Vlasenko59f46672013-06-28 00:30:46 +0200201 int c;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000202
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100203 pkt = (struct icmp *) G.packet;
Denys Vlasenko59f46672013-06-28 00:30:46 +0200204 /*memset(pkt, 0, sizeof(G.packet)); already is */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000205 pkt->icmp_type = ICMP_ECHO;
Baruch Siache8f36332011-09-07 17:52:37 +0200206 pkt->icmp_cksum = inet_cksum((uint16_t *) pkt, sizeof(G.packet));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000207
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100208 xsendto(pingsock, G.packet, DEFDATALEN + ICMP_MINLEN, &lsa->u.sa, lsa->len);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000209
Erik Andersene49d5ec2000-02-08 19:58:47 +0000210 /* listen for replies */
211 while (1) {
Denys Vlasenko59f46672013-06-28 00:30:46 +0200212#if 0
Erik Andersene49d5ec2000-02-08 19:58:47 +0000213 struct sockaddr_in from;
Mike Frysinger03e827a2005-07-26 23:00:59 +0000214 socklen_t fromlen = sizeof(from);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000215
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100216 c = recvfrom(pingsock, G.packet, sizeof(G.packet), 0,
Denis Vlasenko806116b2006-12-31 12:14:16 +0000217 (struct sockaddr *) &from, &fromlen);
Denys Vlasenko59f46672013-06-28 00:30:46 +0200218#else
219 c = recv(pingsock, G.packet, sizeof(G.packet), 0);
220#endif
Denis Vlasenko806116b2006-12-31 12:14:16 +0000221 if (c < 0) {
Denis Vlasenko44c2eb22007-01-08 23:55:33 +0000222 if (errno != EINTR)
223 bb_perror_msg("recvfrom");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000224 continue;
225 }
226 if (c >= 76) { /* ip + icmp */
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100227 struct iphdr *iphdr = (struct iphdr *) G.packet;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000228
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100229 pkt = (struct icmp *) (G.packet + (iphdr->ihl << 2)); /* skip ip hdr */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000230 if (pkt->icmp_type == ICMP_ECHOREPLY)
231 break;
232 }
233 }
Denis Vlasenko9adc6ce2007-01-22 22:45:27 +0000234 if (ENABLE_FEATURE_CLEAN_UP)
235 close(pingsock);
Eric Andersen19db07b1999-12-11 08:41:28 +0000236}
237
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000238#if ENABLE_PING6
239static void ping6(len_and_sockaddr *lsa)
240{
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000241 struct icmp6_hdr *pkt;
Denys Vlasenko59f46672013-06-28 00:30:46 +0200242 int c;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000243 int sockopt;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000244
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100245 pkt = (struct icmp6_hdr *) G.packet;
Denys Vlasenko59f46672013-06-28 00:30:46 +0200246 /*memset(pkt, 0, sizeof(G.packet)); already is */
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000247 pkt->icmp6_type = ICMP6_ECHO_REQUEST;
248
249 sockopt = offsetof(struct icmp6_hdr, icmp6_cksum);
250 setsockopt(pingsock, SOL_RAW, IPV6_CHECKSUM, &sockopt, sizeof(sockopt));
251
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100252 xsendto(pingsock, G.packet, DEFDATALEN + sizeof(struct icmp6_hdr), &lsa->u.sa, lsa->len);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000253
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000254 /* listen for replies */
255 while (1) {
Denys Vlasenko59f46672013-06-28 00:30:46 +0200256#if 0
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000257 struct sockaddr_in6 from;
258 socklen_t fromlen = sizeof(from);
259
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100260 c = recvfrom(pingsock, G.packet, sizeof(G.packet), 0,
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000261 (struct sockaddr *) &from, &fromlen);
Denys Vlasenko59f46672013-06-28 00:30:46 +0200262#else
263 c = recv(pingsock, G.packet, sizeof(G.packet), 0);
264#endif
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000265 if (c < 0) {
266 if (errno != EINTR)
267 bb_perror_msg("recvfrom");
268 continue;
269 }
Denys Vlasenko59f46672013-06-28 00:30:46 +0200270 if (c >= ICMP_MINLEN) { /* icmp6_hdr */
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000271 if (pkt->icmp6_type == ICMP6_ECHO_REPLY)
272 break;
273 }
274 }
275 if (ENABLE_FEATURE_CLEAN_UP)
276 close(pingsock);
277}
278#endif
279
Denys Vlasenkoad7d94b2009-11-20 18:12:12 +0100280#if !ENABLE_PING6
281# define common_ping_main(af, argv) common_ping_main(argv)
282#endif
283static int common_ping_main(sa_family_t af, char **argv)
Eric Andersen19db07b1999-12-11 08:41:28 +0000284{
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000285 len_and_sockaddr *lsa;
Denis Vlasenko3483e852007-07-02 15:47:52 +0000286
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100287 INIT_G();
288
Denys Vlasenkoad7d94b2009-11-20 18:12:12 +0100289#if ENABLE_PING6
Denis Vlasenko3483e852007-07-02 15:47:52 +0000290 while ((++argv)[0] && argv[0][0] == '-') {
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000291 if (argv[0][1] == '4') {
292 af = AF_INET;
293 continue;
294 }
295 if (argv[0][1] == '6') {
296 af = AF_INET6;
297 continue;
298 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000299 bb_show_usage();
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000300 }
301#else
302 argv++;
303#endif
304
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100305 G.hostname = *argv;
306 if (!G.hostname)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000307 bb_show_usage();
308
309#if ENABLE_PING6
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100310 lsa = xhost_and_af2sockaddr(G.hostname, 0, af);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000311#else
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100312 lsa = xhost_and_af2sockaddr(G.hostname, 0, AF_INET);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000313#endif
314 /* Set timer _after_ DNS resolution */
315 signal(SIGALRM, noresp);
316 alarm(5); /* give the host 5000ms to respond */
317
Denys Vlasenko59f46672013-06-28 00:30:46 +0200318 create_icmp_socket(lsa);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000319#if ENABLE_PING6
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000320 if (lsa->u.sa.sa_family == AF_INET6)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000321 ping6(lsa);
322 else
323#endif
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000324 ping4(lsa);
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100325 printf("%s is alive!\n", G.hostname);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000326 return EXIT_SUCCESS;
Eric Andersen19db07b1999-12-11 08:41:28 +0000327}
328
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000329
330#else /* FEATURE_FANCY_PING */
331
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000332
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100333/* Full(er) version */
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000334
Florian Fainelli6ff05512014-08-27 16:01:25 +0200335#define OPT_STRING ("qvc:s:t:w:W:I:np:4" IF_PING6("6"))
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000336enum {
337 OPT_QUIET = 1 << 0,
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000338 OPT_VERBOSE = 1 << 1,
339 OPT_c = 1 << 2,
340 OPT_s = 1 << 3,
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100341 OPT_t = 1 << 4,
342 OPT_w = 1 << 5,
343 OPT_W = 1 << 6,
344 OPT_I = 1 << 7,
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100345 /*OPT_n = 1 << 8, - ignored */
Florian Fainelli6ff05512014-08-27 16:01:25 +0200346 OPT_p = 1 << 9,
347 OPT_IPV4 = 1 << 10,
348 OPT_IPV6 = (1 << 11) * ENABLE_PING6,
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000349};
350
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000351
Denis Vlasenko821cc252007-06-04 10:33:48 +0000352struct globals {
Denis Vlasenko1a7afb42007-10-19 21:39:25 +0000353 int if_index;
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000354 char *str_I;
Denis Vlasenko821cc252007-06-04 10:33:48 +0000355 len_and_sockaddr *source_lsa;
356 unsigned datalen;
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000357 unsigned pingcount; /* must be int-sized */
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100358 unsigned opt_ttl;
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000359 unsigned long ntransmitted, nreceived, nrepeats;
Denis Vlasenko821cc252007-06-04 10:33:48 +0000360 uint16_t myid;
Florian Fainelli6ff05512014-08-27 16:01:25 +0200361 uint8_t pattern;
Denis Vlasenko76791452007-06-18 08:55:57 +0000362 unsigned tmin, tmax; /* in us */
363 unsigned long long tsum; /* in us, sum of all times */
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000364 unsigned deadline;
365 unsigned timeout;
366 unsigned total_secs;
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100367 unsigned sizeof_rcv_packet;
368 char *rcv_packet; /* [datalen + MAXIPLEN + MAXICMPLEN] */
369 void *snd_packet; /* [datalen + ipv4/ipv6_const] */
Denis Vlasenko821cc252007-06-04 10:33:48 +0000370 const char *hostname;
371 const char *dotted;
372 union {
373 struct sockaddr sa;
374 struct sockaddr_in sin;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000375#if ENABLE_PING6
Denis Vlasenko821cc252007-06-04 10:33:48 +0000376 struct sockaddr_in6 sin6;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000377#endif
Denis Vlasenko821cc252007-06-04 10:33:48 +0000378 } pingaddr;
Denys Vlasenko26a7e2e2013-06-28 01:33:47 +0200379 unsigned char rcvd_tbl[MAX_DUP_CHK / 8];
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100380} FIX_ALIASING;
Denis Vlasenko821cc252007-06-04 10:33:48 +0000381#define G (*(struct globals*)&bb_common_bufsiz1)
Denis Vlasenko821cc252007-06-04 10:33:48 +0000382#define if_index (G.if_index )
Denis Vlasenko1a7afb42007-10-19 21:39:25 +0000383#define source_lsa (G.source_lsa )
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000384#define str_I (G.str_I )
Denis Vlasenko1a7afb42007-10-19 21:39:25 +0000385#define datalen (G.datalen )
Denis Vlasenko821cc252007-06-04 10:33:48 +0000386#define pingcount (G.pingcount )
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100387#define opt_ttl (G.opt_ttl )
Denis Vlasenko821cc252007-06-04 10:33:48 +0000388#define myid (G.myid )
389#define tmin (G.tmin )
390#define tmax (G.tmax )
391#define tsum (G.tsum )
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000392#define deadline (G.deadline )
393#define timeout (G.timeout )
394#define total_secs (G.total_secs )
Denis Vlasenko821cc252007-06-04 10:33:48 +0000395#define hostname (G.hostname )
396#define dotted (G.dotted )
397#define pingaddr (G.pingaddr )
398#define rcvd_tbl (G.rcvd_tbl )
399void BUG_ping_globals_too_big(void);
400#define INIT_G() do { \
Denis Vlasenko6b404432008-01-07 16:13:14 +0000401 if (sizeof(G) > COMMON_BUFSIZE) \
402 BUG_ping_globals_too_big(); \
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000403 datalen = DEFDATALEN; \
404 timeout = MAXWAIT; \
Denis Vlasenko821cc252007-06-04 10:33:48 +0000405 tmin = UINT_MAX; \
406} while (0)
Eric Andersen19db07b1999-12-11 08:41:28 +0000407
Eric Andersen19db07b1999-12-11 08:41:28 +0000408
Denys Vlasenko26a7e2e2013-06-28 01:33:47 +0200409#define BYTE(bit) rcvd_tbl[(bit)>>3]
410#define MASK(bit) (1 << ((bit) & 7))
411#define SET(bit) (BYTE(bit) |= MASK(bit))
412#define CLR(bit) (BYTE(bit) &= (~MASK(bit)))
413#define TST(bit) (BYTE(bit) & MASK(bit))
Eric Andersen19db07b1999-12-11 08:41:28 +0000414
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000415static void print_stats_and_exit(int junk) NORETURN;
416static void print_stats_and_exit(int junk UNUSED_PARAM)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000417{
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100418 unsigned long ul;
419 unsigned long nrecv;
420
Erik Andersene49d5ec2000-02-08 19:58:47 +0000421 signal(SIGINT, SIG_IGN);
422
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100423 nrecv = G.nreceived;
424 printf("\n--- %s ping statistics ---\n"
425 "%lu packets transmitted, "
426 "%lu packets received, ",
427 hostname, G.ntransmitted, nrecv
428 );
429 if (G.nrepeats)
430 printf("%lu duplicates, ", G.nrepeats);
431 ul = G.ntransmitted;
432 if (ul != 0)
433 ul = (ul - nrecv) * 100 / ul;
434 printf("%lu%% packet loss\n", ul);
Denis Vlasenko76791452007-06-18 08:55:57 +0000435 if (tmin != UINT_MAX) {
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100436 unsigned tavg = tsum / (nrecv + G.nrepeats);
Denis Vlasenko76791452007-06-18 08:55:57 +0000437 printf("round-trip min/avg/max = %u.%03u/%u.%03u/%u.%03u ms\n",
438 tmin / 1000, tmin % 1000,
439 tavg / 1000, tavg % 1000,
440 tmax / 1000, tmax % 1000);
441 }
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000442 /* if condition is true, exit with 1 -- 'failure' */
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100443 exit(nrecv == 0 || (deadline && nrecv < pingcount));
Eric Andersen485b9551999-12-07 23:14:59 +0000444}
445
Denys Vlasenko281e7b82011-02-06 17:51:45 +0100446static void sendping_tail(void (*sp)(int), int size_pkt)
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000447{
Denis Vlasenkoc8e99932007-02-09 18:14:42 +0000448 int sz;
449
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100450 CLR((uint16_t)G.ntransmitted % MAX_DUP_CHK);
451 G.ntransmitted++;
Denis Vlasenkoc8e99932007-02-09 18:14:42 +0000452
Denys Vlasenko281e7b82011-02-06 17:51:45 +0100453 size_pkt += datalen;
454
Denis Vlasenkoc8e99932007-02-09 18:14:42 +0000455 /* sizeof(pingaddr) can be larger than real sa size, but I think
456 * it doesn't matter */
Denys Vlasenko281e7b82011-02-06 17:51:45 +0100457 sz = xsendto(pingsock, G.snd_packet, size_pkt, &pingaddr.sa, sizeof(pingaddr));
Denis Vlasenkoc8e99932007-02-09 18:14:42 +0000458 if (sz != size_pkt)
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000459 bb_error_msg_and_die(bb_msg_write_error);
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000460
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100461 if (pingcount == 0 || deadline || G.ntransmitted < pingcount) {
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000462 /* Didn't send all pings yet - schedule next in 1s */
463 signal(SIGALRM, sp);
464 if (deadline) {
465 total_secs += PINGINTERVAL;
466 if (total_secs >= deadline)
467 signal(SIGALRM, print_stats_and_exit);
468 }
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000469 alarm(PINGINTERVAL);
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000470 } else { /* -c NN, and all NN are sent (and no deadline) */
471 /* Wait for the last ping to come back.
472 * -W timeout: wait for a response in seconds.
473 * Affects only timeout in absense of any responses,
474 * otherwise ping waits for two RTTs. */
475 unsigned expire = timeout;
476
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100477 if (G.nreceived) {
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000478 /* approx. 2*tmax, in seconds (2 RTT) */
479 expire = tmax / (512*1024);
480 if (expire == 0)
481 expire = 1;
482 }
483 signal(SIGALRM, print_stats_and_exit);
484 alarm(expire);
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000485 }
486}
487
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000488static void sendping4(int junk UNUSED_PARAM)
Eric Andersen485b9551999-12-07 23:14:59 +0000489{
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100490 struct icmp *pkt = G.snd_packet;
Eric Andersen485b9551999-12-07 23:14:59 +0000491
Florian Fainelli6ff05512014-08-27 16:01:25 +0200492 memset(pkt, G.pattern, datalen + ICMP_MINLEN + 4);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000493 pkt->icmp_type = ICMP_ECHO;
Denis Vlasenkob34266b2008-04-29 12:31:53 +0000494 /*pkt->icmp_code = 0;*/
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100495 pkt->icmp_cksum = 0; /* cksum is calculated with this field set to 0 */
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100496 pkt->icmp_seq = htons(G.ntransmitted); /* don't ++ here, it can be a macro */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000497 pkt->icmp_id = myid;
Denis Vlasenko7b72fc12007-06-16 13:37:59 +0000498
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100499 /* If datalen < 4, we store timestamp _past_ the packet,
500 * but it's ok - we allocated 4 extra bytes in xzalloc() just in case.
501 */
Denis Vlasenko76791452007-06-18 08:55:57 +0000502 /*if (datalen >= 4)*/
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100503 /* No hton: we'll read it back on the same machine */
Denis Vlasenko76791452007-06-18 08:55:57 +0000504 *(uint32_t*)&pkt->icmp_dun = monotonic_us();
Denis Vlasenko7b72fc12007-06-16 13:37:59 +0000505
Baruch Siache8f36332011-09-07 17:52:37 +0200506 pkt->icmp_cksum = inet_cksum((uint16_t *) pkt, datalen + ICMP_MINLEN);
Eric Andersen485b9551999-12-07 23:14:59 +0000507
Denys Vlasenko281e7b82011-02-06 17:51:45 +0100508 sendping_tail(sendping4, ICMP_MINLEN);
Eric Andersen485b9551999-12-07 23:14:59 +0000509}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000510#if ENABLE_PING6
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000511static void sendping6(int junk UNUSED_PARAM)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000512{
Denys Vlasenko1bb52a92011-02-05 03:58:43 +0100513 struct icmp6_hdr *pkt = G.snd_packet;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000514
Florian Fainelli6ff05512014-08-27 16:01:25 +0200515 memset(pkt, G.pattern, datalen + sizeof(struct icmp6_hdr) + 4);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000516 pkt->icmp6_type = ICMP6_ECHO_REQUEST;
Denis Vlasenkob34266b2008-04-29 12:31:53 +0000517 /*pkt->icmp6_code = 0;*/
518 /*pkt->icmp6_cksum = 0;*/
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100519 pkt->icmp6_seq = htons(G.ntransmitted); /* don't ++ here, it can be a macro */
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000520 pkt->icmp6_id = myid;
Denis Vlasenko7b72fc12007-06-16 13:37:59 +0000521
Denis Vlasenko76791452007-06-18 08:55:57 +0000522 /*if (datalen >= 4)*/
Denys Vlasenko5117eff2013-10-16 14:21:20 +0200523 *(bb__aliased_uint32_t*)(&pkt->icmp6_data8[4]) = monotonic_us();
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000524
Baruch Siache8f36332011-09-07 17:52:37 +0200525 //TODO? pkt->icmp_cksum = inet_cksum(...);
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100526
Denys Vlasenko281e7b82011-02-06 17:51:45 +0100527 sendping_tail(sendping6, sizeof(struct icmp6_hdr));
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000528}
529#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000530
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000531static const char *icmp_type_name(int id)
Erik Andersen227a59b2000-04-25 23:24:55 +0000532{
533 switch (id) {
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000534 case ICMP_ECHOREPLY: return "Echo Reply";
535 case ICMP_DEST_UNREACH: return "Destination Unreachable";
536 case ICMP_SOURCE_QUENCH: return "Source Quench";
537 case ICMP_REDIRECT: return "Redirect (change route)";
538 case ICMP_ECHO: return "Echo Request";
539 case ICMP_TIME_EXCEEDED: return "Time Exceeded";
540 case ICMP_PARAMETERPROB: return "Parameter Problem";
541 case ICMP_TIMESTAMP: return "Timestamp Request";
542 case ICMP_TIMESTAMPREPLY: return "Timestamp Reply";
543 case ICMP_INFO_REQUEST: return "Information Request";
544 case ICMP_INFO_REPLY: return "Information Reply";
545 case ICMP_ADDRESS: return "Address Mask Request";
546 case ICMP_ADDRESSREPLY: return "Address Mask Reply";
547 default: return "unknown ICMP type";
Erik Andersen227a59b2000-04-25 23:24:55 +0000548 }
549}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000550#if ENABLE_PING6
551/* RFC3542 changed some definitions from RFC2292 for no good reason, whee!
552 * the newer 3542 uses a MLD_ prefix where as 2292 uses ICMP6_ prefix */
553#ifndef MLD_LISTENER_QUERY
554# define MLD_LISTENER_QUERY ICMP6_MEMBERSHIP_QUERY
555#endif
556#ifndef MLD_LISTENER_REPORT
557# define MLD_LISTENER_REPORT ICMP6_MEMBERSHIP_REPORT
558#endif
559#ifndef MLD_LISTENER_REDUCTION
560# define MLD_LISTENER_REDUCTION ICMP6_MEMBERSHIP_REDUCTION
561#endif
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000562static const char *icmp6_type_name(int id)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000563{
564 switch (id) {
565 case ICMP6_DST_UNREACH: return "Destination Unreachable";
566 case ICMP6_PACKET_TOO_BIG: return "Packet too big";
567 case ICMP6_TIME_EXCEEDED: return "Time Exceeded";
568 case ICMP6_PARAM_PROB: return "Parameter Problem";
569 case ICMP6_ECHO_REPLY: return "Echo Reply";
570 case ICMP6_ECHO_REQUEST: return "Echo Request";
571 case MLD_LISTENER_QUERY: return "Listener Query";
572 case MLD_LISTENER_REPORT: return "Listener Report";
573 case MLD_LISTENER_REDUCTION: return "Listener Reduction";
574 default: return "unknown ICMP type";
575 }
576}
577#endif
Erik Andersen227a59b2000-04-25 23:24:55 +0000578
Denis Vlasenko76791452007-06-18 08:55:57 +0000579static void unpack_tail(int sz, uint32_t *tp,
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000580 const char *from_str,
581 uint16_t recv_seq, int ttl)
582{
Denys Vlasenko26a7e2e2013-06-28 01:33:47 +0200583 unsigned char *b, m;
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000584 const char *dupmsg = " (DUP!)";
585 unsigned triptime = triptime; /* for gcc */
586
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000587 if (tp) {
Denis Vlasenko76791452007-06-18 08:55:57 +0000588 /* (int32_t) cast is for hypothetical 64-bit unsigned */
589 /* (doesn't hurt 32-bit real-world anyway) */
590 triptime = (int32_t) ((uint32_t)monotonic_us() - *tp);
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000591 tsum += triptime;
592 if (triptime < tmin)
593 tmin = triptime;
594 if (triptime > tmax)
595 tmax = triptime;
596 }
597
Denys Vlasenko26a7e2e2013-06-28 01:33:47 +0200598 b = &BYTE(recv_seq % MAX_DUP_CHK);
599 m = MASK(recv_seq % MAX_DUP_CHK);
600 /*if TST(recv_seq % MAX_DUP_CHK):*/
601 if (*b & m) {
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100602 ++G.nrepeats;
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000603 } else {
Denys Vlasenko26a7e2e2013-06-28 01:33:47 +0200604 /*SET(recv_seq % MAX_DUP_CHK):*/
605 *b |= m;
606 ++G.nreceived;
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000607 dupmsg += 7;
608 }
609
610 if (option_mask32 & OPT_QUIET)
611 return;
612
613 printf("%d bytes from %s: seq=%u ttl=%d", sz,
614 from_str, recv_seq, ttl);
615 if (tp)
Denis Vlasenko76791452007-06-18 08:55:57 +0000616 printf(" time=%u.%03u ms", triptime / 1000, triptime % 1000);
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000617 puts(dupmsg);
Denys Vlasenko8131eea2009-11-02 14:19:51 +0100618 fflush_all();
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000619}
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000620static void unpack4(char *buf, int sz, struct sockaddr_in *from)
Eric Andersen485b9551999-12-07 23:14:59 +0000621{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000622 struct icmp *icmppkt;
623 struct iphdr *iphdr;
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000624 int hlen;
Eric Andersen485b9551999-12-07 23:14:59 +0000625
Erik Andersene49d5ec2000-02-08 19:58:47 +0000626 /* discard if too short */
Pavel Roskin0024abc2000-06-07 20:38:15 +0000627 if (sz < (datalen + ICMP_MINLEN))
Erik Andersene49d5ec2000-02-08 19:58:47 +0000628 return;
Eric Andersen485b9551999-12-07 23:14:59 +0000629
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000630 /* check IP header */
631 iphdr = (struct iphdr *) buf;
632 hlen = iphdr->ihl << 2;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000633 sz -= hlen;
634 icmppkt = (struct icmp *) (buf + hlen);
Erik Andersen227a59b2000-04-25 23:24:55 +0000635 if (icmppkt->icmp_id != myid)
Denis Vlasenkocb6874c2006-09-02 16:13:36 +0000636 return; /* not our ping */
Erik Andersen227a59b2000-04-25 23:24:55 +0000637
Erik Andersene49d5ec2000-02-08 19:58:47 +0000638 if (icmppkt->icmp_type == ICMP_ECHOREPLY) {
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000639 uint16_t recv_seq = ntohs(icmppkt->icmp_seq);
Denis Vlasenko76791452007-06-18 08:55:57 +0000640 uint32_t *tp = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000641
Denis Vlasenko76791452007-06-18 08:55:57 +0000642 if (sz >= ICMP_MINLEN + sizeof(uint32_t))
643 tp = (uint32_t *) icmppkt->icmp_data;
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000644 unpack_tail(sz, tp,
645 inet_ntoa(*(struct in_addr *) &from->sin_addr.s_addr),
646 recv_seq, iphdr->ttl);
647 } else if (icmppkt->icmp_type != ICMP_ECHO) {
648 bb_error_msg("warning: got ICMP %d (%s)",
649 icmppkt->icmp_type,
650 icmp_type_name(icmppkt->icmp_type));
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000651 }
Eric Andersen485b9551999-12-07 23:14:59 +0000652}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000653#if ENABLE_PING6
Denys Vlasenko5126cf92011-09-11 20:27:28 +0200654static void unpack6(char *packet, int sz, struct sockaddr_in6 *from, int hoplimit)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000655{
656 struct icmp6_hdr *icmppkt;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000657 char buf[INET6_ADDRSTRLEN];
Eric Andersen485b9551999-12-07 23:14:59 +0000658
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000659 /* discard if too short */
660 if (sz < (datalen + sizeof(struct icmp6_hdr)))
661 return;
662
663 icmppkt = (struct icmp6_hdr *) packet;
664 if (icmppkt->icmp6_id != myid)
665 return; /* not our ping */
666
667 if (icmppkt->icmp6_type == ICMP6_ECHO_REPLY) {
668 uint16_t recv_seq = ntohs(icmppkt->icmp6_seq);
Denis Vlasenko76791452007-06-18 08:55:57 +0000669 uint32_t *tp = NULL;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000670
Denis Vlasenko76791452007-06-18 08:55:57 +0000671 if (sz >= sizeof(struct icmp6_hdr) + sizeof(uint32_t))
672 tp = (uint32_t *) &icmppkt->icmp6_data8[4];
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000673 unpack_tail(sz, tp,
Denys Vlasenko5126cf92011-09-11 20:27:28 +0200674 inet_ntop(AF_INET6, &from->sin6_addr,
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000675 buf, sizeof(buf)),
676 recv_seq, hoplimit);
677 } else if (icmppkt->icmp6_type != ICMP6_ECHO_REQUEST) {
678 bb_error_msg("warning: got ICMP %d (%s)",
679 icmppkt->icmp6_type,
680 icmp6_type_name(icmppkt->icmp6_type));
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000681 }
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000682}
683#endif
684
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000685static void ping4(len_and_sockaddr *lsa)
Eric Andersen485b9551999-12-07 23:14:59 +0000686{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000687 int sockopt;
688
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000689 pingaddr.sin = lsa->u.sin;
Denis Vlasenko5ad10482007-06-19 22:54:21 +0000690 if (source_lsa) {
691 if (setsockopt(pingsock, IPPROTO_IP, IP_MULTICAST_IF,
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000692 &source_lsa->u.sa, source_lsa->len))
Denis Vlasenko5ad10482007-06-19 22:54:21 +0000693 bb_error_msg_and_die("can't set multicast source interface");
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000694 xbind(pingsock, &source_lsa->u.sa, source_lsa->len);
Denis Vlasenko5ad10482007-06-19 22:54:21 +0000695 }
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000696
Erik Andersene49d5ec2000-02-08 19:58:47 +0000697 /* enable broadcast pings */
Denis Vlasenko48237b02006-11-22 23:22:06 +0000698 setsockopt_broadcast(pingsock);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000699
Denis Vlasenko57707152008-08-24 00:02:18 +0000700 /* set recv buf (needed if we can get lots of responses: flood ping,
701 * broadcast ping etc) */
702 sockopt = (datalen * 2) + 7 * 1024; /* giving it a bit of extra room */
Denis Vlasenko703e2022007-01-22 14:12:08 +0000703 setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, &sockopt, sizeof(sockopt));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000704
Denys Vlasenko3c8799b2010-11-29 12:07:12 +0100705 if (opt_ttl != 0) {
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100706 setsockopt(pingsock, IPPROTO_IP, IP_TTL, &opt_ttl, sizeof(opt_ttl));
Denys Vlasenko3c8799b2010-11-29 12:07:12 +0100707 /* above doesnt affect packets sent to bcast IP, so... */
708 setsockopt(pingsock, IPPROTO_IP, IP_MULTICAST_TTL, &opt_ttl, sizeof(opt_ttl));
709 }
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100710
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000711 signal(SIGINT, print_stats_and_exit);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000712
713 /* start the ping's going ... */
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000714 sendping4(0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000715
716 /* listen for replies */
717 while (1) {
718 struct sockaddr_in from;
Erik Andersen1d1d9502000-04-21 01:26:49 +0000719 socklen_t fromlen = (socklen_t) sizeof(from);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000720 int c;
721
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100722 c = recvfrom(pingsock, G.rcv_packet, G.sizeof_rcv_packet, 0,
Denis Vlasenko44c2eb22007-01-08 23:55:33 +0000723 (struct sockaddr *) &from, &fromlen);
724 if (c < 0) {
725 if (errno != EINTR)
726 bb_perror_msg("recvfrom");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000727 continue;
728 }
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100729 unpack4(G.rcv_packet, c, &from);
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100730 if (pingcount && G.nreceived >= pingcount)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000731 break;
732 }
Eric Andersen485b9551999-12-07 23:14:59 +0000733}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000734#if ENABLE_PING6
735extern int BUG_bad_offsetof_icmp6_cksum(void);
736static void ping6(len_and_sockaddr *lsa)
737{
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000738 int sockopt;
739 struct msghdr msg;
740 struct sockaddr_in6 from;
741 struct iovec iov;
742 char control_buf[CMSG_SPACE(36)];
743
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000744 pingaddr.sin6 = lsa->u.sin6;
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000745 if (source_lsa)
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000746 xbind(pingsock, &source_lsa->u.sa, source_lsa->len);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000747
748#ifdef ICMP6_FILTER
749 {
750 struct icmp6_filter filt;
751 if (!(option_mask32 & OPT_VERBOSE)) {
752 ICMP6_FILTER_SETBLOCKALL(&filt);
753 ICMP6_FILTER_SETPASS(ICMP6_ECHO_REPLY, &filt);
754 } else {
755 ICMP6_FILTER_SETPASSALL(&filt);
756 }
757 if (setsockopt(pingsock, IPPROTO_ICMPV6, ICMP6_FILTER, &filt,
Denys Vlasenko69675782013-01-14 01:34:48 +0100758 sizeof(filt)) < 0)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000759 bb_error_msg_and_die("setsockopt(ICMP6_FILTER)");
760 }
761#endif /*ICMP6_FILTER*/
762
763 /* enable broadcast pings */
764 setsockopt_broadcast(pingsock);
765
Denis Vlasenko57707152008-08-24 00:02:18 +0000766 /* set recv buf (needed if we can get lots of responses: flood ping,
767 * broadcast ping etc) */
768 sockopt = (datalen * 2) + 7 * 1024; /* giving it a bit of extra room */
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000769 setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, &sockopt, sizeof(sockopt));
770
771 sockopt = offsetof(struct icmp6_hdr, icmp6_cksum);
772 if (offsetof(struct icmp6_hdr, icmp6_cksum) != 2)
773 BUG_bad_offsetof_icmp6_cksum();
774 setsockopt(pingsock, SOL_RAW, IPV6_CHECKSUM, &sockopt, sizeof(sockopt));
775
776 /* request ttl info to be returned in ancillary data */
777 setsockopt(pingsock, SOL_IPV6, IPV6_HOPLIMIT, &const_int_1, sizeof(const_int_1));
778
779 if (if_index)
Denis Vlasenkoaeb4bdd2007-01-25 00:00:02 +0000780 pingaddr.sin6.sin6_scope_id = if_index;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000781
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000782 signal(SIGINT, print_stats_and_exit);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000783
784 /* start the ping's going ... */
785 sendping6(0);
786
787 /* listen for replies */
788 msg.msg_name = &from;
789 msg.msg_namelen = sizeof(from);
790 msg.msg_iov = &iov;
791 msg.msg_iovlen = 1;
792 msg.msg_control = control_buf;
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100793 iov.iov_base = G.rcv_packet;
794 iov.iov_len = G.sizeof_rcv_packet;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000795 while (1) {
796 int c;
797 struct cmsghdr *mp;
798 int hoplimit = -1;
799 msg.msg_controllen = sizeof(control_buf);
800
801 c = recvmsg(pingsock, &msg, 0);
802 if (c < 0) {
803 if (errno != EINTR)
804 bb_perror_msg("recvfrom");
805 continue;
806 }
807 for (mp = CMSG_FIRSTHDR(&msg); mp; mp = CMSG_NXTHDR(&msg, mp)) {
808 if (mp->cmsg_level == SOL_IPV6
809 && mp->cmsg_type == IPV6_HOPLIMIT
810 /* don't check len - we trust the kernel: */
811 /* && mp->cmsg_len >= CMSG_LEN(sizeof(int)) */
812 ) {
Denys Vlasenko57be1ee2009-11-26 15:26:31 +0100813 /*hoplimit = *(int*)CMSG_DATA(mp); - unaligned access */
814 move_from_unaligned_int(hoplimit, CMSG_DATA(mp));
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000815 }
816 }
Denys Vlasenko5126cf92011-09-11 20:27:28 +0200817 unpack6(G.rcv_packet, c, &from, hoplimit);
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100818 if (pingcount && G.nreceived >= pingcount)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000819 break;
820 }
821}
822#endif
Eric Andersen485b9551999-12-07 23:14:59 +0000823
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000824static void ping(len_and_sockaddr *lsa)
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000825{
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000826 printf("PING %s (%s)", hostname, dotted);
827 if (source_lsa) {
828 printf(" from %s",
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000829 xmalloc_sockaddr2dotted_noport(&source_lsa->u.sa));
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000830 }
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000831 printf(": %d data bytes\n", datalen);
832
Denys Vlasenko59f46672013-06-28 00:30:46 +0200833 create_icmp_socket(lsa);
834 /* untested whether "-I addr" really works for IPv6: */
835 if (str_I)
836 setsockopt_bindtodevice(pingsock, str_I);
837
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100838 G.sizeof_rcv_packet = datalen + MAXIPLEN + MAXICMPLEN;
839 G.rcv_packet = xzalloc(G.sizeof_rcv_packet);
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000840#if ENABLE_PING6
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100841 if (lsa->u.sa.sa_family == AF_INET6) {
842 /* +4 reserves a place for timestamp, which may end up sitting
843 * _after_ packet. Saves one if() - see sendping4/6() */
844 G.snd_packet = xzalloc(datalen + sizeof(struct icmp6_hdr) + 4);
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000845 ping6(lsa);
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100846 } else
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000847#endif
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100848 {
849 G.snd_packet = xzalloc(datalen + ICMP_MINLEN + 4);
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000850 ping4(lsa);
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100851 }
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000852}
853
Denys Vlasenkoad7d94b2009-11-20 18:12:12 +0100854static int common_ping_main(int opt, char **argv)
Eric Andersen485b9551999-12-07 23:14:59 +0000855{
Denis Vlasenkoaeb4bdd2007-01-25 00:00:02 +0000856 len_and_sockaddr *lsa;
Florian Fainelli6ff05512014-08-27 16:01:25 +0200857 char *str_s, *str_p;
Eric Andersen485b9551999-12-07 23:14:59 +0000858
Denis Vlasenko821cc252007-06-04 10:33:48 +0000859 INIT_G();
860
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100861 /* exactly one argument needed; -v and -q don't mix; -c NUM, -t NUM, -w NUM, -W NUM */
862 opt_complementary = "=1:q--v:v--q:c+:t+:w+:W+";
Florian Fainelli6ff05512014-08-27 16:01:25 +0200863 opt |= getopt32(argv, OPT_STRING, &pingcount, &str_s, &opt_ttl, &deadline, &timeout, &str_I, &str_p);
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000864 if (opt & OPT_s)
865 datalen = xatou16(str_s); // -s
866 if (opt & OPT_I) { // -I
867 if_index = if_nametoindex(str_I);
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000868 if (!if_index) {
869 /* TODO: I'm not sure it takes IPv6 unless in [XX:XX..] format */
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000870 source_lsa = xdotted2sockaddr(str_I, 0);
871 str_I = NULL; /* don't try to bind to device later */
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000872 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000873 }
Florian Fainelli6ff05512014-08-27 16:01:25 +0200874 if (opt & OPT_p)
875 G.pattern = xstrtou_range(str_p, 16, 0, 255);
876
Denis Vlasenko1c9ad622007-05-27 00:53:41 +0000877 myid = (uint16_t) getpid();
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000878 hostname = argv[optind];
879#if ENABLE_PING6
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000880 {
881 sa_family_t af = AF_UNSPEC;
882 if (opt & OPT_IPV4)
883 af = AF_INET;
884 if (opt & OPT_IPV6)
885 af = AF_INET6;
886 lsa = xhost_and_af2sockaddr(hostname, 0, af);
887 }
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000888#else
Denis Vlasenko42823d52007-02-04 02:39:08 +0000889 lsa = xhost_and_af2sockaddr(hostname, 0, AF_INET);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000890#endif
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000891
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000892 if (source_lsa && source_lsa->u.sa.sa_family != lsa->u.sa.sa_family)
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000893 /* leaking it here... */
894 source_lsa = NULL;
895
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000896 dotted = xmalloc_sockaddr2dotted_noport(&lsa->u.sa);
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000897 ping(lsa);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000898 print_stats_and_exit(EXIT_SUCCESS);
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000899 /*return EXIT_SUCCESS;*/
Eric Andersen485b9551999-12-07 23:14:59 +0000900}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000901#endif /* FEATURE_FANCY_PING */
902
903
Denys Vlasenkoad7d94b2009-11-20 18:12:12 +0100904int ping_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
905int ping_main(int argc UNUSED_PARAM, char **argv)
906{
907#if !ENABLE_FEATURE_FANCY_PING
908 return common_ping_main(AF_UNSPEC, argv);
909#else
910 return common_ping_main(0, argv);
911#endif
912}
913
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000914#if ENABLE_PING6
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000915int ping6_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000916int ping6_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000917{
Denys Vlasenkoad7d94b2009-11-20 18:12:12 +0100918# if !ENABLE_FEATURE_FANCY_PING
919 return common_ping_main(AF_INET6, argv);
920# else
921 return common_ping_main(OPT_IPV6, argv);
922# endif
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000923}
924#endif
925
926/* from ping6.c:
927 * Copyright (c) 1989 The Regents of the University of California.
928 * All rights reserved.
929 *
930 * This code is derived from software contributed to Berkeley by
931 * Mike Muuss.
932 *
933 * Redistribution and use in source and binary forms, with or without
934 * modification, are permitted provided that the following conditions
935 * are met:
936 * 1. Redistributions of source code must retain the above copyright
937 * notice, this list of conditions and the following disclaimer.
938 * 2. Redistributions in binary form must reproduce the above copyright
939 * notice, this list of conditions and the following disclaimer in the
940 * documentation and/or other materials provided with the distribution.
941 *
942 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
943 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
944 *
945 * 4. Neither the name of the University nor the names of its contributors
946 * may be used to endorse or promote products derived from this software
947 * without specific prior written permission.
948 *
949 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
950 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
951 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
952 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
953 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
954 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
955 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
956 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
957 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
958 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
959 * SUCH DAMAGE.
960 */