*: remove "Options:" string from help texts
[oweals/busybox.git] / networking / ping.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini ping implementation for busybox
4  *
5  * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
6  *
7  * Adapted from the ping in netkit-base 0.10:
8  * Copyright (c) 1989 The Regents of the University of California.
9  * All rights reserved.
10  *
11  * This code is derived from software contributed to Berkeley by
12  * Mike Muuss.
13  *
14  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
15  */
16 /* 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  */
27
28 #include <net/if.h>
29 #include <netinet/ip_icmp.h>
30 #include "libbb.h"
31
32 //config:config PING
33 //config:       bool "ping"
34 //config:       default y
35 //config:       select 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 /* Needs socket(AF_INET, SOCK_RAW, IPPROTO_ICMP), therefore BB_SUID_MAYBE: */
56 //applet:IF_PING(APPLET(ping, BB_DIR_BIN, BB_SUID_MAYBE))
57 //applet:IF_PING6(APPLET(ping6, BB_DIR_BIN, BB_SUID_MAYBE))
58
59 //kbuild:lib-$(CONFIG_PING)  += ping.o
60 //kbuild:lib-$(CONFIG_PING6) += ping.o
61
62 //usage:#if !ENABLE_FEATURE_FANCY_PING
63 //usage:# define ping_trivial_usage
64 //usage:       "HOST"
65 //usage:# define ping_full_usage "\n\n"
66 //usage:       "Send ICMP ECHO_REQUEST packets to network hosts"
67 //usage:# define ping6_trivial_usage
68 //usage:       "HOST"
69 //usage:# define ping6_full_usage "\n\n"
70 //usage:       "Send ICMP ECHO_REQUEST packets to network hosts"
71 //usage:#else
72 //usage:# define ping_trivial_usage
73 //usage:       "[OPTIONS] HOST"
74 //usage:# define ping_full_usage "\n\n"
75 //usage:       "Send ICMP ECHO_REQUEST packets to network hosts\n"
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:     "\n        -c CNT          Send only CNT pings"
93 //usage:     "\n        -s SIZE         Send SIZE data bytes in packets (default:56)"
94 //usage:     "\n        -I IFACE/IP     Use interface or IP address as source"
95 //usage:     "\n        -q              Quiet, only displays output at start"
96 //usage:     "\n                        and when finished"
97 //usage:
98 //usage:#endif
99 //usage:
100 //usage:#define ping_example_usage
101 //usage:       "$ ping localhost\n"
102 //usage:       "PING slag (127.0.0.1): 56 data bytes\n"
103 //usage:       "64 bytes from 127.0.0.1: icmp_seq=0 ttl=255 time=20.1 ms\n"
104 //usage:       "\n"
105 //usage:       "--- debian ping statistics ---\n"
106 //usage:       "1 packets transmitted, 1 packets received, 0% packet loss\n"
107 //usage:       "round-trip min/avg/max = 20.1/20.1/20.1 ms\n"
108 //usage:#define ping6_example_usage
109 //usage:       "$ ping6 ip6-localhost\n"
110 //usage:       "PING ip6-localhost (::1): 56 data bytes\n"
111 //usage:       "64 bytes from ::1: icmp6_seq=0 ttl=64 time=20.1 ms\n"
112 //usage:       "\n"
113 //usage:       "--- ip6-localhost ping statistics ---\n"
114 //usage:       "1 packets transmitted, 1 packets received, 0% packet loss\n"
115 //usage:       "round-trip min/avg/max = 20.1/20.1/20.1 ms\n"
116
117 #if ENABLE_PING6
118 # include <netinet/icmp6.h>
119 /* I see RENUMBERED constants in bits/in.h - !!?
120  * What a fuck is going on with libc? Is it a glibc joke? */
121 # ifdef IPV6_2292HOPLIMIT
122 #  undef IPV6_HOPLIMIT
123 #  define IPV6_HOPLIMIT IPV6_2292HOPLIMIT
124 # endif
125 #endif
126
127 enum {
128         DEFDATALEN = 56,
129         MAXIPLEN = 60,
130         MAXICMPLEN = 76,
131         MAX_DUP_CHK = (8 * 128),
132         MAXWAIT = 10,
133         PINGINTERVAL = 1, /* 1 second */
134 };
135
136 /* Common routines */
137
138 static int in_cksum(unsigned short *buf, int sz)
139 {
140         int nleft = sz;
141         int sum = 0;
142         unsigned short *w = buf;
143         unsigned short ans = 0;
144
145         while (nleft > 1) {
146                 sum += *w++;
147                 nleft -= 2;
148         }
149
150         if (nleft == 1) {
151                 *(unsigned char *) (&ans) = *(unsigned char *) w;
152                 sum += ans;
153         }
154
155         sum = (sum >> 16) + (sum & 0xFFFF);
156         sum += (sum >> 16);
157         ans = ~sum;
158         return ans;
159 }
160
161 #if !ENABLE_FEATURE_FANCY_PING
162
163 /* Simple version */
164
165 struct globals {
166         char *hostname;
167         char packet[DEFDATALEN + MAXIPLEN + MAXICMPLEN];
168 } FIX_ALIASING;
169 #define G (*(struct globals*)&bb_common_bufsiz1)
170 #define INIT_G() do { } while (0)
171
172 static void noresp(int ign UNUSED_PARAM)
173 {
174         printf("No response from %s\n", G.hostname);
175         exit(EXIT_FAILURE);
176 }
177
178 static void ping4(len_and_sockaddr *lsa)
179 {
180         struct icmp *pkt;
181         int pingsock, c;
182
183         pingsock = create_icmp_socket();
184
185         pkt = (struct icmp *) G.packet;
186         memset(pkt, 0, sizeof(G.packet));
187         pkt->icmp_type = ICMP_ECHO;
188         pkt->icmp_cksum = in_cksum((unsigned short *) pkt, sizeof(G.packet));
189
190         xsendto(pingsock, G.packet, DEFDATALEN + ICMP_MINLEN, &lsa->u.sa, lsa->len);
191
192         /* listen for replies */
193         while (1) {
194                 struct sockaddr_in from;
195                 socklen_t fromlen = sizeof(from);
196
197                 c = recvfrom(pingsock, G.packet, sizeof(G.packet), 0,
198                                 (struct sockaddr *) &from, &fromlen);
199                 if (c < 0) {
200                         if (errno != EINTR)
201                                 bb_perror_msg("recvfrom");
202                         continue;
203                 }
204                 if (c >= 76) {                  /* ip + icmp */
205                         struct iphdr *iphdr = (struct iphdr *) G.packet;
206
207                         pkt = (struct icmp *) (G.packet + (iphdr->ihl << 2));   /* skip ip hdr */
208                         if (pkt->icmp_type == ICMP_ECHOREPLY)
209                                 break;
210                 }
211         }
212         if (ENABLE_FEATURE_CLEAN_UP)
213                 close(pingsock);
214 }
215
216 #if ENABLE_PING6
217 static void ping6(len_and_sockaddr *lsa)
218 {
219         struct icmp6_hdr *pkt;
220         int pingsock, c;
221         int sockopt;
222
223         pingsock = create_icmp6_socket();
224
225         pkt = (struct icmp6_hdr *) G.packet;
226         memset(pkt, 0, sizeof(G.packet));
227         pkt->icmp6_type = ICMP6_ECHO_REQUEST;
228
229         sockopt = offsetof(struct icmp6_hdr, icmp6_cksum);
230         setsockopt(pingsock, SOL_RAW, IPV6_CHECKSUM, &sockopt, sizeof(sockopt));
231
232         xsendto(pingsock, G.packet, DEFDATALEN + sizeof(struct icmp6_hdr), &lsa->u.sa, lsa->len);
233
234         /* listen for replies */
235         while (1) {
236                 struct sockaddr_in6 from;
237                 socklen_t fromlen = sizeof(from);
238
239                 c = recvfrom(pingsock, G.packet, sizeof(G.packet), 0,
240                                 (struct sockaddr *) &from, &fromlen);
241                 if (c < 0) {
242                         if (errno != EINTR)
243                                 bb_perror_msg("recvfrom");
244                         continue;
245                 }
246                 if (c >= ICMP_MINLEN) {                 /* icmp6_hdr */
247                         pkt = (struct icmp6_hdr *) G.packet;
248                         if (pkt->icmp6_type == ICMP6_ECHO_REPLY)
249                                 break;
250                 }
251         }
252         if (ENABLE_FEATURE_CLEAN_UP)
253                 close(pingsock);
254 }
255 #endif
256
257 #if !ENABLE_PING6
258 # define common_ping_main(af, argv) common_ping_main(argv)
259 #endif
260 static int common_ping_main(sa_family_t af, char **argv)
261 {
262         len_and_sockaddr *lsa;
263
264         INIT_G();
265
266 #if ENABLE_PING6
267         while ((++argv)[0] && argv[0][0] == '-') {
268                 if (argv[0][1] == '4') {
269                         af = AF_INET;
270                         continue;
271                 }
272                 if (argv[0][1] == '6') {
273                         af = AF_INET6;
274                         continue;
275                 }
276                 bb_show_usage();
277         }
278 #else
279         argv++;
280 #endif
281
282         G.hostname = *argv;
283         if (!G.hostname)
284                 bb_show_usage();
285
286 #if ENABLE_PING6
287         lsa = xhost_and_af2sockaddr(G.hostname, 0, af);
288 #else
289         lsa = xhost_and_af2sockaddr(G.hostname, 0, AF_INET);
290 #endif
291         /* Set timer _after_ DNS resolution */
292         signal(SIGALRM, noresp);
293         alarm(5); /* give the host 5000ms to respond */
294
295 #if ENABLE_PING6
296         if (lsa->u.sa.sa_family == AF_INET6)
297                 ping6(lsa);
298         else
299 #endif
300                 ping4(lsa);
301         printf("%s is alive!\n", G.hostname);
302         return EXIT_SUCCESS;
303 }
304
305
306 #else /* FEATURE_FANCY_PING */
307
308
309 /* Full(er) version */
310
311 #define OPT_STRING ("qvc:s:t:w:W:I:4" IF_PING6("6"))
312 enum {
313         OPT_QUIET = 1 << 0,
314         OPT_VERBOSE = 1 << 1,
315         OPT_c = 1 << 2,
316         OPT_s = 1 << 3,
317         OPT_t = 1 << 4,
318         OPT_w = 1 << 5,
319         OPT_W = 1 << 6,
320         OPT_I = 1 << 7,
321         OPT_IPV4 = 1 << 8,
322         OPT_IPV6 = (1 << 9) * ENABLE_PING6,
323 };
324
325
326 struct globals {
327         int pingsock;
328         int if_index;
329         char *str_I;
330         len_and_sockaddr *source_lsa;
331         unsigned datalen;
332         unsigned pingcount; /* must be int-sized */
333         unsigned opt_ttl;
334         unsigned long ntransmitted, nreceived, nrepeats;
335         uint16_t myid;
336         unsigned tmin, tmax; /* in us */
337         unsigned long long tsum; /* in us, sum of all times */
338         unsigned deadline;
339         unsigned timeout;
340         unsigned total_secs;
341         unsigned sizeof_rcv_packet;
342         char *rcv_packet; /* [datalen + MAXIPLEN + MAXICMPLEN] */
343         void *snd_packet; /* [datalen + ipv4/ipv6_const] */
344         const char *hostname;
345         const char *dotted;
346         union {
347                 struct sockaddr sa;
348                 struct sockaddr_in sin;
349 #if ENABLE_PING6
350                 struct sockaddr_in6 sin6;
351 #endif
352         } pingaddr;
353         char rcvd_tbl[MAX_DUP_CHK / 8];
354 } FIX_ALIASING;
355 #define G (*(struct globals*)&bb_common_bufsiz1)
356 #define pingsock     (G.pingsock    )
357 #define if_index     (G.if_index    )
358 #define source_lsa   (G.source_lsa  )
359 #define str_I        (G.str_I       )
360 #define datalen      (G.datalen     )
361 #define ntransmitted (G.ntransmitted)
362 #define nreceived    (G.nreceived   )
363 #define nrepeats     (G.nrepeats    )
364 #define pingcount    (G.pingcount   )
365 #define opt_ttl      (G.opt_ttl     )
366 #define myid         (G.myid        )
367 #define tmin         (G.tmin        )
368 #define tmax         (G.tmax        )
369 #define tsum         (G.tsum        )
370 #define deadline     (G.deadline    )
371 #define timeout      (G.timeout     )
372 #define total_secs   (G.total_secs  )
373 #define hostname     (G.hostname    )
374 #define dotted       (G.dotted      )
375 #define pingaddr     (G.pingaddr    )
376 #define rcvd_tbl     (G.rcvd_tbl    )
377 void BUG_ping_globals_too_big(void);
378 #define INIT_G() do { \
379         if (sizeof(G) > COMMON_BUFSIZE) \
380                 BUG_ping_globals_too_big(); \
381         pingsock = -1; \
382         datalen = DEFDATALEN; \
383         timeout = MAXWAIT; \
384         tmin = UINT_MAX; \
385 } while (0)
386
387
388 #define A(bit)          rcvd_tbl[(bit)>>3]      /* identify byte in array */
389 #define B(bit)          (1 << ((bit) & 0x07))   /* identify bit in byte */
390 #define SET(bit)        (A(bit) |= B(bit))
391 #define CLR(bit)        (A(bit) &= (~B(bit)))
392 #define TST(bit)        (A(bit) & B(bit))
393
394 /**************************************************************************/
395
396 static void print_stats_and_exit(int junk) NORETURN;
397 static void print_stats_and_exit(int junk UNUSED_PARAM)
398 {
399         signal(SIGINT, SIG_IGN);
400
401         printf("\n--- %s ping statistics ---\n", hostname);
402         printf("%lu packets transmitted, ", ntransmitted);
403         printf("%lu packets received, ", nreceived);
404         if (nrepeats)
405                 printf("%lu duplicates, ", nrepeats);
406         if (ntransmitted)
407                 ntransmitted = (ntransmitted - nreceived) * 100 / ntransmitted;
408         printf("%lu%% packet loss\n", ntransmitted);
409         if (tmin != UINT_MAX) {
410                 unsigned tavg = tsum / (nreceived + nrepeats);
411                 printf("round-trip min/avg/max = %u.%03u/%u.%03u/%u.%03u ms\n",
412                         tmin / 1000, tmin % 1000,
413                         tavg / 1000, tavg % 1000,
414                         tmax / 1000, tmax % 1000);
415         }
416         /* if condition is true, exit with 1 -- 'failure' */
417         exit(nreceived == 0 || (deadline && nreceived < pingcount));
418 }
419
420 static void sendping_tail(void (*sp)(int), int size_pkt)
421 {
422         int sz;
423
424         CLR((uint16_t)ntransmitted % MAX_DUP_CHK);
425         ntransmitted++;
426
427         size_pkt += datalen;
428
429         /* sizeof(pingaddr) can be larger than real sa size, but I think
430          * it doesn't matter */
431         sz = xsendto(pingsock, G.snd_packet, size_pkt, &pingaddr.sa, sizeof(pingaddr));
432         if (sz != size_pkt)
433                 bb_error_msg_and_die(bb_msg_write_error);
434
435         if (pingcount == 0 || deadline || ntransmitted < pingcount) {
436                 /* Didn't send all pings yet - schedule next in 1s */
437                 signal(SIGALRM, sp);
438                 if (deadline) {
439                         total_secs += PINGINTERVAL;
440                         if (total_secs >= deadline)
441                                 signal(SIGALRM, print_stats_and_exit);
442                 }
443                 alarm(PINGINTERVAL);
444         } else { /* -c NN, and all NN are sent (and no deadline) */
445                 /* Wait for the last ping to come back.
446                  * -W timeout: wait for a response in seconds.
447                  * Affects only timeout in absense of any responses,
448                  * otherwise ping waits for two RTTs. */
449                 unsigned expire = timeout;
450
451                 if (nreceived) {
452                         /* approx. 2*tmax, in seconds (2 RTT) */
453                         expire = tmax / (512*1024);
454                         if (expire == 0)
455                                 expire = 1;
456                 }
457                 signal(SIGALRM, print_stats_and_exit);
458                 alarm(expire);
459         }
460 }
461
462 static void sendping4(int junk UNUSED_PARAM)
463 {
464         struct icmp *pkt = G.snd_packet;
465
466         //memset(pkt, 0, datalen + ICMP_MINLEN + 4); - G.snd_packet was xzalloced
467         pkt->icmp_type = ICMP_ECHO;
468         /*pkt->icmp_code = 0;*/
469         pkt->icmp_cksum = 0; /* cksum is calculated with this field set to 0 */
470         pkt->icmp_seq = htons(ntransmitted); /* don't ++ here, it can be a macro */
471         pkt->icmp_id = myid;
472
473         /* If datalen < 4, we store timestamp _past_ the packet,
474          * but it's ok - we allocated 4 extra bytes in xzalloc() just in case.
475          */
476         /*if (datalen >= 4)*/
477                 /* No hton: we'll read it back on the same machine */
478                 *(uint32_t*)&pkt->icmp_dun = monotonic_us();
479
480         pkt->icmp_cksum = in_cksum((unsigned short *) pkt, datalen + ICMP_MINLEN);
481
482         sendping_tail(sendping4, ICMP_MINLEN);
483 }
484 #if ENABLE_PING6
485 static void sendping6(int junk UNUSED_PARAM)
486 {
487         struct icmp6_hdr *pkt = G.snd_packet;
488
489         //memset(pkt, 0, datalen + sizeof(struct icmp6_hdr) + 4);
490         pkt->icmp6_type = ICMP6_ECHO_REQUEST;
491         /*pkt->icmp6_code = 0;*/
492         /*pkt->icmp6_cksum = 0;*/
493         pkt->icmp6_seq = htons(ntransmitted); /* don't ++ here, it can be a macro */
494         pkt->icmp6_id = myid;
495
496         /*if (datalen >= 4)*/
497                 *(uint32_t*)(&pkt->icmp6_data8[4]) = monotonic_us();
498
499         //TODO? pkt->icmp_cksum = in_cksum(...);
500
501         sendping_tail(sendping6, sizeof(struct icmp6_hdr));
502 }
503 #endif
504
505 static const char *icmp_type_name(int id)
506 {
507         switch (id) {
508         case ICMP_ECHOREPLY:      return "Echo Reply";
509         case ICMP_DEST_UNREACH:   return "Destination Unreachable";
510         case ICMP_SOURCE_QUENCH:  return "Source Quench";
511         case ICMP_REDIRECT:       return "Redirect (change route)";
512         case ICMP_ECHO:           return "Echo Request";
513         case ICMP_TIME_EXCEEDED:  return "Time Exceeded";
514         case ICMP_PARAMETERPROB:  return "Parameter Problem";
515         case ICMP_TIMESTAMP:      return "Timestamp Request";
516         case ICMP_TIMESTAMPREPLY: return "Timestamp Reply";
517         case ICMP_INFO_REQUEST:   return "Information Request";
518         case ICMP_INFO_REPLY:     return "Information Reply";
519         case ICMP_ADDRESS:        return "Address Mask Request";
520         case ICMP_ADDRESSREPLY:   return "Address Mask Reply";
521         default:                  return "unknown ICMP type";
522         }
523 }
524 #if ENABLE_PING6
525 /* RFC3542 changed some definitions from RFC2292 for no good reason, whee!
526  * the newer 3542 uses a MLD_ prefix where as 2292 uses ICMP6_ prefix */
527 #ifndef MLD_LISTENER_QUERY
528 # define MLD_LISTENER_QUERY ICMP6_MEMBERSHIP_QUERY
529 #endif
530 #ifndef MLD_LISTENER_REPORT
531 # define MLD_LISTENER_REPORT ICMP6_MEMBERSHIP_REPORT
532 #endif
533 #ifndef MLD_LISTENER_REDUCTION
534 # define MLD_LISTENER_REDUCTION ICMP6_MEMBERSHIP_REDUCTION
535 #endif
536 static const char *icmp6_type_name(int id)
537 {
538         switch (id) {
539         case ICMP6_DST_UNREACH:      return "Destination Unreachable";
540         case ICMP6_PACKET_TOO_BIG:   return "Packet too big";
541         case ICMP6_TIME_EXCEEDED:    return "Time Exceeded";
542         case ICMP6_PARAM_PROB:       return "Parameter Problem";
543         case ICMP6_ECHO_REPLY:       return "Echo Reply";
544         case ICMP6_ECHO_REQUEST:     return "Echo Request";
545         case MLD_LISTENER_QUERY:     return "Listener Query";
546         case MLD_LISTENER_REPORT:    return "Listener Report";
547         case MLD_LISTENER_REDUCTION: return "Listener Reduction";
548         default:                     return "unknown ICMP type";
549         }
550 }
551 #endif
552
553 static void unpack_tail(int sz, uint32_t *tp,
554                 const char *from_str,
555                 uint16_t recv_seq, int ttl)
556 {
557         const char *dupmsg = " (DUP!)";
558         unsigned triptime = triptime; /* for gcc */
559
560         ++nreceived;
561
562         if (tp) {
563                 /* (int32_t) cast is for hypothetical 64-bit unsigned */
564                 /* (doesn't hurt 32-bit real-world anyway) */
565                 triptime = (int32_t) ((uint32_t)monotonic_us() - *tp);
566                 tsum += triptime;
567                 if (triptime < tmin)
568                         tmin = triptime;
569                 if (triptime > tmax)
570                         tmax = triptime;
571         }
572
573         if (TST(recv_seq % MAX_DUP_CHK)) {
574                 ++nrepeats;
575                 --nreceived;
576         } else {
577                 SET(recv_seq % MAX_DUP_CHK);
578                 dupmsg += 7;
579         }
580
581         if (option_mask32 & OPT_QUIET)
582                 return;
583
584         printf("%d bytes from %s: seq=%u ttl=%d", sz,
585                 from_str, recv_seq, ttl);
586         if (tp)
587                 printf(" time=%u.%03u ms", triptime / 1000, triptime % 1000);
588         puts(dupmsg);
589         fflush_all();
590 }
591 static void unpack4(char *buf, int sz, struct sockaddr_in *from)
592 {
593         struct icmp *icmppkt;
594         struct iphdr *iphdr;
595         int hlen;
596
597         /* discard if too short */
598         if (sz < (datalen + ICMP_MINLEN))
599                 return;
600
601         /* check IP header */
602         iphdr = (struct iphdr *) buf;
603         hlen = iphdr->ihl << 2;
604         sz -= hlen;
605         icmppkt = (struct icmp *) (buf + hlen);
606         if (icmppkt->icmp_id != myid)
607                 return;                         /* not our ping */
608
609         if (icmppkt->icmp_type == ICMP_ECHOREPLY) {
610                 uint16_t recv_seq = ntohs(icmppkt->icmp_seq);
611                 uint32_t *tp = NULL;
612
613                 if (sz >= ICMP_MINLEN + sizeof(uint32_t))
614                         tp = (uint32_t *) icmppkt->icmp_data;
615                 unpack_tail(sz, tp,
616                         inet_ntoa(*(struct in_addr *) &from->sin_addr.s_addr),
617                         recv_seq, iphdr->ttl);
618         } else if (icmppkt->icmp_type != ICMP_ECHO) {
619                 bb_error_msg("warning: got ICMP %d (%s)",
620                                 icmppkt->icmp_type,
621                                 icmp_type_name(icmppkt->icmp_type));
622         }
623 }
624 #if ENABLE_PING6
625 static void unpack6(char *packet, int sz, /*struct sockaddr_in6 *from,*/ int hoplimit)
626 {
627         struct icmp6_hdr *icmppkt;
628         char buf[INET6_ADDRSTRLEN];
629
630         /* discard if too short */
631         if (sz < (datalen + sizeof(struct icmp6_hdr)))
632                 return;
633
634         icmppkt = (struct icmp6_hdr *) packet;
635         if (icmppkt->icmp6_id != myid)
636                 return;                         /* not our ping */
637
638         if (icmppkt->icmp6_type == ICMP6_ECHO_REPLY) {
639                 uint16_t recv_seq = ntohs(icmppkt->icmp6_seq);
640                 uint32_t *tp = NULL;
641
642                 if (sz >= sizeof(struct icmp6_hdr) + sizeof(uint32_t))
643                         tp = (uint32_t *) &icmppkt->icmp6_data8[4];
644                 unpack_tail(sz, tp,
645                         inet_ntop(AF_INET6, &pingaddr.sin6.sin6_addr,
646                                         buf, sizeof(buf)),
647                         recv_seq, hoplimit);
648         } else if (icmppkt->icmp6_type != ICMP6_ECHO_REQUEST) {
649                 bb_error_msg("warning: got ICMP %d (%s)",
650                                 icmppkt->icmp6_type,
651                                 icmp6_type_name(icmppkt->icmp6_type));
652         }
653 }
654 #endif
655
656 static void ping4(len_and_sockaddr *lsa)
657 {
658         int sockopt;
659
660         pingsock = create_icmp_socket();
661         pingaddr.sin = lsa->u.sin;
662         if (source_lsa) {
663                 if (setsockopt(pingsock, IPPROTO_IP, IP_MULTICAST_IF,
664                                 &source_lsa->u.sa, source_lsa->len))
665                         bb_error_msg_and_die("can't set multicast source interface");
666                 xbind(pingsock, &source_lsa->u.sa, source_lsa->len);
667         }
668         if (str_I)
669                 setsockopt_bindtodevice(pingsock, str_I);
670
671         /* enable broadcast pings */
672         setsockopt_broadcast(pingsock);
673
674         /* set recv buf (needed if we can get lots of responses: flood ping,
675          * broadcast ping etc) */
676         sockopt = (datalen * 2) + 7 * 1024; /* giving it a bit of extra room */
677         setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, &sockopt, sizeof(sockopt));
678
679         if (opt_ttl != 0) {
680                 setsockopt(pingsock, IPPROTO_IP, IP_TTL, &opt_ttl, sizeof(opt_ttl));
681                 /* above doesnt affect packets sent to bcast IP, so... */
682                 setsockopt(pingsock, IPPROTO_IP, IP_MULTICAST_TTL, &opt_ttl, sizeof(opt_ttl));
683         }
684
685         signal(SIGINT, print_stats_and_exit);
686
687         /* start the ping's going ... */
688         sendping4(0);
689
690         /* listen for replies */
691         while (1) {
692                 struct sockaddr_in from;
693                 socklen_t fromlen = (socklen_t) sizeof(from);
694                 int c;
695
696                 c = recvfrom(pingsock, G.rcv_packet, G.sizeof_rcv_packet, 0,
697                                 (struct sockaddr *) &from, &fromlen);
698                 if (c < 0) {
699                         if (errno != EINTR)
700                                 bb_perror_msg("recvfrom");
701                         continue;
702                 }
703                 unpack4(G.rcv_packet, c, &from);
704                 if (pingcount && nreceived >= pingcount)
705                         break;
706         }
707 }
708 #if ENABLE_PING6
709 extern int BUG_bad_offsetof_icmp6_cksum(void);
710 static void ping6(len_and_sockaddr *lsa)
711 {
712         int sockopt;
713         struct msghdr msg;
714         struct sockaddr_in6 from;
715         struct iovec iov;
716         char control_buf[CMSG_SPACE(36)];
717
718         pingsock = create_icmp6_socket();
719         pingaddr.sin6 = lsa->u.sin6;
720         /* untested whether "-I addr" really works for IPv6: */
721         if (source_lsa)
722                 xbind(pingsock, &source_lsa->u.sa, source_lsa->len);
723         if (str_I)
724                 setsockopt_bindtodevice(pingsock, str_I);
725
726 #ifdef ICMP6_FILTER
727         {
728                 struct icmp6_filter filt;
729                 if (!(option_mask32 & OPT_VERBOSE)) {
730                         ICMP6_FILTER_SETBLOCKALL(&filt);
731                         ICMP6_FILTER_SETPASS(ICMP6_ECHO_REPLY, &filt);
732                 } else {
733                         ICMP6_FILTER_SETPASSALL(&filt);
734                 }
735                 if (setsockopt(pingsock, IPPROTO_ICMPV6, ICMP6_FILTER, &filt,
736                                            sizeof(filt)) < 0)
737                         bb_error_msg_and_die("setsockopt(ICMP6_FILTER)");
738         }
739 #endif /*ICMP6_FILTER*/
740
741         /* enable broadcast pings */
742         setsockopt_broadcast(pingsock);
743
744         /* set recv buf (needed if we can get lots of responses: flood ping,
745          * broadcast ping etc) */
746         sockopt = (datalen * 2) + 7 * 1024; /* giving it a bit of extra room */
747         setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, &sockopt, sizeof(sockopt));
748
749         sockopt = offsetof(struct icmp6_hdr, icmp6_cksum);
750         if (offsetof(struct icmp6_hdr, icmp6_cksum) != 2)
751                 BUG_bad_offsetof_icmp6_cksum();
752         setsockopt(pingsock, SOL_RAW, IPV6_CHECKSUM, &sockopt, sizeof(sockopt));
753
754         /* request ttl info to be returned in ancillary data */
755         setsockopt(pingsock, SOL_IPV6, IPV6_HOPLIMIT, &const_int_1, sizeof(const_int_1));
756
757         if (if_index)
758                 pingaddr.sin6.sin6_scope_id = if_index;
759
760         signal(SIGINT, print_stats_and_exit);
761
762         /* start the ping's going ... */
763         sendping6(0);
764
765         /* listen for replies */
766         msg.msg_name = &from;
767         msg.msg_namelen = sizeof(from);
768         msg.msg_iov = &iov;
769         msg.msg_iovlen = 1;
770         msg.msg_control = control_buf;
771         iov.iov_base = G.rcv_packet;
772         iov.iov_len = G.sizeof_rcv_packet;
773         while (1) {
774                 int c;
775                 struct cmsghdr *mp;
776                 int hoplimit = -1;
777                 msg.msg_controllen = sizeof(control_buf);
778
779                 c = recvmsg(pingsock, &msg, 0);
780                 if (c < 0) {
781                         if (errno != EINTR)
782                                 bb_perror_msg("recvfrom");
783                         continue;
784                 }
785                 for (mp = CMSG_FIRSTHDR(&msg); mp; mp = CMSG_NXTHDR(&msg, mp)) {
786                         if (mp->cmsg_level == SOL_IPV6
787                          && mp->cmsg_type == IPV6_HOPLIMIT
788                          /* don't check len - we trust the kernel: */
789                          /* && mp->cmsg_len >= CMSG_LEN(sizeof(int)) */
790                         ) {
791                                 /*hoplimit = *(int*)CMSG_DATA(mp); - unaligned access */
792                                 move_from_unaligned_int(hoplimit, CMSG_DATA(mp));
793                         }
794                 }
795                 unpack6(G.rcv_packet, c, /*&from,*/ hoplimit);
796                 if (pingcount && nreceived >= pingcount)
797                         break;
798         }
799 }
800 #endif
801
802 static void ping(len_and_sockaddr *lsa)
803 {
804         printf("PING %s (%s)", hostname, dotted);
805         if (source_lsa) {
806                 printf(" from %s",
807                         xmalloc_sockaddr2dotted_noport(&source_lsa->u.sa));
808         }
809         printf(": %d data bytes\n", datalen);
810
811         G.sizeof_rcv_packet = datalen + MAXIPLEN + MAXICMPLEN;
812         G.rcv_packet = xzalloc(G.sizeof_rcv_packet);
813 #if ENABLE_PING6
814         if (lsa->u.sa.sa_family == AF_INET6) {
815                 /* +4 reserves a place for timestamp, which may end up sitting
816                  * _after_ packet. Saves one if() - see sendping4/6() */
817                 G.snd_packet = xzalloc(datalen + sizeof(struct icmp6_hdr) + 4);
818                 ping6(lsa);
819         } else
820 #endif
821         {
822                 G.snd_packet = xzalloc(datalen + ICMP_MINLEN + 4);
823                 ping4(lsa);
824         }
825 }
826
827 static int common_ping_main(int opt, char **argv)
828 {
829         len_and_sockaddr *lsa;
830         char *str_s;
831
832         INIT_G();
833
834         /* exactly one argument needed; -v and -q don't mix; -c NUM, -t NUM, -w NUM, -W NUM */
835         opt_complementary = "=1:q--v:v--q:c+:t+:w+:W+";
836         opt |= getopt32(argv, OPT_STRING, &pingcount, &str_s, &opt_ttl, &deadline, &timeout, &str_I);
837         if (opt & OPT_s)
838                 datalen = xatou16(str_s); // -s
839         if (opt & OPT_I) { // -I
840                 if_index = if_nametoindex(str_I);
841                 if (!if_index) {
842                         /* TODO: I'm not sure it takes IPv6 unless in [XX:XX..] format */
843                         source_lsa = xdotted2sockaddr(str_I, 0);
844                         str_I = NULL; /* don't try to bind to device later */
845                 }
846         }
847         myid = (uint16_t) getpid();
848         hostname = argv[optind];
849 #if ENABLE_PING6
850         {
851                 sa_family_t af = AF_UNSPEC;
852                 if (opt & OPT_IPV4)
853                         af = AF_INET;
854                 if (opt & OPT_IPV6)
855                         af = AF_INET6;
856                 lsa = xhost_and_af2sockaddr(hostname, 0, af);
857         }
858 #else
859         lsa = xhost_and_af2sockaddr(hostname, 0, AF_INET);
860 #endif
861
862         if (source_lsa && source_lsa->u.sa.sa_family != lsa->u.sa.sa_family)
863                 /* leaking it here... */
864                 source_lsa = NULL;
865
866         dotted = xmalloc_sockaddr2dotted_noport(&lsa->u.sa);
867         ping(lsa);
868         print_stats_and_exit(EXIT_SUCCESS);
869         /*return EXIT_SUCCESS;*/
870 }
871 #endif /* FEATURE_FANCY_PING */
872
873
874 int ping_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
875 int ping_main(int argc UNUSED_PARAM, char **argv)
876 {
877 #if !ENABLE_FEATURE_FANCY_PING
878         return common_ping_main(AF_UNSPEC, argv);
879 #else
880         return common_ping_main(0, argv);
881 #endif
882 }
883
884 #if ENABLE_PING6
885 int ping6_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
886 int ping6_main(int argc UNUSED_PARAM, char **argv)
887 {
888 # if !ENABLE_FEATURE_FANCY_PING
889         return common_ping_main(AF_INET6, argv);
890 # else
891         return common_ping_main(OPT_IPV6, argv);
892 # endif
893 }
894 #endif
895
896 /* from ping6.c:
897  * Copyright (c) 1989 The Regents of the University of California.
898  * All rights reserved.
899  *
900  * This code is derived from software contributed to Berkeley by
901  * Mike Muuss.
902  *
903  * Redistribution and use in source and binary forms, with or without
904  * modification, are permitted provided that the following conditions
905  * are met:
906  * 1. Redistributions of source code must retain the above copyright
907  *    notice, this list of conditions and the following disclaimer.
908  * 2. Redistributions in binary form must reproduce the above copyright
909  *    notice, this list of conditions and the following disclaimer in the
910  *    documentation and/or other materials provided with the distribution.
911  *
912  * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
913  *              ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
914  *
915  * 4. Neither the name of the University nor the names of its contributors
916  *    may be used to endorse or promote products derived from this software
917  *    without specific prior written permission.
918  *
919  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
920  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
921  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
922  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
923  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
924  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
925  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
926  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
927  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
928  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
929  * SUCH DAMAGE.
930  */