1994-05-26 06:35:07 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1989, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Mike Muuss.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
1997-03-01 20:19:18 +00:00
|
|
|
static const char copyright[] =
|
1994-05-26 06:35:07 +00:00
|
|
|
"@(#) Copyright (c) 1989, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n";
|
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#ifndef lint
|
1998-07-15 06:45:02 +00:00
|
|
|
#if 0
|
1994-05-26 06:35:07 +00:00
|
|
|
static char sccsid[] = "@(#)ping.c 8.1 (Berkeley) 6/5/93";
|
1998-07-15 06:45:02 +00:00
|
|
|
#endif
|
1997-03-01 20:19:18 +00:00
|
|
|
static const char rcsid[] =
|
1999-08-28 00:22:10 +00:00
|
|
|
"$FreeBSD$";
|
1994-05-26 06:35:07 +00:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* P I N G . C
|
|
|
|
*
|
1998-07-15 06:45:02 +00:00
|
|
|
* Using the Internet Control Message Protocol (ICMP) "ECHO" facility,
|
1994-05-26 06:35:07 +00:00
|
|
|
* measure round-trip-delays and packet loss across network paths.
|
|
|
|
*
|
|
|
|
* Author -
|
|
|
|
* Mike Muuss
|
|
|
|
* U. S. Army Ballistic Research Laboratory
|
|
|
|
* December, 1983
|
|
|
|
*
|
|
|
|
* Status -
|
|
|
|
* Public Domain. Distribution Unlimited.
|
|
|
|
* Bugs -
|
|
|
|
* More statistics could always be gathered.
|
|
|
|
* This program has to run SUID to ROOT to access the ICMP socket.
|
|
|
|
*/
|
|
|
|
|
1997-03-01 20:19:18 +00:00
|
|
|
#include <sys/param.h> /* NB: we rely on this for <sys/types.h> */
|
1994-05-26 06:35:07 +00:00
|
|
|
#include <sys/socket.h>
|
2003-01-23 12:56:10 +00:00
|
|
|
#include <sys/sysctl.h>
|
1994-05-26 06:35:07 +00:00
|
|
|
#include <sys/time.h>
|
1998-05-25 20:16:05 +00:00
|
|
|
#include <sys/uio.h>
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
#include <netinet/in.h>
|
1997-03-01 20:19:18 +00:00
|
|
|
#include <netinet/in_systm.h>
|
1994-05-26 06:35:07 +00:00
|
|
|
#include <netinet/ip.h>
|
|
|
|
#include <netinet/ip_icmp.h>
|
|
|
|
#include <netinet/ip_var.h>
|
1997-03-01 20:19:18 +00:00
|
|
|
#include <arpa/inet.h>
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2000-01-06 12:40:54 +00:00
|
|
|
#ifdef IPSEC
|
|
|
|
#include <netinet6/ipsec.h>
|
|
|
|
#endif /*IPSEC*/
|
|
|
|
|
2003-01-23 12:56:10 +00:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sysexits.h>
|
|
|
|
#include <termios.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2002-07-05 11:47:33 +00:00
|
|
|
#define INADDR_LEN ((int)sizeof(in_addr_t))
|
2003-03-02 21:24:08 +00:00
|
|
|
#define TIMEVAL_LEN ((int)sizeof(struct timeval))
|
|
|
|
#define MASK_LEN (ICMP_MASKLEN - ICMP_MINLEN)
|
|
|
|
#define TS_LEN (ICMP_TSLEN - ICMP_MINLEN)
|
|
|
|
#define DEFDATALEN 64 /* default data length */
|
1997-07-20 06:09:55 +00:00
|
|
|
#define FLOOD_BACKOFF 20000 /* usecs to back off if F_FLOOD mode */
|
|
|
|
/* runs out of buffer space */
|
2002-07-05 11:52:54 +00:00
|
|
|
#define MAXIPLEN (sizeof(struct ip) + MAX_IPOPTLEN)
|
|
|
|
#define MAXICMPLEN (ICMP_ADVLENMIN + MAX_IPOPTLEN)
|
|
|
|
#define MINICMPLEN ICMP_MINLEN
|
1994-05-26 06:35:07 +00:00
|
|
|
#define MAXWAIT 10 /* max seconds to wait for response */
|
2000-01-20 20:48:51 +00:00
|
|
|
#define MAXALARM (60 * 60) /* max seconds for alarm timeout */
|
2003-01-23 12:48:12 +00:00
|
|
|
#define MAXTOS 255
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
#define A(bit) rcvd_tbl[(bit)>>3] /* identify byte in array */
|
|
|
|
#define B(bit) (1 << ((bit) & 0x07)) /* identify bit in byte */
|
|
|
|
#define SET(bit) (A(bit) |= B(bit))
|
|
|
|
#define CLR(bit) (A(bit) &= (~B(bit)))
|
|
|
|
#define TST(bit) (A(bit) & B(bit))
|
|
|
|
|
|
|
|
/* various options */
|
|
|
|
int options;
|
1996-12-15 23:41:29 +00:00
|
|
|
#define F_FLOOD 0x0001
|
|
|
|
#define F_INTERVAL 0x0002
|
|
|
|
#define F_NUMERIC 0x0004
|
|
|
|
#define F_PINGFILLED 0x0008
|
|
|
|
#define F_QUIET 0x0010
|
|
|
|
#define F_RROUTE 0x0020
|
|
|
|
#define F_SO_DEBUG 0x0040
|
|
|
|
#define F_SO_DONTROUTE 0x0080
|
|
|
|
#define F_VERBOSE 0x0100
|
|
|
|
#define F_QUIET2 0x0200
|
|
|
|
#define F_NOLOOP 0x0400
|
|
|
|
#define F_MTTL 0x0800
|
|
|
|
#define F_MIF 0x1000
|
1997-02-08 01:43:56 +00:00
|
|
|
#define F_AUDIBLE 0x2000
|
2000-01-06 12:40:54 +00:00
|
|
|
#ifdef IPSEC
|
|
|
|
#ifdef IPSEC_POLICY_IPSEC
|
|
|
|
#define F_POLICY 0x4000
|
|
|
|
#endif /*IPSEC_POLICY_IPSEC*/
|
|
|
|
#endif /*IPSEC*/
|
2001-03-09 13:20:23 +00:00
|
|
|
#define F_TTL 0x8000
|
2001-05-24 09:17:52 +00:00
|
|
|
#define F_MISSED 0x10000
|
2002-10-02 03:24:27 +00:00
|
|
|
#define F_ONCE 0x20000
|
2003-01-23 12:48:12 +00:00
|
|
|
#define F_HDRINCL 0x40000
|
2003-01-28 22:53:24 +00:00
|
|
|
#define F_MASK 0x80000
|
2003-03-02 21:24:08 +00:00
|
|
|
#define F_TIME 0x100000
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* MAX_DUP_CHK is the number of bits in received table, i.e. the maximum
|
|
|
|
* number of received sequence numbers we can keep track of. Change 128
|
|
|
|
* to 8192 for complete accuracy...
|
|
|
|
*/
|
|
|
|
#define MAX_DUP_CHK (8 * 128)
|
|
|
|
int mx_dup_ck = MAX_DUP_CHK;
|
|
|
|
char rcvd_tbl[MAX_DUP_CHK / 8];
|
|
|
|
|
2001-07-07 19:09:21 +00:00
|
|
|
struct sockaddr_in whereto; /* who to ping */
|
2003-01-23 13:04:42 +00:00
|
|
|
long maxpayload;
|
1994-05-26 06:35:07 +00:00
|
|
|
int datalen = DEFDATALEN;
|
|
|
|
int s; /* socket file descriptor */
|
2003-01-23 12:48:12 +00:00
|
|
|
u_char outpackhdr[IP_MAXPACKET], *outpack;
|
2001-05-24 09:17:52 +00:00
|
|
|
char BBELL = '\a'; /* characters written for MISSED and AUDIBLE */
|
2003-01-23 12:56:10 +00:00
|
|
|
char BSPACE = '\b'; /* characters written for flood */
|
1994-05-26 06:35:07 +00:00
|
|
|
char DOT = '.';
|
|
|
|
char *hostname;
|
1999-01-06 07:54:28 +00:00
|
|
|
char *shostname;
|
1994-05-26 06:35:07 +00:00
|
|
|
int ident; /* process id to identify our packets */
|
1997-03-02 20:01:13 +00:00
|
|
|
int uid; /* cached uid for micro-optimization */
|
2003-03-02 21:24:08 +00:00
|
|
|
u_char icmp_type = ICMP_ECHO;
|
|
|
|
u_char icmp_type_rsp = ICMP_ECHOREPLY;
|
|
|
|
int timeoffset = 0;
|
|
|
|
int phdr_len = 0;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
/* counters */
|
2003-01-23 12:56:10 +00:00
|
|
|
long nmissedmax; /* max value of ntransmitted - nreceived - 1 */
|
1994-05-26 06:35:07 +00:00
|
|
|
long npackets; /* max packets to transmit */
|
|
|
|
long nreceived; /* # of packets we got back */
|
|
|
|
long nrepeats; /* number of duplicates */
|
|
|
|
long ntransmitted; /* sequence # for outbound packets = #sent */
|
1998-08-26 01:58:39 +00:00
|
|
|
int interval = 1000; /* interval between packets, ms */
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
/* timing */
|
|
|
|
int timing; /* flag to do timing */
|
|
|
|
double tmin = 999999999.0; /* minimum round trip time */
|
|
|
|
double tmax = 0.0; /* maximum round trip time */
|
|
|
|
double tsum = 0.0; /* sum of all times, for doing average */
|
1997-07-18 17:52:05 +00:00
|
|
|
double tsumsq = 0.0; /* sum of all times squared, for std. dev. */
|
1994-05-26 06:35:07 +00:00
|
|
|
|
1997-07-20 06:09:55 +00:00
|
|
|
volatile sig_atomic_t finish_up; /* nonzero if we've been told to finish up */
|
1994-10-22 17:30:35 +00:00
|
|
|
int reset_kerninfo;
|
1997-07-20 06:09:55 +00:00
|
|
|
volatile sig_atomic_t siginfo_p;
|
1994-10-22 17:30:35 +00:00
|
|
|
|
1997-03-01 20:19:18 +00:00
|
|
|
static void fill(char *, char *);
|
|
|
|
static u_short in_cksum(u_short *, int);
|
|
|
|
static void check_status(void);
|
1997-07-20 06:09:55 +00:00
|
|
|
static void finish(void) __dead2;
|
1997-03-01 20:19:18 +00:00
|
|
|
static void pinger(void);
|
|
|
|
static char *pr_addr(struct in_addr);
|
2003-03-02 21:24:08 +00:00
|
|
|
static char *pr_ntime(n_time);
|
1997-03-01 20:19:18 +00:00
|
|
|
static void pr_icmph(struct icmp *);
|
|
|
|
static void pr_iph(struct ip *);
|
1998-05-25 20:16:05 +00:00
|
|
|
static void pr_pack(char *, int, struct sockaddr_in *, struct timeval *);
|
1997-03-01 20:19:18 +00:00
|
|
|
static void pr_retip(struct ip *);
|
|
|
|
static void status(int);
|
1997-07-20 06:09:55 +00:00
|
|
|
static void stopit(int);
|
1997-03-01 20:19:18 +00:00
|
|
|
static void tvsub(struct timeval *, struct timeval *);
|
1998-07-15 06:45:02 +00:00
|
|
|
static void usage(void) __dead2;
|
1997-03-01 20:19:18 +00:00
|
|
|
|
|
|
|
int
|
1994-05-26 06:35:07 +00:00
|
|
|
main(argc, argv)
|
|
|
|
int argc;
|
1997-03-01 20:19:18 +00:00
|
|
|
char *const *argv;
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
2003-03-05 22:42:03 +00:00
|
|
|
struct sockaddr_in from, sock_in;
|
2002-03-23 18:10:59 +00:00
|
|
|
struct in_addr ifaddr;
|
2003-01-23 12:56:10 +00:00
|
|
|
struct timeval last, intvl;
|
2002-03-23 18:10:59 +00:00
|
|
|
struct iovec iov;
|
2003-01-23 12:48:12 +00:00
|
|
|
struct ip *ip;
|
2002-03-23 18:10:59 +00:00
|
|
|
struct msghdr msg;
|
|
|
|
struct sigaction si_sa;
|
|
|
|
struct termios ts;
|
2003-01-23 12:48:12 +00:00
|
|
|
size_t sz;
|
2002-07-05 11:52:54 +00:00
|
|
|
u_char *datap, packet[IP_MAXPACKET];
|
2003-01-29 20:42:42 +00:00
|
|
|
char *ep, *source, *target, *payload;
|
2003-01-23 12:56:10 +00:00
|
|
|
struct hostent *hp;
|
2002-03-23 18:10:59 +00:00
|
|
|
#ifdef IPSEC_POLICY_IPSEC
|
|
|
|
char *policy_in, *policy_out;
|
|
|
|
#endif
|
2003-01-23 12:56:10 +00:00
|
|
|
struct sockaddr_in *to;
|
|
|
|
double t;
|
2002-03-23 18:10:59 +00:00
|
|
|
u_long alarmtimeout, ultmp;
|
2003-01-23 12:56:10 +00:00
|
|
|
int almost_done, ch, df, hold, i, mib[4], packlen, preload, sockerrno,
|
|
|
|
tos, ttl;
|
2002-03-23 18:10:59 +00:00
|
|
|
char ctrl[CMSG_SPACE(sizeof(struct timeval))];
|
|
|
|
char hnamebuf[MAXHOSTNAMELEN], snamebuf[MAXHOSTNAMELEN];
|
1994-05-26 06:35:07 +00:00
|
|
|
#ifdef IP_OPTIONS
|
2002-07-05 11:52:54 +00:00
|
|
|
char rspace[MAX_IPOPTLEN]; /* record route space */
|
1994-05-26 06:35:07 +00:00
|
|
|
#endif
|
2003-01-23 12:56:10 +00:00
|
|
|
unsigned char loop, mttl;
|
2002-03-23 18:10:59 +00:00
|
|
|
|
2003-03-05 22:42:03 +00:00
|
|
|
payload = source = NULL;
|
2000-01-06 12:40:54 +00:00
|
|
|
#ifdef IPSEC_POLICY_IPSEC
|
2002-03-23 18:10:59 +00:00
|
|
|
policy_in = policy_out = NULL;
|
2000-01-06 12:40:54 +00:00
|
|
|
#endif
|
1994-05-26 06:35:07 +00:00
|
|
|
|
1996-08-09 06:00:53 +00:00
|
|
|
/*
|
|
|
|
* Do the stuff that we need root priv's for *first*, and
|
|
|
|
* then drop our setuid bit. Save error reporting for
|
|
|
|
* after arg parsing.
|
|
|
|
*/
|
1997-03-01 20:19:18 +00:00
|
|
|
s = socket(AF_INET, SOCK_RAW, IPPROTO_ICMP);
|
|
|
|
sockerrno = errno;
|
1996-08-09 06:00:53 +00:00
|
|
|
|
|
|
|
setuid(getuid());
|
1997-03-02 20:01:13 +00:00
|
|
|
uid = getuid();
|
1996-08-09 06:00:53 +00:00
|
|
|
|
2003-01-23 12:48:12 +00:00
|
|
|
alarmtimeout = df = preload = tos = 0;
|
1994-10-22 17:30:35 +00:00
|
|
|
|
2003-01-23 12:48:12 +00:00
|
|
|
outpack = outpackhdr + sizeof(struct ip);
|
2001-03-09 13:20:23 +00:00
|
|
|
while ((ch = getopt(argc, argv,
|
2003-03-02 21:24:08 +00:00
|
|
|
"Aac:DdfI:i:Ll:M:m:nop:QqRrS:s:T:t:vz:"
|
2001-03-09 13:20:23 +00:00
|
|
|
#ifdef IPSEC
|
2000-01-06 12:40:54 +00:00
|
|
|
#ifdef IPSEC_POLICY_IPSEC
|
2001-03-09 13:20:23 +00:00
|
|
|
"P:"
|
2000-01-06 12:40:54 +00:00
|
|
|
#endif /*IPSEC_POLICY_IPSEC*/
|
2001-03-09 13:20:23 +00:00
|
|
|
#endif /*IPSEC*/
|
|
|
|
)) != -1)
|
2000-01-06 12:40:54 +00:00
|
|
|
{
|
1994-05-26 06:35:07 +00:00
|
|
|
switch(ch) {
|
2001-05-24 09:17:52 +00:00
|
|
|
case 'A':
|
|
|
|
options |= F_MISSED;
|
|
|
|
break;
|
1997-02-08 01:43:56 +00:00
|
|
|
case 'a':
|
|
|
|
options |= F_AUDIBLE;
|
|
|
|
break;
|
1994-05-26 06:35:07 +00:00
|
|
|
case 'c':
|
1997-03-01 20:19:18 +00:00
|
|
|
ultmp = strtoul(optarg, &ep, 0);
|
|
|
|
if (*ep || ep == optarg || ultmp > LONG_MAX || !ultmp)
|
|
|
|
errx(EX_USAGE,
|
|
|
|
"invalid count of packets to transmit: `%s'",
|
|
|
|
optarg);
|
|
|
|
npackets = ultmp;
|
1994-05-26 06:35:07 +00:00
|
|
|
break;
|
2003-01-23 12:48:12 +00:00
|
|
|
case 'D':
|
|
|
|
options |= F_HDRINCL;
|
|
|
|
df = 1;
|
|
|
|
break;
|
1994-05-26 06:35:07 +00:00
|
|
|
case 'd':
|
|
|
|
options |= F_SO_DEBUG;
|
|
|
|
break;
|
|
|
|
case 'f':
|
1998-08-26 01:58:39 +00:00
|
|
|
if (uid) {
|
1997-03-01 20:19:18 +00:00
|
|
|
errno = EPERM;
|
|
|
|
err(EX_NOPERM, "-f flag");
|
1994-05-26 06:35:07 +00:00
|
|
|
}
|
|
|
|
options |= F_FLOOD;
|
|
|
|
setbuf(stdout, (char *)NULL);
|
|
|
|
break;
|
2003-02-23 01:50:07 +00:00
|
|
|
case 'I': /* multicast interface */
|
|
|
|
if (inet_aton(optarg, &ifaddr) == 0)
|
|
|
|
errx(EX_USAGE,
|
|
|
|
"invalid multicast interface: `%s'",
|
|
|
|
optarg);
|
|
|
|
options |= F_MIF;
|
|
|
|
break;
|
1994-05-26 06:35:07 +00:00
|
|
|
case 'i': /* wait between sending packets */
|
2002-04-02 09:36:46 +00:00
|
|
|
t = strtod(optarg, &ep) * 1000.0;
|
|
|
|
if (*ep || ep == optarg || t > (double)INT_MAX)
|
|
|
|
errx(EX_USAGE, "invalid timing interval: `%s'",
|
|
|
|
optarg);
|
|
|
|
options |= F_INTERVAL;
|
|
|
|
interval = (int)t;
|
|
|
|
if (uid && interval < 1000) {
|
|
|
|
errno = EPERM;
|
|
|
|
err(EX_NOPERM, "-i interval too short");
|
1998-08-26 01:58:39 +00:00
|
|
|
}
|
1994-05-26 06:35:07 +00:00
|
|
|
break;
|
2003-02-23 01:50:07 +00:00
|
|
|
case 'L':
|
|
|
|
options |= F_NOLOOP;
|
|
|
|
loop = 0;
|
1996-12-15 23:41:29 +00:00
|
|
|
break;
|
1994-05-26 06:35:07 +00:00
|
|
|
case 'l':
|
1997-03-01 20:19:18 +00:00
|
|
|
ultmp = strtoul(optarg, &ep, 0);
|
|
|
|
if (*ep || ep == optarg || ultmp > INT_MAX)
|
2002-04-02 09:36:46 +00:00
|
|
|
errx(EX_USAGE,
|
|
|
|
"invalid preload value: `%s'", optarg);
|
1999-05-07 14:38:48 +00:00
|
|
|
if (uid) {
|
1997-03-02 06:32:42 +00:00
|
|
|
errno = EPERM;
|
|
|
|
err(EX_NOPERM, "-l flag");
|
|
|
|
}
|
1997-03-01 20:19:18 +00:00
|
|
|
preload = ultmp;
|
1994-05-26 06:35:07 +00:00
|
|
|
break;
|
2003-02-23 01:50:07 +00:00
|
|
|
case 'M':
|
2003-03-02 21:24:08 +00:00
|
|
|
switch(optarg[0]) {
|
|
|
|
case 'M':
|
|
|
|
case 'm':
|
|
|
|
options |= F_MASK;
|
|
|
|
break;
|
|
|
|
case 'T':
|
|
|
|
case 't':
|
|
|
|
options |= F_TIME;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
errx(EX_USAGE, "invalid message: `%c'", optarg[0]);
|
|
|
|
break;
|
|
|
|
}
|
1996-12-15 23:41:29 +00:00
|
|
|
break;
|
2001-03-09 13:20:23 +00:00
|
|
|
case 'm': /* TTL */
|
|
|
|
ultmp = strtoul(optarg, &ep, 0);
|
2003-01-23 12:54:11 +00:00
|
|
|
if (*ep || ep == optarg || ultmp > MAXTTL)
|
2002-04-02 09:36:46 +00:00
|
|
|
errx(EX_USAGE, "invalid TTL: `%s'", optarg);
|
2001-03-09 13:20:23 +00:00
|
|
|
ttl = ultmp;
|
|
|
|
options |= F_TTL;
|
|
|
|
break;
|
1994-05-26 06:35:07 +00:00
|
|
|
case 'n':
|
|
|
|
options |= F_NUMERIC;
|
|
|
|
break;
|
2002-10-02 03:24:27 +00:00
|
|
|
case 'o':
|
|
|
|
options |= F_ONCE;
|
|
|
|
break;
|
2003-02-23 01:50:07 +00:00
|
|
|
#ifdef IPSEC
|
|
|
|
#ifdef IPSEC_POLICY_IPSEC
|
|
|
|
case 'P':
|
|
|
|
options |= F_POLICY;
|
|
|
|
if (!strncmp("in", optarg, 2))
|
|
|
|
policy_in = strdup(optarg);
|
|
|
|
else if (!strncmp("out", optarg, 3))
|
|
|
|
policy_out = strdup(optarg);
|
|
|
|
else
|
|
|
|
errx(1, "invalid security policy");
|
|
|
|
break;
|
|
|
|
#endif /*IPSEC_POLICY_IPSEC*/
|
|
|
|
#endif /*IPSEC*/
|
1994-05-26 06:35:07 +00:00
|
|
|
case 'p': /* fill buffer with user pattern */
|
|
|
|
options |= F_PINGFILLED;
|
2003-01-29 20:42:42 +00:00
|
|
|
payload = optarg;
|
2003-01-23 12:56:10 +00:00
|
|
|
break;
|
1996-08-20 23:50:16 +00:00
|
|
|
case 'Q':
|
|
|
|
options |= F_QUIET2;
|
|
|
|
break;
|
1994-05-26 06:35:07 +00:00
|
|
|
case 'q':
|
|
|
|
options |= F_QUIET;
|
|
|
|
break;
|
|
|
|
case 'R':
|
|
|
|
options |= F_RROUTE;
|
|
|
|
break;
|
|
|
|
case 'r':
|
|
|
|
options |= F_SO_DONTROUTE;
|
|
|
|
break;
|
2003-02-23 01:50:07 +00:00
|
|
|
case 'S':
|
|
|
|
source = optarg;
|
|
|
|
break;
|
1994-05-26 06:35:07 +00:00
|
|
|
case 's': /* size of packet to send */
|
1997-03-01 20:19:18 +00:00
|
|
|
ultmp = strtoul(optarg, &ep, 0);
|
2002-07-05 11:52:54 +00:00
|
|
|
if (*ep || ep == optarg)
|
2002-04-02 09:36:46 +00:00
|
|
|
errx(EX_USAGE, "invalid packet size: `%s'",
|
|
|
|
optarg);
|
2003-01-23 13:04:42 +00:00
|
|
|
if (uid != 0 && ultmp > DEFDATALEN) {
|
|
|
|
errno = EPERM;
|
|
|
|
err(EX_NOPERM,
|
|
|
|
"packet size too large: %lu > %u",
|
|
|
|
ultmp, DEFDATALEN);
|
|
|
|
}
|
1997-03-01 20:19:18 +00:00
|
|
|
datalen = ultmp;
|
1994-05-26 06:35:07 +00:00
|
|
|
break;
|
2003-02-23 01:50:07 +00:00
|
|
|
case 'T': /* multicast TTL */
|
|
|
|
ultmp = strtoul(optarg, &ep, 0);
|
|
|
|
if (*ep || ep == optarg || ultmp > MAXTTL)
|
|
|
|
errx(EX_USAGE, "invalid multicast TTL: `%s'",
|
|
|
|
optarg);
|
|
|
|
mttl = ultmp;
|
|
|
|
options |= F_MTTL;
|
1999-01-06 07:54:28 +00:00
|
|
|
break;
|
2000-01-14 23:40:38 +00:00
|
|
|
case 't':
|
2000-01-20 20:48:51 +00:00
|
|
|
alarmtimeout = strtoul(optarg, &ep, 0);
|
|
|
|
if ((alarmtimeout < 1) || (alarmtimeout == ULONG_MAX))
|
2000-01-14 23:40:38 +00:00
|
|
|
errx(EX_USAGE, "invalid timeout: `%s'",
|
|
|
|
optarg);
|
2000-01-20 20:48:51 +00:00
|
|
|
if (alarmtimeout > MAXALARM)
|
|
|
|
errx(EX_USAGE, "invalid timeout: `%s' > %d",
|
|
|
|
optarg, MAXALARM);
|
|
|
|
alarm((int)alarmtimeout);
|
2000-01-14 23:40:38 +00:00
|
|
|
break;
|
1994-05-26 06:35:07 +00:00
|
|
|
case 'v':
|
|
|
|
options |= F_VERBOSE;
|
|
|
|
break;
|
2003-01-23 12:48:12 +00:00
|
|
|
case 'z':
|
|
|
|
options |= F_HDRINCL;
|
|
|
|
ultmp = strtoul(optarg, &ep, 0);
|
|
|
|
if (*ep || ep == optarg || ultmp > MAXTOS)
|
|
|
|
errx(EX_USAGE, "invalid TOS: `%s'", optarg);
|
|
|
|
tos = ultmp;
|
|
|
|
break;
|
1994-05-26 06:35:07 +00:00
|
|
|
default:
|
1998-07-15 06:45:02 +00:00
|
|
|
usage();
|
1994-05-26 06:35:07 +00:00
|
|
|
}
|
1997-03-01 20:19:18 +00:00
|
|
|
}
|
1994-05-26 06:35:07 +00:00
|
|
|
|
1997-03-01 20:19:18 +00:00
|
|
|
if (argc - optind != 1)
|
1998-07-15 06:45:02 +00:00
|
|
|
usage();
|
1997-03-01 20:19:18 +00:00
|
|
|
target = argv[optind];
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2003-01-23 13:04:42 +00:00
|
|
|
maxpayload = IP_MAXPACKET - sizeof(struct ip) - MINICMPLEN;
|
2003-03-02 21:24:08 +00:00
|
|
|
if (options & F_MASK) {
|
|
|
|
icmp_type = ICMP_MASKREQ;
|
|
|
|
icmp_type_rsp = ICMP_MASKREPLY;
|
|
|
|
timeoffset = MASK_LEN;
|
|
|
|
datalen -= MASK_LEN;
|
|
|
|
phdr_len += MASK_LEN;
|
|
|
|
if (!(options & F_QUIET))
|
|
|
|
(void)printf("ICMP_MASKREQ\n");
|
|
|
|
}
|
|
|
|
if (options & F_TIME) {
|
|
|
|
icmp_type = ICMP_TSTAMP;
|
|
|
|
icmp_type_rsp = ICMP_TSTAMPREPLY;
|
|
|
|
timeoffset = TS_LEN;
|
|
|
|
datalen -= TS_LEN;
|
|
|
|
phdr_len += TS_LEN;
|
|
|
|
if (!(options & F_QUIET))
|
|
|
|
(void)printf("ICMP_TSTAMP\n");
|
|
|
|
}
|
2003-01-23 13:04:42 +00:00
|
|
|
if (options & F_RROUTE)
|
|
|
|
maxpayload -= MAX_IPOPTLEN;
|
|
|
|
if (datalen > maxpayload)
|
|
|
|
errx(EX_USAGE, "packet size too large: %lu > %u", datalen,
|
|
|
|
maxpayload);
|
2003-03-02 21:24:08 +00:00
|
|
|
datap = &outpack[MINICMPLEN + phdr_len];
|
2003-01-29 20:42:42 +00:00
|
|
|
if (options & F_PINGFILLED) {
|
|
|
|
fill((char *)datap, payload);
|
|
|
|
}
|
1999-01-06 07:54:28 +00:00
|
|
|
if (source) {
|
2003-03-05 22:42:03 +00:00
|
|
|
bzero((char *)&sock_in, sizeof(sock_in));
|
|
|
|
sock_in.sin_family = AF_INET;
|
|
|
|
if (inet_aton(source, &sock_in.sin_addr) != 0) {
|
1999-01-06 07:54:28 +00:00
|
|
|
shostname = source;
|
|
|
|
} else {
|
|
|
|
hp = gethostbyname2(source, AF_INET);
|
|
|
|
if (!hp)
|
|
|
|
errx(EX_NOHOST, "cannot resolve %s: %s",
|
2002-04-02 09:36:46 +00:00
|
|
|
source, hstrerror(h_errno));
|
1999-01-06 07:54:28 +00:00
|
|
|
|
2003-03-05 22:42:03 +00:00
|
|
|
sock_in.sin_len = sizeof sock_in;
|
|
|
|
if ((unsigned)hp->h_length > sizeof(sock_in.sin_addr) ||
|
2002-07-05 11:52:54 +00:00
|
|
|
hp->h_length < 0)
|
2002-04-02 09:36:46 +00:00
|
|
|
errx(1, "gethostbyname2: illegal address");
|
2003-03-05 22:42:03 +00:00
|
|
|
memcpy(&sock_in.sin_addr, hp->h_addr_list[0],
|
|
|
|
sizeof(sock_in.sin_addr));
|
2002-04-02 09:36:46 +00:00
|
|
|
(void)strncpy(snamebuf, hp->h_name,
|
|
|
|
sizeof(snamebuf) - 1);
|
1999-01-06 07:54:28 +00:00
|
|
|
snamebuf[sizeof(snamebuf) - 1] = '\0';
|
|
|
|
shostname = snamebuf;
|
|
|
|
}
|
2003-03-05 22:42:03 +00:00
|
|
|
if (bind(s, (struct sockaddr *)&sock_in, sizeof sock_in) == -1)
|
1999-01-06 07:54:28 +00:00
|
|
|
err(1, "bind");
|
|
|
|
}
|
|
|
|
|
2001-07-07 19:09:21 +00:00
|
|
|
bzero(&whereto, sizeof(whereto));
|
|
|
|
to = &whereto;
|
1994-05-26 06:35:07 +00:00
|
|
|
to->sin_family = AF_INET;
|
2001-07-07 19:09:21 +00:00
|
|
|
to->sin_len = sizeof *to;
|
1997-03-01 20:19:18 +00:00
|
|
|
if (inet_aton(target, &to->sin_addr) != 0) {
|
1994-05-26 06:35:07 +00:00
|
|
|
hostname = target;
|
1997-03-01 20:19:18 +00:00
|
|
|
} else {
|
|
|
|
hp = gethostbyname2(target, AF_INET);
|
|
|
|
if (!hp)
|
|
|
|
errx(EX_NOHOST, "cannot resolve %s: %s",
|
2002-04-02 09:36:46 +00:00
|
|
|
target, hstrerror(h_errno));
|
1997-03-01 20:19:18 +00:00
|
|
|
|
2003-03-05 22:42:03 +00:00
|
|
|
if ((unsigned)hp->h_length > sizeof(to->sin_addr))
|
2002-04-02 09:36:46 +00:00
|
|
|
errx(1, "gethostbyname2 returned an illegal address");
|
1997-03-01 20:19:18 +00:00
|
|
|
memcpy(&to->sin_addr, hp->h_addr_list[0], sizeof to->sin_addr);
|
1994-05-26 06:35:07 +00:00
|
|
|
(void)strncpy(hnamebuf, hp->h_name, sizeof(hnamebuf) - 1);
|
1997-12-24 00:59:02 +00:00
|
|
|
hnamebuf[sizeof(hnamebuf) - 1] = '\0';
|
1994-05-26 06:35:07 +00:00
|
|
|
hostname = hnamebuf;
|
|
|
|
}
|
|
|
|
|
1997-03-01 20:19:18 +00:00
|
|
|
if (options & F_FLOOD && options & F_INTERVAL)
|
|
|
|
errx(EX_USAGE, "-f and -i: incompatible options");
|
|
|
|
|
|
|
|
if (options & F_FLOOD && IN_MULTICAST(ntohl(to->sin_addr.s_addr)))
|
2002-04-02 09:36:46 +00:00
|
|
|
errx(EX_USAGE,
|
|
|
|
"-f flag cannot be used with multicast destination");
|
1997-03-01 20:19:18 +00:00
|
|
|
if (options & (F_MIF | F_NOLOOP | F_MTTL)
|
|
|
|
&& !IN_MULTICAST(ntohl(to->sin_addr.s_addr)))
|
2002-04-02 09:36:46 +00:00
|
|
|
errx(EX_USAGE,
|
|
|
|
"-I, -L, -T flags cannot be used with unicast destination");
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2003-03-02 21:24:08 +00:00
|
|
|
if (datalen - TIMEVAL_LEN >= TIMEVAL_LEN) { /* can we time transfer */
|
|
|
|
datalen -= TIMEVAL_LEN;
|
|
|
|
phdr_len += TIMEVAL_LEN;
|
1994-05-26 06:35:07 +00:00
|
|
|
timing = 1;
|
2003-03-02 21:24:08 +00:00
|
|
|
}
|
2002-07-05 11:52:54 +00:00
|
|
|
packlen = MAXIPLEN + MAXICMPLEN + datalen;
|
|
|
|
packlen = packlen > IP_MAXPACKET ? IP_MAXPACKET : packlen;
|
1997-03-01 20:19:18 +00:00
|
|
|
|
1994-05-26 06:35:07 +00:00
|
|
|
if (!(options & F_PINGFILLED))
|
2003-03-02 21:24:08 +00:00
|
|
|
for (i = phdr_len; i < datalen; ++i)
|
1994-05-26 06:35:07 +00:00
|
|
|
*datap++ = i;
|
|
|
|
|
|
|
|
ident = getpid() & 0xFFFF;
|
|
|
|
|
1996-08-09 06:00:53 +00:00
|
|
|
if (s < 0) {
|
|
|
|
errno = sockerrno;
|
1997-03-01 20:19:18 +00:00
|
|
|
err(EX_OSERR, "socket");
|
1994-05-26 06:35:07 +00:00
|
|
|
}
|
|
|
|
hold = 1;
|
|
|
|
if (options & F_SO_DEBUG)
|
|
|
|
(void)setsockopt(s, SOL_SOCKET, SO_DEBUG, (char *)&hold,
|
|
|
|
sizeof(hold));
|
|
|
|
if (options & F_SO_DONTROUTE)
|
|
|
|
(void)setsockopt(s, SOL_SOCKET, SO_DONTROUTE, (char *)&hold,
|
|
|
|
sizeof(hold));
|
2000-01-06 12:40:54 +00:00
|
|
|
#ifdef IPSEC
|
|
|
|
#ifdef IPSEC_POLICY_IPSEC
|
|
|
|
if (options & F_POLICY) {
|
|
|
|
char *buf;
|
|
|
|
if (policy_in != NULL) {
|
|
|
|
buf = ipsec_set_policy(policy_in, strlen(policy_in));
|
|
|
|
if (buf == NULL)
|
2000-11-19 13:30:36 +00:00
|
|
|
errx(EX_CONFIG, "%s", ipsec_strerror());
|
2000-01-06 12:40:54 +00:00
|
|
|
if (setsockopt(s, IPPROTO_IP, IP_IPSEC_POLICY,
|
|
|
|
buf, ipsec_get_policylen(buf)) < 0)
|
2002-04-02 09:36:46 +00:00
|
|
|
err(EX_CONFIG,
|
|
|
|
"ipsec policy cannot be configured");
|
2000-01-06 12:40:54 +00:00
|
|
|
free(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (policy_out != NULL) {
|
|
|
|
buf = ipsec_set_policy(policy_out, strlen(policy_out));
|
|
|
|
if (buf == NULL)
|
2000-11-19 13:30:36 +00:00
|
|
|
errx(EX_CONFIG, "%s", ipsec_strerror());
|
2000-01-06 12:40:54 +00:00
|
|
|
if (setsockopt(s, IPPROTO_IP, IP_IPSEC_POLICY,
|
|
|
|
buf, ipsec_get_policylen(buf)) < 0)
|
2002-04-02 09:36:46 +00:00
|
|
|
err(EX_CONFIG,
|
|
|
|
"ipsec policy cannot be configured");
|
2000-01-06 12:40:54 +00:00
|
|
|
free(buf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /*IPSEC_POLICY_IPSEC*/
|
|
|
|
#endif /*IPSEC*/
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2003-01-23 12:48:12 +00:00
|
|
|
if (options & F_HDRINCL) {
|
|
|
|
ip = (struct ip*)outpackhdr;
|
|
|
|
if (!(options & (F_TTL | F_MTTL))) {
|
|
|
|
mib[0] = CTL_NET;
|
|
|
|
mib[1] = PF_INET;
|
|
|
|
mib[2] = IPPROTO_IP;
|
|
|
|
mib[3] = IPCTL_DEFTTL;
|
|
|
|
sz = sizeof(ttl);
|
|
|
|
if (sysctl(mib, 4, &ttl, &sz, NULL, 0) == -1)
|
|
|
|
err(1, "sysctl(net.inet.ip.ttl)");
|
|
|
|
}
|
|
|
|
setsockopt(s, IPPROTO_IP, IP_HDRINCL, &hold, sizeof(hold));
|
|
|
|
ip->ip_v = IPVERSION;
|
|
|
|
ip->ip_hl = sizeof(struct ip) >> 2;
|
|
|
|
ip->ip_tos = tos;
|
|
|
|
ip->ip_id = 0;
|
|
|
|
ip->ip_off = df ? IP_DF : 0;
|
|
|
|
ip->ip_ttl = ttl;
|
|
|
|
ip->ip_p = IPPROTO_ICMP;
|
2003-03-05 22:42:03 +00:00
|
|
|
ip->ip_src.s_addr = source ? sock_in.sin_addr.s_addr : INADDR_ANY;
|
2003-01-23 12:48:12 +00:00
|
|
|
ip->ip_dst = to->sin_addr;
|
|
|
|
}
|
1994-05-26 06:35:07 +00:00
|
|
|
/* record route option */
|
|
|
|
if (options & F_RROUTE) {
|
|
|
|
#ifdef IP_OPTIONS
|
1998-05-25 20:16:05 +00:00
|
|
|
bzero(rspace, sizeof(rspace));
|
1994-05-26 06:35:07 +00:00
|
|
|
rspace[IPOPT_OPTVAL] = IPOPT_RR;
|
1998-05-25 20:16:05 +00:00
|
|
|
rspace[IPOPT_OLEN] = sizeof(rspace) - 1;
|
1994-05-26 06:35:07 +00:00
|
|
|
rspace[IPOPT_OFFSET] = IPOPT_MINOFF;
|
1998-05-25 20:16:05 +00:00
|
|
|
rspace[sizeof(rspace) - 1] = IPOPT_EOL;
|
1994-05-26 06:35:07 +00:00
|
|
|
if (setsockopt(s, IPPROTO_IP, IP_OPTIONS, rspace,
|
1997-03-01 20:19:18 +00:00
|
|
|
sizeof(rspace)) < 0)
|
|
|
|
err(EX_OSERR, "setsockopt IP_OPTIONS");
|
1994-05-26 06:35:07 +00:00
|
|
|
#else
|
1997-03-01 20:19:18 +00:00
|
|
|
errx(EX_UNAVAILABLE,
|
2002-04-02 09:36:46 +00:00
|
|
|
"record route not available in this implementation");
|
1994-05-26 06:35:07 +00:00
|
|
|
#endif /* IP_OPTIONS */
|
|
|
|
}
|
|
|
|
|
2001-03-09 13:20:23 +00:00
|
|
|
if (options & F_TTL) {
|
|
|
|
if (setsockopt(s, IPPROTO_IP, IP_TTL, &ttl,
|
|
|
|
sizeof(ttl)) < 0) {
|
|
|
|
err(EX_OSERR, "setsockopt IP_TTL");
|
|
|
|
}
|
|
|
|
}
|
1996-12-15 23:41:29 +00:00
|
|
|
if (options & F_NOLOOP) {
|
|
|
|
if (setsockopt(s, IPPROTO_IP, IP_MULTICAST_LOOP, &loop,
|
|
|
|
sizeof(loop)) < 0) {
|
1997-03-01 20:19:18 +00:00
|
|
|
err(EX_OSERR, "setsockopt IP_MULTICAST_LOOP");
|
1996-12-15 23:41:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (options & F_MTTL) {
|
2001-03-09 13:20:23 +00:00
|
|
|
if (setsockopt(s, IPPROTO_IP, IP_MULTICAST_TTL, &mttl,
|
|
|
|
sizeof(mttl)) < 0) {
|
1997-03-01 20:19:18 +00:00
|
|
|
err(EX_OSERR, "setsockopt IP_MULTICAST_TTL");
|
1996-12-15 23:41:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (options & F_MIF) {
|
|
|
|
if (setsockopt(s, IPPROTO_IP, IP_MULTICAST_IF, &ifaddr,
|
|
|
|
sizeof(ifaddr)) < 0) {
|
1997-03-01 20:19:18 +00:00
|
|
|
err(EX_OSERR, "setsockopt IP_MULTICAST_IF");
|
1996-12-15 23:41:29 +00:00
|
|
|
}
|
|
|
|
}
|
1998-05-25 20:16:05 +00:00
|
|
|
#ifdef SO_TIMESTAMP
|
|
|
|
{ int on = 1;
|
|
|
|
if (setsockopt(s, SOL_SOCKET, SO_TIMESTAMP, &on, sizeof(on)) < 0)
|
|
|
|
err(EX_OSERR, "setsockopt SO_TIMESTAMP");
|
|
|
|
}
|
|
|
|
#endif
|
1996-12-15 23:41:29 +00:00
|
|
|
|
1994-05-26 06:35:07 +00:00
|
|
|
/*
|
|
|
|
* When pinging the broadcast address, you can get a lot of answers.
|
|
|
|
* Doing something so evil is useful if you are trying to stress the
|
|
|
|
* ethernet, or just want to fill the arp cache to get some stuff for
|
1997-03-01 20:19:18 +00:00
|
|
|
* /etc/ethers. But beware: RFC 1122 allows hosts to ignore broadcast
|
|
|
|
* or multicast pings if they wish.
|
1994-05-26 06:35:07 +00:00
|
|
|
*/
|
2002-07-05 11:52:54 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX receive buffer needs undetermined space for mbuf overhead
|
|
|
|
* as well.
|
|
|
|
*/
|
|
|
|
hold = IP_MAXPACKET + 128;
|
1994-05-26 06:35:07 +00:00
|
|
|
(void)setsockopt(s, SOL_SOCKET, SO_RCVBUF, (char *)&hold,
|
|
|
|
sizeof(hold));
|
2003-01-23 12:56:10 +00:00
|
|
|
if (uid == 0)
|
2001-06-30 06:46:33 +00:00
|
|
|
(void)setsockopt(s, SOL_SOCKET, SO_SNDBUF, (char *)&hold,
|
|
|
|
sizeof(hold));
|
|
|
|
|
1999-01-06 07:54:28 +00:00
|
|
|
if (to->sin_family == AF_INET) {
|
|
|
|
(void)printf("PING %s (%s)", hostname,
|
|
|
|
inet_ntoa(to->sin_addr));
|
|
|
|
if (source)
|
|
|
|
(void)printf(" from %s", shostname);
|
|
|
|
(void)printf(": %d data bytes\n", datalen);
|
|
|
|
} else
|
1994-05-26 06:35:07 +00:00
|
|
|
(void)printf("PING %s: %d data bytes\n", hostname, datalen);
|
|
|
|
|
1996-12-10 14:41:22 +00:00
|
|
|
/*
|
1997-07-13 06:16:44 +00:00
|
|
|
* Use sigaction() instead of signal() to get unambiguous semantics,
|
|
|
|
* in particular with SA_RESTART not set.
|
1996-12-10 14:41:22 +00:00
|
|
|
*/
|
1997-07-13 06:16:44 +00:00
|
|
|
|
1996-12-08 06:27:09 +00:00
|
|
|
sigemptyset(&si_sa.sa_mask);
|
1996-12-07 20:20:41 +00:00
|
|
|
si_sa.sa_flags = 0;
|
1997-07-13 06:16:44 +00:00
|
|
|
|
|
|
|
si_sa.sa_handler = stopit;
|
|
|
|
if (sigaction(SIGINT, &si_sa, 0) == -1) {
|
|
|
|
err(EX_OSERR, "sigaction SIGINT");
|
|
|
|
}
|
|
|
|
|
|
|
|
si_sa.sa_handler = status;
|
1996-12-07 20:20:41 +00:00
|
|
|
if (sigaction(SIGINFO, &si_sa, 0) == -1) {
|
1997-03-04 22:05:49 +00:00
|
|
|
err(EX_OSERR, "sigaction");
|
1996-12-07 20:20:41 +00:00
|
|
|
}
|
2000-01-20 20:48:51 +00:00
|
|
|
|
|
|
|
if (alarmtimeout > 0) {
|
|
|
|
si_sa.sa_handler = stopit;
|
|
|
|
if (sigaction(SIGALRM, &si_sa, 0) == -1)
|
|
|
|
err(EX_OSERR, "sigaction SIGALRM");
|
|
|
|
}
|
1996-12-07 20:20:41 +00:00
|
|
|
|
1998-05-25 20:16:05 +00:00
|
|
|
bzero(&msg, sizeof(msg));
|
|
|
|
msg.msg_name = (caddr_t)&from;
|
|
|
|
msg.msg_iov = &iov;
|
|
|
|
msg.msg_iovlen = 1;
|
|
|
|
#ifdef SO_TIMESTAMP
|
|
|
|
msg.msg_control = (caddr_t)ctrl;
|
|
|
|
#endif
|
|
|
|
iov.iov_base = packet;
|
|
|
|
iov.iov_len = packlen;
|
|
|
|
|
1996-11-19 03:32:32 +00:00
|
|
|
if (tcgetattr(STDOUT_FILENO, &ts) != -1) {
|
|
|
|
reset_kerninfo = !(ts.c_lflag & NOKERNINFO);
|
|
|
|
ts.c_lflag |= NOKERNINFO;
|
|
|
|
tcsetattr(STDOUT_FILENO, TCSANOW, &ts);
|
|
|
|
}
|
|
|
|
|
2002-01-14 14:33:35 +00:00
|
|
|
if (preload == 0)
|
|
|
|
pinger(); /* send the first ping */
|
|
|
|
else {
|
|
|
|
if (npackets != 0 && preload > npackets)
|
|
|
|
preload = npackets;
|
|
|
|
while (preload--) /* fire off them quickies */
|
|
|
|
pinger();
|
|
|
|
}
|
|
|
|
(void)gettimeofday(&last, NULL);
|
1994-05-26 06:35:07 +00:00
|
|
|
|
1998-05-25 20:16:05 +00:00
|
|
|
if (options & F_FLOOD) {
|
|
|
|
intvl.tv_sec = 0;
|
|
|
|
intvl.tv_usec = 10000;
|
|
|
|
} else {
|
1998-08-26 01:58:39 +00:00
|
|
|
intvl.tv_sec = interval / 1000;
|
|
|
|
intvl.tv_usec = interval % 1000 * 1000;
|
1998-05-25 20:16:05 +00:00
|
|
|
}
|
|
|
|
|
2003-01-23 12:56:10 +00:00
|
|
|
almost_done = 0;
|
1997-07-20 06:09:55 +00:00
|
|
|
while (!finish_up) {
|
2003-01-23 12:56:10 +00:00
|
|
|
struct timeval now, timeout;
|
1998-05-25 20:16:05 +00:00
|
|
|
fd_set rfds;
|
2003-01-23 12:56:10 +00:00
|
|
|
int cc, n;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
1996-12-10 14:41:22 +00:00
|
|
|
check_status();
|
2003-03-05 22:42:03 +00:00
|
|
|
if ((unsigned)s >= FD_SETSIZE)
|
2002-09-09 18:51:59 +00:00
|
|
|
errx(EX_OSERR, "descriptor too large");
|
1998-05-25 20:16:05 +00:00
|
|
|
FD_ZERO(&rfds);
|
|
|
|
FD_SET(s, &rfds);
|
|
|
|
(void)gettimeofday(&now, NULL);
|
|
|
|
timeout.tv_sec = last.tv_sec + intvl.tv_sec - now.tv_sec;
|
|
|
|
timeout.tv_usec = last.tv_usec + intvl.tv_usec - now.tv_usec;
|
|
|
|
while (timeout.tv_usec < 0) {
|
|
|
|
timeout.tv_usec += 1000000;
|
|
|
|
timeout.tv_sec--;
|
|
|
|
}
|
1998-07-15 06:45:02 +00:00
|
|
|
while (timeout.tv_usec >= 1000000) {
|
1998-05-25 20:16:05 +00:00
|
|
|
timeout.tv_usec -= 1000000;
|
|
|
|
timeout.tv_sec++;
|
1994-05-26 06:35:07 +00:00
|
|
|
}
|
1998-05-25 20:16:05 +00:00
|
|
|
if (timeout.tv_sec < 0)
|
|
|
|
timeout.tv_sec = timeout.tv_usec = 0;
|
|
|
|
n = select(s + 1, &rfds, NULL, NULL, &timeout);
|
1999-05-07 14:38:48 +00:00
|
|
|
if (n < 0)
|
|
|
|
continue; /* Must be EINTR. */
|
1998-05-25 20:16:05 +00:00
|
|
|
if (n == 1) {
|
2003-03-05 22:42:03 +00:00
|
|
|
struct timeval *tv = NULL;
|
1998-05-25 20:16:05 +00:00
|
|
|
#ifdef SO_TIMESTAMP
|
|
|
|
struct cmsghdr *cmsg = (struct cmsghdr *)&ctrl;
|
|
|
|
|
|
|
|
msg.msg_controllen = sizeof(ctrl);
|
|
|
|
#endif
|
|
|
|
msg.msg_namelen = sizeof(from);
|
|
|
|
if ((cc = recvmsg(s, &msg, 0)) < 0) {
|
|
|
|
if (errno == EINTR)
|
|
|
|
continue;
|
1998-07-15 06:45:02 +00:00
|
|
|
warn("recvmsg");
|
1994-05-26 06:35:07 +00:00
|
|
|
continue;
|
1998-05-25 20:16:05 +00:00
|
|
|
}
|
|
|
|
#ifdef SO_TIMESTAMP
|
|
|
|
if (cmsg->cmsg_level == SOL_SOCKET &&
|
|
|
|
cmsg->cmsg_type == SCM_TIMESTAMP &&
|
2003-03-05 22:42:03 +00:00
|
|
|
cmsg->cmsg_len == CMSG_LEN(sizeof *tv)) {
|
1998-06-06 23:33:28 +00:00
|
|
|
/* Copy to avoid alignment problems: */
|
2002-09-11 18:16:40 +00:00
|
|
|
memcpy(&now, CMSG_DATA(cmsg), sizeof(now));
|
2003-03-05 22:42:03 +00:00
|
|
|
tv = &now;
|
1998-06-06 23:33:28 +00:00
|
|
|
}
|
1998-05-25 20:16:05 +00:00
|
|
|
#endif
|
2003-03-05 22:42:03 +00:00
|
|
|
if (tv == NULL) {
|
1998-05-25 20:16:05 +00:00
|
|
|
(void)gettimeofday(&now, NULL);
|
2003-03-05 22:42:03 +00:00
|
|
|
tv = &now;
|
1998-05-25 20:16:05 +00:00
|
|
|
}
|
2003-03-05 22:42:03 +00:00
|
|
|
pr_pack((char *)packet, cc, &from, tv);
|
|
|
|
if ((options & F_ONCE && nreceived) ||
|
|
|
|
(npackets && nreceived >= npackets))
|
1998-05-25 20:16:05 +00:00
|
|
|
break;
|
|
|
|
}
|
1999-05-07 14:38:48 +00:00
|
|
|
if (n == 0 || options & F_FLOOD) {
|
1998-05-25 20:16:05 +00:00
|
|
|
if (!npackets || ntransmitted < npackets)
|
|
|
|
pinger();
|
|
|
|
else {
|
|
|
|
if (almost_done)
|
|
|
|
break;
|
|
|
|
almost_done = 1;
|
1999-05-07 14:38:48 +00:00
|
|
|
intvl.tv_usec = 0;
|
1998-05-25 20:16:05 +00:00
|
|
|
if (nreceived) {
|
|
|
|
intvl.tv_sec = 2 * tmax / 1000;
|
|
|
|
if (!intvl.tv_sec)
|
|
|
|
intvl.tv_sec = 1;
|
|
|
|
} else
|
|
|
|
intvl.tv_sec = MAXWAIT;
|
|
|
|
}
|
|
|
|
(void)gettimeofday(&last, NULL);
|
2001-09-25 20:22:33 +00:00
|
|
|
if (ntransmitted - nreceived - 1 > nmissedmax) {
|
|
|
|
nmissedmax = ntransmitted - nreceived - 1;
|
|
|
|
if (options & F_MISSED)
|
|
|
|
(void)write(STDOUT_FILENO, &BBELL, 1);
|
|
|
|
}
|
1994-05-26 06:35:07 +00:00
|
|
|
}
|
|
|
|
}
|
1997-07-20 06:09:55 +00:00
|
|
|
finish();
|
1994-05-26 06:35:07 +00:00
|
|
|
/* NOTREACHED */
|
1997-03-02 06:32:42 +00:00
|
|
|
exit(0); /* Make the compiler happy */
|
1994-05-26 06:35:07 +00:00
|
|
|
}
|
|
|
|
|
1997-07-09 19:40:43 +00:00
|
|
|
/*
|
1997-07-20 06:09:55 +00:00
|
|
|
* stopit --
|
|
|
|
* Set the global bit that causes the main loop to quit.
|
|
|
|
* Do NOT call finish() from here, since finish() does far too much
|
|
|
|
* to be called from a signal handler.
|
1997-07-09 19:40:43 +00:00
|
|
|
*/
|
|
|
|
void
|
1997-07-20 06:09:55 +00:00
|
|
|
stopit(sig)
|
2002-04-02 10:15:32 +00:00
|
|
|
int sig __unused;
|
1997-07-09 19:40:43 +00:00
|
|
|
{
|
2002-03-23 18:10:59 +00:00
|
|
|
|
1997-07-09 19:40:43 +00:00
|
|
|
finish_up = 1;
|
|
|
|
}
|
|
|
|
|
1994-05-26 06:35:07 +00:00
|
|
|
/*
|
|
|
|
* pinger --
|
|
|
|
* Compose and transmit an ICMP ECHO REQUEST packet. The IP packet
|
|
|
|
* will be added on by the kernel. The ID field is our UNIX process ID,
|
2003-03-02 21:24:08 +00:00
|
|
|
* and the sequence number is an ascending integer. The first TIMEVAL_LEN
|
2002-07-05 11:52:54 +00:00
|
|
|
* bytes of the data portion are used to hold a UNIX "timeval" struct in
|
|
|
|
* host byte-order, to compute the round-trip time.
|
1994-05-26 06:35:07 +00:00
|
|
|
*/
|
1997-03-01 20:19:18 +00:00
|
|
|
static void
|
|
|
|
pinger(void)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
2003-03-02 21:24:08 +00:00
|
|
|
struct timeval now;
|
2003-01-23 12:48:12 +00:00
|
|
|
struct ip *ip;
|
2002-03-20 17:55:10 +00:00
|
|
|
struct icmp *icp;
|
2002-03-23 18:10:59 +00:00
|
|
|
int cc, i;
|
2003-01-23 12:48:12 +00:00
|
|
|
u_char *packet;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2003-01-23 12:48:12 +00:00
|
|
|
packet = outpack;
|
1994-05-26 06:35:07 +00:00
|
|
|
icp = (struct icmp *)outpack;
|
2003-03-02 21:24:08 +00:00
|
|
|
icp->icmp_type = icmp_type;
|
1994-05-26 06:35:07 +00:00
|
|
|
icp->icmp_code = 0;
|
|
|
|
icp->icmp_cksum = 0;
|
2002-02-27 22:37:22 +00:00
|
|
|
icp->icmp_seq = htons(ntransmitted);
|
1994-05-26 06:35:07 +00:00
|
|
|
icp->icmp_id = ident; /* ID */
|
|
|
|
|
2002-02-27 22:37:22 +00:00
|
|
|
CLR(ntransmitted % mx_dup_ck);
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2003-03-02 21:24:08 +00:00
|
|
|
if ((options & F_TIME) || timing) {
|
|
|
|
(void)gettimeofday(&now, NULL);
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2003-03-02 21:24:08 +00:00
|
|
|
if (options & F_TIME)
|
|
|
|
icp->icmp_otime = htonl((now.tv_sec % (24*60*60))
|
|
|
|
* 1000 + now.tv_usec / 1000);
|
|
|
|
if (timing)
|
|
|
|
bcopy((void *)&now, (void *)&outpack[MINICMPLEN + timeoffset],
|
|
|
|
sizeof(struct timeval));
|
|
|
|
}
|
|
|
|
|
|
|
|
cc = MINICMPLEN + datalen + timeoffset;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
/* compute ICMP checksum here */
|
|
|
|
icp->icmp_cksum = in_cksum((u_short *)icp, cc);
|
|
|
|
|
2003-01-23 12:48:12 +00:00
|
|
|
if (options & F_HDRINCL) {
|
|
|
|
cc += sizeof(struct ip);
|
|
|
|
ip = (struct ip *)outpackhdr;
|
|
|
|
ip->ip_len = cc;
|
|
|
|
ip->ip_sum = in_cksum((u_short *)outpackhdr, cc);
|
|
|
|
packet = outpackhdr;
|
|
|
|
}
|
|
|
|
i = sendto(s, (char *)packet, cc, 0, (struct sockaddr *)&whereto,
|
2001-07-07 19:09:21 +00:00
|
|
|
sizeof(whereto));
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
if (i < 0 || i != cc) {
|
1997-03-01 20:19:18 +00:00
|
|
|
if (i < 0) {
|
1997-07-20 06:09:55 +00:00
|
|
|
if (options & F_FLOOD && errno == ENOBUFS) {
|
1997-07-09 19:40:43 +00:00
|
|
|
usleep(FLOOD_BACKOFF);
|
|
|
|
return;
|
|
|
|
}
|
1997-03-01 20:19:18 +00:00
|
|
|
warn("sendto");
|
|
|
|
} else {
|
|
|
|
warn("%s: partial write: %d of %d bytes",
|
1998-04-15 19:55:14 +00:00
|
|
|
hostname, i, cc);
|
1997-03-01 20:19:18 +00:00
|
|
|
}
|
1997-08-07 02:41:15 +00:00
|
|
|
}
|
|
|
|
ntransmitted++;
|
1994-05-26 06:35:07 +00:00
|
|
|
if (!(options & F_QUIET) && options & F_FLOOD)
|
|
|
|
(void)write(STDOUT_FILENO, &DOT, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* pr_pack --
|
|
|
|
* Print out the packet, if it came from us. This logic is necessary
|
|
|
|
* because ALL readers of the ICMP socket get a copy of ALL ICMP packets
|
|
|
|
* which arrive ('tis only fair). This permits multiple copies of this
|
|
|
|
* program to be run without having intermingled output (or statistics!).
|
|
|
|
*/
|
1997-03-01 20:19:18 +00:00
|
|
|
static void
|
1998-05-25 20:16:05 +00:00
|
|
|
pr_pack(buf, cc, from, tv)
|
1994-05-26 06:35:07 +00:00
|
|
|
char *buf;
|
|
|
|
int cc;
|
|
|
|
struct sockaddr_in *from;
|
1998-05-25 20:16:05 +00:00
|
|
|
struct timeval *tv;
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
2002-09-11 18:16:40 +00:00
|
|
|
struct in_addr ina;
|
|
|
|
u_char *cp, *dp;
|
2002-03-20 17:55:10 +00:00
|
|
|
struct icmp *icp;
|
1994-05-26 06:35:07 +00:00
|
|
|
struct ip *ip;
|
2002-09-11 18:12:29 +00:00
|
|
|
const void *tp;
|
1997-07-20 06:09:55 +00:00
|
|
|
double triptime;
|
2002-03-23 18:10:59 +00:00
|
|
|
int dupflag, hlen, i, j, seq;
|
|
|
|
static int old_rrlen;
|
|
|
|
static char old_rr[MAX_IPOPTLEN];
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
/* Check the IP header */
|
|
|
|
ip = (struct ip *)buf;
|
|
|
|
hlen = ip->ip_hl << 2;
|
|
|
|
if (cc < hlen + ICMP_MINLEN) {
|
|
|
|
if (options & F_VERBOSE)
|
1997-03-01 20:19:18 +00:00
|
|
|
warn("packet too short (%d bytes) from %s", cc,
|
|
|
|
inet_ntoa(from->sin_addr));
|
1994-05-26 06:35:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now the ICMP part */
|
|
|
|
cc -= hlen;
|
|
|
|
icp = (struct icmp *)(buf + hlen);
|
2003-03-02 21:24:08 +00:00
|
|
|
if (icp->icmp_type == icmp_type_rsp) {
|
1994-05-26 06:35:07 +00:00
|
|
|
if (icp->icmp_id != ident)
|
|
|
|
return; /* 'Twas not our ECHO */
|
|
|
|
++nreceived;
|
1997-07-20 06:09:55 +00:00
|
|
|
triptime = 0.0;
|
1994-05-26 06:35:07 +00:00
|
|
|
if (timing) {
|
1998-05-16 00:19:27 +00:00
|
|
|
struct timeval tv1;
|
1994-05-26 06:35:07 +00:00
|
|
|
#ifndef icmp_data
|
2002-09-11 18:12:29 +00:00
|
|
|
tp = &icp->icmp_ip;
|
1994-05-26 06:35:07 +00:00
|
|
|
#else
|
2002-09-11 18:12:29 +00:00
|
|
|
tp = icp->icmp_data;
|
1994-05-26 06:35:07 +00:00
|
|
|
#endif
|
2003-03-02 21:24:08 +00:00
|
|
|
tp+=timeoffset;
|
2003-01-28 22:53:24 +00:00
|
|
|
|
2002-09-11 18:12:29 +00:00
|
|
|
/* Copy to avoid alignment problems: */
|
|
|
|
memcpy(&tv1, tp, sizeof(tv1));
|
1998-05-25 20:16:05 +00:00
|
|
|
tvsub(tv, &tv1);
|
|
|
|
triptime = ((double)tv->tv_sec) * 1000.0 +
|
|
|
|
((double)tv->tv_usec) / 1000.0;
|
1994-05-26 06:35:07 +00:00
|
|
|
tsum += triptime;
|
1997-07-18 17:52:05 +00:00
|
|
|
tsumsq += triptime * triptime;
|
1994-05-26 06:35:07 +00:00
|
|
|
if (triptime < tmin)
|
|
|
|
tmin = triptime;
|
|
|
|
if (triptime > tmax)
|
|
|
|
tmax = triptime;
|
|
|
|
}
|
|
|
|
|
2002-02-27 22:37:22 +00:00
|
|
|
seq = ntohs(icp->icmp_seq);
|
|
|
|
|
|
|
|
if (TST(seq % mx_dup_ck)) {
|
1994-05-26 06:35:07 +00:00
|
|
|
++nrepeats;
|
|
|
|
--nreceived;
|
|
|
|
dupflag = 1;
|
|
|
|
} else {
|
2002-02-27 22:37:22 +00:00
|
|
|
SET(seq % mx_dup_ck);
|
1994-05-26 06:35:07 +00:00
|
|
|
dupflag = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options & F_QUIET)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (options & F_FLOOD)
|
|
|
|
(void)write(STDOUT_FILENO, &BSPACE, 1);
|
|
|
|
else {
|
|
|
|
(void)printf("%d bytes from %s: icmp_seq=%u", cc,
|
|
|
|
inet_ntoa(*(struct in_addr *)&from->sin_addr.s_addr),
|
2002-02-27 22:37:22 +00:00
|
|
|
seq);
|
1994-05-26 06:35:07 +00:00
|
|
|
(void)printf(" ttl=%d", ip->ip_ttl);
|
|
|
|
if (timing)
|
1994-08-05 10:34:19 +00:00
|
|
|
(void)printf(" time=%.3f ms", triptime);
|
1994-05-26 06:35:07 +00:00
|
|
|
if (dupflag)
|
|
|
|
(void)printf(" (DUP!)");
|
1997-02-08 01:43:56 +00:00
|
|
|
if (options & F_AUDIBLE)
|
2001-05-24 09:17:52 +00:00
|
|
|
(void)write(STDOUT_FILENO, &BBELL, 1);
|
2003-01-28 22:53:24 +00:00
|
|
|
if (options & F_MASK) {
|
|
|
|
/* Just prentend this cast isn't ugly */
|
|
|
|
(void)printf(" mask=%s",
|
|
|
|
pr_addr(*(struct in_addr *)&(icp->icmp_mask)));
|
|
|
|
}
|
2003-03-02 21:24:08 +00:00
|
|
|
if (options & F_TIME) {
|
|
|
|
(void)printf(" tso=%s", pr_ntime(icp->icmp_otime));
|
|
|
|
(void)printf(" tsr=%s", pr_ntime(icp->icmp_rtime));
|
|
|
|
(void)printf(" tst=%s", pr_ntime(icp->icmp_ttime));
|
|
|
|
}
|
1994-05-26 06:35:07 +00:00
|
|
|
/* check the data */
|
2003-03-02 21:24:08 +00:00
|
|
|
cp = (u_char*)&icp->icmp_data[phdr_len];
|
|
|
|
dp = &outpack[MINICMPLEN + phdr_len];
|
|
|
|
for (i = phdr_len; i < datalen; ++i, ++cp, ++dp) {
|
1994-05-26 06:35:07 +00:00
|
|
|
if (*cp != *dp) {
|
|
|
|
(void)printf("\nwrong data byte #%d should be 0x%x but was 0x%x",
|
|
|
|
i, *dp, *cp);
|
2002-04-02 09:36:46 +00:00
|
|
|
(void)printf("\ncp:");
|
1994-05-26 06:35:07 +00:00
|
|
|
cp = (u_char*)&icp->icmp_data[0];
|
1998-05-16 00:19:27 +00:00
|
|
|
for (i = 0; i < datalen; ++i, ++cp) {
|
|
|
|
if ((i % 32) == 8)
|
|
|
|
(void)printf("\n\t");
|
|
|
|
(void)printf("%x ", *cp);
|
|
|
|
}
|
2002-04-02 09:36:46 +00:00
|
|
|
(void)printf("\ndp:");
|
2002-07-05 11:52:54 +00:00
|
|
|
cp = &outpack[MINICMPLEN];
|
1998-05-16 00:19:27 +00:00
|
|
|
for (i = 0; i < datalen; ++i, ++cp) {
|
1994-05-26 06:35:07 +00:00
|
|
|
if ((i % 32) == 8)
|
|
|
|
(void)printf("\n\t");
|
|
|
|
(void)printf("%x ", *cp);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
1996-08-20 23:50:16 +00:00
|
|
|
/*
|
|
|
|
* We've got something other than an ECHOREPLY.
|
|
|
|
* See if it's a reply to something that we sent.
|
|
|
|
* We can compare IP destination, protocol,
|
|
|
|
* and ICMP type and ID.
|
1997-03-02 06:32:42 +00:00
|
|
|
*
|
|
|
|
* Only print all the error messages if we are running
|
2002-04-02 09:36:46 +00:00
|
|
|
* as root to avoid leaking information not normally
|
1997-03-02 06:32:42 +00:00
|
|
|
* available to those not running as root.
|
1996-08-20 23:50:16 +00:00
|
|
|
*/
|
|
|
|
#ifndef icmp_data
|
|
|
|
struct ip *oip = &icp->icmp_ip;
|
|
|
|
#else
|
|
|
|
struct ip *oip = (struct ip *)icp->icmp_data;
|
|
|
|
#endif
|
|
|
|
struct icmp *oicmp = (struct icmp *)(oip + 1);
|
|
|
|
|
1997-03-02 20:01:13 +00:00
|
|
|
if (((options & F_VERBOSE) && uid == 0) ||
|
1996-08-20 23:50:16 +00:00
|
|
|
(!(options & F_QUIET2) &&
|
2001-07-07 19:09:21 +00:00
|
|
|
(oip->ip_dst.s_addr == whereto.sin_addr.s_addr) &&
|
1996-08-20 23:50:16 +00:00
|
|
|
(oip->ip_p == IPPROTO_ICMP) &&
|
|
|
|
(oicmp->icmp_type == ICMP_ECHO) &&
|
|
|
|
(oicmp->icmp_id == ident))) {
|
|
|
|
(void)printf("%d bytes from %s: ", cc,
|
1997-03-01 20:19:18 +00:00
|
|
|
pr_addr(from->sin_addr));
|
1996-08-20 23:50:16 +00:00
|
|
|
pr_icmph(icp);
|
|
|
|
} else
|
|
|
|
return;
|
1994-05-26 06:35:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Display any IP options */
|
|
|
|
cp = (u_char *)buf + sizeof(struct ip);
|
|
|
|
|
|
|
|
for (; hlen > (int)sizeof(struct ip); --hlen, ++cp)
|
|
|
|
switch (*cp) {
|
|
|
|
case IPOPT_EOL:
|
|
|
|
hlen = 0;
|
|
|
|
break;
|
|
|
|
case IPOPT_LSRR:
|
2003-01-23 12:42:56 +00:00
|
|
|
case IPOPT_SSRR:
|
|
|
|
(void)printf(*cp == IPOPT_LSRR ?
|
|
|
|
"\nLSRR: " : "\nSSRR: ");
|
2002-07-05 11:47:33 +00:00
|
|
|
j = cp[IPOPT_OLEN] - IPOPT_MINOFF + 1;
|
1994-05-26 06:35:07 +00:00
|
|
|
hlen -= 2;
|
2002-07-05 11:47:33 +00:00
|
|
|
cp += 2;
|
2002-10-21 11:43:46 +00:00
|
|
|
if (j >= INADDR_LEN &&
|
|
|
|
j <= hlen - (int)sizeof(struct ip)) {
|
1994-05-26 06:35:07 +00:00
|
|
|
for (;;) {
|
2002-07-05 11:47:33 +00:00
|
|
|
bcopy(++cp, &ina.s_addr, INADDR_LEN);
|
|
|
|
if (ina.s_addr == 0)
|
2002-04-02 09:36:46 +00:00
|
|
|
(void)printf("\t0.0.0.0");
|
2002-07-05 11:47:33 +00:00
|
|
|
else
|
2002-04-02 09:36:46 +00:00
|
|
|
(void)printf("\t%s",
|
|
|
|
pr_addr(ina));
|
2002-07-05 11:47:33 +00:00
|
|
|
hlen -= INADDR_LEN;
|
|
|
|
cp += INADDR_LEN - 1;
|
|
|
|
j -= INADDR_LEN;
|
|
|
|
if (j < INADDR_LEN)
|
|
|
|
break;
|
|
|
|
(void)putchar('\n');
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
(void)printf("\t(truncated route)\n");
|
1994-05-26 06:35:07 +00:00
|
|
|
break;
|
|
|
|
case IPOPT_RR:
|
2002-07-05 11:47:33 +00:00
|
|
|
j = cp[IPOPT_OLEN]; /* get length */
|
|
|
|
i = cp[IPOPT_OFFSET]; /* and pointer */
|
1994-05-26 06:35:07 +00:00
|
|
|
hlen -= 2;
|
2002-07-05 11:47:33 +00:00
|
|
|
cp += 2;
|
1994-05-26 06:35:07 +00:00
|
|
|
if (i > j)
|
|
|
|
i = j;
|
2002-07-05 11:47:33 +00:00
|
|
|
i = i - IPOPT_MINOFF + 1;
|
|
|
|
if (i < 0 || i > (hlen - (int)sizeof(struct ip))) {
|
|
|
|
old_rrlen = 0;
|
1994-05-26 06:35:07 +00:00
|
|
|
continue;
|
2002-07-05 11:47:33 +00:00
|
|
|
}
|
1994-05-26 06:35:07 +00:00
|
|
|
if (i == old_rrlen
|
|
|
|
&& !bcmp((char *)cp, old_rr, i)
|
|
|
|
&& !(options & F_FLOOD)) {
|
|
|
|
(void)printf("\t(same route)");
|
|
|
|
hlen -= i;
|
|
|
|
cp += i;
|
|
|
|
break;
|
|
|
|
}
|
2002-07-05 11:47:33 +00:00
|
|
|
old_rrlen = i;
|
|
|
|
bcopy((char *)cp, old_rr, i);
|
1994-05-26 06:35:07 +00:00
|
|
|
(void)printf("\nRR: ");
|
2002-07-05 11:47:33 +00:00
|
|
|
if (i >= INADDR_LEN &&
|
|
|
|
i <= hlen - (int)sizeof(struct ip)) {
|
|
|
|
for (;;) {
|
|
|
|
bcopy(++cp, &ina.s_addr, INADDR_LEN);
|
|
|
|
if (ina.s_addr == 0)
|
|
|
|
(void)printf("\t0.0.0.0");
|
|
|
|
else
|
|
|
|
(void)printf("\t%s",
|
|
|
|
pr_addr(ina));
|
|
|
|
hlen -= INADDR_LEN;
|
|
|
|
cp += INADDR_LEN - 1;
|
|
|
|
i -= INADDR_LEN;
|
|
|
|
if (i < INADDR_LEN)
|
|
|
|
break;
|
|
|
|
(void)putchar('\n');
|
1998-04-01 00:32:18 +00:00
|
|
|
}
|
2002-07-05 11:47:33 +00:00
|
|
|
} else
|
|
|
|
(void)printf("\t(truncated route)");
|
1994-05-26 06:35:07 +00:00
|
|
|
break;
|
|
|
|
case IPOPT_NOP:
|
|
|
|
(void)printf("\nNOP");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
(void)printf("\nunknown option %x", *cp);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!(options & F_FLOOD)) {
|
|
|
|
(void)putchar('\n');
|
|
|
|
(void)fflush(stdout);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* in_cksum --
|
|
|
|
* Checksum routine for Internet Protocol family headers (C Version)
|
|
|
|
*/
|
1997-03-01 20:19:18 +00:00
|
|
|
u_short
|
1994-05-26 06:35:07 +00:00
|
|
|
in_cksum(addr, len)
|
|
|
|
u_short *addr;
|
|
|
|
int len;
|
|
|
|
{
|
2002-03-23 18:10:59 +00:00
|
|
|
int nleft, sum;
|
|
|
|
u_short *w;
|
1999-11-15 20:04:53 +00:00
|
|
|
union {
|
1999-11-18 10:20:45 +00:00
|
|
|
u_short us;
|
|
|
|
u_char uc[2];
|
|
|
|
} last;
|
|
|
|
u_short answer;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2002-03-23 18:10:59 +00:00
|
|
|
nleft = len;
|
|
|
|
sum = 0;
|
|
|
|
w = addr;
|
|
|
|
|
1994-05-26 06:35:07 +00:00
|
|
|
/*
|
|
|
|
* Our algorithm is simple, using a 32 bit accumulator (sum), we add
|
|
|
|
* sequential 16 bit words to it, and at the end, fold back all the
|
|
|
|
* carry bits from the top 16 bits into the lower 16 bits.
|
|
|
|
*/
|
|
|
|
while (nleft > 1) {
|
|
|
|
sum += *w++;
|
|
|
|
nleft -= 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* mop up an odd byte, if necessary */
|
|
|
|
if (nleft == 1) {
|
1999-11-18 10:20:45 +00:00
|
|
|
last.uc[0] = *(u_char *)w;
|
|
|
|
last.uc[1] = 0;
|
|
|
|
sum += last.us;
|
1994-05-26 06:35:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* add back carry outs from top 16 bits to low 16 bits */
|
|
|
|
sum = (sum >> 16) + (sum & 0xffff); /* add hi 16 to low 16 */
|
|
|
|
sum += (sum >> 16); /* add carry */
|
1999-11-18 10:20:45 +00:00
|
|
|
answer = ~sum; /* truncate to 16 bits */
|
|
|
|
return(answer);
|
1994-05-26 06:35:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* tvsub --
|
|
|
|
* Subtract 2 timeval structs: out = out - in. Out is assumed to
|
|
|
|
* be >= in.
|
|
|
|
*/
|
1997-03-01 20:19:18 +00:00
|
|
|
static void
|
1994-05-26 06:35:07 +00:00
|
|
|
tvsub(out, in)
|
2002-03-20 17:55:10 +00:00
|
|
|
struct timeval *out, *in;
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
2002-03-23 18:10:59 +00:00
|
|
|
|
1994-05-26 06:35:07 +00:00
|
|
|
if ((out->tv_usec -= in->tv_usec) < 0) {
|
|
|
|
--out->tv_sec;
|
|
|
|
out->tv_usec += 1000000;
|
|
|
|
}
|
|
|
|
out->tv_sec -= in->tv_sec;
|
|
|
|
}
|
|
|
|
|
1994-10-22 17:30:35 +00:00
|
|
|
/*
|
|
|
|
* status --
|
|
|
|
* Print out statistics when SIGINFO is received.
|
|
|
|
*/
|
|
|
|
|
1997-03-01 20:19:18 +00:00
|
|
|
static void
|
1996-12-10 14:41:22 +00:00
|
|
|
status(sig)
|
2002-04-02 10:15:32 +00:00
|
|
|
int sig __unused;
|
1996-12-10 14:41:22 +00:00
|
|
|
{
|
2002-03-23 18:10:59 +00:00
|
|
|
|
1996-12-07 20:20:41 +00:00
|
|
|
siginfo_p = 1;
|
|
|
|
}
|
|
|
|
|
1997-03-01 20:19:18 +00:00
|
|
|
static void
|
1996-12-07 20:20:41 +00:00
|
|
|
check_status()
|
1994-10-22 17:30:35 +00:00
|
|
|
{
|
2002-03-23 18:10:59 +00:00
|
|
|
|
1996-12-07 20:20:41 +00:00
|
|
|
if (siginfo_p) {
|
|
|
|
siginfo_p = 0;
|
1996-12-10 14:41:22 +00:00
|
|
|
(void)fprintf(stderr,
|
|
|
|
"\r%ld/%ld packets received (%.0f%%) %.3f min / %.3f avg / %.3f max\n",
|
|
|
|
nreceived, ntransmitted,
|
|
|
|
ntransmitted ? nreceived * 100.0 / ntransmitted : 0.0,
|
|
|
|
nreceived ? tmin : 0.0,
|
|
|
|
nreceived + nrepeats ? tsum / (nreceived + nrepeats) : tsum,
|
|
|
|
tmax);
|
1996-12-07 20:20:41 +00:00
|
|
|
}
|
1994-10-22 17:30:35 +00:00
|
|
|
}
|
|
|
|
|
1994-05-26 06:35:07 +00:00
|
|
|
/*
|
|
|
|
* finish --
|
|
|
|
* Print out statistics, and give up.
|
|
|
|
*/
|
1997-03-01 20:19:18 +00:00
|
|
|
static void
|
1997-07-20 06:09:55 +00:00
|
|
|
finish()
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
1994-10-22 17:30:35 +00:00
|
|
|
struct termios ts;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
(void)signal(SIGINT, SIG_IGN);
|
1997-07-13 06:16:44 +00:00
|
|
|
(void)signal(SIGALRM, SIG_IGN);
|
1994-05-26 06:35:07 +00:00
|
|
|
(void)putchar('\n');
|
|
|
|
(void)fflush(stdout);
|
|
|
|
(void)printf("--- %s ping statistics ---\n", hostname);
|
|
|
|
(void)printf("%ld packets transmitted, ", ntransmitted);
|
|
|
|
(void)printf("%ld packets received, ", nreceived);
|
|
|
|
if (nrepeats)
|
|
|
|
(void)printf("+%ld duplicates, ", nrepeats);
|
1999-04-25 22:33:30 +00:00
|
|
|
if (ntransmitted) {
|
1994-05-26 06:35:07 +00:00
|
|
|
if (nreceived > ntransmitted)
|
|
|
|
(void)printf("-- somebody's printing up packets!");
|
|
|
|
else
|
|
|
|
(void)printf("%d%% packet loss",
|
2002-04-02 09:36:46 +00:00
|
|
|
(int)(((ntransmitted - nreceived) * 100) /
|
1994-05-26 06:35:07 +00:00
|
|
|
ntransmitted));
|
1999-04-25 22:33:30 +00:00
|
|
|
}
|
1994-05-26 06:35:07 +00:00
|
|
|
(void)putchar('\n');
|
1997-07-18 17:52:05 +00:00
|
|
|
if (nreceived && timing) {
|
|
|
|
double n = nreceived + nrepeats;
|
|
|
|
double avg = tsum / n;
|
|
|
|
double vari = tsumsq / n - avg * avg;
|
2002-04-02 09:36:46 +00:00
|
|
|
(void)printf(
|
|
|
|
"round-trip min/avg/max/stddev = %.3f/%.3f/%.3f/%.3f ms\n",
|
1997-07-18 17:52:05 +00:00
|
|
|
tmin, avg, tmax, sqrt(vari));
|
|
|
|
}
|
1996-11-04 17:25:03 +00:00
|
|
|
if (reset_kerninfo && tcgetattr(STDOUT_FILENO, &ts) != -1) {
|
1994-10-22 17:30:35 +00:00
|
|
|
ts.c_lflag &= ~NOKERNINFO;
|
1996-11-04 17:25:03 +00:00
|
|
|
tcsetattr(STDOUT_FILENO, TCSANOW, &ts);
|
1994-10-22 17:30:35 +00:00
|
|
|
}
|
|
|
|
|
1995-05-30 06:12:45 +00:00
|
|
|
if (nreceived)
|
1994-11-29 16:09:56 +00:00
|
|
|
exit(0);
|
|
|
|
else
|
|
|
|
exit(2);
|
1994-05-26 06:35:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef notdef
|
|
|
|
static char *ttab[] = {
|
|
|
|
"Echo Reply", /* ip + seq + udata */
|
|
|
|
"Dest Unreachable", /* net, host, proto, port, frag, sr + IP */
|
|
|
|
"Source Quench", /* IP */
|
|
|
|
"Redirect", /* redirect type, gateway, + IP */
|
|
|
|
"Echo",
|
|
|
|
"Time Exceeded", /* transit, frag reassem + IP */
|
|
|
|
"Parameter Problem", /* pointer + IP */
|
|
|
|
"Timestamp", /* id + seq + three timestamps */
|
|
|
|
"Timestamp Reply", /* " */
|
|
|
|
"Info Request", /* id + sq */
|
|
|
|
"Info Reply" /* " */
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* pr_icmph --
|
|
|
|
* Print a descriptive string about an ICMP header.
|
|
|
|
*/
|
1997-03-01 20:19:18 +00:00
|
|
|
static void
|
1994-05-26 06:35:07 +00:00
|
|
|
pr_icmph(icp)
|
|
|
|
struct icmp *icp;
|
|
|
|
{
|
2002-03-23 18:10:59 +00:00
|
|
|
|
1994-05-26 06:35:07 +00:00
|
|
|
switch(icp->icmp_type) {
|
|
|
|
case ICMP_ECHOREPLY:
|
|
|
|
(void)printf("Echo Reply\n");
|
|
|
|
/* XXX ID + Seq + Data */
|
|
|
|
break;
|
|
|
|
case ICMP_UNREACH:
|
|
|
|
switch(icp->icmp_code) {
|
|
|
|
case ICMP_UNREACH_NET:
|
|
|
|
(void)printf("Destination Net Unreachable\n");
|
|
|
|
break;
|
|
|
|
case ICMP_UNREACH_HOST:
|
|
|
|
(void)printf("Destination Host Unreachable\n");
|
|
|
|
break;
|
|
|
|
case ICMP_UNREACH_PROTOCOL:
|
|
|
|
(void)printf("Destination Protocol Unreachable\n");
|
|
|
|
break;
|
|
|
|
case ICMP_UNREACH_PORT:
|
|
|
|
(void)printf("Destination Port Unreachable\n");
|
|
|
|
break;
|
|
|
|
case ICMP_UNREACH_NEEDFRAG:
|
1996-08-20 23:50:16 +00:00
|
|
|
(void)printf("frag needed and DF set (MTU %d)\n",
|
1997-08-11 04:33:07 +00:00
|
|
|
ntohs(icp->icmp_nextmtu));
|
1994-05-26 06:35:07 +00:00
|
|
|
break;
|
|
|
|
case ICMP_UNREACH_SRCFAIL:
|
|
|
|
(void)printf("Source Route Failed\n");
|
|
|
|
break;
|
1996-08-20 23:50:16 +00:00
|
|
|
case ICMP_UNREACH_FILTER_PROHIB:
|
|
|
|
(void)printf("Communication prohibited by filter\n");
|
|
|
|
break;
|
1994-05-26 06:35:07 +00:00
|
|
|
default:
|
|
|
|
(void)printf("Dest Unreachable, Bad Code: %d\n",
|
|
|
|
icp->icmp_code);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* Print returned IP header information */
|
|
|
|
#ifndef icmp_data
|
|
|
|
pr_retip(&icp->icmp_ip);
|
|
|
|
#else
|
|
|
|
pr_retip((struct ip *)icp->icmp_data);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case ICMP_SOURCEQUENCH:
|
|
|
|
(void)printf("Source Quench\n");
|
|
|
|
#ifndef icmp_data
|
|
|
|
pr_retip(&icp->icmp_ip);
|
|
|
|
#else
|
|
|
|
pr_retip((struct ip *)icp->icmp_data);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case ICMP_REDIRECT:
|
|
|
|
switch(icp->icmp_code) {
|
|
|
|
case ICMP_REDIRECT_NET:
|
|
|
|
(void)printf("Redirect Network");
|
|
|
|
break;
|
|
|
|
case ICMP_REDIRECT_HOST:
|
|
|
|
(void)printf("Redirect Host");
|
|
|
|
break;
|
|
|
|
case ICMP_REDIRECT_TOSNET:
|
|
|
|
(void)printf("Redirect Type of Service and Network");
|
|
|
|
break;
|
|
|
|
case ICMP_REDIRECT_TOSHOST:
|
|
|
|
(void)printf("Redirect Type of Service and Host");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
(void)printf("Redirect, Bad Code: %d", icp->icmp_code);
|
|
|
|
break;
|
|
|
|
}
|
1997-08-11 04:33:07 +00:00
|
|
|
(void)printf("(New addr: %s)\n", inet_ntoa(icp->icmp_gwaddr));
|
1994-05-26 06:35:07 +00:00
|
|
|
#ifndef icmp_data
|
|
|
|
pr_retip(&icp->icmp_ip);
|
|
|
|
#else
|
|
|
|
pr_retip((struct ip *)icp->icmp_data);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case ICMP_ECHO:
|
|
|
|
(void)printf("Echo Request\n");
|
|
|
|
/* XXX ID + Seq + Data */
|
|
|
|
break;
|
|
|
|
case ICMP_TIMXCEED:
|
|
|
|
switch(icp->icmp_code) {
|
|
|
|
case ICMP_TIMXCEED_INTRANS:
|
|
|
|
(void)printf("Time to live exceeded\n");
|
|
|
|
break;
|
|
|
|
case ICMP_TIMXCEED_REASS:
|
|
|
|
(void)printf("Frag reassembly time exceeded\n");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
(void)printf("Time exceeded, Bad Code: %d\n",
|
|
|
|
icp->icmp_code);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#ifndef icmp_data
|
|
|
|
pr_retip(&icp->icmp_ip);
|
|
|
|
#else
|
|
|
|
pr_retip((struct ip *)icp->icmp_data);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case ICMP_PARAMPROB:
|
|
|
|
(void)printf("Parameter problem: pointer = 0x%02x\n",
|
|
|
|
icp->icmp_hun.ih_pptr);
|
|
|
|
#ifndef icmp_data
|
|
|
|
pr_retip(&icp->icmp_ip);
|
|
|
|
#else
|
|
|
|
pr_retip((struct ip *)icp->icmp_data);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case ICMP_TSTAMP:
|
|
|
|
(void)printf("Timestamp\n");
|
|
|
|
/* XXX ID + Seq + 3 timestamps */
|
|
|
|
break;
|
|
|
|
case ICMP_TSTAMPREPLY:
|
|
|
|
(void)printf("Timestamp Reply\n");
|
|
|
|
/* XXX ID + Seq + 3 timestamps */
|
|
|
|
break;
|
|
|
|
case ICMP_IREQ:
|
|
|
|
(void)printf("Information Request\n");
|
|
|
|
/* XXX ID + Seq */
|
|
|
|
break;
|
|
|
|
case ICMP_IREQREPLY:
|
|
|
|
(void)printf("Information Reply\n");
|
|
|
|
/* XXX ID + Seq */
|
|
|
|
break;
|
|
|
|
case ICMP_MASKREQ:
|
|
|
|
(void)printf("Address Mask Request\n");
|
|
|
|
break;
|
|
|
|
case ICMP_MASKREPLY:
|
|
|
|
(void)printf("Address Mask Reply\n");
|
|
|
|
break;
|
1996-08-20 23:50:16 +00:00
|
|
|
case ICMP_ROUTERADVERT:
|
|
|
|
(void)printf("Router Advertisement\n");
|
|
|
|
break;
|
|
|
|
case ICMP_ROUTERSOLICIT:
|
|
|
|
(void)printf("Router Solicitation\n");
|
|
|
|
break;
|
1994-05-26 06:35:07 +00:00
|
|
|
default:
|
|
|
|
(void)printf("Bad ICMP type: %d\n", icp->icmp_type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* pr_iph --
|
|
|
|
* Print an IP header with options.
|
|
|
|
*/
|
1997-03-01 20:19:18 +00:00
|
|
|
static void
|
1994-05-26 06:35:07 +00:00
|
|
|
pr_iph(ip)
|
|
|
|
struct ip *ip;
|
|
|
|
{
|
|
|
|
u_char *cp;
|
2002-03-23 18:10:59 +00:00
|
|
|
int hlen;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
hlen = ip->ip_hl << 2;
|
|
|
|
cp = (u_char *)ip + 20; /* point to options */
|
|
|
|
|
1996-08-20 23:50:16 +00:00
|
|
|
(void)printf("Vr HL TOS Len ID Flg off TTL Pro cks Src Dst\n");
|
1994-05-26 06:35:07 +00:00
|
|
|
(void)printf(" %1x %1x %02x %04x %04x",
|
1996-08-20 23:50:16 +00:00
|
|
|
ip->ip_v, ip->ip_hl, ip->ip_tos, ntohs(ip->ip_len),
|
|
|
|
ntohs(ip->ip_id));
|
1998-05-16 00:19:27 +00:00
|
|
|
(void)printf(" %1lx %04lx",
|
|
|
|
(u_long) (ntohl(ip->ip_off) & 0xe000) >> 13,
|
|
|
|
(u_long) ntohl(ip->ip_off) & 0x1fff);
|
1996-08-20 23:50:16 +00:00
|
|
|
(void)printf(" %02x %02x %04x", ip->ip_ttl, ip->ip_p,
|
|
|
|
ntohs(ip->ip_sum));
|
1994-05-26 06:35:07 +00:00
|
|
|
(void)printf(" %s ", inet_ntoa(*(struct in_addr *)&ip->ip_src.s_addr));
|
|
|
|
(void)printf(" %s ", inet_ntoa(*(struct in_addr *)&ip->ip_dst.s_addr));
|
1996-08-20 23:50:16 +00:00
|
|
|
/* dump any option bytes */
|
1994-05-26 06:35:07 +00:00
|
|
|
while (hlen-- > 20) {
|
|
|
|
(void)printf("%02x", *cp++);
|
|
|
|
}
|
|
|
|
(void)putchar('\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* pr_addr --
|
|
|
|
* Return an ascii host address as a dotted quad and optionally with
|
|
|
|
* a hostname.
|
|
|
|
*/
|
1997-03-01 20:19:18 +00:00
|
|
|
static char *
|
|
|
|
pr_addr(ina)
|
|
|
|
struct in_addr ina;
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
|
|
|
struct hostent *hp;
|
1997-03-02 06:32:42 +00:00
|
|
|
static char buf[16 + 3 + MAXHOSTNAMELEN];
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
if ((options & F_NUMERIC) ||
|
1997-03-01 20:19:18 +00:00
|
|
|
!(hp = gethostbyaddr((char *)&ina, 4, AF_INET)))
|
|
|
|
return inet_ntoa(ina);
|
1994-05-26 06:35:07 +00:00
|
|
|
else
|
1996-07-28 20:29:10 +00:00
|
|
|
(void)snprintf(buf, sizeof(buf), "%s (%s)", hp->h_name,
|
1997-03-01 20:19:18 +00:00
|
|
|
inet_ntoa(ina));
|
1994-05-26 06:35:07 +00:00
|
|
|
return(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* pr_retip --
|
|
|
|
* Dump some info on a returned (via ICMP) IP packet.
|
|
|
|
*/
|
1997-03-01 20:19:18 +00:00
|
|
|
static void
|
1994-05-26 06:35:07 +00:00
|
|
|
pr_retip(ip)
|
|
|
|
struct ip *ip;
|
|
|
|
{
|
|
|
|
u_char *cp;
|
2002-03-23 18:10:59 +00:00
|
|
|
int hlen;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
pr_iph(ip);
|
|
|
|
hlen = ip->ip_hl << 2;
|
|
|
|
cp = (u_char *)ip + hlen;
|
|
|
|
|
|
|
|
if (ip->ip_p == 6)
|
|
|
|
(void)printf("TCP: from port %u, to port %u (decimal)\n",
|
|
|
|
(*cp * 256 + *(cp + 1)), (*(cp + 2) * 256 + *(cp + 3)));
|
|
|
|
else if (ip->ip_p == 17)
|
|
|
|
(void)printf("UDP: from port %u, to port %u (decimal)\n",
|
|
|
|
(*cp * 256 + *(cp + 1)), (*(cp + 2) * 256 + *(cp + 3)));
|
|
|
|
}
|
|
|
|
|
2003-03-02 21:24:08 +00:00
|
|
|
static char *
|
|
|
|
pr_ntime (n_time time)
|
|
|
|
{
|
|
|
|
static char buf[10];
|
|
|
|
int h, m, s;
|
|
|
|
|
|
|
|
s = ntohl(time) / 1000;
|
|
|
|
h = s / 60 / 60;
|
|
|
|
m = (s % (60 * 60)) / 60;
|
|
|
|
s = (s % (60 * 60)) % 60;
|
|
|
|
|
|
|
|
(void)snprintf(buf, sizeof(buf), "%02d:%02d:%02d", h, m, s);
|
|
|
|
|
|
|
|
return (buf);
|
|
|
|
}
|
|
|
|
|
1997-03-01 20:19:18 +00:00
|
|
|
static void
|
1994-05-26 06:35:07 +00:00
|
|
|
fill(bp, patp)
|
|
|
|
char *bp, *patp;
|
|
|
|
{
|
|
|
|
char *cp;
|
2002-03-23 18:10:59 +00:00
|
|
|
int pat[16];
|
2002-07-05 11:52:54 +00:00
|
|
|
u_int ii, jj, kk;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
1997-03-01 20:19:18 +00:00
|
|
|
for (cp = patp; *cp; cp++) {
|
|
|
|
if (!isxdigit(*cp))
|
2002-04-02 09:36:46 +00:00
|
|
|
errx(EX_USAGE,
|
|
|
|
"patterns must be specified as hex digits");
|
|
|
|
|
1997-03-01 20:19:18 +00:00
|
|
|
}
|
1994-05-26 06:35:07 +00:00
|
|
|
ii = sscanf(patp,
|
|
|
|
"%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x",
|
|
|
|
&pat[0], &pat[1], &pat[2], &pat[3], &pat[4], &pat[5], &pat[6],
|
|
|
|
&pat[7], &pat[8], &pat[9], &pat[10], &pat[11], &pat[12],
|
|
|
|
&pat[13], &pat[14], &pat[15]);
|
|
|
|
|
|
|
|
if (ii > 0)
|
2003-03-02 21:24:08 +00:00
|
|
|
for (kk = 0; kk <= maxpayload - (phdr_len + ii); kk += ii)
|
1994-05-26 06:35:07 +00:00
|
|
|
for (jj = 0; jj < ii; ++jj)
|
|
|
|
bp[jj + kk] = pat[jj];
|
|
|
|
if (!(options & F_QUIET)) {
|
|
|
|
(void)printf("PATTERN: 0x");
|
|
|
|
for (jj = 0; jj < ii; ++jj)
|
|
|
|
(void)printf("%02x", bp[jj] & 0xFF);
|
|
|
|
(void)printf("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-03-14 07:59:38 +00:00
|
|
|
#if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
|
|
|
|
#define SECOPT " [-P policy]"
|
|
|
|
#else
|
|
|
|
#define SECOPT ""
|
|
|
|
#endif
|
1997-03-01 20:19:18 +00:00
|
|
|
static void
|
1998-07-15 06:45:02 +00:00
|
|
|
usage()
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
2003-03-11 20:12:39 +00:00
|
|
|
|
2003-03-14 07:59:38 +00:00
|
|
|
(void)fprintf(stderr, "%s\n%s\n%s\n%s\n%s\n%s\n",
|
2003-03-11 20:12:39 +00:00
|
|
|
"usage: ping [-AaDdfnoQqRrv] [-c count] [-i wait] [-l preload] [-M mask | time]",
|
2003-03-14 07:59:38 +00:00
|
|
|
" [-m ttl]" SECOPT " [-p pattern] [-S src_addr] [-s packetsize]",
|
2003-03-11 20:12:39 +00:00
|
|
|
" [-t timeout] [-z tos] host",
|
|
|
|
" ping [-AaDdfLnoQqRrv] [-c count] [-I iface] [-i wait] [-l preload]",
|
2003-03-14 07:59:38 +00:00
|
|
|
" [-M mask | time] [-m ttl]" SECOPT " [-p pattern] [-S src_addr]",
|
2003-03-11 20:12:39 +00:00
|
|
|
" [-s packetsize] [-T ttl] [-t timeout] [-z tos] mcast-group");
|
1997-03-01 20:19:18 +00:00
|
|
|
exit(EX_USAGE);
|
1994-05-26 06:35:07 +00:00
|
|
|
}
|