2 * Copyright (c) 2008 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
62 static const char copyright
[] =
63 "@(#) Copyright (c) 1989, 1993\n\
64 The Regents of the University of California. All rights reserved.\n";
68 static char sccsid
[] = "@(#)ping.c 8.1 (Berkeley) 6/5/93";
71 #include <sys/cdefs.h>
73 __FBSDID("$FreeBSD: src/sbin/ping/ping.c,v 1.112 2007/07/01 12:08:06 gnn Exp $");
79 * Using the Internet Control Message Protocol (ICMP) "ECHO" facility,
80 * measure round-trip-delays and packet loss across network paths.
84 * U. S. Army Ballistic Research Laboratory
88 * Public Domain. Distribution Unlimited.
90 * More statistics could always be gathered.
91 * This program has to run SUID to ROOT to access the ICMP socket.
94 #include <sys/param.h> /* NB: we rely on this for <sys/types.h> */
95 #include <sys/socket.h>
96 #include <sys/sysctl.h>
100 #include <netinet/in.h>
101 #include <netinet/in_systm.h>
102 #include <netinet/ip.h>
103 #include <netinet/ip_icmp.h>
104 #include <netinet/ip_var.h>
105 #include <arpa/inet.h>
109 #include <netinet6/ipsec.h>
121 #include <sysexits.h>
124 #define INADDR_LEN ((int)sizeof(in_addr_t))
125 #define TIMEVAL_LEN ((int)sizeof(struct tv32))
126 #define MASK_LEN (ICMP_MASKLEN - ICMP_MINLEN)
127 #define TS_LEN (ICMP_TSLEN - ICMP_MINLEN)
128 #define DEFDATALEN 56 /* default data length */
129 #define FLOOD_BACKOFF 20000 /* usecs to back off if F_FLOOD mode */
130 /* runs out of buffer space */
131 #define MAXIPLEN (sizeof(struct ip) + MAX_IPOPTLEN)
132 #define MAXICMPLEN (ICMP_ADVLENMIN + MAX_IPOPTLEN)
133 #define MAXWAIT 10000 /* max ms to wait for response */
134 #define MAXALARM (60 * 60) /* max seconds for alarm timeout */
137 #define A(bit) rcvd_tbl[(bit)>>3] /* identify byte in array */
138 #define B(bit) (1 << ((bit) & 0x07)) /* identify bit in byte */
139 #define SET(bit) (A(bit) |= B(bit))
140 #define CLR(bit) (A(bit) &= (~B(bit)))
141 #define TST(bit) (A(bit) & B(bit))
148 /* various options */
150 #define F_FLOOD 0x0001
151 #define F_INTERVAL 0x0002
152 #define F_NUMERIC 0x0004
153 #define F_PINGFILLED 0x0008
154 #define F_QUIET 0x0010
155 #define F_RROUTE 0x0020
156 #define F_SO_DEBUG 0x0040
157 #define F_SO_DONTROUTE 0x0080
158 #define F_VERBOSE 0x0100
159 #define F_QUIET2 0x0200
160 #define F_NOLOOP 0x0400
161 #define F_MTTL 0x0800
163 #define F_AUDIBLE 0x2000
165 #ifdef IPSEC_POLICY_IPSEC
166 #define F_POLICY 0x4000
167 #endif /*IPSEC_POLICY_IPSEC*/
170 #define F_MISSED 0x10000
171 #define F_ONCE 0x20000
172 #define F_HDRINCL 0x40000
173 #define F_MASK 0x80000
174 #define F_TIME 0x100000
175 #define F_SWEEP 0x200000
176 #define F_WAITTIME 0x400000
179 * MAX_DUP_CHK is the number of bits in received table, i.e. the maximum
180 * number of received sequence numbers we can keep track of. Change 128
181 * to 8192 for complete accuracy...
183 #define MAX_DUP_CHK (8 * 128)
184 int mx_dup_ck
= MAX_DUP_CHK
;
185 char rcvd_tbl
[MAX_DUP_CHK
/ 8];
187 struct sockaddr_in whereto
; /* who to ping */
188 int datalen
= DEFDATALEN
;
190 int s
; /* socket file descriptor */
191 u_char outpackhdr
[IP_MAXPACKET
], *outpack
;
192 char BBELL
= '\a'; /* characters written for MISSED and AUDIBLE */
193 char BSPACE
= '\b'; /* characters written for flood */
197 int ident
; /* process id to identify our packets */
198 int uid
; /* cached uid for micro-optimization */
199 u_char icmp_type
= ICMP_ECHO
;
200 u_char icmp_type_rsp
= ICMP_ECHOREPLY
;
204 unsigned int ifscope
;
205 #if defined(IP_FORCE_OUT_IFP) && TARGET_OS_EMBEDDED
206 char boundifname
[IFNAMSIZ
];
207 #endif /* IP_FORCE_OUT_IFP */
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 */
226 int timing
; /* flag to do timing */
227 double tmin
= 999999999.0; /* minimum round trip time */
228 double tmax
= 0.0; /* maximum round trip time */
229 double tsum
= 0.0; /* sum of all times, for doing average */
230 double tsumsq
= 0.0; /* sum of all times squared, for std. dev. */
232 volatile sig_atomic_t finish_up
; /* nonzero if we've been told to finish up */
233 volatile sig_atomic_t siginfo_p
;
235 static void fill(char *, char *);
236 static u_short
in_cksum(u_short
*, int);
237 static void check_status(void);
238 static void finish(void) __dead2
;
239 static void pinger(void);
240 static char *pr_addr(struct in_addr
);
241 static char *pr_ntime(n_time
);
242 static void pr_icmph(struct icmp
*);
243 static void pr_iph(struct ip
*);
244 static void pr_pack(char *, int, struct sockaddr_in
*, struct timeval
*);
245 static void pr_retip(struct ip
*);
246 static void status(int);
247 static void stopit(int);
248 static void tvsub(struct timeval
*, struct timeval
*);
249 static void usage(void) __dead2
;
256 struct sockaddr_in from
, sock_in
;
257 struct in_addr ifaddr
;
258 struct timeval last
, intvl
;
262 struct sigaction si_sa
;
264 u_char
*datap
, packet
[IP_MAXPACKET
];
265 char *ep
, *source
, *target
, *payload
;
267 #ifdef IPSEC_POLICY_IPSEC
268 char *policy_in
, *policy_out
;
270 struct sockaddr_in
*to
;
272 u_long alarmtimeout
, ultmp
;
273 int almost_done
, ch
, df
, hold
, i
, icmp_len
, mib
[4], preload
, sockerrno
,
275 char ctrl
[CMSG_SPACE(sizeof(struct timeval
))];
276 char hnamebuf
[MAXHOSTNAMELEN
], snamebuf
[MAXHOSTNAMELEN
];
278 char rspace
[MAX_IPOPTLEN
]; /* record route space */
280 unsigned char loop
, mttl
;
282 payload
= source
= NULL
;
283 #ifdef IPSEC_POLICY_IPSEC
284 policy_in
= policy_out
= NULL
;
288 * Do the stuff that we need root priv's for *first*, and
289 * then drop our setuid bit. Save error reporting for
293 s
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_ICMP
);
295 s
= socket(AF_INET
, SOCK_RAW
, IPPROTO_ICMP
);
301 alarmtimeout
= df
= preload
= tos
= 0;
303 outpack
= outpackhdr
+ sizeof(struct ip
);
304 while ((ch
= getopt(argc
, argv
,
305 "Aab:c:DdfG:g:h:I:i:Ll:M:m:nop:QqRrS:s:T:t:vW:z:"
307 #ifdef IPSEC_POLICY_IPSEC
309 #endif /*IPSEC_POLICY_IPSEC*/
311 #if defined(IP_FORCE_OUT_IFP) && TARGET_OS_EMBEDDED
313 #endif /* IP_FORCE_OUT_IFP */
321 options
|= F_AUDIBLE
;
323 #if defined(IP_FORCE_OUT_IFP) && TARGET_OS_EMBEDDED
325 (void) snprintf(boundifname
, sizeof (boundifname
),
328 #endif /* IP_FORCE_OUT_IFP */
333 ultmp
= strtoul(optarg
, &ep
, 0);
334 if (*ep
|| ep
== optarg
|| ultmp
> LONG_MAX
|| !ultmp
)
336 "invalid count of packets to transmit: `%s'",
341 options
|= F_HDRINCL
;
345 options
|= F_SO_DEBUG
;
350 err(EX_NOPERM
, "-f flag");
353 setbuf(stdout
, (char *)NULL
);
355 case 'G': /* Maximum packet size for ping sweep */
356 ultmp
= strtoul(optarg
, &ep
, 0);
357 if (*ep
|| ep
== optarg
)
358 errx(EX_USAGE
, "invalid packet size: `%s'",
361 if (uid
!= 0 && ultmp
> DEFDATALEN
) {
364 "packet size too large: %lu > %u",
367 #endif /* __APPLE__ */
371 case 'g': /* Minimum packet size for ping sweep */
372 ultmp
= strtoul(optarg
, &ep
, 0);
373 if (*ep
|| ep
== optarg
)
374 errx(EX_USAGE
, "invalid packet size: `%s'",
377 if (uid
!= 0 && ultmp
> DEFDATALEN
) {
380 "packet size too large: %lu > %u",
383 #endif /* __APPLE__ */
387 case 'h': /* Packet size increment for ping sweep */
388 ultmp
= strtoul(optarg
, &ep
, 0);
389 if (*ep
|| ep
== optarg
|| ultmp
< 1)
390 errx(EX_USAGE
, "invalid increment size: `%s'",
393 if (uid
!= 0 && ultmp
> DEFDATALEN
) {
396 "packet size too large: %lu > %u",
399 #endif /* __APPLE__ */
403 case 'I': /* multicast interface */
404 if (inet_aton(optarg
, &ifaddr
) == 0)
406 "invalid multicast interface: `%s'",
410 case 'i': /* wait between sending packets */
411 t
= strtod(optarg
, &ep
) * 1000.0;
412 if (*ep
|| ep
== optarg
|| t
> (double)INT_MAX
)
413 errx(EX_USAGE
, "invalid timing interval: `%s'",
415 options
|= F_INTERVAL
;
417 if (uid
&& interval
< 1000) {
419 err(EX_NOPERM
, "-i interval too short");
427 ultmp
= strtoul(optarg
, &ep
, 0);
428 if (*ep
|| ep
== optarg
|| ultmp
> INT_MAX
)
430 "invalid preload value: `%s'", optarg
);
433 err(EX_NOPERM
, "-l flag");
448 errx(EX_USAGE
, "invalid message: `%c'", optarg
[0]);
453 ultmp
= strtoul(optarg
, &ep
, 0);
454 if (*ep
|| ep
== optarg
|| ultmp
> MAXTTL
)
455 errx(EX_USAGE
, "invalid TTL: `%s'", optarg
);
460 options
|= F_NUMERIC
;
466 #ifdef IPSEC_POLICY_IPSEC
469 if (!strncmp("in", optarg
, 2))
470 policy_in
= strdup(optarg
);
471 else if (!strncmp("out", optarg
, 3))
472 policy_out
= strdup(optarg
);
474 errx(1, "invalid security policy");
476 #endif /*IPSEC_POLICY_IPSEC*/
478 case 'p': /* fill buffer with user pattern */
479 options
|= F_PINGFILLED
;
492 options
|= F_SO_DONTROUTE
;
497 case 's': /* size of packet to send */
498 ultmp
= strtoul(optarg
, &ep
, 0);
499 if (*ep
|| ep
== optarg
)
500 errx(EX_USAGE
, "invalid packet size: `%s'",
503 if (uid
!= 0 && ultmp
> DEFDATALEN
) {
506 "packet size too large: %lu > %u",
509 #endif /* __APPLE__ */
512 case 'T': /* multicast TTL */
513 ultmp
= strtoul(optarg
, &ep
, 0);
514 if (*ep
|| ep
== optarg
|| ultmp
> MAXTTL
)
515 errx(EX_USAGE
, "invalid multicast TTL: `%s'",
521 alarmtimeout
= strtoul(optarg
, &ep
, 0);
522 if ((alarmtimeout
< 1) || (alarmtimeout
== ULONG_MAX
))
523 errx(EX_USAGE
, "invalid timeout: `%s'",
525 if (alarmtimeout
> MAXALARM
)
526 errx(EX_USAGE
, "invalid timeout: `%s' > %d",
528 alarm((unsigned int)alarmtimeout
);
531 options
|= F_VERBOSE
;
533 case 'W': /* wait ms for answer */
534 t
= strtod(optarg
, &ep
);
535 if (*ep
|| ep
== optarg
|| t
> (double)INT_MAX
)
536 errx(EX_USAGE
, "invalid timing interval: `%s'",
538 options
|= F_WAITTIME
;
542 options
|= F_HDRINCL
;
543 ultmp
= strtoul(optarg
, &ep
, 0);
544 if (*ep
|| ep
== optarg
|| ultmp
> MAXTOS
)
545 errx(EX_USAGE
, "invalid TOS: `%s'", optarg
);
553 if (boundif
!= NULL
&& (ifscope
= if_nametoindex(boundif
)) == 0)
554 errx(1, "bad interface name");
556 if (argc
- optind
!= 1)
558 target
= argv
[optind
];
560 switch (options
& (F_MASK
|F_TIME
)) {
563 icmp_type
= ICMP_MASKREQ
;
564 icmp_type_rsp
= ICMP_MASKREPLY
;
566 if (!(options
& F_QUIET
))
567 (void)printf("ICMP_MASKREQ\n");
570 icmp_type
= ICMP_TSTAMP
;
571 icmp_type_rsp
= ICMP_TSTAMPREPLY
;
573 if (!(options
& F_QUIET
))
574 (void)printf("ICMP_TSTAMP\n");
577 errx(EX_USAGE
, "ICMP_TSTAMP and ICMP_MASKREQ are exclusive.");
580 icmp_len
= sizeof(struct ip
) + ICMP_MINLEN
+ phdr_len
;
581 if (options
& F_RROUTE
)
582 icmp_len
+= MAX_IPOPTLEN
;
583 maxpayload
= IP_MAXPACKET
- icmp_len
;
584 if (datalen
> maxpayload
)
585 errx(EX_USAGE
, "packet size too large: %d > %d", datalen
,
587 send_len
= icmp_len
+ datalen
;
588 datap
= &outpack
[ICMP_MINLEN
+ phdr_len
+ TIMEVAL_LEN
];
589 if (options
& F_PINGFILLED
) {
590 fill((char *)datap
, payload
);
593 bzero((char *)&sock_in
, sizeof(sock_in
));
594 sock_in
.sin_family
= AF_INET
;
595 if (inet_aton(source
, &sock_in
.sin_addr
) != 0) {
598 hp
= gethostbyname2(source
, AF_INET
);
600 errx(EX_NOHOST
, "cannot resolve %s: %s",
601 source
, hstrerror(h_errno
));
603 sock_in
.sin_len
= sizeof sock_in
;
604 if ((unsigned)hp
->h_length
> sizeof(sock_in
.sin_addr
) ||
606 errx(1, "gethostbyname2: illegal address");
607 memcpy(&sock_in
.sin_addr
, hp
->h_addr_list
[0],
608 sizeof(sock_in
.sin_addr
));
609 (void)strncpy(snamebuf
, hp
->h_name
,
610 sizeof(snamebuf
) - 1);
611 snamebuf
[sizeof(snamebuf
) - 1] = '\0';
612 shostname
= snamebuf
;
614 if (bind(s
, (struct sockaddr
*)&sock_in
, sizeof sock_in
) == -1)
618 bzero(&whereto
, sizeof(whereto
));
620 to
->sin_family
= AF_INET
;
621 to
->sin_len
= sizeof *to
;
622 if (inet_aton(target
, &to
->sin_addr
) != 0) {
625 hp
= gethostbyname2(target
, AF_INET
);
627 errx(EX_NOHOST
, "cannot resolve %s: %s",
628 target
, hstrerror(h_errno
));
630 if ((unsigned)hp
->h_length
> sizeof(to
->sin_addr
))
631 errx(1, "gethostbyname2 returned an illegal address");
632 memcpy(&to
->sin_addr
, hp
->h_addr_list
[0], sizeof to
->sin_addr
);
633 (void)strncpy(hnamebuf
, hp
->h_name
, sizeof(hnamebuf
) - 1);
634 hnamebuf
[sizeof(hnamebuf
) - 1] = '\0';
638 if (options
& F_FLOOD
&& options
& F_INTERVAL
)
639 errx(EX_USAGE
, "-f and -i: incompatible options");
641 if (options
& F_FLOOD
&& IN_MULTICAST(ntohl(to
->sin_addr
.s_addr
)))
643 "-f flag cannot be used with multicast destination");
644 if (options
& (F_MIF
| F_NOLOOP
| F_MTTL
)
645 && !IN_MULTICAST(ntohl(to
->sin_addr
.s_addr
)))
647 "-I, -L, -T flags cannot be used with unicast destination");
649 if (datalen
>= TIMEVAL_LEN
) /* can we time transfer */
652 if (!(options
& F_PINGFILLED
))
653 for (i
= TIMEVAL_LEN
; i
< datalen
; ++i
)
656 ident
= getpid() & 0xFFFF;
660 err(EX_OSERR
, "socket");
664 if (setsockopt(s
, IPPROTO_IP
, IP_BOUND_IF
,
665 (char *)&ifscope
, sizeof (ifscope
)) != 0)
666 err(EX_OSERR
, "setsockopt(IP_BOUND_IF)");
668 #if defined(IP_FORCE_OUT_IFP) && TARGET_OS_EMBEDDED
669 else if (boundifname
[0] != 0) {
670 if (setsockopt(s
, IPPROTO_IP
, IP_FORCE_OUT_IFP
, boundifname
,
671 sizeof (boundifname
)) != 0)
672 err(EX_OSERR
, "setsockopt(IP_FORCE_OUT_IFP)");
674 #endif /* IP_FORCE_OUT_IFP */
675 if (options
& F_SO_DEBUG
)
676 (void)setsockopt(s
, SOL_SOCKET
, SO_DEBUG
, (char *)&hold
,
678 if (options
& F_SO_DONTROUTE
)
679 (void)setsockopt(s
, SOL_SOCKET
, SO_DONTROUTE
, (char *)&hold
,
682 #ifdef IPSEC_POLICY_IPSEC
683 if (options
& F_POLICY
) {
685 if (policy_in
!= NULL
) {
686 buf
= ipsec_set_policy(policy_in
, strlen(policy_in
));
688 errx(EX_CONFIG
, "%s", ipsec_strerror());
689 if (setsockopt(s
, IPPROTO_IP
, IP_IPSEC_POLICY
,
690 buf
, ipsec_get_policylen(buf
)) < 0)
692 "ipsec policy cannot be configured");
696 if (policy_out
!= NULL
) {
697 buf
= ipsec_set_policy(policy_out
, strlen(policy_out
));
699 errx(EX_CONFIG
, "%s", ipsec_strerror());
700 if (setsockopt(s
, IPPROTO_IP
, IP_IPSEC_POLICY
,
701 buf
, ipsec_get_policylen(buf
)) < 0)
703 "ipsec policy cannot be configured");
707 #endif /*IPSEC_POLICY_IPSEC*/
710 if (options
& F_HDRINCL
) {
711 ip
= (struct ip
*)outpackhdr
;
712 if (!(options
& (F_TTL
| F_MTTL
))) {
716 mib
[3] = IPCTL_DEFTTL
;
718 if (sysctl(mib
, 4, &ttl
, &sz
, NULL
, 0) == -1)
719 err(1, "sysctl(net.inet.ip.ttl)");
721 setsockopt(s
, IPPROTO_IP
, IP_HDRINCL
, &hold
, sizeof(hold
));
722 ip
->ip_v
= IPVERSION
;
723 ip
->ip_hl
= sizeof(struct ip
) >> 2;
726 ip
->ip_off
= df
? IP_DF
: 0;
728 ip
->ip_p
= IPPROTO_ICMP
;
729 ip
->ip_src
.s_addr
= source
? sock_in
.sin_addr
.s_addr
: INADDR_ANY
;
730 ip
->ip_dst
= to
->sin_addr
;
732 /* record route option */
733 if (options
& F_RROUTE
) {
735 bzero(rspace
, sizeof(rspace
));
736 rspace
[IPOPT_OPTVAL
] = IPOPT_RR
;
737 rspace
[IPOPT_OLEN
] = sizeof(rspace
) - 1;
738 rspace
[IPOPT_OFFSET
] = IPOPT_MINOFF
;
739 rspace
[sizeof(rspace
) - 1] = IPOPT_EOL
;
740 if (setsockopt(s
, IPPROTO_IP
, IP_OPTIONS
, rspace
,
742 err(EX_OSERR
, "setsockopt IP_OPTIONS");
745 "record route not available in this implementation");
746 #endif /* IP_OPTIONS */
749 if (options
& F_TTL
) {
750 if (setsockopt(s
, IPPROTO_IP
, IP_TTL
, &ttl
,
752 err(EX_OSERR
, "setsockopt IP_TTL");
755 if (options
& F_NOLOOP
) {
756 if (setsockopt(s
, IPPROTO_IP
, IP_MULTICAST_LOOP
, &loop
,
758 err(EX_OSERR
, "setsockopt IP_MULTICAST_LOOP");
761 if (options
& F_MTTL
) {
762 if (setsockopt(s
, IPPROTO_IP
, IP_MULTICAST_TTL
, &mttl
,
764 err(EX_OSERR
, "setsockopt IP_MULTICAST_TTL");
767 if (options
& F_MIF
) {
768 if (setsockopt(s
, IPPROTO_IP
, IP_MULTICAST_IF
, &ifaddr
,
769 sizeof(ifaddr
)) < 0) {
770 err(EX_OSERR
, "setsockopt IP_MULTICAST_IF");
775 if (setsockopt(s
, SOL_SOCKET
, SO_TIMESTAMP
, &on
, sizeof(on
)) < 0)
776 err(EX_OSERR
, "setsockopt SO_TIMESTAMP");
780 if (sweepmin
>= sweepmax
)
781 errx(EX_USAGE
, "Maximum packet size must be greater than the minimum packet size");
783 if (datalen
!= DEFDATALEN
)
784 errx(EX_USAGE
, "Packet size and ping sweep are mutually exclusive");
787 snpackets
= npackets
;
792 send_len
= icmp_len
+ sweepmin
;
794 if (options
& F_SWEEP
&& !sweepmax
)
795 errx(EX_USAGE
, "Maximum sweep size must be specified");
798 * When pinging the broadcast address, you can get a lot of answers.
799 * Doing something so evil is useful if you are trying to stress the
800 * ethernet, or just want to fill the arp cache to get some stuff for
801 * /etc/ethers. But beware: RFC 1122 allows hosts to ignore broadcast
802 * or multicast pings if they wish.
806 * XXX receive buffer needs undetermined space for mbuf overhead
809 hold
= IP_MAXPACKET
+ 128;
810 (void)setsockopt(s
, SOL_SOCKET
, SO_RCVBUF
, (char *)&hold
,
813 (void)setsockopt(s
, SOL_SOCKET
, SO_SNDBUF
, (char *)&hold
,
816 if (to
->sin_family
== AF_INET
) {
817 (void)printf("PING %s (%s)", hostname
,
818 inet_ntoa(to
->sin_addr
));
820 (void)printf(" from %s", shostname
);
822 (void)printf(": (%d ... %d) data bytes\n",
825 (void)printf(": %d data bytes\n", datalen
);
829 (void)printf("PING %s: (%d ... %d) data bytes\n",
830 hostname
, sweepmin
, sweepmax
);
832 (void)printf("PING %s: %d data bytes\n", hostname
, datalen
);
836 * Use sigaction() instead of signal() to get unambiguous semantics,
837 * in particular with SA_RESTART not set.
840 sigemptyset(&si_sa
.sa_mask
);
843 si_sa
.sa_handler
= stopit
;
844 if (sigaction(SIGINT
, &si_sa
, 0) == -1) {
845 err(EX_OSERR
, "sigaction SIGINT");
848 si_sa
.sa_handler
= status
;
849 if (sigaction(SIGINFO
, &si_sa
, 0) == -1) {
850 err(EX_OSERR
, "sigaction");
853 if (alarmtimeout
> 0) {
854 si_sa
.sa_handler
= stopit
;
855 if (sigaction(SIGALRM
, &si_sa
, 0) == -1)
856 err(EX_OSERR
, "sigaction SIGALRM");
859 bzero(&msg
, sizeof(msg
));
860 msg
.msg_name
= (caddr_t
)&from
;
864 msg
.msg_control
= (caddr_t
)ctrl
;
866 iov
.iov_base
= packet
;
867 iov
.iov_len
= IP_MAXPACKET
;
870 pinger(); /* send the first ping */
872 if (npackets
!= 0 && preload
> npackets
)
874 while (preload
--) /* fire off them quickies */
877 (void)gettimeofday(&last
, NULL
);
879 if (options
& F_FLOOD
) {
881 intvl
.tv_usec
= 10000;
883 intvl
.tv_sec
= interval
/ 1000;
884 intvl
.tv_usec
= interval
% 1000 * 1000;
889 struct timeval now
, timeout
;
894 if ((unsigned)s
>= FD_SETSIZE
)
895 errx(EX_OSERR
, "descriptor too large");
898 (void)gettimeofday(&now
, NULL
);
899 timeout
.tv_sec
= last
.tv_sec
+ intvl
.tv_sec
- now
.tv_sec
;
900 timeout
.tv_usec
= last
.tv_usec
+ intvl
.tv_usec
- now
.tv_usec
;
901 while (timeout
.tv_usec
< 0) {
902 timeout
.tv_usec
+= 1000000;
905 while (timeout
.tv_usec
>= 1000000) {
906 timeout
.tv_usec
-= 1000000;
909 if (timeout
.tv_sec
< 0)
910 timeout
.tv_sec
= timeout
.tv_usec
= 0;
911 n
= select(s
+ 1, &rfds
, NULL
, NULL
, &timeout
);
913 continue; /* Must be EINTR. */
915 struct timeval
*tv
= NULL
;
917 struct cmsghdr
*cmsg
= (struct cmsghdr
*)&ctrl
;
919 msg
.msg_controllen
= sizeof(ctrl
);
921 msg
.msg_namelen
= sizeof(from
);
922 if ((cc
= recvmsg(s
, &msg
, 0)) < 0) {
929 if (cmsg
->cmsg_level
== SOL_SOCKET
&&
930 cmsg
->cmsg_type
== SCM_TIMESTAMP
&&
931 cmsg
->cmsg_len
== CMSG_LEN(sizeof *tv
)) {
932 /* Copy to avoid alignment problems: */
933 memcpy(&now
, CMSG_DATA(cmsg
), sizeof(now
));
938 (void)gettimeofday(&now
, NULL
);
941 pr_pack((char *)packet
, cc
, &from
, tv
);
942 if ((options
& F_ONCE
&& nreceived
) ||
943 (npackets
&& nreceived
>= npackets
))
946 if (n
== 0 || options
& F_FLOOD
) {
947 if (sweepmax
&& sntransmitted
== snpackets
) {
948 for (i
= 0; i
< sweepincr
; ++i
)
950 datalen
+= sweepincr
;
951 if (datalen
> sweepmax
)
953 send_len
= icmp_len
+ datalen
;
956 if (!npackets
|| ntransmitted
< npackets
)
964 intvl
.tv_sec
= 2 * tmax
/ 1000;
968 intvl
.tv_sec
= waittime
/ 1000;
969 intvl
.tv_usec
= waittime
% 1000 * 1000;
972 (void)gettimeofday(&last
, NULL
);
973 if (ntransmitted
- nreceived
- 1 > nmissedmax
) {
974 nmissedmax
= ntransmitted
- nreceived
- 1;
975 if (options
& F_MISSED
)
976 (void)write(STDOUT_FILENO
, &BBELL
, 1);
977 if (!(options
& F_QUIET
))
978 printf("Request timeout for icmp_seq %ld\n", ntransmitted
- 2);
984 exit(0); /* Make the compiler happy */
989 * Set the global bit that causes the main loop to quit.
990 * Do NOT call finish() from here, since finish() does far too much
991 * to be called from a signal handler.
999 * When doing reverse DNS lookups, the finish_up flag might not
1000 * be noticed for a while. Just exit if we get a second SIGINT.
1002 if (!(options
& F_NUMERIC
) && finish_up
)
1003 _exit(nreceived
? 0 : 2);
1009 * Compose and transmit an ICMP ECHO REQUEST packet. The IP packet
1010 * will be added on by the kernel. The ID field is our UNIX process ID,
1011 * and the sequence number is an ascending integer. The first TIMEVAL_LEN
1012 * bytes of the data portion are used to hold a UNIX "timeval" struct in
1013 * host byte-order, to compute the round-trip time.
1026 icp
= (struct icmp
*)outpack
;
1027 icp
->icmp_type
= icmp_type
;
1029 icp
->icmp_cksum
= 0;
1030 icp
->icmp_seq
= htons(ntransmitted
);
1031 icp
->icmp_id
= ident
; /* ID */
1033 CLR(ntransmitted
% mx_dup_ck
);
1035 if ((options
& F_TIME
) || timing
) {
1036 (void)gettimeofday(&now
, NULL
);
1038 tv32
.tv32_sec
= htonl(now
.tv_sec
);
1039 tv32
.tv32_usec
= htonl(now
.tv_usec
);
1040 if (options
& F_TIME
)
1041 icp
->icmp_otime
= htonl((now
.tv_sec
% (24*60*60))
1042 * 1000 + now
.tv_usec
/ 1000);
1044 bcopy((void *)&tv32
,
1045 (void *)&outpack
[ICMP_MINLEN
+ phdr_len
],
1049 cc
= ICMP_MINLEN
+ phdr_len
+ datalen
;
1051 /* compute ICMP checksum here */
1052 icp
->icmp_cksum
= in_cksum((u_short
*)icp
, cc
);
1054 if (options
& F_HDRINCL
) {
1055 cc
+= sizeof(struct ip
);
1056 ip
= (struct ip
*)outpackhdr
;
1058 ip
->ip_sum
= in_cksum((u_short
*)outpackhdr
, cc
);
1059 packet
= outpackhdr
;
1061 i
= sendto(s
, (char *)packet
, cc
, 0, (struct sockaddr
*)&whereto
,
1064 if (i
< 0 || i
!= cc
) {
1066 if (options
& F_FLOOD
&& errno
== ENOBUFS
) {
1067 usleep(FLOOD_BACKOFF
);
1072 warn("%s: partial write: %d of %d bytes",
1078 if (!(options
& F_QUIET
) && options
& F_FLOOD
)
1079 (void)write(STDOUT_FILENO
, &DOT
, 1);
1084 * Print out the packet, if it came from us. This logic is necessary
1085 * because ALL readers of the ICMP socket get a copy of ALL ICMP packets
1086 * which arrive ('tis only fair). This permits multiple copies of this
1087 * program to be run without having intermingled output (or statistics!).
1090 pr_pack(buf
, cc
, from
, tv
)
1093 struct sockaddr_in
*from
;
1102 int dupflag
, hlen
, i
, j
, recv_len
, seq
;
1103 static int old_rrlen
;
1104 static char old_rr
[MAX_IPOPTLEN
];
1106 /* Check the IP header */
1107 ip
= (struct ip
*)buf
;
1108 hlen
= ip
->ip_hl
<< 2;
1110 if (cc
< hlen
+ ICMP_MINLEN
) {
1111 if (options
& F_VERBOSE
)
1112 warn("packet too short (%d bytes) from %s", cc
,
1113 inet_ntoa(from
->sin_addr
));
1117 /* Now the ICMP part */
1119 icp
= (struct icmp
*)(buf
+ hlen
);
1120 if (icp
->icmp_type
== icmp_type_rsp
) {
1121 if (icp
->icmp_id
!= ident
)
1122 return; /* 'Twas not our ECHO */
1131 tp
= icp
->icmp_data
;
1133 tp
= (const char *)tp
+ phdr_len
;
1135 if (cc
- ICMP_MINLEN
- phdr_len
>= sizeof(tv1
)) {
1136 /* Copy to avoid alignment problems: */
1137 memcpy(&tv32
, tp
, sizeof(tv32
));
1138 tv1
.tv_sec
= ntohl(tv32
.tv32_sec
);
1139 tv1
.tv_usec
= ntohl(tv32
.tv32_usec
);
1141 triptime
= ((double)tv
->tv_sec
) * 1000.0 +
1142 ((double)tv
->tv_usec
) / 1000.0;
1144 tsumsq
+= triptime
* triptime
;
1145 if (triptime
< tmin
)
1147 if (triptime
> tmax
)
1153 seq
= ntohs(icp
->icmp_seq
);
1155 if (TST(seq
% mx_dup_ck
)) {
1160 SET(seq
% mx_dup_ck
);
1164 if (options
& F_QUIET
)
1167 if (options
& F_WAITTIME
&& triptime
> waittime
) {
1172 if (options
& F_FLOOD
)
1173 (void)write(STDOUT_FILENO
, &BSPACE
, 1);
1175 (void)printf("%d bytes from %s: icmp_seq=%u", cc
,
1176 inet_ntoa(*(struct in_addr
*)&from
->sin_addr
.s_addr
),
1178 (void)printf(" ttl=%d", ip
->ip_ttl
);
1180 (void)printf(" time=%.3f ms", triptime
);
1182 if (!IN_MULTICAST(ntohl(whereto
.sin_addr
.s_addr
)))
1183 (void)printf(" (DUP!)");
1185 if (options
& F_AUDIBLE
)
1186 (void)write(STDOUT_FILENO
, &BBELL
, 1);
1187 if (options
& F_MASK
) {
1188 /* Just prentend this cast isn't ugly */
1189 (void)printf(" mask=%s",
1190 pr_addr(*(struct in_addr
*)&(icp
->icmp_mask
)));
1192 if (options
& F_TIME
) {
1193 (void)printf(" tso=%s", pr_ntime(icp
->icmp_otime
));
1194 (void)printf(" tsr=%s", pr_ntime(icp
->icmp_rtime
));
1195 (void)printf(" tst=%s", pr_ntime(icp
->icmp_ttime
));
1197 if (recv_len
!= send_len
) {
1199 "\nwrong total length %d instead of %d",
1200 recv_len
, send_len
);
1202 /* check the data */
1203 cp
= (u_char
*)&icp
->icmp_data
[phdr_len
];
1204 dp
= &outpack
[ICMP_MINLEN
+ phdr_len
];
1205 cc
-= ICMP_MINLEN
+ phdr_len
;
1207 if (timing
) { /* don't check variable timestamp */
1213 for (; i
< datalen
&& cc
> 0; ++i
, ++cp
, ++dp
, --cc
) {
1215 (void)printf("\nwrong data byte #%d should be 0x%x but was 0x%x",
1217 (void)printf("\ncp:");
1218 cp
= (u_char
*)&icp
->icmp_data
[0];
1219 for (i
= 0; i
< datalen
; ++i
, ++cp
) {
1221 (void)printf("\n\t");
1222 (void)printf("%2x ", *cp
);
1224 (void)printf("\ndp:");
1225 cp
= &outpack
[ICMP_MINLEN
];
1226 for (i
= 0; i
< datalen
; ++i
, ++cp
) {
1228 (void)printf("\n\t");
1229 (void)printf("%2x ", *cp
);
1237 * We've got something other than an ECHOREPLY.
1238 * See if it's a reply to something that we sent.
1239 * We can compare IP destination, protocol,
1240 * and ICMP type and ID.
1242 * Only print all the error messages if we are running
1243 * as root to avoid leaking information not normally
1244 * available to those not running as root.
1247 struct ip
*oip
= &icp
->icmp_ip
;
1249 struct ip
*oip
= (struct ip
*)icp
->icmp_data
;
1251 struct icmp
*oicmp
= (struct icmp
*)(oip
+ 1);
1253 if (((options
& F_VERBOSE
) && uid
== 0) ||
1254 (!(options
& F_QUIET2
) &&
1255 (oip
->ip_dst
.s_addr
== whereto
.sin_addr
.s_addr
) &&
1256 (oip
->ip_p
== IPPROTO_ICMP
) &&
1257 (oicmp
->icmp_type
== ICMP_ECHO
) &&
1258 (oicmp
->icmp_id
== ident
))) {
1259 (void)printf("%d bytes from %s: ", cc
,
1260 pr_addr(from
->sin_addr
));
1266 /* Display any IP options */
1267 cp
= (u_char
*)buf
+ sizeof(struct ip
);
1269 for (; hlen
> (int)sizeof(struct ip
); --hlen
, ++cp
)
1276 (void)printf(*cp
== IPOPT_LSRR
?
1277 "\nLSRR: " : "\nSSRR: ");
1278 j
= cp
[IPOPT_OLEN
] - IPOPT_MINOFF
+ 1;
1281 if (j
>= INADDR_LEN
&&
1282 j
<= hlen
- (int)sizeof(struct ip
)) {
1284 bcopy(++cp
, &ina
.s_addr
, INADDR_LEN
);
1285 if (ina
.s_addr
== 0)
1286 (void)printf("\t0.0.0.0");
1288 (void)printf("\t%s",
1291 cp
+= INADDR_LEN
- 1;
1295 (void)putchar('\n');
1298 (void)printf("\t(truncated route)\n");
1301 j
= cp
[IPOPT_OLEN
]; /* get length */
1302 i
= cp
[IPOPT_OFFSET
]; /* and pointer */
1307 i
= i
- IPOPT_MINOFF
+ 1;
1308 if (i
< 0 || i
> (hlen
- (int)sizeof(struct ip
))) {
1313 && !bcmp((char *)cp
, old_rr
, i
)
1314 && !(options
& F_FLOOD
)) {
1315 (void)printf("\t(same route)");
1321 bcopy((char *)cp
, old_rr
, i
);
1322 (void)printf("\nRR: ");
1323 if (i
>= INADDR_LEN
&&
1324 i
<= hlen
- (int)sizeof(struct ip
)) {
1326 bcopy(++cp
, &ina
.s_addr
, INADDR_LEN
);
1327 if (ina
.s_addr
== 0)
1328 (void)printf("\t0.0.0.0");
1330 (void)printf("\t%s",
1333 cp
+= INADDR_LEN
- 1;
1337 (void)putchar('\n');
1340 (void)printf("\t(truncated route)");
1343 (void)printf("\nNOP");
1346 (void)printf("\nunknown option %x", *cp
);
1349 if (!(options
& F_FLOOD
)) {
1350 (void)putchar('\n');
1351 (void)fflush(stdout
);
1357 * Checksum routine for Internet Protocol family headers (C Version)
1377 * Our algorithm is simple, using a 32 bit accumulator (sum), we add
1378 * sequential 16 bit words to it, and at the end, fold back all the
1379 * carry bits from the top 16 bits into the lower 16 bits.
1386 /* mop up an odd byte, if necessary */
1388 last
.uc
[0] = *(u_char
*)w
;
1393 /* add back carry outs from top 16 bits to low 16 bits */
1394 sum
= (sum
>> 16) + (sum
& 0xffff); /* add hi 16 to low 16 */
1395 sum
+= (sum
>> 16); /* add carry */
1396 answer
= ~sum
; /* truncate to 16 bits */
1402 * Subtract 2 timeval structs: out = out - in. Out is assumed to
1407 struct timeval
*out
, *in
;
1410 if ((out
->tv_usec
-= in
->tv_usec
) < 0) {
1412 out
->tv_usec
+= 1000000;
1414 out
->tv_sec
-= in
->tv_sec
;
1419 * Print out statistics when SIGINFO is received.
1436 (void)fprintf(stderr
, "\r%ld/%ld packets received (%.1f%%)",
1437 nreceived
, ntransmitted
,
1438 ntransmitted
? nreceived
* 100.0 / ntransmitted
: 0.0);
1439 if (nreceived
&& timing
)
1440 (void)fprintf(stderr
, " %.3f min / %.3f avg / %.3f max",
1441 tmin
, tsum
/ (nreceived
+ nrepeats
), tmax
);
1442 (void)fprintf(stderr
, "\n");
1448 * Print out statistics, and give up.
1454 (void)signal(SIGINT
, SIG_IGN
);
1455 (void)signal(SIGALRM
, SIG_IGN
);
1456 (void)putchar('\n');
1457 (void)fflush(stdout
);
1458 (void)printf("--- %s ping statistics ---\n", hostname
);
1459 (void)printf("%ld packets transmitted, ", ntransmitted
);
1460 (void)printf("%ld packets received, ", nreceived
);
1462 (void)printf("+%ld duplicates, ", nrepeats
);
1464 if (nreceived
> ntransmitted
)
1465 (void)printf("-- somebody's printing up packets!");
1467 (void)printf("%.1f%% packet loss",
1468 ((ntransmitted
- nreceived
) * 100.0) /
1472 (void)printf(", %ld packets out of wait time", nrcvtimeout
);
1473 (void)putchar('\n');
1474 if (nreceived
&& timing
) {
1475 double n
= nreceived
+ nrepeats
;
1476 double avg
= tsum
/ n
;
1477 double vari
= tsumsq
/ n
- avg
* avg
;
1479 "round-trip min/avg/max/stddev = %.3f/%.3f/%.3f/%.3f ms\n",
1480 tmin
, avg
, tmax
, sqrt(vari
));
1490 static char *ttab
[] = {
1491 "Echo Reply", /* ip + seq + udata */
1492 "Dest Unreachable", /* net, host, proto, port, frag, sr + IP */
1493 "Source Quench", /* IP */
1494 "Redirect", /* redirect type, gateway, + IP */
1496 "Time Exceeded", /* transit, frag reassem + IP */
1497 "Parameter Problem", /* pointer + IP */
1498 "Timestamp", /* id + seq + three timestamps */
1499 "Timestamp Reply", /* " */
1500 "Info Request", /* id + sq */
1501 "Info Reply" /* " */
1507 * Print a descriptive string about an ICMP header.
1514 switch(icp
->icmp_type
) {
1515 case ICMP_ECHOREPLY
:
1516 (void)printf("Echo Reply\n");
1517 /* XXX ID + Seq + Data */
1520 switch(icp
->icmp_code
) {
1521 case ICMP_UNREACH_NET
:
1522 (void)printf("Destination Net Unreachable\n");
1524 case ICMP_UNREACH_HOST
:
1525 (void)printf("Destination Host Unreachable\n");
1527 case ICMP_UNREACH_PROTOCOL
:
1528 (void)printf("Destination Protocol Unreachable\n");
1530 case ICMP_UNREACH_PORT
:
1531 (void)printf("Destination Port Unreachable\n");
1533 case ICMP_UNREACH_NEEDFRAG
:
1534 (void)printf("frag needed and DF set (MTU %d)\n",
1535 ntohs(icp
->icmp_nextmtu
));
1537 case ICMP_UNREACH_SRCFAIL
:
1538 (void)printf("Source Route Failed\n");
1540 case ICMP_UNREACH_FILTER_PROHIB
:
1541 (void)printf("Communication prohibited by filter\n");
1544 (void)printf("Dest Unreachable, Bad Code: %d\n",
1548 /* Print returned IP header information */
1550 pr_retip(&icp
->icmp_ip
);
1552 pr_retip((struct ip
*)icp
->icmp_data
);
1555 case ICMP_SOURCEQUENCH
:
1556 (void)printf("Source Quench\n");
1558 pr_retip(&icp
->icmp_ip
);
1560 pr_retip((struct ip
*)icp
->icmp_data
);
1564 switch(icp
->icmp_code
) {
1565 case ICMP_REDIRECT_NET
:
1566 (void)printf("Redirect Network");
1568 case ICMP_REDIRECT_HOST
:
1569 (void)printf("Redirect Host");
1571 case ICMP_REDIRECT_TOSNET
:
1572 (void)printf("Redirect Type of Service and Network");
1574 case ICMP_REDIRECT_TOSHOST
:
1575 (void)printf("Redirect Type of Service and Host");
1578 (void)printf("Redirect, Bad Code: %d", icp
->icmp_code
);
1581 (void)printf("(New addr: %s)\n", inet_ntoa(icp
->icmp_gwaddr
));
1583 pr_retip(&icp
->icmp_ip
);
1585 pr_retip((struct ip
*)icp
->icmp_data
);
1589 (void)printf("Echo Request\n");
1590 /* XXX ID + Seq + Data */
1593 switch(icp
->icmp_code
) {
1594 case ICMP_TIMXCEED_INTRANS
:
1595 (void)printf("Time to live exceeded\n");
1597 case ICMP_TIMXCEED_REASS
:
1598 (void)printf("Frag reassembly time exceeded\n");
1601 (void)printf("Time exceeded, Bad Code: %d\n",
1606 pr_retip(&icp
->icmp_ip
);
1608 pr_retip((struct ip
*)icp
->icmp_data
);
1611 case ICMP_PARAMPROB
:
1612 (void)printf("Parameter problem: pointer = 0x%02x\n",
1613 icp
->icmp_hun
.ih_pptr
);
1615 pr_retip(&icp
->icmp_ip
);
1617 pr_retip((struct ip
*)icp
->icmp_data
);
1621 (void)printf("Timestamp\n");
1622 /* XXX ID + Seq + 3 timestamps */
1624 case ICMP_TSTAMPREPLY
:
1625 (void)printf("Timestamp Reply\n");
1626 /* XXX ID + Seq + 3 timestamps */
1629 (void)printf("Information Request\n");
1632 case ICMP_IREQREPLY
:
1633 (void)printf("Information Reply\n");
1637 (void)printf("Address Mask Request\n");
1639 case ICMP_MASKREPLY
:
1640 (void)printf("Address Mask Reply\n");
1642 case ICMP_ROUTERADVERT
:
1643 (void)printf("Router Advertisement\n");
1645 case ICMP_ROUTERSOLICIT
:
1646 (void)printf("Router Solicitation\n");
1649 (void)printf("Bad ICMP type: %d\n", icp
->icmp_type
);
1655 * Print an IP header with options.
1664 hlen
= ip
->ip_hl
<< 2;
1665 cp
= (u_char
*)ip
+ 20; /* point to options */
1667 (void)printf("Vr HL TOS Len ID Flg off TTL Pro cks Src Dst\n");
1668 (void)printf(" %1x %1x %02x %04x %04x",
1669 ip
->ip_v
, ip
->ip_hl
, ip
->ip_tos
, ntohs(ip
->ip_len
),
1671 (void)printf(" %1lx %04lx",
1672 (u_long
) (ntohl(ip
->ip_off
) & 0xe000) >> 13,
1673 (u_long
) ntohl(ip
->ip_off
) & 0x1fff);
1674 (void)printf(" %02x %02x %04x", ip
->ip_ttl
, ip
->ip_p
,
1676 (void)printf(" %s ", inet_ntoa(*(struct in_addr
*)&ip
->ip_src
.s_addr
));
1677 (void)printf(" %s ", inet_ntoa(*(struct in_addr
*)&ip
->ip_dst
.s_addr
));
1678 /* dump any option bytes */
1679 while (hlen
-- > 20) {
1680 (void)printf("%02x", *cp
++);
1682 (void)putchar('\n');
1687 * Return an ascii host address as a dotted quad and optionally with
1695 static char buf
[16 + 3 + MAXHOSTNAMELEN
];
1697 if ((options
& F_NUMERIC
) ||
1698 !(hp
= gethostbyaddr((char *)&ina
, 4, AF_INET
)))
1699 return inet_ntoa(ina
);
1701 (void)snprintf(buf
, sizeof(buf
), "%s (%s)", hp
->h_name
,
1708 * Dump some info on a returned (via ICMP) IP packet.
1718 hlen
= ip
->ip_hl
<< 2;
1719 cp
= (u_char
*)ip
+ hlen
;
1722 (void)printf("TCP: from port %u, to port %u (decimal)\n",
1723 (*cp
* 256 + *(cp
+ 1)), (*(cp
+ 2) * 256 + *(cp
+ 3)));
1724 else if (ip
->ip_p
== 17)
1725 (void)printf("UDP: from port %u, to port %u (decimal)\n",
1726 (*cp
* 256 + *(cp
+ 1)), (*(cp
+ 2) * 256 + *(cp
+ 3)));
1730 pr_ntime (n_time timestamp
)
1732 static char buf
[10];
1735 sec
= ntohl(timestamp
) / 1000;
1736 hour
= sec
/ 60 / 60;
1737 min
= (sec
% (60 * 60)) / 60;
1738 sec
= (sec
% (60 * 60)) % 60;
1740 (void)snprintf(buf
, sizeof(buf
), "%02d:%02d:%02d", hour
, min
, sec
);
1753 for (cp
= patp
; *cp
; cp
++) {
1756 "patterns must be specified as hex digits");
1760 "%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x",
1761 &pat
[0], &pat
[1], &pat
[2], &pat
[3], &pat
[4], &pat
[5], &pat
[6],
1762 &pat
[7], &pat
[8], &pat
[9], &pat
[10], &pat
[11], &pat
[12],
1763 &pat
[13], &pat
[14], &pat
[15]);
1766 for (kk
= 0; kk
<= maxpayload
- (TIMEVAL_LEN
+ ii
); kk
+= ii
)
1767 for (jj
= 0; jj
< ii
; ++jj
)
1768 bp
[jj
+ kk
] = pat
[jj
];
1769 if (!(options
& F_QUIET
)) {
1770 (void)printf("PATTERN: 0x");
1771 for (jj
= 0; jj
< ii
; ++jj
)
1772 (void)printf("%02x", bp
[jj
] & 0xFF);
1777 #if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
1778 #define SECOPT " [-P policy]"
1786 (void)fprintf(stderr
, "%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n",
1787 "usage: ping [-AaDdfnoQqRrv] [-b boundif] [-c count] [-G sweepmaxsize] [-g sweepminsize]",
1788 " [-h sweepincrsize] [-i wait] [-l preload] [-M mask | time] [-m ttl]",
1789 " " SECOPT
" [-p pattern] [-S src_addr] [-s packetsize] [-t timeout]",
1790 " [-W waittime] [-z tos] host",
1791 " ping [-AaDdfLnoQqRrv] [-c count] [-I iface] [-i wait] [-l preload]",
1792 " [-M mask | time] [-m ttl]" SECOPT
" [-p pattern] [-S src_addr]",
1793 " [-s packetsize] [-T ttl] [-t timeout] [-W waittime]",
1794 " [-z tos] mcast-group");