blob: ba4f585dbf661e83baea02956ca2596af7542094 [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>
Eric Andersencbe31da2001-02-20 06:14:08 +000030#include "busybox.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();
Denis Vlasenkob9a279b2007-01-24 23:53:22 +000097 pingaddr = lsa->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
Rob Landley07a637d2006-04-01 17:28:11 +0000104 c = sendto(pingsock, packet, DEFDATALEN + ICMP_MINLEN, 0,
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000105 (struct sockaddr *) &pingaddr, sizeof(pingaddr));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000106
Rob Landley9b1857f2006-05-31 23:54:50 +0000107 if (c < 0) {
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000108 if (ENABLE_FEATURE_CLEAN_UP)
109 close(pingsock);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000110 bb_perror_msg_and_die("sendto");
Rob Landley9b1857f2006-05-31 23:54:50 +0000111 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000112
Erik Andersene49d5ec2000-02-08 19:58:47 +0000113 /* listen for replies */
114 while (1) {
115 struct sockaddr_in from;
Mike Frysinger03e827a2005-07-26 23:00:59 +0000116 socklen_t fromlen = sizeof(from);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000117
Denis Vlasenko806116b2006-12-31 12:14:16 +0000118 c = recvfrom(pingsock, packet, sizeof(packet), 0,
119 (struct sockaddr *) &from, &fromlen);
120 if (c < 0) {
Denis Vlasenko44c2eb22007-01-08 23:55:33 +0000121 if (errno != EINTR)
122 bb_perror_msg("recvfrom");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000123 continue;
124 }
125 if (c >= 76) { /* ip + icmp */
126 struct iphdr *iphdr = (struct iphdr *) packet;
127
128 pkt = (struct icmp *) (packet + (iphdr->ihl << 2)); /* skip ip hdr */
129 if (pkt->icmp_type == ICMP_ECHOREPLY)
130 break;
131 }
132 }
Denis Vlasenko9adc6ce2007-01-22 22:45:27 +0000133 if (ENABLE_FEATURE_CLEAN_UP)
134 close(pingsock);
Eric Andersen19db07b1999-12-11 08:41:28 +0000135}
136
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000137#if ENABLE_PING6
138static void ping6(len_and_sockaddr *lsa)
139{
140 struct sockaddr_in6 pingaddr;
141 struct icmp6_hdr *pkt;
142 int pingsock, c;
143 int sockopt;
144 char packet[DEFDATALEN + MAXIPLEN + MAXICMPLEN];
145
146 pingsock = create_icmp6_socket();
147 pingaddr = lsa->sin6;
148
149 pkt = (struct icmp6_hdr *) packet;
150 memset(pkt, 0, sizeof(packet));
151 pkt->icmp6_type = ICMP6_ECHO_REQUEST;
152
153 sockopt = offsetof(struct icmp6_hdr, icmp6_cksum);
154 setsockopt(pingsock, SOL_RAW, IPV6_CHECKSUM, &sockopt, sizeof(sockopt));
155
156 c = sendto(pingsock, packet, DEFDATALEN + sizeof (struct icmp6_hdr), 0,
157 (struct sockaddr *) &pingaddr, sizeof(pingaddr));
158
159 if (c < 0) {
160 if (ENABLE_FEATURE_CLEAN_UP)
161 close(pingsock);
162 bb_perror_msg_and_die("sendto");
163 }
164
165 /* listen for replies */
166 while (1) {
167 struct sockaddr_in6 from;
168 socklen_t fromlen = sizeof(from);
169
170 c = recvfrom(pingsock, packet, sizeof(packet), 0,
171 (struct sockaddr *) &from, &fromlen);
172 if (c < 0) {
173 if (errno != EINTR)
174 bb_perror_msg("recvfrom");
175 continue;
176 }
177 if (c >= 8) { /* icmp6_hdr */
178 pkt = (struct icmp6_hdr *) packet;
179 if (pkt->icmp6_type == ICMP6_ECHO_REPLY)
180 break;
181 }
182 }
183 if (ENABLE_FEATURE_CLEAN_UP)
184 close(pingsock);
185}
186#endif
187
Rob Landleydfba7412006-03-06 20:47:33 +0000188int ping_main(int argc, char **argv)
Eric Andersen19db07b1999-12-11 08:41:28 +0000189{
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000190 len_and_sockaddr *lsa;
191#if ENABLE_PING6
192 sa_family_t af = AF_UNSPEC;
Denis Vlasenko4c978632007-02-03 03:31:13 +0000193 while (++argv[0][0] == '-') {
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000194 if (argv[0][1] == '4') {
195 af = AF_INET;
196 continue;
197 }
198 if (argv[0][1] == '6') {
199 af = AF_INET6;
200 continue;
201 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000202 bb_show_usage();
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000203 }
204#else
205 argv++;
206#endif
207
208 hostname = *argv;
209 if (!hostname)
210 bb_show_usage();
211
212#if ENABLE_PING6
213 lsa = host_and_af2sockaddr(hostname, 0, af);
214#else
215 lsa = host_and_af2sockaddr(hostname, 0, AF_INET);
216#endif
217 /* Set timer _after_ DNS resolution */
218 signal(SIGALRM, noresp);
219 alarm(5); /* give the host 5000ms to respond */
220
221#if ENABLE_PING6
222 if (lsa->sa.sa_family == AF_INET6)
223 ping6(lsa);
224 else
225#endif
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000226 ping4(lsa);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000227 printf("%s is alive!\n", hostname);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000228 return EXIT_SUCCESS;
Eric Andersen19db07b1999-12-11 08:41:28 +0000229}
230
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000231
232#else /* FEATURE_FANCY_PING */
233
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000234
Eric Andersen19db07b1999-12-11 08:41:28 +0000235/* full(er) version */
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000236
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000237#define OPT_STRING ("qvc:s:I:4" USE_PING6("6"))
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000238enum {
239 OPT_QUIET = 1 << 0,
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000240 OPT_VERBOSE = 1 << 1,
241 OPT_c = 1 << 2,
242 OPT_s = 1 << 3,
243 OPT_I = 1 << 4,
244 OPT_IPV4 = 1 << 5,
245 OPT_IPV6 = (1 << 6) * ENABLE_PING6,
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000246};
247
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000248
249static union {
250 struct sockaddr sa;
251 struct sockaddr_in sin;
252#if ENABLE_PING6
Denis Vlasenkoaeb4bdd2007-01-25 00:00:02 +0000253 struct sockaddr_in6 sin6;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000254#endif
255} pingaddr;
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000256static struct sockaddr_in sourceaddr;
Eric Andersen19db07b1999-12-11 08:41:28 +0000257static int pingsock = -1;
Denis Vlasenko13858992006-10-08 12:49:22 +0000258static unsigned datalen; /* intentionally uninitialized to work around gcc bug */
Eric Andersen19db07b1999-12-11 08:41:28 +0000259
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000260static int if_index;
261
Denis Vlasenko13858992006-10-08 12:49:22 +0000262static unsigned long ntransmitted, nreceived, nrepeats, pingcount;
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000263static int myid;
Matt Kraai369da772002-02-01 16:54:00 +0000264static unsigned long tmin = ULONG_MAX, tmax, tsum;
Eric Andersen19db07b1999-12-11 08:41:28 +0000265static char rcvd_tbl[MAX_DUP_CHK / 8];
266
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000267static const char *hostname;
268static const char *dotted;
Eric Andersen19db07b1999-12-11 08:41:28 +0000269
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000270#define A(bit) rcvd_tbl[(bit)>>3] /* identify byte in array */
271#define B(bit) (1 << ((bit) & 0x07)) /* identify bit in byte */
272#define SET(bit) (A(bit) |= B(bit))
273#define CLR(bit) (A(bit) &= (~B(bit)))
274#define TST(bit) (A(bit) & B(bit))
275
Eric Andersen19db07b1999-12-11 08:41:28 +0000276/**************************************************************************/
277
Denis Vlasenkoaeb4bdd2007-01-25 00:00:02 +0000278static void pingstats(int junk ATTRIBUTE_UNUSED)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000279{
Matt Kraaib938e2f2000-09-20 04:33:30 +0000280 int status;
281
Erik Andersene49d5ec2000-02-08 19:58:47 +0000282 signal(SIGINT, SIG_IGN);
283
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000284 printf("\n--- %s ping statistics ---\n", hostname);
Denis Vlasenko13858992006-10-08 12:49:22 +0000285 printf("%lu packets transmitted, ", ntransmitted);
286 printf("%lu packets received, ", nreceived);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000287 if (nrepeats)
Denis Vlasenko13858992006-10-08 12:49:22 +0000288 printf("%lu duplicates, ", nrepeats);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000289 if (ntransmitted)
Denis Vlasenkoaeb4bdd2007-01-25 00:00:02 +0000290 ntransmitted = (ntransmitted - nreceived) * 100 / ntransmitted;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000291 printf("%lu%% packet loss\n", ntransmitted);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000292 if (nreceived)
293 printf("round-trip min/avg/max = %lu.%lu/%lu.%lu/%lu.%lu ms\n",
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000294 tmin / 10, tmin % 10,
295 (tsum / (nreceived + nrepeats)) / 10,
296 (tsum / (nreceived + nrepeats)) % 10, tmax / 10, tmax % 10);
Matt Kraaib938e2f2000-09-20 04:33:30 +0000297 if (nreceived != 0)
298 status = EXIT_SUCCESS;
299 else
300 status = EXIT_FAILURE;
301 exit(status);
Eric Andersen485b9551999-12-07 23:14:59 +0000302}
303
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000304static void sendping_tail(void (*sp)(int), int sz, int sizeof_packet)
305{
306 if (sz < 0)
307 bb_perror_msg_and_die("sendto");
308 if (sz != sizeof_packet)
309 bb_error_msg_and_die("ping wrote %d chars; %d expected", sz,
310 sizeof_packet);
311
312 signal(SIGALRM, sp);
313 if (pingcount == 0 || ntransmitted < pingcount) { /* schedule next in 1s */
314 alarm(PINGINTERVAL);
315 } else { /* done, wait for the last ping to come back */
316 /* todo, don't necessarily need to wait so long... */
317 signal(SIGALRM, pingstats);
318 alarm(MAXWAIT);
319 }
320}
321
322static void sendping4(int junk ATTRIBUTE_UNUSED)
Eric Andersen485b9551999-12-07 23:14:59 +0000323{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000324 struct icmp *pkt;
325 int i;
Rob Landley07a637d2006-04-01 17:28:11 +0000326 char packet[datalen + ICMP_MINLEN];
Eric Andersen485b9551999-12-07 23:14:59 +0000327
Erik Andersene49d5ec2000-02-08 19:58:47 +0000328 pkt = (struct icmp *) packet;
Eric Andersen485b9551999-12-07 23:14:59 +0000329
Erik Andersene49d5ec2000-02-08 19:58:47 +0000330 pkt->icmp_type = ICMP_ECHO;
331 pkt->icmp_code = 0;
332 pkt->icmp_cksum = 0;
Denis Vlasenko919c10d2007-01-03 22:14:18 +0000333 pkt->icmp_seq = htons(ntransmitted); /* don't ++ here, it can be a macro */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000334 pkt->icmp_id = myid;
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000335 CLR((uint16_t)ntransmitted % MAX_DUP_CHK);
Denis Vlasenko919c10d2007-01-03 22:14:18 +0000336 ntransmitted++;
Eric Andersen485b9551999-12-07 23:14:59 +0000337
Rob Landleybbf4e162006-01-11 03:44:11 +0000338 gettimeofday((struct timeval *) &pkt->icmp_dun, NULL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000339 pkt->icmp_cksum = in_cksum((unsigned short *) pkt, sizeof(packet));
Eric Andersen485b9551999-12-07 23:14:59 +0000340
Erik Andersene49d5ec2000-02-08 19:58:47 +0000341 i = sendto(pingsock, packet, sizeof(packet), 0,
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000342 &pingaddr.sa, sizeof(pingaddr.sin));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000343
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000344 sendping_tail(sendping4, i, sizeof(packet));
Eric Andersen485b9551999-12-07 23:14:59 +0000345}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000346#if ENABLE_PING6
347static void sendping6(int junk ATTRIBUTE_UNUSED)
348{
349 struct icmp6_hdr *pkt;
350 int i;
351 char packet[datalen + sizeof (struct icmp6_hdr)];
352
353 pkt = (struct icmp6_hdr *) packet;
354
355 pkt->icmp6_type = ICMP6_ECHO_REQUEST;
356 pkt->icmp6_code = 0;
357 pkt->icmp6_cksum = 0;
358 pkt->icmp6_seq = htons(ntransmitted); /* don't ++ here, it can be a macro */
359 pkt->icmp6_id = myid;
360 CLR((uint16_t)ntransmitted % MAX_DUP_CHK);
361 ntransmitted++;
362
363 gettimeofday((struct timeval *) &pkt->icmp6_data8[4], NULL);
364
365 i = sendto(pingsock, packet, sizeof(packet), 0,
366 &pingaddr.sa, sizeof(pingaddr.sin6));
367
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000368 sendping_tail(sendping6, i, sizeof(packet));
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000369}
370#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000371
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000372static const char *icmp_type_name(int id)
Erik Andersen227a59b2000-04-25 23:24:55 +0000373{
374 switch (id) {
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000375 case ICMP_ECHOREPLY: return "Echo Reply";
376 case ICMP_DEST_UNREACH: return "Destination Unreachable";
377 case ICMP_SOURCE_QUENCH: return "Source Quench";
378 case ICMP_REDIRECT: return "Redirect (change route)";
379 case ICMP_ECHO: return "Echo Request";
380 case ICMP_TIME_EXCEEDED: return "Time Exceeded";
381 case ICMP_PARAMETERPROB: return "Parameter Problem";
382 case ICMP_TIMESTAMP: return "Timestamp Request";
383 case ICMP_TIMESTAMPREPLY: return "Timestamp Reply";
384 case ICMP_INFO_REQUEST: return "Information Request";
385 case ICMP_INFO_REPLY: return "Information Reply";
386 case ICMP_ADDRESS: return "Address Mask Request";
387 case ICMP_ADDRESSREPLY: return "Address Mask Reply";
388 default: return "unknown ICMP type";
Erik Andersen227a59b2000-04-25 23:24:55 +0000389 }
390}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000391#if ENABLE_PING6
392/* RFC3542 changed some definitions from RFC2292 for no good reason, whee!
393 * the newer 3542 uses a MLD_ prefix where as 2292 uses ICMP6_ prefix */
394#ifndef MLD_LISTENER_QUERY
395# define MLD_LISTENER_QUERY ICMP6_MEMBERSHIP_QUERY
396#endif
397#ifndef MLD_LISTENER_REPORT
398# define MLD_LISTENER_REPORT ICMP6_MEMBERSHIP_REPORT
399#endif
400#ifndef MLD_LISTENER_REDUCTION
401# define MLD_LISTENER_REDUCTION ICMP6_MEMBERSHIP_REDUCTION
402#endif
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000403static const char *icmp6_type_name(int id)
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000404{
405 switch (id) {
406 case ICMP6_DST_UNREACH: return "Destination Unreachable";
407 case ICMP6_PACKET_TOO_BIG: return "Packet too big";
408 case ICMP6_TIME_EXCEEDED: return "Time Exceeded";
409 case ICMP6_PARAM_PROB: return "Parameter Problem";
410 case ICMP6_ECHO_REPLY: return "Echo Reply";
411 case ICMP6_ECHO_REQUEST: return "Echo Request";
412 case MLD_LISTENER_QUERY: return "Listener Query";
413 case MLD_LISTENER_REPORT: return "Listener Report";
414 case MLD_LISTENER_REDUCTION: return "Listener Reduction";
415 default: return "unknown ICMP type";
416 }
417}
418#endif
Erik Andersen227a59b2000-04-25 23:24:55 +0000419
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000420static void unpack4(char *buf, int sz, struct sockaddr_in *from)
Eric Andersen485b9551999-12-07 23:14:59 +0000421{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000422 struct icmp *icmppkt;
423 struct iphdr *iphdr;
424 struct timeval tv, *tp;
425 int hlen, dupflag;
426 unsigned long triptime;
Eric Andersen485b9551999-12-07 23:14:59 +0000427
Erik Andersene49d5ec2000-02-08 19:58:47 +0000428 gettimeofday(&tv, NULL);
Eric Andersen485b9551999-12-07 23:14:59 +0000429
Erik Andersene49d5ec2000-02-08 19:58:47 +0000430 /* discard if too short */
Pavel Roskin0024abc2000-06-07 20:38:15 +0000431 if (sz < (datalen + ICMP_MINLEN))
Erik Andersene49d5ec2000-02-08 19:58:47 +0000432 return;
Eric Andersen485b9551999-12-07 23:14:59 +0000433
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000434 /* check IP header */
435 iphdr = (struct iphdr *) buf;
436 hlen = iphdr->ihl << 2;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000437 sz -= hlen;
438 icmppkt = (struct icmp *) (buf + hlen);
Erik Andersen227a59b2000-04-25 23:24:55 +0000439 if (icmppkt->icmp_id != myid)
Denis Vlasenkocb6874c2006-09-02 16:13:36 +0000440 return; /* not our ping */
Erik Andersen227a59b2000-04-25 23:24:55 +0000441
Erik Andersene49d5ec2000-02-08 19:58:47 +0000442 if (icmppkt->icmp_type == ICMP_ECHOREPLY) {
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000443 uint16_t recv_seq = ntohs(icmppkt->icmp_seq);
Denis Vlasenkocb6874c2006-09-02 16:13:36 +0000444 ++nreceived;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000445 tp = (struct timeval *) icmppkt->icmp_data;
446
447 if ((tv.tv_usec -= tp->tv_usec) < 0) {
448 --tv.tv_sec;
449 tv.tv_usec += 1000000;
450 }
451 tv.tv_sec -= tp->tv_sec;
452
453 triptime = tv.tv_sec * 10000 + (tv.tv_usec / 100);
454 tsum += triptime;
455 if (triptime < tmin)
456 tmin = triptime;
457 if (triptime > tmax)
458 tmax = triptime;
459
Mike Frysinger887a1ad2005-09-15 01:32:48 +0000460 if (TST(recv_seq % MAX_DUP_CHK)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000461 ++nrepeats;
462 --nreceived;
463 dupflag = 1;
464 } else {
Mike Frysinger887a1ad2005-09-15 01:32:48 +0000465 SET(recv_seq % MAX_DUP_CHK);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000466 dupflag = 0;
467 }
468
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000469 if (option_mask32 & OPT_QUIET)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000470 return;
471
472 printf("%d bytes from %s: icmp_seq=%u", sz,
473 inet_ntoa(*(struct in_addr *) &from->sin_addr.s_addr),
Mike Frysinger887a1ad2005-09-15 01:32:48 +0000474 recv_seq);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000475 printf(" ttl=%d", iphdr->ttl);
476 printf(" time=%lu.%lu ms", triptime / 10, triptime % 10);
477 if (dupflag)
478 printf(" (DUP!)");
Denis Vlasenkoc6f188d2006-10-26 00:37:00 +0000479 puts("");
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000480 } else {
Erik Andersen227a59b2000-04-25 23:24:55 +0000481 if (icmppkt->icmp_type != ICMP_ECHO)
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000482 bb_error_msg("warning: got ICMP %d (%s)",
Denis Vlasenko44c2eb22007-01-08 23:55:33 +0000483 icmppkt->icmp_type,
484 icmp_type_name(icmppkt->icmp_type));
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000485 }
Rob Landley42eddba2005-12-15 08:04:17 +0000486 fflush(stdout);
Eric Andersen485b9551999-12-07 23:14:59 +0000487}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000488#if ENABLE_PING6
489static void unpack6(char *packet, int sz, struct sockaddr_in6 *from, int hoplimit)
490{
491 struct icmp6_hdr *icmppkt;
492 struct timeval tv, *tp;
493 int dupflag;
494 unsigned long triptime;
495 char buf[INET6_ADDRSTRLEN];
Eric Andersen485b9551999-12-07 23:14:59 +0000496
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000497 gettimeofday(&tv, NULL);
498
499 /* discard if too short */
500 if (sz < (datalen + sizeof(struct icmp6_hdr)))
501 return;
502
503 icmppkt = (struct icmp6_hdr *) packet;
504 if (icmppkt->icmp6_id != myid)
505 return; /* not our ping */
506
507 if (icmppkt->icmp6_type == ICMP6_ECHO_REPLY) {
508 uint16_t recv_seq = ntohs(icmppkt->icmp6_seq);
509 ++nreceived;
510 tp = (struct timeval *) &icmppkt->icmp6_data8[4];
511
512 if ((tv.tv_usec -= tp->tv_usec) < 0) {
513 --tv.tv_sec;
514 tv.tv_usec += 1000000;
515 }
516 tv.tv_sec -= tp->tv_sec;
517
518 triptime = tv.tv_sec * 10000 + (tv.tv_usec / 100);
519 tsum += triptime;
520 if (triptime < tmin)
521 tmin = triptime;
522 if (triptime > tmax)
523 tmax = triptime;
524
525 if (TST(recv_seq % MAX_DUP_CHK)) {
526 ++nrepeats;
527 --nreceived;
528 dupflag = 1;
529 } else {
530 SET(recv_seq % MAX_DUP_CHK);
531 dupflag = 0;
532 }
533
534 if (option_mask32 & OPT_QUIET)
535 return;
536
537 printf("%d bytes from %s: icmp6_seq=%u", sz,
538 inet_ntop(AF_INET6, &pingaddr.sin6.sin6_addr,
539 buf, sizeof(buf)),
540 recv_seq);
541 printf(" ttl=%d time=%lu.%lu ms", hoplimit,
542 triptime / 10, triptime % 10);
543 if (dupflag)
544 printf(" (DUP!)");
545 puts("");
546 } else {
547 if (icmppkt->icmp6_type != ICMP6_ECHO_REQUEST)
548 bb_error_msg("warning: got ICMP %d (%s)",
549 icmppkt->icmp6_type,
550 icmp6_type_name(icmppkt->icmp6_type));
551 }
552 fflush(stdout);
553}
554#endif
555
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000556static void ping4(len_and_sockaddr *lsa)
Eric Andersen485b9551999-12-07 23:14:59 +0000557{
Pavel Roskin0024abc2000-06-07 20:38:15 +0000558 char packet[datalen + MAXIPLEN + MAXICMPLEN];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000559 int sockopt;
560
Matt Kraai06ef1652001-07-13 20:56:27 +0000561 pingsock = create_icmp_socket();
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000562 pingaddr.sin = lsa->sin;
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000563 if (sourceaddr.sin_addr.s_addr) {
Denis Vlasenkobcf49082006-09-02 17:53:16 +0000564 xbind(pingsock, (struct sockaddr*)&sourceaddr, sizeof(sourceaddr));
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000565 }
566
Erik Andersene49d5ec2000-02-08 19:58:47 +0000567 /* enable broadcast pings */
Denis Vlasenko48237b02006-11-22 23:22:06 +0000568 setsockopt_broadcast(pingsock);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000569
570 /* set recv buf for broadcast pings */
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000571 sockopt = 48 * 1024; /* explain why 48k? */
Denis Vlasenko703e2022007-01-22 14:12:08 +0000572 setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, &sockopt, sizeof(sockopt));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000573
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000574 printf("PING %s (%s)", hostname, dotted);
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000575 if (sourceaddr.sin_addr.s_addr) {
576 printf(" from %s",
577 inet_ntoa(*(struct in_addr *) &sourceaddr.sin_addr.s_addr));
578 }
579 printf(": %d data bytes\n", datalen);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000580
581 signal(SIGINT, pingstats);
582
583 /* start the ping's going ... */
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000584 sendping4(0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000585
586 /* listen for replies */
587 while (1) {
588 struct sockaddr_in from;
Erik Andersen1d1d9502000-04-21 01:26:49 +0000589 socklen_t fromlen = (socklen_t) sizeof(from);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000590 int c;
591
Denis Vlasenko44c2eb22007-01-08 23:55:33 +0000592 c = recvfrom(pingsock, packet, sizeof(packet), 0,
593 (struct sockaddr *) &from, &fromlen);
594 if (c < 0) {
595 if (errno != EINTR)
596 bb_perror_msg("recvfrom");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000597 continue;
598 }
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000599 unpack4(packet, c, &from);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000600 if (pingcount > 0 && nreceived >= pingcount)
601 break;
602 }
Eric Andersen485b9551999-12-07 23:14:59 +0000603}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000604#if ENABLE_PING6
605extern int BUG_bad_offsetof_icmp6_cksum(void);
606static void ping6(len_and_sockaddr *lsa)
607{
608 char packet[datalen + MAXIPLEN + MAXICMPLEN];
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000609 int sockopt;
610 struct msghdr msg;
611 struct sockaddr_in6 from;
612 struct iovec iov;
613 char control_buf[CMSG_SPACE(36)];
614
615 pingsock = create_icmp6_socket();
616 pingaddr.sin6 = lsa->sin6;
617 //if (sourceaddr.sin_addr.s_addr) {
618 // xbind(pingsock, (struct sockaddr*)&sourceaddr, sizeof(sourceaddr));
619 //}
620
621#ifdef ICMP6_FILTER
622 {
623 struct icmp6_filter filt;
624 if (!(option_mask32 & OPT_VERBOSE)) {
625 ICMP6_FILTER_SETBLOCKALL(&filt);
626 ICMP6_FILTER_SETPASS(ICMP6_ECHO_REPLY, &filt);
627 } else {
628 ICMP6_FILTER_SETPASSALL(&filt);
629 }
630 if (setsockopt(pingsock, IPPROTO_ICMPV6, ICMP6_FILTER, &filt,
631 sizeof(filt)) < 0)
632 bb_error_msg_and_die("setsockopt(ICMP6_FILTER)");
633 }
634#endif /*ICMP6_FILTER*/
635
636 /* enable broadcast pings */
637 setsockopt_broadcast(pingsock);
638
639 /* set recv buf for broadcast pings */
640 sockopt = 48 * 1024; /* explain why 48k? */
641 setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, &sockopt, sizeof(sockopt));
642
643 sockopt = offsetof(struct icmp6_hdr, icmp6_cksum);
644 if (offsetof(struct icmp6_hdr, icmp6_cksum) != 2)
645 BUG_bad_offsetof_icmp6_cksum();
646 setsockopt(pingsock, SOL_RAW, IPV6_CHECKSUM, &sockopt, sizeof(sockopt));
647
648 /* request ttl info to be returned in ancillary data */
649 setsockopt(pingsock, SOL_IPV6, IPV6_HOPLIMIT, &const_int_1, sizeof(const_int_1));
650
651 if (if_index)
Denis Vlasenkoaeb4bdd2007-01-25 00:00:02 +0000652 pingaddr.sin6.sin6_scope_id = if_index;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000653
654 printf("PING %s (%s): %d data bytes\n", hostname, dotted, datalen);
655
656 signal(SIGINT, pingstats);
657
658 /* start the ping's going ... */
659 sendping6(0);
660
661 /* listen for replies */
662 msg.msg_name = &from;
663 msg.msg_namelen = sizeof(from);
664 msg.msg_iov = &iov;
665 msg.msg_iovlen = 1;
666 msg.msg_control = control_buf;
667 iov.iov_base = packet;
668 iov.iov_len = sizeof(packet);
669 while (1) {
670 int c;
671 struct cmsghdr *mp;
672 int hoplimit = -1;
673 msg.msg_controllen = sizeof(control_buf);
674
675 c = recvmsg(pingsock, &msg, 0);
676 if (c < 0) {
677 if (errno != EINTR)
678 bb_perror_msg("recvfrom");
679 continue;
680 }
681 for (mp = CMSG_FIRSTHDR(&msg); mp; mp = CMSG_NXTHDR(&msg, mp)) {
682 if (mp->cmsg_level == SOL_IPV6
683 && mp->cmsg_type == IPV6_HOPLIMIT
684 /* don't check len - we trust the kernel: */
685 /* && mp->cmsg_len >= CMSG_LEN(sizeof(int)) */
686 ) {
687 hoplimit = *(int*)CMSG_DATA(mp);
688 }
689 }
690 unpack6(packet, c, &from, hoplimit);
691 if (pingcount > 0 && nreceived >= pingcount)
692 break;
693 }
694}
695#endif
Eric Andersen485b9551999-12-07 23:14:59 +0000696
Denis Vlasenko2cbe6e62006-09-02 16:17:30 +0000697/* TODO: consolidate ether-wake.c, dnsd.c, ifupdown.c, nslookup.c
698 * versions of below thing. BTW we have far too many "%u.%u.%u.%u" too...
699*/
700static int parse_nipquad(const char *str, struct sockaddr_in* addr)
701{
702 char dummy;
703 unsigned i1, i2, i3, i4;
704 if (sscanf(str, "%u.%u.%u.%u%c",
705 &i1, &i2, &i3, &i4, &dummy) == 4
706 && ( (i1|i2|i3|i4) <= 0xff )
707 ) {
708 uint8_t* ptr = (uint8_t*)&addr->sin_addr;
709 ptr[0] = i1;
710 ptr[1] = i2;
711 ptr[2] = i3;
712 ptr[3] = i4;
713 return 0;
714 }
715 return 1; /* error */
716}
717
Rob Landleydfba7412006-03-06 20:47:33 +0000718int ping_main(int argc, char **argv)
Eric Andersen485b9551999-12-07 23:14:59 +0000719{
Denis Vlasenkoaeb4bdd2007-01-25 00:00:02 +0000720 len_and_sockaddr *lsa;
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000721 char *opt_c, *opt_s, *opt_I;
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000722 USE_PING6(sa_family_t af = AF_UNSPEC;)
Eric Andersen485b9551999-12-07 23:14:59 +0000723
Mark Whitley59ab0252001-01-23 22:30:04 +0000724 datalen = DEFDATALEN; /* initialized here rather than in global scope to work around gcc bug */
725
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000726 /* exactly one argument needed, -v and -q don't mix */
Denis Vlasenko581930c2007-01-24 23:55:34 +0000727 opt_complementary = "=1:q--v:v--q";
Denis Vlasenko4a5cf162006-11-20 00:48:22 +0000728 getopt32(argc, argv, OPT_STRING, &opt_c, &opt_s, &opt_I);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000729 if (option_mask32 & OPT_c) pingcount = xatoul(opt_c); // -c
730 if (option_mask32 & OPT_s) datalen = xatou16(opt_s); // -s
731 if (option_mask32 & OPT_I) { // -I
732 if_index = if_nametoindex(opt_I);
733 if (!if_index)
734 if (parse_nipquad(opt_I, &sourceaddr))
735 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000736 }
Denis Vlasenkodb7f2e52006-09-02 16:16:23 +0000737 myid = (int16_t) getpid();
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000738 hostname = argv[optind];
739#if ENABLE_PING6
740 if (option_mask32 & OPT_IPV4)
741 af = AF_INET;
742 if (option_mask32 & OPT_IPV6)
743 af = AF_INET6;
744 lsa = host_and_af2sockaddr(hostname, 0, af);
745#else
746 lsa = host_and_af2sockaddr(hostname, 0, AF_INET);
747#endif
Denis Vlasenkoaeb4bdd2007-01-25 00:00:02 +0000748 dotted = xmalloc_sockaddr2dotted_noport(&lsa->sa, lsa->len);
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000749#if ENABLE_PING6
750 if (lsa->sa.sa_family == AF_INET6)
751 ping6(lsa);
752 else
753#endif
Denis Vlasenkoe9356022007-01-29 18:03:54 +0000754 ping4(lsa);
Denis Vlasenkoaeb4bdd2007-01-25 00:00:02 +0000755 pingstats(0);
Eric Andersene90e7412002-06-06 11:47:00 +0000756 return EXIT_SUCCESS;
Eric Andersen485b9551999-12-07 23:14:59 +0000757}
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000758#endif /* FEATURE_FANCY_PING */
759
760
761#if ENABLE_PING6
762int ping6_main(int argc, char **argv)
763{
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000764 argv[0] = (char*)"-6";
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000765 return ping_main(argc + 1, argv - 1);
766}
767#endif
768
769/* from ping6.c:
770 * Copyright (c) 1989 The Regents of the University of California.
771 * All rights reserved.
772 *
773 * This code is derived from software contributed to Berkeley by
774 * Mike Muuss.
775 *
776 * Redistribution and use in source and binary forms, with or without
777 * modification, are permitted provided that the following conditions
778 * are met:
779 * 1. Redistributions of source code must retain the above copyright
780 * notice, this list of conditions and the following disclaimer.
781 * 2. Redistributions in binary form must reproduce the above copyright
782 * notice, this list of conditions and the following disclaimer in the
783 * documentation and/or other materials provided with the distribution.
784 *
785 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
786 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
787 *
788 * 4. Neither the name of the University nor the names of its contributors
789 * may be used to endorse or promote products derived from this software
790 * without specific prior written permission.
791 *
792 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
793 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
794 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
795 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
796 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
797 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
798 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
799 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
800 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
801 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
802 * SUCH DAMAGE.
803 */