2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
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 * 4. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 static const char copyright
[] =
36 "@(#) Copyright (c) 1989, 1993\n\
37 The Regents of the University of California. All rights reserved.\n";
41 static char sccsid
[] = "@(#)ping.c 8.1 (Berkeley) 6/5/93";
44 #include <sys/cdefs.h>
46 __FBSDID("$FreeBSD: /repoman/r/ncvs/src/sbin/ping/ping.c,v 1.105 2004/08/14 17:46:10 stefanf Exp $");
52 * Using the Internet Control Message Protocol (ICMP) "ECHO" facility,
53 * measure round-trip-delays and packet loss across network paths.
57 * U. S. Army Ballistic Research Laboratory
61 * Public Domain. Distribution Unlimited.
63 * More statistics could always be gathered.
64 * This program has to run SUID to ROOT to access the ICMP socket.
67 #include <sys/param.h> /* NB: we rely on this for <sys/types.h> */
68 #include <sys/socket.h>
69 #include <sys/sysctl.h>
73 #include <netinet/in.h>
74 #include <netinet/in_systm.h>
75 #include <netinet/ip.h>
76 #include <netinet/ip_icmp.h>
77 #include <netinet/ip_var.h>
78 #include <arpa/inet.h>
81 #include <netinet6/ipsec.h>
96 #define INADDR_LEN ((int)sizeof(in_addr_t))
97 #define TIMEVAL_LEN ((int)sizeof(struct timeval))
98 #define MASK_LEN (ICMP_MASKLEN - ICMP_MINLEN)
99 #define TS_LEN (ICMP_TSLEN - ICMP_MINLEN)
100 #define DEFDATALEN 56 /* default data length */
101 #define FLOOD_BACKOFF 20000 /* usecs to back off if F_FLOOD mode */
102 /* runs out of buffer space */
103 #define MAXIPLEN (sizeof(struct ip) + MAX_IPOPTLEN)
104 #define MAXICMPLEN (ICMP_ADVLENMIN + MAX_IPOPTLEN)
105 #define MAXWAIT 10 /* max seconds to wait for response */
106 #define MAXALARM (60 * 60) /* max seconds for alarm timeout */
109 #define A(bit) rcvd_tbl[(bit)>>3] /* identify byte in array */
110 #define B(bit) (1 << ((bit) & 0x07)) /* identify bit in byte */
111 #define SET(bit) (A(bit) |= B(bit))
112 #define CLR(bit) (A(bit) &= (~B(bit)))
113 #define TST(bit) (A(bit) & B(bit))
115 /* various options */
117 #define F_FLOOD 0x0001
118 #define F_INTERVAL 0x0002
119 #define F_NUMERIC 0x0004
120 #define F_PINGFILLED 0x0008
121 #define F_QUIET 0x0010
122 #define F_RROUTE 0x0020
123 #define F_SO_DEBUG 0x0040
124 #define F_SO_DONTROUTE 0x0080
125 #define F_VERBOSE 0x0100
126 #define F_QUIET2 0x0200
127 #define F_NOLOOP 0x0400
128 #define F_MTTL 0x0800
130 #define F_AUDIBLE 0x2000
132 #ifdef IPSEC_POLICY_IPSEC
133 #define F_POLICY 0x4000
134 #endif /*IPSEC_POLICY_IPSEC*/
137 #define F_MISSED 0x10000
138 #define F_ONCE 0x20000
139 #define F_HDRINCL 0x40000
140 #define F_MASK 0x80000
141 #define F_TIME 0x100000
144 * MAX_DUP_CHK is the number of bits in received table, i.e. the maximum
145 * number of received sequence numbers we can keep track of. Change 128
146 * to 8192 for complete accuracy...
148 #define MAX_DUP_CHK (8 * 128)
149 int mx_dup_ck
= MAX_DUP_CHK
;
150 char rcvd_tbl
[MAX_DUP_CHK
/ 8];
152 struct sockaddr_in whereto
; /* who to ping */
153 int datalen
= DEFDATALEN
;
155 int s
; /* socket file descriptor */
156 u_char outpackhdr
[IP_MAXPACKET
], *outpack
;
157 char BBELL
= '\a'; /* characters written for MISSED and AUDIBLE */
158 char BSPACE
= '\b'; /* characters written for flood */
162 int ident
; /* process id to identify our packets */
163 int uid
; /* cached uid for micro-optimization */
164 u_char icmp_type
= ICMP_ECHO
;
165 u_char icmp_type_rsp
= ICMP_ECHOREPLY
;
170 long nmissedmax
; /* max value of ntransmitted - nreceived - 1 */
171 long npackets
; /* max packets to transmit */
172 long nreceived
; /* # of packets we got back */
173 long nrepeats
; /* number of duplicates */
174 long ntransmitted
; /* sequence # for outbound packets = #sent */
175 int interval
= 1000; /* interval between packets, ms */
178 int timing
; /* flag to do timing */
179 double tmin
= 999999999.0; /* minimum round trip time */
180 double tmax
= 0.0; /* maximum round trip time */
181 double tsum
= 0.0; /* sum of all times, for doing average */
182 double tsumsq
= 0.0; /* sum of all times squared, for std. dev. */
184 volatile sig_atomic_t finish_up
; /* nonzero if we've been told to finish up */
185 volatile sig_atomic_t siginfo_p
;
187 static void fill(char *, char *);
188 static u_short
in_cksum(u_short
*, int);
189 static void check_status(void);
190 static void finish(void) __dead2
;
191 static void pinger(void);
192 static char *pr_addr(struct in_addr
);
193 static char *pr_ntime(n_time
);
194 static void pr_icmph(struct icmp
*);
195 static void pr_iph(struct ip
*);
196 static void pr_pack(char *, int, struct sockaddr_in
*, struct timeval
*);
197 static void pr_retip(struct ip
*);
198 static void status(int);
199 static void stopit(int);
200 static void tvsub(struct timeval
*, struct timeval
*);
201 static void usage(void) __dead2
;
208 struct sockaddr_in from
, sock_in
;
209 struct in_addr ifaddr
;
210 struct timeval last
, intvl
;
214 struct sigaction si_sa
;
216 u_char
*datap
, packet
[IP_MAXPACKET
];
217 char *ep
, *source
, *target
, *payload
;
219 #ifdef IPSEC_POLICY_IPSEC
220 char *policy_in
, *policy_out
;
222 struct sockaddr_in
*to
;
224 u_long alarmtimeout
, ultmp
;
225 int almost_done
, ch
, df
, hold
, i
, icmp_len
, mib
[4], preload
, sockerrno
,
227 char ctrl
[CMSG_SPACE(sizeof(struct timeval
))];
228 char hnamebuf
[MAXHOSTNAMELEN
], snamebuf
[MAXHOSTNAMELEN
];
230 char rspace
[MAX_IPOPTLEN
]; /* record route space */
232 unsigned char loop
, mttl
;
234 payload
= source
= NULL
;
235 #ifdef IPSEC_POLICY_IPSEC
236 policy_in
= policy_out
= NULL
;
240 * Do the stuff that we need root priv's for *first*, and
241 * then drop our setuid bit. Save error reporting for
244 s
= socket(AF_INET
, SOCK_RAW
, IPPROTO_ICMP
);
250 alarmtimeout
= df
= preload
= tos
= 0;
252 outpack
= outpackhdr
+ sizeof(struct ip
);
253 while ((ch
= getopt(argc
, argv
,
254 "Aac:DdfI:i:Ll:M:m:nop:QqRrS:s:T:t:vz:"
256 #ifdef IPSEC_POLICY_IPSEC
258 #endif /*IPSEC_POLICY_IPSEC*/
267 options
|= F_AUDIBLE
;
270 ultmp
= strtoul(optarg
, &ep
, 0);
271 if (*ep
|| ep
== optarg
|| ultmp
> LONG_MAX
|| !ultmp
)
273 "invalid count of packets to transmit: `%s'",
278 options
|= F_HDRINCL
;
282 options
|= F_SO_DEBUG
;
287 err(EX_NOPERM
, "-f flag");
290 setbuf(stdout
, (char *)NULL
);
292 case 'I': /* multicast interface */
293 if (inet_aton(optarg
, &ifaddr
) == 0)
295 "invalid multicast interface: `%s'",
299 case 'i': /* wait between sending packets */
300 t
= strtod(optarg
, &ep
) * 1000.0;
301 if (*ep
|| ep
== optarg
|| t
> (double)INT_MAX
)
302 errx(EX_USAGE
, "invalid timing interval: `%s'",
304 options
|= F_INTERVAL
;
306 if (uid
&& interval
< 1000) {
308 err(EX_NOPERM
, "-i interval too short");
316 ultmp
= strtoul(optarg
, &ep
, 0);
317 if (*ep
|| ep
== optarg
|| ultmp
> INT_MAX
)
319 "invalid preload value: `%s'", optarg
);
322 err(EX_NOPERM
, "-l flag");
337 errx(EX_USAGE
, "invalid message: `%c'", optarg
[0]);
342 ultmp
= strtoul(optarg
, &ep
, 0);
343 if (*ep
|| ep
== optarg
|| ultmp
> MAXTTL
)
344 errx(EX_USAGE
, "invalid TTL: `%s'", optarg
);
349 options
|= F_NUMERIC
;
355 #ifdef IPSEC_POLICY_IPSEC
358 if (!strncmp("in", optarg
, 2))
359 policy_in
= strdup(optarg
);
360 else if (!strncmp("out", optarg
, 3))
361 policy_out
= strdup(optarg
);
363 errx(1, "invalid security policy");
365 #endif /*IPSEC_POLICY_IPSEC*/
367 case 'p': /* fill buffer with user pattern */
368 options
|= F_PINGFILLED
;
381 options
|= F_SO_DONTROUTE
;
386 case 's': /* size of packet to send */
387 ultmp
= strtoul(optarg
, &ep
, 0);
388 if (*ep
|| ep
== optarg
)
389 errx(EX_USAGE
, "invalid packet size: `%s'",
392 if (uid
!= 0 && ultmp
> DEFDATALEN
) {
395 "packet size too large: %lu > %u",
401 case 'T': /* multicast TTL */
402 ultmp
= strtoul(optarg
, &ep
, 0);
403 if (*ep
|| ep
== optarg
|| ultmp
> MAXTTL
)
404 errx(EX_USAGE
, "invalid multicast TTL: `%s'",
410 alarmtimeout
= strtoul(optarg
, &ep
, 0);
411 if ((alarmtimeout
< 1) || (alarmtimeout
== ULONG_MAX
))
412 errx(EX_USAGE
, "invalid timeout: `%s'",
414 if (alarmtimeout
> MAXALARM
)
415 errx(EX_USAGE
, "invalid timeout: `%s' > %d",
417 alarm((int)alarmtimeout
);
420 options
|= F_VERBOSE
;
423 options
|= F_HDRINCL
;
424 ultmp
= strtoul(optarg
, &ep
, 0);
425 if (*ep
|| ep
== optarg
|| ultmp
> MAXTOS
)
426 errx(EX_USAGE
, "invalid TOS: `%s'", optarg
);
434 if (argc
- optind
!= 1)
436 target
= argv
[optind
];
438 switch (options
& (F_MASK
|F_TIME
)) {
441 icmp_type
= ICMP_MASKREQ
;
442 icmp_type_rsp
= ICMP_MASKREPLY
;
444 if (!(options
& F_QUIET
))
445 (void)printf("ICMP_MASKREQ\n");
448 icmp_type
= ICMP_TSTAMP
;
449 icmp_type_rsp
= ICMP_TSTAMPREPLY
;
451 if (!(options
& F_QUIET
))
452 (void)printf("ICMP_TSTAMP\n");
455 errx(EX_USAGE
, "ICMP_TSTAMP and ICMP_MASKREQ are exclusive.");
458 icmp_len
= sizeof(struct ip
) + ICMP_MINLEN
+ phdr_len
;
459 if (options
& F_RROUTE
)
460 icmp_len
+= MAX_IPOPTLEN
;
461 maxpayload
= IP_MAXPACKET
- icmp_len
;
462 if (datalen
> maxpayload
)
463 errx(EX_USAGE
, "packet size too large: %d > %d", datalen
,
465 send_len
= icmp_len
+ datalen
;
466 datap
= &outpack
[ICMP_MINLEN
+ phdr_len
+ TIMEVAL_LEN
];
467 if (options
& F_PINGFILLED
) {
468 fill((char *)datap
, payload
);
471 bzero((char *)&sock_in
, sizeof(sock_in
));
472 sock_in
.sin_family
= AF_INET
;
473 if (inet_aton(source
, &sock_in
.sin_addr
) != 0) {
476 hp
= gethostbyname2(source
, AF_INET
);
478 errx(EX_NOHOST
, "cannot resolve %s: %s",
479 source
, hstrerror(h_errno
));
481 sock_in
.sin_len
= sizeof sock_in
;
482 if ((unsigned)hp
->h_length
> sizeof(sock_in
.sin_addr
) ||
484 errx(1, "gethostbyname2: illegal address");
485 memcpy(&sock_in
.sin_addr
, hp
->h_addr_list
[0],
486 sizeof(sock_in
.sin_addr
));
487 (void)strncpy(snamebuf
, hp
->h_name
,
488 sizeof(snamebuf
) - 1);
489 snamebuf
[sizeof(snamebuf
) - 1] = '\0';
490 shostname
= snamebuf
;
492 if (bind(s
, (struct sockaddr
*)&sock_in
, sizeof sock_in
) == -1)
496 bzero(&whereto
, sizeof(whereto
));
498 to
->sin_family
= AF_INET
;
499 to
->sin_len
= sizeof *to
;
500 if (inet_aton(target
, &to
->sin_addr
) != 0) {
503 hp
= gethostbyname2(target
, AF_INET
);
505 errx(EX_NOHOST
, "cannot resolve %s: %s",
506 target
, hstrerror(h_errno
));
508 if ((unsigned)hp
->h_length
> sizeof(to
->sin_addr
))
509 errx(1, "gethostbyname2 returned an illegal address");
510 memcpy(&to
->sin_addr
, hp
->h_addr_list
[0], sizeof to
->sin_addr
);
511 (void)strncpy(hnamebuf
, hp
->h_name
, sizeof(hnamebuf
) - 1);
512 hnamebuf
[sizeof(hnamebuf
) - 1] = '\0';
516 if (options
& F_FLOOD
&& options
& F_INTERVAL
)
517 errx(EX_USAGE
, "-f and -i: incompatible options");
519 if (options
& F_FLOOD
&& IN_MULTICAST(ntohl(to
->sin_addr
.s_addr
)))
521 "-f flag cannot be used with multicast destination");
522 if (options
& (F_MIF
| F_NOLOOP
| F_MTTL
)
523 && !IN_MULTICAST(ntohl(to
->sin_addr
.s_addr
)))
525 "-I, -L, -T flags cannot be used with unicast destination");
527 if (datalen
>= TIMEVAL_LEN
) /* can we time transfer */
530 if (!(options
& F_PINGFILLED
))
531 for (i
= TIMEVAL_LEN
; i
< datalen
; ++i
)
534 ident
= getpid() & 0xFFFF;
538 err(EX_OSERR
, "socket");
541 if (options
& F_SO_DEBUG
)
542 (void)setsockopt(s
, SOL_SOCKET
, SO_DEBUG
, (char *)&hold
,
544 if (options
& F_SO_DONTROUTE
)
545 (void)setsockopt(s
, SOL_SOCKET
, SO_DONTROUTE
, (char *)&hold
,
548 #ifdef IPSEC_POLICY_IPSEC
549 if (options
& F_POLICY
) {
551 if (policy_in
!= NULL
) {
552 buf
= ipsec_set_policy(policy_in
, strlen(policy_in
));
554 errx(EX_CONFIG
, "%s", ipsec_strerror());
555 if (setsockopt(s
, IPPROTO_IP
, IP_IPSEC_POLICY
,
556 buf
, ipsec_get_policylen(buf
)) < 0)
558 "ipsec policy cannot be configured");
562 if (policy_out
!= NULL
) {
563 buf
= ipsec_set_policy(policy_out
, strlen(policy_out
));
565 errx(EX_CONFIG
, "%s", ipsec_strerror());
566 if (setsockopt(s
, IPPROTO_IP
, IP_IPSEC_POLICY
,
567 buf
, ipsec_get_policylen(buf
)) < 0)
569 "ipsec policy cannot be configured");
573 #endif /*IPSEC_POLICY_IPSEC*/
576 if (options
& F_HDRINCL
) {
577 ip
= (struct ip
*)outpackhdr
;
578 if (!(options
& (F_TTL
| F_MTTL
))) {
582 mib
[3] = IPCTL_DEFTTL
;
584 if (sysctl(mib
, 4, &ttl
, &sz
, NULL
, 0) == -1)
585 err(1, "sysctl(net.inet.ip.ttl)");
587 setsockopt(s
, IPPROTO_IP
, IP_HDRINCL
, &hold
, sizeof(hold
));
588 ip
->ip_v
= IPVERSION
;
589 ip
->ip_hl
= sizeof(struct ip
) >> 2;
592 ip
->ip_off
= df
? IP_DF
: 0;
594 ip
->ip_p
= IPPROTO_ICMP
;
595 ip
->ip_src
.s_addr
= source
? sock_in
.sin_addr
.s_addr
: INADDR_ANY
;
596 ip
->ip_dst
= to
->sin_addr
;
598 /* record route option */
599 if (options
& F_RROUTE
) {
601 bzero(rspace
, sizeof(rspace
));
602 rspace
[IPOPT_OPTVAL
] = IPOPT_RR
;
603 rspace
[IPOPT_OLEN
] = sizeof(rspace
) - 1;
604 rspace
[IPOPT_OFFSET
] = IPOPT_MINOFF
;
605 rspace
[sizeof(rspace
) - 1] = IPOPT_EOL
;
606 if (setsockopt(s
, IPPROTO_IP
, IP_OPTIONS
, rspace
,
608 err(EX_OSERR
, "setsockopt IP_OPTIONS");
611 "record route not available in this implementation");
612 #endif /* IP_OPTIONS */
615 if (options
& F_TTL
) {
616 if (setsockopt(s
, IPPROTO_IP
, IP_TTL
, &ttl
,
618 err(EX_OSERR
, "setsockopt IP_TTL");
621 if (options
& F_NOLOOP
) {
622 if (setsockopt(s
, IPPROTO_IP
, IP_MULTICAST_LOOP
, &loop
,
624 err(EX_OSERR
, "setsockopt IP_MULTICAST_LOOP");
627 if (options
& F_MTTL
) {
628 if (setsockopt(s
, IPPROTO_IP
, IP_MULTICAST_TTL
, &mttl
,
630 err(EX_OSERR
, "setsockopt IP_MULTICAST_TTL");
633 if (options
& F_MIF
) {
634 if (setsockopt(s
, IPPROTO_IP
, IP_MULTICAST_IF
, &ifaddr
,
635 sizeof(ifaddr
)) < 0) {
636 err(EX_OSERR
, "setsockopt IP_MULTICAST_IF");
641 if (setsockopt(s
, SOL_SOCKET
, SO_TIMESTAMP
, &on
, sizeof(on
)) < 0)
642 err(EX_OSERR
, "setsockopt SO_TIMESTAMP");
647 * When pinging the broadcast address, you can get a lot of answers.
648 * Doing something so evil is useful if you are trying to stress the
649 * ethernet, or just want to fill the arp cache to get some stuff for
650 * /etc/ethers. But beware: RFC 1122 allows hosts to ignore broadcast
651 * or multicast pings if they wish.
655 * XXX receive buffer needs undetermined space for mbuf overhead
658 hold
= IP_MAXPACKET
+ 128;
659 (void)setsockopt(s
, SOL_SOCKET
, SO_RCVBUF
, (char *)&hold
,
662 (void)setsockopt(s
, SOL_SOCKET
, SO_SNDBUF
, (char *)&hold
,
665 if (to
->sin_family
== AF_INET
) {
666 (void)printf("PING %s (%s)", hostname
,
667 inet_ntoa(to
->sin_addr
));
669 (void)printf(" from %s", shostname
);
670 (void)printf(": %d data bytes\n", datalen
);
672 (void)printf("PING %s: %d data bytes\n", hostname
, datalen
);
675 * Use sigaction() instead of signal() to get unambiguous semantics,
676 * in particular with SA_RESTART not set.
679 sigemptyset(&si_sa
.sa_mask
);
682 si_sa
.sa_handler
= stopit
;
683 if (sigaction(SIGINT
, &si_sa
, 0) == -1) {
684 err(EX_OSERR
, "sigaction SIGINT");
687 si_sa
.sa_handler
= status
;
688 if (sigaction(SIGINFO
, &si_sa
, 0) == -1) {
689 err(EX_OSERR
, "sigaction");
692 if (alarmtimeout
> 0) {
693 si_sa
.sa_handler
= stopit
;
694 if (sigaction(SIGALRM
, &si_sa
, 0) == -1)
695 err(EX_OSERR
, "sigaction SIGALRM");
698 bzero(&msg
, sizeof(msg
));
699 msg
.msg_name
= (caddr_t
)&from
;
703 msg
.msg_control
= (caddr_t
)ctrl
;
705 iov
.iov_base
= packet
;
706 iov
.iov_len
= IP_MAXPACKET
;
709 pinger(); /* send the first ping */
711 if (npackets
!= 0 && preload
> npackets
)
713 while (preload
--) /* fire off them quickies */
716 (void)gettimeofday(&last
, NULL
);
718 if (options
& F_FLOOD
) {
720 intvl
.tv_usec
= 10000;
722 intvl
.tv_sec
= interval
/ 1000;
723 intvl
.tv_usec
= interval
% 1000 * 1000;
728 struct timeval now
, timeout
;
733 if ((unsigned)s
>= FD_SETSIZE
)
734 errx(EX_OSERR
, "descriptor too large");
737 (void)gettimeofday(&now
, NULL
);
738 timeout
.tv_sec
= last
.tv_sec
+ intvl
.tv_sec
- now
.tv_sec
;
739 timeout
.tv_usec
= last
.tv_usec
+ intvl
.tv_usec
- now
.tv_usec
;
740 while (timeout
.tv_usec
< 0) {
741 timeout
.tv_usec
+= 1000000;
744 while (timeout
.tv_usec
>= 1000000) {
745 timeout
.tv_usec
-= 1000000;
748 if (timeout
.tv_sec
< 0)
749 timeout
.tv_sec
= timeout
.tv_usec
= 0;
750 n
= select(s
+ 1, &rfds
, NULL
, NULL
, &timeout
);
752 continue; /* Must be EINTR. */
754 struct timeval
*tv
= NULL
;
756 struct cmsghdr
*cmsg
= (struct cmsghdr
*)&ctrl
;
758 msg
.msg_controllen
= sizeof(ctrl
);
760 msg
.msg_namelen
= sizeof(from
);
761 if ((cc
= recvmsg(s
, &msg
, 0)) < 0) {
768 if (cmsg
->cmsg_level
== SOL_SOCKET
&&
769 cmsg
->cmsg_type
== SCM_TIMESTAMP
&&
770 cmsg
->cmsg_len
== CMSG_LEN(sizeof *tv
)) {
771 /* Copy to avoid alignment problems: */
772 memcpy(&now
, CMSG_DATA(cmsg
), sizeof(now
));
777 (void)gettimeofday(&now
, NULL
);
780 pr_pack((char *)packet
, cc
, &from
, tv
);
781 if ((options
& F_ONCE
&& nreceived
) ||
782 (npackets
&& nreceived
>= npackets
))
785 if (n
== 0 || options
& F_FLOOD
) {
786 if (!npackets
|| ntransmitted
< npackets
)
794 intvl
.tv_sec
= 2 * tmax
/ 1000;
798 intvl
.tv_sec
= MAXWAIT
;
800 (void)gettimeofday(&last
, NULL
);
801 if (ntransmitted
- nreceived
- 1 > nmissedmax
) {
802 nmissedmax
= ntransmitted
- nreceived
- 1;
803 if (options
& F_MISSED
)
804 (void)write(STDOUT_FILENO
, &BBELL
, 1);
810 exit(0); /* Make the compiler happy */
815 * Set the global bit that causes the main loop to quit.
816 * Do NOT call finish() from here, since finish() does far too much
817 * to be called from a signal handler.
825 * When doing reverse DNS lookups, the finish_up flag might not
826 * be noticed for a while. Just exit if we get a second SIGINT.
828 if (!(options
& F_NUMERIC
) && finish_up
)
829 _exit(nreceived
? 0 : 2);
835 * Compose and transmit an ICMP ECHO REQUEST packet. The IP packet
836 * will be added on by the kernel. The ID field is our UNIX process ID,
837 * and the sequence number is an ascending integer. The first TIMEVAL_LEN
838 * bytes of the data portion are used to hold a UNIX "timeval" struct in
839 * host byte-order, to compute the round-trip time.
851 icp
= (struct icmp
*)outpack
;
852 icp
->icmp_type
= icmp_type
;
855 icp
->icmp_seq
= htons(ntransmitted
);
856 icp
->icmp_id
= ident
; /* ID */
858 CLR(ntransmitted
% mx_dup_ck
);
860 if ((options
& F_TIME
) || timing
) {
861 (void)gettimeofday(&now
, NULL
);
863 if (options
& F_TIME
)
864 icp
->icmp_otime
= htonl((now
.tv_sec
% (24*60*60))
865 * 1000 + now
.tv_usec
/ 1000);
868 (void *)&outpack
[ICMP_MINLEN
+ phdr_len
],
869 sizeof(struct timeval
));
872 cc
= ICMP_MINLEN
+ phdr_len
+ datalen
;
874 /* compute ICMP checksum here */
875 icp
->icmp_cksum
= in_cksum((u_short
*)icp
, cc
);
877 if (options
& F_HDRINCL
) {
878 cc
+= sizeof(struct ip
);
879 ip
= (struct ip
*)outpackhdr
;
881 ip
->ip_sum
= in_cksum((u_short
*)outpackhdr
, cc
);
884 i
= sendto(s
, (char *)packet
, cc
, 0, (struct sockaddr
*)&whereto
,
887 if (i
< 0 || i
!= cc
) {
889 if (options
& F_FLOOD
&& errno
== ENOBUFS
) {
890 usleep(FLOOD_BACKOFF
);
895 warn("%s: partial write: %d of %d bytes",
900 if (!(options
& F_QUIET
) && options
& F_FLOOD
)
901 (void)write(STDOUT_FILENO
, &DOT
, 1);
906 * Print out the packet, if it came from us. This logic is necessary
907 * because ALL readers of the ICMP socket get a copy of ALL ICMP packets
908 * which arrive ('tis only fair). This permits multiple copies of this
909 * program to be run without having intermingled output (or statistics!).
912 pr_pack(buf
, cc
, from
, tv
)
915 struct sockaddr_in
*from
;
924 int dupflag
, hlen
, i
, j
, recv_len
, seq
;
925 static int old_rrlen
;
926 static char old_rr
[MAX_IPOPTLEN
];
928 /* Check the IP header */
929 ip
= (struct ip
*)buf
;
930 hlen
= ip
->ip_hl
<< 2;
932 if (cc
< hlen
+ ICMP_MINLEN
) {
933 if (options
& F_VERBOSE
)
934 warn("packet too short (%d bytes) from %s", cc
,
935 inet_ntoa(from
->sin_addr
));
939 /* Now the ICMP part */
941 icp
= (struct icmp
*)(buf
+ hlen
);
942 if (icp
->icmp_type
== icmp_type_rsp
) {
943 if (icp
->icmp_id
!= ident
)
944 return; /* 'Twas not our ECHO */
954 tp
= (const char *)tp
+ phdr_len
;
956 if (cc
- ICMP_MINLEN
- phdr_len
>= sizeof(tv1
)) {
957 /* Copy to avoid alignment problems: */
958 memcpy(&tv1
, tp
, sizeof(tv1
));
960 triptime
= ((double)tv
->tv_sec
) * 1000.0 +
961 ((double)tv
->tv_usec
) / 1000.0;
963 tsumsq
+= triptime
* triptime
;
972 seq
= ntohs(icp
->icmp_seq
);
974 if (TST(seq
% mx_dup_ck
)) {
979 SET(seq
% mx_dup_ck
);
983 if (options
& F_QUIET
)
986 if (options
& F_FLOOD
)
987 (void)write(STDOUT_FILENO
, &BSPACE
, 1);
989 (void)printf("%d bytes from %s: icmp_seq=%u", cc
,
990 inet_ntoa(*(struct in_addr
*)&from
->sin_addr
.s_addr
),
992 (void)printf(" ttl=%d", ip
->ip_ttl
);
994 (void)printf(" time=%.3f ms", triptime
);
996 (void)printf(" (DUP!)");
997 if (options
& F_AUDIBLE
)
998 (void)write(STDOUT_FILENO
, &BBELL
, 1);
999 if (options
& F_MASK
) {
1000 /* Just prentend this cast isn't ugly */
1001 (void)printf(" mask=%s",
1002 pr_addr(*(struct in_addr
*)&(icp
->icmp_mask
)));
1004 if (options
& F_TIME
) {
1005 (void)printf(" tso=%s", pr_ntime(icp
->icmp_otime
));
1006 (void)printf(" tsr=%s", pr_ntime(icp
->icmp_rtime
));
1007 (void)printf(" tst=%s", pr_ntime(icp
->icmp_ttime
));
1009 if (recv_len
!= send_len
) {
1011 "\nwrong total length %d instead of %d",
1012 recv_len
, send_len
);
1014 /* check the data */
1015 cp
= (u_char
*)&icp
->icmp_data
[phdr_len
];
1016 dp
= &outpack
[ICMP_MINLEN
+ phdr_len
];
1017 cc
-= ICMP_MINLEN
+ phdr_len
;
1019 if (timing
) { /* don't check variable timestamp */
1025 for (; i
< datalen
&& cc
> 0; ++i
, ++cp
, ++dp
, --cc
) {
1027 (void)printf("\nwrong data byte #%d should be 0x%x but was 0x%x",
1029 (void)printf("\ncp:");
1030 cp
= (u_char
*)&icp
->icmp_data
[0];
1031 for (i
= 0; i
< datalen
; ++i
, ++cp
) {
1033 (void)printf("\n\t");
1034 (void)printf("%2x ", *cp
);
1036 (void)printf("\ndp:");
1037 cp
= &outpack
[ICMP_MINLEN
];
1038 for (i
= 0; i
< datalen
; ++i
, ++cp
) {
1040 (void)printf("\n\t");
1041 (void)printf("%2x ", *cp
);
1049 * We've got something other than an ECHOREPLY.
1050 * See if it's a reply to something that we sent.
1051 * We can compare IP destination, protocol,
1052 * and ICMP type and ID.
1054 * Only print all the error messages if we are running
1055 * as root to avoid leaking information not normally
1056 * available to those not running as root.
1059 struct ip
*oip
= &icp
->icmp_ip
;
1061 struct ip
*oip
= (struct ip
*)icp
->icmp_data
;
1063 struct icmp
*oicmp
= (struct icmp
*)(oip
+ 1);
1065 if (((options
& F_VERBOSE
) && uid
== 0) ||
1066 (!(options
& F_QUIET2
) &&
1067 (oip
->ip_dst
.s_addr
== whereto
.sin_addr
.s_addr
) &&
1068 (oip
->ip_p
== IPPROTO_ICMP
) &&
1069 (oicmp
->icmp_type
== ICMP_ECHO
) &&
1070 (oicmp
->icmp_id
== ident
))) {
1071 (void)printf("%d bytes from %s: ", cc
,
1072 pr_addr(from
->sin_addr
));
1078 /* Display any IP options */
1079 cp
= (u_char
*)buf
+ sizeof(struct ip
);
1081 for (; hlen
> (int)sizeof(struct ip
); --hlen
, ++cp
)
1088 (void)printf(*cp
== IPOPT_LSRR
?
1089 "\nLSRR: " : "\nSSRR: ");
1090 j
= cp
[IPOPT_OLEN
] - IPOPT_MINOFF
+ 1;
1093 if (j
>= INADDR_LEN
&&
1094 j
<= hlen
- (int)sizeof(struct ip
)) {
1096 bcopy(++cp
, &ina
.s_addr
, INADDR_LEN
);
1097 if (ina
.s_addr
== 0)
1098 (void)printf("\t0.0.0.0");
1100 (void)printf("\t%s",
1103 cp
+= INADDR_LEN
- 1;
1107 (void)putchar('\n');
1110 (void)printf("\t(truncated route)\n");
1113 j
= cp
[IPOPT_OLEN
]; /* get length */
1114 i
= cp
[IPOPT_OFFSET
]; /* and pointer */
1119 i
= i
- IPOPT_MINOFF
+ 1;
1120 if (i
< 0 || i
> (hlen
- (int)sizeof(struct ip
))) {
1125 && !bcmp((char *)cp
, old_rr
, i
)
1126 && !(options
& F_FLOOD
)) {
1127 (void)printf("\t(same route)");
1133 bcopy((char *)cp
, old_rr
, i
);
1134 (void)printf("\nRR: ");
1135 if (i
>= INADDR_LEN
&&
1136 i
<= hlen
- (int)sizeof(struct ip
)) {
1138 bcopy(++cp
, &ina
.s_addr
, INADDR_LEN
);
1139 if (ina
.s_addr
== 0)
1140 (void)printf("\t0.0.0.0");
1142 (void)printf("\t%s",
1145 cp
+= INADDR_LEN
- 1;
1149 (void)putchar('\n');
1152 (void)printf("\t(truncated route)");
1155 (void)printf("\nNOP");
1158 (void)printf("\nunknown option %x", *cp
);
1161 if (!(options
& F_FLOOD
)) {
1162 (void)putchar('\n');
1163 (void)fflush(stdout
);
1169 * Checksum routine for Internet Protocol family headers (C Version)
1189 * Our algorithm is simple, using a 32 bit accumulator (sum), we add
1190 * sequential 16 bit words to it, and at the end, fold back all the
1191 * carry bits from the top 16 bits into the lower 16 bits.
1198 /* mop up an odd byte, if necessary */
1200 last
.uc
[0] = *(u_char
*)w
;
1205 /* add back carry outs from top 16 bits to low 16 bits */
1206 sum
= (sum
>> 16) + (sum
& 0xffff); /* add hi 16 to low 16 */
1207 sum
+= (sum
>> 16); /* add carry */
1208 answer
= ~sum
; /* truncate to 16 bits */
1214 * Subtract 2 timeval structs: out = out - in. Out is assumed to
1219 struct timeval
*out
, *in
;
1222 if ((out
->tv_usec
-= in
->tv_usec
) < 0) {
1224 out
->tv_usec
+= 1000000;
1226 out
->tv_sec
-= in
->tv_sec
;
1231 * Print out statistics when SIGINFO is received.
1248 (void)fprintf(stderr
, "\r%ld/%ld packets received (%.0f%%)",
1249 nreceived
, ntransmitted
,
1250 ntransmitted
? nreceived
* 100.0 / ntransmitted
: 0.0);
1251 if (nreceived
&& timing
)
1252 (void)fprintf(stderr
, " %.3f min / %.3f avg / %.3f max",
1253 tmin
, tsum
/ (nreceived
+ nrepeats
), tmax
);
1254 (void)fprintf(stderr
, "\n");
1260 * Print out statistics, and give up.
1266 (void)signal(SIGINT
, SIG_IGN
);
1267 (void)signal(SIGALRM
, SIG_IGN
);
1268 (void)putchar('\n');
1269 (void)fflush(stdout
);
1270 (void)printf("--- %s ping statistics ---\n", hostname
);
1271 (void)printf("%ld packets transmitted, ", ntransmitted
);
1272 (void)printf("%ld packets received, ", nreceived
);
1274 (void)printf("+%ld duplicates, ", nrepeats
);
1276 if (nreceived
> ntransmitted
)
1277 (void)printf("-- somebody's printing up packets!");
1279 (void)printf("%d%% packet loss",
1280 (int)(((ntransmitted
- nreceived
) * 100) /
1283 (void)putchar('\n');
1284 if (nreceived
&& timing
) {
1285 double n
= nreceived
+ nrepeats
;
1286 double avg
= tsum
/ n
;
1287 double vari
= tsumsq
/ n
- avg
* avg
;
1289 "round-trip min/avg/max/stddev = %.3f/%.3f/%.3f/%.3f ms\n",
1290 tmin
, avg
, tmax
, sqrt(vari
));
1300 static char *ttab
[] = {
1301 "Echo Reply", /* ip + seq + udata */
1302 "Dest Unreachable", /* net, host, proto, port, frag, sr + IP */
1303 "Source Quench", /* IP */
1304 "Redirect", /* redirect type, gateway, + IP */
1306 "Time Exceeded", /* transit, frag reassem + IP */
1307 "Parameter Problem", /* pointer + IP */
1308 "Timestamp", /* id + seq + three timestamps */
1309 "Timestamp Reply", /* " */
1310 "Info Request", /* id + sq */
1311 "Info Reply" /* " */
1317 * Print a descriptive string about an ICMP header.
1324 switch(icp
->icmp_type
) {
1325 case ICMP_ECHOREPLY
:
1326 (void)printf("Echo Reply\n");
1327 /* XXX ID + Seq + Data */
1330 switch(icp
->icmp_code
) {
1331 case ICMP_UNREACH_NET
:
1332 (void)printf("Destination Net Unreachable\n");
1334 case ICMP_UNREACH_HOST
:
1335 (void)printf("Destination Host Unreachable\n");
1337 case ICMP_UNREACH_PROTOCOL
:
1338 (void)printf("Destination Protocol Unreachable\n");
1340 case ICMP_UNREACH_PORT
:
1341 (void)printf("Destination Port Unreachable\n");
1343 case ICMP_UNREACH_NEEDFRAG
:
1344 (void)printf("frag needed and DF set (MTU %d)\n",
1345 ntohs(icp
->icmp_nextmtu
));
1347 case ICMP_UNREACH_SRCFAIL
:
1348 (void)printf("Source Route Failed\n");
1350 case ICMP_UNREACH_FILTER_PROHIB
:
1351 (void)printf("Communication prohibited by filter\n");
1354 (void)printf("Dest Unreachable, Bad Code: %d\n",
1358 /* Print returned IP header information */
1360 pr_retip(&icp
->icmp_ip
);
1362 pr_retip((struct ip
*)icp
->icmp_data
);
1365 case ICMP_SOURCEQUENCH
:
1366 (void)printf("Source Quench\n");
1368 pr_retip(&icp
->icmp_ip
);
1370 pr_retip((struct ip
*)icp
->icmp_data
);
1374 switch(icp
->icmp_code
) {
1375 case ICMP_REDIRECT_NET
:
1376 (void)printf("Redirect Network");
1378 case ICMP_REDIRECT_HOST
:
1379 (void)printf("Redirect Host");
1381 case ICMP_REDIRECT_TOSNET
:
1382 (void)printf("Redirect Type of Service and Network");
1384 case ICMP_REDIRECT_TOSHOST
:
1385 (void)printf("Redirect Type of Service and Host");
1388 (void)printf("Redirect, Bad Code: %d", icp
->icmp_code
);
1391 (void)printf("(New addr: %s)\n", inet_ntoa(icp
->icmp_gwaddr
));
1393 pr_retip(&icp
->icmp_ip
);
1395 pr_retip((struct ip
*)icp
->icmp_data
);
1399 (void)printf("Echo Request\n");
1400 /* XXX ID + Seq + Data */
1403 switch(icp
->icmp_code
) {
1404 case ICMP_TIMXCEED_INTRANS
:
1405 (void)printf("Time to live exceeded\n");
1407 case ICMP_TIMXCEED_REASS
:
1408 (void)printf("Frag reassembly time exceeded\n");
1411 (void)printf("Time exceeded, Bad Code: %d\n",
1416 pr_retip(&icp
->icmp_ip
);
1418 pr_retip((struct ip
*)icp
->icmp_data
);
1421 case ICMP_PARAMPROB
:
1422 (void)printf("Parameter problem: pointer = 0x%02x\n",
1423 icp
->icmp_hun
.ih_pptr
);
1425 pr_retip(&icp
->icmp_ip
);
1427 pr_retip((struct ip
*)icp
->icmp_data
);
1431 (void)printf("Timestamp\n");
1432 /* XXX ID + Seq + 3 timestamps */
1434 case ICMP_TSTAMPREPLY
:
1435 (void)printf("Timestamp Reply\n");
1436 /* XXX ID + Seq + 3 timestamps */
1439 (void)printf("Information Request\n");
1442 case ICMP_IREQREPLY
:
1443 (void)printf("Information Reply\n");
1447 (void)printf("Address Mask Request\n");
1449 case ICMP_MASKREPLY
:
1450 (void)printf("Address Mask Reply\n");
1452 case ICMP_ROUTERADVERT
:
1453 (void)printf("Router Advertisement\n");
1455 case ICMP_ROUTERSOLICIT
:
1456 (void)printf("Router Solicitation\n");
1459 (void)printf("Bad ICMP type: %d\n", icp
->icmp_type
);
1465 * Print an IP header with options.
1474 hlen
= ip
->ip_hl
<< 2;
1475 cp
= (u_char
*)ip
+ 20; /* point to options */
1477 (void)printf("Vr HL TOS Len ID Flg off TTL Pro cks Src Dst\n");
1478 (void)printf(" %1x %1x %02x %04x %04x",
1479 ip
->ip_v
, ip
->ip_hl
, ip
->ip_tos
, ntohs(ip
->ip_len
),
1481 (void)printf(" %1lx %04lx",
1482 (u_long
) (ntohl(ip
->ip_off
) & 0xe000) >> 13,
1483 (u_long
) ntohl(ip
->ip_off
) & 0x1fff);
1484 (void)printf(" %02x %02x %04x", ip
->ip_ttl
, ip
->ip_p
,
1486 (void)printf(" %s ", inet_ntoa(*(struct in_addr
*)&ip
->ip_src
.s_addr
));
1487 (void)printf(" %s ", inet_ntoa(*(struct in_addr
*)&ip
->ip_dst
.s_addr
));
1488 /* dump any option bytes */
1489 while (hlen
-- > 20) {
1490 (void)printf("%02x", *cp
++);
1492 (void)putchar('\n');
1497 * Return an ascii host address as a dotted quad and optionally with
1505 static char buf
[16 + 3 + MAXHOSTNAMELEN
];
1507 if ((options
& F_NUMERIC
) ||
1508 !(hp
= gethostbyaddr((char *)&ina
, 4, AF_INET
)))
1509 return inet_ntoa(ina
);
1511 (void)snprintf(buf
, sizeof(buf
), "%s (%s)", hp
->h_name
,
1518 * Dump some info on a returned (via ICMP) IP packet.
1528 hlen
= ip
->ip_hl
<< 2;
1529 cp
= (u_char
*)ip
+ hlen
;
1532 (void)printf("TCP: from port %u, to port %u (decimal)\n",
1533 (*cp
* 256 + *(cp
+ 1)), (*(cp
+ 2) * 256 + *(cp
+ 3)));
1534 else if (ip
->ip_p
== 17)
1535 (void)printf("UDP: from port %u, to port %u (decimal)\n",
1536 (*cp
* 256 + *(cp
+ 1)), (*(cp
+ 2) * 256 + *(cp
+ 3)));
1540 pr_ntime (n_time timestamp
)
1542 static char buf
[10];
1545 sec
= ntohl(timestamp
) / 1000;
1546 hour
= sec
/ 60 / 60;
1547 min
= (sec
% (60 * 60)) / 60;
1548 sec
= (sec
% (60 * 60)) % 60;
1550 (void)snprintf(buf
, sizeof(buf
), "%02d:%02d:%02d", hour
, min
, sec
);
1563 for (cp
= patp
; *cp
; cp
++) {
1566 "patterns must be specified as hex digits");
1570 "%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x",
1571 &pat
[0], &pat
[1], &pat
[2], &pat
[3], &pat
[4], &pat
[5], &pat
[6],
1572 &pat
[7], &pat
[8], &pat
[9], &pat
[10], &pat
[11], &pat
[12],
1573 &pat
[13], &pat
[14], &pat
[15]);
1576 for (kk
= 0; kk
<= maxpayload
- (TIMEVAL_LEN
+ ii
); kk
+= ii
)
1577 for (jj
= 0; jj
< ii
; ++jj
)
1578 bp
[jj
+ kk
] = pat
[jj
];
1579 if (!(options
& F_QUIET
)) {
1580 (void)printf("PATTERN: 0x");
1581 for (jj
= 0; jj
< ii
; ++jj
)
1582 (void)printf("%02x", bp
[jj
] & 0xFF);
1587 #if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
1588 #define SECOPT " [-P policy]"
1596 (void)fprintf(stderr
, "%s\n%s\n%s\n%s\n%s\n%s\n",
1597 "usage: ping [-AaDdfnoQqRrv] [-c count] [-i wait] [-l preload] [-M mask | time]",
1598 " [-m ttl]" SECOPT
" [-p pattern] [-S src_addr] [-s packetsize]",
1599 " [-t timeout] [-z tos] host",
1600 " ping [-AaDdfLnoQqRrv] [-c count] [-I iface] [-i wait] [-l preload]",
1601 " [-M mask | time] [-m ttl]" SECOPT
" [-p pattern] [-S src_addr]",
1602 " [-s packetsize] [-T ttl] [-t timeout] [-z tos] mcast-group");