xref: /dragonfly/sbin/ping/ping.c (revision 1d1731fa)
1 /*
2  * Copyright (c) 1989, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Mike Muuss.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *	This product includes software developed by the University of
19  *	California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  * @(#) Copyright (c) 1989, 1993 The Regents of the University of California.  All rights reserved.
37  * @(#)ping.c	8.1 (Berkeley) 6/5/93
38  * $FreeBSD: src/sbin/ping/ping.c,v 1.52.2.13 2002/10/29 10:23:21 maxim Exp $
39  * $DragonFly: src/sbin/ping/ping.c,v 1.3 2003/09/28 14:39:20 hmp Exp $
40  */
41 
42 /*
43  *			P I N G . C
44  *
45  * Using the Internet Control Message Protocol (ICMP) "ECHO" facility,
46  * measure round-trip-delays and packet loss across network paths.
47  *
48  * Author -
49  *	Mike Muuss
50  *	U. S. Army Ballistic Research Laboratory
51  *	December, 1983
52  *
53  * Status -
54  *	Public Domain.  Distribution Unlimited.
55  * Bugs -
56  *	More statistics could always be gathered.
57  *	This program has to run SUID to ROOT to access the ICMP socket.
58  */
59 
60 #include <sys/param.h>		/* NB: we rely on this for <sys/types.h> */
61 
62 #include <ctype.h>
63 #include <err.h>
64 #include <errno.h>
65 #include <math.h>
66 #include <netdb.h>
67 #include <signal.h>
68 #include <stdio.h>
69 #include <stdlib.h>
70 #include <string.h>
71 #include <sysexits.h>
72 #include <termios.h>
73 #include <unistd.h>
74 
75 #include <sys/socket.h>
76 #include <sys/time.h>
77 #include <sys/uio.h>
78 
79 #include <netinet/in.h>
80 #include <netinet/in_systm.h>
81 #include <netinet/ip.h>
82 #include <netinet/ip_icmp.h>
83 #include <netinet/ip_var.h>
84 #include <arpa/inet.h>
85 
86 #ifdef IPSEC
87 #include <netinet6/ipsec.h>
88 #endif /*IPSEC*/
89 
90 #define	INADDR_LEN	((int)sizeof(in_addr_t))
91 #define	PHDR_LEN	((int)sizeof(struct timeval))
92 #define	DEFDATALEN	(64 - PHDR_LEN)	/* default data length */
93 #define	FLOOD_BACKOFF	20000		/* usecs to back off if F_FLOOD mode */
94 					/* runs out of buffer space */
95 #define	MAXIPLEN	(sizeof(struct ip) + MAX_IPOPTLEN)
96 #define	MAXICMPLEN	(ICMP_ADVLENMIN + MAX_IPOPTLEN)
97 #define	MINICMPLEN	ICMP_MINLEN
98 #define	MAXPAYLOAD	(IP_MAXPACKET - MAXIPLEN - MINICMPLEN)
99 #define	MAXWAIT		10		/* max seconds to wait for response */
100 #define	MAXALARM	(60 * 60)	/* max seconds for alarm timeout */
101 
102 #define	A(bit)		rcvd_tbl[(bit)>>3]	/* identify byte in array */
103 #define	B(bit)		(1 << ((bit) & 0x07))	/* identify bit in byte */
104 #define	SET(bit)	(A(bit) |= B(bit))
105 #define	CLR(bit)	(A(bit) &= (~B(bit)))
106 #define	TST(bit)	(A(bit) & B(bit))
107 
108 /* various options */
109 int options;
110 #define	F_FLOOD		0x0001
111 #define	F_INTERVAL	0x0002
112 #define	F_NUMERIC	0x0004
113 #define	F_PINGFILLED	0x0008
114 #define	F_QUIET		0x0010
115 #define	F_RROUTE	0x0020
116 #define	F_SO_DEBUG	0x0040
117 #define	F_SO_DONTROUTE	0x0080
118 #define	F_VERBOSE	0x0100
119 #define	F_QUIET2	0x0200
120 #define	F_NOLOOP	0x0400
121 #define	F_MTTL		0x0800
122 #define	F_MIF		0x1000
123 #define	F_AUDIBLE	0x2000
124 #ifdef IPSEC
125 #ifdef IPSEC_POLICY_IPSEC
126 #define F_POLICY	0x4000
127 #endif /*IPSEC_POLICY_IPSEC*/
128 #endif /*IPSEC*/
129 #define	F_TTL		0x8000
130 #define	F_MISSED	0x10000
131 
132 /*
133  * MAX_DUP_CHK is the number of bits in received table, i.e. the maximum
134  * number of received sequence numbers we can keep track of.  Change 128
135  * to 8192 for complete accuracy...
136  */
137 #define	MAX_DUP_CHK	(8 * 128)
138 int mx_dup_ck = MAX_DUP_CHK;
139 char rcvd_tbl[MAX_DUP_CHK / 8];
140 
141 struct sockaddr_in whereto;	/* who to ping */
142 int datalen = DEFDATALEN;
143 int s;				/* socket file descriptor */
144 u_char outpack[MINICMPLEN + MAXPAYLOAD];
145 char BSPACE = '\b';		/* characters written for flood */
146 char BBELL = '\a';		/* characters written for MISSED and AUDIBLE */
147 char DOT = '.';
148 char *hostname;
149 char *shostname;
150 int ident;			/* process id to identify our packets */
151 int uid;			/* cached uid for micro-optimization */
152 
153 /* counters */
154 long npackets;			/* max packets to transmit */
155 long nreceived;			/* # of packets we got back */
156 long nrepeats;			/* number of duplicates */
157 long ntransmitted;		/* sequence # for outbound packets = #sent */
158 long nmissedmax;		/* max value of ntransmitted - nreceived - 1 */
159 int interval = 1000;		/* interval between packets, ms */
160 
161 /* timing */
162 int timing;			/* flag to do timing */
163 double tmin = 999999999.0;	/* minimum round trip time */
164 double tmax = 0.0;		/* maximum round trip time */
165 double tsum = 0.0;		/* sum of all times, for doing average */
166 double tsumsq = 0.0;		/* sum of all times squared, for std. dev. */
167 
168 volatile sig_atomic_t finish_up;  /* nonzero if we've been told to finish up */
169 int reset_kerninfo;
170 volatile sig_atomic_t siginfo_p;
171 
172 static void fill(char *, char *);
173 static u_short in_cksum(u_short *, int);
174 static void check_status(void);
175 static void finish(void) __dead2;
176 static void pinger(void);
177 static char *pr_addr(struct in_addr);
178 static void pr_icmph(struct icmp *);
179 static void pr_iph(struct ip *);
180 static void pr_pack(char *, int, struct sockaddr_in *, struct timeval *);
181 static void pr_retip(struct ip *);
182 static void status(int);
183 static void stopit(int);
184 static void tvsub(struct timeval *, struct timeval *);
185 static void usage(void) __dead2;
186 
187 int
188 main(int argc, char **argv)
189 {
190 	struct in_addr ifaddr;
191 	struct iovec iov;
192 	struct msghdr msg;
193 	struct sigaction si_sa;
194 	struct sockaddr_in from, sin;
195 	struct termios ts;
196 	struct timeval last, intvl;
197 	struct hostent *hp;
198 	struct sockaddr_in *to;
199 	double t;
200 	u_char *datap, packet[IP_MAXPACKET];
201 	char *ep, *source, *target;
202 #ifdef IPSEC_POLICY_IPSEC
203 	char *policy_in, *policy_out;
204 #endif
205 	u_long alarmtimeout, ultmp;
206 	int ch, hold, i, packlen, preload, sockerrno, almost_done = 0, ttl;
207 	char ctrl[CMSG_SPACE(sizeof(struct timeval))];
208 	char hnamebuf[MAXHOSTNAMELEN], snamebuf[MAXHOSTNAMELEN];
209 #ifdef IP_OPTIONS
210 	char rspace[MAX_IPOPTLEN];	/* record route space */
211 #endif
212 	unsigned char mttl, loop;
213 
214 	source = NULL;
215 #ifdef IPSEC_POLICY_IPSEC
216 	policy_in = policy_out = NULL;
217 #endif
218 
219 	/*
220 	 * Do the stuff that we need root priv's for *first*, and
221 	 * then drop our setuid bit.  Save error reporting for
222 	 * after arg parsing.
223 	 */
224 	s = socket(AF_INET, SOCK_RAW, IPPROTO_ICMP);
225 	sockerrno = errno;
226 
227 	setuid(getuid());
228 	uid = getuid();
229 
230 	alarmtimeout = preload = 0;
231 
232 	datap = &outpack[MINICMPLEN + PHDR_LEN];
233 	while ((ch = getopt(argc, argv,
234 		"AI:LQRS:T:c:adfi:l:m:np:qrs:t:v"
235 #ifdef IPSEC
236 #ifdef IPSEC_POLICY_IPSEC
237 		"P:"
238 #endif /*IPSEC_POLICY_IPSEC*/
239 #endif /*IPSEC*/
240 		)) != -1)
241 	{
242 		switch(ch) {
243 		case 'A':
244 			options |= F_MISSED;
245 			break;
246 		case 'a':
247 			options |= F_AUDIBLE;
248 			break;
249 		case 'c':
250 			ultmp = strtoul(optarg, &ep, 0);
251 			if (*ep || ep == optarg || ultmp > LONG_MAX || !ultmp)
252 				errx(EX_USAGE,
253 				    "invalid count of packets to transmit: `%s'",
254 				    optarg);
255 			npackets = ultmp;
256 			break;
257 		case 'd':
258 			options |= F_SO_DEBUG;
259 			break;
260 		case 'f':
261 			if (uid) {
262 				errno = EPERM;
263 				err(EX_NOPERM, "-f flag");
264 			}
265 			options |= F_FLOOD;
266 			setbuf(stdout, (char *)NULL);
267 			break;
268 		case 'i':		/* wait between sending packets */
269 			t = strtod(optarg, &ep) * 1000.0;
270 			if (*ep || ep == optarg || t > (double)INT_MAX)
271 				errx(EX_USAGE, "invalid timing interval: `%s'",
272 				    optarg);
273 			options |= F_INTERVAL;
274 			interval = (int)t;
275 			if (uid && interval < 1000) {
276 				errno = EPERM;
277 				err(EX_NOPERM, "-i interval too short");
278 			}
279 			break;
280 		case 'I':		/* multicast interface */
281 			if (inet_aton(optarg, &ifaddr) == 0)
282 				errx(EX_USAGE,
283 				    "invalid multicast interface: `%s'",
284 				    optarg);
285 			options |= F_MIF;
286 			break;
287 		case 'l':
288 			ultmp = strtoul(optarg, &ep, 0);
289 			if (*ep || ep == optarg || ultmp > INT_MAX)
290 				errx(EX_USAGE,
291 				    "invalid preload value: `%s'", optarg);
292 			if (uid) {
293 				errno = EPERM;
294 				err(EX_NOPERM, "-l flag");
295 			}
296 			preload = ultmp;
297 			break;
298 		case 'L':
299 			options |= F_NOLOOP;
300 			loop = 0;
301 			break;
302 		case 'm':		/* TTL */
303 			ultmp = strtoul(optarg, &ep, 0);
304 			if (*ep || ep == optarg || ultmp > 255)
305 				errx(EX_USAGE, "invalid TTL: `%s'", optarg);
306 			ttl = ultmp;
307 			options |= F_TTL;
308 			break;
309 		case 'n':
310 			options |= F_NUMERIC;
311 			break;
312 		case 'p':		/* fill buffer with user pattern */
313 			options |= F_PINGFILLED;
314 			fill((char *)datap, optarg);
315 				break;
316 		case 'Q':
317 			options |= F_QUIET2;
318 			break;
319 		case 'q':
320 			options |= F_QUIET;
321 			break;
322 		case 'R':
323 			options |= F_RROUTE;
324 			break;
325 		case 'r':
326 			options |= F_SO_DONTROUTE;
327 			break;
328 		case 's':		/* size of packet to send */
329 			if (uid) {
330 				errno = EPERM;
331 				err(EX_NOPERM, "-s flag");
332 			}
333 			ultmp = strtoul(optarg, &ep, 0);
334 			if (ultmp > MAXPAYLOAD)
335 				errx(EX_USAGE,
336 				    "packet size too large: %lu > %u",
337 				    ultmp, MAXPAYLOAD);
338 			if (*ep || ep == optarg)
339 				errx(EX_USAGE, "invalid packet size: `%s'",
340 				    optarg);
341 			datalen = ultmp;
342 			break;
343 		case 'S':
344 			source = optarg;
345 			break;
346 		case 't':
347 			alarmtimeout = strtoul(optarg, &ep, 0);
348 			if ((alarmtimeout < 1) || (alarmtimeout == ULONG_MAX))
349 				errx(EX_USAGE, "invalid timeout: `%s'",
350 				    optarg);
351 			if (alarmtimeout > MAXALARM)
352 				errx(EX_USAGE, "invalid timeout: `%s' > %d",
353 				    optarg, MAXALARM);
354 			alarm((int)alarmtimeout);
355 			break;
356 		case 'T':		/* multicast TTL */
357 			ultmp = strtoul(optarg, &ep, 0);
358 			if (*ep || ep == optarg || ultmp > 255)
359 				errx(EX_USAGE, "invalid multicast TTL: `%s'",
360 				    optarg);
361 			mttl = ultmp;
362 			options |= F_MTTL;
363 			break;
364 		case 'v':
365 			options |= F_VERBOSE;
366 			break;
367 #ifdef IPSEC
368 #ifdef IPSEC_POLICY_IPSEC
369 		case 'P':
370 			options |= F_POLICY;
371 			if (!strncmp("in", optarg, 2))
372 				policy_in = strdup(optarg);
373 			else if (!strncmp("out", optarg, 3))
374 				policy_out = strdup(optarg);
375 			else
376 				errx(1, "invalid security policy");
377 			break;
378 #endif /*IPSEC_POLICY_IPSEC*/
379 #endif /*IPSEC*/
380 		default:
381 			usage();
382 		}
383 	}
384 
385 	if (argc - optind != 1)
386 		usage();
387 	target = argv[optind];
388 
389 	if (source) {
390 		bzero((char *)&sin, sizeof(sin));
391 		sin.sin_family = AF_INET;
392 		if (inet_aton(source, &sin.sin_addr) != 0) {
393 			shostname = source;
394 		} else {
395 			hp = gethostbyname2(source, AF_INET);
396 			if (!hp)
397 				errx(EX_NOHOST, "cannot resolve %s: %s",
398 				    source, hstrerror(h_errno));
399 
400 			sin.sin_len = sizeof sin;
401 			if (hp->h_length > sizeof(sin.sin_addr) ||
402 			    hp->h_length < 0)
403 				errx(1, "gethostbyname2: illegal address");
404 			memcpy(&sin.sin_addr, hp->h_addr_list[0],
405 			    sizeof(sin.sin_addr));
406 			(void)strncpy(snamebuf, hp->h_name,
407 			    sizeof(snamebuf) - 1);
408 			snamebuf[sizeof(snamebuf) - 1] = '\0';
409 			shostname = snamebuf;
410 		}
411 		if (bind(s, (struct sockaddr *)&sin, sizeof sin) == -1)
412 			err(1, "bind");
413 	}
414 
415 	bzero(&whereto, sizeof(whereto));
416 	to = &whereto;
417 	to->sin_family = AF_INET;
418 	to->sin_len = sizeof *to;
419 	if (inet_aton(target, &to->sin_addr) != 0) {
420 		hostname = target;
421 	} else {
422 		hp = gethostbyname2(target, AF_INET);
423 		if (!hp)
424 			errx(EX_NOHOST, "cannot resolve %s: %s",
425 			    target, hstrerror(h_errno));
426 
427 		if (hp->h_length > sizeof(to->sin_addr))
428 			errx(1, "gethostbyname2 returned an illegal address");
429 		memcpy(&to->sin_addr, hp->h_addr_list[0], sizeof to->sin_addr);
430 		(void)strncpy(hnamebuf, hp->h_name, sizeof(hnamebuf) - 1);
431 		hnamebuf[sizeof(hnamebuf) - 1] = '\0';
432 		hostname = hnamebuf;
433 	}
434 
435 	if (options & F_FLOOD && options & F_INTERVAL)
436 		errx(EX_USAGE, "-f and -i: incompatible options");
437 
438 	if (options & F_FLOOD && IN_MULTICAST(ntohl(to->sin_addr.s_addr)))
439 		errx(EX_USAGE,
440 		    "-f flag cannot be used with multicast destination");
441 	if (options & (F_MIF | F_NOLOOP | F_MTTL)
442 	    && !IN_MULTICAST(ntohl(to->sin_addr.s_addr)))
443 		errx(EX_USAGE,
444 		    "-I, -L, -T flags cannot be used with unicast destination");
445 
446 	if (datalen >= PHDR_LEN)	/* can we time transfer */
447 		timing = 1;
448 	packlen = MAXIPLEN + MAXICMPLEN + datalen;
449 	packlen = packlen > IP_MAXPACKET ? IP_MAXPACKET : packlen;
450 
451 	if (!(options & F_PINGFILLED))
452 		for (i = PHDR_LEN; i < datalen; ++i)
453 			*datap++ = i;
454 
455 	ident = getpid() & 0xFFFF;
456 
457 	if (s < 0) {
458 		errno = sockerrno;
459 		err(EX_OSERR, "socket");
460 	}
461 	hold = 1;
462 	if (options & F_SO_DEBUG)
463 		(void)setsockopt(s, SOL_SOCKET, SO_DEBUG, (char *)&hold,
464 		    sizeof(hold));
465 	if (options & F_SO_DONTROUTE)
466 		(void)setsockopt(s, SOL_SOCKET, SO_DONTROUTE, (char *)&hold,
467 		    sizeof(hold));
468 #ifdef IPSEC
469 #ifdef IPSEC_POLICY_IPSEC
470 	if (options & F_POLICY) {
471 		char *buf;
472 		if (policy_in != NULL) {
473 			buf = ipsec_set_policy(policy_in, strlen(policy_in));
474 			if (buf == NULL)
475 				errx(EX_CONFIG, "%s", ipsec_strerror());
476 			if (setsockopt(s, IPPROTO_IP, IP_IPSEC_POLICY,
477 					buf, ipsec_get_policylen(buf)) < 0)
478 				err(EX_CONFIG,
479 				    "ipsec policy cannot be configured");
480 			free(buf);
481 		}
482 
483 		if (policy_out != NULL) {
484 			buf = ipsec_set_policy(policy_out, strlen(policy_out));
485 			if (buf == NULL)
486 				errx(EX_CONFIG, "%s", ipsec_strerror());
487 			if (setsockopt(s, IPPROTO_IP, IP_IPSEC_POLICY,
488 					buf, ipsec_get_policylen(buf)) < 0)
489 				err(EX_CONFIG,
490 				    "ipsec policy cannot be configured");
491 			free(buf);
492 		}
493 	}
494 #endif /*IPSEC_POLICY_IPSEC*/
495 #endif /*IPSEC*/
496 
497 	/* record route option */
498 	if (options & F_RROUTE) {
499 #ifdef IP_OPTIONS
500 		bzero(rspace, sizeof(rspace));
501 		rspace[IPOPT_OPTVAL] = IPOPT_RR;
502 		rspace[IPOPT_OLEN] = sizeof(rspace) - 1;
503 		rspace[IPOPT_OFFSET] = IPOPT_MINOFF;
504 		rspace[sizeof(rspace) - 1] = IPOPT_EOL;
505 		if (setsockopt(s, IPPROTO_IP, IP_OPTIONS, rspace,
506 		    sizeof(rspace)) < 0)
507 			err(EX_OSERR, "setsockopt IP_OPTIONS");
508 #else
509 		errx(EX_UNAVAILABLE,
510 		    "record route not available in this implementation");
511 #endif /* IP_OPTIONS */
512 	}
513 
514 	if (options & F_TTL) {
515 		if (setsockopt(s, IPPROTO_IP, IP_TTL, &ttl,
516 		    sizeof(ttl)) < 0) {
517 			err(EX_OSERR, "setsockopt IP_TTL");
518 		}
519 	}
520 	if (options & F_NOLOOP) {
521 		if (setsockopt(s, IPPROTO_IP, IP_MULTICAST_LOOP, &loop,
522 		    sizeof(loop)) < 0) {
523 			err(EX_OSERR, "setsockopt IP_MULTICAST_LOOP");
524 		}
525 	}
526 	if (options & F_MTTL) {
527 		if (setsockopt(s, IPPROTO_IP, IP_MULTICAST_TTL, &mttl,
528 		    sizeof(mttl)) < 0) {
529 			err(EX_OSERR, "setsockopt IP_MULTICAST_TTL");
530 		}
531 	}
532 	if (options & F_MIF) {
533 		if (setsockopt(s, IPPROTO_IP, IP_MULTICAST_IF, &ifaddr,
534 		    sizeof(ifaddr)) < 0) {
535 			err(EX_OSERR, "setsockopt IP_MULTICAST_IF");
536 		}
537 	}
538 #ifdef SO_TIMESTAMP
539 	{ int on = 1;
540 	if (setsockopt(s, SOL_SOCKET, SO_TIMESTAMP, &on, sizeof(on)) < 0)
541 		err(EX_OSERR, "setsockopt SO_TIMESTAMP");
542 	}
543 #endif
544 
545 	/*
546 	 * When pinging the broadcast address, you can get a lot of answers.
547 	 * Doing something so evil is useful if you are trying to stress the
548 	 * ethernet, or just want to fill the arp cache to get some stuff for
549 	 * /etc/ethers.  But beware: RFC 1122 allows hosts to ignore broadcast
550 	 * or multicast pings if they wish.
551 	 */
552 
553 	/*
554 	 * XXX receive buffer needs undetermined space for mbuf overhead
555 	 * as well.
556 	 */
557 	hold = IP_MAXPACKET + 128;
558 	(void)setsockopt(s, SOL_SOCKET, SO_RCVBUF, (char *)&hold,
559 	    sizeof(hold));
560 
561 	if (!uid) {
562 		(void)setsockopt(s, SOL_SOCKET, SO_SNDBUF, (char *)&hold,
563 		    sizeof(hold));
564 	}
565 
566 	if (to->sin_family == AF_INET) {
567 		(void)printf("PING %s (%s)", hostname,
568 		    inet_ntoa(to->sin_addr));
569 		if (source)
570 			(void)printf(" from %s", shostname);
571 		(void)printf(": %d data bytes\n", datalen);
572 	} else
573 		(void)printf("PING %s: %d data bytes\n", hostname, datalen);
574 
575 	/*
576 	 * Use sigaction() instead of signal() to get unambiguous semantics,
577 	 * in particular with SA_RESTART not set.
578 	 */
579 
580 	sigemptyset(&si_sa.sa_mask);
581 	si_sa.sa_flags = 0;
582 
583 	si_sa.sa_handler = stopit;
584 	if (sigaction(SIGINT, &si_sa, 0) == -1) {
585 		err(EX_OSERR, "sigaction SIGINT");
586 	}
587 
588 	si_sa.sa_handler = status;
589 	if (sigaction(SIGINFO, &si_sa, 0) == -1) {
590 		err(EX_OSERR, "sigaction");
591 	}
592 
593         if (alarmtimeout > 0) {
594 		si_sa.sa_handler = stopit;
595 		if (sigaction(SIGALRM, &si_sa, 0) == -1)
596 			err(EX_OSERR, "sigaction SIGALRM");
597         }
598 
599 	bzero(&msg, sizeof(msg));
600 	msg.msg_name = (caddr_t)&from;
601 	msg.msg_iov = &iov;
602 	msg.msg_iovlen = 1;
603 #ifdef SO_TIMESTAMP
604 	msg.msg_control = (caddr_t)ctrl;
605 #endif
606 	iov.iov_base = packet;
607 	iov.iov_len = packlen;
608 
609 	if (tcgetattr(STDOUT_FILENO, &ts) != -1) {
610 		reset_kerninfo = !(ts.c_lflag & NOKERNINFO);
611 		ts.c_lflag |= NOKERNINFO;
612 		tcsetattr(STDOUT_FILENO, TCSANOW, &ts);
613 	}
614 
615 	if (preload == 0)
616 		pinger();		/* send the first ping */
617 	else {
618 		if (npackets != 0 && preload > npackets)
619 			preload = npackets;
620 		while (preload--)	/* fire off them quickies */
621 			pinger();
622 	}
623 	(void)gettimeofday(&last, NULL);
624 
625 	if (options & F_FLOOD) {
626 		intvl.tv_sec = 0;
627 		intvl.tv_usec = 10000;
628 	} else {
629 		intvl.tv_sec = interval / 1000;
630 		intvl.tv_usec = interval % 1000 * 1000;
631 	}
632 
633 	while (!finish_up) {
634 		int cc;
635 		int n;
636 		struct timeval timeout, now;
637 		fd_set rfds;
638 
639 		check_status();
640 		if (s >= FD_SETSIZE)
641 			errx(EX_OSERR, "descriptor too large");
642 		FD_ZERO(&rfds);
643 		FD_SET(s, &rfds);
644 		(void)gettimeofday(&now, NULL);
645 		timeout.tv_sec = last.tv_sec + intvl.tv_sec - now.tv_sec;
646 		timeout.tv_usec = last.tv_usec + intvl.tv_usec - now.tv_usec;
647 		while (timeout.tv_usec < 0) {
648 			timeout.tv_usec += 1000000;
649 			timeout.tv_sec--;
650 		}
651 		while (timeout.tv_usec >= 1000000) {
652 			timeout.tv_usec -= 1000000;
653 			timeout.tv_sec++;
654 		}
655 		if (timeout.tv_sec < 0)
656 			timeout.tv_sec = timeout.tv_usec = 0;
657 		n = select(s + 1, &rfds, NULL, NULL, &timeout);
658 		if (n < 0)
659 			continue;	/* Must be EINTR. */
660 		if (n == 1) {
661 			struct timeval *t = 0;
662 #ifdef SO_TIMESTAMP
663 			struct cmsghdr *cmsg = (struct cmsghdr *)&ctrl;
664 
665 			msg.msg_controllen = sizeof(ctrl);
666 #endif
667 			msg.msg_namelen = sizeof(from);
668 			if ((cc = recvmsg(s, &msg, 0)) < 0) {
669 				if (errno == EINTR)
670 					continue;
671 				warn("recvmsg");
672 				continue;
673 			}
674 #ifdef SO_TIMESTAMP
675 			if (cmsg->cmsg_level == SOL_SOCKET &&
676 			    cmsg->cmsg_type == SCM_TIMESTAMP &&
677 			    cmsg->cmsg_len == CMSG_LEN(sizeof *t)) {
678 				/* Copy to avoid alignment problems: */
679 				memcpy(&now,CMSG_DATA(cmsg),sizeof(now));
680 				t = &now;
681 			}
682 #endif
683 			if (t == 0) {
684 				(void)gettimeofday(&now, NULL);
685 				t = &now;
686 			}
687 			pr_pack((char *)packet, cc, &from, t);
688 			if (npackets && nreceived >= npackets)
689 				break;
690 		}
691 		if (n == 0 || options & F_FLOOD) {
692 			if (!npackets || ntransmitted < npackets)
693 				pinger();
694 			else {
695 				if (almost_done)
696 					break;
697 				almost_done = 1;
698 				intvl.tv_usec = 0;
699 				if (nreceived) {
700 					intvl.tv_sec = 2 * tmax / 1000;
701 					if (!intvl.tv_sec)
702 						intvl.tv_sec = 1;
703 				} else
704 					intvl.tv_sec = MAXWAIT;
705 			}
706 			(void)gettimeofday(&last, NULL);
707 
708 			if (ntransmitted - nreceived - 1 > nmissedmax) {
709 				nmissedmax = ntransmitted - nreceived - 1;
710 				if (options & F_MISSED)
711 					(void)write(STDOUT_FILENO, &BBELL, 1);
712 			}
713 		}
714 	}
715 	finish();
716 	/* NOTREACHED */
717 	exit(0);	/* Make the compiler happy */
718 }
719 
720 /*
721  * stopit --
722  *	Set the global bit that causes the main loop to quit.
723  * Do NOT call finish() from here, since finish() does far too much
724  * to be called from a signal handler.
725  */
726 void
727 stopit(int sig __unused)
728 {
729 
730 	finish_up = 1;
731 }
732 
733 /*
734  * pinger --
735  *	Compose and transmit an ICMP ECHO REQUEST packet.  The IP packet
736  * will be added on by the kernel.  The ID field is our UNIX process ID,
737  * and the sequence number is an ascending integer.  The first PHDR_LEN
738  * bytes of the data portion are used to hold a UNIX "timeval" struct in
739  * host byte-order, to compute the round-trip time.
740  */
741 static void
742 pinger(void)
743 {
744 	struct icmp *icp;
745 	int cc, i;
746 
747 	icp = (struct icmp *)outpack;
748 	icp->icmp_type = ICMP_ECHO;
749 	icp->icmp_code = 0;
750 	icp->icmp_cksum = 0;
751 	icp->icmp_seq = ntransmitted;
752 	icp->icmp_id = ident;			/* ID */
753 
754 	CLR(icp->icmp_seq % mx_dup_ck);
755 
756 	if (timing)
757 		(void)gettimeofday((struct timeval *)&outpack[MINICMPLEN],
758 		    (struct timezone *)NULL);
759 
760 	cc = MINICMPLEN + datalen;
761 
762 	/* compute ICMP checksum here */
763 	icp->icmp_cksum = in_cksum((u_short *)icp, cc);
764 
765 	i = sendto(s, (char *)outpack, cc, 0, (struct sockaddr *)&whereto,
766 	    sizeof(whereto));
767 
768 	if (i < 0 || i != cc)  {
769 		if (i < 0) {
770 			if (options & F_FLOOD && errno == ENOBUFS) {
771 				usleep(FLOOD_BACKOFF);
772 				return;
773 			}
774 			warn("sendto");
775 		} else {
776 			warn("%s: partial write: %d of %d bytes",
777 			     hostname, i, cc);
778 		}
779 	}
780 	ntransmitted++;
781 	if (!(options & F_QUIET) && options & F_FLOOD)
782 		(void)write(STDOUT_FILENO, &DOT, 1);
783 }
784 
785 /*
786  * pr_pack --
787  *	Print out the packet, if it came from us.  This logic is necessary
788  * because ALL readers of the ICMP socket get a copy of ALL ICMP packets
789  * which arrive ('tis only fair).  This permits multiple copies of this
790  * program to be run without having intermingled output (or statistics!).
791  */
792 static void
793 pr_pack(char *buf, int cc, struct sockaddr_in *from, struct timeval *tv)
794 {
795 	struct icmp *icp;
796 	struct ip *ip;
797 	struct in_addr ina;
798 	struct timeval *tp;
799 	u_char *cp, *dp;
800 	double triptime;
801 	int dupflag, hlen, i, j;
802 	static int old_rrlen;
803 	static char old_rr[MAX_IPOPTLEN];
804 
805 	/* Check the IP header */
806 	ip = (struct ip *)buf;
807 	hlen = ip->ip_hl << 2;
808 	if (cc < hlen + ICMP_MINLEN) {
809 		if (options & F_VERBOSE)
810 			warn("packet too short (%d bytes) from %s", cc,
811 			     inet_ntoa(from->sin_addr));
812 		return;
813 	}
814 
815 	/* Now the ICMP part */
816 	cc -= hlen;
817 	icp = (struct icmp *)(buf + hlen);
818 	if (icp->icmp_type == ICMP_ECHOREPLY) {
819 		if (icp->icmp_id != ident)
820 			return;			/* 'Twas not our ECHO */
821 		++nreceived;
822 		triptime = 0.0;
823 		if (timing) {
824 			struct timeval tv1;
825 #ifndef icmp_data
826 			tp = (struct timeval *)&icp->icmp_ip;
827 #else
828 			tp = (struct timeval *)icp->icmp_data;
829 #endif
830 			/* Avoid unaligned data: */
831 			memcpy(&tv1,tp,sizeof(tv1));
832 			tvsub(tv, &tv1);
833  			triptime = ((double)tv->tv_sec) * 1000.0 +
834  			    ((double)tv->tv_usec) / 1000.0;
835 			tsum += triptime;
836 			tsumsq += triptime * triptime;
837 			if (triptime < tmin)
838 				tmin = triptime;
839 			if (triptime > tmax)
840 				tmax = triptime;
841 		}
842 
843 		if (TST(icp->icmp_seq % mx_dup_ck)) {
844 			++nrepeats;
845 			--nreceived;
846 			dupflag = 1;
847 		} else {
848 			SET(icp->icmp_seq % mx_dup_ck);
849 			dupflag = 0;
850 		}
851 
852 		if (options & F_QUIET)
853 			return;
854 
855 		if (options & F_FLOOD)
856 			(void)write(STDOUT_FILENO, &BSPACE, 1);
857 		else {
858 			(void)printf("%d bytes from %s: icmp_seq=%u", cc,
859 			   inet_ntoa(*(struct in_addr *)&from->sin_addr.s_addr),
860 			   icp->icmp_seq);
861 			(void)printf(" ttl=%d", ip->ip_ttl);
862 			if (timing)
863 				(void)printf(" time=%.3f ms", triptime);
864 			if (dupflag)
865 				(void)printf(" (DUP!)");
866 			if (options & F_AUDIBLE)
867 				(void)write(STDOUT_FILENO, &BBELL, 1);
868 			/* check the data */
869 			cp = (u_char*)&icp->icmp_data[PHDR_LEN];
870 			dp = &outpack[MINICMPLEN + PHDR_LEN];
871 			for (i = PHDR_LEN; i < datalen; ++i, ++cp, ++dp) {
872 				if (*cp != *dp) {
873 	(void)printf("\nwrong data byte #%d should be 0x%x but was 0x%x",
874 	    i, *dp, *cp);
875 					(void)printf("\ncp:");
876 					cp = (u_char*)&icp->icmp_data[0];
877 					for (i = 0; i < datalen; ++i, ++cp) {
878 						if ((i % 32) == 8)
879 							(void)printf("\n\t");
880 						(void)printf("%x ", *cp);
881 					}
882 					(void)printf("\ndp:");
883 					cp = &outpack[MINICMPLEN];
884 					for (i = 0; i < datalen; ++i, ++cp) {
885 						if ((i % 32) == 8)
886 							(void)printf("\n\t");
887 						(void)printf("%x ", *cp);
888 					}
889 					break;
890 				}
891 			}
892 		}
893 	} else {
894 		/*
895 		 * We've got something other than an ECHOREPLY.
896 		 * See if it's a reply to something that we sent.
897 		 * We can compare IP destination, protocol,
898 		 * and ICMP type and ID.
899 		 *
900 		 * Only print all the error messages if we are running
901 		 * as root to avoid leaking information not normally
902 		 * available to those not running as root.
903 		 */
904 #ifndef icmp_data
905 		struct ip *oip = &icp->icmp_ip;
906 #else
907 		struct ip *oip = (struct ip *)icp->icmp_data;
908 #endif
909 		struct icmp *oicmp = (struct icmp *)(oip + 1);
910 
911 		if (((options & F_VERBOSE) && uid == 0) ||
912 		    (!(options & F_QUIET2) &&
913 		     (oip->ip_dst.s_addr == whereto.sin_addr.s_addr) &&
914 		     (oip->ip_p == IPPROTO_ICMP) &&
915 		     (oicmp->icmp_type == ICMP_ECHO) &&
916 		     (oicmp->icmp_id == ident))) {
917 		    (void)printf("%d bytes from %s: ", cc,
918 			pr_addr(from->sin_addr));
919 		    pr_icmph(icp);
920 		} else
921 		    return;
922 	}
923 
924 	/* Display any IP options */
925 	cp = (u_char *)buf + sizeof(struct ip);
926 
927 	for (; hlen > (int)sizeof(struct ip); --hlen, ++cp)
928 		switch (*cp) {
929 		case IPOPT_EOL:
930 			hlen = 0;
931 			break;
932 		case IPOPT_LSRR:
933 			(void)printf("\nLSRR: ");
934 			j = cp[IPOPT_OLEN] - IPOPT_MINOFF + 1;
935 			hlen -= 2;
936 			cp += 2;
937 			if (j >= INADDR_LEN &&
938 			    j <= hlen - (int)sizeof(struct ip)) {
939 				for (;;) {
940 					bcopy(++cp, &ina.s_addr, INADDR_LEN);
941 					if (ina.s_addr == 0)
942 						(void)printf("\t0.0.0.0");
943 					else
944 						(void)printf("\t%s",
945 						     pr_addr(ina));
946 					hlen -= INADDR_LEN;
947 					cp += INADDR_LEN - 1;
948 					j -= INADDR_LEN;
949 					if (j < INADDR_LEN)
950 						break;
951 					(void)putchar('\n');
952 				}
953 			} else
954 				(void)printf("\t(truncated route)\n");
955 			break;
956 		case IPOPT_RR:
957 			j = cp[IPOPT_OLEN];		/* get length */
958 			i = cp[IPOPT_OFFSET];		/* and pointer */
959 			hlen -= 2;
960 			cp += 2;
961 			if (i > j)
962 				i = j;
963 			i = i - IPOPT_MINOFF + 1;
964 			if (i < 0 || i > (hlen - (int)sizeof(struct ip))) {
965 				old_rrlen = 0;
966 				continue;
967 			}
968 			if (i == old_rrlen
969 			    && !bcmp((char *)cp, old_rr, i)
970 			    && !(options & F_FLOOD)) {
971 				(void)printf("\t(same route)");
972 				hlen -= i;
973 				cp += i;
974 				break;
975 			}
976 			old_rrlen = i;
977 			bcopy((char *)cp, old_rr, i);
978 
979 			(void)printf("\nRR: ");
980 
981 			if (i >= INADDR_LEN &&
982 			    i <= hlen - (int)sizeof(struct ip)) {
983 				for (;;) {
984 					bcopy(++cp, &ina.s_addr, INADDR_LEN);
985 					if (ina.s_addr == 0)
986 						(void)printf("\t0.0.0.0");
987 					else
988 						(void)printf("\t%s",
989 						     pr_addr(ina));
990 					hlen -= INADDR_LEN;
991 					cp += INADDR_LEN - 1;
992 					i -= INADDR_LEN;
993 					if (i < INADDR_LEN)
994 						break;
995 					(void)putchar('\n');
996 				}
997 			} else
998 				(void)printf("\t(truncated route)");
999 			break;
1000 		case IPOPT_NOP:
1001 			(void)printf("\nNOP");
1002 			break;
1003 		default:
1004 			(void)printf("\nunknown option %x", *cp);
1005 			break;
1006 		}
1007 	if (!(options & F_FLOOD)) {
1008 		(void)putchar('\n');
1009 		(void)fflush(stdout);
1010 	}
1011 }
1012 
1013 /*
1014  * in_cksum --
1015  *	Checksum routine for Internet Protocol family headers (C Version)
1016  */
1017 u_short
1018 in_cksum(u_short *addr, int len)
1019 {
1020 	int nleft, sum;
1021 	u_short *w;
1022 	union {
1023 		u_short	us;
1024 		u_char	uc[2];
1025 	} last;
1026 	u_short answer;
1027 
1028 	nleft = len;
1029 	sum = 0;
1030 	w = addr;
1031 
1032 	/*
1033 	 * Our algorithm is simple, using a 32 bit accumulator (sum), we add
1034 	 * sequential 16 bit words to it, and at the end, fold back all the
1035 	 * carry bits from the top 16 bits into the lower 16 bits.
1036 	 */
1037 	while (nleft > 1)  {
1038 		sum += *w++;
1039 		nleft -= 2;
1040 	}
1041 
1042 	/* mop up an odd byte, if necessary */
1043 	if (nleft == 1) {
1044 		last.uc[0] = *(u_char *)w;
1045 		last.uc[1] = 0;
1046 		sum += last.us;
1047 	}
1048 
1049 	/* add back carry outs from top 16 bits to low 16 bits */
1050 	sum = (sum >> 16) + (sum & 0xffff);	/* add hi 16 to low 16 */
1051 	sum += (sum >> 16);			/* add carry */
1052 	answer = ~sum;				/* truncate to 16 bits */
1053 	return(answer);
1054 }
1055 
1056 /*
1057  * tvsub --
1058  *	Subtract 2 timeval structs:  out = out - in.  Out is assumed to
1059  * be >= in.
1060  */
1061 static void
1062 tvsub(struct timeval *out, struct timeval *in)
1063 {
1064 
1065 	if ((out->tv_usec -= in->tv_usec) < 0) {
1066 		--out->tv_sec;
1067 		out->tv_usec += 1000000;
1068 	}
1069 	out->tv_sec -= in->tv_sec;
1070 }
1071 
1072 /*
1073  * status --
1074  *	Print out statistics when SIGINFO is received.
1075  */
1076 
1077 static void
1078 status(int sig __unused)
1079 {
1080 
1081 	siginfo_p = 1;
1082 }
1083 
1084 static void
1085 check_status(void)
1086 {
1087 
1088 	if (siginfo_p) {
1089 		siginfo_p = 0;
1090 		(void)fprintf(stderr,
1091 	"\r%ld/%ld packets received (%.0f%%) %.3f min / %.3f avg / %.3f max\n",
1092 		    nreceived, ntransmitted,
1093 		    ntransmitted ? nreceived * 100.0 / ntransmitted : 0.0,
1094 		    nreceived ? tmin : 0.0,
1095 		    nreceived + nrepeats ? tsum / (nreceived + nrepeats) : tsum,
1096 		    tmax);
1097 	}
1098 }
1099 
1100 /*
1101  * finish --
1102  *	Print out statistics, and give up.
1103  */
1104 static void
1105 finish(void)
1106 {
1107 
1108 	struct termios ts;
1109 
1110 	(void)signal(SIGINT, SIG_IGN);
1111 	(void)signal(SIGALRM, SIG_IGN);
1112 	(void)putchar('\n');
1113 	(void)fflush(stdout);
1114 	(void)printf("--- %s ping statistics ---\n", hostname);
1115 	(void)printf("%ld packets transmitted, ", ntransmitted);
1116 	(void)printf("%ld packets received, ", nreceived);
1117 	if (nrepeats)
1118 		(void)printf("+%ld duplicates, ", nrepeats);
1119 	if (ntransmitted) {
1120 		if (nreceived > ntransmitted)
1121 			(void)printf("-- somebody's printing up packets!");
1122 		else
1123 			(void)printf("%d%% packet loss",
1124 			    (int)(((ntransmitted - nreceived) * 100) /
1125 			    ntransmitted));
1126 	}
1127 	(void)putchar('\n');
1128 	if (nreceived && timing) {
1129 		double n = nreceived + nrepeats;
1130 		double avg = tsum / n;
1131 		double vari = tsumsq / n - avg * avg;
1132 		(void)printf(
1133 		    "round-trip min/avg/max/stddev = %.3f/%.3f/%.3f/%.3f ms\n",
1134 		    tmin, avg, tmax, sqrt(vari));
1135 	}
1136 	if (reset_kerninfo && tcgetattr(STDOUT_FILENO, &ts) != -1) {
1137 		ts.c_lflag &= ~NOKERNINFO;
1138 		tcsetattr(STDOUT_FILENO, TCSANOW, &ts);
1139 	}
1140 
1141 	if (nreceived)
1142 		exit(0);
1143 	else
1144 		exit(2);
1145 }
1146 
1147 #ifdef notdef
1148 static char *ttab[] = {
1149 	"Echo Reply",		/* ip + seq + udata */
1150 	"Dest Unreachable",	/* net, host, proto, port, frag, sr + IP */
1151 	"Source Quench",	/* IP */
1152 	"Redirect",		/* redirect type, gateway, + IP  */
1153 	"Echo",
1154 	"Time Exceeded",	/* transit, frag reassem + IP */
1155 	"Parameter Problem",	/* pointer + IP */
1156 	"Timestamp",		/* id + seq + three timestamps */
1157 	"Timestamp Reply",	/* " */
1158 	"Info Request",		/* id + sq */
1159 	"Info Reply"		/* " */
1160 };
1161 #endif
1162 
1163 /*
1164  * pr_icmph --
1165  *	Print a descriptive string about an ICMP header.
1166  */
1167 static void
1168 pr_icmph(struct icmp *icp)
1169 {
1170 
1171 	switch(icp->icmp_type) {
1172 	case ICMP_ECHOREPLY:
1173 		(void)printf("Echo Reply\n");
1174 		/* XXX ID + Seq + Data */
1175 		break;
1176 	case ICMP_UNREACH:
1177 		switch(icp->icmp_code) {
1178 		case ICMP_UNREACH_NET:
1179 			(void)printf("Destination Net Unreachable\n");
1180 			break;
1181 		case ICMP_UNREACH_HOST:
1182 			(void)printf("Destination Host Unreachable\n");
1183 			break;
1184 		case ICMP_UNREACH_PROTOCOL:
1185 			(void)printf("Destination Protocol Unreachable\n");
1186 			break;
1187 		case ICMP_UNREACH_PORT:
1188 			(void)printf("Destination Port Unreachable\n");
1189 			break;
1190 		case ICMP_UNREACH_NEEDFRAG:
1191 			(void)printf("frag needed and DF set (MTU %d)\n",
1192 					ntohs(icp->icmp_nextmtu));
1193 			break;
1194 		case ICMP_UNREACH_SRCFAIL:
1195 			(void)printf("Source Route Failed\n");
1196 			break;
1197 		case ICMP_UNREACH_FILTER_PROHIB:
1198 			(void)printf("Communication prohibited by filter\n");
1199 			break;
1200 		default:
1201 			(void)printf("Dest Unreachable, Bad Code: %d\n",
1202 			    icp->icmp_code);
1203 			break;
1204 		}
1205 		/* Print returned IP header information */
1206 #ifndef icmp_data
1207 		pr_retip(&icp->icmp_ip);
1208 #else
1209 		pr_retip((struct ip *)icp->icmp_data);
1210 #endif
1211 		break;
1212 	case ICMP_SOURCEQUENCH:
1213 		(void)printf("Source Quench\n");
1214 #ifndef icmp_data
1215 		pr_retip(&icp->icmp_ip);
1216 #else
1217 		pr_retip((struct ip *)icp->icmp_data);
1218 #endif
1219 		break;
1220 	case ICMP_REDIRECT:
1221 		switch(icp->icmp_code) {
1222 		case ICMP_REDIRECT_NET:
1223 			(void)printf("Redirect Network");
1224 			break;
1225 		case ICMP_REDIRECT_HOST:
1226 			(void)printf("Redirect Host");
1227 			break;
1228 		case ICMP_REDIRECT_TOSNET:
1229 			(void)printf("Redirect Type of Service and Network");
1230 			break;
1231 		case ICMP_REDIRECT_TOSHOST:
1232 			(void)printf("Redirect Type of Service and Host");
1233 			break;
1234 		default:
1235 			(void)printf("Redirect, Bad Code: %d", icp->icmp_code);
1236 			break;
1237 		}
1238 		(void)printf("(New addr: %s)\n", inet_ntoa(icp->icmp_gwaddr));
1239 #ifndef icmp_data
1240 		pr_retip(&icp->icmp_ip);
1241 #else
1242 		pr_retip((struct ip *)icp->icmp_data);
1243 #endif
1244 		break;
1245 	case ICMP_ECHO:
1246 		(void)printf("Echo Request\n");
1247 		/* XXX ID + Seq + Data */
1248 		break;
1249 	case ICMP_TIMXCEED:
1250 		switch(icp->icmp_code) {
1251 		case ICMP_TIMXCEED_INTRANS:
1252 			(void)printf("Time to live exceeded\n");
1253 			break;
1254 		case ICMP_TIMXCEED_REASS:
1255 			(void)printf("Frag reassembly time exceeded\n");
1256 			break;
1257 		default:
1258 			(void)printf("Time exceeded, Bad Code: %d\n",
1259 			    icp->icmp_code);
1260 			break;
1261 		}
1262 #ifndef icmp_data
1263 		pr_retip(&icp->icmp_ip);
1264 #else
1265 		pr_retip((struct ip *)icp->icmp_data);
1266 #endif
1267 		break;
1268 	case ICMP_PARAMPROB:
1269 		(void)printf("Parameter problem: pointer = 0x%02x\n",
1270 		    icp->icmp_hun.ih_pptr);
1271 #ifndef icmp_data
1272 		pr_retip(&icp->icmp_ip);
1273 #else
1274 		pr_retip((struct ip *)icp->icmp_data);
1275 #endif
1276 		break;
1277 	case ICMP_TSTAMP:
1278 		(void)printf("Timestamp\n");
1279 		/* XXX ID + Seq + 3 timestamps */
1280 		break;
1281 	case ICMP_TSTAMPREPLY:
1282 		(void)printf("Timestamp Reply\n");
1283 		/* XXX ID + Seq + 3 timestamps */
1284 		break;
1285 	case ICMP_IREQ:
1286 		(void)printf("Information Request\n");
1287 		/* XXX ID + Seq */
1288 		break;
1289 	case ICMP_IREQREPLY:
1290 		(void)printf("Information Reply\n");
1291 		/* XXX ID + Seq */
1292 		break;
1293 	case ICMP_MASKREQ:
1294 		(void)printf("Address Mask Request\n");
1295 		break;
1296 	case ICMP_MASKREPLY:
1297 		(void)printf("Address Mask Reply\n");
1298 		break;
1299 	case ICMP_ROUTERADVERT:
1300 		(void)printf("Router Advertisement\n");
1301 		break;
1302 	case ICMP_ROUTERSOLICIT:
1303 		(void)printf("Router Solicitation\n");
1304 		break;
1305 	default:
1306 		(void)printf("Bad ICMP type: %d\n", icp->icmp_type);
1307 	}
1308 }
1309 
1310 /*
1311  * pr_iph --
1312  *	Print an IP header with options.
1313  */
1314 static void
1315 pr_iph(struct ip *ip)
1316 {
1317 	u_char *cp;
1318 	int hlen;
1319 
1320 	hlen = ip->ip_hl << 2;
1321 	cp = (u_char *)ip + 20;		/* point to options */
1322 
1323 	(void)printf("Vr HL TOS  Len   ID Flg  off TTL Pro  cks      Src      Dst\n");
1324 	(void)printf(" %1x  %1x  %02x %04x %04x",
1325 	    ip->ip_v, ip->ip_hl, ip->ip_tos, ntohs(ip->ip_len),
1326 	    ntohs(ip->ip_id));
1327 	(void)printf("   %1lx %04lx",
1328 	    (u_long) (ntohl(ip->ip_off) & 0xe000) >> 13,
1329 	    (u_long) ntohl(ip->ip_off) & 0x1fff);
1330 	(void)printf("  %02x  %02x %04x", ip->ip_ttl, ip->ip_p,
1331 							    ntohs(ip->ip_sum));
1332 	(void)printf(" %s ", inet_ntoa(*(struct in_addr *)&ip->ip_src.s_addr));
1333 	(void)printf(" %s ", inet_ntoa(*(struct in_addr *)&ip->ip_dst.s_addr));
1334 	/* dump any option bytes */
1335 	while (hlen-- > 20) {
1336 		(void)printf("%02x", *cp++);
1337 	}
1338 	(void)putchar('\n');
1339 }
1340 
1341 /*
1342  * pr_addr --
1343  *	Return an ascii host address as a dotted quad and optionally with
1344  * a hostname.
1345  */
1346 static char *
1347 pr_addr(struct in_addr ina)
1348 {
1349 	struct hostent *hp;
1350 	static char buf[16 + 3 + MAXHOSTNAMELEN];
1351 
1352 	if ((options & F_NUMERIC) ||
1353 	    !(hp = gethostbyaddr((char *)&ina, 4, AF_INET)))
1354 		return inet_ntoa(ina);
1355 	else
1356 		(void)snprintf(buf, sizeof(buf), "%s (%s)", hp->h_name,
1357 		    inet_ntoa(ina));
1358 	return(buf);
1359 }
1360 
1361 /*
1362  * pr_retip --
1363  *	Dump some info on a returned (via ICMP) IP packet.
1364  */
1365 static void
1366 pr_retip(struct ip *ip)
1367 {
1368 	u_char *cp;
1369 	int hlen;
1370 
1371 	pr_iph(ip);
1372 	hlen = ip->ip_hl << 2;
1373 	cp = (u_char *)ip + hlen;
1374 
1375 	if (ip->ip_p == 6)
1376 		(void)printf("TCP: from port %u, to port %u (decimal)\n",
1377 		    (*cp * 256 + *(cp + 1)), (*(cp + 2) * 256 + *(cp + 3)));
1378 	else if (ip->ip_p == 17)
1379 		(void)printf("UDP: from port %u, to port %u (decimal)\n",
1380 			(*cp * 256 + *(cp + 1)), (*(cp + 2) * 256 + *(cp + 3)));
1381 }
1382 
1383 static void
1384 fill(char *bp, char *patp)
1385 {
1386 	char *cp;
1387 	int pat[16];
1388 	u_int ii, jj, kk;
1389 
1390 	for (cp = patp; *cp; cp++) {
1391 		if (!isxdigit(*cp))
1392 			errx(EX_USAGE,
1393 			    "patterns must be specified as hex digits");
1394 
1395 	}
1396 	ii = sscanf(patp,
1397 	    "%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x",
1398 	    &pat[0], &pat[1], &pat[2], &pat[3], &pat[4], &pat[5], &pat[6],
1399 	    &pat[7], &pat[8], &pat[9], &pat[10], &pat[11], &pat[12],
1400 	    &pat[13], &pat[14], &pat[15]);
1401 
1402 	if (ii > 0)
1403 		for (kk = 0; kk <= MAXPAYLOAD - (PHDR_LEN + ii); kk += ii)
1404 			for (jj = 0; jj < ii; ++jj)
1405 				bp[jj + kk] = pat[jj];
1406 	if (!(options & F_QUIET)) {
1407 		(void)printf("PATTERN: 0x");
1408 		for (jj = 0; jj < ii; ++jj)
1409 			(void)printf("%02x", bp[jj] & 0xFF);
1410 		(void)printf("\n");
1411 	}
1412 }
1413 
1414 static void
1415 usage(void)
1416 {
1417 	(void)fprintf(stderr, "%s\n%s\n%s\n",
1418 "usage: ping [-AQRadfnqrv] [-c count] [-i wait] [-l preload] [-m ttl]",
1419 "            [-p pattern] "
1420 #ifdef IPSEC
1421 #ifdef IPSEC_POLICY_IPSEC
1422 "[-P policy] "
1423 #endif
1424 #endif
1425 "[-s packetsize] [-S src_addr] [-t timeout]",
1426 "            [host | [-L] [-I iface] [-T ttl] mcast-group]");
1427 	exit(EX_USAGE);
1428 }
1429