2020-11-26 05:29:30 +01:00
|
|
|
/*-
|
2023-05-10 17:40:58 +02:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-11-26 05:29:30 +01:00
|
|
|
*
|
|
|
|
* Copyright (C) 2019 Jan Sucan <jansucan@FreeBSD.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
|
|
|
|
#include <err.h>
|
2022-11-21 02:18:43 +01:00
|
|
|
#include <math.h>
|
|
|
|
#include <signal.h>
|
2020-11-26 05:29:30 +01:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2023-10-11 21:44:30 +02:00
|
|
|
#include <sysexits.h>
|
2020-11-26 05:29:30 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "main.h"
|
2020-11-29 00:24:19 +01:00
|
|
|
#ifdef INET
|
2020-11-26 05:29:30 +01:00
|
|
|
#include "ping.h"
|
2020-11-29 00:24:19 +01:00
|
|
|
#endif
|
2020-11-26 05:29:30 +01:00
|
|
|
#ifdef INET6
|
|
|
|
#include "ping6.h"
|
|
|
|
#endif
|
|
|
|
|
2020-11-29 00:24:19 +01:00
|
|
|
#if defined(INET) && defined(INET6)
|
2021-10-07 00:54:59 +02:00
|
|
|
#define OPTSTR PING6OPTS PING4OPTS
|
2020-11-29 00:24:19 +01:00
|
|
|
#elif defined(INET)
|
2021-10-07 00:54:59 +02:00
|
|
|
#define OPTSTR PING4OPTS
|
2020-11-29 00:24:19 +01:00
|
|
|
#elif defined(INET6)
|
2021-10-07 00:54:59 +02:00
|
|
|
#define OPTSTR PING6OPTS
|
2021-11-28 18:50:13 +01:00
|
|
|
#else
|
|
|
|
#error At least one of INET and INET6 is required
|
2020-11-26 05:29:30 +01:00
|
|
|
#endif
|
|
|
|
|
2022-11-21 02:18:43 +01:00
|
|
|
/* various options */
|
|
|
|
u_int options;
|
|
|
|
|
|
|
|
char *hostname;
|
|
|
|
|
|
|
|
/* counters */
|
|
|
|
long nreceived; /* # of packets we got back */
|
|
|
|
long nrepeats; /* number of duplicates */
|
|
|
|
long ntransmitted; /* sequence # for outbound packets = #sent */
|
|
|
|
long nrcvtimeout = 0; /* # of packets we got back after waittime */
|
|
|
|
|
|
|
|
/* nonzero if we've been told to finish up */
|
|
|
|
volatile sig_atomic_t seenint;
|
|
|
|
volatile sig_atomic_t seeninfo;
|
|
|
|
|
|
|
|
/* 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 */
|
|
|
|
double tsumsq = 0.0; /* sum of all times squared, for std. dev. */
|
|
|
|
|
2020-11-26 05:29:30 +01:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
2023-10-11 00:47:46 +02:00
|
|
|
#if defined(INET)
|
2020-11-26 05:29:30 +01:00
|
|
|
struct in_addr a;
|
2020-11-29 00:24:19 +01:00
|
|
|
#endif
|
2023-10-11 00:47:46 +02:00
|
|
|
#if defined(INET6)
|
|
|
|
struct in6_addr a6;
|
2020-11-29 00:24:19 +01:00
|
|
|
#endif
|
2023-10-11 00:47:46 +02:00
|
|
|
#if defined(INET) && defined(INET6)
|
|
|
|
struct addrinfo hints, *res, *ai;
|
2023-10-11 21:44:30 +02:00
|
|
|
const char *target;
|
2023-10-11 00:47:46 +02:00
|
|
|
int error;
|
2020-11-29 00:24:19 +01:00
|
|
|
#endif
|
2023-10-11 00:47:46 +02:00
|
|
|
int opt;
|
2020-11-26 05:29:30 +01:00
|
|
|
|
2023-10-11 00:47:46 +02:00
|
|
|
#ifdef INET6
|
2020-11-26 19:33:04 +01:00
|
|
|
if (strcmp(getprogname(), "ping6") == 0)
|
2023-10-11 00:47:46 +02:00
|
|
|
return ping6(argc, argv);
|
2020-11-26 05:29:30 +01:00
|
|
|
#endif
|
|
|
|
|
2023-10-11 00:47:46 +02:00
|
|
|
while ((opt = getopt(argc, argv, ":" OPTSTR)) != -1) {
|
|
|
|
switch (opt) {
|
2020-11-29 00:24:19 +01:00
|
|
|
#ifdef INET
|
2020-11-26 05:29:30 +01:00
|
|
|
case '4':
|
2023-10-11 00:47:46 +02:00
|
|
|
goto ping4;
|
2020-11-29 00:24:19 +01:00
|
|
|
#endif
|
2020-11-26 05:29:30 +01:00
|
|
|
#ifdef INET6
|
|
|
|
case '6':
|
2023-10-11 00:47:46 +02:00
|
|
|
goto ping6;
|
2022-05-20 16:16:01 +02:00
|
|
|
#endif
|
|
|
|
case 'S':
|
|
|
|
/*
|
|
|
|
* If -S is given with a numeric parameter,
|
|
|
|
* force use of the corresponding version.
|
|
|
|
*/
|
2023-10-11 00:47:46 +02:00
|
|
|
#ifdef INET
|
2022-05-20 16:16:01 +02:00
|
|
|
if (inet_pton(AF_INET, optarg, &a) == 1)
|
2023-10-11 00:47:46 +02:00
|
|
|
goto ping4;
|
|
|
|
#endif
|
|
|
|
#ifdef INET6
|
|
|
|
if (inet_pton(AF_INET6, optarg, &a6) == 1)
|
|
|
|
goto ping6;
|
2020-11-26 05:29:30 +01:00
|
|
|
#endif
|
2023-10-11 00:47:46 +02:00
|
|
|
break;
|
2020-11-26 05:29:30 +01:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-11 00:47:46 +02:00
|
|
|
/*
|
|
|
|
* For IPv4, only one positional argument, the target, is allowed.
|
|
|
|
* For IPv6, multiple positional argument are allowed; the last
|
|
|
|
* one is the target, and preceding ones are intermediate hops.
|
|
|
|
* This nuance is lost here, but the only case where it matters is
|
|
|
|
* an error.
|
|
|
|
*/
|
2020-11-26 05:29:30 +01:00
|
|
|
if (optind >= argc)
|
|
|
|
usage();
|
|
|
|
|
2020-11-29 00:24:19 +01:00
|
|
|
#if defined(INET) && defined(INET6)
|
2023-10-11 21:44:30 +02:00
|
|
|
target = argv[argc - 1];
|
2023-10-11 00:47:46 +02:00
|
|
|
memset(&hints, 0, sizeof(hints));
|
|
|
|
hints.ai_socktype = SOCK_RAW;
|
|
|
|
if (feature_present("inet") && !feature_present("inet6"))
|
2020-11-26 05:29:30 +01:00
|
|
|
hints.ai_family = AF_INET;
|
2024-03-12 20:40:36 +01:00
|
|
|
else if (feature_present("inet6") && !feature_present("inet"))
|
2020-11-26 05:29:30 +01:00
|
|
|
hints.ai_family = AF_INET6;
|
2023-10-11 00:47:46 +02:00
|
|
|
else
|
|
|
|
hints.ai_family = AF_UNSPEC;
|
2023-10-11 21:44:30 +02:00
|
|
|
error = getaddrinfo(target, NULL, &hints, &res);
|
2023-10-11 00:47:46 +02:00
|
|
|
if (res == NULL)
|
2023-10-11 21:44:30 +02:00
|
|
|
errx(EX_NOHOST, "cannot resolve %s: %s",
|
|
|
|
target, gai_strerror(error));
|
2023-10-11 00:47:46 +02:00
|
|
|
for (ai = res; ai != NULL; ai = ai->ai_next) {
|
|
|
|
if (ai->ai_family == AF_INET) {
|
|
|
|
freeaddrinfo(res);
|
|
|
|
goto ping4;
|
|
|
|
}
|
|
|
|
if (ai->ai_family == AF_INET6) {
|
|
|
|
freeaddrinfo(res);
|
|
|
|
goto ping6;
|
2020-11-26 05:29:30 +01:00
|
|
|
}
|
|
|
|
}
|
2023-10-11 00:47:46 +02:00
|
|
|
freeaddrinfo(res);
|
2023-10-11 21:44:30 +02:00
|
|
|
errx(EX_NOHOST, "cannot resolve %s", target);
|
2020-11-29 00:24:19 +01:00
|
|
|
#endif
|
|
|
|
#ifdef INET
|
2023-10-11 00:47:46 +02:00
|
|
|
ping4:
|
|
|
|
optreset = 1;
|
|
|
|
optind = 1;
|
|
|
|
return ping(argc, argv);
|
|
|
|
#endif
|
2020-11-26 05:29:30 +01:00
|
|
|
#ifdef INET6
|
2023-10-11 00:47:46 +02:00
|
|
|
ping6:
|
|
|
|
optreset = 1;
|
|
|
|
optind = 1;
|
|
|
|
return ping6(argc, argv);
|
|
|
|
#endif
|
2020-11-26 05:29:30 +01:00
|
|
|
}
|
|
|
|
|
2022-11-21 02:18:43 +01:00
|
|
|
/*
|
|
|
|
* onsignal --
|
|
|
|
* Set the global bit that causes the main loop to quit.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
onsignal(int sig)
|
|
|
|
{
|
|
|
|
switch (sig) {
|
|
|
|
case SIGALRM:
|
|
|
|
case SIGINT:
|
|
|
|
/*
|
|
|
|
* When doing reverse DNS lookups, the seenint flag might not
|
|
|
|
* be noticed for a while. Just exit if we get a second SIGINT.
|
|
|
|
*/
|
|
|
|
if (!(options & F_HOSTNAME) && seenint != 0)
|
|
|
|
_exit(nreceived ? 0 : 2);
|
|
|
|
seenint++;
|
|
|
|
break;
|
|
|
|
case SIGINFO:
|
|
|
|
seeninfo++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* pr_summary --
|
|
|
|
* Print out summary statistics to the given output stream.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
pr_summary(FILE * restrict stream)
|
|
|
|
{
|
|
|
|
fprintf(stream, "\n--- %s ping statistics ---\n", hostname);
|
|
|
|
fprintf(stream, "%ld packets transmitted, ", ntransmitted);
|
|
|
|
fprintf(stream, "%ld packets received, ", nreceived);
|
|
|
|
if (nrepeats)
|
|
|
|
fprintf(stream, "+%ld duplicates, ", nrepeats);
|
|
|
|
if (ntransmitted) {
|
|
|
|
if (nreceived > ntransmitted)
|
|
|
|
fprintf(stream, "-- somebody's duplicating packets!");
|
|
|
|
else
|
|
|
|
fprintf(stream, "%.1f%% packet loss",
|
|
|
|
((((double)ntransmitted - nreceived) * 100.0) /
|
|
|
|
ntransmitted));
|
|
|
|
}
|
|
|
|
if (nrcvtimeout)
|
|
|
|
fprintf(stream, ", %ld packets out of wait time", nrcvtimeout);
|
|
|
|
fputc('\n', stream);
|
|
|
|
if (nreceived && timing) {
|
|
|
|
/* Only display average to microseconds */
|
|
|
|
double num = nreceived + nrepeats;
|
|
|
|
double avg = tsum / num;
|
|
|
|
double stddev = sqrt(fmax(0, tsumsq / num - avg * avg));
|
|
|
|
fprintf(stream,
|
|
|
|
"round-trip min/avg/max/stddev = %.3f/%.3f/%.3f/%.3f ms\n",
|
|
|
|
tmin, avg, tmax, stddev);
|
|
|
|
}
|
|
|
|
fflush(stream);
|
|
|
|
}
|
|
|
|
|
2020-11-26 05:29:30 +01:00
|
|
|
void
|
|
|
|
usage(void)
|
|
|
|
{
|
|
|
|
(void)fprintf(stderr,
|
2020-11-29 00:24:19 +01:00
|
|
|
"usage:\n"
|
|
|
|
#ifdef INET
|
|
|
|
"\tping [-4AaDdfHnoQqRrv] [-C pcp] [-c count] "
|
2020-11-26 05:29:30 +01:00
|
|
|
"[-G sweepmaxsize]\n"
|
2022-11-01 06:19:22 +01:00
|
|
|
"\t [-g sweepminsize] [-h sweepincrsize] [-i wait] "
|
2020-11-26 05:29:30 +01:00
|
|
|
"[-l preload]\n"
|
2022-11-01 06:19:22 +01:00
|
|
|
"\t [-M mask | time] [-m ttl] "
|
2020-11-26 05:29:30 +01:00
|
|
|
#ifdef IPSEC
|
|
|
|
"[-P policy] "
|
|
|
|
#endif
|
|
|
|
"[-p pattern] [-S src_addr] \n"
|
2022-11-01 06:19:22 +01:00
|
|
|
"\t [-s packetsize] [-t timeout] [-W waittime] [-z tos] "
|
2020-11-26 05:29:30 +01:00
|
|
|
"IPv4-host\n"
|
2020-11-29 00:24:19 +01:00
|
|
|
"\tping [-4AaDdfHLnoQqRrv] [-C pcp] [-c count] [-I iface] "
|
2020-11-26 05:29:30 +01:00
|
|
|
"[-i wait]\n"
|
2022-11-01 06:19:22 +01:00
|
|
|
"\t [-l preload] [-M mask | time] [-m ttl] "
|
2020-11-26 05:29:30 +01:00
|
|
|
#ifdef IPSEC
|
|
|
|
"[-P policy] "
|
|
|
|
#endif
|
|
|
|
"[-p pattern]\n"
|
2022-11-01 06:19:22 +01:00
|
|
|
"\t [-S src_addr] [-s packetsize] [-T ttl] [-t timeout] [-W waittime]\n"
|
|
|
|
"\t [-z tos] IPv4-mcast-group\n"
|
2020-11-29 00:24:19 +01:00
|
|
|
#endif /* INET */
|
2020-11-26 05:29:30 +01:00
|
|
|
#ifdef INET6
|
2022-11-01 06:19:22 +01:00
|
|
|
"\tping [-6AaDd"
|
2020-11-26 05:29:30 +01:00
|
|
|
#if defined(IPSEC) && !defined(IPSEC_POLICY_IPSEC)
|
2022-11-01 06:19:22 +01:00
|
|
|
"E"
|
2020-11-26 05:29:30 +01:00
|
|
|
#endif
|
2022-11-01 06:19:22 +01:00
|
|
|
"fHnNoOq"
|
2020-11-26 05:29:30 +01:00
|
|
|
#ifdef IPV6_USE_MIN_MTU
|
2022-11-01 06:19:22 +01:00
|
|
|
"u"
|
2020-11-26 05:29:30 +01:00
|
|
|
#endif
|
2022-11-01 06:19:22 +01:00
|
|
|
"vyY"
|
2020-11-26 05:29:30 +01:00
|
|
|
#if defined(IPSEC) && !defined(IPSEC_POLICY_IPSEC)
|
2022-11-01 06:19:22 +01:00
|
|
|
"Z"
|
2020-11-26 05:29:30 +01:00
|
|
|
#endif
|
|
|
|
"] "
|
2023-09-19 10:47:11 +02:00
|
|
|
"[-b bufsiz] [-C pcp] [-c count] [-e gateway]\n"
|
2022-11-01 06:19:22 +01:00
|
|
|
"\t [-I interface] [-i wait] [-k addrtype] [-l preload] "
|
|
|
|
"[-m hoplimit]\n"
|
|
|
|
"\t [-p pattern]"
|
2020-11-26 05:29:30 +01:00
|
|
|
#if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
|
2022-11-01 06:19:22 +01:00
|
|
|
" [-P policy]"
|
2020-11-26 05:29:30 +01:00
|
|
|
#endif
|
2022-11-01 06:19:22 +01:00
|
|
|
" [-S sourceaddr] [-s packetsize] [-t timeout]\n"
|
|
|
|
"\t [-W waittime] [-z tclass] [IPv6-hops ...] IPv6-host\n"
|
2020-11-26 05:29:30 +01:00
|
|
|
#endif /* INET6 */
|
|
|
|
);
|
|
|
|
|
|
|
|
exit(1);
|
|
|
|
}
|