2008-01-02 23:26:11 +00:00
|
|
|
/*-
|
1994-05-27 12:33:43 +00:00
|
|
|
* Copyright (c) 1983, 1988, 1993
|
|
|
|
* The Regents of the University of California. 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.
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2004-07-26 20:18:11 +00:00
|
|
|
#if 0
|
1994-05-27 12:33:43 +00:00
|
|
|
#ifndef lint
|
1996-01-14 23:33:13 +00:00
|
|
|
static char sccsid[] = "@(#)if.c 8.3 (Berkeley) 4/28/95";
|
1994-05-27 12:33:43 +00:00
|
|
|
#endif /* not lint */
|
2004-07-26 20:18:11 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/protosw.h>
|
|
|
|
#include <sys/socket.h>
|
2007-07-16 17:15:55 +00:00
|
|
|
#include <sys/socketvar.h>
|
1999-04-26 16:11:50 +00:00
|
|
|
#include <sys/sysctl.h>
|
1996-12-10 17:11:53 +00:00
|
|
|
#include <sys/time.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
#include <net/if.h>
|
1997-01-03 20:16:31 +00:00
|
|
|
#include <net/if_var.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <net/if_dl.h>
|
1996-12-02 06:38:30 +00:00
|
|
|
#include <net/if_types.h>
|
1997-01-13 21:27:46 +00:00
|
|
|
#include <net/ethernet.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/in_var.h>
|
1995-10-26 20:31:59 +00:00
|
|
|
#include <netipx/ipx.h>
|
|
|
|
#include <netipx/ipx_if.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <arpa/inet.h>
|
2013-10-29 17:38:13 +00:00
|
|
|
#ifdef PF
|
|
|
|
#include <net/pfvar.h>
|
|
|
|
#include <net/if_pfsync.h>
|
|
|
|
#endif
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-07-14 22:42:35 +00:00
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
2013-10-15 09:55:07 +00:00
|
|
|
#include <ifaddrs.h>
|
2005-08-18 21:04:12 +00:00
|
|
|
#include <libutil.h>
|
2011-01-20 15:22:01 +00:00
|
|
|
#ifdef INET6
|
|
|
|
#include <netdb.h>
|
|
|
|
#endif
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <signal.h>
|
2013-10-15 09:55:07 +00:00
|
|
|
#include <stdbool.h>
|
2006-07-28 16:09:19 +00:00
|
|
|
#include <stdint.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <stdio.h>
|
2000-10-30 11:53:19 +00:00
|
|
|
#include <stdlib.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <string.h>
|
2013-10-15 09:55:07 +00:00
|
|
|
#include <sysexits.h>
|
2009-12-13 03:14:06 +00:00
|
|
|
#include <unistd.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
#include "netstat.h"
|
|
|
|
|
2013-10-15 09:55:07 +00:00
|
|
|
static void sidewaysintpr(int);
|
1994-05-27 12:33:43 +00:00
|
|
|
|
1999-12-07 17:39:16 +00:00
|
|
|
#ifdef INET6
|
2011-01-20 15:22:01 +00:00
|
|
|
static char addr_buf[NI_MAXHOST]; /* for getnameinfo() */
|
1999-12-07 17:39:16 +00:00
|
|
|
#endif
|
|
|
|
|
2013-10-29 17:38:13 +00:00
|
|
|
#ifdef PF
|
Merge the projects/pf/head branch, that was worked on for last six months,
into head. The most significant achievements in the new code:
o Fine grained locking, thus much better performance.
o Fixes to many problems in pf, that were specific to FreeBSD port.
New code doesn't have that many ifdefs and much less OpenBSDisms, thus
is more attractive to our developers.
Those interested in details, can browse through SVN log of the
projects/pf/head branch. And for reference, here is exact list of
revisions merged:
r232043, r232044, r232062, r232148, r232149, r232150, r232298, r232330,
r232332, r232340, r232386, r232390, r232391, r232605, r232655, r232656,
r232661, r232662, r232663, r232664, r232673, r232691, r233309, r233782,
r233829, r233830, r233834, r233835, r233836, r233865, r233866, r233868,
r233873, r234056, r234096, r234100, r234108, r234175, r234187, r234223,
r234271, r234272, r234282, r234307, r234309, r234382, r234384, r234456,
r234486, r234606, r234640, r234641, r234642, r234644, r234651, r235505,
r235506, r235535, r235605, r235606, r235826, r235991, r235993, r236168,
r236173, r236179, r236180, r236181, r236186, r236223, r236227, r236230,
r236252, r236254, r236298, r236299, r236300, r236301, r236397, r236398,
r236399, r236499, r236512, r236513, r236525, r236526, r236545, r236548,
r236553, r236554, r236556, r236557, r236561, r236570, r236630, r236672,
r236673, r236679, r236706, r236710, r236718, r237154, r237155, r237169,
r237314, r237363, r237364, r237368, r237369, r237376, r237440, r237442,
r237751, r237783, r237784, r237785, r237788, r237791, r238421, r238522,
r238523, r238524, r238525, r239173, r239186, r239644, r239652, r239661,
r239773, r240125, r240130, r240131, r240136, r240186, r240196, r240212.
I'd like to thank people who participated in early testing:
Tested by: Florian Smeets <flo freebsd.org>
Tested by: Chekaluk Vitaly <artemrts ukr.net>
Tested by: Ben Wilber <ben desync.com>
Tested by: Ian FREISLICH <ianf cloudseed.co.za>
2012-09-08 06:41:54 +00:00
|
|
|
static const char* pfsyncacts[] = {
|
|
|
|
/* PFSYNC_ACT_CLR */ "clear all request",
|
|
|
|
/* PFSYNC_ACT_INS */ "state insert",
|
|
|
|
/* PFSYNC_ACT_INS_ACK */ "state inserted ack",
|
|
|
|
/* PFSYNC_ACT_UPD */ "state update",
|
|
|
|
/* PFSYNC_ACT_UPD_C */ "compressed state update",
|
|
|
|
/* PFSYNC_ACT_UPD_REQ */ "uncompressed state request",
|
|
|
|
/* PFSYNC_ACT_DEL */ "state delete",
|
|
|
|
/* PFSYNC_ACT_DEL_C */ "compressed state delete",
|
|
|
|
/* PFSYNC_ACT_INS_F */ "fragment insert",
|
|
|
|
/* PFSYNC_ACT_DEL_F */ "fragment delete",
|
|
|
|
/* PFSYNC_ACT_BUS */ "bulk update mark",
|
|
|
|
/* PFSYNC_ACT_TDB */ "TDB replay counter update",
|
|
|
|
/* PFSYNC_ACT_EOF */ "end of frame mark",
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
pfsync_acts_stats(const char *fmt, uint64_t *a)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < PFSYNC_ACT_MAX; i++, a++)
|
|
|
|
if (*a || sflag <= 1)
|
|
|
|
printf(fmt, *a, pfsyncacts[i], plural(*a));
|
|
|
|
}
|
|
|
|
|
2008-01-02 23:26:11 +00:00
|
|
|
/*
|
2005-07-14 22:42:35 +00:00
|
|
|
* Dump pfsync statistics structure.
|
|
|
|
*/
|
|
|
|
void
|
2007-07-16 17:15:55 +00:00
|
|
|
pfsync_stats(u_long off, const char *name, int af1 __unused, int proto __unused)
|
2005-07-14 22:42:35 +00:00
|
|
|
{
|
|
|
|
struct pfsyncstats pfsyncstat, zerostat;
|
|
|
|
size_t len = sizeof(struct pfsyncstats);
|
|
|
|
|
2007-07-16 17:15:55 +00:00
|
|
|
if (live) {
|
|
|
|
if (zflag)
|
|
|
|
memset(&zerostat, 0, len);
|
2012-04-04 08:30:32 +00:00
|
|
|
if (sysctlbyname("net.pfsync.stats", &pfsyncstat, &len,
|
2007-07-16 17:15:55 +00:00
|
|
|
zflag ? &zerostat : NULL, zflag ? len : 0) < 0) {
|
|
|
|
if (errno != ENOENT)
|
2012-04-04 08:30:32 +00:00
|
|
|
warn("sysctl: net.pfsync.stats");
|
2007-07-16 17:15:55 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
kread(off, &pfsyncstat, len);
|
2005-07-14 22:42:35 +00:00
|
|
|
|
|
|
|
printf("%s:\n", name);
|
|
|
|
|
2008-01-02 23:26:11 +00:00
|
|
|
#define p(f, m) if (pfsyncstat.f || sflag <= 1) \
|
2006-07-28 16:09:19 +00:00
|
|
|
printf(m, (uintmax_t)pfsyncstat.f, plural(pfsyncstat.f))
|
|
|
|
|
|
|
|
p(pfsyncs_ipackets, "\t%ju packet%s received (IPv4)\n");
|
|
|
|
p(pfsyncs_ipackets6, "\t%ju packet%s received (IPv6)\n");
|
Merge the projects/pf/head branch, that was worked on for last six months,
into head. The most significant achievements in the new code:
o Fine grained locking, thus much better performance.
o Fixes to many problems in pf, that were specific to FreeBSD port.
New code doesn't have that many ifdefs and much less OpenBSDisms, thus
is more attractive to our developers.
Those interested in details, can browse through SVN log of the
projects/pf/head branch. And for reference, here is exact list of
revisions merged:
r232043, r232044, r232062, r232148, r232149, r232150, r232298, r232330,
r232332, r232340, r232386, r232390, r232391, r232605, r232655, r232656,
r232661, r232662, r232663, r232664, r232673, r232691, r233309, r233782,
r233829, r233830, r233834, r233835, r233836, r233865, r233866, r233868,
r233873, r234056, r234096, r234100, r234108, r234175, r234187, r234223,
r234271, r234272, r234282, r234307, r234309, r234382, r234384, r234456,
r234486, r234606, r234640, r234641, r234642, r234644, r234651, r235505,
r235506, r235535, r235605, r235606, r235826, r235991, r235993, r236168,
r236173, r236179, r236180, r236181, r236186, r236223, r236227, r236230,
r236252, r236254, r236298, r236299, r236300, r236301, r236397, r236398,
r236399, r236499, r236512, r236513, r236525, r236526, r236545, r236548,
r236553, r236554, r236556, r236557, r236561, r236570, r236630, r236672,
r236673, r236679, r236706, r236710, r236718, r237154, r237155, r237169,
r237314, r237363, r237364, r237368, r237369, r237376, r237440, r237442,
r237751, r237783, r237784, r237785, r237788, r237791, r238421, r238522,
r238523, r238524, r238525, r239173, r239186, r239644, r239652, r239661,
r239773, r240125, r240130, r240131, r240136, r240186, r240196, r240212.
I'd like to thank people who participated in early testing:
Tested by: Florian Smeets <flo freebsd.org>
Tested by: Chekaluk Vitaly <artemrts ukr.net>
Tested by: Ben Wilber <ben desync.com>
Tested by: Ian FREISLICH <ianf cloudseed.co.za>
2012-09-08 06:41:54 +00:00
|
|
|
pfsync_acts_stats("\t %ju %s%s received\n",
|
|
|
|
&pfsyncstat.pfsyncs_iacts[0]);
|
2006-07-28 16:09:19 +00:00
|
|
|
p(pfsyncs_badif, "\t\t%ju packet%s discarded for bad interface\n");
|
|
|
|
p(pfsyncs_badttl, "\t\t%ju packet%s discarded for bad ttl\n");
|
|
|
|
p(pfsyncs_hdrops, "\t\t%ju packet%s shorter than header\n");
|
|
|
|
p(pfsyncs_badver, "\t\t%ju packet%s discarded for bad version\n");
|
|
|
|
p(pfsyncs_badauth, "\t\t%ju packet%s discarded for bad HMAC\n");
|
|
|
|
p(pfsyncs_badact,"\t\t%ju packet%s discarded for bad action\n");
|
|
|
|
p(pfsyncs_badlen, "\t\t%ju packet%s discarded for short packet\n");
|
|
|
|
p(pfsyncs_badval, "\t\t%ju state%s discarded for bad values\n");
|
|
|
|
p(pfsyncs_stale, "\t\t%ju stale state%s\n");
|
|
|
|
p(pfsyncs_badstate, "\t\t%ju failed state lookup/insert%s\n");
|
|
|
|
p(pfsyncs_opackets, "\t%ju packet%s sent (IPv4)\n");
|
|
|
|
p(pfsyncs_opackets6, "\t%ju packet%s sent (IPv6)\n");
|
Merge the projects/pf/head branch, that was worked on for last six months,
into head. The most significant achievements in the new code:
o Fine grained locking, thus much better performance.
o Fixes to many problems in pf, that were specific to FreeBSD port.
New code doesn't have that many ifdefs and much less OpenBSDisms, thus
is more attractive to our developers.
Those interested in details, can browse through SVN log of the
projects/pf/head branch. And for reference, here is exact list of
revisions merged:
r232043, r232044, r232062, r232148, r232149, r232150, r232298, r232330,
r232332, r232340, r232386, r232390, r232391, r232605, r232655, r232656,
r232661, r232662, r232663, r232664, r232673, r232691, r233309, r233782,
r233829, r233830, r233834, r233835, r233836, r233865, r233866, r233868,
r233873, r234056, r234096, r234100, r234108, r234175, r234187, r234223,
r234271, r234272, r234282, r234307, r234309, r234382, r234384, r234456,
r234486, r234606, r234640, r234641, r234642, r234644, r234651, r235505,
r235506, r235535, r235605, r235606, r235826, r235991, r235993, r236168,
r236173, r236179, r236180, r236181, r236186, r236223, r236227, r236230,
r236252, r236254, r236298, r236299, r236300, r236301, r236397, r236398,
r236399, r236499, r236512, r236513, r236525, r236526, r236545, r236548,
r236553, r236554, r236556, r236557, r236561, r236570, r236630, r236672,
r236673, r236679, r236706, r236710, r236718, r237154, r237155, r237169,
r237314, r237363, r237364, r237368, r237369, r237376, r237440, r237442,
r237751, r237783, r237784, r237785, r237788, r237791, r238421, r238522,
r238523, r238524, r238525, r239173, r239186, r239644, r239652, r239661,
r239773, r240125, r240130, r240131, r240136, r240186, r240196, r240212.
I'd like to thank people who participated in early testing:
Tested by: Florian Smeets <flo freebsd.org>
Tested by: Chekaluk Vitaly <artemrts ukr.net>
Tested by: Ben Wilber <ben desync.com>
Tested by: Ian FREISLICH <ianf cloudseed.co.za>
2012-09-08 06:41:54 +00:00
|
|
|
pfsync_acts_stats("\t %ju %s%s sent\n",
|
|
|
|
&pfsyncstat.pfsyncs_oacts[0]);
|
|
|
|
p(pfsyncs_onomem, "\t\t%ju failure%s due to mbuf memory error\n");
|
|
|
|
p(pfsyncs_oerrors, "\t\t%ju send error%s\n");
|
2005-07-14 22:42:35 +00:00
|
|
|
#undef p
|
|
|
|
}
|
2013-10-29 17:38:13 +00:00
|
|
|
#endif /* PF */
|
2001-03-04 22:25:05 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Display a formatted value, or a '-' in the same space.
|
|
|
|
*/
|
2001-06-15 23:35:13 +00:00
|
|
|
static void
|
2001-06-15 23:55:45 +00:00
|
|
|
show_stat(const char *fmt, int width, u_long value, short showvalue)
|
2001-03-04 22:25:05 +00:00
|
|
|
{
|
2006-11-08 15:15:05 +00:00
|
|
|
const char *lsep, *rsep;
|
2001-03-04 22:25:05 +00:00
|
|
|
char newfmt[32];
|
|
|
|
|
2006-11-08 15:15:05 +00:00
|
|
|
lsep = "";
|
|
|
|
if (strncmp(fmt, "LS", 2) == 0) {
|
|
|
|
lsep = " ";
|
|
|
|
fmt += 2;
|
|
|
|
}
|
|
|
|
rsep = " ";
|
|
|
|
if (strncmp(fmt, "NRS", 3) == 0) {
|
|
|
|
rsep = "";
|
|
|
|
fmt += 3;
|
|
|
|
}
|
2005-08-18 21:04:12 +00:00
|
|
|
if (showvalue == 0) {
|
|
|
|
/* Print just dash. */
|
2006-11-08 15:15:05 +00:00
|
|
|
sprintf(newfmt, "%s%%%ds%s", lsep, width, rsep);
|
2001-03-04 22:25:05 +00:00
|
|
|
printf(newfmt, "-");
|
2005-08-18 21:04:12 +00:00
|
|
|
return;
|
2001-03-04 22:25:05 +00:00
|
|
|
}
|
|
|
|
|
2005-08-18 21:04:12 +00:00
|
|
|
if (hflag) {
|
|
|
|
char buf[5];
|
2001-03-04 22:25:05 +00:00
|
|
|
|
2005-08-18 21:04:12 +00:00
|
|
|
/* Format in human readable form. */
|
|
|
|
humanize_number(buf, sizeof(buf), (int64_t)value, "",
|
|
|
|
HN_AUTOSCALE, HN_NOSPACE | HN_DECIMAL);
|
2006-11-08 15:15:05 +00:00
|
|
|
sprintf(newfmt, "%s%%%ds%s", lsep, width, rsep);
|
2005-08-18 21:04:12 +00:00
|
|
|
printf(newfmt, buf);
|
|
|
|
} else {
|
|
|
|
/* Construct the format string. */
|
2006-11-08 15:15:05 +00:00
|
|
|
sprintf(newfmt, "%s%%%d%s%s", lsep, width, fmt, rsep);
|
2005-08-18 21:04:12 +00:00
|
|
|
printf(newfmt, value);
|
|
|
|
}
|
|
|
|
}
|
2001-03-04 22:25:05 +00:00
|
|
|
|
2013-10-15 09:55:07 +00:00
|
|
|
/*
|
|
|
|
* Find next multiaddr for a given interface name.
|
|
|
|
*/
|
|
|
|
static struct ifmaddrs *
|
|
|
|
next_ifma(struct ifmaddrs *ifma, const char *name, const sa_family_t family)
|
|
|
|
{
|
|
|
|
|
|
|
|
for(; ifma != NULL; ifma = ifma->ifma_next) {
|
|
|
|
struct sockaddr_dl *sdl;
|
|
|
|
|
|
|
|
sdl = (struct sockaddr_dl *)ifma->ifma_name;
|
|
|
|
if (ifma->ifma_addr->sa_family == family &&
|
|
|
|
strcmp(sdl->sdl_data, name) == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (ifma);
|
|
|
|
}
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
/*
|
|
|
|
* Print a description of the network interfaces.
|
|
|
|
*/
|
|
|
|
void
|
2013-10-15 09:55:07 +00:00
|
|
|
intpr(int interval, void (*pfunc)(char *))
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2013-10-15 09:55:07 +00:00
|
|
|
struct ifaddrs *ifap, *ifa;
|
|
|
|
struct ifmaddrs *ifmap, *ifma;
|
|
|
|
|
|
|
|
if (interval)
|
|
|
|
return sidewaysintpr(interval);
|
|
|
|
|
|
|
|
if (getifaddrs(&ifap) != 0)
|
|
|
|
err(EX_OSERR, "getifaddrs");
|
|
|
|
if (aflag && getifmaddrs(&ifmap) != 0)
|
|
|
|
err(EX_OSERR, "getifmaddrs");
|
1996-12-11 20:39:43 +00:00
|
|
|
|
2001-06-15 18:25:38 +00:00
|
|
|
if (!pfunc) {
|
2003-11-28 17:34:23 +00:00
|
|
|
if (Wflag)
|
|
|
|
printf("%-7.7s", "Name");
|
|
|
|
else
|
|
|
|
printf("%-5.5s", "Name");
|
2009-11-25 15:02:32 +00:00
|
|
|
printf(" %5.5s %-13.13s %-17.17s %8.8s %5.5s %5.5s",
|
|
|
|
"Mtu", "Network", "Address", "Ipkts", "Ierrs", "Idrop");
|
1999-12-07 17:39:16 +00:00
|
|
|
if (bflag)
|
|
|
|
printf(" %10.10s","Ibytes");
|
|
|
|
printf(" %8.8s %5.5s", "Opkts", "Oerrs");
|
|
|
|
if (bflag)
|
|
|
|
printf(" %10.10s","Obytes");
|
|
|
|
printf(" %5s", "Coll");
|
|
|
|
if (dflag)
|
|
|
|
printf(" %s", "Drop");
|
|
|
|
putchar('\n');
|
|
|
|
}
|
|
|
|
|
2013-10-15 09:55:07 +00:00
|
|
|
for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
|
|
|
|
bool network = false, link = false;
|
1999-12-07 17:39:16 +00:00
|
|
|
|
2013-10-15 09:55:07 +00:00
|
|
|
if (interface != NULL && strcmp(ifa->ifa_name, interface) != 0)
|
|
|
|
continue;
|
2000-10-19 23:15:54 +00:00
|
|
|
|
2013-10-15 09:55:07 +00:00
|
|
|
if (pfunc) {
|
|
|
|
char *name;
|
|
|
|
|
|
|
|
name = ifa->ifa_name;
|
|
|
|
(*pfunc)(name);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Skip all ifaddrs belonging to same interface.
|
|
|
|
*/
|
|
|
|
while(ifa->ifa_next != NULL &&
|
|
|
|
(strcmp(ifa->ifa_next->ifa_name, name) == 0)) {
|
|
|
|
ifa = ifa->ifa_next;
|
2001-09-11 17:14:33 +00:00
|
|
|
}
|
2013-10-15 09:55:07 +00:00
|
|
|
continue;
|
|
|
|
}
|
2001-03-04 22:25:05 +00:00
|
|
|
|
2013-10-15 09:55:07 +00:00
|
|
|
if (af != AF_UNSPEC && ifa->ifa_addr->sa_family != af)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (Wflag)
|
|
|
|
printf("%-7.7s", ifa->ifa_name);
|
|
|
|
else
|
|
|
|
printf("%-5.5s", ifa->ifa_name);
|
|
|
|
|
|
|
|
#define IFA_MTU(ifa) (((struct if_data *)(ifa)->ifa_data)->ifi_mtu)
|
|
|
|
show_stat("lu", 6, IFA_MTU(ifa), IFA_MTU(ifa));
|
|
|
|
#undef IFA_MTU
|
|
|
|
|
|
|
|
switch (ifa->ifa_addr->sa_family) {
|
|
|
|
case AF_UNSPEC:
|
|
|
|
printf("%-13.13s ", "none");
|
|
|
|
printf("%-15.15s ", "none");
|
|
|
|
break;
|
|
|
|
case AF_INET:
|
|
|
|
{
|
|
|
|
struct sockaddr_in *sin, *mask;
|
|
|
|
|
|
|
|
sin = (struct sockaddr_in *)ifa->ifa_addr;
|
|
|
|
mask = (struct sockaddr_in *)ifa->ifa_netmask;
|
|
|
|
printf("%-13.13s ", netname(sin->sin_addr.s_addr,
|
|
|
|
mask->sin_addr.s_addr));
|
|
|
|
printf("%-17.17s ",
|
|
|
|
routename(sin->sin_addr.s_addr));
|
|
|
|
|
|
|
|
network = true;
|
|
|
|
break;
|
|
|
|
}
|
1999-12-07 17:39:16 +00:00
|
|
|
#ifdef INET6
|
2013-10-15 09:55:07 +00:00
|
|
|
case AF_INET6:
|
|
|
|
{
|
|
|
|
struct sockaddr_in6 *sin6, *mask;
|
2001-03-04 22:25:05 +00:00
|
|
|
|
2013-10-15 09:55:07 +00:00
|
|
|
sin6 = (struct sockaddr_in6 *)ifa->ifa_addr;
|
|
|
|
mask = (struct sockaddr_in6 *)ifa->ifa_netmask;
|
2001-10-19 00:40:51 +00:00
|
|
|
|
2013-10-15 09:55:07 +00:00
|
|
|
printf("%-13.13s ", netname6(sin6, &mask->sin6_addr));
|
|
|
|
getnameinfo(ifa->ifa_addr, ifa->ifa_addr->sa_len,
|
|
|
|
addr_buf, sizeof(addr_buf), 0, 0, NI_NUMERICHOST);
|
|
|
|
printf("%-17.17s ", addr_buf);
|
1996-07-09 02:55:47 +00:00
|
|
|
|
2013-10-15 09:55:07 +00:00
|
|
|
network = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif /* INET6 */
|
|
|
|
case AF_IPX:
|
|
|
|
{
|
|
|
|
struct sockaddr_ipx *sipx;
|
|
|
|
u_long net;
|
|
|
|
char netnum[10];
|
2000-10-19 23:15:54 +00:00
|
|
|
|
2013-10-15 09:55:07 +00:00
|
|
|
sipx = (struct sockaddr_ipx *)ifa->ifa_addr;
|
|
|
|
*(union ipx_net *) &net = sipx->sipx_addr.x_net;
|
|
|
|
|
|
|
|
sprintf(netnum, "%lx", (u_long)ntohl(net));
|
|
|
|
printf("ipx:%-8s ", netnum);
|
|
|
|
printf("%-17s ", ipx_phost((struct sockaddr *)sipx));
|
2000-10-19 23:15:54 +00:00
|
|
|
|
2013-10-15 09:55:07 +00:00
|
|
|
network = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AF_APPLETALK:
|
|
|
|
printf("atalk:%-12.12s ",
|
|
|
|
atalk_print(ifa->ifa_addr, 0x10));
|
|
|
|
printf("%-11.11s ",
|
|
|
|
atalk_print(ifa->ifa_addr, 0x0b));
|
|
|
|
break;
|
|
|
|
case AF_LINK:
|
|
|
|
{
|
|
|
|
struct sockaddr_dl *sdl;
|
|
|
|
char *cp, linknum[10];
|
|
|
|
int n, m;
|
|
|
|
|
|
|
|
sdl = (struct sockaddr_dl *)ifa->ifa_addr;
|
|
|
|
cp = (char *)LLADDR(sdl);
|
|
|
|
n = sdl->sdl_alen;
|
|
|
|
sprintf(linknum, "<Link#%d>", sdl->sdl_index);
|
|
|
|
m = printf("%-13.13s ", linknum);
|
|
|
|
|
|
|
|
while ((--n >= 0) && (m < 30))
|
|
|
|
m += printf("%02x%c", *cp++ & 0xff,
|
|
|
|
n > 0 ? ':' : ' ');
|
|
|
|
m = 32 - m;
|
|
|
|
while (m-- > 0)
|
|
|
|
putchar(' ');
|
|
|
|
|
|
|
|
link = 1;
|
|
|
|
break;
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2000-10-19 23:15:54 +00:00
|
|
|
|
2013-10-15 09:55:07 +00:00
|
|
|
#define IFA_STAT(s) (((struct if_data *)ifa->ifa_data)->ifi_ ## s)
|
|
|
|
show_stat("lu", 8, IFA_STAT(ipackets), link|network);
|
|
|
|
show_stat("lu", 5, IFA_STAT(ierrors), link);
|
|
|
|
show_stat("lu", 5, IFA_STAT(iqdrops), link);
|
2005-09-27 10:42:02 +00:00
|
|
|
if (bflag)
|
2013-10-15 09:55:07 +00:00
|
|
|
show_stat("lu", 10, IFA_STAT(ibytes), link|network);
|
|
|
|
show_stat("lu", 8, IFA_STAT(opackets), link|network);
|
|
|
|
show_stat("lu", 5, IFA_STAT(oerrors), link);
|
2005-09-27 10:42:02 +00:00
|
|
|
if (bflag)
|
2013-10-15 09:55:07 +00:00
|
|
|
show_stat("lu", 10, IFA_STAT(obytes), link|network);
|
|
|
|
show_stat("NRSlu", 5, IFA_STAT(collisions), link);
|
|
|
|
/* XXXGL: output queue drops */
|
1994-05-27 12:33:43 +00:00
|
|
|
putchar('\n');
|
2006-11-08 15:15:05 +00:00
|
|
|
|
2013-10-15 09:55:07 +00:00
|
|
|
if (!aflag)
|
|
|
|
continue;
|
1996-12-02 06:38:30 +00:00
|
|
|
|
2013-10-15 09:55:07 +00:00
|
|
|
/*
|
|
|
|
* Print family's multicast addresses.
|
|
|
|
*/
|
|
|
|
for (ifma = next_ifma(ifmap, ifa->ifa_name,
|
|
|
|
ifa->ifa_addr->sa_family);
|
|
|
|
ifma != NULL;
|
|
|
|
ifma = next_ifma(ifma, ifa->ifa_name,
|
|
|
|
ifa->ifa_addr->sa_family)) {
|
|
|
|
const char *fmt = NULL;
|
|
|
|
|
|
|
|
switch (ifma->ifma_addr->sa_family) {
|
|
|
|
case AF_INET:
|
|
|
|
{
|
|
|
|
struct sockaddr_in *sin;
|
2008-01-02 23:26:11 +00:00
|
|
|
|
2013-10-15 09:55:07 +00:00
|
|
|
sin = (struct sockaddr_in *)ifma->ifma_addr;
|
|
|
|
fmt = routename(sin->sin_addr.s_addr);
|
|
|
|
break;
|
|
|
|
}
|
1999-12-07 17:39:16 +00:00
|
|
|
#ifdef INET6
|
2013-10-15 09:55:07 +00:00
|
|
|
case AF_INET6:
|
|
|
|
|
|
|
|
/* in6_fillscopeid(&msa.in6); */
|
|
|
|
getnameinfo(ifma->ifma_addr,
|
|
|
|
ifma->ifma_addr->sa_len, addr_buf,
|
|
|
|
sizeof(addr_buf), 0, 0, NI_NUMERICHOST);
|
|
|
|
printf("%*s %s\n",
|
|
|
|
Wflag ? 27 : 25, "", addr_buf);
|
|
|
|
break;
|
1999-12-07 17:39:16 +00:00
|
|
|
#endif /* INET6 */
|
2013-10-15 09:55:07 +00:00
|
|
|
case AF_LINK:
|
|
|
|
{
|
|
|
|
struct sockaddr_dl *sdl;
|
|
|
|
|
|
|
|
sdl = (struct sockaddr_dl *)ifma->ifma_addr;
|
|
|
|
switch (sdl->sdl_type) {
|
|
|
|
case IFT_ETHER:
|
|
|
|
case IFT_FDDI:
|
|
|
|
fmt = ether_ntoa(
|
|
|
|
(struct ether_addr *)LLADDR(sdl));
|
1997-01-13 21:27:46 +00:00
|
|
|
break;
|
1996-12-02 06:38:30 +00:00
|
|
|
}
|
2013-10-15 09:55:07 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fmt) {
|
|
|
|
printf("%*s %-17.17s",
|
|
|
|
Wflag ? 27 : 25, "", fmt);
|
|
|
|
if (ifma->ifma_addr->sa_family == AF_LINK) {
|
|
|
|
printf(" %8lu", IFA_STAT(imcasts));
|
|
|
|
printf("%*s", bflag ? 17 : 6, "");
|
|
|
|
printf(" %8lu", IFA_STAT(omcasts));
|
2004-04-12 15:00:48 +00:00
|
|
|
}
|
2013-10-15 09:55:07 +00:00
|
|
|
putchar('\n');
|
1997-01-13 21:27:46 +00:00
|
|
|
}
|
2013-10-15 09:55:07 +00:00
|
|
|
|
|
|
|
ifma = ifma->ifma_next;
|
1996-12-02 06:38:30 +00:00
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2013-10-15 09:55:07 +00:00
|
|
|
|
|
|
|
freeifaddrs(ifap);
|
|
|
|
if (aflag)
|
|
|
|
freeifmaddrs(ifmap);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
2013-10-15 09:55:07 +00:00
|
|
|
struct iftot {
|
1999-11-09 22:22:36 +00:00
|
|
|
u_long ift_ip; /* input packets */
|
|
|
|
u_long ift_ie; /* input errors */
|
2009-11-25 15:02:32 +00:00
|
|
|
u_long ift_id; /* input drops */
|
1999-11-09 22:22:36 +00:00
|
|
|
u_long ift_op; /* output packets */
|
|
|
|
u_long ift_oe; /* output errors */
|
|
|
|
u_long ift_co; /* collisions */
|
|
|
|
u_long ift_ib; /* input bytes */
|
|
|
|
u_long ift_ob; /* output bytes */
|
2000-10-30 11:53:19 +00:00
|
|
|
};
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
/*
|
2013-10-15 09:55:07 +00:00
|
|
|
* Obtain stats for interface(s).
|
1994-05-27 12:33:43 +00:00
|
|
|
*/
|
|
|
|
static void
|
2013-10-15 09:55:07 +00:00
|
|
|
fill_iftot(struct iftot *st)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2013-10-15 09:55:07 +00:00
|
|
|
struct ifaddrs *ifap, *ifa;
|
|
|
|
bool found = false;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2013-10-15 09:55:07 +00:00
|
|
|
if (getifaddrs(&ifap) != 0)
|
|
|
|
err(EX_OSERR, "getifaddrs");
|
1996-12-11 20:39:43 +00:00
|
|
|
|
2013-10-15 09:55:07 +00:00
|
|
|
bzero(st, sizeof(*st));
|
2000-10-30 11:53:19 +00:00
|
|
|
|
2013-10-15 09:55:07 +00:00
|
|
|
for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
|
|
|
|
if (ifa->ifa_addr->sa_family != AF_LINK)
|
|
|
|
continue;
|
|
|
|
if (interface) {
|
|
|
|
if (strcmp(ifa->ifa_name, interface) == 0)
|
|
|
|
found = true;
|
|
|
|
else
|
|
|
|
continue;
|
2000-10-30 11:53:19 +00:00
|
|
|
}
|
2013-10-15 09:55:07 +00:00
|
|
|
|
|
|
|
st->ift_ip += IFA_STAT(ipackets);
|
|
|
|
st->ift_ie += IFA_STAT(ierrors);
|
|
|
|
st->ift_id += IFA_STAT(iqdrops);
|
|
|
|
st->ift_ib += IFA_STAT(ibytes);
|
|
|
|
st->ift_op += IFA_STAT(opackets);
|
|
|
|
st->ift_oe += IFA_STAT(oerrors);
|
|
|
|
st->ift_ob += IFA_STAT(obytes);
|
|
|
|
st->ift_co += IFA_STAT(collisions);
|
2000-10-30 11:53:19 +00:00
|
|
|
}
|
2013-10-15 09:55:07 +00:00
|
|
|
|
|
|
|
if (interface && found == false)
|
|
|
|
err(EX_DATAERR, "interface %s not found", interface);
|
|
|
|
|
|
|
|
freeifaddrs(ifap);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set a flag to indicate that a signal from the periodic itimer has been
|
|
|
|
* caught.
|
|
|
|
*/
|
|
|
|
static sig_atomic_t signalled;
|
|
|
|
static void
|
|
|
|
catchalarm(int signo __unused)
|
|
|
|
{
|
|
|
|
signalled = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Print a running summary of interface statistics.
|
|
|
|
* Repeat display every interval seconds, showing statistics
|
|
|
|
* collected over that interval. Assumes that interval is non-zero.
|
|
|
|
* First line printed at top of screen is always cumulative.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
sidewaysintpr(int interval)
|
|
|
|
{
|
|
|
|
struct iftot ift[2], *new, *old;
|
|
|
|
struct itimerval interval_it;
|
|
|
|
int oldmask, line;
|
|
|
|
|
|
|
|
new = &ift[0];
|
|
|
|
old = &ift[1];
|
|
|
|
fill_iftot(old);
|
2000-10-30 11:53:19 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
(void)signal(SIGALRM, catchalarm);
|
2013-10-15 09:55:07 +00:00
|
|
|
signalled = false;
|
|
|
|
interval_it.it_interval.tv_sec = interval;
|
2007-02-27 04:54:33 +00:00
|
|
|
interval_it.it_interval.tv_usec = 0;
|
|
|
|
interval_it.it_value = interval_it.it_interval;
|
|
|
|
setitimer(ITIMER_REAL, &interval_it, NULL);
|
2013-10-15 09:55:07 +00:00
|
|
|
|
1996-02-29 07:44:37 +00:00
|
|
|
banner:
|
|
|
|
printf("%17s %14s %16s", "input",
|
2013-10-15 09:55:07 +00:00
|
|
|
interface != NULL ? interface : "(Total)", "output");
|
1994-05-27 12:33:43 +00:00
|
|
|
putchar('\n');
|
2009-11-25 15:02:32 +00:00
|
|
|
printf("%10s %5s %5s %10s %10s %5s %10s %5s",
|
|
|
|
"packets", "errs", "idrops", "bytes", "packets", "errs", "bytes",
|
|
|
|
"colls");
|
1994-05-27 12:33:43 +00:00
|
|
|
if (dflag)
|
1996-02-29 07:44:37 +00:00
|
|
|
printf(" %5.5s", "drops");
|
1994-05-27 12:33:43 +00:00
|
|
|
putchar('\n');
|
|
|
|
fflush(stdout);
|
|
|
|
line = 0;
|
2013-10-15 09:55:07 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
loop:
|
2010-01-11 03:00:17 +00:00
|
|
|
if ((noutputs != 0) && (--noutputs == 0))
|
|
|
|
exit(0);
|
1994-05-27 12:33:43 +00:00
|
|
|
oldmask = sigblock(sigmask(SIGALRM));
|
2007-02-27 04:54:33 +00:00
|
|
|
while (!signalled)
|
1994-05-27 12:33:43 +00:00
|
|
|
sigpause(0);
|
2013-10-15 09:55:07 +00:00
|
|
|
signalled = false;
|
2007-02-27 04:54:33 +00:00
|
|
|
sigsetmask(oldmask);
|
1996-02-29 07:44:37 +00:00
|
|
|
line++;
|
2013-10-15 09:55:07 +00:00
|
|
|
|
|
|
|
fill_iftot(new);
|
|
|
|
|
|
|
|
show_stat("lu", 10, new->ift_ip - old->ift_ip, 1);
|
|
|
|
show_stat("lu", 5, new->ift_ie - old->ift_ie, 1);
|
|
|
|
show_stat("lu", 5, new->ift_id - old->ift_id, 1);
|
|
|
|
show_stat("lu", 10, new->ift_ib - old->ift_ib, 1);
|
|
|
|
show_stat("lu", 10, new->ift_op - old->ift_op, 1);
|
|
|
|
show_stat("lu", 5, new->ift_oe - old->ift_oe, 1);
|
|
|
|
show_stat("lu", 10, new->ift_ob - old->ift_ob, 1);
|
|
|
|
show_stat("NRSlu", 5, new->ift_co - old->ift_co, 1);
|
|
|
|
/* XXXGL: output queue drops */
|
|
|
|
putchar('\n');
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
if (new == &ift[0]) {
|
|
|
|
new = &ift[1];
|
|
|
|
old = &ift[0];
|
|
|
|
} else {
|
|
|
|
new = &ift[0];
|
|
|
|
old = &ift[1];
|
|
|
|
}
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
if (line == 21)
|
|
|
|
goto banner;
|
1996-02-29 07:44:37 +00:00
|
|
|
else
|
|
|
|
goto loop;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2013-10-15 09:55:07 +00:00
|
|
|
/* NOTREACHED */
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|