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
32 * @(#) Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved.
33 * @(#)ping.c 8.1 (Berkeley) 6/5/93
34 * $FreeBSD: src/sbin/ping/ping.c,v 1.111 2007/05/21 14:38:45 cognet Exp $
35 * $DragonFly: src/sbin/ping/ping.c,v 1.7 2007/05/29 10:21:41 hasso Exp $
41 * Using the Internet Control Message Protocol (ICMP) "ECHO" facility,
42 * measure round-trip-delays and packet loss across network paths.
46 * U. S. Army Ballistic Research Laboratory
50 * Public Domain. Distribution Unlimited.
52 * More statistics could always be gathered.
53 * This program has to run SUID to ROOT to access the ICMP socket.
56 #include <sys/param.h> /* NB: we rely on this for <sys/types.h> */
57 #include <sys/socket.h>
58 #include <sys/sysctl.h>
62 #include <netinet/in.h>
63 #include <netinet/in_systm.h>
64 #include <netinet/ip.h>
65 #include <netinet/ip_icmp.h>
66 #include <netinet/ip_var.h>
67 #include <arpa/inet.h>
70 #include <netinet6/ipsec.h>
85 #define INADDR_LEN ((int)sizeof(in_addr_t))
86 #define TIMEVAL_LEN ((int)sizeof(struct tv32))
87 #define MASK_LEN (ICMP_MASKLEN - ICMP_MINLEN)
88 #define TS_LEN (ICMP_TSLEN - ICMP_MINLEN)
89 #define DEFDATALEN 56 /* default data length */
90 #define FLOOD_BACKOFF 20000 /* usecs to back off if F_FLOOD mode */
91 /* runs out of buffer space */
92 #define MAXIPLEN (sizeof(struct ip) + MAX_IPOPTLEN)
93 #define MAXICMPLEN (ICMP_ADVLENMIN + MAX_IPOPTLEN)
94 #define MAXWAIT 10000 /* max ms to wait for response */
95 #define MAXALARM (60 * 60) /* max seconds for alarm timeout */
98 #define A(bit) rcvd_tbl[(bit)>>3] /* identify byte in array */
99 #define B(bit) (1 << ((bit) & 0x07)) /* identify bit in byte */
100 #define SET(bit) (A(bit) |= B(bit))
101 #define CLR(bit) (A(bit) &= (~B(bit)))
102 #define TST(bit) (A(bit) & B(bit))
109 /* various options */
111 #define F_FLOOD 0x0001
112 #define F_INTERVAL 0x0002
113 #define F_NUMERIC 0x0004
114 #define F_PINGFILLED 0x0008
115 #define F_QUIET 0x0010
116 #define F_RROUTE 0x0020
117 #define F_SO_DEBUG 0x0040
118 #define F_SO_DONTROUTE 0x0080
119 #define F_VERBOSE 0x0100
120 #define F_QUIET2 0x0200
121 #define F_NOLOOP 0x0400
122 #define F_MTTL 0x0800
124 #define F_AUDIBLE 0x2000
126 #ifdef IPSEC_POLICY_IPSEC
127 #define F_POLICY 0x4000
128 #endif /*IPSEC_POLICY_IPSEC*/
131 #define F_MISSED 0x10000
132 #define F_ONCE 0x20000
133 #define F_HDRINCL 0x40000
134 #define F_MASK 0x80000
135 #define F_TIME 0x100000
136 #define F_SWEEP 0x200000
137 #define F_WAITTIME 0x400000
140 * MAX_DUP_CHK is the number of bits in received table, i.e. the maximum
141 * number of received sequence numbers we can keep track of. Change 128
142 * to 8192 for complete accuracy...
144 #define MAX_DUP_CHK (8 * 128)
145 int mx_dup_ck
= MAX_DUP_CHK
;
146 char rcvd_tbl
[MAX_DUP_CHK
/ 8];
148 struct sockaddr_in whereto
; /* who to ping */
149 int datalen
= DEFDATALEN
;
151 int s
; /* socket file descriptor */
152 u_char outpackhdr
[IP_MAXPACKET
], *outpack
;
153 char BBELL
= '\a'; /* characters written for MISSED and AUDIBLE */
154 char BSPACE
= '\b'; /* characters written for flood */
158 int ident
; /* process id to identify our packets */
159 int uid
; /* cached uid for micro-optimization */
160 u_char icmp_type
= ICMP_ECHO
;
161 u_char icmp_type_rsp
= ICMP_ECHOREPLY
;
166 long nmissedmax
; /* max value of ntransmitted - nreceived - 1 */
167 long npackets
; /* max packets to transmit */
168 long nreceived
; /* # of packets we got back */
169 long nrepeats
; /* number of duplicates */
170 long ntransmitted
; /* sequence # for outbound packets = #sent */
171 long snpackets
; /* max packets to transmit in one sweep */
172 long snreceived
; /* # of packets we got back in this sweep */
173 long sntransmitted
; /* # of packets we sent in this sweep */
174 int sweepmax
; /* max value of payload in sweep */
175 int sweepmin
= 0; /* start value of payload in sweep */
176 int sweepincr
= 1; /* payload increment in sweep */
177 int interval
= 1000; /* interval between packets, ms */
178 int waittime
= MAXWAIT
; /* timeout for each packet */
179 long nrcvtimeout
= 0; /* # of packets we got back after waittime */
182 int timing
; /* flag to do timing */
183 double tmin
= 999999999.0; /* minimum round trip time */
184 double tmax
= 0.0; /* maximum round trip time */
185 double tsum
= 0.0; /* sum of all times, for doing average */
186 double tsumsq
= 0.0; /* sum of all times squared, for std. dev. */
188 volatile sig_atomic_t finish_up
; /* nonzero if we've been told to finish up */
189 volatile sig_atomic_t siginfo_p
;
191 static void fill(char *, char *);
192 static u_short
in_cksum(u_short
*, int);
193 static void check_status(void);
194 static void finish(void) __dead2
;
195 static void pinger(void);
196 static char *pr_addr(struct in_addr
);
197 static char *pr_ntime(n_time
);
198 static void pr_icmph(struct icmp
*);
199 static void pr_iph(struct ip
*);
200 static void pr_pack(char *, int, struct sockaddr_in
*, struct timeval
*);
201 static void pr_retip(struct ip
*);
202 static void status(int);
203 static void stopit(int);
204 static void tvsub(struct timeval
*, struct timeval
*);
205 static void usage(void) __dead2
;
208 main(int argc
, char **argv
)
210 struct sockaddr_in from
, sock_in
;
211 struct in_addr ifaddr
;
212 struct timeval last
, intvl
;
216 struct sigaction si_sa
;
218 u_char
*datap
, packet
[IP_MAXPACKET
] __aligned(4);
219 char *ep
, *source
, *target
, *payload
;
221 #ifdef IPSEC_POLICY_IPSEC
222 char *policy_in
, *policy_out
;
224 struct sockaddr_in
*to
;
226 u_long alarmtimeout
, ultmp
;
227 int almost_done
, ch
, df
, hold
, i
, icmp_len
, mib
[4], preload
, sockerrno
,
229 char ctrl
[CMSG_SPACE(sizeof(struct timeval
))];
230 char hnamebuf
[MAXHOSTNAMELEN
], snamebuf
[MAXHOSTNAMELEN
];
232 char rspace
[MAX_IPOPTLEN
]; /* record route space */
234 unsigned char loop
, mttl
;
236 payload
= source
= NULL
;
237 #ifdef IPSEC_POLICY_IPSEC
238 policy_in
= policy_out
= NULL
;
242 * Do the stuff that we need root priv's for *first*, and
243 * then drop our setuid bit. Save error reporting for
246 s
= socket(AF_INET
, SOCK_RAW
, IPPROTO_ICMP
);
252 alarmtimeout
= df
= preload
= tos
= 0;
254 outpack
= outpackhdr
+ sizeof(struct ip
);
255 while ((ch
= getopt(argc
, argv
,
256 "Aac:DdfG:g:h:I:i:Ll:M:m:nop:QqRrS:s:T:t:vW:z:"
258 #ifdef IPSEC_POLICY_IPSEC
260 #endif /*IPSEC_POLICY_IPSEC*/
269 options
|= F_AUDIBLE
;
272 ultmp
= strtoul(optarg
, &ep
, 0);
273 if (*ep
|| ep
== optarg
|| ultmp
> LONG_MAX
|| !ultmp
)
275 "invalid count of packets to transmit: `%s'",
280 options
|= F_HDRINCL
;
284 options
|= F_SO_DEBUG
;
289 err(EX_NOPERM
, "-f flag");
292 setbuf(stdout
, (char *)NULL
);
294 case 'G': /* Maximum packet size for ping sweep */
295 ultmp
= strtoul(optarg
, &ep
, 0);
296 if (*ep
|| ep
== optarg
)
297 errx(EX_USAGE
, "invalid packet size: `%s'",
299 if (uid
!= 0 && ultmp
> DEFDATALEN
) {
302 "packet size too large: %lu > %u",
308 case 'g': /* Minimum packet size for ping sweep */
309 ultmp
= strtoul(optarg
, &ep
, 0);
310 if (*ep
|| ep
== optarg
)
311 errx(EX_USAGE
, "invalid packet size: `%s'",
313 if (uid
!= 0 && ultmp
> DEFDATALEN
) {
316 "packet size too large: %lu > %u",
322 case 'h': /* Packet size increment for ping sweep */
323 ultmp
= strtoul(optarg
, &ep
, 0);
324 if (*ep
|| ep
== optarg
|| ultmp
< 1)
325 errx(EX_USAGE
, "invalid increment size: `%s'",
327 if (uid
!= 0 && ultmp
> DEFDATALEN
) {
330 "packet size too large: %lu > %u",
336 case 'I': /* multicast interface */
337 if (inet_aton(optarg
, &ifaddr
) == 0)
339 "invalid multicast interface: `%s'",
343 case 'i': /* wait between sending packets */
344 t
= strtod(optarg
, &ep
) * 1000.0;
345 if (*ep
|| ep
== optarg
|| t
> (double)INT_MAX
)
346 errx(EX_USAGE
, "invalid timing interval: `%s'",
348 options
|= F_INTERVAL
;
350 if (uid
&& interval
< 1000) {
352 err(EX_NOPERM
, "-i interval too short");
360 ultmp
= strtoul(optarg
, &ep
, 0);
361 if (*ep
|| ep
== optarg
|| ultmp
> INT_MAX
)
363 "invalid preload value: `%s'", optarg
);
366 err(EX_NOPERM
, "-l flag");
381 errx(EX_USAGE
, "invalid message: `%c'", optarg
[0]);
386 ultmp
= strtoul(optarg
, &ep
, 0);
387 if (*ep
|| ep
== optarg
|| ultmp
> MAXTTL
)
388 errx(EX_USAGE
, "invalid TTL: `%s'", optarg
);
393 options
|= F_NUMERIC
;
399 #ifdef IPSEC_POLICY_IPSEC
402 if (!strncmp("in", optarg
, 2))
403 policy_in
= strdup(optarg
);
404 else if (!strncmp("out", optarg
, 3))
405 policy_out
= strdup(optarg
);
407 errx(1, "invalid security policy");
409 #endif /*IPSEC_POLICY_IPSEC*/
411 case 'p': /* fill buffer with user pattern */
412 options
|= F_PINGFILLED
;
425 options
|= F_SO_DONTROUTE
;
430 case 's': /* size of packet to send */
431 ultmp
= strtoul(optarg
, &ep
, 0);
432 if (*ep
|| ep
== optarg
)
433 errx(EX_USAGE
, "invalid packet size: `%s'",
435 if (uid
!= 0 && ultmp
> DEFDATALEN
) {
438 "packet size too large: %lu > %u",
443 case 'T': /* multicast TTL */
444 ultmp
= strtoul(optarg
, &ep
, 0);
445 if (*ep
|| ep
== optarg
|| ultmp
> MAXTTL
)
446 errx(EX_USAGE
, "invalid multicast TTL: `%s'",
452 alarmtimeout
= strtoul(optarg
, &ep
, 0);
453 if ((alarmtimeout
< 1) || (alarmtimeout
== ULONG_MAX
))
454 errx(EX_USAGE
, "invalid timeout: `%s'",
456 if (alarmtimeout
> MAXALARM
)
457 errx(EX_USAGE
, "invalid timeout: `%s' > %d",
459 alarm((int)alarmtimeout
);
462 options
|= F_VERBOSE
;
464 case 'W': /* wait ms for answer */
465 t
= strtod(optarg
, &ep
);
466 if (*ep
|| ep
== optarg
|| t
> (double)INT_MAX
)
467 errx(EX_USAGE
, "invalid timing interval: `%s'",
469 options
|= F_WAITTIME
;
473 options
|= F_HDRINCL
;
474 ultmp
= strtoul(optarg
, &ep
, 0);
475 if (*ep
|| ep
== optarg
|| ultmp
> MAXTOS
)
476 errx(EX_USAGE
, "invalid TOS: `%s'", optarg
);
484 if (argc
- optind
!= 1)
486 target
= argv
[optind
];
488 switch (options
& (F_MASK
|F_TIME
)) {
491 icmp_type
= ICMP_MASKREQ
;
492 icmp_type_rsp
= ICMP_MASKREPLY
;
494 if (!(options
& F_QUIET
))
495 printf("ICMP_MASKREQ\n");
498 icmp_type
= ICMP_TSTAMP
;
499 icmp_type_rsp
= ICMP_TSTAMPREPLY
;
501 if (!(options
& F_QUIET
))
502 printf("ICMP_TSTAMP\n");
505 errx(EX_USAGE
, "ICMP_TSTAMP and ICMP_MASKREQ are exclusive.");
508 icmp_len
= sizeof(struct ip
) + ICMP_MINLEN
+ phdr_len
;
509 if (options
& F_RROUTE
)
510 icmp_len
+= MAX_IPOPTLEN
;
511 maxpayload
= IP_MAXPACKET
- icmp_len
;
512 if (datalen
> maxpayload
)
513 errx(EX_USAGE
, "packet size too large: %d > %d", datalen
,
515 send_len
= icmp_len
+ datalen
;
516 datap
= &outpack
[ICMP_MINLEN
+ phdr_len
+ TIMEVAL_LEN
];
517 if (options
& F_PINGFILLED
) {
518 fill((char *)datap
, payload
);
521 bzero((char *)&sock_in
, sizeof(sock_in
));
522 sock_in
.sin_family
= AF_INET
;
523 if (inet_aton(source
, &sock_in
.sin_addr
) != 0) {
526 hp
= gethostbyname2(source
, AF_INET
);
528 errx(EX_NOHOST
, "cannot resolve %s: %s",
529 source
, hstrerror(h_errno
));
531 sock_in
.sin_len
= sizeof sock_in
;
532 if ((unsigned)hp
->h_length
> sizeof(sock_in
.sin_addr
) ||
534 errx(1, "gethostbyname2: illegal address");
535 memcpy(&sock_in
.sin_addr
, hp
->h_addr_list
[0],
536 sizeof(sock_in
.sin_addr
));
537 strncpy(snamebuf
, hp
->h_name
,
538 sizeof(snamebuf
) - 1);
539 snamebuf
[sizeof(snamebuf
) - 1] = '\0';
540 shostname
= snamebuf
;
542 if (bind(s
, (struct sockaddr
*)&sock_in
, sizeof sock_in
) == -1)
546 bzero(&whereto
, sizeof(whereto
));
548 to
->sin_family
= AF_INET
;
549 to
->sin_len
= sizeof *to
;
550 if (inet_aton(target
, &to
->sin_addr
) != 0) {
553 hp
= gethostbyname2(target
, AF_INET
);
555 errx(EX_NOHOST
, "cannot resolve %s: %s",
556 target
, hstrerror(h_errno
));
558 if ((unsigned)hp
->h_length
> sizeof(to
->sin_addr
))
559 errx(1, "gethostbyname2 returned an illegal address");
560 memcpy(&to
->sin_addr
, hp
->h_addr_list
[0], sizeof to
->sin_addr
);
561 strncpy(hnamebuf
, hp
->h_name
, sizeof(hnamebuf
) - 1);
562 hnamebuf
[sizeof(hnamebuf
) - 1] = '\0';
566 if (options
& F_FLOOD
&& options
& F_INTERVAL
)
567 errx(EX_USAGE
, "-f and -i: incompatible options");
569 if (options
& F_FLOOD
&& IN_MULTICAST(ntohl(to
->sin_addr
.s_addr
)))
571 "-f flag cannot be used with multicast destination");
572 if (options
& (F_MIF
| F_NOLOOP
| F_MTTL
)
573 && !IN_MULTICAST(ntohl(to
->sin_addr
.s_addr
)))
575 "-I, -L, -T flags cannot be used with unicast destination");
577 if (datalen
>= TIMEVAL_LEN
) /* can we time transfer */
580 if (!(options
& F_PINGFILLED
))
581 for (i
= TIMEVAL_LEN
; i
< datalen
; ++i
)
584 ident
= getpid() & 0xFFFF;
588 err(EX_OSERR
, "socket");
591 if (options
& F_SO_DEBUG
)
592 setsockopt(s
, SOL_SOCKET
, SO_DEBUG
, (char *)&hold
,
594 if (options
& F_SO_DONTROUTE
)
595 setsockopt(s
, SOL_SOCKET
, SO_DONTROUTE
, (char *)&hold
,
598 #ifdef IPSEC_POLICY_IPSEC
599 if (options
& F_POLICY
) {
601 if (policy_in
!= NULL
) {
602 buf
= ipsec_set_policy(policy_in
, strlen(policy_in
));
604 errx(EX_CONFIG
, "%s", ipsec_strerror());
605 if (setsockopt(s
, IPPROTO_IP
, IP_IPSEC_POLICY
,
606 buf
, ipsec_get_policylen(buf
)) < 0)
608 "ipsec policy cannot be configured");
612 if (policy_out
!= NULL
) {
613 buf
= ipsec_set_policy(policy_out
, strlen(policy_out
));
615 errx(EX_CONFIG
, "%s", ipsec_strerror());
616 if (setsockopt(s
, IPPROTO_IP
, IP_IPSEC_POLICY
,
617 buf
, ipsec_get_policylen(buf
)) < 0)
619 "ipsec policy cannot be configured");
623 #endif /*IPSEC_POLICY_IPSEC*/
626 if (options
& F_HDRINCL
) {
627 ip
= (struct ip
*)outpackhdr
;
628 if (!(options
& (F_TTL
| F_MTTL
))) {
632 mib
[3] = IPCTL_DEFTTL
;
634 if (sysctl(mib
, 4, &ttl
, &sz
, NULL
, 0) == -1)
635 err(1, "sysctl(net.inet.ip.ttl)");
637 setsockopt(s
, IPPROTO_IP
, IP_HDRINCL
, &hold
, sizeof(hold
));
638 ip
->ip_v
= IPVERSION
;
639 ip
->ip_hl
= sizeof(struct ip
) >> 2;
642 ip
->ip_off
= df
? IP_DF
: 0;
644 ip
->ip_p
= IPPROTO_ICMP
;
645 ip
->ip_src
.s_addr
= source
? sock_in
.sin_addr
.s_addr
: INADDR_ANY
;
646 ip
->ip_dst
= to
->sin_addr
;
648 /* record route option */
649 if (options
& F_RROUTE
) {
651 bzero(rspace
, sizeof(rspace
));
652 rspace
[IPOPT_OPTVAL
] = IPOPT_RR
;
653 rspace
[IPOPT_OLEN
] = sizeof(rspace
) - 1;
654 rspace
[IPOPT_OFFSET
] = IPOPT_MINOFF
;
655 rspace
[sizeof(rspace
) - 1] = IPOPT_EOL
;
656 if (setsockopt(s
, IPPROTO_IP
, IP_OPTIONS
, rspace
,
658 err(EX_OSERR
, "setsockopt IP_OPTIONS");
661 "record route not available in this implementation");
662 #endif /* IP_OPTIONS */
665 if (options
& F_TTL
) {
666 if (setsockopt(s
, IPPROTO_IP
, IP_TTL
, &ttl
,
668 err(EX_OSERR
, "setsockopt IP_TTL");
671 if (options
& F_NOLOOP
) {
672 if (setsockopt(s
, IPPROTO_IP
, IP_MULTICAST_LOOP
, &loop
,
674 err(EX_OSERR
, "setsockopt IP_MULTICAST_LOOP");
677 if (options
& F_MTTL
) {
678 if (setsockopt(s
, IPPROTO_IP
, IP_MULTICAST_TTL
, &mttl
,
680 err(EX_OSERR
, "setsockopt IP_MULTICAST_TTL");
683 if (options
& F_MIF
) {
684 if (setsockopt(s
, IPPROTO_IP
, IP_MULTICAST_IF
, &ifaddr
,
685 sizeof(ifaddr
)) < 0) {
686 err(EX_OSERR
, "setsockopt IP_MULTICAST_IF");
691 if (setsockopt(s
, SOL_SOCKET
, SO_TIMESTAMP
, &on
, sizeof(on
)) < 0)
692 err(EX_OSERR
, "setsockopt SO_TIMESTAMP");
696 if (sweepmin
>= sweepmax
)
697 errx(EX_USAGE
, "Maximum packet size must be greater than the minimum packet size");
699 if (datalen
!= DEFDATALEN
)
700 errx(EX_USAGE
, "Packet size and ping sweep are mutually exclusive");
703 snpackets
= npackets
;
708 send_len
= icmp_len
+ sweepmin
;
710 if (options
& F_SWEEP
&& !sweepmax
)
711 errx(EX_USAGE
, "Maximum sweep size must be specified");
714 * When pinging the broadcast address, you can get a lot of answers.
715 * Doing something so evil is useful if you are trying to stress the
716 * ethernet, or just want to fill the arp cache to get some stuff for
717 * /etc/ethers. But beware: RFC 1122 allows hosts to ignore broadcast
718 * or multicast pings if they wish.
722 * XXX receive buffer needs undetermined space for mbuf overhead
725 hold
= IP_MAXPACKET
+ 128;
726 setsockopt(s
, SOL_SOCKET
, SO_RCVBUF
, (char *)&hold
,
729 setsockopt(s
, SOL_SOCKET
, SO_SNDBUF
, (char *)&hold
,
732 if (to
->sin_family
== AF_INET
) {
733 printf("PING %s (%s)", hostname
,
734 inet_ntoa(to
->sin_addr
));
736 printf(" from %s", shostname
);
738 printf(": (%d ... %d) data bytes\n",
741 printf(": %d data bytes\n", datalen
);
745 printf("PING %s: (%d ... %d) data bytes\n",
746 hostname
, sweepmin
, sweepmax
);
748 printf("PING %s: %d data bytes\n", hostname
, datalen
);
752 * Use sigaction() instead of signal() to get unambiguous semantics,
753 * in particular with SA_RESTART not set.
756 sigemptyset(&si_sa
.sa_mask
);
759 si_sa
.sa_handler
= stopit
;
760 if (sigaction(SIGINT
, &si_sa
, 0) == -1) {
761 err(EX_OSERR
, "sigaction SIGINT");
764 si_sa
.sa_handler
= status
;
765 if (sigaction(SIGINFO
, &si_sa
, 0) == -1) {
766 err(EX_OSERR
, "sigaction");
769 if (alarmtimeout
> 0) {
770 si_sa
.sa_handler
= stopit
;
771 if (sigaction(SIGALRM
, &si_sa
, 0) == -1)
772 err(EX_OSERR
, "sigaction SIGALRM");
775 bzero(&msg
, sizeof(msg
));
776 msg
.msg_name
= &from
;
780 msg
.msg_control
= ctrl
;
782 iov
.iov_base
= (char *)packet
;
783 iov
.iov_len
= IP_MAXPACKET
;
786 pinger(); /* send the first ping */
788 if (npackets
!= 0 && preload
> npackets
)
790 while (preload
--) /* fire off them quickies */
793 gettimeofday(&last
, NULL
);
795 if (options
& F_FLOOD
) {
797 intvl
.tv_usec
= 10000;
799 intvl
.tv_sec
= interval
/ 1000;
800 intvl
.tv_usec
= interval
% 1000 * 1000;
805 struct timeval now
, timeout
;
810 if ((unsigned)s
>= FD_SETSIZE
)
811 errx(EX_OSERR
, "descriptor too large");
814 gettimeofday(&now
, NULL
);
815 timeout
.tv_sec
= last
.tv_sec
+ intvl
.tv_sec
- now
.tv_sec
;
816 timeout
.tv_usec
= last
.tv_usec
+ intvl
.tv_usec
- now
.tv_usec
;
817 while (timeout
.tv_usec
< 0) {
818 timeout
.tv_usec
+= 1000000;
821 while (timeout
.tv_usec
>= 1000000) {
822 timeout
.tv_usec
-= 1000000;
825 if (timeout
.tv_sec
< 0)
826 timeout
.tv_sec
= timeout
.tv_usec
= 0;
827 n
= select(s
+ 1, &rfds
, NULL
, NULL
, &timeout
);
829 continue; /* Must be EINTR. */
831 struct timeval
*tv
= NULL
;
833 struct cmsghdr
*cmsg
= (struct cmsghdr
*)&ctrl
;
835 msg
.msg_controllen
= sizeof(ctrl
);
837 msg
.msg_namelen
= sizeof(from
);
838 if ((cc
= recvmsg(s
, &msg
, 0)) < 0) {
845 if (cmsg
->cmsg_level
== SOL_SOCKET
&&
846 cmsg
->cmsg_type
== SCM_TIMESTAMP
&&
847 cmsg
->cmsg_len
== CMSG_LEN(sizeof *tv
)) {
848 /* Copy to avoid alignment problems: */
849 memcpy(&now
, CMSG_DATA(cmsg
), sizeof(now
));
854 gettimeofday(&now
, NULL
);
857 pr_pack((char *)packet
, cc
, &from
, tv
);
858 if ((options
& F_ONCE
&& nreceived
) ||
859 (npackets
&& nreceived
>= npackets
))
862 if (n
== 0 || options
& F_FLOOD
) {
863 if (sweepmax
&& sntransmitted
== snpackets
) {
864 for (i
= 0; i
< sweepincr
; ++i
)
866 datalen
+= sweepincr
;
867 if (datalen
> sweepmax
)
869 send_len
= icmp_len
+ datalen
;
872 if (!npackets
|| ntransmitted
< npackets
)
880 intvl
.tv_sec
= 2 * tmax
/ 1000;
884 intvl
.tv_sec
= waittime
/ 1000;
885 intvl
.tv_usec
= waittime
% 1000 * 1000;
888 gettimeofday(&last
, NULL
);
889 if (ntransmitted
- nreceived
- 1 > nmissedmax
) {
890 nmissedmax
= ntransmitted
- nreceived
- 1;
891 if (options
& F_MISSED
)
892 write(STDOUT_FILENO
, &BBELL
, 1);
898 exit(0); /* Make the compiler happy */
903 * Set the global bit that causes the main loop to quit.
904 * Do NOT call finish() from here, since finish() does far too much
905 * to be called from a signal handler.
908 stopit(int sig __unused
)
912 * When doing reverse DNS lookups, the finish_up flag might not
913 * be noticed for a while. Just exit if we get a second SIGINT.
915 if (!(options
& F_NUMERIC
) && finish_up
)
916 _exit(nreceived
? 0 : 2);
922 * Compose and transmit an ICMP ECHO REQUEST packet. The IP packet
923 * will be added on by the kernel. The ID field is our UNIX process ID,
924 * and the sequence number is an ascending integer. The first TIMEVAL_LEN
925 * bytes of the data portion are used to hold a UNIX "timeval" struct in
926 * host byte-order, to compute the round-trip time.
939 icp
= (struct icmp
*)outpack
;
940 icp
->icmp_type
= icmp_type
;
943 icp
->icmp_seq
= htons(ntransmitted
);
944 icp
->icmp_id
= ident
; /* ID */
946 CLR(ntransmitted
% mx_dup_ck
);
948 if ((options
& F_TIME
) || timing
) {
949 gettimeofday(&now
, NULL
);
951 tv32
.tv32_sec
= htonl(now
.tv_sec
);
952 tv32
.tv32_usec
= htonl(now
.tv_usec
);
953 if (options
& F_TIME
)
954 icp
->icmp_otime
= htonl((now
.tv_sec
% (24*60*60))
955 * 1000 + now
.tv_usec
/ 1000);
958 (void *)&outpack
[ICMP_MINLEN
+ phdr_len
],
962 cc
= ICMP_MINLEN
+ phdr_len
+ datalen
;
964 /* compute ICMP checksum here */
965 icp
->icmp_cksum
= in_cksum((u_short
*)icp
, cc
);
967 if (options
& F_HDRINCL
) {
968 cc
+= sizeof(struct ip
);
969 ip
= (struct ip
*)outpackhdr
;
971 ip
->ip_sum
= in_cksum((u_short
*)outpackhdr
, cc
);
974 i
= sendto(s
, (char *)packet
, cc
, 0, (struct sockaddr
*)&whereto
,
977 if (i
< 0 || i
!= cc
) {
979 if (options
& F_FLOOD
&& errno
== ENOBUFS
) {
980 usleep(FLOOD_BACKOFF
);
985 warn("%s: partial write: %d of %d bytes",
991 if (!(options
& F_QUIET
) && options
& F_FLOOD
)
992 write(STDOUT_FILENO
, &DOT
, 1);
997 * Print out the packet, if it came from us. This logic is necessary
998 * because ALL readers of the ICMP socket get a copy of ALL ICMP packets
999 * which arrive ('tis only fair). This permits multiple copies of this
1000 * program to be run without having intermingled output (or statistics!).
1003 pr_pack(buf
, cc
, from
, tv
)
1006 struct sockaddr_in
*from
;
1015 int dupflag
, hlen
, i
, j
, recv_len
, seq
;
1016 static int old_rrlen
;
1017 static char old_rr
[MAX_IPOPTLEN
];
1019 /* Check the IP header */
1020 ip
= (struct ip
*)buf
;
1021 hlen
= ip
->ip_hl
<< 2;
1023 if (cc
< hlen
+ ICMP_MINLEN
) {
1024 if (options
& F_VERBOSE
)
1025 warn("packet too short (%d bytes) from %s", cc
,
1026 inet_ntoa(from
->sin_addr
));
1030 /* Now the ICMP part */
1032 icp
= (struct icmp
*)(buf
+ hlen
);
1033 if (icp
->icmp_type
== icmp_type_rsp
) {
1034 if (icp
->icmp_id
!= ident
)
1035 return; /* 'Twas not our ECHO */
1044 tp
= icp
->icmp_data
;
1046 tp
= (const char *)tp
+ phdr_len
;
1048 if (cc
- ICMP_MINLEN
- phdr_len
>= (int)sizeof(tv1
)) {
1049 /* Copy to avoid alignment problems: */
1050 memcpy(&tv32
, tp
, sizeof(tv32
));
1051 tv1
.tv_sec
= ntohl(tv32
.tv32_sec
);
1052 tv1
.tv_usec
= ntohl(tv32
.tv32_usec
);
1054 triptime
= ((double)tv
->tv_sec
) * 1000.0 +
1055 ((double)tv
->tv_usec
) / 1000.0;
1057 tsumsq
+= triptime
* triptime
;
1058 if (triptime
< tmin
)
1060 if (triptime
> tmax
)
1066 seq
= ntohs(icp
->icmp_seq
);
1068 if (TST(seq
% mx_dup_ck
)) {
1073 SET(seq
% mx_dup_ck
);
1077 if (options
& F_QUIET
)
1080 if (options
& F_WAITTIME
&& triptime
> waittime
) {
1085 if (options
& F_FLOOD
)
1086 write(STDOUT_FILENO
, &BSPACE
, 1);
1088 printf("%d bytes from %s: icmp_seq=%u", cc
,
1089 inet_ntoa(*(struct in_addr
*)&from
->sin_addr
.s_addr
),
1091 printf(" ttl=%d", ip
->ip_ttl
);
1093 printf(" time=%.3f ms", triptime
);
1096 if (options
& F_AUDIBLE
)
1097 write(STDOUT_FILENO
, &BBELL
, 1);
1098 if (options
& F_MASK
) {
1099 /* Just prentend this cast isn't ugly */
1101 pr_addr(*(struct in_addr
*)&(icp
->icmp_mask
)));
1103 if (options
& F_TIME
) {
1104 printf(" tso=%s", pr_ntime(icp
->icmp_otime
));
1105 printf(" tsr=%s", pr_ntime(icp
->icmp_rtime
));
1106 printf(" tst=%s", pr_ntime(icp
->icmp_ttime
));
1108 if (recv_len
!= send_len
) {
1110 "\nwrong total length %d instead of %d",
1111 recv_len
, send_len
);
1113 /* check the data */
1114 cp
= (u_char
*)&icp
->icmp_data
[phdr_len
];
1115 dp
= &outpack
[ICMP_MINLEN
+ phdr_len
];
1116 cc
-= ICMP_MINLEN
+ phdr_len
;
1118 if (timing
) { /* don't check variable timestamp */
1124 for (; i
< datalen
&& cc
> 0; ++i
, ++cp
, ++dp
, --cc
) {
1126 printf("\nwrong data byte #%d should be 0x%x but was 0x%x",
1129 cp
= (u_char
*)&icp
->icmp_data
[0];
1130 for (i
= 0; i
< datalen
; ++i
, ++cp
) {
1133 printf("%2x ", *cp
);
1136 cp
= &outpack
[ICMP_MINLEN
];
1137 for (i
= 0; i
< datalen
; ++i
, ++cp
) {
1140 printf("%2x ", *cp
);
1148 * We've got something other than an ECHOREPLY.
1149 * See if it's a reply to something that we sent.
1150 * We can compare IP destination, protocol,
1151 * and ICMP type and ID.
1153 * Only print all the error messages if we are running
1154 * as root to avoid leaking information not normally
1155 * available to those not running as root.
1158 struct ip
*oip
= &icp
->icmp_ip
;
1160 struct ip
*oip
= (struct ip
*)icp
->icmp_data
;
1162 struct icmp
*oicmp
= (struct icmp
*)(oip
+ 1);
1164 if (((options
& F_VERBOSE
) && uid
== 0) ||
1165 (!(options
& F_QUIET2
) &&
1166 (oip
->ip_dst
.s_addr
== whereto
.sin_addr
.s_addr
) &&
1167 (oip
->ip_p
== IPPROTO_ICMP
) &&
1168 (oicmp
->icmp_type
== ICMP_ECHO
) &&
1169 (oicmp
->icmp_id
== ident
))) {
1170 printf("%d bytes from %s: ", cc
,
1171 pr_addr(from
->sin_addr
));
1177 /* Display any IP options */
1178 cp
= (u_char
*)buf
+ sizeof(struct ip
);
1180 for (; hlen
> (int)sizeof(struct ip
); --hlen
, ++cp
)
1187 printf(*cp
== IPOPT_LSRR
?
1188 "\nLSRR: " : "\nSSRR: ");
1189 j
= cp
[IPOPT_OLEN
] - IPOPT_MINOFF
+ 1;
1192 if (j
>= INADDR_LEN
&&
1193 j
<= hlen
- (int)sizeof(struct ip
)) {
1195 bcopy(++cp
, &ina
.s_addr
, INADDR_LEN
);
1196 if (ina
.s_addr
== 0)
1197 printf("\t0.0.0.0");
1199 printf("\t%s", pr_addr(ina
));
1201 cp
+= INADDR_LEN
- 1;
1208 printf("\t(truncated route)\n");
1211 j
= cp
[IPOPT_OLEN
]; /* get length */
1212 i
= cp
[IPOPT_OFFSET
]; /* and pointer */
1217 i
= i
- IPOPT_MINOFF
+ 1;
1218 if (i
< 0 || i
> (hlen
- (int)sizeof(struct ip
))) {
1223 && !bcmp((char *)cp
, old_rr
, i
)
1224 && !(options
& F_FLOOD
)) {
1225 printf("\t(same route)");
1231 bcopy((char *)cp
, old_rr
, i
);
1233 if (i
>= INADDR_LEN
&&
1234 i
<= hlen
- (int)sizeof(struct ip
)) {
1236 bcopy(++cp
, &ina
.s_addr
, INADDR_LEN
);
1237 if (ina
.s_addr
== 0)
1238 printf("\t0.0.0.0");
1240 printf("\t%s", pr_addr(ina
));
1242 cp
+= INADDR_LEN
- 1;
1249 printf("\t(truncated route)");
1255 printf("\nunknown option %x", *cp
);
1258 if (!(options
& F_FLOOD
)) {
1266 * Checksum routine for Internet Protocol family headers (C Version)
1269 in_cksum(u_short
*addr
, int len
)
1284 * Our algorithm is simple, using a 32 bit accumulator (sum), we add
1285 * sequential 16 bit words to it, and at the end, fold back all the
1286 * carry bits from the top 16 bits into the lower 16 bits.
1293 /* mop up an odd byte, if necessary */
1295 last
.uc
[0] = *(u_char
*)w
;
1300 /* add back carry outs from top 16 bits to low 16 bits */
1301 sum
= (sum
>> 16) + (sum
& 0xffff); /* add hi 16 to low 16 */
1302 sum
+= (sum
>> 16); /* add carry */
1303 answer
= ~sum
; /* truncate to 16 bits */
1309 * Subtract 2 timeval structs: out = out - in. Out is assumed to
1313 tvsub(struct timeval
*out
, struct timeval
*in
)
1316 if ((out
->tv_usec
-= in
->tv_usec
) < 0) {
1318 out
->tv_usec
+= 1000000;
1320 out
->tv_sec
-= in
->tv_sec
;
1325 * Print out statistics when SIGINFO is received.
1329 status(int sig __unused
)
1341 fprintf(stderr
, "\r%ld/%ld packets received (%.1f%%)",
1342 nreceived
, ntransmitted
,
1343 ntransmitted
? nreceived
* 100.0 / ntransmitted
: 0.0);
1344 if (nreceived
&& timing
)
1345 fprintf(stderr
, " %.3f min / %.3f avg / %.3f max",
1346 tmin
, tsum
/ (nreceived
+ nrepeats
), tmax
);
1347 fprintf(stderr
, "\n");
1353 * Print out statistics, and give up.
1359 signal(SIGINT
, SIG_IGN
);
1360 signal(SIGALRM
, SIG_IGN
);
1363 printf("--- %s ping statistics ---\n", hostname
);
1364 printf("%ld packets transmitted, ", ntransmitted
);
1365 printf("%ld packets received, ", nreceived
);
1367 printf("+%ld duplicates, ", nrepeats
);
1369 if (nreceived
> ntransmitted
)
1370 printf("-- somebody's printing up packets!");
1372 printf("%.1f%% packet loss",
1373 ((ntransmitted
- nreceived
) * 100.0) /
1377 printf(", %ld packets out of wait time", nrcvtimeout
);
1379 if (nreceived
&& timing
) {
1380 double n
= nreceived
+ nrepeats
;
1381 double avg
= tsum
/ n
;
1382 double vari
= tsumsq
/ n
- avg
* avg
;
1384 "round-trip min/avg/max/stddev = %.3f/%.3f/%.3f/%.3f ms\n",
1385 tmin
, avg
, tmax
, sqrt(vari
));
1395 static char *ttab
[] = {
1396 "Echo Reply", /* ip + seq + udata */
1397 "Dest Unreachable", /* net, host, proto, port, frag, sr + IP */
1398 "Source Quench", /* IP */
1399 "Redirect", /* redirect type, gateway, + IP */
1401 "Time Exceeded", /* transit, frag reassem + IP */
1402 "Parameter Problem", /* pointer + IP */
1403 "Timestamp", /* id + seq + three timestamps */
1404 "Timestamp Reply", /* " */
1405 "Info Request", /* id + sq */
1406 "Info Reply" /* " */
1412 * Print a descriptive string about an ICMP header.
1415 pr_icmph(struct icmp
*icp
)
1418 switch(icp
->icmp_type
) {
1419 case ICMP_ECHOREPLY
:
1420 printf("Echo Reply\n");
1421 /* XXX ID + Seq + Data */
1424 switch(icp
->icmp_code
) {
1425 case ICMP_UNREACH_NET
:
1426 printf("Destination Net Unreachable\n");
1428 case ICMP_UNREACH_HOST
:
1429 printf("Destination Host Unreachable\n");
1431 case ICMP_UNREACH_PROTOCOL
:
1432 printf("Destination Protocol Unreachable\n");
1434 case ICMP_UNREACH_PORT
:
1435 printf("Destination Port Unreachable\n");
1437 case ICMP_UNREACH_NEEDFRAG
:
1438 printf("frag needed and DF set (MTU %d)\n",
1439 ntohs(icp
->icmp_nextmtu
));
1441 case ICMP_UNREACH_SRCFAIL
:
1442 printf("Source Route Failed\n");
1444 case ICMP_UNREACH_FILTER_PROHIB
:
1445 printf("Communication prohibited by filter\n");
1448 printf("Dest Unreachable, Bad Code: %d\n",
1452 /* Print returned IP header information */
1454 pr_retip(&icp
->icmp_ip
);
1456 pr_retip((struct ip
*)icp
->icmp_data
);
1459 case ICMP_SOURCEQUENCH
:
1460 printf("Source Quench\n");
1462 pr_retip(&icp
->icmp_ip
);
1464 pr_retip((struct ip
*)icp
->icmp_data
);
1468 switch(icp
->icmp_code
) {
1469 case ICMP_REDIRECT_NET
:
1470 printf("Redirect Network");
1472 case ICMP_REDIRECT_HOST
:
1473 printf("Redirect Host");
1475 case ICMP_REDIRECT_TOSNET
:
1476 printf("Redirect Type of Service and Network");
1478 case ICMP_REDIRECT_TOSHOST
:
1479 printf("Redirect Type of Service and Host");
1482 printf("Redirect, Bad Code: %d", icp
->icmp_code
);
1485 printf("(New addr: %s)\n", inet_ntoa(icp
->icmp_gwaddr
));
1487 pr_retip(&icp
->icmp_ip
);
1489 pr_retip((struct ip
*)icp
->icmp_data
);
1493 printf("Echo Request\n");
1494 /* XXX ID + Seq + Data */
1497 switch(icp
->icmp_code
) {
1498 case ICMP_TIMXCEED_INTRANS
:
1499 printf("Time to live exceeded\n");
1501 case ICMP_TIMXCEED_REASS
:
1502 printf("Frag reassembly time exceeded\n");
1505 printf("Time exceeded, Bad Code: %d\n",
1510 pr_retip(&icp
->icmp_ip
);
1512 pr_retip((struct ip
*)icp
->icmp_data
);
1515 case ICMP_PARAMPROB
:
1516 printf("Parameter problem: pointer = 0x%02x\n",
1517 icp
->icmp_hun
.ih_pptr
);
1519 pr_retip(&icp
->icmp_ip
);
1521 pr_retip((struct ip
*)icp
->icmp_data
);
1525 printf("Timestamp\n");
1526 /* XXX ID + Seq + 3 timestamps */
1528 case ICMP_TSTAMPREPLY
:
1529 printf("Timestamp Reply\n");
1530 /* XXX ID + Seq + 3 timestamps */
1533 printf("Information Request\n");
1536 case ICMP_IREQREPLY
:
1537 printf("Information Reply\n");
1541 printf("Address Mask Request\n");
1543 case ICMP_MASKREPLY
:
1544 printf("Address Mask Reply\n");
1546 case ICMP_ROUTERADVERT
:
1547 printf("Router Advertisement\n");
1549 case ICMP_ROUTERSOLICIT
:
1550 printf("Router Solicitation\n");
1553 printf("Bad ICMP type: %d\n", icp
->icmp_type
);
1559 * Print an IP header with options.
1562 pr_iph(struct ip
*ip
)
1567 hlen
= ip
->ip_hl
<< 2;
1568 cp
= (u_char
*)ip
+ 20; /* point to options */
1570 printf("Vr HL TOS Len ID Flg off TTL Pro cks Src Dst\n");
1571 printf(" %1x %1x %02x %04x %04x",
1572 ip
->ip_v
, ip
->ip_hl
, ip
->ip_tos
, ntohs(ip
->ip_len
),
1574 printf(" %1lx %04lx",
1575 (u_long
) (ntohl(ip
->ip_off
) & 0xe000) >> 13,
1576 (u_long
) ntohl(ip
->ip_off
) & 0x1fff);
1577 printf(" %02x %02x %04x", ip
->ip_ttl
, ip
->ip_p
, ntohs(ip
->ip_sum
));
1578 printf(" %s ", inet_ntoa(*(struct in_addr
*)&ip
->ip_src
.s_addr
));
1579 printf(" %s ", inet_ntoa(*(struct in_addr
*)&ip
->ip_dst
.s_addr
));
1580 /* dump any option bytes */
1581 while (hlen
-- > 20) {
1582 printf("%02x", *cp
++);
1589 * Return an ascii host address as a dotted quad and optionally with
1593 pr_addr(struct in_addr ina
)
1596 static char buf
[16 + 3 + MAXHOSTNAMELEN
];
1598 if ((options
& F_NUMERIC
) ||
1599 !(hp
= gethostbyaddr((char *)&ina
, 4, AF_INET
)))
1600 return inet_ntoa(ina
);
1602 snprintf(buf
, sizeof(buf
), "%s (%s)", hp
->h_name
,
1609 * Dump some info on a returned (via ICMP) IP packet.
1612 pr_retip(struct ip
*ip
)
1618 hlen
= ip
->ip_hl
<< 2;
1619 cp
= (u_char
*)ip
+ hlen
;
1622 printf("TCP: from port %u, to port %u (decimal)\n",
1623 (*cp
* 256 + *(cp
+ 1)), (*(cp
+ 2) * 256 + *(cp
+ 3)));
1624 else if (ip
->ip_p
== 17)
1625 printf("UDP: from port %u, to port %u (decimal)\n",
1626 (*cp
* 256 + *(cp
+ 1)), (*(cp
+ 2) * 256 + *(cp
+ 3)));
1630 pr_ntime (n_time timestamp
)
1632 static char buf
[10];
1635 sec
= ntohl(timestamp
) / 1000;
1636 hour
= sec
/ 60 / 60;
1637 min
= (sec
% (60 * 60)) / 60;
1638 sec
= (sec
% (60 * 60)) % 60;
1640 snprintf(buf
, sizeof(buf
), "%02d:%02d:%02d", hour
, min
, sec
);
1646 fill(char *bp
, char *patp
)
1652 for (cp
= patp
; *cp
; cp
++) {
1655 "patterns must be specified as hex digits");
1659 "%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x",
1660 &pat
[0], &pat
[1], &pat
[2], &pat
[3], &pat
[4], &pat
[5], &pat
[6],
1661 &pat
[7], &pat
[8], &pat
[9], &pat
[10], &pat
[11], &pat
[12],
1662 &pat
[13], &pat
[14], &pat
[15]);
1665 for (kk
= 0; kk
<= maxpayload
- (TIMEVAL_LEN
+ ii
); kk
+= ii
)
1666 for (jj
= 0; jj
< ii
; ++jj
)
1667 bp
[jj
+ kk
] = pat
[jj
];
1668 if (!(options
& F_QUIET
)) {
1669 printf("PATTERN: 0x");
1670 for (jj
= 0; jj
< ii
; ++jj
)
1671 printf("%02x", bp
[jj
] & 0xFF);
1676 #if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
1677 #define SECOPT " [-P policy]"
1685 fprintf(stderr
, "%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n",
1686 "usage: ping [-AaDdfnoQqRrv] [-c count] [-G sweepmaxsize] [-g sweepminsize]",
1687 " [-h sweepincrsize] [-i wait] [-l preload] [-M mask | time] [-m ttl]",
1688 " " SECOPT
" [-p pattern] [-S src_addr] [-s packetsize] [-t timeout]",
1689 " [-W waittime] [-z tos] host",
1690 " ping [-AaDdfLnoQqRrv] [-c count] [-I iface] [-i wait] [-l preload]",
1691 " [-M mask | time] [-m ttl]" SECOPT
" [-p pattern] [-S src_addr]",
1692 " [-s packetsize] [-T ttl] [-t timeout] [-W waittime]",
1693 " [-z tos] mcast-group");