blob: 5e4771f5a03f762e2d0ebf1526aa50ba92d93de6 [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)"
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 Nilsson714e2b72010-11-28 23:01:18 +0100110//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 Vlasenkob9a279b2007-01-24 23:53:22 +0000135#if ENABLE_PING6
Denys Vlasenkoad7d94b2009-11-20 18:12:12 +0100136# include <netinet/icmp6.h>
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000137/* I see RENUMBERED constants in bits/in.h - !!?
138 * What a fuck is going on with libc? Is it a glibc joke? */
Denys Vlasenkoad7d94b2009-11-20 18:12:12 +0100139# ifdef IPV6_2292HOPLIMIT
140# undef IPV6_HOPLIMIT
141# define IPV6_HOPLIMIT IPV6_2292HOPLIMIT
142# endif
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000143#endif
Eric Andersen485b9551999-12-07 23:14:59 +0000144
Rob Landleybc68cd12006-03-10 19:22:06 +0000145enum {
146 DEFDATALEN = 56,
147 MAXIPLEN = 60,
148 MAXICMPLEN = 76,
Rob Landleybc68cd12006-03-10 19:22:06 +0000149 MAX_DUP_CHK = (8 * 128),
150 MAXWAIT = 10,
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000151 PINGINTERVAL = 1, /* 1 second */
Denys Vlasenko59f46672013-06-28 00:30:46 +0200152 pingsock = 0,
Rob Landleybc68cd12006-03-10 19:22:06 +0000153};
Eric Andersen485b9551999-12-07 23:14:59 +0000154
Denys Vlasenko59f46672013-06-28 00:30:46 +0200155static void
156#if ENABLE_PING6
157create_icmp_socket(len_and_sockaddr *lsa)
158#else
159create_icmp_socket(void)
160#define create_icmp_socket(lsa) create_icmp_socket()
161#endif
162{
163 int sock;
164#if ENABLE_PING6
165 if (lsa->u.sa.sa_family == AF_INET6)
166 sock = socket(AF_INET6, SOCK_RAW, IPPROTO_ICMPV6);
167 else
168#endif
169 sock = socket(AF_INET, SOCK_RAW, 1); /* 1 == ICMP */
170 if (sock < 0) {
171 if (errno == EPERM)
172 bb_error_msg_and_die(bb_msg_perm_denied_are_you_root);
173 bb_perror_msg_and_die(bb_msg_can_not_create_raw_socket);
174 }
175
176 xmove_fd(sock, pingsock);
177}
178
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000179#if !ENABLE_FEATURE_FANCY_PING
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000180
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100181/* Simple version */
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000182
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100183struct globals {
184 char *hostname;
185 char packet[DEFDATALEN + MAXIPLEN + MAXICMPLEN];
186} FIX_ALIASING;
187#define G (*(struct globals*)&bb_common_bufsiz1)
188#define INIT_G() do { } while (0)
Denis Vlasenkocb6874c2006-09-02 16:13:36 +0000189
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000190static void noresp(int ign UNUSED_PARAM)
Eric Andersenb5474c42002-03-20 11:59:28 +0000191{
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100192 printf("No response from %s\n", G.hostname);
Eric Andersen4e486a52003-01-12 06:08:33 +0000193 exit(EXIT_FAILURE);
Eric Andersenb5474c42002-03-20 11:59:28 +0000194}
Eric Andersen19db07b1999-12-11 08:41:28 +0000195
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000196static void ping4(len_and_sockaddr *lsa)
Eric Andersen19db07b1999-12-11 08:41:28 +0000197{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000198 struct icmp *pkt;
Denys Vlasenko59f46672013-06-28 00:30:46 +0200199 int c;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000200
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100201 pkt = (struct icmp *) G.packet;
Denys Vlasenko59f46672013-06-28 00:30:46 +0200202 /*memset(pkt, 0, sizeof(G.packet)); already is */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000203 pkt->icmp_type = ICMP_ECHO;
Baruch Siache8f36332011-09-07 17:52:37 +0200204 pkt->icmp_cksum = inet_cksum((uint16_t *) pkt, sizeof(G.packet));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000205
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100206 xsendto(pingsock, G.packet, DEFDATALEN + ICMP_MINLEN, &lsa->u.sa, lsa->len);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000207
Erik Andersene49d5ec2000-02-08 19:58:47 +0000208 /* listen for replies */
209 while (1) {
Denys Vlasenko59f46672013-06-28 00:30:46 +0200210#if 0
Erik Andersene49d5ec2000-02-08 19:58:47 +0000211 struct sockaddr_in from;
Mike Frysinger03e827a2005-07-26 23:00:59 +0000212 socklen_t fromlen = sizeof(from);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000213
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100214 c = recvfrom(pingsock, G.packet, sizeof(G.packet), 0,
Denis Vlasenko806116b2006-12-31 12:14:16 +0000215 (struct sockaddr *) &from, &fromlen);
Denys Vlasenko59f46672013-06-28 00:30:46 +0200216#else
217 c = recv(pingsock, G.packet, sizeof(G.packet), 0);
218#endif
Denis Vlasenko806116b2006-12-31 12:14:16 +0000219 if (c < 0) {
Denis Vlasenko44c2eb22007-01-08 23:55:33 +0000220 if (errno != EINTR)
221 bb_perror_msg("recvfrom");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000222 continue;
223 }
224 if (c >= 76) { /* ip + icmp */
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100225 struct iphdr *iphdr = (struct iphdr *) G.packet;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000226
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100227 pkt = (struct icmp *) (G.packet + (iphdr->ihl << 2)); /* skip ip hdr */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000228 if (pkt->icmp_type == ICMP_ECHOREPLY)
229 break;
230 }
231 }
Denis Vlasenko9adc6ce2007-01-22 22:45:27 +0000232 if (ENABLE_FEATURE_CLEAN_UP)
233 close(pingsock);
Eric Andersen19db07b1999-12-11 08:41:28 +0000234}
235
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000236#if ENABLE_PING6
237static void ping6(len_and_sockaddr *lsa)
238{
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000239 struct icmp6_hdr *pkt;
Denys Vlasenko59f46672013-06-28 00:30:46 +0200240 int c;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000241 int sockopt;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000242
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100243 pkt = (struct icmp6_hdr *) G.packet;
Denys Vlasenko59f46672013-06-28 00:30:46 +0200244 /*memset(pkt, 0, sizeof(G.packet)); already is */
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000245 pkt->icmp6_type = ICMP6_ECHO_REQUEST;
246
247 sockopt = offsetof(struct icmp6_hdr, icmp6_cksum);
248 setsockopt(pingsock, SOL_RAW, IPV6_CHECKSUM, &sockopt, sizeof(sockopt));
249
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100250 xsendto(pingsock, G.packet, DEFDATALEN + sizeof(struct icmp6_hdr), &lsa->u.sa, lsa->len);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000251
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000252 /* listen for replies */
253 while (1) {
Denys Vlasenko59f46672013-06-28 00:30:46 +0200254#if 0
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000255 struct sockaddr_in6 from;
256 socklen_t fromlen = sizeof(from);
257
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100258 c = recvfrom(pingsock, G.packet, sizeof(G.packet), 0,
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000259 (struct sockaddr *) &from, &fromlen);
Denys Vlasenko59f46672013-06-28 00:30:46 +0200260#else
261 c = recv(pingsock, G.packet, sizeof(G.packet), 0);
262#endif
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000263 if (c < 0) {
264 if (errno != EINTR)
265 bb_perror_msg("recvfrom");
266 continue;
267 }
Denys Vlasenko59f46672013-06-28 00:30:46 +0200268 if (c >= ICMP_MINLEN) { /* icmp6_hdr */
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000269 if (pkt->icmp6_type == ICMP6_ECHO_REPLY)
270 break;
271 }
272 }
273 if (ENABLE_FEATURE_CLEAN_UP)
274 close(pingsock);
275}
276#endif
277
Denys Vlasenkoad7d94b2009-11-20 18:12:12 +0100278#if !ENABLE_PING6
279# define common_ping_main(af, argv) common_ping_main(argv)
280#endif
281static int common_ping_main(sa_family_t af, char **argv)
Eric Andersen19db07b1999-12-11 08:41:28 +0000282{
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000283 len_and_sockaddr *lsa;
Denis Vlasenko3483e852007-07-02 15:47:52 +0000284
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100285 INIT_G();
286
Denys Vlasenkoad7d94b2009-11-20 18:12:12 +0100287#if ENABLE_PING6
Denis Vlasenko3483e852007-07-02 15:47:52 +0000288 while ((++argv)[0] && argv[0][0] == '-') {
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000289 if (argv[0][1] == '4') {
290 af = AF_INET;
291 continue;
292 }
293 if (argv[0][1] == '6') {
294 af = AF_INET6;
295 continue;
296 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000297 bb_show_usage();
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000298 }
299#else
300 argv++;
301#endif
302
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100303 G.hostname = *argv;
304 if (!G.hostname)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000305 bb_show_usage();
306
307#if ENABLE_PING6
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100308 lsa = xhost_and_af2sockaddr(G.hostname, 0, af);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000309#else
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100310 lsa = xhost_and_af2sockaddr(G.hostname, 0, AF_INET);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000311#endif
312 /* Set timer _after_ DNS resolution */
313 signal(SIGALRM, noresp);
314 alarm(5); /* give the host 5000ms to respond */
315
Denys Vlasenko59f46672013-06-28 00:30:46 +0200316 create_icmp_socket(lsa);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000317#if ENABLE_PING6
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000318 if (lsa->u.sa.sa_family == AF_INET6)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000319 ping6(lsa);
320 else
321#endif
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000322 ping4(lsa);
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100323 printf("%s is alive!\n", G.hostname);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000324 return EXIT_SUCCESS;
Eric Andersen19db07b1999-12-11 08:41:28 +0000325}
326
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000327
328#else /* FEATURE_FANCY_PING */
329
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000330
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100331/* Full(er) version */
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000332
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100333#define OPT_STRING ("qvc:s:t:w:W:I:n4" IF_PING6("6"))
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000334enum {
335 OPT_QUIET = 1 << 0,
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000336 OPT_VERBOSE = 1 << 1,
337 OPT_c = 1 << 2,
338 OPT_s = 1 << 3,
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100339 OPT_t = 1 << 4,
340 OPT_w = 1 << 5,
341 OPT_W = 1 << 6,
342 OPT_I = 1 << 7,
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100343 /*OPT_n = 1 << 8, - ignored */
344 OPT_IPV4 = 1 << 9,
345 OPT_IPV6 = (1 << 10) * ENABLE_PING6,
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000346};
347
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000348
Denis Vlasenko821cc252007-06-04 10:33:48 +0000349struct globals {
Denis Vlasenko1a7afb42007-10-19 21:39:25 +0000350 int if_index;
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000351 char *str_I;
Denis Vlasenko821cc252007-06-04 10:33:48 +0000352 len_and_sockaddr *source_lsa;
353 unsigned datalen;
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000354 unsigned pingcount; /* must be int-sized */
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100355 unsigned opt_ttl;
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000356 unsigned long ntransmitted, nreceived, nrepeats;
Denis Vlasenko821cc252007-06-04 10:33:48 +0000357 uint16_t myid;
Denis Vlasenko76791452007-06-18 08:55:57 +0000358 unsigned tmin, tmax; /* in us */
359 unsigned long long tsum; /* in us, sum of all times */
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000360 unsigned deadline;
361 unsigned timeout;
362 unsigned total_secs;
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100363 unsigned sizeof_rcv_packet;
364 char *rcv_packet; /* [datalen + MAXIPLEN + MAXICMPLEN] */
365 void *snd_packet; /* [datalen + ipv4/ipv6_const] */
Denis Vlasenko821cc252007-06-04 10:33:48 +0000366 const char *hostname;
367 const char *dotted;
368 union {
369 struct sockaddr sa;
370 struct sockaddr_in sin;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000371#if ENABLE_PING6
Denis Vlasenko821cc252007-06-04 10:33:48 +0000372 struct sockaddr_in6 sin6;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000373#endif
Denis Vlasenko821cc252007-06-04 10:33:48 +0000374 } pingaddr;
Denys Vlasenko26a7e2e2013-06-28 01:33:47 +0200375 unsigned char rcvd_tbl[MAX_DUP_CHK / 8];
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100376} FIX_ALIASING;
Denis Vlasenko821cc252007-06-04 10:33:48 +0000377#define G (*(struct globals*)&bb_common_bufsiz1)
Denis Vlasenko821cc252007-06-04 10:33:48 +0000378#define if_index (G.if_index )
Denis Vlasenko1a7afb42007-10-19 21:39:25 +0000379#define source_lsa (G.source_lsa )
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000380#define str_I (G.str_I )
Denis Vlasenko1a7afb42007-10-19 21:39:25 +0000381#define datalen (G.datalen )
Denis Vlasenko821cc252007-06-04 10:33:48 +0000382#define pingcount (G.pingcount )
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100383#define opt_ttl (G.opt_ttl )
Denis Vlasenko821cc252007-06-04 10:33:48 +0000384#define myid (G.myid )
385#define tmin (G.tmin )
386#define tmax (G.tmax )
387#define tsum (G.tsum )
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000388#define deadline (G.deadline )
389#define timeout (G.timeout )
390#define total_secs (G.total_secs )
Denis Vlasenko821cc252007-06-04 10:33:48 +0000391#define hostname (G.hostname )
392#define dotted (G.dotted )
393#define pingaddr (G.pingaddr )
394#define rcvd_tbl (G.rcvd_tbl )
395void BUG_ping_globals_too_big(void);
396#define INIT_G() do { \
Denis Vlasenko6b404432008-01-07 16:13:14 +0000397 if (sizeof(G) > COMMON_BUFSIZE) \
398 BUG_ping_globals_too_big(); \
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000399 datalen = DEFDATALEN; \
400 timeout = MAXWAIT; \
Denis Vlasenko821cc252007-06-04 10:33:48 +0000401 tmin = UINT_MAX; \
402} while (0)
Eric Andersen19db07b1999-12-11 08:41:28 +0000403
Eric Andersen19db07b1999-12-11 08:41:28 +0000404
Denys Vlasenko26a7e2e2013-06-28 01:33:47 +0200405#define BYTE(bit) rcvd_tbl[(bit)>>3]
406#define MASK(bit) (1 << ((bit) & 7))
407#define SET(bit) (BYTE(bit) |= MASK(bit))
408#define CLR(bit) (BYTE(bit) &= (~MASK(bit)))
409#define TST(bit) (BYTE(bit) & MASK(bit))
Eric Andersen19db07b1999-12-11 08:41:28 +0000410
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000411static void print_stats_and_exit(int junk) NORETURN;
412static void print_stats_and_exit(int junk UNUSED_PARAM)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000413{
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100414 unsigned long ul;
415 unsigned long nrecv;
416
Erik Andersene49d5ec2000-02-08 19:58:47 +0000417 signal(SIGINT, SIG_IGN);
418
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100419 nrecv = G.nreceived;
420 printf("\n--- %s ping statistics ---\n"
421 "%lu packets transmitted, "
422 "%lu packets received, ",
423 hostname, G.ntransmitted, nrecv
424 );
425 if (G.nrepeats)
426 printf("%lu duplicates, ", G.nrepeats);
427 ul = G.ntransmitted;
428 if (ul != 0)
429 ul = (ul - nrecv) * 100 / ul;
430 printf("%lu%% packet loss\n", ul);
Denis Vlasenko76791452007-06-18 08:55:57 +0000431 if (tmin != UINT_MAX) {
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100432 unsigned tavg = tsum / (nrecv + G.nrepeats);
Denis Vlasenko76791452007-06-18 08:55:57 +0000433 printf("round-trip min/avg/max = %u.%03u/%u.%03u/%u.%03u ms\n",
434 tmin / 1000, tmin % 1000,
435 tavg / 1000, tavg % 1000,
436 tmax / 1000, tmax % 1000);
437 }
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000438 /* if condition is true, exit with 1 -- 'failure' */
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100439 exit(nrecv == 0 || (deadline && nrecv < pingcount));
Eric Andersen485b9551999-12-07 23:14:59 +0000440}
441
Denys Vlasenko281e7b82011-02-06 17:51:45 +0100442static void sendping_tail(void (*sp)(int), int size_pkt)
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000443{
Denis Vlasenkoc8e99932007-02-09 18:14:42 +0000444 int sz;
445
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100446 CLR((uint16_t)G.ntransmitted % MAX_DUP_CHK);
447 G.ntransmitted++;
Denis Vlasenkoc8e99932007-02-09 18:14:42 +0000448
Denys Vlasenko281e7b82011-02-06 17:51:45 +0100449 size_pkt += datalen;
450
Denis Vlasenkoc8e99932007-02-09 18:14:42 +0000451 /* sizeof(pingaddr) can be larger than real sa size, but I think
452 * it doesn't matter */
Denys Vlasenko281e7b82011-02-06 17:51:45 +0100453 sz = xsendto(pingsock, G.snd_packet, size_pkt, &pingaddr.sa, sizeof(pingaddr));
Denis Vlasenkoc8e99932007-02-09 18:14:42 +0000454 if (sz != size_pkt)
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000455 bb_error_msg_and_die(bb_msg_write_error);
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000456
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100457 if (pingcount == 0 || deadline || G.ntransmitted < pingcount) {
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000458 /* Didn't send all pings yet - schedule next in 1s */
459 signal(SIGALRM, sp);
460 if (deadline) {
461 total_secs += PINGINTERVAL;
462 if (total_secs >= deadline)
463 signal(SIGALRM, print_stats_and_exit);
464 }
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000465 alarm(PINGINTERVAL);
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000466 } else { /* -c NN, and all NN are sent (and no deadline) */
467 /* Wait for the last ping to come back.
468 * -W timeout: wait for a response in seconds.
469 * Affects only timeout in absense of any responses,
470 * otherwise ping waits for two RTTs. */
471 unsigned expire = timeout;
472
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100473 if (G.nreceived) {
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000474 /* approx. 2*tmax, in seconds (2 RTT) */
475 expire = tmax / (512*1024);
476 if (expire == 0)
477 expire = 1;
478 }
479 signal(SIGALRM, print_stats_and_exit);
480 alarm(expire);
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000481 }
482}
483
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000484static void sendping4(int junk UNUSED_PARAM)
Eric Andersen485b9551999-12-07 23:14:59 +0000485{
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100486 struct icmp *pkt = G.snd_packet;
Eric Andersen485b9551999-12-07 23:14:59 +0000487
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100488 //memset(pkt, 0, datalen + ICMP_MINLEN + 4); - G.snd_packet was xzalloced
Erik Andersene49d5ec2000-02-08 19:58:47 +0000489 pkt->icmp_type = ICMP_ECHO;
Denis Vlasenkob34266b2008-04-29 12:31:53 +0000490 /*pkt->icmp_code = 0;*/
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100491 pkt->icmp_cksum = 0; /* cksum is calculated with this field set to 0 */
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100492 pkt->icmp_seq = htons(G.ntransmitted); /* don't ++ here, it can be a macro */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000493 pkt->icmp_id = myid;
Denis Vlasenko7b72fc12007-06-16 13:37:59 +0000494
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100495 /* If datalen < 4, we store timestamp _past_ the packet,
496 * but it's ok - we allocated 4 extra bytes in xzalloc() just in case.
497 */
Denis Vlasenko76791452007-06-18 08:55:57 +0000498 /*if (datalen >= 4)*/
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100499 /* No hton: we'll read it back on the same machine */
Denis Vlasenko76791452007-06-18 08:55:57 +0000500 *(uint32_t*)&pkt->icmp_dun = monotonic_us();
Denis Vlasenko7b72fc12007-06-16 13:37:59 +0000501
Baruch Siache8f36332011-09-07 17:52:37 +0200502 pkt->icmp_cksum = inet_cksum((uint16_t *) pkt, datalen + ICMP_MINLEN);
Eric Andersen485b9551999-12-07 23:14:59 +0000503
Denys Vlasenko281e7b82011-02-06 17:51:45 +0100504 sendping_tail(sendping4, ICMP_MINLEN);
Eric Andersen485b9551999-12-07 23:14:59 +0000505}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000506#if ENABLE_PING6
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000507static void sendping6(int junk UNUSED_PARAM)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000508{
Denys Vlasenko1bb52a92011-02-05 03:58:43 +0100509 struct icmp6_hdr *pkt = G.snd_packet;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000510
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100511 //memset(pkt, 0, datalen + sizeof(struct icmp6_hdr) + 4);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000512 pkt->icmp6_type = ICMP6_ECHO_REQUEST;
Denis Vlasenkob34266b2008-04-29 12:31:53 +0000513 /*pkt->icmp6_code = 0;*/
514 /*pkt->icmp6_cksum = 0;*/
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100515 pkt->icmp6_seq = htons(G.ntransmitted); /* don't ++ here, it can be a macro */
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000516 pkt->icmp6_id = myid;
Denis Vlasenko7b72fc12007-06-16 13:37:59 +0000517
Denis Vlasenko76791452007-06-18 08:55:57 +0000518 /*if (datalen >= 4)*/
Denys Vlasenko5117eff2013-10-16 14:21:20 +0200519 *(bb__aliased_uint32_t*)(&pkt->icmp6_data8[4]) = monotonic_us();
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000520
Baruch Siache8f36332011-09-07 17:52:37 +0200521 //TODO? pkt->icmp_cksum = inet_cksum(...);
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100522
Denys Vlasenko281e7b82011-02-06 17:51:45 +0100523 sendping_tail(sendping6, sizeof(struct icmp6_hdr));
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000524}
525#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000526
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000527static const char *icmp_type_name(int id)
Erik Andersen227a59b2000-04-25 23:24:55 +0000528{
529 switch (id) {
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000530 case ICMP_ECHOREPLY: return "Echo Reply";
531 case ICMP_DEST_UNREACH: return "Destination Unreachable";
532 case ICMP_SOURCE_QUENCH: return "Source Quench";
533 case ICMP_REDIRECT: return "Redirect (change route)";
534 case ICMP_ECHO: return "Echo Request";
535 case ICMP_TIME_EXCEEDED: return "Time Exceeded";
536 case ICMP_PARAMETERPROB: return "Parameter Problem";
537 case ICMP_TIMESTAMP: return "Timestamp Request";
538 case ICMP_TIMESTAMPREPLY: return "Timestamp Reply";
539 case ICMP_INFO_REQUEST: return "Information Request";
540 case ICMP_INFO_REPLY: return "Information Reply";
541 case ICMP_ADDRESS: return "Address Mask Request";
542 case ICMP_ADDRESSREPLY: return "Address Mask Reply";
543 default: return "unknown ICMP type";
Erik Andersen227a59b2000-04-25 23:24:55 +0000544 }
545}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000546#if ENABLE_PING6
547/* RFC3542 changed some definitions from RFC2292 for no good reason, whee!
548 * the newer 3542 uses a MLD_ prefix where as 2292 uses ICMP6_ prefix */
549#ifndef MLD_LISTENER_QUERY
550# define MLD_LISTENER_QUERY ICMP6_MEMBERSHIP_QUERY
551#endif
552#ifndef MLD_LISTENER_REPORT
553# define MLD_LISTENER_REPORT ICMP6_MEMBERSHIP_REPORT
554#endif
555#ifndef MLD_LISTENER_REDUCTION
556# define MLD_LISTENER_REDUCTION ICMP6_MEMBERSHIP_REDUCTION
557#endif
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000558static const char *icmp6_type_name(int id)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000559{
560 switch (id) {
561 case ICMP6_DST_UNREACH: return "Destination Unreachable";
562 case ICMP6_PACKET_TOO_BIG: return "Packet too big";
563 case ICMP6_TIME_EXCEEDED: return "Time Exceeded";
564 case ICMP6_PARAM_PROB: return "Parameter Problem";
565 case ICMP6_ECHO_REPLY: return "Echo Reply";
566 case ICMP6_ECHO_REQUEST: return "Echo Request";
567 case MLD_LISTENER_QUERY: return "Listener Query";
568 case MLD_LISTENER_REPORT: return "Listener Report";
569 case MLD_LISTENER_REDUCTION: return "Listener Reduction";
570 default: return "unknown ICMP type";
571 }
572}
573#endif
Erik Andersen227a59b2000-04-25 23:24:55 +0000574
Denis Vlasenko76791452007-06-18 08:55:57 +0000575static void unpack_tail(int sz, uint32_t *tp,
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000576 const char *from_str,
577 uint16_t recv_seq, int ttl)
578{
Denys Vlasenko26a7e2e2013-06-28 01:33:47 +0200579 unsigned char *b, m;
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000580 const char *dupmsg = " (DUP!)";
581 unsigned triptime = triptime; /* for gcc */
582
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000583 if (tp) {
Denis Vlasenko76791452007-06-18 08:55:57 +0000584 /* (int32_t) cast is for hypothetical 64-bit unsigned */
585 /* (doesn't hurt 32-bit real-world anyway) */
586 triptime = (int32_t) ((uint32_t)monotonic_us() - *tp);
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000587 tsum += triptime;
588 if (triptime < tmin)
589 tmin = triptime;
590 if (triptime > tmax)
591 tmax = triptime;
592 }
593
Denys Vlasenko26a7e2e2013-06-28 01:33:47 +0200594 b = &BYTE(recv_seq % MAX_DUP_CHK);
595 m = MASK(recv_seq % MAX_DUP_CHK);
596 /*if TST(recv_seq % MAX_DUP_CHK):*/
597 if (*b & m) {
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100598 ++G.nrepeats;
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000599 } else {
Denys Vlasenko26a7e2e2013-06-28 01:33:47 +0200600 /*SET(recv_seq % MAX_DUP_CHK):*/
601 *b |= m;
602 ++G.nreceived;
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000603 dupmsg += 7;
604 }
605
606 if (option_mask32 & OPT_QUIET)
607 return;
608
609 printf("%d bytes from %s: seq=%u ttl=%d", sz,
610 from_str, recv_seq, ttl);
611 if (tp)
Denis Vlasenko76791452007-06-18 08:55:57 +0000612 printf(" time=%u.%03u ms", triptime / 1000, triptime % 1000);
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000613 puts(dupmsg);
Denys Vlasenko8131eea2009-11-02 14:19:51 +0100614 fflush_all();
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000615}
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000616static void unpack4(char *buf, int sz, struct sockaddr_in *from)
Eric Andersen485b9551999-12-07 23:14:59 +0000617{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000618 struct icmp *icmppkt;
619 struct iphdr *iphdr;
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000620 int hlen;
Eric Andersen485b9551999-12-07 23:14:59 +0000621
Erik Andersene49d5ec2000-02-08 19:58:47 +0000622 /* discard if too short */
Pavel Roskin0024abc2000-06-07 20:38:15 +0000623 if (sz < (datalen + ICMP_MINLEN))
Erik Andersene49d5ec2000-02-08 19:58:47 +0000624 return;
Eric Andersen485b9551999-12-07 23:14:59 +0000625
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000626 /* check IP header */
627 iphdr = (struct iphdr *) buf;
628 hlen = iphdr->ihl << 2;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000629 sz -= hlen;
630 icmppkt = (struct icmp *) (buf + hlen);
Erik Andersen227a59b2000-04-25 23:24:55 +0000631 if (icmppkt->icmp_id != myid)
Denis Vlasenkocb6874c2006-09-02 16:13:36 +0000632 return; /* not our ping */
Erik Andersen227a59b2000-04-25 23:24:55 +0000633
Erik Andersene49d5ec2000-02-08 19:58:47 +0000634 if (icmppkt->icmp_type == ICMP_ECHOREPLY) {
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000635 uint16_t recv_seq = ntohs(icmppkt->icmp_seq);
Denis Vlasenko76791452007-06-18 08:55:57 +0000636 uint32_t *tp = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000637
Denis Vlasenko76791452007-06-18 08:55:57 +0000638 if (sz >= ICMP_MINLEN + sizeof(uint32_t))
639 tp = (uint32_t *) icmppkt->icmp_data;
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000640 unpack_tail(sz, tp,
641 inet_ntoa(*(struct in_addr *) &from->sin_addr.s_addr),
642 recv_seq, iphdr->ttl);
643 } else if (icmppkt->icmp_type != ICMP_ECHO) {
644 bb_error_msg("warning: got ICMP %d (%s)",
645 icmppkt->icmp_type,
646 icmp_type_name(icmppkt->icmp_type));
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000647 }
Eric Andersen485b9551999-12-07 23:14:59 +0000648}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000649#if ENABLE_PING6
Denys Vlasenko5126cf92011-09-11 20:27:28 +0200650static void unpack6(char *packet, int sz, struct sockaddr_in6 *from, int hoplimit)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000651{
652 struct icmp6_hdr *icmppkt;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000653 char buf[INET6_ADDRSTRLEN];
Eric Andersen485b9551999-12-07 23:14:59 +0000654
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000655 /* discard if too short */
656 if (sz < (datalen + sizeof(struct icmp6_hdr)))
657 return;
658
659 icmppkt = (struct icmp6_hdr *) packet;
660 if (icmppkt->icmp6_id != myid)
661 return; /* not our ping */
662
663 if (icmppkt->icmp6_type == ICMP6_ECHO_REPLY) {
664 uint16_t recv_seq = ntohs(icmppkt->icmp6_seq);
Denis Vlasenko76791452007-06-18 08:55:57 +0000665 uint32_t *tp = NULL;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000666
Denis Vlasenko76791452007-06-18 08:55:57 +0000667 if (sz >= sizeof(struct icmp6_hdr) + sizeof(uint32_t))
668 tp = (uint32_t *) &icmppkt->icmp6_data8[4];
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000669 unpack_tail(sz, tp,
Denys Vlasenko5126cf92011-09-11 20:27:28 +0200670 inet_ntop(AF_INET6, &from->sin6_addr,
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000671 buf, sizeof(buf)),
672 recv_seq, hoplimit);
673 } else if (icmppkt->icmp6_type != ICMP6_ECHO_REQUEST) {
674 bb_error_msg("warning: got ICMP %d (%s)",
675 icmppkt->icmp6_type,
676 icmp6_type_name(icmppkt->icmp6_type));
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000677 }
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000678}
679#endif
680
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000681static void ping4(len_and_sockaddr *lsa)
Eric Andersen485b9551999-12-07 23:14:59 +0000682{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000683 int sockopt;
684
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000685 pingaddr.sin = lsa->u.sin;
Denis Vlasenko5ad10482007-06-19 22:54:21 +0000686 if (source_lsa) {
687 if (setsockopt(pingsock, IPPROTO_IP, IP_MULTICAST_IF,
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000688 &source_lsa->u.sa, source_lsa->len))
Denis Vlasenko5ad10482007-06-19 22:54:21 +0000689 bb_error_msg_and_die("can't set multicast source interface");
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000690 xbind(pingsock, &source_lsa->u.sa, source_lsa->len);
Denis Vlasenko5ad10482007-06-19 22:54:21 +0000691 }
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000692
Erik Andersene49d5ec2000-02-08 19:58:47 +0000693 /* enable broadcast pings */
Denis Vlasenko48237b02006-11-22 23:22:06 +0000694 setsockopt_broadcast(pingsock);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000695
Denis Vlasenko57707152008-08-24 00:02:18 +0000696 /* set recv buf (needed if we can get lots of responses: flood ping,
697 * broadcast ping etc) */
698 sockopt = (datalen * 2) + 7 * 1024; /* giving it a bit of extra room */
Denis Vlasenko703e2022007-01-22 14:12:08 +0000699 setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, &sockopt, sizeof(sockopt));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000700
Denys Vlasenko3c8799b2010-11-29 12:07:12 +0100701 if (opt_ttl != 0) {
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100702 setsockopt(pingsock, IPPROTO_IP, IP_TTL, &opt_ttl, sizeof(opt_ttl));
Denys Vlasenko3c8799b2010-11-29 12:07:12 +0100703 /* above doesnt affect packets sent to bcast IP, so... */
704 setsockopt(pingsock, IPPROTO_IP, IP_MULTICAST_TTL, &opt_ttl, sizeof(opt_ttl));
705 }
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100706
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000707 signal(SIGINT, print_stats_and_exit);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000708
709 /* start the ping's going ... */
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000710 sendping4(0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000711
712 /* listen for replies */
713 while (1) {
714 struct sockaddr_in from;
Erik Andersen1d1d9502000-04-21 01:26:49 +0000715 socklen_t fromlen = (socklen_t) sizeof(from);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000716 int c;
717
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100718 c = recvfrom(pingsock, G.rcv_packet, G.sizeof_rcv_packet, 0,
Denis Vlasenko44c2eb22007-01-08 23:55:33 +0000719 (struct sockaddr *) &from, &fromlen);
720 if (c < 0) {
721 if (errno != EINTR)
722 bb_perror_msg("recvfrom");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000723 continue;
724 }
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100725 unpack4(G.rcv_packet, c, &from);
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100726 if (pingcount && G.nreceived >= pingcount)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000727 break;
728 }
Eric Andersen485b9551999-12-07 23:14:59 +0000729}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000730#if ENABLE_PING6
731extern int BUG_bad_offsetof_icmp6_cksum(void);
732static void ping6(len_and_sockaddr *lsa)
733{
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000734 int sockopt;
735 struct msghdr msg;
736 struct sockaddr_in6 from;
737 struct iovec iov;
738 char control_buf[CMSG_SPACE(36)];
739
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000740 pingaddr.sin6 = lsa->u.sin6;
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000741 if (source_lsa)
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000742 xbind(pingsock, &source_lsa->u.sa, source_lsa->len);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000743
744#ifdef ICMP6_FILTER
745 {
746 struct icmp6_filter filt;
747 if (!(option_mask32 & OPT_VERBOSE)) {
748 ICMP6_FILTER_SETBLOCKALL(&filt);
749 ICMP6_FILTER_SETPASS(ICMP6_ECHO_REPLY, &filt);
750 } else {
751 ICMP6_FILTER_SETPASSALL(&filt);
752 }
753 if (setsockopt(pingsock, IPPROTO_ICMPV6, ICMP6_FILTER, &filt,
Denys Vlasenko69675782013-01-14 01:34:48 +0100754 sizeof(filt)) < 0)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000755 bb_error_msg_and_die("setsockopt(ICMP6_FILTER)");
756 }
757#endif /*ICMP6_FILTER*/
758
759 /* enable broadcast pings */
760 setsockopt_broadcast(pingsock);
761
Denis Vlasenko57707152008-08-24 00:02:18 +0000762 /* set recv buf (needed if we can get lots of responses: flood ping,
763 * broadcast ping etc) */
764 sockopt = (datalen * 2) + 7 * 1024; /* giving it a bit of extra room */
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000765 setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, &sockopt, sizeof(sockopt));
766
767 sockopt = offsetof(struct icmp6_hdr, icmp6_cksum);
768 if (offsetof(struct icmp6_hdr, icmp6_cksum) != 2)
769 BUG_bad_offsetof_icmp6_cksum();
770 setsockopt(pingsock, SOL_RAW, IPV6_CHECKSUM, &sockopt, sizeof(sockopt));
771
772 /* request ttl info to be returned in ancillary data */
773 setsockopt(pingsock, SOL_IPV6, IPV6_HOPLIMIT, &const_int_1, sizeof(const_int_1));
774
775 if (if_index)
Denis Vlasenkoaeb4bdd2007-01-25 00:00:02 +0000776 pingaddr.sin6.sin6_scope_id = if_index;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000777
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000778 signal(SIGINT, print_stats_and_exit);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000779
780 /* start the ping's going ... */
781 sendping6(0);
782
783 /* listen for replies */
784 msg.msg_name = &from;
785 msg.msg_namelen = sizeof(from);
786 msg.msg_iov = &iov;
787 msg.msg_iovlen = 1;
788 msg.msg_control = control_buf;
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100789 iov.iov_base = G.rcv_packet;
790 iov.iov_len = G.sizeof_rcv_packet;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000791 while (1) {
792 int c;
793 struct cmsghdr *mp;
794 int hoplimit = -1;
795 msg.msg_controllen = sizeof(control_buf);
796
797 c = recvmsg(pingsock, &msg, 0);
798 if (c < 0) {
799 if (errno != EINTR)
800 bb_perror_msg("recvfrom");
801 continue;
802 }
803 for (mp = CMSG_FIRSTHDR(&msg); mp; mp = CMSG_NXTHDR(&msg, mp)) {
804 if (mp->cmsg_level == SOL_IPV6
805 && mp->cmsg_type == IPV6_HOPLIMIT
806 /* don't check len - we trust the kernel: */
807 /* && mp->cmsg_len >= CMSG_LEN(sizeof(int)) */
808 ) {
Denys Vlasenko57be1ee2009-11-26 15:26:31 +0100809 /*hoplimit = *(int*)CMSG_DATA(mp); - unaligned access */
810 move_from_unaligned_int(hoplimit, CMSG_DATA(mp));
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000811 }
812 }
Denys Vlasenko5126cf92011-09-11 20:27:28 +0200813 unpack6(G.rcv_packet, c, &from, hoplimit);
Denys Vlasenkoaf4a07a2013-03-15 00:11:35 +0100814 if (pingcount && G.nreceived >= pingcount)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000815 break;
816 }
817}
818#endif
Eric Andersen485b9551999-12-07 23:14:59 +0000819
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000820static void ping(len_and_sockaddr *lsa)
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000821{
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000822 printf("PING %s (%s)", hostname, dotted);
823 if (source_lsa) {
824 printf(" from %s",
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000825 xmalloc_sockaddr2dotted_noport(&source_lsa->u.sa));
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000826 }
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000827 printf(": %d data bytes\n", datalen);
828
Denys Vlasenko59f46672013-06-28 00:30:46 +0200829 create_icmp_socket(lsa);
830 /* untested whether "-I addr" really works for IPv6: */
831 if (str_I)
832 setsockopt_bindtodevice(pingsock, str_I);
833
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100834 G.sizeof_rcv_packet = datalen + MAXIPLEN + MAXICMPLEN;
835 G.rcv_packet = xzalloc(G.sizeof_rcv_packet);
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000836#if ENABLE_PING6
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100837 if (lsa->u.sa.sa_family == AF_INET6) {
838 /* +4 reserves a place for timestamp, which may end up sitting
839 * _after_ packet. Saves one if() - see sendping4/6() */
840 G.snd_packet = xzalloc(datalen + sizeof(struct icmp6_hdr) + 4);
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000841 ping6(lsa);
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100842 } else
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000843#endif
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100844 {
845 G.snd_packet = xzalloc(datalen + ICMP_MINLEN + 4);
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000846 ping4(lsa);
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100847 }
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000848}
849
Denys Vlasenkoad7d94b2009-11-20 18:12:12 +0100850static int common_ping_main(int opt, char **argv)
Eric Andersen485b9551999-12-07 23:14:59 +0000851{
Denis Vlasenkoaeb4bdd2007-01-25 00:00:02 +0000852 len_and_sockaddr *lsa;
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000853 char *str_s;
Eric Andersen485b9551999-12-07 23:14:59 +0000854
Denis Vlasenko821cc252007-06-04 10:33:48 +0000855 INIT_G();
856
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100857 /* exactly one argument needed; -v and -q don't mix; -c NUM, -t NUM, -w NUM, -W NUM */
858 opt_complementary = "=1:q--v:v--q:c+:t+:w+:W+";
859 opt |= getopt32(argv, OPT_STRING, &pingcount, &str_s, &opt_ttl, &deadline, &timeout, &str_I);
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000860 if (opt & OPT_s)
861 datalen = xatou16(str_s); // -s
862 if (opt & OPT_I) { // -I
863 if_index = if_nametoindex(str_I);
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000864 if (!if_index) {
865 /* TODO: I'm not sure it takes IPv6 unless in [XX:XX..] format */
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000866 source_lsa = xdotted2sockaddr(str_I, 0);
867 str_I = NULL; /* don't try to bind to device later */
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000868 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000869 }
Denis Vlasenko1c9ad622007-05-27 00:53:41 +0000870 myid = (uint16_t) getpid();
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000871 hostname = argv[optind];
872#if ENABLE_PING6
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000873 {
874 sa_family_t af = AF_UNSPEC;
875 if (opt & OPT_IPV4)
876 af = AF_INET;
877 if (opt & OPT_IPV6)
878 af = AF_INET6;
879 lsa = xhost_and_af2sockaddr(hostname, 0, af);
880 }
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000881#else
Denis Vlasenko42823d52007-02-04 02:39:08 +0000882 lsa = xhost_and_af2sockaddr(hostname, 0, AF_INET);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000883#endif
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000884
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000885 if (source_lsa && source_lsa->u.sa.sa_family != lsa->u.sa.sa_family)
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000886 /* leaking it here... */
887 source_lsa = NULL;
888
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000889 dotted = xmalloc_sockaddr2dotted_noport(&lsa->u.sa);
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000890 ping(lsa);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000891 print_stats_and_exit(EXIT_SUCCESS);
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000892 /*return EXIT_SUCCESS;*/
Eric Andersen485b9551999-12-07 23:14:59 +0000893}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000894#endif /* FEATURE_FANCY_PING */
895
896
Denys Vlasenkoad7d94b2009-11-20 18:12:12 +0100897int ping_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
898int ping_main(int argc UNUSED_PARAM, char **argv)
899{
900#if !ENABLE_FEATURE_FANCY_PING
901 return common_ping_main(AF_UNSPEC, argv);
902#else
903 return common_ping_main(0, argv);
904#endif
905}
906
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000907#if ENABLE_PING6
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000908int ping6_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000909int ping6_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000910{
Denys Vlasenkoad7d94b2009-11-20 18:12:12 +0100911# if !ENABLE_FEATURE_FANCY_PING
912 return common_ping_main(AF_INET6, argv);
913# else
914 return common_ping_main(OPT_IPV6, argv);
915# endif
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000916}
917#endif
918
919/* from ping6.c:
920 * Copyright (c) 1989 The Regents of the University of California.
921 * All rights reserved.
922 *
923 * This code is derived from software contributed to Berkeley by
924 * Mike Muuss.
925 *
926 * Redistribution and use in source and binary forms, with or without
927 * modification, are permitted provided that the following conditions
928 * are met:
929 * 1. Redistributions of source code must retain the above copyright
930 * notice, this list of conditions and the following disclaimer.
931 * 2. Redistributions in binary form must reproduce the above copyright
932 * notice, this list of conditions and the following disclaimer in the
933 * documentation and/or other materials provided with the distribution.
934 *
935 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
936 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
937 *
938 * 4. Neither the name of the University nor the names of its contributors
939 * may be used to endorse or promote products derived from this software
940 * without specific prior written permission.
941 *
942 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
943 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
944 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
945 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
946 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
947 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
948 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
949 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
950 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
951 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
952 * SUCH DAMAGE.
953 */