blob: 7f74c26fa5c355e8a4bfb42f7582005f79a52cd6 [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
Joachim Nilsson714e2b72010-11-28 23:01:18 +010032//config:config PING
33//config: bool "ping"
34//config: default y
35//config: depends on PLATFORM_LINUX
36//config: help
37//config: ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
38//config: elicit an ICMP ECHO_RESPONSE from a host or gateway.
39//config:
40//config:config PING6
41//config: bool "ping6"
42//config: default y
43//config: depends on FEATURE_IPV6 && PING
44//config: help
45//config: This will give you a ping that can talk IPv6.
46//config:
47//config:config FEATURE_FANCY_PING
48//config: bool "Enable fancy ping output"
49//config: default y
50//config: depends on PING
51//config: help
52//config: Make the output from the ping applet include statistics, and at the
53//config: same time provide full support for ICMP packets.
54
55//applet:IF_PING(APPLET(ping, _BB_DIR_BIN, _BB_SUID_MAYBE))
56//applet:IF_PING6(APPLET(ping6, _BB_DIR_BIN, _BB_SUID_MAYBE))
57
58//kbuild:lib-$(CONFIG_PING) += ping.o
59//kbuild:lib-$(CONFIG_PING6) += ping.o
60
61//usage:#if !ENABLE_FEATURE_FANCY_PING
62//usage:# define ping_trivial_usage
63//usage: "HOST"
64//usage:# define ping_full_usage "\n\n"
65//usage: "Send ICMP ECHO_REQUEST packets to network hosts"
66//usage:# define ping6_trivial_usage
67//usage: "HOST"
68//usage:# define ping6_full_usage "\n\n"
69//usage: "Send ICMP ECHO_REQUEST packets to network hosts"
70//usage:#else
71//usage:# define ping_trivial_usage
72//usage: "[OPTIONS] HOST"
73//usage:# define ping_full_usage "\n\n"
74//usage: "Send ICMP ECHO_REQUEST packets to network hosts\n"
75//usage: "\nOptions:"
76//usage: "\n -4,-6 Force IP or IPv6 name resolution"
77//usage: "\n -c CNT Send only CNT pings"
78//usage: "\n -s SIZE Send SIZE data bytes in packets (default:56)"
79//usage: "\n -t TTL Set TTL"
80//usage: "\n -I IFACE/IP Use interface or IP address as source"
81//usage: "\n -W SEC Seconds to wait for the first response (default:10)"
82//usage: "\n (after all -c CNT packets are sent)"
83//usage: "\n -w SEC Seconds until ping exits (default:infinite)"
84//usage: "\n (can exit earlier with -c CNT)"
85//usage: "\n -q Quiet, only displays output at start"
86//usage: "\n and when finished"
87//usage:
88//usage:# define ping6_trivial_usage
89//usage: "[OPTIONS] HOST"
90//usage:# define ping6_full_usage "\n\n"
91//usage: "Send ICMP ECHO_REQUEST packets to network hosts\n"
92//usage: "\nOptions:"
93//usage: "\n -c CNT Send only CNT pings"
94//usage: "\n -s SIZE Send SIZE data bytes in packets (default:56)"
95//usage: "\n -I IFACE/IP Use interface or IP address as source"
96//usage: "\n -q Quiet, only displays output at start"
97//usage: "\n and when finished"
98//usage:
99//usage:#endif
100//usage:
101//usage:#define ping_example_usage
102//usage: "$ ping localhost\n"
103//usage: "PING slag (127.0.0.1): 56 data bytes\n"
104//usage: "64 bytes from 127.0.0.1: icmp_seq=0 ttl=255 time=20.1 ms\n"
105//usage: "\n"
106//usage: "--- debian ping statistics ---\n"
107//usage: "1 packets transmitted, 1 packets received, 0% packet loss\n"
108//usage: "round-trip min/avg/max = 20.1/20.1/20.1 ms\n"
109//usage:#define ping6_example_usage
110//usage: "$ ping6 ip6-localhost\n"
111//usage: "PING ip6-localhost (::1): 56 data bytes\n"
112//usage: "64 bytes from ::1: icmp6_seq=0 ttl=64 time=20.1 ms\n"
113//usage: "\n"
114//usage: "--- ip6-localhost ping statistics ---\n"
115//usage: "1 packets transmitted, 1 packets received, 0% packet loss\n"
116//usage: "round-trip min/avg/max = 20.1/20.1/20.1 ms\n"
117
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000118#if ENABLE_PING6
Denys Vlasenkoad7d94b2009-11-20 18:12:12 +0100119# include <netinet/icmp6.h>
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000120/* I see RENUMBERED constants in bits/in.h - !!?
121 * What a fuck is going on with libc? Is it a glibc joke? */
Denys Vlasenkoad7d94b2009-11-20 18:12:12 +0100122# ifdef IPV6_2292HOPLIMIT
123# undef IPV6_HOPLIMIT
124# define IPV6_HOPLIMIT IPV6_2292HOPLIMIT
125# endif
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000126#endif
Eric Andersen485b9551999-12-07 23:14:59 +0000127
Rob Landleybc68cd12006-03-10 19:22:06 +0000128enum {
129 DEFDATALEN = 56,
130 MAXIPLEN = 60,
131 MAXICMPLEN = 76,
Rob Landleybc68cd12006-03-10 19:22:06 +0000132 MAX_DUP_CHK = (8 * 128),
133 MAXWAIT = 10,
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000134 PINGINTERVAL = 1, /* 1 second */
Rob Landleybc68cd12006-03-10 19:22:06 +0000135};
Eric Andersen485b9551999-12-07 23:14:59 +0000136
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100137/* Common routines */
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000138
Eric Andersen485b9551999-12-07 23:14:59 +0000139static int in_cksum(unsigned short *buf, int sz)
140{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000141 int nleft = sz;
142 int sum = 0;
143 unsigned short *w = buf;
144 unsigned short ans = 0;
Eric Andersen485b9551999-12-07 23:14:59 +0000145
Erik Andersene49d5ec2000-02-08 19:58:47 +0000146 while (nleft > 1) {
147 sum += *w++;
148 nleft -= 2;
149 }
Eric Andersen485b9551999-12-07 23:14:59 +0000150
Erik Andersene49d5ec2000-02-08 19:58:47 +0000151 if (nleft == 1) {
152 *(unsigned char *) (&ans) = *(unsigned char *) w;
153 sum += ans;
154 }
Eric Andersen485b9551999-12-07 23:14:59 +0000155
Erik Andersene49d5ec2000-02-08 19:58:47 +0000156 sum = (sum >> 16) + (sum & 0xFFFF);
157 sum += (sum >> 16);
158 ans = ~sum;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000159 return ans;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000160}
Eric Andersen485b9551999-12-07 23:14:59 +0000161
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000162#if !ENABLE_FEATURE_FANCY_PING
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000163
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100164/* Simple version */
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000165
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100166struct globals {
167 char *hostname;
168 char packet[DEFDATALEN + MAXIPLEN + MAXICMPLEN];
169} FIX_ALIASING;
170#define G (*(struct globals*)&bb_common_bufsiz1)
171#define INIT_G() do { } while (0)
Denis Vlasenkocb6874c2006-09-02 16:13:36 +0000172
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000173static void noresp(int ign UNUSED_PARAM)
Eric Andersenb5474c42002-03-20 11:59:28 +0000174{
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100175 printf("No response from %s\n", G.hostname);
Eric Andersen4e486a52003-01-12 06:08:33 +0000176 exit(EXIT_FAILURE);
Eric Andersenb5474c42002-03-20 11:59:28 +0000177}
Eric Andersen19db07b1999-12-11 08:41:28 +0000178
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000179static void ping4(len_and_sockaddr *lsa)
Eric Andersen19db07b1999-12-11 08:41:28 +0000180{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000181 struct icmp *pkt;
182 int pingsock, c;
Eric Andersen19db07b1999-12-11 08:41:28 +0000183
Matt Kraai06ef1652001-07-13 20:56:27 +0000184 pingsock = create_icmp_socket();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000185
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100186 pkt = (struct icmp *) G.packet;
187 memset(pkt, 0, sizeof(G.packet));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000188 pkt->icmp_type = ICMP_ECHO;
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100189 pkt->icmp_cksum = in_cksum((unsigned short *) pkt, sizeof(G.packet));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000190
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100191 xsendto(pingsock, G.packet, DEFDATALEN + ICMP_MINLEN, &lsa->u.sa, lsa->len);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000192
Erik Andersene49d5ec2000-02-08 19:58:47 +0000193 /* listen for replies */
194 while (1) {
195 struct sockaddr_in from;
Mike Frysinger03e827a2005-07-26 23:00:59 +0000196 socklen_t fromlen = sizeof(from);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000197
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100198 c = recvfrom(pingsock, G.packet, sizeof(G.packet), 0,
Denis Vlasenko806116b2006-12-31 12:14:16 +0000199 (struct sockaddr *) &from, &fromlen);
200 if (c < 0) {
Denis Vlasenko44c2eb22007-01-08 23:55:33 +0000201 if (errno != EINTR)
202 bb_perror_msg("recvfrom");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000203 continue;
204 }
205 if (c >= 76) { /* ip + icmp */
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100206 struct iphdr *iphdr = (struct iphdr *) G.packet;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000207
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100208 pkt = (struct icmp *) (G.packet + (iphdr->ihl << 2)); /* skip ip hdr */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000209 if (pkt->icmp_type == ICMP_ECHOREPLY)
210 break;
211 }
212 }
Denis Vlasenko9adc6ce2007-01-22 22:45:27 +0000213 if (ENABLE_FEATURE_CLEAN_UP)
214 close(pingsock);
Eric Andersen19db07b1999-12-11 08:41:28 +0000215}
216
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000217#if ENABLE_PING6
218static void ping6(len_and_sockaddr *lsa)
219{
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000220 struct icmp6_hdr *pkt;
221 int pingsock, c;
222 int sockopt;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000223
224 pingsock = create_icmp6_socket();
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000225
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100226 pkt = (struct icmp6_hdr *) G.packet;
227 memset(pkt, 0, sizeof(G.packet));
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000228 pkt->icmp6_type = ICMP6_ECHO_REQUEST;
229
230 sockopt = offsetof(struct icmp6_hdr, icmp6_cksum);
231 setsockopt(pingsock, SOL_RAW, IPV6_CHECKSUM, &sockopt, sizeof(sockopt));
232
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100233 xsendto(pingsock, G.packet, DEFDATALEN + sizeof(struct icmp6_hdr), &lsa->u.sa, lsa->len);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000234
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000235 /* listen for replies */
236 while (1) {
237 struct sockaddr_in6 from;
238 socklen_t fromlen = sizeof(from);
239
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100240 c = recvfrom(pingsock, G.packet, sizeof(G.packet), 0,
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000241 (struct sockaddr *) &from, &fromlen);
242 if (c < 0) {
243 if (errno != EINTR)
244 bb_perror_msg("recvfrom");
245 continue;
246 }
Bernhard Reutner-Fischerdfd38a42010-01-23 12:52:40 +0100247 if (c >= ICMP_MINLEN) { /* icmp6_hdr */
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100248 pkt = (struct icmp6_hdr *) G.packet;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000249 if (pkt->icmp6_type == ICMP6_ECHO_REPLY)
250 break;
251 }
252 }
253 if (ENABLE_FEATURE_CLEAN_UP)
254 close(pingsock);
255}
256#endif
257
Denys Vlasenkoad7d94b2009-11-20 18:12:12 +0100258#if !ENABLE_PING6
259# define common_ping_main(af, argv) common_ping_main(argv)
260#endif
261static int common_ping_main(sa_family_t af, char **argv)
Eric Andersen19db07b1999-12-11 08:41:28 +0000262{
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000263 len_and_sockaddr *lsa;
Denis Vlasenko3483e852007-07-02 15:47:52 +0000264
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100265 INIT_G();
266
Denys Vlasenkoad7d94b2009-11-20 18:12:12 +0100267#if ENABLE_PING6
Denis Vlasenko3483e852007-07-02 15:47:52 +0000268 while ((++argv)[0] && argv[0][0] == '-') {
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000269 if (argv[0][1] == '4') {
270 af = AF_INET;
271 continue;
272 }
273 if (argv[0][1] == '6') {
274 af = AF_INET6;
275 continue;
276 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000277 bb_show_usage();
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000278 }
279#else
280 argv++;
281#endif
282
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100283 G.hostname = *argv;
284 if (!G.hostname)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000285 bb_show_usage();
286
287#if ENABLE_PING6
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100288 lsa = xhost_and_af2sockaddr(G.hostname, 0, af);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000289#else
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100290 lsa = xhost_and_af2sockaddr(G.hostname, 0, AF_INET);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000291#endif
292 /* Set timer _after_ DNS resolution */
293 signal(SIGALRM, noresp);
294 alarm(5); /* give the host 5000ms to respond */
295
296#if ENABLE_PING6
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000297 if (lsa->u.sa.sa_family == AF_INET6)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000298 ping6(lsa);
299 else
300#endif
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000301 ping4(lsa);
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100302 printf("%s is alive!\n", G.hostname);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000303 return EXIT_SUCCESS;
Eric Andersen19db07b1999-12-11 08:41:28 +0000304}
305
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000306
307#else /* FEATURE_FANCY_PING */
308
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000309
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100310/* Full(er) version */
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000311
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100312#define OPT_STRING ("qvc:s:t:w:W:I:4" IF_PING6("6"))
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000313enum {
314 OPT_QUIET = 1 << 0,
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000315 OPT_VERBOSE = 1 << 1,
316 OPT_c = 1 << 2,
317 OPT_s = 1 << 3,
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100318 OPT_t = 1 << 4,
319 OPT_w = 1 << 5,
320 OPT_W = 1 << 6,
321 OPT_I = 1 << 7,
322 OPT_IPV4 = 1 << 8,
323 OPT_IPV6 = (1 << 9) * ENABLE_PING6,
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000324};
325
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000326
Denis Vlasenko821cc252007-06-04 10:33:48 +0000327struct globals {
328 int pingsock;
Denis Vlasenko1a7afb42007-10-19 21:39:25 +0000329 int if_index;
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000330 char *str_I;
Denis Vlasenko821cc252007-06-04 10:33:48 +0000331 len_and_sockaddr *source_lsa;
332 unsigned datalen;
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000333 unsigned pingcount; /* must be int-sized */
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100334 unsigned opt_ttl;
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000335 unsigned long ntransmitted, nreceived, nrepeats;
Denis Vlasenko821cc252007-06-04 10:33:48 +0000336 uint16_t myid;
Denis Vlasenko76791452007-06-18 08:55:57 +0000337 unsigned tmin, tmax; /* in us */
338 unsigned long long tsum; /* in us, sum of all times */
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000339 unsigned deadline;
340 unsigned timeout;
341 unsigned total_secs;
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100342 unsigned sizeof_rcv_packet;
343 char *rcv_packet; /* [datalen + MAXIPLEN + MAXICMPLEN] */
344 void *snd_packet; /* [datalen + ipv4/ipv6_const] */
Denis Vlasenko821cc252007-06-04 10:33:48 +0000345 const char *hostname;
346 const char *dotted;
347 union {
348 struct sockaddr sa;
349 struct sockaddr_in sin;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000350#if ENABLE_PING6
Denis Vlasenko821cc252007-06-04 10:33:48 +0000351 struct sockaddr_in6 sin6;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000352#endif
Denis Vlasenko821cc252007-06-04 10:33:48 +0000353 } pingaddr;
354 char rcvd_tbl[MAX_DUP_CHK / 8];
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100355} FIX_ALIASING;
Denis Vlasenko821cc252007-06-04 10:33:48 +0000356#define G (*(struct globals*)&bb_common_bufsiz1)
357#define pingsock (G.pingsock )
Denis Vlasenko821cc252007-06-04 10:33:48 +0000358#define if_index (G.if_index )
Denis Vlasenko1a7afb42007-10-19 21:39:25 +0000359#define source_lsa (G.source_lsa )
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000360#define str_I (G.str_I )
Denis Vlasenko1a7afb42007-10-19 21:39:25 +0000361#define datalen (G.datalen )
Denis Vlasenko821cc252007-06-04 10:33:48 +0000362#define ntransmitted (G.ntransmitted)
363#define nreceived (G.nreceived )
364#define nrepeats (G.nrepeats )
365#define pingcount (G.pingcount )
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100366#define opt_ttl (G.opt_ttl )
Denis Vlasenko821cc252007-06-04 10:33:48 +0000367#define myid (G.myid )
368#define tmin (G.tmin )
369#define tmax (G.tmax )
370#define tsum (G.tsum )
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000371#define deadline (G.deadline )
372#define timeout (G.timeout )
373#define total_secs (G.total_secs )
Denis Vlasenko821cc252007-06-04 10:33:48 +0000374#define hostname (G.hostname )
375#define dotted (G.dotted )
376#define pingaddr (G.pingaddr )
377#define rcvd_tbl (G.rcvd_tbl )
378void BUG_ping_globals_too_big(void);
379#define INIT_G() do { \
Denis Vlasenko6b404432008-01-07 16:13:14 +0000380 if (sizeof(G) > COMMON_BUFSIZE) \
381 BUG_ping_globals_too_big(); \
Denis Vlasenko821cc252007-06-04 10:33:48 +0000382 pingsock = -1; \
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000383 datalen = DEFDATALEN; \
384 timeout = MAXWAIT; \
Denis Vlasenko821cc252007-06-04 10:33:48 +0000385 tmin = UINT_MAX; \
386} while (0)
Eric Andersen19db07b1999-12-11 08:41:28 +0000387
Eric Andersen19db07b1999-12-11 08:41:28 +0000388
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200389#define A(bit) rcvd_tbl[(bit)>>3] /* identify byte in array */
390#define B(bit) (1 << ((bit) & 0x07)) /* identify bit in byte */
391#define SET(bit) (A(bit) |= B(bit))
392#define CLR(bit) (A(bit) &= (~B(bit)))
393#define TST(bit) (A(bit) & B(bit))
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000394
Eric Andersen19db07b1999-12-11 08:41:28 +0000395/**************************************************************************/
396
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000397static void print_stats_and_exit(int junk) NORETURN;
398static void print_stats_and_exit(int junk UNUSED_PARAM)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000399{
400 signal(SIGINT, SIG_IGN);
401
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000402 printf("\n--- %s ping statistics ---\n", hostname);
Denis Vlasenko13858992006-10-08 12:49:22 +0000403 printf("%lu packets transmitted, ", ntransmitted);
404 printf("%lu packets received, ", nreceived);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000405 if (nrepeats)
Denis Vlasenko13858992006-10-08 12:49:22 +0000406 printf("%lu duplicates, ", nrepeats);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000407 if (ntransmitted)
Denis Vlasenkoaeb4bdd2007-01-25 00:00:02 +0000408 ntransmitted = (ntransmitted - nreceived) * 100 / ntransmitted;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000409 printf("%lu%% packet loss\n", ntransmitted);
Denis Vlasenko76791452007-06-18 08:55:57 +0000410 if (tmin != UINT_MAX) {
411 unsigned tavg = tsum / (nreceived + nrepeats);
412 printf("round-trip min/avg/max = %u.%03u/%u.%03u/%u.%03u ms\n",
413 tmin / 1000, tmin % 1000,
414 tavg / 1000, tavg % 1000,
415 tmax / 1000, tmax % 1000);
416 }
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000417 /* if condition is true, exit with 1 -- 'failure' */
418 exit(nreceived == 0 || (deadline && nreceived < pingcount));
Eric Andersen485b9551999-12-07 23:14:59 +0000419}
420
Denis Vlasenkoc8e99932007-02-09 18:14:42 +0000421static void sendping_tail(void (*sp)(int), const void *pkt, int size_pkt)
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000422{
Denis Vlasenkoc8e99932007-02-09 18:14:42 +0000423 int sz;
424
425 CLR((uint16_t)ntransmitted % MAX_DUP_CHK);
426 ntransmitted++;
427
428 /* sizeof(pingaddr) can be larger than real sa size, but I think
429 * it doesn't matter */
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000430 sz = xsendto(pingsock, pkt, size_pkt, &pingaddr.sa, sizeof(pingaddr));
Denis Vlasenkoc8e99932007-02-09 18:14:42 +0000431 if (sz != size_pkt)
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000432 bb_error_msg_and_die(bb_msg_write_error);
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000433
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000434 if (pingcount == 0 || deadline || ntransmitted < pingcount) {
435 /* Didn't send all pings yet - schedule next in 1s */
436 signal(SIGALRM, sp);
437 if (deadline) {
438 total_secs += PINGINTERVAL;
439 if (total_secs >= deadline)
440 signal(SIGALRM, print_stats_and_exit);
441 }
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000442 alarm(PINGINTERVAL);
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000443 } else { /* -c NN, and all NN are sent (and no deadline) */
444 /* Wait for the last ping to come back.
445 * -W timeout: wait for a response in seconds.
446 * Affects only timeout in absense of any responses,
447 * otherwise ping waits for two RTTs. */
448 unsigned expire = timeout;
449
450 if (nreceived) {
451 /* approx. 2*tmax, in seconds (2 RTT) */
452 expire = tmax / (512*1024);
453 if (expire == 0)
454 expire = 1;
455 }
456 signal(SIGALRM, print_stats_and_exit);
457 alarm(expire);
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000458 }
459}
460
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000461static void sendping4(int junk UNUSED_PARAM)
Eric Andersen485b9551999-12-07 23:14:59 +0000462{
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100463 struct icmp *pkt = G.snd_packet;
Eric Andersen485b9551999-12-07 23:14:59 +0000464
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100465 //memset(pkt, 0, datalen + ICMP_MINLEN + 4); - G.snd_packet was xzalloced
Erik Andersene49d5ec2000-02-08 19:58:47 +0000466 pkt->icmp_type = ICMP_ECHO;
Denis Vlasenkob34266b2008-04-29 12:31:53 +0000467 /*pkt->icmp_code = 0;*/
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100468 pkt->icmp_cksum = 0; /* cksum is calculated with this field set to 0 */
Denis Vlasenko919c10d2007-01-03 22:14:18 +0000469 pkt->icmp_seq = htons(ntransmitted); /* don't ++ here, it can be a macro */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000470 pkt->icmp_id = myid;
Denis Vlasenko7b72fc12007-06-16 13:37:59 +0000471
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100472 /* If datalen < 4, we store timestamp _past_ the packet,
473 * but it's ok - we allocated 4 extra bytes in xzalloc() just in case.
474 */
Denis Vlasenko76791452007-06-18 08:55:57 +0000475 /*if (datalen >= 4)*/
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100476 /* No hton: we'll read it back on the same machine */
Denis Vlasenko76791452007-06-18 08:55:57 +0000477 *(uint32_t*)&pkt->icmp_dun = monotonic_us();
Denis Vlasenko7b72fc12007-06-16 13:37:59 +0000478
Denis Vlasenkoc8e99932007-02-09 18:14:42 +0000479 pkt->icmp_cksum = in_cksum((unsigned short *) pkt, datalen + ICMP_MINLEN);
Eric Andersen485b9551999-12-07 23:14:59 +0000480
Denis Vlasenkoc8e99932007-02-09 18:14:42 +0000481 sendping_tail(sendping4, pkt, datalen + ICMP_MINLEN);
Eric Andersen485b9551999-12-07 23:14:59 +0000482}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000483#if ENABLE_PING6
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000484static void sendping6(int junk UNUSED_PARAM)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000485{
Denis Vlasenko76791452007-06-18 08:55:57 +0000486 struct icmp6_hdr *pkt = alloca(datalen + sizeof(struct icmp6_hdr) + 4);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000487
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100488 //memset(pkt, 0, datalen + sizeof(struct icmp6_hdr) + 4);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000489 pkt->icmp6_type = ICMP6_ECHO_REQUEST;
Denis Vlasenkob34266b2008-04-29 12:31:53 +0000490 /*pkt->icmp6_code = 0;*/
491 /*pkt->icmp6_cksum = 0;*/
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000492 pkt->icmp6_seq = htons(ntransmitted); /* don't ++ here, it can be a macro */
493 pkt->icmp6_id = myid;
Denis Vlasenko7b72fc12007-06-16 13:37:59 +0000494
Denis Vlasenko76791452007-06-18 08:55:57 +0000495 /*if (datalen >= 4)*/
496 *(uint32_t*)(&pkt->icmp6_data8[4]) = monotonic_us();
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000497
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100498 //TODO? pkt->icmp_cksum = in_cksum(...);
499
Denis Vlasenkoc8e99932007-02-09 18:14:42 +0000500 sendping_tail(sendping6, pkt, datalen + sizeof(struct icmp6_hdr));
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000501}
502#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000503
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000504static const char *icmp_type_name(int id)
Erik Andersen227a59b2000-04-25 23:24:55 +0000505{
506 switch (id) {
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000507 case ICMP_ECHOREPLY: return "Echo Reply";
508 case ICMP_DEST_UNREACH: return "Destination Unreachable";
509 case ICMP_SOURCE_QUENCH: return "Source Quench";
510 case ICMP_REDIRECT: return "Redirect (change route)";
511 case ICMP_ECHO: return "Echo Request";
512 case ICMP_TIME_EXCEEDED: return "Time Exceeded";
513 case ICMP_PARAMETERPROB: return "Parameter Problem";
514 case ICMP_TIMESTAMP: return "Timestamp Request";
515 case ICMP_TIMESTAMPREPLY: return "Timestamp Reply";
516 case ICMP_INFO_REQUEST: return "Information Request";
517 case ICMP_INFO_REPLY: return "Information Reply";
518 case ICMP_ADDRESS: return "Address Mask Request";
519 case ICMP_ADDRESSREPLY: return "Address Mask Reply";
520 default: return "unknown ICMP type";
Erik Andersen227a59b2000-04-25 23:24:55 +0000521 }
522}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000523#if ENABLE_PING6
524/* RFC3542 changed some definitions from RFC2292 for no good reason, whee!
525 * the newer 3542 uses a MLD_ prefix where as 2292 uses ICMP6_ prefix */
526#ifndef MLD_LISTENER_QUERY
527# define MLD_LISTENER_QUERY ICMP6_MEMBERSHIP_QUERY
528#endif
529#ifndef MLD_LISTENER_REPORT
530# define MLD_LISTENER_REPORT ICMP6_MEMBERSHIP_REPORT
531#endif
532#ifndef MLD_LISTENER_REDUCTION
533# define MLD_LISTENER_REDUCTION ICMP6_MEMBERSHIP_REDUCTION
534#endif
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000535static const char *icmp6_type_name(int id)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000536{
537 switch (id) {
538 case ICMP6_DST_UNREACH: return "Destination Unreachable";
539 case ICMP6_PACKET_TOO_BIG: return "Packet too big";
540 case ICMP6_TIME_EXCEEDED: return "Time Exceeded";
541 case ICMP6_PARAM_PROB: return "Parameter Problem";
542 case ICMP6_ECHO_REPLY: return "Echo Reply";
543 case ICMP6_ECHO_REQUEST: return "Echo Request";
544 case MLD_LISTENER_QUERY: return "Listener Query";
545 case MLD_LISTENER_REPORT: return "Listener Report";
546 case MLD_LISTENER_REDUCTION: return "Listener Reduction";
547 default: return "unknown ICMP type";
548 }
549}
550#endif
Erik Andersen227a59b2000-04-25 23:24:55 +0000551
Denis Vlasenko76791452007-06-18 08:55:57 +0000552static void unpack_tail(int sz, uint32_t *tp,
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000553 const char *from_str,
554 uint16_t recv_seq, int ttl)
555{
556 const char *dupmsg = " (DUP!)";
557 unsigned triptime = triptime; /* for gcc */
558
559 ++nreceived;
560
561 if (tp) {
Denis Vlasenko76791452007-06-18 08:55:57 +0000562 /* (int32_t) cast is for hypothetical 64-bit unsigned */
563 /* (doesn't hurt 32-bit real-world anyway) */
564 triptime = (int32_t) ((uint32_t)monotonic_us() - *tp);
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000565 tsum += triptime;
566 if (triptime < tmin)
567 tmin = triptime;
568 if (triptime > tmax)
569 tmax = triptime;
570 }
571
572 if (TST(recv_seq % MAX_DUP_CHK)) {
573 ++nrepeats;
574 --nreceived;
575 } else {
576 SET(recv_seq % MAX_DUP_CHK);
577 dupmsg += 7;
578 }
579
580 if (option_mask32 & OPT_QUIET)
581 return;
582
583 printf("%d bytes from %s: seq=%u ttl=%d", sz,
584 from_str, recv_seq, ttl);
585 if (tp)
Denis Vlasenko76791452007-06-18 08:55:57 +0000586 printf(" time=%u.%03u ms", triptime / 1000, triptime % 1000);
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000587 puts(dupmsg);
Denys Vlasenko8131eea2009-11-02 14:19:51 +0100588 fflush_all();
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000589}
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000590static void unpack4(char *buf, int sz, struct sockaddr_in *from)
Eric Andersen485b9551999-12-07 23:14:59 +0000591{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000592 struct icmp *icmppkt;
593 struct iphdr *iphdr;
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000594 int hlen;
Eric Andersen485b9551999-12-07 23:14:59 +0000595
Erik Andersene49d5ec2000-02-08 19:58:47 +0000596 /* discard if too short */
Pavel Roskin0024abc2000-06-07 20:38:15 +0000597 if (sz < (datalen + ICMP_MINLEN))
Erik Andersene49d5ec2000-02-08 19:58:47 +0000598 return;
Eric Andersen485b9551999-12-07 23:14:59 +0000599
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000600 /* check IP header */
601 iphdr = (struct iphdr *) buf;
602 hlen = iphdr->ihl << 2;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000603 sz -= hlen;
604 icmppkt = (struct icmp *) (buf + hlen);
Erik Andersen227a59b2000-04-25 23:24:55 +0000605 if (icmppkt->icmp_id != myid)
Denis Vlasenkocb6874c2006-09-02 16:13:36 +0000606 return; /* not our ping */
Erik Andersen227a59b2000-04-25 23:24:55 +0000607
Erik Andersene49d5ec2000-02-08 19:58:47 +0000608 if (icmppkt->icmp_type == ICMP_ECHOREPLY) {
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000609 uint16_t recv_seq = ntohs(icmppkt->icmp_seq);
Denis Vlasenko76791452007-06-18 08:55:57 +0000610 uint32_t *tp = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000611
Denis Vlasenko76791452007-06-18 08:55:57 +0000612 if (sz >= ICMP_MINLEN + sizeof(uint32_t))
613 tp = (uint32_t *) icmppkt->icmp_data;
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000614 unpack_tail(sz, tp,
615 inet_ntoa(*(struct in_addr *) &from->sin_addr.s_addr),
616 recv_seq, iphdr->ttl);
617 } else if (icmppkt->icmp_type != ICMP_ECHO) {
618 bb_error_msg("warning: got ICMP %d (%s)",
619 icmppkt->icmp_type,
620 icmp_type_name(icmppkt->icmp_type));
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000621 }
Eric Andersen485b9551999-12-07 23:14:59 +0000622}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000623#if ENABLE_PING6
Denis Vlasenko68404f12008-03-17 09:00:54 +0000624static void unpack6(char *packet, int sz, /*struct sockaddr_in6 *from,*/ int hoplimit)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000625{
626 struct icmp6_hdr *icmppkt;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000627 char buf[INET6_ADDRSTRLEN];
Eric Andersen485b9551999-12-07 23:14:59 +0000628
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000629 /* discard if too short */
630 if (sz < (datalen + sizeof(struct icmp6_hdr)))
631 return;
632
633 icmppkt = (struct icmp6_hdr *) packet;
634 if (icmppkt->icmp6_id != myid)
635 return; /* not our ping */
636
637 if (icmppkt->icmp6_type == ICMP6_ECHO_REPLY) {
638 uint16_t recv_seq = ntohs(icmppkt->icmp6_seq);
Denis Vlasenko76791452007-06-18 08:55:57 +0000639 uint32_t *tp = NULL;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000640
Denis Vlasenko76791452007-06-18 08:55:57 +0000641 if (sz >= sizeof(struct icmp6_hdr) + sizeof(uint32_t))
642 tp = (uint32_t *) &icmppkt->icmp6_data8[4];
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000643 unpack_tail(sz, tp,
644 inet_ntop(AF_INET6, &pingaddr.sin6.sin6_addr,
645 buf, sizeof(buf)),
646 recv_seq, hoplimit);
647 } else if (icmppkt->icmp6_type != ICMP6_ECHO_REQUEST) {
648 bb_error_msg("warning: got ICMP %d (%s)",
649 icmppkt->icmp6_type,
650 icmp6_type_name(icmppkt->icmp6_type));
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000651 }
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000652}
653#endif
654
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000655static void ping4(len_and_sockaddr *lsa)
Eric Andersen485b9551999-12-07 23:14:59 +0000656{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000657 int sockopt;
658
Matt Kraai06ef1652001-07-13 20:56:27 +0000659 pingsock = create_icmp_socket();
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000660 pingaddr.sin = lsa->u.sin;
Denis Vlasenko5ad10482007-06-19 22:54:21 +0000661 if (source_lsa) {
662 if (setsockopt(pingsock, IPPROTO_IP, IP_MULTICAST_IF,
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000663 &source_lsa->u.sa, source_lsa->len))
Denis Vlasenko5ad10482007-06-19 22:54:21 +0000664 bb_error_msg_and_die("can't set multicast source interface");
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000665 xbind(pingsock, &source_lsa->u.sa, source_lsa->len);
Denis Vlasenko5ad10482007-06-19 22:54:21 +0000666 }
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000667 if (str_I)
Denis Vlasenkoe5373852008-12-10 11:12:16 +0000668 setsockopt_bindtodevice(pingsock, str_I);
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000669
Erik Andersene49d5ec2000-02-08 19:58:47 +0000670 /* enable broadcast pings */
Denis Vlasenko48237b02006-11-22 23:22:06 +0000671 setsockopt_broadcast(pingsock);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000672
Denis Vlasenko57707152008-08-24 00:02:18 +0000673 /* set recv buf (needed if we can get lots of responses: flood ping,
674 * broadcast ping etc) */
675 sockopt = (datalen * 2) + 7 * 1024; /* giving it a bit of extra room */
Denis Vlasenko703e2022007-01-22 14:12:08 +0000676 setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, &sockopt, sizeof(sockopt));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000677
Denys Vlasenko3c8799b2010-11-29 12:07:12 +0100678 if (opt_ttl != 0) {
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100679 setsockopt(pingsock, IPPROTO_IP, IP_TTL, &opt_ttl, sizeof(opt_ttl));
Denys Vlasenko3c8799b2010-11-29 12:07:12 +0100680 /* above doesnt affect packets sent to bcast IP, so... */
681 setsockopt(pingsock, IPPROTO_IP, IP_MULTICAST_TTL, &opt_ttl, sizeof(opt_ttl));
682 }
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100683
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000684 signal(SIGINT, print_stats_and_exit);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000685
686 /* start the ping's going ... */
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000687 sendping4(0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000688
689 /* listen for replies */
690 while (1) {
691 struct sockaddr_in from;
Erik Andersen1d1d9502000-04-21 01:26:49 +0000692 socklen_t fromlen = (socklen_t) sizeof(from);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000693 int c;
694
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100695 c = recvfrom(pingsock, G.rcv_packet, G.sizeof_rcv_packet, 0,
Denis Vlasenko44c2eb22007-01-08 23:55:33 +0000696 (struct sockaddr *) &from, &fromlen);
697 if (c < 0) {
698 if (errno != EINTR)
699 bb_perror_msg("recvfrom");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000700 continue;
701 }
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100702 unpack4(G.rcv_packet, c, &from);
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000703 if (pingcount && nreceived >= pingcount)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000704 break;
705 }
Eric Andersen485b9551999-12-07 23:14:59 +0000706}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000707#if ENABLE_PING6
708extern int BUG_bad_offsetof_icmp6_cksum(void);
709static void ping6(len_and_sockaddr *lsa)
710{
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000711 int sockopt;
712 struct msghdr msg;
713 struct sockaddr_in6 from;
714 struct iovec iov;
715 char control_buf[CMSG_SPACE(36)];
716
717 pingsock = create_icmp6_socket();
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000718 pingaddr.sin6 = lsa->u.sin6;
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000719 /* untested whether "-I addr" really works for IPv6: */
720 if (source_lsa)
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000721 xbind(pingsock, &source_lsa->u.sa, source_lsa->len);
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000722 if (str_I)
Denis Vlasenkoe5373852008-12-10 11:12:16 +0000723 setsockopt_bindtodevice(pingsock, str_I);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000724
725#ifdef ICMP6_FILTER
726 {
727 struct icmp6_filter filt;
728 if (!(option_mask32 & OPT_VERBOSE)) {
729 ICMP6_FILTER_SETBLOCKALL(&filt);
730 ICMP6_FILTER_SETPASS(ICMP6_ECHO_REPLY, &filt);
731 } else {
732 ICMP6_FILTER_SETPASSALL(&filt);
733 }
734 if (setsockopt(pingsock, IPPROTO_ICMPV6, ICMP6_FILTER, &filt,
735 sizeof(filt)) < 0)
736 bb_error_msg_and_die("setsockopt(ICMP6_FILTER)");
737 }
738#endif /*ICMP6_FILTER*/
739
740 /* enable broadcast pings */
741 setsockopt_broadcast(pingsock);
742
Denis Vlasenko57707152008-08-24 00:02:18 +0000743 /* set recv buf (needed if we can get lots of responses: flood ping,
744 * broadcast ping etc) */
745 sockopt = (datalen * 2) + 7 * 1024; /* giving it a bit of extra room */
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000746 setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, &sockopt, sizeof(sockopt));
747
748 sockopt = offsetof(struct icmp6_hdr, icmp6_cksum);
749 if (offsetof(struct icmp6_hdr, icmp6_cksum) != 2)
750 BUG_bad_offsetof_icmp6_cksum();
751 setsockopt(pingsock, SOL_RAW, IPV6_CHECKSUM, &sockopt, sizeof(sockopt));
752
753 /* request ttl info to be returned in ancillary data */
754 setsockopt(pingsock, SOL_IPV6, IPV6_HOPLIMIT, &const_int_1, sizeof(const_int_1));
755
756 if (if_index)
Denis Vlasenkoaeb4bdd2007-01-25 00:00:02 +0000757 pingaddr.sin6.sin6_scope_id = if_index;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000758
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000759 signal(SIGINT, print_stats_and_exit);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000760
761 /* start the ping's going ... */
762 sendping6(0);
763
764 /* listen for replies */
765 msg.msg_name = &from;
766 msg.msg_namelen = sizeof(from);
767 msg.msg_iov = &iov;
768 msg.msg_iovlen = 1;
769 msg.msg_control = control_buf;
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100770 iov.iov_base = G.rcv_packet;
771 iov.iov_len = G.sizeof_rcv_packet;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000772 while (1) {
773 int c;
774 struct cmsghdr *mp;
775 int hoplimit = -1;
776 msg.msg_controllen = sizeof(control_buf);
777
778 c = recvmsg(pingsock, &msg, 0);
779 if (c < 0) {
780 if (errno != EINTR)
781 bb_perror_msg("recvfrom");
782 continue;
783 }
784 for (mp = CMSG_FIRSTHDR(&msg); mp; mp = CMSG_NXTHDR(&msg, mp)) {
785 if (mp->cmsg_level == SOL_IPV6
786 && mp->cmsg_type == IPV6_HOPLIMIT
787 /* don't check len - we trust the kernel: */
788 /* && mp->cmsg_len >= CMSG_LEN(sizeof(int)) */
789 ) {
Denys Vlasenko57be1ee2009-11-26 15:26:31 +0100790 /*hoplimit = *(int*)CMSG_DATA(mp); - unaligned access */
791 move_from_unaligned_int(hoplimit, CMSG_DATA(mp));
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000792 }
793 }
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100794 unpack6(G.rcv_packet, c, /*&from,*/ hoplimit);
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000795 if (pingcount && nreceived >= pingcount)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000796 break;
797 }
798}
799#endif
Eric Andersen485b9551999-12-07 23:14:59 +0000800
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000801static void ping(len_and_sockaddr *lsa)
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000802{
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000803 printf("PING %s (%s)", hostname, dotted);
804 if (source_lsa) {
805 printf(" from %s",
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000806 xmalloc_sockaddr2dotted_noport(&source_lsa->u.sa));
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000807 }
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000808 printf(": %d data bytes\n", datalen);
809
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100810 G.sizeof_rcv_packet = datalen + MAXIPLEN + MAXICMPLEN;
811 G.rcv_packet = xzalloc(G.sizeof_rcv_packet);
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000812#if ENABLE_PING6
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100813 if (lsa->u.sa.sa_family == AF_INET6) {
814 /* +4 reserves a place for timestamp, which may end up sitting
815 * _after_ packet. Saves one if() - see sendping4/6() */
816 G.snd_packet = xzalloc(datalen + sizeof(struct icmp6_hdr) + 4);
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000817 ping6(lsa);
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100818 } else
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000819#endif
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100820 {
821 G.snd_packet = xzalloc(datalen + ICMP_MINLEN + 4);
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000822 ping4(lsa);
Denys Vlasenko9341fd22010-03-03 01:10:29 +0100823 }
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000824}
825
Denys Vlasenkoad7d94b2009-11-20 18:12:12 +0100826static int common_ping_main(int opt, char **argv)
Eric Andersen485b9551999-12-07 23:14:59 +0000827{
Denis Vlasenkoaeb4bdd2007-01-25 00:00:02 +0000828 len_and_sockaddr *lsa;
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000829 char *str_s;
Eric Andersen485b9551999-12-07 23:14:59 +0000830
Denis Vlasenko821cc252007-06-04 10:33:48 +0000831 INIT_G();
832
Joachim Nilsson714e2b72010-11-28 23:01:18 +0100833 /* exactly one argument needed; -v and -q don't mix; -c NUM, -t NUM, -w NUM, -W NUM */
834 opt_complementary = "=1:q--v:v--q:c+:t+:w+:W+";
835 opt |= getopt32(argv, OPT_STRING, &pingcount, &str_s, &opt_ttl, &deadline, &timeout, &str_I);
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000836 if (opt & OPT_s)
837 datalen = xatou16(str_s); // -s
838 if (opt & OPT_I) { // -I
839 if_index = if_nametoindex(str_I);
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000840 if (!if_index) {
841 /* TODO: I'm not sure it takes IPv6 unless in [XX:XX..] format */
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000842 source_lsa = xdotted2sockaddr(str_I, 0);
843 str_I = NULL; /* don't try to bind to device later */
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000844 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000845 }
Denis Vlasenko1c9ad622007-05-27 00:53:41 +0000846 myid = (uint16_t) getpid();
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000847 hostname = argv[optind];
848#if ENABLE_PING6
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000849 {
850 sa_family_t af = AF_UNSPEC;
851 if (opt & OPT_IPV4)
852 af = AF_INET;
853 if (opt & OPT_IPV6)
854 af = AF_INET6;
855 lsa = xhost_and_af2sockaddr(hostname, 0, af);
856 }
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000857#else
Denis Vlasenko42823d52007-02-04 02:39:08 +0000858 lsa = xhost_and_af2sockaddr(hostname, 0, AF_INET);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000859#endif
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000860
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000861 if (source_lsa && source_lsa->u.sa.sa_family != lsa->u.sa.sa_family)
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000862 /* leaking it here... */
863 source_lsa = NULL;
864
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000865 dotted = xmalloc_sockaddr2dotted_noport(&lsa->u.sa);
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000866 ping(lsa);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000867 print_stats_and_exit(EXIT_SUCCESS);
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000868 /*return EXIT_SUCCESS;*/
Eric Andersen485b9551999-12-07 23:14:59 +0000869}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000870#endif /* FEATURE_FANCY_PING */
871
872
Denys Vlasenkoad7d94b2009-11-20 18:12:12 +0100873int ping_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
874int ping_main(int argc UNUSED_PARAM, char **argv)
875{
876#if !ENABLE_FEATURE_FANCY_PING
877 return common_ping_main(AF_UNSPEC, argv);
878#else
879 return common_ping_main(0, argv);
880#endif
881}
882
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000883#if ENABLE_PING6
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000884int ping6_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko59f502b2008-10-27 11:54:45 +0000885int ping6_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000886{
Denys Vlasenkoad7d94b2009-11-20 18:12:12 +0100887# if !ENABLE_FEATURE_FANCY_PING
888 return common_ping_main(AF_INET6, argv);
889# else
890 return common_ping_main(OPT_IPV6, argv);
891# endif
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000892}
893#endif
894
895/* from ping6.c:
896 * Copyright (c) 1989 The Regents of the University of California.
897 * All rights reserved.
898 *
899 * This code is derived from software contributed to Berkeley by
900 * Mike Muuss.
901 *
902 * Redistribution and use in source and binary forms, with or without
903 * modification, are permitted provided that the following conditions
904 * are met:
905 * 1. Redistributions of source code must retain the above copyright
906 * notice, this list of conditions and the following disclaimer.
907 * 2. Redistributions in binary form must reproduce the above copyright
908 * notice, this list of conditions and the following disclaimer in the
909 * documentation and/or other materials provided with the distribution.
910 *
911 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
912 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
913 *
914 * 4. Neither the name of the University nor the names of its contributors
915 * may be used to endorse or promote products derived from this software
916 * without specific prior written permission.
917 *
918 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
919 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
920 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
921 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
922 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
923 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
924 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
925 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
926 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
927 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
928 * SUCH DAMAGE.
929 */