rt_names: stop allocating 5k in rwdata
[oweals/busybox.git] / networking / ping6.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * $Id: ping6.c,v 1.6 2004/03/15 08:28:48 andersen Exp $
4  * Mini ping implementation for busybox
5  *
6  * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
7  *
8  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
9  *
10  * This version of ping is adapted from the ping in netkit-base 0.10,
11  * which is:
12  *
13  * Copyright (c) 1989 The Regents of the University of California.
14  * All rights reserved.
15  *
16  * This code is derived from software contributed to Berkeley by
17  * Mike Muuss.
18  *
19  * Original copyright notice is retained at the end of this file.
20  *
21  * This version is an adaptation of ping.c from busybox.
22  * The code was modified by Bart Visscher <magick@linux-fan.com>
23  */
24
25 #include <sys/param.h>
26 #include <sys/socket.h>
27 #include <sys/file.h>
28 #include <sys/times.h>
29 #include <signal.h>
30
31 #include <netinet/in.h>
32 #include <netinet/ip6.h>
33 #include <netinet/icmp6.h>
34 #include <arpa/inet.h>
35 #include <net/if.h>
36 #include <netdb.h>
37 #include <stdio.h>
38 #include <stdlib.h>
39 #include <errno.h>
40 #include <unistd.h>
41 #include <string.h>
42 #include <stdlib.h>
43 #include <stddef.h>                             /* offsetof */
44 #include "busybox.h"
45
46 enum {
47         DEFDATALEN = 56,
48         MAXIPLEN = 60,
49         MAXICMPLEN = 76,
50         MAXPACKET = 65468,
51         MAX_DUP_CHK = (8 * 128),
52         MAXWAIT = 10,
53         PINGINTERVAL = 1                /* second */
54 };
55
56 static void ping(const char *host);
57
58 #ifndef CONFIG_FEATURE_FANCY_PING6
59
60 /* simple version */
61
62 static struct hostent *h;
63
64 static void noresp(int ign)
65 {
66         printf("No response from %s\n", h->h_name);
67         exit(EXIT_FAILURE);
68 }
69
70 static void ping(const char *host)
71 {
72         struct sockaddr_in6 pingaddr;
73         struct icmp6_hdr *pkt;
74         int pingsock, c;
75         int sockopt;
76         char packet[DEFDATALEN + MAXIPLEN + MAXICMPLEN];
77
78         pingsock = create_icmp6_socket();
79
80         memset(&pingaddr, 0, sizeof(struct sockaddr_in));
81
82         pingaddr.sin6_family = AF_INET6;
83         h = xgethostbyname2(host, AF_INET6);
84         memcpy(&pingaddr.sin6_addr, h->h_addr, sizeof(pingaddr.sin6_addr));
85
86         pkt = (struct icmp6_hdr *) packet;
87         memset(pkt, 0, sizeof(packet));
88         pkt->icmp6_type = ICMP6_ECHO_REQUEST;
89
90         sockopt = offsetof(struct icmp6_hdr, icmp6_cksum);
91         setsockopt(pingsock, SOL_RAW, IPV6_CHECKSUM, (char *) &sockopt,
92                            sizeof(sockopt));
93
94         c = sendto(pingsock, packet, DEFDATALEN + sizeof (struct icmp6_hdr), 0,
95                            (struct sockaddr *) &pingaddr, sizeof(struct sockaddr_in6));
96
97         if (c < 0 || c != sizeof(packet)) {
98                 if (ENABLE_FEATURE_CLEAN_UP) close(pingsock);
99                 bb_perror_msg_and_die("sendto");
100         }
101
102         signal(SIGALRM, noresp);
103         alarm(5);                                       /* give the host 5000ms to respond */
104         /* listen for replies */
105         while (1) {
106                 struct sockaddr_in6 from;
107                 socklen_t fromlen = sizeof(from);
108
109                 c = recvfrom(pingsock, packet, sizeof(packet), 0,
110                                 (struct sockaddr *) &from, &fromlen);
111                 if (c < 0) {
112                         if (errno == EINTR)
113                                 continue;
114                         bb_perror_msg("recvfrom");
115                         continue;
116                 }
117                 if (c >= 8) {                   /* icmp6_hdr */
118                         pkt = (struct icmp6_hdr *) packet;
119                         if (pkt->icmp6_type == ICMP6_ECHO_REPLY)
120                                 break;
121                 }
122         }
123         if (ENABLE_FEATURE_CLEAN_UP) close(pingsock);
124         printf("%s is alive!\n", h->h_name);
125         return;
126 }
127
128 int ping6_main(int argc, char **argv)
129 {
130         argc--;
131         argv++;
132         if (argc < 1)
133                 bb_show_usage();
134         ping(*argv);
135         return EXIT_SUCCESS;
136 }
137
138 #else /* ! CONFIG_FEATURE_FANCY_PING6 */
139
140 /* full(er) version */
141
142 #define OPT_STRING "qvc:s:I:"
143 enum {
144         OPT_QUIET = 1 << 0,
145         OPT_VERBOSE = 1 << 1,
146 };
147
148 static struct sockaddr_in6 pingaddr;
149 static int pingsock = -1;
150 static unsigned datalen; /* intentionally uninitialized to work around gcc bug */
151 static int if_index;
152
153 static unsigned long ntransmitted, nreceived, nrepeats, pingcount;
154 static int myid;
155 static unsigned long tmin = ULONG_MAX, tmax, tsum;
156 static char rcvd_tbl[MAX_DUP_CHK / 8];
157
158 static struct hostent *hostent;
159
160 static void sendping(int);
161 static void pingstats(int);
162 static void unpack(char *, int, struct sockaddr_in6 *, int);
163
164 #define A(bit)          rcvd_tbl[(bit)>>3]      /* identify byte in array */
165 #define B(bit)          (1 << ((bit) & 0x07))   /* identify bit in byte */
166 #define SET(bit)        (A(bit) |= B(bit))
167 #define CLR(bit)        (A(bit) &= (~B(bit)))
168 #define TST(bit)        (A(bit) & B(bit))
169
170 /**************************************************************************/
171
172 static void pingstats(int junk)
173 {
174         int status;
175
176         signal(SIGINT, SIG_IGN);
177
178         printf("\n--- %s ping statistics ---\n", hostent->h_name);
179         printf("%lu packets transmitted, ", ntransmitted);
180         printf("%lu packets received, ", nreceived);
181         if (nrepeats)
182                 printf("%lu duplicates, ", nrepeats);
183         if (ntransmitted)
184                 printf("%lu%% packet loss\n",
185                            (ntransmitted - nreceived) * 100 / ntransmitted);
186         if (nreceived)
187                 printf("round-trip min/avg/max = %lu.%lu/%lu.%lu/%lu.%lu ms\n",
188                            tmin / 10, tmin % 10,
189                            (tsum / (nreceived + nrepeats)) / 10,
190                            (tsum / (nreceived + nrepeats)) % 10, tmax / 10, tmax % 10);
191         if (nreceived != 0)
192                 status = EXIT_SUCCESS;
193         else
194                 status = EXIT_FAILURE;
195         exit(status);
196 }
197
198 static void sendping(int junk)
199 {
200         struct icmp6_hdr *pkt;
201         int i;
202         char packet[datalen + sizeof (struct icmp6_hdr)];
203
204         pkt = (struct icmp6_hdr *) packet;
205
206         pkt->icmp6_type = ICMP6_ECHO_REQUEST;
207         pkt->icmp6_code = 0;
208         pkt->icmp6_cksum = 0;
209         pkt->icmp6_seq = htons(ntransmitted++);
210         pkt->icmp6_id = myid;
211         CLR(pkt->icmp6_seq % MAX_DUP_CHK);
212
213         gettimeofday((struct timeval *) &pkt->icmp6_data8[4], NULL);
214
215         i = sendto(pingsock, packet, sizeof(packet), 0,
216                            (struct sockaddr *) &pingaddr, sizeof(struct sockaddr_in6));
217
218         if (i < 0)
219                 bb_perror_msg_and_die("sendto");
220         else if ((size_t)i != sizeof(packet))
221                 bb_error_msg_and_die("ping wrote %d chars; %d expected", i,
222                            (int)sizeof(packet));
223
224         signal(SIGALRM, sendping);
225         if (pingcount == 0 || ntransmitted < pingcount) {       /* schedule next in 1s */
226                 alarm(PINGINTERVAL);
227         } else {                                        /* done, wait for the last ping to come back */
228                 /* todo, don't necessarily need to wait so long... */
229                 signal(SIGALRM, pingstats);
230                 alarm(MAXWAIT);
231         }
232 }
233
234 /* RFC3542 changed some definitions from RFC2292 for no good reason, whee !
235  * the newer 3542 uses a MLD_ prefix where as 2292 uses ICMP6_ prefix */
236 #ifndef MLD_LISTENER_QUERY
237 # define MLD_LISTENER_QUERY ICMP6_MEMBERSHIP_QUERY
238 #endif
239 #ifndef MLD_LISTENER_REPORT
240 # define MLD_LISTENER_REPORT ICMP6_MEMBERSHIP_REPORT
241 #endif
242 #ifndef MLD_LISTENER_REDUCTION
243 # define MLD_LISTENER_REDUCTION ICMP6_MEMBERSHIP_REDUCTION
244 #endif
245 static char *icmp6_type_name(int id)
246 {
247         switch (id) {
248         case ICMP6_DST_UNREACH:                         return "Destination Unreachable";
249         case ICMP6_PACKET_TOO_BIG:                      return "Packet too big";
250         case ICMP6_TIME_EXCEEDED:                       return "Time Exceeded";
251         case ICMP6_PARAM_PROB:                          return "Parameter Problem";
252         case ICMP6_ECHO_REPLY:                          return "Echo Reply";
253         case ICMP6_ECHO_REQUEST:                        return "Echo Request";
254         case MLD_LISTENER_QUERY:                        return "Listener Query";
255         case MLD_LISTENER_REPORT:                       return "Listener Report";
256         case MLD_LISTENER_REDUCTION:            return "Listener Reduction";
257         default:                                                        return "unknown ICMP type";
258         }
259 }
260
261 static void unpack(char *packet, int sz, struct sockaddr_in6 *from, int hoplimit)
262 {
263         struct icmp6_hdr *icmppkt;
264         struct timeval tv, *tp;
265         int dupflag;
266         unsigned long triptime;
267         char buf[INET6_ADDRSTRLEN];
268
269         gettimeofday(&tv, NULL);
270
271         /* discard if too short */
272         if (sz < (datalen + sizeof(struct icmp6_hdr)))
273                 return;
274
275         icmppkt = (struct icmp6_hdr *) packet;
276         if (icmppkt->icmp6_id != myid)
277                 return;                         /* not our ping */
278
279         if (icmppkt->icmp6_type == ICMP6_ECHO_REPLY) {
280                 ++nreceived;
281                 tp = (struct timeval *) &icmppkt->icmp6_data8[4];
282
283                 if ((tv.tv_usec -= tp->tv_usec) < 0) {
284                         --tv.tv_sec;
285                         tv.tv_usec += 1000000;
286                 }
287                 tv.tv_sec -= tp->tv_sec;
288
289                 triptime = tv.tv_sec * 10000 + (tv.tv_usec / 100);
290                 tsum += triptime;
291                 if (triptime < tmin)
292                         tmin = triptime;
293                 if (triptime > tmax)
294                         tmax = triptime;
295
296                 if (TST(icmppkt->icmp6_seq % MAX_DUP_CHK)) {
297                         ++nrepeats;
298                         --nreceived;
299                         dupflag = 1;
300                 } else {
301                         SET(icmppkt->icmp6_seq % MAX_DUP_CHK);
302                         dupflag = 0;
303                 }
304
305                 if (option_mask32 & OPT_QUIET)
306                         return;
307
308                 printf("%d bytes from %s: icmp6_seq=%u", sz,
309                            inet_ntop(AF_INET6, &pingaddr.sin6_addr,
310                                                  buf, sizeof(buf)),
311                            icmppkt->icmp6_seq);
312                 printf(" ttl=%d time=%lu.%lu ms", hoplimit,
313                            triptime / 10, triptime % 10);
314                 if (dupflag)
315                         printf(" (DUP!)");
316                 puts("");
317         } else
318                 if (icmppkt->icmp6_type != ICMP6_ECHO_REQUEST)
319                         bb_error_msg("warning: got ICMP %d (%s)",
320                                         icmppkt->icmp6_type, icmp6_type_name(icmppkt->icmp6_type));
321 }
322
323 static void ping(const char *host)
324 {
325         char packet[datalen + MAXIPLEN + MAXICMPLEN];
326         char buf[INET6_ADDRSTRLEN];
327         int sockopt;
328         struct msghdr msg;
329         struct sockaddr_in6 from;
330         struct iovec iov;
331         char control_buf[CMSG_SPACE(36)];
332
333         pingsock = create_icmp6_socket();
334
335         memset(&pingaddr, 0, sizeof(struct sockaddr_in));
336
337         pingaddr.sin6_family = AF_INET6;
338         hostent = xgethostbyname2(host, AF_INET6);
339         if (hostent->h_addrtype != AF_INET6)
340                 bb_error_msg_and_die("unknown address type; only AF_INET6 is currently supported");
341
342         memcpy(&pingaddr.sin6_addr, hostent->h_addr, sizeof(pingaddr.sin6_addr));
343
344 #ifdef ICMP6_FILTER
345         {
346                 struct icmp6_filter filt;
347                 if (!(option_mask32 & OPT_VERBOSE)) {
348                         ICMP6_FILTER_SETBLOCKALL(&filt);
349                         ICMP6_FILTER_SETPASS(ICMP6_ECHO_REPLY, &filt);
350                 } else {
351                         ICMP6_FILTER_SETPASSALL(&filt);
352                 }
353                 if (setsockopt(pingsock, IPPROTO_ICMPV6, ICMP6_FILTER, &filt,
354                                            sizeof(filt)) < 0)
355                         bb_error_msg_and_die("setsockopt(ICMP6_FILTER)");
356         }
357 #endif /*ICMP6_FILTER*/
358
359         /* enable broadcast pings */
360         setsockopt_broadcast(pingsock);
361
362         /* set recv buf for broadcast pings */
363         sockopt = 48 * 1024;
364         setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, (char *) &sockopt,
365                            sizeof(sockopt));
366
367         sockopt = offsetof(struct icmp6_hdr, icmp6_cksum);
368         setsockopt(pingsock, SOL_RAW, IPV6_CHECKSUM, (char *) &sockopt,
369                            sizeof(sockopt));
370
371         sockopt = 1;
372         setsockopt(pingsock, SOL_IPV6, IPV6_HOPLIMIT, (char *) &sockopt,
373                            sizeof(sockopt));
374
375         if (if_index)
376                 pingaddr.sin6_scope_id = if_index;
377
378         printf("PING %s (%s): %d data bytes\n",
379                    hostent->h_name,
380                    inet_ntop(AF_INET6, &pingaddr.sin6_addr,
381                         buf, sizeof(buf)),
382                    datalen);
383
384         signal(SIGINT, pingstats);
385
386         /* start the ping's going ... */
387         sendping(0);
388
389         /* listen for replies */
390         msg.msg_name = &from;
391         msg.msg_namelen = sizeof(from);
392         msg.msg_iov = &iov;
393         msg.msg_iovlen = 1;
394         msg.msg_control = control_buf;
395         iov.iov_base = packet;
396         iov.iov_len = sizeof(packet);
397         while (1) {
398                 int c;
399                 struct cmsghdr *cmsgptr = NULL;
400                 int hoplimit = -1;
401                 msg.msg_controllen = sizeof(control_buf);
402
403                 if ((c = recvmsg(pingsock, &msg, 0)) < 0) {
404                         if (errno == EINTR)
405                                 continue;
406                         bb_perror_msg("recvfrom");
407                         continue;
408                 }
409                 for (cmsgptr = CMSG_FIRSTHDR(&msg); cmsgptr != NULL;
410                          cmsgptr = CMSG_NXTHDR(&msg, cmsgptr)) {
411                         if (cmsgptr->cmsg_level == SOL_IPV6 &&
412                                 cmsgptr->cmsg_type == IPV6_HOPLIMIT ) {
413                                 hoplimit = *(int*)CMSG_DATA(cmsgptr);
414                         }
415                 }
416                 unpack(packet, c, &from, hoplimit);
417                 if (pingcount > 0 && nreceived >= pingcount)
418                         break;
419         }
420         pingstats(0);
421 }
422
423 int ping6_main(int argc, char **argv)
424 {
425         char *opt_c, *opt_s, *opt_I;
426
427         datalen = DEFDATALEN; /* initialized here rather than in global scope to work around gcc bug */
428
429         /* exactly one argument needed, -v and -q don't mix */
430         opt_complementary = "=1:q--v:v--q"; 
431         getopt32(argc, argv, OPT_STRING, &opt_c, &opt_s, &opt_I);
432         if (option_mask32 & 4) pingcount = xatoul(opt_c); // -c
433         if (option_mask32 & 8) datalen = xatou16(opt_s); // -s
434         if (option_mask32 & 0x10) { // -I
435                 if_index = if_nametoindex(opt_I);
436                 if (!if_index)
437                         bb_error_msg_and_die(
438                                 "%s: invalid interface name", opt_I);
439         }
440
441         myid = (int16_t)getpid();
442         ping(argv[optind]);
443         return EXIT_SUCCESS;
444 }
445 #endif /* ! CONFIG_FEATURE_FANCY_PING6 */
446
447 /*
448  * Copyright (c) 1989 The Regents of the University of California.
449  * All rights reserved.
450  *
451  * This code is derived from software contributed to Berkeley by
452  * Mike Muuss.
453  *
454  * Redistribution and use in source and binary forms, with or without
455  * modification, are permitted provided that the following conditions
456  * are met:
457  * 1. Redistributions of source code must retain the above copyright
458  *    notice, this list of conditions and the following disclaimer.
459  * 2. Redistributions in binary form must reproduce the above copyright
460  *    notice, this list of conditions and the following disclaimer in the
461  *    documentation and/or other materials provided with the distribution.
462  *
463  * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
464  *              ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
465  *
466  * 4. Neither the name of the University nor the names of its contributors
467  *    may be used to endorse or promote products derived from this software
468  *    without specific prior written permission.
469  *
470  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
471  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
472  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
473  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
474  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
475  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
476  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
477  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
478  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
479  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
480  * SUCH DAMAGE.
481  */