blob: 767aafd2a91b76eb1b791d0e7def276e6005cc8d [file] [log] [blame]
Eric Andersen51b8bd62002-07-03 11:46:38 +00001/* vi: set sw=4 ts=4: */
2/*
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003 * $Id: ping6.c,v 1.6 2004/03/15 08:28:48 andersen Exp $
Eric Andersen51b8bd62002-07-03 11:46:38 +00004 * Mini ping implementation for busybox
5 *
6 * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
7 *
"Robert P. J. Day"2819f752006-07-11 11:32:31 +00008 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersen51b8bd62002-07-03 11:46:38 +00009 *
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.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000018 *
Eric Andersen51b8bd62002-07-03 11:46:38 +000019 * 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>
Eric Andersen51b8bd62002-07-03 11:46:38 +000028#include <sys/times.h>
Mike Frysinger06adf5f2006-03-22 00:25:07 +000029#include <signal.h>
Eric Andersen51b8bd62002-07-03 11:46:38 +000030
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
Rob Landleybc68cd12006-03-10 19:22:06 +000046enum {
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};
Eric Andersen51b8bd62002-07-03 11:46:38 +000055
56#define O_QUIET (1 << 0)
57#define O_VERBOSE (1 << 1)
58
59#define A(bit) rcvd_tbl[(bit)>>3] /* identify byte in array */
60#define B(bit) (1 << ((bit) & 0x07)) /* identify bit in byte */
61#define SET(bit) (A(bit) |= B(bit))
62#define CLR(bit) (A(bit) &= (~B(bit)))
63#define TST(bit) (A(bit) & B(bit))
64
65static void ping(const char *host);
66
67/* simple version */
68#ifndef CONFIG_FEATURE_FANCY_PING6
Eric Andersen787ff552003-05-22 07:10:22 +000069static struct hostent *h;
70
Eric Andersen4e486a52003-01-12 06:08:33 +000071void noresp(int ign)
72{
73 printf("No response from %s\n", h->h_name);
74 exit(EXIT_FAILURE);
75}
Eric Andersen51b8bd62002-07-03 11:46:38 +000076
77static void ping(const char *host)
78{
Eric Andersen51b8bd62002-07-03 11:46:38 +000079 struct sockaddr_in6 pingaddr;
80 struct icmp6_hdr *pkt;
81 int pingsock, c;
82 int sockopt;
83 char packet[DEFDATALEN + MAXIPLEN + MAXICMPLEN];
84
Eric Andersen51b8bd62002-07-03 11:46:38 +000085 pingsock = create_icmp6_socket();
86
87 memset(&pingaddr, 0, sizeof(struct sockaddr_in));
88
89 pingaddr.sin6_family = AF_INET6;
90 h = xgethostbyname2(host, AF_INET6);
91 memcpy(&pingaddr.sin6_addr, h->h_addr, sizeof(pingaddr.sin6_addr));
92
93 pkt = (struct icmp6_hdr *) packet;
94 memset(pkt, 0, sizeof(packet));
95 pkt->icmp6_type = ICMP6_ECHO_REQUEST;
96
97 sockopt = offsetof(struct icmp6_hdr, icmp6_cksum);
98 setsockopt(pingsock, SOL_RAW, IPV6_CHECKSUM, (char *) &sockopt,
99 sizeof(sockopt));
100
Rob Landley07a637d2006-04-01 17:28:11 +0000101 c = sendto(pingsock, packet, DEFDATALEN + sizeof (struct icmp6_hdr), 0,
Eric Andersen51b8bd62002-07-03 11:46:38 +0000102 (struct sockaddr *) &pingaddr, sizeof(struct sockaddr_in6));
103
104 if (c < 0 || c != sizeof(packet))
Manuel Novoa III cad53642003-03-19 09:13:01 +0000105 bb_perror_msg_and_die("sendto");
Eric Andersen51b8bd62002-07-03 11:46:38 +0000106
107 signal(SIGALRM, noresp);
108 alarm(5); /* give the host 5000ms to respond */
109 /* listen for replies */
110 while (1) {
111 struct sockaddr_in6 from;
112 size_t fromlen = sizeof(from);
113
114 if ((c = recvfrom(pingsock, packet, sizeof(packet), 0,
115 (struct sockaddr *) &from, &fromlen)) < 0) {
116 if (errno == EINTR)
117 continue;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000118 bb_perror_msg("recvfrom");
Eric Andersen51b8bd62002-07-03 11:46:38 +0000119 continue;
120 }
121 if (c >= 8) { /* icmp6_hdr */
122 pkt = (struct icmp6_hdr *) packet;
123 if (pkt->icmp6_type == ICMP6_ECHO_REPLY)
124 break;
125 }
126 }
127 printf("%s is alive!\n", h->h_name);
128 return;
129}
130
Rob Landleydfba7412006-03-06 20:47:33 +0000131int ping6_main(int argc, char **argv)
Eric Andersen51b8bd62002-07-03 11:46:38 +0000132{
133 argc--;
134 argv++;
135 if (argc < 1)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000136 bb_show_usage();
Eric Andersen51b8bd62002-07-03 11:46:38 +0000137 ping(*argv);
138 return EXIT_SUCCESS;
139}
140
141#else /* ! CONFIG_FEATURE_FANCY_PING6 */
142/* full(er) version */
143static struct sockaddr_in6 pingaddr;
144static int pingsock = -1;
145static int datalen; /* intentionally uninitialized to work around gcc bug */
146static char* ifname;
147
148static long ntransmitted, nreceived, nrepeats, pingcount;
149static int myid, options;
150static unsigned long tmin = ULONG_MAX, tmax, tsum;
151static char rcvd_tbl[MAX_DUP_CHK / 8];
152
Glenn L McGrathefc6fbd2002-11-26 03:03:41 +0000153# ifdef CONFIG_FEATURE_FANCY_PING
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000154extern
Glenn L McGrathefc6fbd2002-11-26 03:03:41 +0000155# endif
Eric Andersen51b8bd62002-07-03 11:46:38 +0000156 struct hostent *hostent;
157
158static void sendping(int);
159static void pingstats(int);
160static void unpack(char *, int, struct sockaddr_in6 *, int);
161
162/**************************************************************************/
163
164static void pingstats(int junk)
165{
166 int status;
167
168 signal(SIGINT, SIG_IGN);
169
170 printf("\n--- %s ping statistics ---\n", hostent->h_name);
171 printf("%ld packets transmitted, ", ntransmitted);
172 printf("%ld packets received, ", nreceived);
173 if (nrepeats)
174 printf("%ld duplicates, ", nrepeats);
175 if (ntransmitted)
176 printf("%ld%% packet loss\n",
177 (ntransmitted - nreceived) * 100 / ntransmitted);
178 if (nreceived)
179 printf("round-trip min/avg/max = %lu.%lu/%lu.%lu/%lu.%lu ms\n",
180 tmin / 10, tmin % 10,
181 (tsum / (nreceived + nrepeats)) / 10,
182 (tsum / (nreceived + nrepeats)) % 10, tmax / 10, tmax % 10);
183 if (nreceived != 0)
184 status = EXIT_SUCCESS;
185 else
186 status = EXIT_FAILURE;
187 exit(status);
188}
189
190static void sendping(int junk)
191{
192 struct icmp6_hdr *pkt;
193 int i;
Rob Landley07a637d2006-04-01 17:28:11 +0000194 char packet[datalen + sizeof (struct icmp6_hdr)];
Eric Andersen51b8bd62002-07-03 11:46:38 +0000195
196 pkt = (struct icmp6_hdr *) packet;
197
198 pkt->icmp6_type = ICMP6_ECHO_REQUEST;
199 pkt->icmp6_code = 0;
200 pkt->icmp6_cksum = 0;
201 pkt->icmp6_seq = ntransmitted++;
202 pkt->icmp6_id = myid;
203 CLR(pkt->icmp6_seq % MAX_DUP_CHK);
204
205 gettimeofday((struct timeval *) &pkt->icmp6_data8[4], NULL);
206
207 i = sendto(pingsock, packet, sizeof(packet), 0,
208 (struct sockaddr *) &pingaddr, sizeof(struct sockaddr_in6));
209
210 if (i < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000211 bb_perror_msg_and_die("sendto");
Eric Andersen51b8bd62002-07-03 11:46:38 +0000212 else if ((size_t)i != sizeof(packet))
Manuel Novoa III cad53642003-03-19 09:13:01 +0000213 bb_error_msg_and_die("ping wrote %d chars; %d expected", i,
Eric Andersen51b8bd62002-07-03 11:46:38 +0000214 (int)sizeof(packet));
215
216 signal(SIGALRM, sendping);
217 if (pingcount == 0 || ntransmitted < pingcount) { /* schedule next in 1s */
218 alarm(PINGINTERVAL);
219 } else { /* done, wait for the last ping to come back */
220 /* todo, don't necessarily need to wait so long... */
221 signal(SIGALRM, pingstats);
222 alarm(MAXWAIT);
223 }
224}
225
Mike Frysinger2f135fc2006-03-13 23:48:18 +0000226/* RFC3542 changed some definitions from RFC2292 for no good reason, whee !
227 * the newer 3542 uses a MLD_ prefix where as 2292 uses ICMP6_ prefix */
228#ifndef MLD_LISTENER_QUERY
229# define MLD_LISTENER_QUERY ICMP6_MEMBERSHIP_QUERY
Mike Frysinger9e094552006-03-10 23:41:29 +0000230#endif
Mike Frysinger2f135fc2006-03-13 23:48:18 +0000231#ifndef MLD_LISTENER_REPORT
232# define MLD_LISTENER_REPORT ICMP6_MEMBERSHIP_REPORT
Mike Frysinger9e094552006-03-10 23:41:29 +0000233#endif
Mike Frysinger2f135fc2006-03-13 23:48:18 +0000234#ifndef MLD_LISTENER_REDUCTION
235# define MLD_LISTENER_REDUCTION ICMP6_MEMBERSHIP_REDUCTION
Mike Frysinger9e094552006-03-10 23:41:29 +0000236#endif
Eric Andersen51b8bd62002-07-03 11:46:38 +0000237static char *icmp6_type_name (int id)
238{
239 switch (id) {
240 case ICMP6_DST_UNREACH: return "Destination Unreachable";
241 case ICMP6_PACKET_TOO_BIG: return "Packet too big";
242 case ICMP6_TIME_EXCEEDED: return "Time Exceeded";
243 case ICMP6_PARAM_PROB: return "Parameter Problem";
244 case ICMP6_ECHO_REPLY: return "Echo Reply";
245 case ICMP6_ECHO_REQUEST: return "Echo Request";
Mike Frysinger2f135fc2006-03-13 23:48:18 +0000246 case MLD_LISTENER_QUERY: return "Listener Query";
247 case MLD_LISTENER_REPORT: return "Listener Report";
248 case MLD_LISTENER_REDUCTION: return "Listener Reduction";
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000249 default: return "unknown ICMP type";
Eric Andersen51b8bd62002-07-03 11:46:38 +0000250 }
251}
252
253static void unpack(char *packet, int sz, struct sockaddr_in6 *from, int hoplimit)
254{
255 struct icmp6_hdr *icmppkt;
256 struct timeval tv, *tp;
257 int dupflag;
258 unsigned long triptime;
259 char buf[INET6_ADDRSTRLEN];
260
261 gettimeofday(&tv, NULL);
262
263 /* discard if too short */
264 if (sz < (datalen + sizeof(struct icmp6_hdr)))
265 return;
266
267 icmppkt = (struct icmp6_hdr *) packet;
268
269 if (icmppkt->icmp6_id != myid)
270 return; /* not our ping */
271
272 if (icmppkt->icmp6_type == ICMP6_ECHO_REPLY) {
273 ++nreceived;
274 tp = (struct timeval *) &icmppkt->icmp6_data8[4];
275
276 if ((tv.tv_usec -= tp->tv_usec) < 0) {
277 --tv.tv_sec;
278 tv.tv_usec += 1000000;
279 }
280 tv.tv_sec -= tp->tv_sec;
281
282 triptime = tv.tv_sec * 10000 + (tv.tv_usec / 100);
283 tsum += triptime;
284 if (triptime < tmin)
285 tmin = triptime;
286 if (triptime > tmax)
287 tmax = triptime;
288
289 if (TST(icmppkt->icmp6_seq % MAX_DUP_CHK)) {
290 ++nrepeats;
291 --nreceived;
292 dupflag = 1;
293 } else {
294 SET(icmppkt->icmp6_seq % MAX_DUP_CHK);
295 dupflag = 0;
296 }
297
298 if (options & O_QUIET)
299 return;
300
301 printf("%d bytes from %s: icmp6_seq=%u", sz,
Rob Landley7a260f02006-06-19 03:20:03 +0000302 inet_ntop(AF_INET6, &pingaddr.sin6_addr,
Eric Andersen51b8bd62002-07-03 11:46:38 +0000303 buf, sizeof(buf)),
304 icmppkt->icmp6_seq);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000305 printf(" ttl=%d time=%lu.%lu ms", hoplimit,
Eric Andersen51b8bd62002-07-03 11:46:38 +0000306 triptime / 10, triptime % 10);
307 if (dupflag)
308 printf(" (DUP!)");
309 printf("\n");
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000310 } else
Eric Andersen51b8bd62002-07-03 11:46:38 +0000311 if (icmppkt->icmp6_type != ICMP6_ECHO_REQUEST)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000312 bb_error_msg("Warning: Got ICMP %d (%s)",
Eric Andersen51b8bd62002-07-03 11:46:38 +0000313 icmppkt->icmp6_type, icmp6_type_name (icmppkt->icmp6_type));
314}
315
316static void ping(const char *host)
317{
318 char packet[datalen + MAXIPLEN + MAXICMPLEN];
319 char buf[INET6_ADDRSTRLEN];
320 int sockopt;
321 struct msghdr msg;
322 struct sockaddr_in6 from;
323 struct iovec iov;
324 char control_buf[CMSG_SPACE(36)];
325
326 pingsock = create_icmp6_socket();
327
328 memset(&pingaddr, 0, sizeof(struct sockaddr_in));
329
330 pingaddr.sin6_family = AF_INET6;
331 hostent = xgethostbyname2(host, AF_INET6);
332 if (hostent->h_addrtype != AF_INET6)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000333 bb_error_msg_and_die("unknown address type; only AF_INET6 is currently supported.");
Eric Andersen51b8bd62002-07-03 11:46:38 +0000334
335 memcpy(&pingaddr.sin6_addr, hostent->h_addr, sizeof(pingaddr.sin6_addr));
336
337#ifdef ICMP6_FILTER
338 {
339 struct icmp6_filter filt;
340 if (!(options & O_VERBOSE)) {
341 ICMP6_FILTER_SETBLOCKALL(&filt);
Eric Andersen51b8bd62002-07-03 11:46:38 +0000342 ICMP6_FILTER_SETPASS(ICMP6_ECHO_REPLY, &filt);
343 } else {
344 ICMP6_FILTER_SETPASSALL(&filt);
345 }
346 if (setsockopt(pingsock, IPPROTO_ICMPV6, ICMP6_FILTER, &filt,
347 sizeof(filt)) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000348 bb_error_msg_and_die("setsockopt(ICMP6_FILTER)");
Eric Andersen51b8bd62002-07-03 11:46:38 +0000349 }
350#endif /*ICMP6_FILTER*/
351
352 /* enable broadcast pings */
353 sockopt = 1;
354 setsockopt(pingsock, SOL_SOCKET, SO_BROADCAST, (char *) &sockopt,
355 sizeof(sockopt));
356
357 /* set recv buf for broadcast pings */
358 sockopt = 48 * 1024;
359 setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, (char *) &sockopt,
360 sizeof(sockopt));
361
362 sockopt = offsetof(struct icmp6_hdr, icmp6_cksum);
363 setsockopt(pingsock, SOL_RAW, IPV6_CHECKSUM, (char *) &sockopt,
364 sizeof(sockopt));
365
366 sockopt = 1;
367 setsockopt(pingsock, SOL_IPV6, IPV6_HOPLIMIT, (char *) &sockopt,
368 sizeof(sockopt));
369
370 if (ifname) {
371 if ((pingaddr.sin6_scope_id = if_nametoindex(ifname)) == 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000372 bb_error_msg_and_die("%s: invalid interface name", ifname);
Eric Andersen51b8bd62002-07-03 11:46:38 +0000373 }
374
375 printf("PING %s (%s): %d data bytes\n",
376 hostent->h_name,
Rob Landley7a260f02006-06-19 03:20:03 +0000377 inet_ntop(AF_INET6, &pingaddr.sin6_addr,
Eric Andersen51b8bd62002-07-03 11:46:38 +0000378 buf, sizeof(buf)),
379 datalen);
380
381 signal(SIGINT, pingstats);
382
383 /* start the ping's going ... */
384 sendping(0);
385
386 /* listen for replies */
387 msg.msg_name=&from;
388 msg.msg_namelen=sizeof(from);
389 msg.msg_iov=&iov;
390 msg.msg_iovlen=1;
391 msg.msg_control=control_buf;
392 iov.iov_base=packet;
393 iov.iov_len=sizeof(packet);
394 while (1) {
395 int c;
396 struct cmsghdr *cmsgptr = NULL;
397 int hoplimit=-1;
398 msg.msg_controllen=sizeof(control_buf);
399
400 if ((c = recvmsg(pingsock, &msg, 0)) < 0) {
401 if (errno == EINTR)
402 continue;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000403 bb_perror_msg("recvfrom");
Eric Andersen51b8bd62002-07-03 11:46:38 +0000404 continue;
405 }
406 for (cmsgptr = CMSG_FIRSTHDR(&msg); cmsgptr != NULL;
407 cmsgptr = CMSG_NXTHDR(&msg, cmsgptr)) {
408 if (cmsgptr->cmsg_level == SOL_IPV6 &&
409 cmsgptr->cmsg_type == IPV6_HOPLIMIT ) {
410 hoplimit=*(int*)CMSG_DATA(cmsgptr);
411 }
412 }
413 unpack(packet, c, &from, hoplimit);
414 if (pingcount > 0 && nreceived >= pingcount)
415 break;
416 }
417 pingstats(0);
418}
419
Rob Landleydfba7412006-03-06 20:47:33 +0000420int ping6_main(int argc, char **argv)
Eric Andersen51b8bd62002-07-03 11:46:38 +0000421{
422 char *thisarg;
423
424 datalen = DEFDATALEN; /* initialized here rather than in global scope to work around gcc bug */
425
426 argc--;
427 argv++;
428 options = 0;
429 /* Parse any options */
430 while (argc >= 1 && **argv == '-') {
431 thisarg = *argv;
432 thisarg++;
433 switch (*thisarg) {
434 case 'v':
435 options &= ~O_QUIET;
436 options |= O_VERBOSE;
437 break;
438 case 'q':
439 options &= ~O_VERBOSE;
440 options |= O_QUIET;
441 break;
442 case 'c':
443 if (--argc <= 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000444 bb_show_usage();
Eric Andersen51b8bd62002-07-03 11:46:38 +0000445 argv++;
446 pingcount = atoi(*argv);
447 break;
448 case 's':
449 if (--argc <= 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000450 bb_show_usage();
Eric Andersen51b8bd62002-07-03 11:46:38 +0000451 argv++;
452 datalen = atoi(*argv);
453 break;
454 case 'I':
455 if (--argc <= 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000456 bb_show_usage();
Eric Andersen51b8bd62002-07-03 11:46:38 +0000457 argv++;
458 ifname = *argv;
459 break;
460 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000461 bb_show_usage();
Eric Andersen51b8bd62002-07-03 11:46:38 +0000462 }
463 argc--;
464 argv++;
465 }
466 if (argc < 1)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000467 bb_show_usage();
Eric Andersen51b8bd62002-07-03 11:46:38 +0000468
469 myid = getpid() & 0xFFFF;
470 ping(*argv);
471 return EXIT_SUCCESS;
472}
473#endif /* ! CONFIG_FEATURE_FANCY_PING6 */
474
475/*
476 * Copyright (c) 1989 The Regents of the University of California.
477 * All rights reserved.
478 *
479 * This code is derived from software contributed to Berkeley by
480 * Mike Muuss.
481 *
482 * Redistribution and use in source and binary forms, with or without
483 * modification, are permitted provided that the following conditions
484 * are met:
485 * 1. Redistributions of source code must retain the above copyright
486 * notice, this list of conditions and the following disclaimer.
487 * 2. Redistributions in binary form must reproduce the above copyright
488 * notice, this list of conditions and the following disclaimer in the
489 * documentation and/or other materials provided with the distribution.
490 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000491 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
492 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
Eric Andersen51b8bd62002-07-03 11:46:38 +0000493 *
494 * 4. Neither the name of the University nor the names of its contributors
495 * may be used to endorse or promote products derived from this software
496 * without specific prior written permission.
497 *
498 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
499 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
500 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
501 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
502 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
503 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
504 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
505 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
506 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
507 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
508 * SUCH DAMAGE.
509 */