2 * Copyright (c) 1999-2016 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 * Copyright (c) 1989, 1993
30 * The Regents of the University of California. All rights reserved.
32 * This code is derived from software contributed to Berkeley by
35 * Redistribution and use in source and binary forms, with or without
36 * modification, are permitted provided that the following conditions
38 * 1. Redistributions of source code must retain the above copyright
39 * notice, this list of conditions and the following disclaimer.
40 * 2. Redistributions in binary form must reproduce the above copyright
41 * notice, this list of conditions and the following disclaimer in the
42 * documentation and/or other materials provided with the distribution.
43 * 4. Neither the name of the University nor the names of its contributors
44 * may be used to endorse or promote products derived from this software
45 * without specific prior written permission.
47 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
48 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
49 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
50 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
51 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
52 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
53 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
54 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
55 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
56 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
60 #include <sys/cdefs.h>
63 __unused
static const char copyright
[] =
64 "@(#) Copyright (c) 1989, 1993\n\
65 The Regents of the University of California. All rights reserved.\n";
71 * Using the Internet Control Message Protocol (ICMP) "ECHO" facility,
72 * measure round-trip-delays and packet loss across network paths.
76 * U. S. Army Ballistic Research Laboratory
80 * Public Domain. Distribution Unlimited.
82 * More statistics could always be gathered.
83 * This program has to run SUID to ROOT to access the ICMP socket.
86 #include <sys/param.h> /* NB: we rely on this for <sys/types.h> */
87 #include <sys/socket.h>
88 #include <sys/sysctl.h>
92 #include <netinet/in.h>
93 #include <netinet/in_systm.h>
94 #include <netinet/ip.h>
95 #include <netinet/ip_icmp.h>
96 #include <netinet/ip_var.h>
97 #include <arpa/inet.h>
101 #include <netinet6/ipsec.h>
114 #include <sysexits.h>
119 #define INADDR_LEN ((int)sizeof(in_addr_t))
120 #define TIMEVAL_LEN ((int)sizeof(struct tv32))
121 #define MASK_LEN (ICMP_MASKLEN - ICMP_MINLEN)
122 #define TS_LEN (ICMP_TSLEN - ICMP_MINLEN)
123 #define DEFDATALEN 56 /* default data length */
124 #define FLOOD_BACKOFF 20000 /* usecs to back off if F_FLOOD mode */
125 /* runs out of buffer space */
126 #define MAXIPLEN (sizeof(struct ip) + MAX_IPOPTLEN)
127 #define MAXICMPLEN (ICMP_ADVLENMIN + MAX_IPOPTLEN)
128 #define MAXWAIT 10000 /* max ms to wait for response */
129 #define MAXALARM (60 * 60) /* max seconds for alarm timeout */
132 #define A(bit) rcvd_tbl[(bit)>>3] /* identify byte in array */
133 #define B(bit) (1 << ((bit) & 0x07)) /* identify bit in byte */
134 #define SET(bit) (A(bit) |= B(bit))
135 #define CLR(bit) (A(bit) &= (~B(bit)))
136 #define TST(bit) (A(bit) & B(bit))
143 /* various options */
145 #define F_FLOOD 0x0001
146 #define F_INTERVAL 0x0002
147 #define F_NUMERIC 0x0004
148 #define F_PINGFILLED 0x0008
149 #define F_QUIET 0x0010
150 #define F_RROUTE 0x0020
151 #define F_SO_DEBUG 0x0040
152 #define F_SO_DONTROUTE 0x0080
153 #define F_VERBOSE 0x0100
154 #define F_QUIET2 0x0200
155 #define F_NOLOOP 0x0400
156 #define F_MTTL 0x0800
158 #define F_AUDIBLE 0x2000
160 #ifdef IPSEC_POLICY_IPSEC
161 #define F_POLICY 0x4000
162 #endif /*IPSEC_POLICY_IPSEC*/
165 #define F_MISSED 0x10000
166 #define F_ONCE 0x20000
167 #define F_HDRINCL 0x40000
168 #define F_MASK 0x80000
169 #define F_TIME 0x100000
170 #define F_SWEEP 0x200000
171 #define F_WAITTIME 0x400000
172 #define F_CONNECT 0x800000
173 #define F_PRTIME 0x1000000
176 * MAX_DUP_CHK is the number of bits in received table, i.e. the maximum
177 * number of received sequence numbers we can keep track of. Change 128
178 * to 8192 for complete accuracy...
180 #define MAX_DUP_CHK (8 * 128)
181 int mx_dup_ck
= MAX_DUP_CHK
;
182 char rcvd_tbl
[MAX_DUP_CHK
/ 8];
184 struct sockaddr_in whereto
; /* who to ping */
185 int datalen
= DEFDATALEN
;
187 int s
; /* socket file descriptor */
188 u_char outpackhdr
[IP_MAXPACKET
], *outpack
;
189 char BBELL
= '\a'; /* characters written for MISSED and AUDIBLE */
190 char BSPACE
= '\b'; /* characters written for flood */
194 int ident
; /* process id to identify our packets */
195 int uid
; /* cached uid for micro-optimization */
196 u_char icmp_type
= ICMP_ECHO
;
197 u_char icmp_type_rsp
= ICMP_ECHOREPLY
;
201 unsigned int ifscope
;
205 int traffic_class
= SO_TC_CTL
; /* use control class, by default */
206 int net_service_type
= -1;
210 long nmissedmax
; /* max value of ntransmitted - nreceived - 1 */
211 long npackets
; /* max packets to transmit */
212 long nreceived
; /* # of packets we got back */
213 long nrepeats
; /* number of duplicates */
214 long ntransmitted
; /* sequence # for outbound packets = #sent */
215 long snpackets
; /* max packets to transmit in one sweep */
216 long snreceived
; /* # of packets we got back in this sweep */
217 long sntransmitted
; /* # of packets we sent in this sweep */
218 int sweepmax
; /* max value of payload in sweep */
219 int sweepmin
= 0; /* start value of payload in sweep */
220 int sweepincr
= 1; /* payload increment in sweep */
221 int interval
= 1000; /* interval between packets, ms */
222 int waittime
= MAXWAIT
; /* timeout for each packet */
223 long nrcvtimeout
= 0; /* # of packets we got back after waittime */
224 int icmp_len
= 0; /* length of the ICMP header */
227 int timing
; /* flag to do timing */
228 double tmin
= 999999999.0; /* minimum round trip time */
229 double tmax
= 0.0; /* maximum round trip time */
230 double tsum
= 0.0; /* sum of all times, for doing average */
231 double tsumsq
= 0.0; /* sum of all times squared, for std. dev. */
233 volatile sig_atomic_t finish_up
; /* nonzero if we've been told to finish up */
234 volatile sig_atomic_t siginfo_p
;
236 static void fill(char *, char *);
237 static u_short
in_cksum(u_short
*, int);
238 static void check_status(void);
239 static void finish(void) __dead2
;
240 static void pinger(void);
241 static char *pr_addr(struct in_addr
);
242 static char *pr_ntime(n_time
);
243 static void pr_icmph(struct icmp
*);
244 static void pr_iph(struct ip
*);
245 static void pr_pack(char *, int, struct sockaddr_in
*, struct timeval
*, int);
246 static void pr_retip(struct ip
*);
247 static void status(int);
248 static void stopit(int);
249 static void tvsub(struct timeval
*, const struct timeval
*);
250 static int str2sotc(const char *, bool *);
251 static int str2netservicetype(const char *, bool *);
252 static u_int8_t
str2tos(const char *, bool *);
253 static void usage(void) __dead2
;
255 int32_t thiszone
; /* seconds offset from gmt to local time */
256 extern int32_t gmt2local(time_t);
257 static void pr_currenttime(void);
259 static int longopt_flag
= 0;
261 #define LOF_CONNECT 0x01
262 #define LOF_PRTIME 0x02
264 static const struct option longopts
[] = {
265 { "apple-connect", no_argument
, &longopt_flag
, LOF_CONNECT
},
266 { "apple-time", no_argument
, &longopt_flag
, LOF_PRTIME
},
271 main(int argc
, char *const *argv
)
273 struct sockaddr_in from
, sock_in
;
274 struct in_addr ifaddr
;
275 struct timeval last
, intvl
;
279 struct sigaction si_sa
;
281 u_char
*datap
, packet
[IP_MAXPACKET
] __attribute__((aligned(4)));
282 char *ep
, *source
, *target
, *payload
;
284 #ifdef IPSEC_POLICY_IPSEC
285 char *policy_in
, *policy_out
;
287 struct sockaddr_in
*to
;
289 u_long alarmtimeout
, ultmp
;
290 int almost_done
, ch
, df
, hold
, i
, mib
[4], preload
, sockerrno
,
292 char ctrl
[CMSG_SPACE(sizeof(struct timeval
)) + CMSG_SPACE(sizeof(int))];
293 char hnamebuf
[MAXHOSTNAMELEN
], snamebuf
[MAXHOSTNAMELEN
];
295 char rspace
[MAX_IPOPTLEN
]; /* record route space */
297 unsigned char loop
, mttl
;
299 payload
= source
= NULL
;
300 #ifdef IPSEC_POLICY_IPSEC
301 policy_in
= policy_out
= NULL
;
306 * Do the stuff that we need root priv's for *first*, and
307 * then drop our setuid bit. Save error reporting for
311 s
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_ICMP
);
313 s
= socket(AF_INET
, SOCK_RAW
, IPPROTO_ICMP
);
316 if (setuid(getuid()) != 0)
317 err(EX_NOPERM
, "setuid() failed");
320 alarmtimeout
= df
= preload
= tos
= 0;
322 outpack
= outpackhdr
+ sizeof(struct ip
);
323 while ((ch
= getopt_long(argc
, argv
,
324 "AaB:b:Cc:DdfG:g:h:I:i:k:K:Ll:M:m:noP:p:QqRrS:s:T:t:vW:z:",
325 longopts
, NULL
)) != -1)
332 options
|= F_AUDIBLE
;
342 ultmp
= strtoul(optarg
, &ep
, 0);
343 if (*ep
|| ep
== optarg
|| ultmp
> LONG_MAX
|| !ultmp
)
345 "invalid count of packets to transmit: `%s'",
350 options
|= F_HDRINCL
;
354 options
|= F_SO_DEBUG
;
359 err(EX_NOPERM
, "-f flag");
362 setbuf(stdout
, (char *)NULL
);
364 case 'G': /* Maximum packet size for ping sweep */
365 ultmp
= strtoul(optarg
, &ep
, 0);
366 if (*ep
|| ep
== optarg
)
367 errx(EX_USAGE
, "invalid packet size: `%s'",
370 if (uid
!= 0 && ultmp
> DEFDATALEN
) {
373 "packet size too large: %lu > %u",
376 #endif /* __APPLE__ */
380 case 'g': /* Minimum packet size for ping sweep */
381 ultmp
= strtoul(optarg
, &ep
, 0);
382 if (*ep
|| ep
== optarg
)
383 errx(EX_USAGE
, "invalid packet size: `%s'",
386 if (uid
!= 0 && ultmp
> DEFDATALEN
) {
389 "packet size too large: %lu > %u",
392 #endif /* __APPLE__ */
396 case 'h': /* Packet size increment for ping sweep */
397 ultmp
= strtoul(optarg
, &ep
, 0);
398 if (*ep
|| ep
== optarg
|| ultmp
< 1)
399 errx(EX_USAGE
, "invalid increment size: `%s'",
402 if (uid
!= 0 && ultmp
> DEFDATALEN
) {
405 "packet size too large: %lu > %u",
408 #endif /* __APPLE__ */
412 case 'I': /* multicast interface */
413 if (inet_aton(optarg
, &ifaddr
) == 0)
415 "invalid multicast interface: `%s'",
419 case 'i': /* wait between sending packets */
420 t
= strtod(optarg
, &ep
) * 1000.0;
421 if (*ep
|| ep
== optarg
|| t
> (double)INT_MAX
)
422 errx(EX_USAGE
, "invalid timing interval: `%s'",
424 options
|= F_INTERVAL
;
426 if (uid
&& interval
< 100) {
428 err(EX_NOPERM
, "-i interval too short");
432 if (strcasecmp(optarg
, "sendmsg") == 0) {
436 if (strcasecmp(optarg
, "recvmsg") == 0) {
440 traffic_class
= str2sotc(optarg
, &valid
);
442 errx(EX_USAGE
, "bad traffic class: `%s'",
446 if (strcasecmp(optarg
, "sendmsg") == 0) {
450 net_service_type
= str2netservicetype(optarg
, &valid
);
452 errx(EX_USAGE
, "bad network service type: `%s'",
454 /* suppress default traffic class (-k can still be specified after -K) */
462 ultmp
= strtoul(optarg
, &ep
, 0);
463 if (*ep
|| ep
== optarg
|| ultmp
> INT_MAX
)
465 "invalid preload value: `%s'", optarg
);
468 err(EX_NOPERM
, "-l flag");
483 errx(EX_USAGE
, "invalid message: `%c'", optarg
[0]);
488 ultmp
= strtoul(optarg
, &ep
, 0);
489 if (*ep
|| ep
== optarg
|| ultmp
> MAXTTL
)
490 errx(EX_USAGE
, "invalid TTL: `%s'", optarg
);
495 options
|= F_NUMERIC
;
502 #ifdef IPSEC_POLICY_IPSEC
504 if (!strncmp("in", optarg
, 2))
505 policy_in
= strdup(optarg
);
506 else if (!strncmp("out", optarg
, 3))
507 policy_out
= strdup(optarg
);
509 errx(1, "invalid security policy");
510 #endif /*IPSEC_POLICY_IPSEC*/
513 case 'p': /* fill buffer with user pattern */
514 options
|= F_PINGFILLED
;
527 options
|= F_SO_DONTROUTE
;
532 case 's': /* size of packet to send */
533 ultmp
= strtoul(optarg
, &ep
, 0);
534 if (*ep
|| ep
== optarg
)
535 errx(EX_USAGE
, "invalid packet size: `%s'",
538 if (uid
!= 0 && ultmp
> DEFDATALEN
) {
541 "packet size too large: %lu > %u",
544 #endif /* __APPLE__ */
547 case 'T': /* multicast TTL */
548 ultmp
= strtoul(optarg
, &ep
, 0);
549 if (*ep
|| ep
== optarg
|| ultmp
> MAXTTL
)
550 errx(EX_USAGE
, "invalid multicast TTL: `%s'",
556 alarmtimeout
= strtoul(optarg
, &ep
, 0);
557 if ((alarmtimeout
< 1) || (alarmtimeout
== ULONG_MAX
))
558 errx(EX_USAGE
, "invalid timeout: `%s'",
560 if (alarmtimeout
> MAXALARM
)
561 errx(EX_USAGE
, "invalid timeout: `%s' > %d",
563 alarm((unsigned int)alarmtimeout
);
566 options
|= F_VERBOSE
;
568 case 'W': /* wait ms for answer */
569 t
= strtod(optarg
, &ep
);
570 if (*ep
|| ep
== optarg
|| t
> (double)INT_MAX
)
571 errx(EX_USAGE
, "invalid timing interval: `%s'",
573 options
|= F_WAITTIME
;
577 options
|= F_HDRINCL
;
578 tos
= str2tos(optarg
, &valid
);
580 errx(EX_USAGE
, "invalid TOS: `%s'", optarg
);
583 switch (longopt_flag
) {
585 options
|= F_CONNECT
;
589 thiszone
= gmt2local(0);
601 if (boundif
!= NULL
&& (ifscope
= if_nametoindex(boundif
)) == 0)
602 errx(1, "bad interface name");
604 if (argc
- optind
!= 1)
606 target
= argv
[optind
];
608 switch (options
& (F_MASK
|F_TIME
)) {
611 icmp_type
= ICMP_MASKREQ
;
612 icmp_type_rsp
= ICMP_MASKREPLY
;
614 if (!(options
& F_QUIET
))
615 (void)printf("ICMP_MASKREQ\n");
618 icmp_type
= ICMP_TSTAMP
;
619 icmp_type_rsp
= ICMP_TSTAMPREPLY
;
621 if (!(options
& F_QUIET
))
622 (void)printf("ICMP_TSTAMP\n");
625 errx(EX_USAGE
, "ICMP_TSTAMP and ICMP_MASKREQ are exclusive.");
628 icmp_len
= sizeof(struct ip
) + ICMP_MINLEN
+ phdr_len
;
629 if (options
& F_RROUTE
)
630 icmp_len
+= MAX_IPOPTLEN
;
631 maxpayload
= IP_MAXPACKET
- icmp_len
;
632 if (datalen
> maxpayload
)
633 errx(EX_USAGE
, "packet size too large: %d > %d", datalen
,
635 send_len
= icmp_len
+ datalen
;
636 datap
= &outpack
[ICMP_MINLEN
+ phdr_len
+ TIMEVAL_LEN
];
637 if (options
& F_PINGFILLED
) {
638 fill((char *)datap
, payload
);
641 bzero((char *)&sock_in
, sizeof(sock_in
));
642 sock_in
.sin_family
= AF_INET
;
643 if (inet_aton(source
, &sock_in
.sin_addr
) != 0) {
646 hp
= gethostbyname2(source
, AF_INET
);
648 errx(EX_NOHOST
, "cannot resolve %s: %s",
649 source
, hstrerror(h_errno
));
651 sock_in
.sin_len
= sizeof sock_in
;
652 if ((unsigned)hp
->h_length
> sizeof(sock_in
.sin_addr
) ||
654 errx(1, "gethostbyname2: illegal address");
655 memcpy(&sock_in
.sin_addr
, hp
->h_addr_list
[0],
656 sizeof(sock_in
.sin_addr
));
657 (void)strncpy(snamebuf
, hp
->h_name
,
658 sizeof(snamebuf
) - 1);
659 snamebuf
[sizeof(snamebuf
) - 1] = '\0';
660 shostname
= snamebuf
;
662 if (bind(s
, (struct sockaddr
*)&sock_in
, sizeof sock_in
) == -1)
663 #if (DEBUG || DEVELOPMENT)
664 options
|= F_HDRINCL
;
667 #endif /* DEBUG || DEVELOPMENT */
670 bzero(&whereto
, sizeof(whereto
));
672 to
->sin_family
= AF_INET
;
673 to
->sin_len
= sizeof *to
;
674 if (inet_aton(target
, &to
->sin_addr
) != 0) {
677 hp
= gethostbyname2(target
, AF_INET
);
679 errx(EX_NOHOST
, "cannot resolve %s: %s",
680 target
, hstrerror(h_errno
));
682 if ((unsigned)hp
->h_length
> sizeof(to
->sin_addr
))
683 errx(1, "gethostbyname2 returned an illegal address");
684 memcpy(&to
->sin_addr
, hp
->h_addr_list
[0], sizeof to
->sin_addr
);
685 (void)strncpy(hnamebuf
, hp
->h_name
, sizeof(hnamebuf
) - 1);
686 hnamebuf
[sizeof(hnamebuf
) - 1] = '\0';
691 struct ifaddrs
*ifa_list
, *ifa
;
693 if (IN_MULTICAST(ntohl(whereto
.sin_addr
.s_addr
)) || whereto
.sin_addr
.s_addr
== INADDR_BROADCAST
) {
698 if (getifaddrs(&ifa_list
) == -1)
700 for (ifa
= ifa_list
; ifa
; ifa
= ifa
->ifa_next
) {
701 if (ifa
->ifa_addr
->sa_family
!= AF_INET
)
703 if ((ifa
->ifa_flags
& IFF_BROADCAST
) == 0 || ifa
->ifa_broadaddr
== NULL
)
705 if (whereto
.sin_addr
.s_addr
!= ((struct sockaddr_in
*)ifa
->ifa_broadaddr
)->sin_addr
.s_addr
)
711 freeifaddrs(ifa_list
);
714 if (options
& F_FLOOD
&& options
& F_INTERVAL
)
715 errx(EX_USAGE
, "-f and -i: incompatible options");
717 if (options
& F_FLOOD
&& IN_MULTICAST(ntohl(to
->sin_addr
.s_addr
)))
719 "-f flag cannot be used with multicast destination");
720 if (options
& (F_MIF
| F_NOLOOP
| F_MTTL
)
721 && !IN_MULTICAST(ntohl(to
->sin_addr
.s_addr
)))
723 "-I, -L, -T flags cannot be used with unicast destination");
725 if (!(options
& F_PINGFILLED
))
726 for (i
= TIMEVAL_LEN
; i
< MAX(datalen
, sweepmax
); ++i
)
729 ident
= getpid() & 0xFFFF;
733 err(EX_OSERR
, "socket");
736 (void) setsockopt(s
, SOL_SOCKET
, SO_RECV_ANYIF
, (char *)&hold
,
739 if (setsockopt(s
, IPPROTO_IP
, IP_BOUND_IF
,
740 (char *)&ifscope
, sizeof (ifscope
)) != 0)
741 err(EX_OSERR
, "setsockopt(IP_BOUND_IF)");
744 if (setsockopt(s
, IPPROTO_IP
, IP_NO_IFT_CELLULAR
,
745 (char *)&nocell
, sizeof (nocell
)) != 0)
746 err(EX_OSERR
, "setsockopt(IP_NO_IFT_CELLULAR)");
748 if (options
& F_SO_DEBUG
)
749 (void)setsockopt(s
, SOL_SOCKET
, SO_DEBUG
, (char *)&hold
,
751 if (options
& F_SO_DONTROUTE
)
752 (void)setsockopt(s
, SOL_SOCKET
, SO_DONTROUTE
, (char *)&hold
,
754 if (use_sendmsg
== 0) {
755 if (net_service_type
!= -1)
756 if (setsockopt(s
, SOL_SOCKET
, SO_NET_SERVICE_TYPE
,
757 (void *)&net_service_type
, sizeof (net_service_type
)) != 0)
758 warn("setsockopt(SO_NET_SERVICE_TYPE");
759 if (traffic_class
!= -1) {
760 if (setsockopt(s
, SOL_SOCKET
, SO_TRAFFIC_CLASS
,
761 (void *)&traffic_class
, sizeof (traffic_class
)) != 0)
762 warn("setsockopt(SO_TRAFFIC_CLASS");
766 if (use_recvmsg
> 0) {
768 (void) setsockopt(s
, SOL_SOCKET
, SO_RECV_TRAFFIC_CLASS
,
769 (void *)&on
, sizeof (on
));
772 #ifdef IPSEC_POLICY_IPSEC
773 if (options
& F_POLICY
) {
775 if (policy_in
!= NULL
) {
776 buf
= ipsec_set_policy(policy_in
, strlen(policy_in
));
778 errx(EX_CONFIG
, "%s", ipsec_strerror());
779 if (setsockopt(s
, IPPROTO_IP
, IP_IPSEC_POLICY
,
780 buf
, ipsec_get_policylen(buf
)) < 0)
782 "ipsec policy cannot be configured");
786 if (policy_out
!= NULL
) {
787 buf
= ipsec_set_policy(policy_out
, strlen(policy_out
));
789 errx(EX_CONFIG
, "%s", ipsec_strerror());
790 if (setsockopt(s
, IPPROTO_IP
, IP_IPSEC_POLICY
,
791 buf
, ipsec_get_policylen(buf
)) < 0)
793 "ipsec policy cannot be configured");
797 #endif /*IPSEC_POLICY_IPSEC*/
800 if (options
& F_HDRINCL
) {
801 ip
= (struct ip
*)outpackhdr
;
802 if (!(options
& (F_TTL
| F_MTTL
))) {
806 mib
[3] = IPCTL_DEFTTL
;
808 if (sysctl(mib
, 4, &ttl
, &sz
, NULL
, 0) == -1)
809 err(1, "sysctl(net.inet.ip.ttl)");
811 setsockopt(s
, IPPROTO_IP
, IP_HDRINCL
, &hold
, sizeof(hold
));
812 ip
->ip_v
= IPVERSION
;
813 ip
->ip_hl
= sizeof(struct ip
) >> 2;
816 ip
->ip_off
= df
? IP_DF
: 0;
818 ip
->ip_p
= IPPROTO_ICMP
;
819 ip
->ip_src
.s_addr
= source
? sock_in
.sin_addr
.s_addr
: INADDR_ANY
;
820 ip
->ip_dst
= to
->sin_addr
;
822 /* record route option */
823 if (options
& F_RROUTE
) {
825 bzero(rspace
, sizeof(rspace
));
826 rspace
[IPOPT_OPTVAL
] = IPOPT_RR
;
827 rspace
[IPOPT_OLEN
] = sizeof(rspace
) - 1;
828 rspace
[IPOPT_OFFSET
] = IPOPT_MINOFF
;
829 rspace
[sizeof(rspace
) - 1] = IPOPT_EOL
;
830 if (setsockopt(s
, IPPROTO_IP
, IP_OPTIONS
, rspace
,
832 err(EX_OSERR
, "setsockopt IP_OPTIONS");
835 "record route not available in this implementation");
836 #endif /* IP_OPTIONS */
839 if (options
& F_TTL
) {
840 if (setsockopt(s
, IPPROTO_IP
, IP_TTL
, &ttl
,
842 err(EX_OSERR
, "setsockopt IP_TTL");
845 if (options
& F_NOLOOP
) {
846 if (setsockopt(s
, IPPROTO_IP
, IP_MULTICAST_LOOP
, &loop
,
848 err(EX_OSERR
, "setsockopt IP_MULTICAST_LOOP");
851 if (options
& F_MTTL
) {
852 if (setsockopt(s
, IPPROTO_IP
, IP_MULTICAST_TTL
, &mttl
,
854 err(EX_OSERR
, "setsockopt IP_MULTICAST_TTL");
857 if (options
& F_MIF
) {
858 if (setsockopt(s
, IPPROTO_IP
, IP_MULTICAST_IF
, &ifaddr
,
859 sizeof(ifaddr
)) < 0) {
860 err(EX_OSERR
, "setsockopt IP_MULTICAST_IF");
865 if (setsockopt(s
, SOL_SOCKET
, SO_TIMESTAMP
, &on
, sizeof(on
)) < 0)
866 err(EX_OSERR
, "setsockopt SO_TIMESTAMP");
870 if ((options
& F_CONNECT
)) {
871 if (connect(s
, (struct sockaddr
*)&whereto
, sizeof whereto
) == -1)
872 err(EX_OSERR
, "connect");
876 if (sweepmin
>= sweepmax
)
877 errx(EX_USAGE
, "Maximum packet size must be greater than the minimum packet size");
879 if (datalen
!= DEFDATALEN
)
880 errx(EX_USAGE
, "Packet size and ping sweep are mutually exclusive");
883 snpackets
= npackets
;
888 send_len
= icmp_len
+ sweepmin
;
890 if (options
& F_SWEEP
&& !sweepmax
)
891 errx(EX_USAGE
, "Maximum sweep size must be specified");
894 * When pinging the broadcast address, you can get a lot of answers.
895 * Doing something so evil is useful if you are trying to stress the
896 * ethernet, or just want to fill the arp cache to get some stuff for
897 * /etc/ethers. But beware: RFC 1122 allows hosts to ignore broadcast
898 * or multicast pings if they wish.
902 * XXX receive buffer needs undetermined space for mbuf overhead
905 hold
= IP_MAXPACKET
+ 128;
906 (void)setsockopt(s
, SOL_SOCKET
, SO_RCVBUF
, (char *)&hold
,
909 (void)setsockopt(s
, SOL_SOCKET
, SO_SNDBUF
, (char *)&hold
,
912 if (to
->sin_family
== AF_INET
) {
913 (void)printf("PING %s (%s)", hostname
,
914 inet_ntoa(to
->sin_addr
));
916 (void)printf(" from %s", shostname
);
918 (void)printf(": (%d ... %d) data bytes\n",
921 (void)printf(": %d data bytes\n", datalen
);
925 (void)printf("PING %s: (%d ... %d) data bytes\n",
926 hostname
, sweepmin
, sweepmax
);
928 (void)printf("PING %s: %d data bytes\n", hostname
, datalen
);
934 * Clear blocked signals inherited from the parent
937 sigemptyset(&newset
);
938 if (sigprocmask(SIG_SETMASK
, &newset
, NULL
) != 0)
939 err(EX_OSERR
, "sigprocmask(newset)");
942 * Use sigaction() instead of signal() to get unambiguous semantics,
943 * in particular with SA_RESTART not set.
946 sigemptyset(&si_sa
.sa_mask
);
949 si_sa
.sa_handler
= stopit
;
950 if (sigaction(SIGINT
, &si_sa
, 0) == -1) {
951 err(EX_OSERR
, "sigaction SIGINT");
953 si_sa
.sa_handler
= stopit
;
954 if (sigaction(SIGQUIT
, &si_sa
, 0) == -1) {
955 err(EX_OSERR
, "sigaction SIGQUIT");
958 si_sa
.sa_handler
= status
;
959 if (sigaction(SIGINFO
, &si_sa
, 0) == -1) {
960 err(EX_OSERR
, "sigaction SIGINFO");
963 if (alarmtimeout
> 0) {
964 si_sa
.sa_handler
= stopit
;
965 if (sigaction(SIGALRM
, &si_sa
, 0) == -1)
966 err(EX_OSERR
, "sigaction SIGALRM");
969 bzero(&msg
, sizeof(msg
));
970 msg
.msg_name
= (caddr_t
)&from
;
974 msg
.msg_control
= (caddr_t
)ctrl
;
976 iov
.iov_base
= packet
;
977 iov
.iov_len
= IP_MAXPACKET
;
980 pinger(); /* send the first ping */
982 if (npackets
!= 0 && preload
> npackets
)
984 while (preload
--) /* fire off them quickies */
987 (void)gettimeofday(&last
, NULL
);
989 if (options
& F_FLOOD
) {
991 intvl
.tv_usec
= 10000;
993 intvl
.tv_sec
= interval
/ 1000;
994 intvl
.tv_usec
= interval
% 1000 * 1000;
999 struct timeval now
, timeout
;
1005 if ((unsigned)s
>= FD_SETSIZE
)
1006 errx(EX_OSERR
, "descriptor too large");
1009 (void)gettimeofday(&now
, NULL
);
1010 timeout
.tv_sec
= last
.tv_sec
+ intvl
.tv_sec
- now
.tv_sec
;
1011 timeout
.tv_usec
= last
.tv_usec
+ intvl
.tv_usec
- now
.tv_usec
;
1012 while (timeout
.tv_usec
< 0) {
1013 timeout
.tv_usec
+= 1000000;
1016 while (timeout
.tv_usec
>= 1000000) {
1017 timeout
.tv_usec
-= 1000000;
1020 if (timeout
.tv_sec
< 0)
1021 timeout
.tv_sec
= timeout
.tv_usec
= 0;
1022 n
= select(s
+ 1, &rfds
, NULL
, NULL
, &timeout
);
1024 continue; /* Must be EINTR. */
1026 struct timeval
*tv
= NULL
;
1028 struct cmsghdr
*cmsg
;
1030 msg
.msg_controllen
= sizeof(ctrl
);
1032 msg
.msg_namelen
= sizeof(from
);
1033 if ((cc
= recvmsg(s
, &msg
, 0)) < 0) {
1039 for (cmsg
= CMSG_FIRSTHDR(&msg
); cmsg
!= NULL
; cmsg
= CMSG_NXTHDR(&msg
, cmsg
)) {
1041 if (cmsg
->cmsg_level
== SOL_SOCKET
&&
1042 cmsg
->cmsg_type
== SCM_TIMESTAMP
&&
1043 cmsg
->cmsg_len
== CMSG_LEN(sizeof *tv
)) {
1044 /* Copy to avoid alignment problems: */
1045 memcpy(&now
, CMSG_DATA(cmsg
), sizeof(now
));
1049 if (cmsg
->cmsg_level
== SOL_SOCKET
&&
1050 cmsg
->cmsg_type
== SO_TRAFFIC_CLASS
&&
1051 cmsg
->cmsg_len
== CMSG_LEN(sizeof(int))) {
1052 /* Copy to avoid alignment problems: */
1053 memcpy(&tc
, CMSG_DATA(cmsg
), sizeof(tc
));
1057 (void)gettimeofday(&now
, NULL
);
1060 pr_pack((char *)packet
, cc
, &from
, tv
, tc
);
1061 if ((options
& F_ONCE
&& nreceived
) ||
1062 (npackets
&& nreceived
>= npackets
))
1065 if (n
== 0 || options
& F_FLOOD
) {
1066 if (sweepmax
&& sntransmitted
== snpackets
) {
1067 datalen
+= sweepincr
;
1068 if (datalen
> sweepmax
)
1070 send_len
= icmp_len
+ datalen
;
1073 if (!npackets
|| ntransmitted
< npackets
)
1081 intvl
.tv_sec
= 2 * tmax
/ 1000;
1085 intvl
.tv_sec
= waittime
/ 1000;
1086 intvl
.tv_usec
= waittime
% 1000 * 1000;
1089 (void)gettimeofday(&last
, NULL
);
1090 if (ntransmitted
- nreceived
- 1 > nmissedmax
) {
1091 nmissedmax
= ntransmitted
- nreceived
- 1;
1092 if (options
& F_MISSED
)
1093 (void)write(STDOUT_FILENO
, &BBELL
, 1);
1094 if (!(options
& F_QUIET
)) {
1095 printf("Request timeout for icmp_seq %u\n",
1096 (uint16_t)(ntransmitted
- 2));
1097 if (!(options
& F_FLOOD
))
1098 (void)fflush(stdout
);
1105 exit(0); /* Make the compiler happy */
1110 * Set the global bit that causes the main loop to quit.
1111 * Do NOT call finish() from here, since finish() does far too much
1112 * to be called from a signal handler.
1115 stopit(int sig __unused
)
1119 * When doing reverse DNS lookups, the finish_up flag might not
1120 * be noticed for a while. Just exit if we get a second SIGINT.
1122 if (!(options
& F_NUMERIC
) && finish_up
)
1123 _exit(nreceived
? 0 : 2);
1129 * Compose and transmit an ICMP ECHO REQUEST packet. The IP packet
1130 * will be added on by the kernel. The ID field is our UNIX process ID,
1131 * and the sequence number is an ascending integer. The first TIMEVAL_LEN
1132 * bytes of the data portion are used to hold a UNIX "timeval" struct in
1133 * host byte-order, to compute the round-trip time.
1146 icp
= (struct icmp
*)outpack
;
1147 icp
->icmp_type
= icmp_type
;
1149 icp
->icmp_cksum
= 0;
1150 icp
->icmp_seq
= htons(ntransmitted
);
1151 icp
->icmp_id
= ident
; /* ID */
1153 CLR(ntransmitted
% mx_dup_ck
);
1155 if (datalen
>= TIMEVAL_LEN
) /* can we time transfer */
1160 if ((options
& F_TIME
) || timing
) {
1161 (void)gettimeofday(&now
, NULL
);
1163 tv32
.tv32_sec
= htonl(now
.tv_sec
);
1164 tv32
.tv32_usec
= htonl(now
.tv_usec
);
1165 if (options
& F_TIME
)
1166 icp
->icmp_otime
= htonl((now
.tv_sec
% (24*60*60))
1167 * 1000 + now
.tv_usec
/ 1000);
1169 bcopy((void *)&tv32
,
1170 (void *)&outpack
[ICMP_MINLEN
+ phdr_len
],
1174 cc
= ICMP_MINLEN
+ phdr_len
+ datalen
;
1176 /* compute ICMP checksum here */
1177 icp
->icmp_cksum
= in_cksum((u_short
*)icp
, cc
);
1179 if (options
& F_HDRINCL
) {
1180 cc
+= sizeof(struct ip
);
1181 ip
= (struct ip
*)outpackhdr
;
1183 ip
->ip_sum
= in_cksum((u_short
*)outpackhdr
, cc
);
1184 packet
= outpackhdr
;
1186 if (use_sendmsg
> 0) {
1189 char cmbuf
[2 * CMSG_SPACE(sizeof(int))];
1190 struct cmsghdr
*cm
= (struct cmsghdr
*)cmbuf
;
1192 if ((options
& F_CONNECT
)) {
1193 msg
.msg_name
= NULL
;
1194 msg
.msg_namelen
= 0;
1196 msg
.msg_name
= &whereto
;
1197 msg
.msg_namelen
= sizeof(whereto
);
1199 iov
.iov_base
= packet
;
1204 msg
.msg_controllen
= 0;
1205 msg
.msg_control
= NULL
;
1207 if (traffic_class
>= 0) {
1208 cm
->cmsg_len
= CMSG_LEN(sizeof(int));
1209 cm
->cmsg_level
= SOL_SOCKET
;
1210 cm
->cmsg_type
= SO_TRAFFIC_CLASS
;
1211 *(int *)CMSG_DATA(cm
) = traffic_class
;
1212 msg
.msg_controllen
+= CMSG_SPACE(sizeof(int));
1213 cm
= (struct cmsghdr
*)(((char *)cm
) + CMSG_SPACE(sizeof(int)));
1215 if (net_service_type
>= 0) {
1216 cm
->cmsg_len
= CMSG_LEN(sizeof(int));
1217 cm
->cmsg_level
= SOL_SOCKET
;
1218 cm
->cmsg_type
= SO_NET_SERVICE_TYPE
;
1219 msg
.msg_controllen
+= CMSG_SPACE(sizeof(int));
1220 *(int *)CMSG_DATA(cm
) = net_service_type
;
1222 msg
.msg_control
= cmbuf
;
1226 i
= sendmsg(s
, &msg
, 0);
1228 if ((options
& F_CONNECT
)) {
1229 i
= send(s
, (char *)packet
, cc
, 0);
1231 i
= sendto(s
, (char *)packet
, cc
, 0, (struct sockaddr
*)&whereto
,
1235 if (i
< 0 || i
!= cc
) {
1237 if (options
& F_FLOOD
&& errno
== ENOBUFS
) {
1238 usleep(FLOOD_BACKOFF
);
1243 warn("%s: partial write: %d of %d bytes",
1249 if (!(options
& F_QUIET
) && options
& F_FLOOD
)
1250 (void)write(STDOUT_FILENO
, &DOT
, 1);
1255 * Print out the packet, if it came from us. This logic is necessary
1256 * because ALL readers of the ICMP socket get a copy of ALL ICMP packets
1257 * which arrive ('tis only fair). This permits multiple copies of this
1258 * program to be run without having intermingled output (or statistics!).
1261 pr_pack(char *buf
, int cc
, struct sockaddr_in
*from
, struct timeval
*tv
,
1270 int dupflag
, hlen
, i
, j
, recv_len
, seq
;
1271 static int old_rrlen
;
1272 static char old_rr
[MAX_IPOPTLEN
];
1274 /* Check the IP header */
1275 ip
= (struct ip
*)buf
;
1276 hlen
= ip
->ip_hl
<< 2;
1278 if (cc
< hlen
+ ICMP_MINLEN
) {
1279 if (options
& F_VERBOSE
)
1280 warn("packet too short (%d bytes) from %s", cc
,
1281 inet_ntoa(from
->sin_addr
));
1285 /* Now the ICMP part */
1287 icp
= (struct icmp
*)(buf
+ hlen
);
1288 if (icp
->icmp_type
== icmp_type_rsp
) {
1289 if (icp
->icmp_id
!= ident
)
1290 return; /* 'Twas not our ECHO */
1299 tp
= icp
->icmp_data
;
1301 tp
= (const char *)tp
+ phdr_len
;
1303 if (cc
- ICMP_MINLEN
- phdr_len
>= sizeof(tv1
)) {
1304 /* Copy to avoid alignment problems: */
1305 memcpy(&tv32
, tp
, sizeof(tv32
));
1306 tv1
.tv_sec
= ntohl(tv32
.tv32_sec
);
1307 tv1
.tv_usec
= ntohl(tv32
.tv32_usec
);
1309 triptime
= ((double)tv
->tv_sec
) * 1000.0 +
1310 ((double)tv
->tv_usec
) / 1000.0;
1312 tsumsq
+= triptime
* triptime
;
1313 if (triptime
< tmin
)
1315 if (triptime
> tmax
)
1321 seq
= ntohs(icp
->icmp_seq
);
1323 if (TST(seq
% mx_dup_ck
)) {
1328 SET(seq
% mx_dup_ck
);
1332 if (options
& F_QUIET
)
1335 if (options
& F_WAITTIME
&& triptime
> waittime
) {
1340 if (options
& F_FLOOD
)
1341 (void)write(STDOUT_FILENO
, &BSPACE
, 1);
1343 int seq_sent_len
= send_len
;
1344 int seq_datalen
= datalen
;
1346 if (sweepmax
!= 0) {
1348 * When sweeping take in account the length of that
1349 * was sent based on the sequence number
1351 seq_datalen
= sweepmin
+ (seq
/ snpackets
) * sweepincr
;
1352 seq_sent_len
= icmp_len
+ seq_datalen
;
1354 if (options
& F_PRTIME
)
1356 (void)printf("%d bytes from %s: icmp_seq=%u", cc
,
1357 inet_ntoa(*(struct in_addr
*)&from
->sin_addr
.s_addr
),
1359 (void)printf(" ttl=%d", ip
->ip_ttl
);
1361 (void)printf(" time=%.3f ms", triptime
);
1363 (void)printf(" tc=%d", tc
);
1365 if (dupflag
&& no_dup
== 0) {
1366 (void)printf(" (DUP!)");
1368 if (options
& F_AUDIBLE
)
1369 (void)write(STDOUT_FILENO
, &BBELL
, 1);
1370 if (options
& F_MASK
) {
1371 /* Just prentend this cast isn't ugly */
1372 (void)printf(" mask=%s",
1373 pr_addr(*(struct in_addr
*)&(icp
->icmp_mask
)));
1375 if (options
& F_TIME
) {
1376 (void)printf(" tso=%s", pr_ntime(icp
->icmp_otime
));
1377 (void)printf(" tsr=%s", pr_ntime(icp
->icmp_rtime
));
1378 (void)printf(" tst=%s", pr_ntime(icp
->icmp_ttime
));
1380 if (recv_len
!= seq_sent_len
) {
1382 "\nwrong total length %d instead of %d",
1383 recv_len
, seq_sent_len
);
1385 /* check the data */
1386 cp
= (u_char
*)&icp
->icmp_data
[phdr_len
];
1387 dp
= &outpack
[ICMP_MINLEN
+ phdr_len
];
1388 cc
-= ICMP_MINLEN
+ phdr_len
;
1390 if (timing
) { /* don't check variable timestamp */
1396 for (; i
< seq_datalen
&& cc
> 0; ++i
, ++cp
, ++dp
, --cc
) {
1398 (void)printf("\nwrong data byte #%d should be 0x%x but was 0x%x",
1400 (void)printf("\ncp:");
1401 cp
= (u_char
*)&icp
->icmp_data
[0];
1402 for (i
= 0; i
< seq_datalen
; ++i
, ++cp
) {
1404 (void)printf("\n\t");
1405 (void)printf("%2x ", *cp
);
1407 (void)printf("\ndp:");
1408 cp
= &outpack
[ICMP_MINLEN
];
1409 for (i
= 0; i
< seq_datalen
; ++i
, ++cp
) {
1411 (void)printf("\n\t");
1412 (void)printf("%2x ", *cp
);
1420 * We've got something other than an ECHOREPLY.
1421 * See if it's a reply to something that we sent.
1422 * We can compare IP destination, protocol,
1423 * and ICMP type and ID.
1425 * Only print all the error messages if we are running
1426 * as root to avoid leaking information not normally
1427 * available to those not running as root.
1430 struct ip
*oip
= &icp
->icmp_ip
;
1432 struct ip
*oip
= (struct ip
*)icp
->icmp_data
;
1434 struct icmp
*oicmp
= (struct icmp
*)(oip
+ 1);
1436 if (((options
& F_VERBOSE
) && uid
== 0) ||
1437 (!(options
& F_QUIET2
) &&
1438 (oip
->ip_dst
.s_addr
== whereto
.sin_addr
.s_addr
) &&
1439 (oip
->ip_p
== IPPROTO_ICMP
) &&
1440 (oicmp
->icmp_type
== ICMP_ECHO
) &&
1441 (oicmp
->icmp_id
== ident
))) {
1442 if (options
& F_PRTIME
)
1444 (void)printf("%d bytes from %s: ", cc
,
1445 pr_addr(from
->sin_addr
));
1451 /* Display any IP options */
1452 cp
= (u_char
*)buf
+ sizeof(struct ip
);
1454 for (; hlen
> (int)sizeof(struct ip
); --hlen
, ++cp
)
1461 (void)printf(*cp
== IPOPT_LSRR
?
1462 "\nLSRR: " : "\nSSRR: ");
1463 j
= cp
[IPOPT_OLEN
] - IPOPT_MINOFF
+ 1;
1466 if (j
>= INADDR_LEN
&&
1467 j
<= hlen
- (int)sizeof(struct ip
)) {
1469 bcopy(++cp
, &ina
.s_addr
, INADDR_LEN
);
1470 if (ina
.s_addr
== 0)
1471 (void)printf("\t0.0.0.0");
1473 (void)printf("\t%s",
1476 cp
+= INADDR_LEN
- 1;
1480 (void)putchar('\n');
1483 (void)printf("\t(truncated route)\n");
1486 j
= cp
[IPOPT_OLEN
]; /* get length */
1487 i
= cp
[IPOPT_OFFSET
]; /* and pointer */
1492 i
= i
- IPOPT_MINOFF
+ 1;
1493 if (i
< 0 || i
> (hlen
- (int)sizeof(struct ip
))) {
1498 && !bcmp((char *)cp
, old_rr
, i
)
1499 && !(options
& F_FLOOD
)) {
1500 (void)printf("\t(same route)");
1506 bcopy((char *)cp
, old_rr
, i
);
1507 (void)printf("\nRR: ");
1508 if (i
>= INADDR_LEN
&&
1509 i
<= hlen
- (int)sizeof(struct ip
)) {
1511 bcopy(++cp
, &ina
.s_addr
, INADDR_LEN
);
1512 if (ina
.s_addr
== 0)
1513 (void)printf("\t0.0.0.0");
1515 (void)printf("\t%s",
1518 cp
+= INADDR_LEN
- 1;
1522 (void)putchar('\n');
1525 (void)printf("\t(truncated route)");
1528 (void)printf("\nNOP");
1531 (void)printf("\nunknown option %x", *cp
);
1534 if (!(options
& F_FLOOD
)) {
1535 (void)putchar('\n');
1536 (void)fflush(stdout
);
1542 * Checksum routine for Internet Protocol family headers (C Version)
1545 in_cksum(u_short
*addr
, int len
)
1560 * Our algorithm is simple, using a 32 bit accumulator (sum), we add
1561 * sequential 16 bit words to it, and at the end, fold back all the
1562 * carry bits from the top 16 bits into the lower 16 bits.
1569 /* mop up an odd byte, if necessary */
1571 last
.uc
[0] = *(u_char
*)w
;
1576 /* add back carry outs from top 16 bits to low 16 bits */
1577 sum
= (sum
>> 16) + (sum
& 0xffff); /* add hi 16 to low 16 */
1578 sum
+= (sum
>> 16); /* add carry */
1579 answer
= ~sum
; /* truncate to 16 bits */
1585 * Subtract 2 timeval structs: out = out - in. Out is assumed to
1589 tvsub(struct timeval
*out
, const struct timeval
*in
)
1592 if ((out
->tv_usec
-= in
->tv_usec
) < 0) {
1594 out
->tv_usec
+= 1000000;
1596 out
->tv_sec
-= in
->tv_sec
;
1601 * Print out statistics when SIGINFO is received.
1605 status(int sig __unused
)
1617 (void)fprintf(stderr
, "\r%ld/%ld packets received (%.1f%%)",
1618 nreceived
, ntransmitted
,
1619 ntransmitted
? nreceived
* 100.0 / ntransmitted
: 0.0);
1620 if (nreceived
&& timing
)
1621 (void)fprintf(stderr
, " %.3f min / %.3f avg / %.3f max",
1622 tmin
, tsum
/ (nreceived
+ nrepeats
), tmax
);
1623 (void)fprintf(stderr
, "\n");
1629 * Print out statistics, and give up.
1635 (void)signal(SIGINT
, SIG_IGN
);
1636 (void)signal(SIGALRM
, SIG_IGN
);
1637 (void)putchar('\n');
1638 (void)fflush(stdout
);
1639 (void)printf("--- %s ping statistics ---\n", hostname
);
1640 (void)printf("%ld packets transmitted, ", ntransmitted
);
1641 (void)printf("%ld packets received, ", nreceived
);
1643 (void)printf("+%ld duplicates, ", nrepeats
);
1645 if (nreceived
> ntransmitted
)
1646 (void)printf("-- somebody's printing up packets!");
1648 (void)printf("%.1f%% packet loss",
1649 ((ntransmitted
- nreceived
) * 100.0) /
1653 (void)printf(", %ld packets out of wait time", nrcvtimeout
);
1654 (void)putchar('\n');
1655 if (nreceived
&& timing
) {
1656 double n
= nreceived
+ nrepeats
;
1657 double avg
= tsum
/ n
;
1658 double vari
= tsumsq
/ n
- avg
* avg
;
1660 "round-trip min/avg/max/stddev = %.3f/%.3f/%.3f/%.3f ms\n",
1661 tmin
, avg
, tmax
, sqrt(vari
));
1671 static char *ttab
[] = {
1672 "Echo Reply", /* ip + seq + udata */
1673 "Dest Unreachable", /* net, host, proto, port, frag, sr + IP */
1674 "Source Quench", /* IP */
1675 "Redirect", /* redirect type, gateway, + IP */
1677 "Time Exceeded", /* transit, frag reassem + IP */
1678 "Parameter Problem", /* pointer + IP */
1679 "Timestamp", /* id + seq + three timestamps */
1680 "Timestamp Reply", /* " */
1681 "Info Request", /* id + sq */
1682 "Info Reply" /* " */
1688 * Print a descriptive string about an ICMP header.
1691 pr_icmph(struct icmp
*icp
)
1694 switch(icp
->icmp_type
) {
1695 case ICMP_ECHOREPLY
:
1696 (void)printf("Echo Reply\n");
1697 /* XXX ID + Seq + Data */
1700 switch(icp
->icmp_code
) {
1701 case ICMP_UNREACH_NET
:
1702 (void)printf("Destination Net Unreachable\n");
1704 case ICMP_UNREACH_HOST
:
1705 (void)printf("Destination Host Unreachable\n");
1707 case ICMP_UNREACH_PROTOCOL
:
1708 (void)printf("Destination Protocol Unreachable\n");
1710 case ICMP_UNREACH_PORT
:
1711 (void)printf("Destination Port Unreachable\n");
1713 case ICMP_UNREACH_NEEDFRAG
:
1714 (void)printf("frag needed and DF set (MTU %d)\n",
1715 ntohs(icp
->icmp_nextmtu
));
1717 case ICMP_UNREACH_SRCFAIL
:
1718 (void)printf("Source Route Failed\n");
1720 case ICMP_UNREACH_FILTER_PROHIB
:
1721 (void)printf("Communication prohibited by filter\n");
1724 (void)printf("Dest Unreachable, Bad Code: %d\n",
1728 /* Print returned IP header information */
1730 pr_retip(&icp
->icmp_ip
);
1732 pr_retip((struct ip
*)icp
->icmp_data
);
1735 case ICMP_SOURCEQUENCH
:
1736 (void)printf("Source Quench\n");
1738 pr_retip(&icp
->icmp_ip
);
1740 pr_retip((struct ip
*)icp
->icmp_data
);
1744 switch(icp
->icmp_code
) {
1745 case ICMP_REDIRECT_NET
:
1746 (void)printf("Redirect Network");
1748 case ICMP_REDIRECT_HOST
:
1749 (void)printf("Redirect Host");
1751 case ICMP_REDIRECT_TOSNET
:
1752 (void)printf("Redirect Type of Service and Network");
1754 case ICMP_REDIRECT_TOSHOST
:
1755 (void)printf("Redirect Type of Service and Host");
1758 (void)printf("Redirect, Bad Code: %d", icp
->icmp_code
);
1761 (void)printf("(New addr: %s)\n", inet_ntoa(icp
->icmp_gwaddr
));
1763 pr_retip(&icp
->icmp_ip
);
1765 pr_retip((struct ip
*)icp
->icmp_data
);
1769 (void)printf("Echo Request\n");
1770 /* XXX ID + Seq + Data */
1773 switch(icp
->icmp_code
) {
1774 case ICMP_TIMXCEED_INTRANS
:
1775 (void)printf("Time to live exceeded\n");
1777 case ICMP_TIMXCEED_REASS
:
1778 (void)printf("Frag reassembly time exceeded\n");
1781 (void)printf("Time exceeded, Bad Code: %d\n",
1786 pr_retip(&icp
->icmp_ip
);
1788 pr_retip((struct ip
*)icp
->icmp_data
);
1791 case ICMP_PARAMPROB
:
1792 (void)printf("Parameter problem: pointer = 0x%02x\n",
1793 icp
->icmp_hun
.ih_pptr
);
1795 pr_retip(&icp
->icmp_ip
);
1797 pr_retip((struct ip
*)icp
->icmp_data
);
1801 (void)printf("Timestamp\n");
1802 /* XXX ID + Seq + 3 timestamps */
1804 case ICMP_TSTAMPREPLY
:
1805 (void)printf("Timestamp Reply\n");
1806 /* XXX ID + Seq + 3 timestamps */
1809 (void)printf("Information Request\n");
1812 case ICMP_IREQREPLY
:
1813 (void)printf("Information Reply\n");
1817 (void)printf("Address Mask Request\n");
1819 case ICMP_MASKREPLY
:
1820 (void)printf("Address Mask Reply\n");
1822 case ICMP_ROUTERADVERT
:
1823 (void)printf("Router Advertisement\n");
1825 case ICMP_ROUTERSOLICIT
:
1826 (void)printf("Router Solicitation\n");
1829 (void)printf("Bad ICMP type: %d\n", icp
->icmp_type
);
1835 * Print an IP header with options.
1838 pr_iph(struct ip
*ip
)
1843 hlen
= ip
->ip_hl
<< 2;
1844 cp
= (u_char
*)ip
+ 20; /* point to options */
1846 (void)printf("Vr HL TOS Len ID Flg off TTL Pro cks Src Dst\n");
1847 (void)printf(" %1x %1x %02x %04x %04x",
1848 ip
->ip_v
, ip
->ip_hl
, ip
->ip_tos
, ntohs(ip
->ip_len
),
1850 (void)printf(" %1lx %04lx",
1851 (u_long
) (ntohl(ip
->ip_off
) & 0xe000) >> 13,
1852 (u_long
) ntohl(ip
->ip_off
) & 0x1fff);
1853 (void)printf(" %02x %02x %04x", ip
->ip_ttl
, ip
->ip_p
,
1855 (void)printf(" %s ", inet_ntoa(*(struct in_addr
*)&ip
->ip_src
.s_addr
));
1856 (void)printf(" %s ", inet_ntoa(*(struct in_addr
*)&ip
->ip_dst
.s_addr
));
1857 /* dump any option bytes */
1858 while (hlen
-- > 20) {
1859 (void)printf("%02x", *cp
++);
1861 (void)putchar('\n');
1866 * Return an ascii host address as a dotted quad and optionally with
1870 pr_addr(struct in_addr ina
)
1873 static char buf
[16 + 3 + MAXHOSTNAMELEN
];
1875 if ((options
& F_NUMERIC
) ||
1876 !(hp
= gethostbyaddr((char *)&ina
, 4, AF_INET
)))
1877 return inet_ntoa(ina
);
1879 (void)snprintf(buf
, sizeof(buf
), "%s (%s)", hp
->h_name
,
1886 * Dump some info on a returned (via ICMP) IP packet.
1889 pr_retip(struct ip
*ip
)
1895 hlen
= ip
->ip_hl
<< 2;
1896 cp
= (u_char
*)ip
+ hlen
;
1899 (void)printf("TCP: from port %u, to port %u (decimal)\n",
1900 (*cp
* 256 + *(cp
+ 1)), (*(cp
+ 2) * 256 + *(cp
+ 3)));
1901 else if (ip
->ip_p
== 17)
1902 (void)printf("UDP: from port %u, to port %u (decimal)\n",
1903 (*cp
* 256 + *(cp
+ 1)), (*(cp
+ 2) * 256 + *(cp
+ 3)));
1907 pr_ntime(n_time timestamp
)
1909 static char buf
[10];
1912 sec
= ntohl(timestamp
) / 1000;
1913 hour
= sec
/ 60 / 60;
1914 min
= (sec
% (60 * 60)) / 60;
1915 sec
= (sec
% (60 * 60)) % 60;
1917 (void)snprintf(buf
, sizeof(buf
), "%02d:%02d:%02d", hour
, min
, sec
);
1923 fill(char *bp
, char *patp
)
1929 for (cp
= patp
; *cp
; cp
++) {
1932 "patterns must be specified as hex digits");
1936 "%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x",
1937 &pat
[0], &pat
[1], &pat
[2], &pat
[3], &pat
[4], &pat
[5], &pat
[6],
1938 &pat
[7], &pat
[8], &pat
[9], &pat
[10], &pat
[11], &pat
[12],
1939 &pat
[13], &pat
[14], &pat
[15]);
1942 for (kk
= 0; kk
<= maxpayload
- (TIMEVAL_LEN
+ ii
); kk
+= ii
)
1943 for (jj
= 0; jj
< ii
; ++jj
)
1944 bp
[jj
+ kk
] = pat
[jj
];
1945 if (!(options
& F_QUIET
)) {
1946 (void)printf("PATTERN: 0x");
1947 for (jj
= 0; jj
< ii
; ++jj
)
1948 (void)printf("%02x", bp
[jj
] & 0xFF);
1954 str2sotc(const char *str
, bool *valid
)
1961 if (str
== NULL
|| *str
== '\0')
1963 else if (strcasecmp(str
, "BK_SYS") == 0)
1964 return SO_TC_BK_SYS
;
1965 else if (strcasecmp(str
, "BK") == 0)
1967 else if (strcasecmp(str
, "BE") == 0)
1969 else if (strcasecmp(str
, "RD") == 0)
1971 else if (strcasecmp(str
, "OAM") == 0)
1973 else if (strcasecmp(str
, "AV") == 0)
1975 else if (strcasecmp(str
, "RV") == 0)
1977 else if (strcasecmp(str
, "VI") == 0)
1979 else if (strcasecmp(str
, "VO") == 0)
1981 else if (strcasecmp(str
, "CTL") == 0)
1984 sotc
= (int)strtol(str
, &endptr
, 0);
1985 if (*endptr
!= '\0')
1992 str2netservicetype(const char *str
, bool *valid
)
1999 if (str
== NULL
|| *str
== '\0')
2001 else if (strcasecmp(str
, "BK") == 0)
2002 return NET_SERVICE_TYPE_BK
;
2003 else if (strcasecmp(str
, "BE") == 0)
2004 return NET_SERVICE_TYPE_BE
;
2005 else if (strcasecmp(str
, "VI") == 0)
2006 return NET_SERVICE_TYPE_VI
;
2007 else if (strcasecmp(str
, "SIG") == 0)
2008 return NET_SERVICE_TYPE_SIG
;
2009 else if (strcasecmp(str
, "VO") == 0)
2010 return NET_SERVICE_TYPE_VO
;
2011 else if (strcasecmp(str
, "RV") == 0)
2012 return NET_SERVICE_TYPE_RV
;
2013 else if (strcasecmp(str
, "AV") == 0)
2014 return NET_SERVICE_TYPE_AV
;
2015 else if (strcasecmp(str
, "OAM") == 0)
2016 return NET_SERVICE_TYPE_OAM
;
2017 else if (strcasecmp(str
, "RD") == 0)
2018 return NET_SERVICE_TYPE_RD
;
2020 svc
= (int)strtol(str
, &endptr
, 0);
2021 if (*endptr
!= '\0')
2028 str2tos(const char *str
, bool *valid
)
2035 if (str
== NULL
|| *str
== '\0')
2037 else if (strcasecmp(str
, "DF") == 0)
2039 else if (strcasecmp(str
, "EF") == 0)
2041 else if (strcasecmp(str
, "VA") == 0)
2044 else if (strcasecmp(str
, "CS0") == 0)
2046 else if (strcasecmp(str
, "CS1") == 0)
2048 else if (strcasecmp(str
, "CS2") == 0)
2050 else if (strcasecmp(str
, "CS3") == 0)
2052 else if (strcasecmp(str
, "CS4") == 0)
2054 else if (strcasecmp(str
, "CS5") == 0)
2056 else if (strcasecmp(str
, "CS6") == 0)
2058 else if (strcasecmp(str
, "CS7") == 0)
2061 else if (strcasecmp(str
, "AF11") == 0)
2063 else if (strcasecmp(str
, "AF12") == 0)
2065 else if (strcasecmp(str
, "AF13") == 0)
2067 else if (strcasecmp(str
, "AF21") == 0)
2069 else if (strcasecmp(str
, "AF22") == 0)
2071 else if (strcasecmp(str
, "AF23") == 0)
2073 else if (strcasecmp(str
, "AF31") == 0)
2075 else if (strcasecmp(str
, "AF32") == 0)
2077 else if (strcasecmp(str
, "AF33") == 0)
2079 else if (strcasecmp(str
, "AF41") == 0)
2081 else if (strcasecmp(str
, "AF42") == 0)
2083 else if (strcasecmp(str
, "AF43") == 0)
2087 unsigned long val
= strtoul(str
, &endptr
, 0);
2088 if (*endptr
!= '\0' || val
> 255)
2091 return ((u_int8_t
)val
);
2093 /* DSCP occupies the 6 upper bits of the TOS field */
2098 pr_currenttime(void)
2103 gettimeofday(&tv
, NULL
);
2105 s
= (tv
.tv_sec
+ thiszone
) % 86400;
2106 printf("%02d:%02d:%02d.%06u ", s
/ 3600, (s
% 3600) / 60, s
% 60,
2107 (u_int32_t
)tv
.tv_usec
);
2110 #if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
2111 #define SECOPT " [-P policy]"
2119 (void)fprintf(stderr
, "%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n",
2120 "usage: ping [-AaDdfnoQqRrv] [-c count] [-G sweepmaxsize]",
2121 " [-g sweepminsize] [-h sweepincrsize] [-i wait]",
2122 " [-l preload] [-M mask | time] [-m ttl]" SECOPT
" [-p pattern]",
2123 " [-S src_addr] [-s packetsize] [-t timeout][-W waittime]",
2125 " ping [-AaDdfLnoQqRrv] [-c count] [-I iface] [-i wait]",
2126 " [-l preload] [-M mask | time] [-m ttl]" SECOPT
" [-p pattern] [-S src_addr]",
2127 " [-s packetsize] [-T ttl] [-t timeout] [-W waittime]",
2128 " [-z tos] mcast-group");
2129 (void)fprintf(stderr
, "Apple specific options (to be specified before mcast-group or host like all options)\n");
2130 (void)fprintf(stderr
, " -b boundif # bind the socket to the interface\n");
2131 (void)fprintf(stderr
, " -k traffic_class # set traffic class socket option\n");
2132 (void)fprintf(stderr
, " -K net_service_type # set traffic class socket options\n");
2133 (void)fprintf(stderr
, " -apple-connect # call connect(2) in the socket\n");
2134 (void)fprintf(stderr
, " -apple-time # display current time\n");