Home | History | Annotate | Line # | Download | only in ping
ping.c revision 1.8
      1  1.1      cgd /*
      2  1.8  mycroft  * Copyright (c) 1989, 1993
      3  1.8  mycroft  *	The Regents of the University of California.  All rights reserved.
      4  1.1      cgd  *
      5  1.1      cgd  * This code is derived from software contributed to Berkeley by
      6  1.1      cgd  * Mike Muuss.
      7  1.1      cgd  *
      8  1.1      cgd  * Redistribution and use in source and binary forms, with or without
      9  1.1      cgd  * modification, are permitted provided that the following conditions
     10  1.1      cgd  * are met:
     11  1.1      cgd  * 1. Redistributions of source code must retain the above copyright
     12  1.1      cgd  *    notice, this list of conditions and the following disclaimer.
     13  1.1      cgd  * 2. Redistributions in binary form must reproduce the above copyright
     14  1.1      cgd  *    notice, this list of conditions and the following disclaimer in the
     15  1.1      cgd  *    documentation and/or other materials provided with the distribution.
     16  1.1      cgd  * 3. All advertising materials mentioning features or use of this software
     17  1.1      cgd  *    must display the following acknowledgement:
     18  1.1      cgd  *	This product includes software developed by the University of
     19  1.1      cgd  *	California, Berkeley and its contributors.
     20  1.1      cgd  * 4. Neither the name of the University nor the names of its contributors
     21  1.1      cgd  *    may be used to endorse or promote products derived from this software
     22  1.1      cgd  *    without specific prior written permission.
     23  1.1      cgd  *
     24  1.1      cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     25  1.1      cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26  1.1      cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27  1.1      cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     28  1.1      cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29  1.1      cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30  1.1      cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31  1.1      cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32  1.1      cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33  1.1      cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34  1.1      cgd  * SUCH DAMAGE.
     35  1.1      cgd  */
     36  1.1      cgd 
     37  1.1      cgd #ifndef lint
     38  1.8  mycroft static char copyright[] =
     39  1.8  mycroft "@(#) Copyright (c) 1989, 1993\n\
     40  1.8  mycroft 	The Regents of the University of California.  All rights reserved.\n";
     41  1.1      cgd #endif /* not lint */
     42  1.1      cgd 
     43  1.1      cgd #ifndef lint
     44  1.8  mycroft /*static char sccsid[] = "from: @(#)ping.c	8.1 (Berkeley) 6/5/93";*/
     45  1.8  mycroft static char *rcsid = "$Id: ping.c,v 1.8 1994/09/23 01:39:00 mycroft Exp $";
     46  1.1      cgd #endif /* not lint */
     47  1.1      cgd 
     48  1.1      cgd /*
     49  1.1      cgd  *			P I N G . C
     50  1.1      cgd  *
     51  1.1      cgd  * Using the InterNet Control Message Protocol (ICMP) "ECHO" facility,
     52  1.1      cgd  * measure round-trip-delays and packet loss across network paths.
     53  1.1      cgd  *
     54  1.1      cgd  * Author -
     55  1.1      cgd  *	Mike Muuss
     56  1.1      cgd  *	U. S. Army Ballistic Research Laboratory
     57  1.1      cgd  *	December, 1983
     58  1.1      cgd  *
     59  1.1      cgd  * Status -
     60  1.1      cgd  *	Public Domain.  Distribution Unlimited.
     61  1.1      cgd  * Bugs -
     62  1.1      cgd  *	More statistics could always be gathered.
     63  1.1      cgd  *	This program has to run SUID to ROOT to access the ICMP socket.
     64  1.1      cgd  */
     65  1.1      cgd 
     66  1.1      cgd #include <sys/param.h>
     67  1.1      cgd #include <sys/socket.h>
     68  1.1      cgd #include <sys/file.h>
     69  1.1      cgd #include <sys/time.h>
     70  1.1      cgd #include <sys/signal.h>
     71  1.1      cgd 
     72  1.1      cgd #include <netinet/in_systm.h>
     73  1.1      cgd #include <netinet/in.h>
     74  1.1      cgd #include <netinet/ip.h>
     75  1.1      cgd #include <netinet/ip_icmp.h>
     76  1.1      cgd #include <netinet/ip_var.h>
     77  1.1      cgd #include <netdb.h>
     78  1.1      cgd #include <unistd.h>
     79  1.1      cgd #include <stdio.h>
     80  1.1      cgd #include <ctype.h>
     81  1.1      cgd #include <errno.h>
     82  1.1      cgd #include <string.h>
     83  1.1      cgd 
     84  1.1      cgd #define	DEFDATALEN	(64 - 8)	/* default data length */
     85  1.1      cgd #define	MAXIPLEN	60
     86  1.1      cgd #define	MAXICMPLEN	76
     87  1.1      cgd #define	MAXPACKET	(65536 - 60 - 8)/* max packet size */
     88  1.1      cgd #define	MAXWAIT		10		/* max seconds to wait for response */
     89  1.1      cgd #define	NROUTES		9		/* number of record route slots */
     90  1.1      cgd 
     91  1.1      cgd #define	A(bit)		rcvd_tbl[(bit)>>3]	/* identify byte in array */
     92  1.1      cgd #define	B(bit)		(1 << ((bit) & 0x07))	/* identify bit in byte */
     93  1.1      cgd #define	SET(bit)	(A(bit) |= B(bit))
     94  1.1      cgd #define	CLR(bit)	(A(bit) &= (~B(bit)))
     95  1.1      cgd #define	TST(bit)	(A(bit) & B(bit))
     96  1.1      cgd 
     97  1.1      cgd /* various options */
     98  1.1      cgd int options;
     99  1.1      cgd #define	F_FLOOD		0x001
    100  1.1      cgd #define	F_INTERVAL	0x002
    101  1.1      cgd #define	F_NUMERIC	0x004
    102  1.1      cgd #define	F_PINGFILLED	0x008
    103  1.1      cgd #define	F_QUIET		0x010
    104  1.1      cgd #define	F_RROUTE	0x020
    105  1.1      cgd #define	F_SO_DEBUG	0x040
    106  1.1      cgd #define	F_SO_DONTROUTE	0x080
    107  1.1      cgd #define	F_VERBOSE	0x100
    108  1.1      cgd 
    109  1.7  hpeyerl /* multicast options */
    110  1.7  hpeyerl int moptions;
    111  1.8  mycroft #define	MULTICAST_NOLOOP	0x001
    112  1.8  mycroft #define	MULTICAST_TTL		0x002
    113  1.8  mycroft #define	MULTICAST_IF		0x004
    114  1.7  hpeyerl 
    115  1.1      cgd /*
    116  1.1      cgd  * MAX_DUP_CHK is the number of bits in received table, i.e. the maximum
    117  1.1      cgd  * number of received sequence numbers we can keep track of.  Change 128
    118  1.1      cgd  * to 8192 for complete accuracy...
    119  1.1      cgd  */
    120  1.1      cgd #define	MAX_DUP_CHK	(8 * 128)
    121  1.1      cgd int mx_dup_ck = MAX_DUP_CHK;
    122  1.1      cgd char rcvd_tbl[MAX_DUP_CHK / 8];
    123  1.1      cgd 
    124  1.1      cgd struct sockaddr whereto;	/* who to ping */
    125  1.1      cgd int datalen = DEFDATALEN;
    126  1.1      cgd int s;				/* socket file descriptor */
    127  1.1      cgd u_char outpack[MAXPACKET];
    128  1.1      cgd char BSPACE = '\b';		/* characters written for flood */
    129  1.1      cgd char DOT = '.';
    130  1.1      cgd char *hostname;
    131  1.1      cgd int ident;			/* process id to identify our packets */
    132  1.1      cgd 
    133  1.1      cgd /* counters */
    134  1.1      cgd long npackets;			/* max packets to transmit */
    135  1.1      cgd long nreceived;			/* # of packets we got back */
    136  1.1      cgd long nrepeats;			/* number of duplicates */
    137  1.1      cgd long ntransmitted;		/* sequence # for outbound packets = #sent */
    138  1.1      cgd int interval = 1;		/* interval between packets */
    139  1.1      cgd 
    140  1.1      cgd /* timing */
    141  1.1      cgd int timing;			/* flag to do timing */
    142  1.8  mycroft double tmin = 999999999.0;	/* minimum round trip time */
    143  1.8  mycroft double tmax = 0.0;		/* maximum round trip time */
    144  1.8  mycroft double tsum = 0.0;		/* sum of all times, for doing average */
    145  1.1      cgd 
    146  1.1      cgd char *pr_addr();
    147  1.1      cgd void catcher(), finish();
    148  1.1      cgd 
    149  1.1      cgd main(argc, argv)
    150  1.1      cgd 	int argc;
    151  1.1      cgd 	char **argv;
    152  1.1      cgd {
    153  1.1      cgd 	extern int errno, optind;
    154  1.1      cgd 	extern char *optarg;
    155  1.1      cgd 	struct timeval timeout;
    156  1.1      cgd 	struct hostent *hp;
    157  1.1      cgd 	struct sockaddr_in *to;
    158  1.1      cgd 	struct protoent *proto;
    159  1.7  hpeyerl 	struct in_addr ifaddr;
    160  1.8  mycroft 	register int i;
    161  1.1      cgd 	int ch, fdmask, hold, packlen, preload;
    162  1.1      cgd 	u_char *datap, *packet;
    163  1.1      cgd 	char *target, hnamebuf[MAXHOSTNAMELEN], *malloc();
    164  1.8  mycroft 	u_char ttl, loop = 1;
    165  1.1      cgd #ifdef IP_OPTIONS
    166  1.1      cgd 	char rspace[3 + 4 * NROUTES + 1];	/* record route space */
    167  1.1      cgd #endif
    168  1.1      cgd 
    169  1.1      cgd 	preload = 0;
    170  1.1      cgd 	datap = &outpack[8 + sizeof(struct timeval)];
    171  1.7  hpeyerl 	while ((ch = getopt(argc, argv, "I:LRc:dfh:i:l:np:qrs:t:v")) != EOF)
    172  1.1      cgd 		switch(ch) {
    173  1.1      cgd 		case 'c':
    174  1.1      cgd 			npackets = atoi(optarg);
    175  1.8  mycroft 			if (npackets <= 0)
    176  1.8  mycroft 				errx(1, "bad number of packets to transmit: %s",
    177  1.8  mycroft 				    optarg);
    178  1.1      cgd 			break;
    179  1.1      cgd 		case 'd':
    180  1.1      cgd 			options |= F_SO_DEBUG;
    181  1.1      cgd 			break;
    182  1.1      cgd 		case 'f':
    183  1.8  mycroft 			if (getuid())
    184  1.8  mycroft 				errx(1, "%s", strerror(EPERM));
    185  1.1      cgd 			options |= F_FLOOD;
    186  1.1      cgd 			setbuf(stdout, (char *)NULL);
    187  1.1      cgd 			break;
    188  1.8  mycroft 		case 'I':
    189  1.8  mycroft 			if (inet_aton(optarg, &ifaddr) == 0)
    190  1.8  mycroft 				errx(1, "bad interface address: %s", optarg);
    191  1.8  mycroft 			moptions |= MULTICAST_IF;
    192  1.8  mycroft 			break;
    193  1.1      cgd 		case 'i':		/* wait between sending packets */
    194  1.1      cgd 			interval = atoi(optarg);
    195  1.8  mycroft 			if (interval <= 0)
    196  1.8  mycroft 				errx(1, "bad timing interval: %s", optarg);
    197  1.1      cgd 			options |= F_INTERVAL;
    198  1.1      cgd 			break;
    199  1.8  mycroft 		case 'L':
    200  1.8  mycroft 			moptions |= MULTICAST_NOLOOP;
    201  1.8  mycroft 			loop = 0;
    202  1.8  mycroft 			break;
    203  1.1      cgd 		case 'l':
    204  1.1      cgd 			preload = atoi(optarg);
    205  1.8  mycroft 			if (preload < 0)
    206  1.8  mycroft 				errx(1, "bad preload value: %s", optarg);
    207  1.1      cgd 			break;
    208  1.1      cgd 		case 'n':
    209  1.1      cgd 			options |= F_NUMERIC;
    210  1.1      cgd 			break;
    211  1.1      cgd 		case 'p':		/* fill buffer with user pattern */
    212  1.1      cgd 			options |= F_PINGFILLED;
    213  1.1      cgd 			fill((char *)datap, optarg);
    214  1.1      cgd 				break;
    215  1.1      cgd 		case 'q':
    216  1.1      cgd 			options |= F_QUIET;
    217  1.1      cgd 			break;
    218  1.1      cgd 		case 'R':
    219  1.1      cgd 			options |= F_RROUTE;
    220  1.1      cgd 			break;
    221  1.1      cgd 		case 'r':
    222  1.1      cgd 			options |= F_SO_DONTROUTE;
    223  1.1      cgd 			break;
    224  1.1      cgd 		case 's':		/* size of packet to send */
    225  1.1      cgd 			datalen = atoi(optarg);
    226  1.8  mycroft 			if (datalen <= 0)
    227  1.8  mycroft 				errx(1, "bad packet size: %s", optarg);
    228  1.8  mycroft 			if (datalen > MAXPACKET)
    229  1.8  mycroft 				errx(1, "packet size too large: %s", optarg);
    230  1.8  mycroft 			break;
    231  1.8  mycroft 		case 't':
    232  1.8  mycroft 			ttl = atoi(optarg);
    233  1.8  mycroft 			if (ttl <= 0)
    234  1.8  mycroft 				errx(1, "bad ttl value: %s", optarg);
    235  1.8  mycroft 			if (ttl > 255)
    236  1.8  mycroft 				errx(1, "ttl value too large: %s", optarg);
    237  1.1      cgd 			break;
    238  1.1      cgd 		case 'v':
    239  1.1      cgd 			options |= F_VERBOSE;
    240  1.1      cgd 			break;
    241  1.1      cgd 		default:
    242  1.1      cgd 			usage();
    243  1.1      cgd 		}
    244  1.1      cgd 	argc -= optind;
    245  1.1      cgd 	argv += optind;
    246  1.8  mycroft 
    247  1.1      cgd 	if (argc != 1)
    248  1.1      cgd 		usage();
    249  1.1      cgd 	target = *argv;
    250  1.1      cgd 
    251  1.1      cgd 	bzero((char *)&whereto, sizeof(struct sockaddr));
    252  1.1      cgd 	to = (struct sockaddr_in *)&whereto;
    253  1.1      cgd 	to->sin_family = AF_INET;
    254  1.1      cgd 	to->sin_addr.s_addr = inet_addr(target);
    255  1.1      cgd 	if (to->sin_addr.s_addr != (u_int)-1)
    256  1.1      cgd 		hostname = target;
    257  1.1      cgd 	else {
    258  1.1      cgd 		hp = gethostbyname(target);
    259  1.8  mycroft 		if (!hp)
    260  1.8  mycroft 			errx(1, "unknown host: %s", target);
    261  1.1      cgd 		to->sin_family = hp->h_addrtype;
    262  1.1      cgd 		bcopy(hp->h_addr, (caddr_t)&to->sin_addr, hp->h_length);
    263  1.1      cgd 		(void)strncpy(hnamebuf, hp->h_name, sizeof(hnamebuf) - 1);
    264  1.1      cgd 		hostname = hnamebuf;
    265  1.1      cgd 	}
    266  1.1      cgd 
    267  1.8  mycroft 	if (options & F_FLOOD && options & F_INTERVAL)
    268  1.8  mycroft 		errx(1, "-f and -i options are incompatible");
    269  1.1      cgd 
    270  1.1      cgd 	if (datalen >= sizeof(struct timeval))	/* can we time transfer */
    271  1.1      cgd 		timing = 1;
    272  1.1      cgd 	packlen = datalen + MAXIPLEN + MAXICMPLEN;
    273  1.8  mycroft 	if (!(packet = (u_char *)malloc((u_int)packlen)))
    274  1.8  mycroft 		err(1, "malloc");
    275  1.1      cgd 	if (!(options & F_PINGFILLED))
    276  1.1      cgd 		for (i = 8; i < datalen; ++i)
    277  1.1      cgd 			*datap++ = i;
    278  1.1      cgd 
    279  1.1      cgd 	ident = getpid() & 0xFFFF;
    280  1.1      cgd 
    281  1.8  mycroft 	if (!(proto = getprotobyname("icmp")))
    282  1.8  mycroft 		errx(1, "unknown protocol icmp");
    283  1.8  mycroft 	if ((s = socket(AF_INET, SOCK_RAW, proto->p_proto)) < 0)
    284  1.8  mycroft 		err(1, "socket");
    285  1.1      cgd 	hold = 1;
    286  1.1      cgd 	if (options & F_SO_DEBUG)
    287  1.1      cgd 		(void)setsockopt(s, SOL_SOCKET, SO_DEBUG, (char *)&hold,
    288  1.1      cgd 		    sizeof(hold));
    289  1.1      cgd 	if (options & F_SO_DONTROUTE)
    290  1.1      cgd 		(void)setsockopt(s, SOL_SOCKET, SO_DONTROUTE, (char *)&hold,
    291  1.1      cgd 		    sizeof(hold));
    292  1.1      cgd 
    293  1.1      cgd 	/* record route option */
    294  1.1      cgd 	if (options & F_RROUTE) {
    295  1.1      cgd #ifdef IP_OPTIONS
    296  1.1      cgd 		rspace[IPOPT_OPTVAL] = IPOPT_RR;
    297  1.1      cgd 		rspace[IPOPT_OLEN] = sizeof(rspace)-1;
    298  1.1      cgd 		rspace[IPOPT_OFFSET] = IPOPT_MINOFF;
    299  1.1      cgd 		if (setsockopt(s, IPPROTO_IP, IP_OPTIONS, rspace,
    300  1.1      cgd 		    sizeof(rspace)) < 0) {
    301  1.1      cgd 			perror("ping: record route");
    302  1.1      cgd 			exit(1);
    303  1.1      cgd 		}
    304  1.1      cgd #else
    305  1.8  mycroft 		errx(1, "record route not available in this implementation");
    306  1.1      cgd #endif /* IP_OPTIONS */
    307  1.1      cgd 	}
    308  1.1      cgd 
    309  1.8  mycroft 	if ((moptions & MULTICAST_NOLOOP) &&
    310  1.8  mycroft 	    setsockopt(s, IPPROTO_IP, IP_MULTICAST_LOOP, &loop,
    311  1.8  mycroft 		       sizeof(loop)) < 0)
    312  1.8  mycroft 		err(1, "setsockopt IP_MULTICAST_LOOP");
    313  1.8  mycroft 	if ((moptions & MULTICAST_TTL) &&
    314  1.8  mycroft 	    setsockopt(s, IPPROTO_IP, IP_MULTICAST_TTL, &ttl,
    315  1.8  mycroft 		       sizeof(ttl)) < 0)
    316  1.8  mycroft 		err(1, "setsockopt IP_MULTICAST_TTL");
    317  1.8  mycroft 	if ((moptions & MULTICAST_IF) &&
    318  1.8  mycroft 	    setsockopt(s, IPPROTO_IP, IP_MULTICAST_IF, &ifaddr,
    319  1.8  mycroft 		       sizeof(ifaddr)) < 0)
    320  1.8  mycroft 		err(1, "setsockopt IP_MULTICAST_IF");
    321  1.8  mycroft 
    322  1.1      cgd 	/*
    323  1.1      cgd 	 * When pinging the broadcast address, you can get a lot of answers.
    324  1.1      cgd 	 * Doing something so evil is useful if you are trying to stress the
    325  1.1      cgd 	 * ethernet, or just want to fill the arp cache to get some stuff for
    326  1.1      cgd 	 * /etc/ethers.
    327  1.1      cgd 	 */
    328  1.1      cgd 	hold = 48 * 1024;
    329  1.1      cgd 	(void)setsockopt(s, SOL_SOCKET, SO_RCVBUF, (char *)&hold,
    330  1.1      cgd 	    sizeof(hold));
    331  1.1      cgd 
    332  1.1      cgd 	if (to->sin_family == AF_INET)
    333  1.1      cgd 		(void)printf("PING %s (%s): %d data bytes\n", hostname,
    334  1.1      cgd 		    inet_ntoa(*(struct in_addr *)&to->sin_addr.s_addr),
    335  1.1      cgd 		    datalen);
    336  1.1      cgd 	else
    337  1.1      cgd 		(void)printf("PING %s: %d data bytes\n", hostname, datalen);
    338  1.1      cgd 
    339  1.1      cgd 	(void)signal(SIGINT, finish);
    340  1.1      cgd 	(void)signal(SIGALRM, catcher);
    341  1.1      cgd 
    342  1.1      cgd 	while (preload--)		/* fire off them quickies */
    343  1.1      cgd 		pinger();
    344  1.1      cgd 
    345  1.1      cgd 	if ((options & F_FLOOD) == 0)
    346  1.1      cgd 		catcher();		/* start things going */
    347  1.1      cgd 
    348  1.1      cgd 	for (;;) {
    349  1.1      cgd 		struct sockaddr_in from;
    350  1.1      cgd 		register int cc;
    351  1.1      cgd 		int fromlen;
    352  1.1      cgd 
    353  1.1      cgd 		if (options & F_FLOOD) {
    354  1.1      cgd 			pinger();
    355  1.1      cgd 			timeout.tv_sec = 0;
    356  1.1      cgd 			timeout.tv_usec = 10000;
    357  1.1      cgd 			fdmask = 1 << s;
    358  1.1      cgd 			if (select(s + 1, (fd_set *)&fdmask, (fd_set *)NULL,
    359  1.1      cgd 			    (fd_set *)NULL, &timeout) < 1)
    360  1.1      cgd 				continue;
    361  1.1      cgd 		}
    362  1.1      cgd 		fromlen = sizeof(from);
    363  1.1      cgd 		if ((cc = recvfrom(s, (char *)packet, packlen, 0,
    364  1.1      cgd 		    (struct sockaddr *)&from, &fromlen)) < 0) {
    365  1.1      cgd 			if (errno == EINTR)
    366  1.1      cgd 				continue;
    367  1.1      cgd 			perror("ping: recvfrom");
    368  1.1      cgd 			continue;
    369  1.1      cgd 		}
    370  1.1      cgd 		pr_pack((char *)packet, cc, &from);
    371  1.1      cgd 		if (npackets && nreceived >= npackets)
    372  1.1      cgd 			break;
    373  1.1      cgd 	}
    374  1.1      cgd 	finish();
    375  1.1      cgd 	/* NOTREACHED */
    376  1.1      cgd }
    377  1.1      cgd 
    378  1.1      cgd /*
    379  1.1      cgd  * catcher --
    380  1.1      cgd  *	This routine causes another PING to be transmitted, and then
    381  1.1      cgd  * schedules another SIGALRM for 1 second from now.
    382  1.8  mycroft  *
    383  1.1      cgd  * bug --
    384  1.1      cgd  *	Our sense of time will slowly skew (i.e., packets will not be
    385  1.1      cgd  * launched exactly at 1-second intervals).  This does not affect the
    386  1.1      cgd  * quality of the delay and loss statistics.
    387  1.1      cgd  */
    388  1.1      cgd void
    389  1.1      cgd catcher()
    390  1.1      cgd {
    391  1.1      cgd 	int waittime;
    392  1.1      cgd 
    393  1.1      cgd 	pinger();
    394  1.1      cgd 	(void)signal(SIGALRM, catcher);
    395  1.1      cgd 	if (!npackets || ntransmitted < npackets)
    396  1.1      cgd 		alarm((u_int)interval);
    397  1.1      cgd 	else {
    398  1.1      cgd 		if (nreceived) {
    399  1.8  mycroft 			waittime = 2 * tmax / 1000;
    400  1.1      cgd 			if (!waittime)
    401  1.1      cgd 				waittime = 1;
    402  1.1      cgd 		} else
    403  1.1      cgd 			waittime = MAXWAIT;
    404  1.1      cgd 		(void)signal(SIGALRM, finish);
    405  1.1      cgd 		(void)alarm((u_int)waittime);
    406  1.1      cgd 	}
    407  1.1      cgd }
    408  1.1      cgd 
    409  1.1      cgd /*
    410  1.1      cgd  * pinger --
    411  1.8  mycroft  *	Compose and transmit an ICMP ECHO REQUEST packet.  The IP packet
    412  1.1      cgd  * will be added on by the kernel.  The ID field is our UNIX process ID,
    413  1.1      cgd  * and the sequence number is an ascending integer.  The first 8 bytes
    414  1.1      cgd  * of the data portion are used to hold a UNIX "timeval" struct in VAX
    415  1.1      cgd  * byte-order, to compute the round-trip time.
    416  1.1      cgd  */
    417  1.1      cgd pinger()
    418  1.1      cgd {
    419  1.1      cgd 	register struct icmp *icp;
    420  1.1      cgd 	register int cc;
    421  1.1      cgd 	int i;
    422  1.1      cgd 
    423  1.1      cgd 	icp = (struct icmp *)outpack;
    424  1.1      cgd 	icp->icmp_type = ICMP_ECHO;
    425  1.1      cgd 	icp->icmp_code = 0;
    426  1.1      cgd 	icp->icmp_cksum = 0;
    427  1.1      cgd 	icp->icmp_seq = ntransmitted++;
    428  1.1      cgd 	icp->icmp_id = ident;			/* ID */
    429  1.1      cgd 
    430  1.1      cgd 	CLR(icp->icmp_seq % mx_dup_ck);
    431  1.1      cgd 
    432  1.1      cgd 	if (timing)
    433  1.1      cgd 		(void)gettimeofday((struct timeval *)&outpack[8],
    434  1.1      cgd 		    (struct timezone *)NULL);
    435  1.1      cgd 
    436  1.1      cgd 	cc = datalen + 8;			/* skips ICMP portion */
    437  1.1      cgd 
    438  1.1      cgd 	/* compute ICMP checksum here */
    439  1.1      cgd 	icp->icmp_cksum = in_cksum((u_short *)icp, cc);
    440  1.1      cgd 
    441  1.1      cgd 	i = sendto(s, (char *)outpack, cc, 0, &whereto,
    442  1.1      cgd 	    sizeof(struct sockaddr));
    443  1.1      cgd 
    444  1.1      cgd 	if (i < 0 || i != cc)  {
    445  1.1      cgd 		if (i < 0)
    446  1.1      cgd 			perror("ping: sendto");
    447  1.1      cgd 		(void)printf("ping: wrote %s %d chars, ret=%d\n",
    448  1.1      cgd 		    hostname, cc, i);
    449  1.1      cgd 	}
    450  1.1      cgd 	if (!(options & F_QUIET) && options & F_FLOOD)
    451  1.1      cgd 		(void)write(STDOUT_FILENO, &DOT, 1);
    452  1.1      cgd }
    453  1.1      cgd 
    454  1.1      cgd /*
    455  1.1      cgd  * pr_pack --
    456  1.1      cgd  *	Print out the packet, if it came from us.  This logic is necessary
    457  1.1      cgd  * because ALL readers of the ICMP socket get a copy of ALL ICMP packets
    458  1.1      cgd  * which arrive ('tis only fair).  This permits multiple copies of this
    459  1.1      cgd  * program to be run without having intermingled output (or statistics!).
    460  1.1      cgd  */
    461  1.1      cgd pr_pack(buf, cc, from)
    462  1.1      cgd 	char *buf;
    463  1.1      cgd 	int cc;
    464  1.1      cgd 	struct sockaddr_in *from;
    465  1.1      cgd {
    466  1.1      cgd 	register struct icmp *icp;
    467  1.1      cgd 	register u_long l;
    468  1.1      cgd 	register int i, j;
    469  1.1      cgd 	register u_char *cp,*dp;
    470  1.1      cgd 	static int old_rrlen;
    471  1.1      cgd 	static char old_rr[MAX_IPOPTLEN];
    472  1.1      cgd 	struct ip *ip;
    473  1.1      cgd 	struct timeval tv, *tp;
    474  1.6  mycroft 	double triptime;
    475  1.1      cgd 	int hlen, dupflag;
    476  1.1      cgd 
    477  1.1      cgd 	(void)gettimeofday(&tv, (struct timezone *)NULL);
    478  1.1      cgd 
    479  1.1      cgd 	/* Check the IP header */
    480  1.1      cgd 	ip = (struct ip *)buf;
    481  1.1      cgd 	hlen = ip->ip_hl << 2;
    482  1.1      cgd 	if (cc < hlen + ICMP_MINLEN) {
    483  1.1      cgd 		if (options & F_VERBOSE)
    484  1.8  mycroft 			warnx("packet too short (%d bytes) from %s", cc,
    485  1.1      cgd 			  inet_ntoa(*(struct in_addr *)&from->sin_addr.s_addr));
    486  1.1      cgd 		return;
    487  1.1      cgd 	}
    488  1.1      cgd 
    489  1.1      cgd 	/* Now the ICMP part */
    490  1.1      cgd 	cc -= hlen;
    491  1.1      cgd 	icp = (struct icmp *)(buf + hlen);
    492  1.1      cgd 	if (icp->icmp_type == ICMP_ECHOREPLY) {
    493  1.1      cgd 		if (icp->icmp_id != ident)
    494  1.1      cgd 			return;			/* 'Twas not our ECHO */
    495  1.1      cgd 		++nreceived;
    496  1.1      cgd 		if (timing) {
    497  1.1      cgd #ifndef icmp_data
    498  1.1      cgd 			tp = (struct timeval *)&icp->icmp_ip;
    499  1.1      cgd #else
    500  1.1      cgd 			tp = (struct timeval *)icp->icmp_data;
    501  1.1      cgd #endif
    502  1.1      cgd 			tvsub(&tv, tp);
    503  1.8  mycroft 			triptime = ((double)tv.tv_sec) * 1000.0 +
    504  1.8  mycroft 			    ((double)tv.tv_usec) / 1000.0;
    505  1.1      cgd 			tsum += triptime;
    506  1.1      cgd 			if (triptime < tmin)
    507  1.1      cgd 				tmin = triptime;
    508  1.1      cgd 			if (triptime > tmax)
    509  1.1      cgd 				tmax = triptime;
    510  1.1      cgd 		}
    511  1.1      cgd 
    512  1.1      cgd 		if (TST(icp->icmp_seq % mx_dup_ck)) {
    513  1.1      cgd 			++nrepeats;
    514  1.1      cgd 			--nreceived;
    515  1.1      cgd 			dupflag = 1;
    516  1.1      cgd 		} else {
    517  1.1      cgd 			SET(icp->icmp_seq % mx_dup_ck);
    518  1.1      cgd 			dupflag = 0;
    519  1.1      cgd 		}
    520  1.1      cgd 
    521  1.1      cgd 		if (options & F_QUIET)
    522  1.1      cgd 			return;
    523  1.1      cgd 
    524  1.1      cgd 		if (options & F_FLOOD)
    525  1.1      cgd 			(void)write(STDOUT_FILENO, &BSPACE, 1);
    526  1.1      cgd 		else {
    527  1.1      cgd 			(void)printf("%d bytes from %s: icmp_seq=%u", cc,
    528  1.1      cgd 			   inet_ntoa(*(struct in_addr *)&from->sin_addr.s_addr),
    529  1.1      cgd 			   icp->icmp_seq);
    530  1.1      cgd 			(void)printf(" ttl=%d", ip->ip_ttl);
    531  1.1      cgd 			if (timing)
    532  1.8  mycroft 				(void)printf(" time=%.3f ms", triptime);
    533  1.1      cgd 			if (dupflag)
    534  1.1      cgd 				(void)printf(" (DUP!)");
    535  1.1      cgd 			/* check the data */
    536  1.1      cgd 			cp = (u_char*)&icp->icmp_data[8];
    537  1.1      cgd 			dp = &outpack[8 + sizeof(struct timeval)];
    538  1.1      cgd 			for (i = 8; i < datalen; ++i, ++cp, ++dp) {
    539  1.1      cgd 				if (*cp != *dp) {
    540  1.1      cgd 	(void)printf("\nwrong data byte #%d should be 0x%x but was 0x%x",
    541  1.1      cgd 	    i, *dp, *cp);
    542  1.1      cgd 					cp = (u_char*)&icp->icmp_data[0];
    543  1.1      cgd 					for (i = 8; i < datalen; ++i, ++cp) {
    544  1.1      cgd 						if ((i % 32) == 8)
    545  1.1      cgd 							(void)printf("\n\t");
    546  1.1      cgd 						(void)printf("%x ", *cp);
    547  1.1      cgd 					}
    548  1.1      cgd 					break;
    549  1.1      cgd 				}
    550  1.1      cgd 			}
    551  1.1      cgd 		}
    552  1.1      cgd 	} else {
    553  1.1      cgd 		/* We've got something other than an ECHOREPLY */
    554  1.1      cgd 		if (!(options & F_VERBOSE))
    555  1.1      cgd 			return;
    556  1.1      cgd 		(void)printf("%d bytes from %s: ", cc,
    557  1.1      cgd 		    pr_addr(from->sin_addr.s_addr));
    558  1.1      cgd 		pr_icmph(icp);
    559  1.1      cgd 	}
    560  1.1      cgd 
    561  1.1      cgd 	/* Display any IP options */
    562  1.1      cgd 	cp = (u_char *)buf + sizeof(struct ip);
    563  1.1      cgd 
    564  1.1      cgd 	for (; hlen > (int)sizeof(struct ip); --hlen, ++cp)
    565  1.1      cgd 		switch (*cp) {
    566  1.1      cgd 		case IPOPT_EOL:
    567  1.1      cgd 			hlen = 0;
    568  1.1      cgd 			break;
    569  1.1      cgd 		case IPOPT_LSRR:
    570  1.1      cgd 			(void)printf("\nLSRR: ");
    571  1.1      cgd 			hlen -= 2;
    572  1.1      cgd 			j = *++cp;
    573  1.1      cgd 			++cp;
    574  1.1      cgd 			if (j > IPOPT_MINOFF)
    575  1.1      cgd 				for (;;) {
    576  1.1      cgd 					l = *++cp;
    577  1.1      cgd 					l = (l<<8) + *++cp;
    578  1.1      cgd 					l = (l<<8) + *++cp;
    579  1.1      cgd 					l = (l<<8) + *++cp;
    580  1.1      cgd 					if (l == 0)
    581  1.1      cgd 						(void)printf("\t0.0.0.0");
    582  1.1      cgd 				else
    583  1.1      cgd 					(void)printf("\t%s", pr_addr(ntohl(l)));
    584  1.1      cgd 				hlen -= 4;
    585  1.1      cgd 				j -= 4;
    586  1.1      cgd 				if (j <= IPOPT_MINOFF)
    587  1.1      cgd 					break;
    588  1.1      cgd 				(void)putchar('\n');
    589  1.1      cgd 			}
    590  1.1      cgd 			break;
    591  1.1      cgd 		case IPOPT_RR:
    592  1.1      cgd 			j = *++cp;		/* get length */
    593  1.1      cgd 			i = *++cp;		/* and pointer */
    594  1.1      cgd 			hlen -= 2;
    595  1.1      cgd 			if (i > j)
    596  1.1      cgd 				i = j;
    597  1.1      cgd 			i -= IPOPT_MINOFF;
    598  1.1      cgd 			if (i <= 0)
    599  1.1      cgd 				continue;
    600  1.1      cgd 			if (i == old_rrlen
    601  1.1      cgd 			    && cp == (u_char *)buf + sizeof(struct ip) + 2
    602  1.1      cgd 			    && !bcmp((char *)cp, old_rr, i)
    603  1.1      cgd 			    && !(options & F_FLOOD)) {
    604  1.1      cgd 				(void)printf("\t(same route)");
    605  1.1      cgd 				i = ((i + 3) / 4) * 4;
    606  1.1      cgd 				hlen -= i;
    607  1.1      cgd 				cp += i;
    608  1.1      cgd 				break;
    609  1.1      cgd 			}
    610  1.1      cgd 			old_rrlen = i;
    611  1.1      cgd 			bcopy((char *)cp, old_rr, i);
    612  1.1      cgd 			(void)printf("\nRR: ");
    613  1.1      cgd 			for (;;) {
    614  1.1      cgd 				l = *++cp;
    615  1.1      cgd 				l = (l<<8) + *++cp;
    616  1.1      cgd 				l = (l<<8) + *++cp;
    617  1.1      cgd 				l = (l<<8) + *++cp;
    618  1.1      cgd 				if (l == 0)
    619  1.1      cgd 					(void)printf("\t0.0.0.0");
    620  1.1      cgd 				else
    621  1.1      cgd 					(void)printf("\t%s", pr_addr(ntohl(l)));
    622  1.1      cgd 				hlen -= 4;
    623  1.1      cgd 				i -= 4;
    624  1.1      cgd 				if (i <= 0)
    625  1.1      cgd 					break;
    626  1.1      cgd 				(void)putchar('\n');
    627  1.1      cgd 			}
    628  1.1      cgd 			break;
    629  1.1      cgd 		case IPOPT_NOP:
    630  1.1      cgd 			(void)printf("\nNOP");
    631  1.1      cgd 			break;
    632  1.1      cgd 		default:
    633  1.1      cgd 			(void)printf("\nunknown option %x", *cp);
    634  1.1      cgd 			break;
    635  1.1      cgd 		}
    636  1.1      cgd 	if (!(options & F_FLOOD)) {
    637  1.1      cgd 		(void)putchar('\n');
    638  1.1      cgd 		(void)fflush(stdout);
    639  1.1      cgd 	}
    640  1.1      cgd }
    641  1.1      cgd 
    642  1.1      cgd /*
    643  1.1      cgd  * in_cksum --
    644  1.1      cgd  *	Checksum routine for Internet Protocol family headers (C Version)
    645  1.1      cgd  */
    646  1.1      cgd in_cksum(addr, len)
    647  1.1      cgd 	u_short *addr;
    648  1.1      cgd 	int len;
    649  1.1      cgd {
    650  1.1      cgd 	register int nleft = len;
    651  1.1      cgd 	register u_short *w = addr;
    652  1.1      cgd 	register int sum = 0;
    653  1.1      cgd 	u_short answer = 0;
    654  1.1      cgd 
    655  1.1      cgd 	/*
    656  1.1      cgd 	 * Our algorithm is simple, using a 32 bit accumulator (sum), we add
    657  1.1      cgd 	 * sequential 16 bit words to it, and at the end, fold back all the
    658  1.1      cgd 	 * carry bits from the top 16 bits into the lower 16 bits.
    659  1.1      cgd 	 */
    660  1.1      cgd 	while (nleft > 1)  {
    661  1.1      cgd 		sum += *w++;
    662  1.1      cgd 		nleft -= 2;
    663  1.1      cgd 	}
    664  1.1      cgd 
    665  1.1      cgd 	/* mop up an odd byte, if necessary */
    666  1.1      cgd 	if (nleft == 1) {
    667  1.1      cgd 		*(u_char *)(&answer) = *(u_char *)w ;
    668  1.1      cgd 		sum += answer;
    669  1.1      cgd 	}
    670  1.1      cgd 
    671  1.1      cgd 	/* add back carry outs from top 16 bits to low 16 bits */
    672  1.1      cgd 	sum = (sum >> 16) + (sum & 0xffff);	/* add hi 16 to low 16 */
    673  1.1      cgd 	sum += (sum >> 16);			/* add carry */
    674  1.1      cgd 	answer = ~sum;				/* truncate to 16 bits */
    675  1.1      cgd 	return(answer);
    676  1.1      cgd }
    677  1.1      cgd 
    678  1.1      cgd /*
    679  1.1      cgd  * tvsub --
    680  1.1      cgd  *	Subtract 2 timeval structs:  out = out - in.  Out is assumed to
    681  1.1      cgd  * be >= in.
    682  1.1      cgd  */
    683  1.1      cgd tvsub(out, in)
    684  1.1      cgd 	register struct timeval *out, *in;
    685  1.1      cgd {
    686  1.1      cgd 	if ((out->tv_usec -= in->tv_usec) < 0) {
    687  1.1      cgd 		--out->tv_sec;
    688  1.1      cgd 		out->tv_usec += 1000000;
    689  1.1      cgd 	}
    690  1.1      cgd 	out->tv_sec -= in->tv_sec;
    691  1.1      cgd }
    692  1.1      cgd 
    693  1.1      cgd /*
    694  1.1      cgd  * finish --
    695  1.1      cgd  *	Print out statistics, and give up.
    696  1.1      cgd  */
    697  1.1      cgd void
    698  1.1      cgd finish()
    699  1.1      cgd {
    700  1.8  mycroft 	register int i;
    701  1.8  mycroft 
    702  1.1      cgd 	(void)signal(SIGINT, SIG_IGN);
    703  1.1      cgd 	(void)putchar('\n');
    704  1.1      cgd 	(void)fflush(stdout);
    705  1.1      cgd 	(void)printf("--- %s ping statistics ---\n", hostname);
    706  1.1      cgd 	(void)printf("%ld packets transmitted, ", ntransmitted);
    707  1.1      cgd 	(void)printf("%ld packets received, ", nreceived);
    708  1.1      cgd 	if (nrepeats)
    709  1.1      cgd 		(void)printf("+%ld duplicates, ", nrepeats);
    710  1.1      cgd 	if (ntransmitted)
    711  1.1      cgd 		if (nreceived > ntransmitted)
    712  1.1      cgd 			(void)printf("-- somebody's printing up packets!");
    713  1.1      cgd 		else
    714  1.1      cgd 			(void)printf("%d%% packet loss",
    715  1.1      cgd 			    (int) (((ntransmitted - nreceived) * 100) /
    716  1.1      cgd 			    ntransmitted));
    717  1.1      cgd 	(void)putchar('\n');
    718  1.8  mycroft 	if (nreceived && timing) {
    719  1.8  mycroft 		/* Only display average to microseconds */
    720  1.8  mycroft 		i = 1000.0 * tsum / (nreceived + nrepeats);
    721  1.4      cgd 		(void)printf("round-trip min/avg/max = %.3f/%.3f/%.3f ms\n",
    722  1.8  mycroft 		    tmin, ((double)i) / 1000.0, tmax);
    723  1.8  mycroft 	}
    724  1.1      cgd 	exit(0);
    725  1.1      cgd }
    726  1.1      cgd 
    727  1.1      cgd #ifdef notdef
    728  1.1      cgd static char *ttab[] = {
    729  1.1      cgd 	"Echo Reply",		/* ip + seq + udata */
    730  1.1      cgd 	"Dest Unreachable",	/* net, host, proto, port, frag, sr + IP */
    731  1.1      cgd 	"Source Quench",	/* IP */
    732  1.1      cgd 	"Redirect",		/* redirect type, gateway, + IP  */
    733  1.1      cgd 	"Echo",
    734  1.1      cgd 	"Time Exceeded",	/* transit, frag reassem + IP */
    735  1.1      cgd 	"Parameter Problem",	/* pointer + IP */
    736  1.1      cgd 	"Timestamp",		/* id + seq + three timestamps */
    737  1.1      cgd 	"Timestamp Reply",	/* " */
    738  1.1      cgd 	"Info Request",		/* id + sq */
    739  1.1      cgd 	"Info Reply"		/* " */
    740  1.1      cgd };
    741  1.1      cgd #endif
    742  1.1      cgd 
    743  1.1      cgd /*
    744  1.1      cgd  * pr_icmph --
    745  1.1      cgd  *	Print a descriptive string about an ICMP header.
    746  1.1      cgd  */
    747  1.1      cgd pr_icmph(icp)
    748  1.1      cgd 	struct icmp *icp;
    749  1.1      cgd {
    750  1.1      cgd 	switch(icp->icmp_type) {
    751  1.1      cgd 	case ICMP_ECHOREPLY:
    752  1.1      cgd 		(void)printf("Echo Reply\n");
    753  1.1      cgd 		/* XXX ID + Seq + Data */
    754  1.1      cgd 		break;
    755  1.1      cgd 	case ICMP_UNREACH:
    756  1.1      cgd 		switch(icp->icmp_code) {
    757  1.1      cgd 		case ICMP_UNREACH_NET:
    758  1.1      cgd 			(void)printf("Destination Net Unreachable\n");
    759  1.1      cgd 			break;
    760  1.1      cgd 		case ICMP_UNREACH_HOST:
    761  1.1      cgd 			(void)printf("Destination Host Unreachable\n");
    762  1.1      cgd 			break;
    763  1.1      cgd 		case ICMP_UNREACH_PROTOCOL:
    764  1.1      cgd 			(void)printf("Destination Protocol Unreachable\n");
    765  1.1      cgd 			break;
    766  1.1      cgd 		case ICMP_UNREACH_PORT:
    767  1.1      cgd 			(void)printf("Destination Port Unreachable\n");
    768  1.1      cgd 			break;
    769  1.1      cgd 		case ICMP_UNREACH_NEEDFRAG:
    770  1.1      cgd 			(void)printf("frag needed and DF set\n");
    771  1.1      cgd 			break;
    772  1.1      cgd 		case ICMP_UNREACH_SRCFAIL:
    773  1.1      cgd 			(void)printf("Source Route Failed\n");
    774  1.1      cgd 			break;
    775  1.1      cgd 		default:
    776  1.1      cgd 			(void)printf("Dest Unreachable, Bad Code: %d\n",
    777  1.1      cgd 			    icp->icmp_code);
    778  1.1      cgd 			break;
    779  1.1      cgd 		}
    780  1.1      cgd 		/* Print returned IP header information */
    781  1.1      cgd #ifndef icmp_data
    782  1.1      cgd 		pr_retip(&icp->icmp_ip);
    783  1.1      cgd #else
    784  1.1      cgd 		pr_retip((struct ip *)icp->icmp_data);
    785  1.1      cgd #endif
    786  1.1      cgd 		break;
    787  1.1      cgd 	case ICMP_SOURCEQUENCH:
    788  1.1      cgd 		(void)printf("Source Quench\n");
    789  1.1      cgd #ifndef icmp_data
    790  1.1      cgd 		pr_retip(&icp->icmp_ip);
    791  1.1      cgd #else
    792  1.1      cgd 		pr_retip((struct ip *)icp->icmp_data);
    793  1.1      cgd #endif
    794  1.1      cgd 		break;
    795  1.1      cgd 	case ICMP_REDIRECT:
    796  1.1      cgd 		switch(icp->icmp_code) {
    797  1.1      cgd 		case ICMP_REDIRECT_NET:
    798  1.1      cgd 			(void)printf("Redirect Network");
    799  1.1      cgd 			break;
    800  1.1      cgd 		case ICMP_REDIRECT_HOST:
    801  1.1      cgd 			(void)printf("Redirect Host");
    802  1.1      cgd 			break;
    803  1.1      cgd 		case ICMP_REDIRECT_TOSNET:
    804  1.1      cgd 			(void)printf("Redirect Type of Service and Network");
    805  1.1      cgd 			break;
    806  1.1      cgd 		case ICMP_REDIRECT_TOSHOST:
    807  1.1      cgd 			(void)printf("Redirect Type of Service and Host");
    808  1.1      cgd 			break;
    809  1.1      cgd 		default:
    810  1.1      cgd 			(void)printf("Redirect, Bad Code: %d", icp->icmp_code);
    811  1.1      cgd 			break;
    812  1.1      cgd 		}
    813  1.1      cgd 		(void)printf("(New addr: 0x%08lx)\n", icp->icmp_gwaddr.s_addr);
    814  1.1      cgd #ifndef icmp_data
    815  1.1      cgd 		pr_retip(&icp->icmp_ip);
    816  1.1      cgd #else
    817  1.1      cgd 		pr_retip((struct ip *)icp->icmp_data);
    818  1.1      cgd #endif
    819  1.1      cgd 		break;
    820  1.1      cgd 	case ICMP_ECHO:
    821  1.1      cgd 		(void)printf("Echo Request\n");
    822  1.1      cgd 		/* XXX ID + Seq + Data */
    823  1.1      cgd 		break;
    824  1.1      cgd 	case ICMP_TIMXCEED:
    825  1.1      cgd 		switch(icp->icmp_code) {
    826  1.1      cgd 		case ICMP_TIMXCEED_INTRANS:
    827  1.1      cgd 			(void)printf("Time to live exceeded\n");
    828  1.1      cgd 			break;
    829  1.1      cgd 		case ICMP_TIMXCEED_REASS:
    830  1.1      cgd 			(void)printf("Frag reassembly time exceeded\n");
    831  1.1      cgd 			break;
    832  1.1      cgd 		default:
    833  1.1      cgd 			(void)printf("Time exceeded, Bad Code: %d\n",
    834  1.1      cgd 			    icp->icmp_code);
    835  1.1      cgd 			break;
    836  1.1      cgd 		}
    837  1.1      cgd #ifndef icmp_data
    838  1.1      cgd 		pr_retip(&icp->icmp_ip);
    839  1.1      cgd #else
    840  1.1      cgd 		pr_retip((struct ip *)icp->icmp_data);
    841  1.1      cgd #endif
    842  1.1      cgd 		break;
    843  1.1      cgd 	case ICMP_PARAMPROB:
    844  1.1      cgd 		(void)printf("Parameter problem: pointer = 0x%02x\n",
    845  1.1      cgd 		    icp->icmp_hun.ih_pptr);
    846  1.1      cgd #ifndef icmp_data
    847  1.1      cgd 		pr_retip(&icp->icmp_ip);
    848  1.1      cgd #else
    849  1.1      cgd 		pr_retip((struct ip *)icp->icmp_data);
    850  1.1      cgd #endif
    851  1.1      cgd 		break;
    852  1.1      cgd 	case ICMP_TSTAMP:
    853  1.1      cgd 		(void)printf("Timestamp\n");
    854  1.1      cgd 		/* XXX ID + Seq + 3 timestamps */
    855  1.1      cgd 		break;
    856  1.1      cgd 	case ICMP_TSTAMPREPLY:
    857  1.1      cgd 		(void)printf("Timestamp Reply\n");
    858  1.1      cgd 		/* XXX ID + Seq + 3 timestamps */
    859  1.1      cgd 		break;
    860  1.1      cgd 	case ICMP_IREQ:
    861  1.1      cgd 		(void)printf("Information Request\n");
    862  1.1      cgd 		/* XXX ID + Seq */
    863  1.1      cgd 		break;
    864  1.1      cgd 	case ICMP_IREQREPLY:
    865  1.1      cgd 		(void)printf("Information Reply\n");
    866  1.1      cgd 		/* XXX ID + Seq */
    867  1.1      cgd 		break;
    868  1.1      cgd #ifdef ICMP_MASKREQ
    869  1.1      cgd 	case ICMP_MASKREQ:
    870  1.1      cgd 		(void)printf("Address Mask Request\n");
    871  1.1      cgd 		break;
    872  1.1      cgd #endif
    873  1.1      cgd #ifdef ICMP_MASKREPLY
    874  1.1      cgd 	case ICMP_MASKREPLY:
    875  1.1      cgd 		(void)printf("Address Mask Reply\n");
    876  1.1      cgd 		break;
    877  1.1      cgd #endif
    878  1.1      cgd 	default:
    879  1.1      cgd 		(void)printf("Bad ICMP type: %d\n", icp->icmp_type);
    880  1.1      cgd 	}
    881  1.1      cgd }
    882  1.1      cgd 
    883  1.1      cgd /*
    884  1.1      cgd  * pr_iph --
    885  1.1      cgd  *	Print an IP header with options.
    886  1.1      cgd  */
    887  1.1      cgd pr_iph(ip)
    888  1.1      cgd 	struct ip *ip;
    889  1.1      cgd {
    890  1.1      cgd 	int hlen;
    891  1.1      cgd 	u_char *cp;
    892  1.1      cgd 
    893  1.1      cgd 	hlen = ip->ip_hl << 2;
    894  1.1      cgd 	cp = (u_char *)ip + 20;		/* point to options */
    895  1.1      cgd 
    896  1.1      cgd 	(void)printf("Vr HL TOS  Len   ID Flg  off TTL Pro  cks      Src      Dst Data\n");
    897  1.1      cgd 	(void)printf(" %1x  %1x  %02x %04x %04x",
    898  1.1      cgd 	    ip->ip_v, ip->ip_hl, ip->ip_tos, ip->ip_len, ip->ip_id);
    899  1.1      cgd 	(void)printf("   %1x %04x", ((ip->ip_off) & 0xe000) >> 13,
    900  1.1      cgd 	    (ip->ip_off) & 0x1fff);
    901  1.1      cgd 	(void)printf("  %02x  %02x %04x", ip->ip_ttl, ip->ip_p, ip->ip_sum);
    902  1.1      cgd 	(void)printf(" %s ", inet_ntoa(*(struct in_addr *)&ip->ip_src.s_addr));
    903  1.1      cgd 	(void)printf(" %s ", inet_ntoa(*(struct in_addr *)&ip->ip_dst.s_addr));
    904  1.1      cgd 	/* dump and option bytes */
    905  1.1      cgd 	while (hlen-- > 20) {
    906  1.1      cgd 		(void)printf("%02x", *cp++);
    907  1.1      cgd 	}
    908  1.1      cgd 	(void)putchar('\n');
    909  1.1      cgd }
    910  1.1      cgd 
    911  1.1      cgd /*
    912  1.1      cgd  * pr_addr --
    913  1.1      cgd  *	Return an ascii host address as a dotted quad and optionally with
    914  1.1      cgd  * a hostname.
    915  1.1      cgd  */
    916  1.1      cgd char *
    917  1.1      cgd pr_addr(l)
    918  1.1      cgd 	u_long l;
    919  1.1      cgd {
    920  1.1      cgd 	struct hostent *hp;
    921  1.1      cgd 	static char buf[80];
    922  1.1      cgd 
    923  1.1      cgd 	if ((options & F_NUMERIC) ||
    924  1.1      cgd 	    !(hp = gethostbyaddr((char *)&l, 4, AF_INET)))
    925  1.1      cgd 		(void)sprintf(buf, "%s", inet_ntoa(*(struct in_addr *)&l));
    926  1.1      cgd 	else
    927  1.1      cgd 		(void)sprintf(buf, "%s (%s)", hp->h_name,
    928  1.1      cgd 		    inet_ntoa(*(struct in_addr *)&l));
    929  1.1      cgd 	return(buf);
    930  1.1      cgd }
    931  1.1      cgd 
    932  1.1      cgd /*
    933  1.1      cgd  * pr_retip --
    934  1.1      cgd  *	Dump some info on a returned (via ICMP) IP packet.
    935  1.1      cgd  */
    936  1.1      cgd pr_retip(ip)
    937  1.1      cgd 	struct ip *ip;
    938  1.1      cgd {
    939  1.1      cgd 	int hlen;
    940  1.1      cgd 	u_char *cp;
    941  1.1      cgd 
    942  1.1      cgd 	pr_iph(ip);
    943  1.1      cgd 	hlen = ip->ip_hl << 2;
    944  1.1      cgd 	cp = (u_char *)ip + hlen;
    945  1.1      cgd 
    946  1.1      cgd 	if (ip->ip_p == 6)
    947  1.1      cgd 		(void)printf("TCP: from port %u, to port %u (decimal)\n",
    948  1.1      cgd 		    (*cp * 256 + *(cp + 1)), (*(cp + 2) * 256 + *(cp + 3)));
    949  1.1      cgd 	else if (ip->ip_p == 17)
    950  1.1      cgd 		(void)printf("UDP: from port %u, to port %u (decimal)\n",
    951  1.1      cgd 			(*cp * 256 + *(cp + 1)), (*(cp + 2) * 256 + *(cp + 3)));
    952  1.1      cgd }
    953  1.1      cgd 
    954  1.1      cgd fill(bp, patp)
    955  1.1      cgd 	char *bp, *patp;
    956  1.1      cgd {
    957  1.1      cgd 	register int ii, jj, kk;
    958  1.1      cgd 	int pat[16];
    959  1.1      cgd 	char *cp;
    960  1.1      cgd 
    961  1.1      cgd 	for (cp = patp; *cp; cp++)
    962  1.8  mycroft 		if (!isxdigit(*cp))
    963  1.8  mycroft 			errx(1, "patterns must be specified as hex digits");
    964  1.1      cgd 	ii = sscanf(patp,
    965  1.1      cgd 	    "%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x",
    966  1.1      cgd 	    &pat[0], &pat[1], &pat[2], &pat[3], &pat[4], &pat[5], &pat[6],
    967  1.1      cgd 	    &pat[7], &pat[8], &pat[9], &pat[10], &pat[11], &pat[12],
    968  1.1      cgd 	    &pat[13], &pat[14], &pat[15]);
    969  1.1      cgd 
    970  1.1      cgd 	if (ii > 0)
    971  1.8  mycroft 		for (kk = 0;
    972  1.8  mycroft 		    kk <= MAXPACKET - (8 + sizeof(struct timeval) + ii);
    973  1.8  mycroft 		    kk += ii)
    974  1.1      cgd 			for (jj = 0; jj < ii; ++jj)
    975  1.1      cgd 				bp[jj + kk] = pat[jj];
    976  1.1      cgd 	if (!(options & F_QUIET)) {
    977  1.1      cgd 		(void)printf("PATTERN: 0x");
    978  1.1      cgd 		for (jj = 0; jj < ii; ++jj)
    979  1.1      cgd 			(void)printf("%02x", bp[jj] & 0xFF);
    980  1.1      cgd 		(void)printf("\n");
    981  1.1      cgd 	}
    982  1.1      cgd }
    983  1.1      cgd 
    984  1.1      cgd usage()
    985  1.1      cgd {
    986  1.1      cgd 	(void)fprintf(stderr,
    987  1.8  mycroft 	    "usage: ping [-dfLnqRrv] [-c count] [-I ifaddr] [-i wait] [-l preload]\n\t[-p pattern] [-s packetsize] [-t ttl] host\n");
    988  1.1      cgd 	exit(1);
    989  1.1      cgd }
    990