blob: 3ac9481c8c9da5e159d5925d214a74828b3891ba [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 *
Rob Landley42eddba2005-12-15 08:04:17 +000014 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
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
Denis Vlasenkob9a279b2007-01-24 23:53:22 +000032#if ENABLE_PING6
33#include <netinet/icmp6.h>
34/* I see RENUMBERED constants in bits/in.h - !!?
35 * What a fuck is going on with libc? Is it a glibc joke? */
36#ifdef IPV6_2292HOPLIMIT
37#undef IPV6_HOPLIMIT
38#define IPV6_HOPLIMIT IPV6_2292HOPLIMIT
39#endif
40#endif
Eric Andersen485b9551999-12-07 23:14:59 +000041
Rob Landleybc68cd12006-03-10 19:22:06 +000042enum {
43 DEFDATALEN = 56,
44 MAXIPLEN = 60,
45 MAXICMPLEN = 76,
46 MAXPACKET = 65468,
47 MAX_DUP_CHK = (8 * 128),
48 MAXWAIT = 10,
Denis Vlasenkob9a279b2007-01-24 23:53:22 +000049 PINGINTERVAL = 1, /* 1 second */
Rob Landleybc68cd12006-03-10 19:22:06 +000050};
Eric Andersen485b9551999-12-07 23:14:59 +000051
Eric Andersen19db07b1999-12-11 08:41:28 +000052/* common routines */
Denis Vlasenko4a5cf162006-11-20 00:48:22 +000053
Eric Andersen485b9551999-12-07 23:14:59 +000054static int in_cksum(unsigned short *buf, int sz)
55{
Erik Andersene49d5ec2000-02-08 19:58:47 +000056 int nleft = sz;
57 int sum = 0;
58 unsigned short *w = buf;
59 unsigned short ans = 0;
Eric Andersen485b9551999-12-07 23:14:59 +000060
Erik Andersene49d5ec2000-02-08 19:58:47 +000061 while (nleft > 1) {
62 sum += *w++;
63 nleft -= 2;
64 }
Eric Andersen485b9551999-12-07 23:14:59 +000065
Erik Andersene49d5ec2000-02-08 19:58:47 +000066 if (nleft == 1) {
67 *(unsigned char *) (&ans) = *(unsigned char *) w;
68 sum += ans;
69 }
Eric Andersen485b9551999-12-07 23:14:59 +000070
Erik Andersene49d5ec2000-02-08 19:58:47 +000071 sum = (sum >> 16) + (sum & 0xFFFF);
72 sum += (sum >> 16);
73 ans = ~sum;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +000074 return ans;
Erik Andersene49d5ec2000-02-08 19:58:47 +000075}
Eric Andersen485b9551999-12-07 23:14:59 +000076
Denis Vlasenkob9a279b2007-01-24 23:53:22 +000077#if !ENABLE_FEATURE_FANCY_PING
Denis Vlasenko4a5cf162006-11-20 00:48:22 +000078
79/* simple version */
80
Denis Vlasenkocb6874c2006-09-02 16:13:36 +000081static char *hostname;
82
Denis Vlasenkob9a279b2007-01-24 23:53:22 +000083static void noresp(int ign ATTRIBUTE_UNUSED)
Eric Andersenb5474c42002-03-20 11:59:28 +000084{
Eric Andersenb8886822002-03-21 14:04:43 +000085 printf("No response from %s\n", hostname);
Eric Andersen4e486a52003-01-12 06:08:33 +000086 exit(EXIT_FAILURE);
Eric Andersenb5474c42002-03-20 11:59:28 +000087}
Eric Andersen19db07b1999-12-11 08:41:28 +000088
Denis Vlasenkoe9356022007-01-29 18:03:54 +000089static void ping4(len_and_sockaddr *lsa)
Eric Andersen19db07b1999-12-11 08:41:28 +000090{
Erik Andersene49d5ec2000-02-08 19:58:47 +000091 struct sockaddr_in pingaddr;
92 struct icmp *pkt;
93 int pingsock, c;
94 char packet[DEFDATALEN + MAXIPLEN + MAXICMPLEN];
Eric Andersen19db07b1999-12-11 08:41:28 +000095
Matt Kraai06ef1652001-07-13 20:56:27 +000096 pingsock = create_icmp_socket();
Paul Fox0b2b5842008-02-01 23:25:32 +000097 pingaddr = lsa->u.sin;
Erik Andersene49d5ec2000-02-08 19:58:47 +000098
99 pkt = (struct icmp *) packet;
100 memset(pkt, 0, sizeof(packet));
101 pkt->icmp_type = ICMP_ECHO;
102 pkt->icmp_cksum = in_cksum((unsigned short *) pkt, sizeof(packet));
103
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000104 c = xsendto(pingsock, packet, DEFDATALEN + ICMP_MINLEN,
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000105 (struct sockaddr *) &pingaddr, sizeof(pingaddr));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000106
Erik Andersene49d5ec2000-02-08 19:58:47 +0000107 /* listen for replies */
108 while (1) {
109 struct sockaddr_in from;
Mike Frysinger03e827a2005-07-26 23:00:59 +0000110 socklen_t fromlen = sizeof(from);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000111
Denis Vlasenko806116b2006-12-31 12:14:16 +0000112 c = recvfrom(pingsock, packet, sizeof(packet), 0,
113 (struct sockaddr *) &from, &fromlen);
114 if (c < 0) {
Denis Vlasenko44c2eb22007-01-08 23:55:33 +0000115 if (errno != EINTR)
116 bb_perror_msg("recvfrom");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000117 continue;
118 }
119 if (c >= 76) { /* ip + icmp */
120 struct iphdr *iphdr = (struct iphdr *) packet;
121
122 pkt = (struct icmp *) (packet + (iphdr->ihl << 2)); /* skip ip hdr */
123 if (pkt->icmp_type == ICMP_ECHOREPLY)
124 break;
125 }
126 }
Denis Vlasenko9adc6ce2007-01-22 22:45:27 +0000127 if (ENABLE_FEATURE_CLEAN_UP)
128 close(pingsock);
Eric Andersen19db07b1999-12-11 08:41:28 +0000129}
130
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000131#if ENABLE_PING6
132static void ping6(len_and_sockaddr *lsa)
133{
134 struct sockaddr_in6 pingaddr;
135 struct icmp6_hdr *pkt;
136 int pingsock, c;
137 int sockopt;
138 char packet[DEFDATALEN + MAXIPLEN + MAXICMPLEN];
139
140 pingsock = create_icmp6_socket();
Paul Fox0b2b5842008-02-01 23:25:32 +0000141 pingaddr = lsa->u.sin6;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000142
143 pkt = (struct icmp6_hdr *) packet;
144 memset(pkt, 0, sizeof(packet));
145 pkt->icmp6_type = ICMP6_ECHO_REQUEST;
146
147 sockopt = offsetof(struct icmp6_hdr, icmp6_cksum);
148 setsockopt(pingsock, SOL_RAW, IPV6_CHECKSUM, &sockopt, sizeof(sockopt));
149
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000150 c = xsendto(pingsock, packet, DEFDATALEN + sizeof (struct icmp6_hdr),
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000151 (struct sockaddr *) &pingaddr, sizeof(pingaddr));
152
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000153 /* listen for replies */
154 while (1) {
155 struct sockaddr_in6 from;
156 socklen_t fromlen = sizeof(from);
157
158 c = recvfrom(pingsock, packet, sizeof(packet), 0,
159 (struct sockaddr *) &from, &fromlen);
160 if (c < 0) {
161 if (errno != EINTR)
162 bb_perror_msg("recvfrom");
163 continue;
164 }
165 if (c >= 8) { /* icmp6_hdr */
166 pkt = (struct icmp6_hdr *) packet;
167 if (pkt->icmp6_type == ICMP6_ECHO_REPLY)
168 break;
169 }
170 }
171 if (ENABLE_FEATURE_CLEAN_UP)
172 close(pingsock);
173}
174#endif
175
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000176int ping_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko68404f12008-03-17 09:00:54 +0000177int ping_main(int argc ATTRIBUTE_UNUSED, char **argv)
Eric Andersen19db07b1999-12-11 08:41:28 +0000178{
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000179 len_and_sockaddr *lsa;
180#if ENABLE_PING6
181 sa_family_t af = AF_UNSPEC;
Denis Vlasenko3483e852007-07-02 15:47:52 +0000182
183 while ((++argv)[0] && argv[0][0] == '-') {
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000184 if (argv[0][1] == '4') {
185 af = AF_INET;
186 continue;
187 }
188 if (argv[0][1] == '6') {
189 af = AF_INET6;
190 continue;
191 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000192 bb_show_usage();
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000193 }
194#else
195 argv++;
196#endif
197
198 hostname = *argv;
199 if (!hostname)
200 bb_show_usage();
201
202#if ENABLE_PING6
Denis Vlasenko42823d52007-02-04 02:39:08 +0000203 lsa = xhost_and_af2sockaddr(hostname, 0, af);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000204#else
Denis Vlasenko42823d52007-02-04 02:39:08 +0000205 lsa = xhost_and_af2sockaddr(hostname, 0, AF_INET);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000206#endif
207 /* Set timer _after_ DNS resolution */
208 signal(SIGALRM, noresp);
209 alarm(5); /* give the host 5000ms to respond */
210
211#if ENABLE_PING6
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000212 if (lsa->u.sa.sa_family == AF_INET6)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000213 ping6(lsa);
214 else
215#endif
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000216 ping4(lsa);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000217 printf("%s is alive!\n", hostname);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000218 return EXIT_SUCCESS;
Eric Andersen19db07b1999-12-11 08:41:28 +0000219}
220
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000221
222#else /* FEATURE_FANCY_PING */
223
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000224
Eric Andersen19db07b1999-12-11 08:41:28 +0000225/* full(er) version */
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000226
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000227#define OPT_STRING ("qvc:s:w:W:I:4" USE_PING6("6"))
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000228enum {
229 OPT_QUIET = 1 << 0,
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000230 OPT_VERBOSE = 1 << 1,
231 OPT_c = 1 << 2,
232 OPT_s = 1 << 3,
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000233 OPT_w = 1 << 4,
234 OPT_W = 1 << 5,
235 OPT_I = 1 << 6,
236 OPT_IPV4 = 1 << 7,
237 OPT_IPV6 = (1 << 8) * ENABLE_PING6,
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000238};
239
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000240
Denis Vlasenko821cc252007-06-04 10:33:48 +0000241struct globals {
242 int pingsock;
Denis Vlasenko1a7afb42007-10-19 21:39:25 +0000243 int if_index;
244 char *opt_I;
Denis Vlasenko821cc252007-06-04 10:33:48 +0000245 len_and_sockaddr *source_lsa;
246 unsigned datalen;
Denis Vlasenko821cc252007-06-04 10:33:48 +0000247 unsigned long ntransmitted, nreceived, nrepeats, pingcount;
248 uint16_t myid;
Denis Vlasenko76791452007-06-18 08:55:57 +0000249 unsigned tmin, tmax; /* in us */
250 unsigned long long tsum; /* in us, sum of all times */
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000251 unsigned deadline;
252 unsigned timeout;
253 unsigned total_secs;
Denis Vlasenko821cc252007-06-04 10:33:48 +0000254 const char *hostname;
255 const char *dotted;
256 union {
257 struct sockaddr sa;
258 struct sockaddr_in sin;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000259#if ENABLE_PING6
Denis Vlasenko821cc252007-06-04 10:33:48 +0000260 struct sockaddr_in6 sin6;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000261#endif
Denis Vlasenko821cc252007-06-04 10:33:48 +0000262 } pingaddr;
263 char rcvd_tbl[MAX_DUP_CHK / 8];
264};
265#define G (*(struct globals*)&bb_common_bufsiz1)
266#define pingsock (G.pingsock )
Denis Vlasenko821cc252007-06-04 10:33:48 +0000267#define if_index (G.if_index )
Denis Vlasenko1a7afb42007-10-19 21:39:25 +0000268#define source_lsa (G.source_lsa )
269#define opt_I (G.opt_I )
270#define datalen (G.datalen )
Denis Vlasenko821cc252007-06-04 10:33:48 +0000271#define ntransmitted (G.ntransmitted)
272#define nreceived (G.nreceived )
273#define nrepeats (G.nrepeats )
274#define pingcount (G.pingcount )
275#define myid (G.myid )
276#define tmin (G.tmin )
277#define tmax (G.tmax )
278#define tsum (G.tsum )
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000279#define deadline (G.deadline )
280#define timeout (G.timeout )
281#define total_secs (G.total_secs )
Denis Vlasenko821cc252007-06-04 10:33:48 +0000282#define hostname (G.hostname )
283#define dotted (G.dotted )
284#define pingaddr (G.pingaddr )
285#define rcvd_tbl (G.rcvd_tbl )
286void BUG_ping_globals_too_big(void);
287#define INIT_G() do { \
Denis Vlasenko6b404432008-01-07 16:13:14 +0000288 if (sizeof(G) > COMMON_BUFSIZE) \
289 BUG_ping_globals_too_big(); \
Denis Vlasenko821cc252007-06-04 10:33:48 +0000290 pingsock = -1; \
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000291 datalen = DEFDATALEN; \
292 timeout = MAXWAIT; \
Denis Vlasenko821cc252007-06-04 10:33:48 +0000293 tmin = UINT_MAX; \
294} while (0)
Eric Andersen19db07b1999-12-11 08:41:28 +0000295
Eric Andersen19db07b1999-12-11 08:41:28 +0000296
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000297#define A(bit) rcvd_tbl[(bit)>>3] /* identify byte in array */
298#define B(bit) (1 << ((bit) & 0x07)) /* identify bit in byte */
299#define SET(bit) (A(bit) |= B(bit))
300#define CLR(bit) (A(bit) &= (~B(bit)))
301#define TST(bit) (A(bit) & B(bit))
302
Eric Andersen19db07b1999-12-11 08:41:28 +0000303/**************************************************************************/
304
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000305static void print_stats_and_exit(int junk) ATTRIBUTE_NORETURN;
306static void print_stats_and_exit(int junk ATTRIBUTE_UNUSED)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000307{
308 signal(SIGINT, SIG_IGN);
309
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000310 printf("\n--- %s ping statistics ---\n", hostname);
Denis Vlasenko13858992006-10-08 12:49:22 +0000311 printf("%lu packets transmitted, ", ntransmitted);
312 printf("%lu packets received, ", nreceived);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000313 if (nrepeats)
Denis Vlasenko13858992006-10-08 12:49:22 +0000314 printf("%lu duplicates, ", nrepeats);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000315 if (ntransmitted)
Denis Vlasenkoaeb4bdd2007-01-25 00:00:02 +0000316 ntransmitted = (ntransmitted - nreceived) * 100 / ntransmitted;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000317 printf("%lu%% packet loss\n", ntransmitted);
Denis Vlasenko76791452007-06-18 08:55:57 +0000318 if (tmin != UINT_MAX) {
319 unsigned tavg = tsum / (nreceived + nrepeats);
320 printf("round-trip min/avg/max = %u.%03u/%u.%03u/%u.%03u ms\n",
321 tmin / 1000, tmin % 1000,
322 tavg / 1000, tavg % 1000,
323 tmax / 1000, tmax % 1000);
324 }
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000325 /* if condition is true, exit with 1 -- 'failure' */
326 exit(nreceived == 0 || (deadline && nreceived < pingcount));
Eric Andersen485b9551999-12-07 23:14:59 +0000327}
328
Denis Vlasenkoc8e99932007-02-09 18:14:42 +0000329static void sendping_tail(void (*sp)(int), const void *pkt, int size_pkt)
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000330{
Denis Vlasenkoc8e99932007-02-09 18:14:42 +0000331 int sz;
332
333 CLR((uint16_t)ntransmitted % MAX_DUP_CHK);
334 ntransmitted++;
335
336 /* sizeof(pingaddr) can be larger than real sa size, but I think
337 * it doesn't matter */
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000338 sz = xsendto(pingsock, pkt, size_pkt, &pingaddr.sa, sizeof(pingaddr));
Denis Vlasenkoc8e99932007-02-09 18:14:42 +0000339 if (sz != size_pkt)
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000340 bb_error_msg_and_die(bb_msg_write_error);
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000341
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000342 if (pingcount == 0 || deadline || ntransmitted < pingcount) {
343 /* Didn't send all pings yet - schedule next in 1s */
344 signal(SIGALRM, sp);
345 if (deadline) {
346 total_secs += PINGINTERVAL;
347 if (total_secs >= deadline)
348 signal(SIGALRM, print_stats_and_exit);
349 }
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000350 alarm(PINGINTERVAL);
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000351 } else { /* -c NN, and all NN are sent (and no deadline) */
352 /* Wait for the last ping to come back.
353 * -W timeout: wait for a response in seconds.
354 * Affects only timeout in absense of any responses,
355 * otherwise ping waits for two RTTs. */
356 unsigned expire = timeout;
357
358 if (nreceived) {
359 /* approx. 2*tmax, in seconds (2 RTT) */
360 expire = tmax / (512*1024);
361 if (expire == 0)
362 expire = 1;
363 }
364 signal(SIGALRM, print_stats_and_exit);
365 alarm(expire);
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000366 }
367}
368
369static void sendping4(int junk ATTRIBUTE_UNUSED)
Eric Andersen485b9551999-12-07 23:14:59 +0000370{
Denis Vlasenko76791452007-06-18 08:55:57 +0000371 /* +4 reserves a place for timestamp, which may end up sitting
372 * *after* packet. Saves one if() */
373 struct icmp *pkt = alloca(datalen + ICMP_MINLEN + 4);
Eric Andersen485b9551999-12-07 23:14:59 +0000374
Denis Vlasenkob34266b2008-04-29 12:31:53 +0000375 memset(pkt, 0, datalen + ICMP_MINLEN + 4);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000376 pkt->icmp_type = ICMP_ECHO;
Denis Vlasenkob34266b2008-04-29 12:31:53 +0000377 /*pkt->icmp_code = 0;*/
378 /*pkt->icmp_cksum = 0;*/
Denis Vlasenko919c10d2007-01-03 22:14:18 +0000379 pkt->icmp_seq = htons(ntransmitted); /* don't ++ here, it can be a macro */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000380 pkt->icmp_id = myid;
Denis Vlasenko7b72fc12007-06-16 13:37:59 +0000381
Denis Vlasenko76791452007-06-18 08:55:57 +0000382 /* We don't do hton, because we will read it back on the same machine */
383 /*if (datalen >= 4)*/
384 *(uint32_t*)&pkt->icmp_dun = monotonic_us();
Denis Vlasenko7b72fc12007-06-16 13:37:59 +0000385
Denis Vlasenkoc8e99932007-02-09 18:14:42 +0000386 pkt->icmp_cksum = in_cksum((unsigned short *) pkt, datalen + ICMP_MINLEN);
Eric Andersen485b9551999-12-07 23:14:59 +0000387
Denis Vlasenkoc8e99932007-02-09 18:14:42 +0000388 sendping_tail(sendping4, pkt, datalen + ICMP_MINLEN);
Eric Andersen485b9551999-12-07 23:14:59 +0000389}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000390#if ENABLE_PING6
391static void sendping6(int junk ATTRIBUTE_UNUSED)
392{
Denis Vlasenko76791452007-06-18 08:55:57 +0000393 struct icmp6_hdr *pkt = alloca(datalen + sizeof(struct icmp6_hdr) + 4);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000394
Denis Vlasenkob34266b2008-04-29 12:31:53 +0000395 memset(pkt, 0, datalen + sizeof(struct icmp6_hdr) + 4);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000396 pkt->icmp6_type = ICMP6_ECHO_REQUEST;
Denis Vlasenkob34266b2008-04-29 12:31:53 +0000397 /*pkt->icmp6_code = 0;*/
398 /*pkt->icmp6_cksum = 0;*/
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000399 pkt->icmp6_seq = htons(ntransmitted); /* don't ++ here, it can be a macro */
400 pkt->icmp6_id = myid;
Denis Vlasenko7b72fc12007-06-16 13:37:59 +0000401
Denis Vlasenko76791452007-06-18 08:55:57 +0000402 /*if (datalen >= 4)*/
403 *(uint32_t*)(&pkt->icmp6_data8[4]) = monotonic_us();
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000404
Denis Vlasenkoc8e99932007-02-09 18:14:42 +0000405 sendping_tail(sendping6, pkt, datalen + sizeof(struct icmp6_hdr));
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000406}
407#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000408
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000409static const char *icmp_type_name(int id)
Erik Andersen227a59b2000-04-25 23:24:55 +0000410{
411 switch (id) {
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000412 case ICMP_ECHOREPLY: return "Echo Reply";
413 case ICMP_DEST_UNREACH: return "Destination Unreachable";
414 case ICMP_SOURCE_QUENCH: return "Source Quench";
415 case ICMP_REDIRECT: return "Redirect (change route)";
416 case ICMP_ECHO: return "Echo Request";
417 case ICMP_TIME_EXCEEDED: return "Time Exceeded";
418 case ICMP_PARAMETERPROB: return "Parameter Problem";
419 case ICMP_TIMESTAMP: return "Timestamp Request";
420 case ICMP_TIMESTAMPREPLY: return "Timestamp Reply";
421 case ICMP_INFO_REQUEST: return "Information Request";
422 case ICMP_INFO_REPLY: return "Information Reply";
423 case ICMP_ADDRESS: return "Address Mask Request";
424 case ICMP_ADDRESSREPLY: return "Address Mask Reply";
425 default: return "unknown ICMP type";
Erik Andersen227a59b2000-04-25 23:24:55 +0000426 }
427}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000428#if ENABLE_PING6
429/* RFC3542 changed some definitions from RFC2292 for no good reason, whee!
430 * the newer 3542 uses a MLD_ prefix where as 2292 uses ICMP6_ prefix */
431#ifndef MLD_LISTENER_QUERY
432# define MLD_LISTENER_QUERY ICMP6_MEMBERSHIP_QUERY
433#endif
434#ifndef MLD_LISTENER_REPORT
435# define MLD_LISTENER_REPORT ICMP6_MEMBERSHIP_REPORT
436#endif
437#ifndef MLD_LISTENER_REDUCTION
438# define MLD_LISTENER_REDUCTION ICMP6_MEMBERSHIP_REDUCTION
439#endif
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000440static const char *icmp6_type_name(int id)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000441{
442 switch (id) {
443 case ICMP6_DST_UNREACH: return "Destination Unreachable";
444 case ICMP6_PACKET_TOO_BIG: return "Packet too big";
445 case ICMP6_TIME_EXCEEDED: return "Time Exceeded";
446 case ICMP6_PARAM_PROB: return "Parameter Problem";
447 case ICMP6_ECHO_REPLY: return "Echo Reply";
448 case ICMP6_ECHO_REQUEST: return "Echo Request";
449 case MLD_LISTENER_QUERY: return "Listener Query";
450 case MLD_LISTENER_REPORT: return "Listener Report";
451 case MLD_LISTENER_REDUCTION: return "Listener Reduction";
452 default: return "unknown ICMP type";
453 }
454}
455#endif
Erik Andersen227a59b2000-04-25 23:24:55 +0000456
Denis Vlasenko76791452007-06-18 08:55:57 +0000457static void unpack_tail(int sz, uint32_t *tp,
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000458 const char *from_str,
459 uint16_t recv_seq, int ttl)
460{
461 const char *dupmsg = " (DUP!)";
462 unsigned triptime = triptime; /* for gcc */
463
464 ++nreceived;
465
466 if (tp) {
Denis Vlasenko76791452007-06-18 08:55:57 +0000467 /* (int32_t) cast is for hypothetical 64-bit unsigned */
468 /* (doesn't hurt 32-bit real-world anyway) */
469 triptime = (int32_t) ((uint32_t)monotonic_us() - *tp);
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000470 tsum += triptime;
471 if (triptime < tmin)
472 tmin = triptime;
473 if (triptime > tmax)
474 tmax = triptime;
475 }
476
477 if (TST(recv_seq % MAX_DUP_CHK)) {
478 ++nrepeats;
479 --nreceived;
480 } else {
481 SET(recv_seq % MAX_DUP_CHK);
482 dupmsg += 7;
483 }
484
485 if (option_mask32 & OPT_QUIET)
486 return;
487
488 printf("%d bytes from %s: seq=%u ttl=%d", sz,
489 from_str, recv_seq, ttl);
490 if (tp)
Denis Vlasenko76791452007-06-18 08:55:57 +0000491 printf(" time=%u.%03u ms", triptime / 1000, triptime % 1000);
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000492 puts(dupmsg);
493 fflush(stdout);
494}
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000495static void unpack4(char *buf, int sz, struct sockaddr_in *from)
Eric Andersen485b9551999-12-07 23:14:59 +0000496{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000497 struct icmp *icmppkt;
498 struct iphdr *iphdr;
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000499 int hlen;
Eric Andersen485b9551999-12-07 23:14:59 +0000500
Erik Andersene49d5ec2000-02-08 19:58:47 +0000501 /* discard if too short */
Pavel Roskin0024abc2000-06-07 20:38:15 +0000502 if (sz < (datalen + ICMP_MINLEN))
Erik Andersene49d5ec2000-02-08 19:58:47 +0000503 return;
Eric Andersen485b9551999-12-07 23:14:59 +0000504
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000505 /* check IP header */
506 iphdr = (struct iphdr *) buf;
507 hlen = iphdr->ihl << 2;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000508 sz -= hlen;
509 icmppkt = (struct icmp *) (buf + hlen);
Erik Andersen227a59b2000-04-25 23:24:55 +0000510 if (icmppkt->icmp_id != myid)
Denis Vlasenkocb6874c2006-09-02 16:13:36 +0000511 return; /* not our ping */
Erik Andersen227a59b2000-04-25 23:24:55 +0000512
Erik Andersene49d5ec2000-02-08 19:58:47 +0000513 if (icmppkt->icmp_type == ICMP_ECHOREPLY) {
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000514 uint16_t recv_seq = ntohs(icmppkt->icmp_seq);
Denis Vlasenko76791452007-06-18 08:55:57 +0000515 uint32_t *tp = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000516
Denis Vlasenko76791452007-06-18 08:55:57 +0000517 if (sz >= ICMP_MINLEN + sizeof(uint32_t))
518 tp = (uint32_t *) icmppkt->icmp_data;
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000519 unpack_tail(sz, tp,
520 inet_ntoa(*(struct in_addr *) &from->sin_addr.s_addr),
521 recv_seq, iphdr->ttl);
522 } else if (icmppkt->icmp_type != ICMP_ECHO) {
523 bb_error_msg("warning: got ICMP %d (%s)",
524 icmppkt->icmp_type,
525 icmp_type_name(icmppkt->icmp_type));
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000526 }
Eric Andersen485b9551999-12-07 23:14:59 +0000527}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000528#if ENABLE_PING6
Denis Vlasenko68404f12008-03-17 09:00:54 +0000529static void unpack6(char *packet, int sz, /*struct sockaddr_in6 *from,*/ int hoplimit)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000530{
531 struct icmp6_hdr *icmppkt;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000532 char buf[INET6_ADDRSTRLEN];
Eric Andersen485b9551999-12-07 23:14:59 +0000533
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000534 /* discard if too short */
535 if (sz < (datalen + sizeof(struct icmp6_hdr)))
536 return;
537
538 icmppkt = (struct icmp6_hdr *) packet;
539 if (icmppkt->icmp6_id != myid)
540 return; /* not our ping */
541
542 if (icmppkt->icmp6_type == ICMP6_ECHO_REPLY) {
543 uint16_t recv_seq = ntohs(icmppkt->icmp6_seq);
Denis Vlasenko76791452007-06-18 08:55:57 +0000544 uint32_t *tp = NULL;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000545
Denis Vlasenko76791452007-06-18 08:55:57 +0000546 if (sz >= sizeof(struct icmp6_hdr) + sizeof(uint32_t))
547 tp = (uint32_t *) &icmppkt->icmp6_data8[4];
Denis Vlasenko19c238b2007-03-03 00:36:35 +0000548 unpack_tail(sz, tp,
549 inet_ntop(AF_INET6, &pingaddr.sin6.sin6_addr,
550 buf, sizeof(buf)),
551 recv_seq, hoplimit);
552 } else if (icmppkt->icmp6_type != ICMP6_ECHO_REQUEST) {
553 bb_error_msg("warning: got ICMP %d (%s)",
554 icmppkt->icmp6_type,
555 icmp6_type_name(icmppkt->icmp6_type));
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000556 }
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000557}
558#endif
559
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000560static void ping4(len_and_sockaddr *lsa)
Eric Andersen485b9551999-12-07 23:14:59 +0000561{
Pavel Roskin0024abc2000-06-07 20:38:15 +0000562 char packet[datalen + MAXIPLEN + MAXICMPLEN];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000563 int sockopt;
564
Matt Kraai06ef1652001-07-13 20:56:27 +0000565 pingsock = create_icmp_socket();
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000566 pingaddr.sin = lsa->u.sin;
Denis Vlasenko5ad10482007-06-19 22:54:21 +0000567 if (source_lsa) {
568 if (setsockopt(pingsock, IPPROTO_IP, IP_MULTICAST_IF,
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000569 &source_lsa->u.sa, source_lsa->len))
Denis Vlasenko5ad10482007-06-19 22:54:21 +0000570 bb_error_msg_and_die("can't set multicast source interface");
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000571 xbind(pingsock, &source_lsa->u.sa, source_lsa->len);
Denis Vlasenko5ad10482007-06-19 22:54:21 +0000572 }
Denis Vlasenko1a7afb42007-10-19 21:39:25 +0000573 if (opt_I)
Denis Vlasenko2edbc2a2007-10-20 02:00:49 +0000574 setsockopt(pingsock, SOL_SOCKET, SO_BINDTODEVICE, opt_I, strlen(opt_I) + 1);
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000575
Erik Andersene49d5ec2000-02-08 19:58:47 +0000576 /* enable broadcast pings */
Denis Vlasenko48237b02006-11-22 23:22:06 +0000577 setsockopt_broadcast(pingsock);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000578
579 /* set recv buf for broadcast pings */
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000580 sockopt = 48 * 1024; /* explain why 48k? */
Denis Vlasenko703e2022007-01-22 14:12:08 +0000581 setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, &sockopt, sizeof(sockopt));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000582
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000583 signal(SIGINT, print_stats_and_exit);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000584
585 /* start the ping's going ... */
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000586 sendping4(0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000587
588 /* listen for replies */
589 while (1) {
590 struct sockaddr_in from;
Erik Andersen1d1d9502000-04-21 01:26:49 +0000591 socklen_t fromlen = (socklen_t) sizeof(from);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000592 int c;
593
Denis Vlasenko44c2eb22007-01-08 23:55:33 +0000594 c = recvfrom(pingsock, packet, sizeof(packet), 0,
595 (struct sockaddr *) &from, &fromlen);
596 if (c < 0) {
597 if (errno != EINTR)
598 bb_perror_msg("recvfrom");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000599 continue;
600 }
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000601 unpack4(packet, c, &from);
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000602 if (pingcount && nreceived >= pingcount)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000603 break;
604 }
Eric Andersen485b9551999-12-07 23:14:59 +0000605}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000606#if ENABLE_PING6
607extern int BUG_bad_offsetof_icmp6_cksum(void);
608static void ping6(len_and_sockaddr *lsa)
609{
610 char packet[datalen + MAXIPLEN + MAXICMPLEN];
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000611 int sockopt;
612 struct msghdr msg;
613 struct sockaddr_in6 from;
614 struct iovec iov;
615 char control_buf[CMSG_SPACE(36)];
616
617 pingsock = create_icmp6_socket();
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000618 pingaddr.sin6 = lsa->u.sin6;
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000619 /* untested whether "-I addr" really works for IPv6: */
620 if (source_lsa)
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000621 xbind(pingsock, &source_lsa->u.sa, source_lsa->len);
Denis Vlasenko1a7afb42007-10-19 21:39:25 +0000622 if (opt_I)
Denis Vlasenko2edbc2a2007-10-20 02:00:49 +0000623 setsockopt(pingsock, SOL_SOCKET, SO_BINDTODEVICE, opt_I, strlen(opt_I) + 1);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000624
625#ifdef ICMP6_FILTER
626 {
627 struct icmp6_filter filt;
628 if (!(option_mask32 & OPT_VERBOSE)) {
629 ICMP6_FILTER_SETBLOCKALL(&filt);
630 ICMP6_FILTER_SETPASS(ICMP6_ECHO_REPLY, &filt);
631 } else {
632 ICMP6_FILTER_SETPASSALL(&filt);
633 }
634 if (setsockopt(pingsock, IPPROTO_ICMPV6, ICMP6_FILTER, &filt,
635 sizeof(filt)) < 0)
636 bb_error_msg_and_die("setsockopt(ICMP6_FILTER)");
637 }
638#endif /*ICMP6_FILTER*/
639
640 /* enable broadcast pings */
641 setsockopt_broadcast(pingsock);
642
643 /* set recv buf for broadcast pings */
644 sockopt = 48 * 1024; /* explain why 48k? */
645 setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, &sockopt, sizeof(sockopt));
646
647 sockopt = offsetof(struct icmp6_hdr, icmp6_cksum);
648 if (offsetof(struct icmp6_hdr, icmp6_cksum) != 2)
649 BUG_bad_offsetof_icmp6_cksum();
650 setsockopt(pingsock, SOL_RAW, IPV6_CHECKSUM, &sockopt, sizeof(sockopt));
651
652 /* request ttl info to be returned in ancillary data */
653 setsockopt(pingsock, SOL_IPV6, IPV6_HOPLIMIT, &const_int_1, sizeof(const_int_1));
654
655 if (if_index)
Denis Vlasenkoaeb4bdd2007-01-25 00:00:02 +0000656 pingaddr.sin6.sin6_scope_id = if_index;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000657
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000658 signal(SIGINT, print_stats_and_exit);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000659
660 /* start the ping's going ... */
661 sendping6(0);
662
663 /* listen for replies */
664 msg.msg_name = &from;
665 msg.msg_namelen = sizeof(from);
666 msg.msg_iov = &iov;
667 msg.msg_iovlen = 1;
668 msg.msg_control = control_buf;
669 iov.iov_base = packet;
670 iov.iov_len = sizeof(packet);
671 while (1) {
672 int c;
673 struct cmsghdr *mp;
674 int hoplimit = -1;
675 msg.msg_controllen = sizeof(control_buf);
676
677 c = recvmsg(pingsock, &msg, 0);
678 if (c < 0) {
679 if (errno != EINTR)
680 bb_perror_msg("recvfrom");
681 continue;
682 }
683 for (mp = CMSG_FIRSTHDR(&msg); mp; mp = CMSG_NXTHDR(&msg, mp)) {
684 if (mp->cmsg_level == SOL_IPV6
685 && mp->cmsg_type == IPV6_HOPLIMIT
686 /* don't check len - we trust the kernel: */
687 /* && mp->cmsg_len >= CMSG_LEN(sizeof(int)) */
688 ) {
689 hoplimit = *(int*)CMSG_DATA(mp);
690 }
691 }
Denis Vlasenko68404f12008-03-17 09:00:54 +0000692 unpack6(packet, c, /*&from,*/ hoplimit);
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000693 if (pingcount && nreceived >= pingcount)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000694 break;
695 }
696}
697#endif
Eric Andersen485b9551999-12-07 23:14:59 +0000698
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000699static void ping(len_and_sockaddr *lsa)
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000700{
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000701 printf("PING %s (%s)", hostname, dotted);
702 if (source_lsa) {
703 printf(" from %s",
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000704 xmalloc_sockaddr2dotted_noport(&source_lsa->u.sa));
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000705 }
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000706 printf(": %d data bytes\n", datalen);
707
708#if ENABLE_PING6
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000709 if (lsa->u.sa.sa_family == AF_INET6)
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000710 ping6(lsa);
711 else
712#endif
713 ping4(lsa);
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000714}
715
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000716int ping_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko68404f12008-03-17 09:00:54 +0000717int ping_main(int argc ATTRIBUTE_UNUSED, char **argv)
Eric Andersen485b9551999-12-07 23:14:59 +0000718{
Denis Vlasenkoaeb4bdd2007-01-25 00:00:02 +0000719 len_and_sockaddr *lsa;
Denis Vlasenko1a7afb42007-10-19 21:39:25 +0000720 char *opt_c, *opt_s;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000721 USE_PING6(sa_family_t af = AF_UNSPEC;)
Eric Andersen485b9551999-12-07 23:14:59 +0000722
Denis Vlasenko821cc252007-06-04 10:33:48 +0000723 INIT_G();
724
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000725 /* exactly one argument needed; -v and -q don't mix; -w NUM, -W NUM */
726 opt_complementary = "=1:q--v:v--q:w+:W+";
727 getopt32(argv, OPT_STRING, &opt_c, &opt_s, &deadline, &timeout, &opt_I);
Denis Vlasenko1a7afb42007-10-19 21:39:25 +0000728 if (option_mask32 & OPT_c)
729 pingcount = xatoul(opt_c); // -c
730 if (option_mask32 & OPT_s)
731 datalen = xatou16(opt_s); // -s
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000732 if (option_mask32 & OPT_I) { // -I
733 if_index = if_nametoindex(opt_I);
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000734 if (!if_index) {
735 /* TODO: I'm not sure it takes IPv6 unless in [XX:XX..] format */
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000736 source_lsa = xdotted2sockaddr(opt_I, 0);
Denis Vlasenko1a7afb42007-10-19 21:39:25 +0000737 opt_I = NULL; /* don't try to bind to device later */
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000738 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000739 }
Denis Vlasenko1c9ad622007-05-27 00:53:41 +0000740 myid = (uint16_t) getpid();
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000741 hostname = argv[optind];
742#if ENABLE_PING6
743 if (option_mask32 & OPT_IPV4)
744 af = AF_INET;
745 if (option_mask32 & OPT_IPV6)
746 af = AF_INET6;
Denis Vlasenko42823d52007-02-04 02:39:08 +0000747 lsa = xhost_and_af2sockaddr(hostname, 0, af);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000748#else
Denis Vlasenko42823d52007-02-04 02:39:08 +0000749 lsa = xhost_and_af2sockaddr(hostname, 0, AF_INET);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000750#endif
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000751
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000752 if (source_lsa && source_lsa->u.sa.sa_family != lsa->u.sa.sa_family)
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000753 /* leaking it here... */
754 source_lsa = NULL;
755
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000756 dotted = xmalloc_sockaddr2dotted_noport(&lsa->u.sa);
Denis Vlasenko9ca26d32007-02-09 17:32:16 +0000757 ping(lsa);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000758 print_stats_and_exit(EXIT_SUCCESS);
Denis Vlasenko90c31b32008-04-07 00:46:29 +0000759 /*return EXIT_SUCCESS;*/
Eric Andersen485b9551999-12-07 23:14:59 +0000760}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000761#endif /* FEATURE_FANCY_PING */
762
763
764#if ENABLE_PING6
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000765int ping6_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000766int ping6_main(int argc, char **argv)
767{
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000768 argv[0] = (char*)"-6";
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000769 return ping_main(argc + 1, argv - 1);
770}
771#endif
772
773/* from ping6.c:
774 * Copyright (c) 1989 The Regents of the University of California.
775 * All rights reserved.
776 *
777 * This code is derived from software contributed to Berkeley by
778 * Mike Muuss.
779 *
780 * Redistribution and use in source and binary forms, with or without
781 * modification, are permitted provided that the following conditions
782 * are met:
783 * 1. Redistributions of source code must retain the above copyright
784 * notice, this list of conditions and the following disclaimer.
785 * 2. Redistributions in binary form must reproduce the above copyright
786 * notice, this list of conditions and the following disclaimer in the
787 * documentation and/or other materials provided with the distribution.
788 *
789 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
790 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
791 *
792 * 4. Neither the name of the University nor the names of its contributors
793 * may be used to endorse or promote products derived from this software
794 * without specific prior written permission.
795 *
796 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
797 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
798 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
799 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
800 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
801 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
802 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
803 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
804 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
805 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
806 * SUCH DAMAGE.
807 */