1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 2013 Gleb Smirnoff <glebius@FreeBSD.org> 5 * Copyright (c) 1983, 1988, 1993 6 * The Regents of the University of California. All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 3. Neither the name of the University nor the names of its contributors 17 * may be used to endorse or promote products derived from this software 18 * without specific prior written permission. 19 * 20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 30 * SUCH DAMAGE. 31 */ 32 33 #include <sys/param.h> 34 #include <sys/protosw.h> 35 #include <sys/socket.h> 36 #include <sys/socketvar.h> 37 #include <sys/time.h> 38 39 #include <net/if.h> 40 #include <net/if_dl.h> 41 #include <net/if_types.h> 42 #include <net/ethernet.h> 43 #include <netinet/in.h> 44 #include <netinet/in_var.h> 45 #include <arpa/inet.h> 46 #ifdef PF 47 #include <net/pfvar.h> 48 #include <net/pflow.h> 49 #include <net/if_pfsync.h> 50 #endif 51 52 #include <errno.h> 53 #include <ifaddrs.h> 54 #include <libutil.h> 55 #ifdef INET6 56 #include <netdb.h> 57 #endif 58 #include <signal.h> 59 #include <stdbool.h> 60 #include <stdint.h> 61 #include <stdio.h> 62 #include <stdlib.h> 63 #include <string.h> 64 #include <sysexits.h> 65 #include <unistd.h> 66 #include <libxo/xo.h> 67 68 #include "netstat.h" 69 70 static void sidewaysintpr(void); 71 72 #ifdef PF 73 static const char* pfsyncacts[] = { 74 /* PFSYNC_ACT_CLR */ "clear all request", 75 /* PFSYNC_ACT_INS_1301 */ "13.1 state insert", 76 /* PFSYNC_ACT_INS_ACK */ "state inserted ack", 77 /* PFSYNC_ACT_UPD_1301 */ "13.1 state update", 78 /* PFSYNC_ACT_UPD_C */ "compressed state update", 79 /* PFSYNC_ACT_UPD_REQ */ "uncompressed state request", 80 /* PFSYNC_ACT_DEL */ "state delete", 81 /* PFSYNC_ACT_DEL_C */ "compressed state delete", 82 /* PFSYNC_ACT_INS_F */ "fragment insert", 83 /* PFSYNC_ACT_DEL_F */ "fragment delete", 84 /* PFSYNC_ACT_BUS */ "bulk update mark", 85 /* PFSYNC_ACT_TDB */ "TDB replay counter update", 86 /* PFSYNC_ACT_EOF */ "end of frame mark", 87 /* PFSYNC_ACT_INS_1400 */ "14.0 state insert", 88 /* PFSYNC_ACT_UPD_1400 */ "14.0 state update", 89 /* PFSYNC_ACT_INS_1500 */ "state insert", 90 /* PFSYNC_ACT_UPD_1500 */ "state update", 91 }; 92 93 static const char* pfsyncacts_name[] = { 94 /* PFSYNC_ACT_CLR */ "clear-all-request", 95 /* PFSYNC_ACT_INS_1301 */ "state-insert-1301", 96 /* PFSYNC_ACT_INS_ACK */ "state-inserted-ack", 97 /* PFSYNC_ACT_UPD_1301 */ "state-update-1301", 98 /* PFSYNC_ACT_UPD_C */ "compressed-state-update", 99 /* PFSYNC_ACT_UPD_REQ */ "uncompressed-state-request", 100 /* PFSYNC_ACT_DEL */ "state-delete", 101 /* PFSYNC_ACT_DEL_C */ "compressed-state-delete", 102 /* PFSYNC_ACT_INS_F */ "fragment-insert", 103 /* PFSYNC_ACT_DEL_F */ "fragment-delete", 104 /* PFSYNC_ACT_BUS */ "bulk-update-mark", 105 /* PFSYNC_ACT_TDB */ "TDB-replay-counter-update", 106 /* PFSYNC_ACT_EOF */ "end-of-frame-mark", 107 /* PFSYNC_ACT_INS_1400 */ "state-insert-1400", 108 /* PFSYNC_ACT_UPD_1400 */ "state-update-1400", 109 /* PFSYNC_ACT_INS_1500 */ "state-insert", 110 /* PFSYNC_ACT_UPD_1500 */ "state-update", 111 }; 112 113 static void 114 pfsync_acts_stats(const char *list, const char *desc, uint64_t *a) 115 { 116 int i; 117 118 xo_open_list(list); 119 for (i = 0; i < PFSYNC_ACT_MAX; i++, a++) { 120 if (*a || sflag <= 1) { 121 xo_open_instance(list); 122 xo_emit("\t\t{e:name}{:count/%ju} {N:/%s%s %s}\n", 123 pfsyncacts_name[i], (uintmax_t)(*a), 124 pfsyncacts[i], plural(*a), desc); 125 xo_close_instance(list); 126 } 127 } 128 xo_close_list(list); 129 } 130 131 /* 132 * Dump pfsync statistics structure. 133 */ 134 void 135 pfsync_stats(u_long off, const char *name, int af1 __unused, int proto __unused) 136 { 137 struct pfsyncstats pfsyncstat; 138 139 if (fetch_stats("net.pfsync.stats", off, &pfsyncstat, 140 sizeof(pfsyncstat), kread) != 0) 141 return; 142 143 xo_emit("{T:/%s}:\n", name); 144 xo_open_container(name); 145 146 #define p(f, m) if (pfsyncstat.f || sflag <= 1) \ 147 xo_emit(m, (uintmax_t)pfsyncstat.f, plural(pfsyncstat.f)) 148 149 p(pfsyncs_ipackets, "\t{:received-inet-packets/%ju} " 150 "{N:/packet%s received (IPv4)}\n"); 151 p(pfsyncs_ipackets6, "\t{:received-inet6-packets/%ju} " 152 "{N:/packet%s received (IPv6)}\n"); 153 pfsync_acts_stats("input-histogram", "received", 154 &pfsyncstat.pfsyncs_iacts[0]); 155 p(pfsyncs_badif, "\t\t{:dropped-bad-interface/%ju} " 156 "{N:/packet%s discarded for bad interface}\n"); 157 p(pfsyncs_badttl, "\t\t{:dropped-bad-ttl/%ju} " 158 "{N:/packet%s discarded for bad ttl}\n"); 159 p(pfsyncs_hdrops, "\t\t{:dropped-short-header/%ju} " 160 "{N:/packet%s shorter than header}\n"); 161 p(pfsyncs_badver, "\t\t{:dropped-bad-version/%ju} " 162 "{N:/packet%s discarded for bad version}\n"); 163 p(pfsyncs_badauth, "\t\t{:dropped-bad-auth/%ju} " 164 "{N:/packet%s discarded for bad HMAC}\n"); 165 p(pfsyncs_badact,"\t\t{:dropped-bad-action/%ju} " 166 "{N:/packet%s discarded for bad action}\n"); 167 p(pfsyncs_badlen, "\t\t{:dropped-short/%ju} " 168 "{N:/packet%s discarded for short packet}\n"); 169 p(pfsyncs_badval, "\t\t{:dropped-bad-values/%ju} " 170 "{N:/state%s discarded for bad values}\n"); 171 p(pfsyncs_stale, "\t\t{:dropped-stale-state/%ju} " 172 "{N:/stale state%s}\n"); 173 p(pfsyncs_badstate, "\t\t{:dropped-failed-lookup/%ju} " 174 "{N:/failed state lookup\\/insert%s}\n"); 175 p(pfsyncs_opackets, "\t{:sent-inet-packets/%ju} " 176 "{N:/packet%s sent (IPv4})\n"); 177 p(pfsyncs_opackets6, "\t{:send-inet6-packets/%ju} " 178 "{N:/packet%s sent (IPv6})\n"); 179 pfsync_acts_stats("output-histogram", "sent", 180 &pfsyncstat.pfsyncs_oacts[0]); 181 p(pfsyncs_onomem, "\t\t{:discarded-no-memory/%ju} " 182 "{N:/failure%s due to mbuf memory error}\n"); 183 p(pfsyncs_oerrors, "\t\t{:send-errors/%ju} " 184 "{N:/send error%s}\n"); 185 #undef p 186 xo_close_container(name); 187 } 188 189 void 190 pflow_stats(u_long off, const char *name, int af1 __unused, int proto __unused) 191 { 192 struct pflowstats pflowstat; 193 194 if (fetch_stats("net.pflow.stats", off, &pflowstat, 195 sizeof(pflowstat), kread) != 0) 196 return; 197 198 xo_emit("{T:/%s}:\n", name); 199 xo_open_container(name); 200 201 #define p(f, m) if (pflowstat.f || sflag <= 1) \ 202 xo_emit(m, (uintmax_t)pflowstat.f, plural(pflowstat.f)) 203 204 p(pflow_flows, "\t{:flows/%ju} {N:/flow%s sent}\n"); 205 p(pflow_packets, "\t{:packets/%ju} {N:/packet%s sent}\n"); 206 p(pflow_onomem, "\t{:nomem/%ju} " 207 "{N:/send failed due to mbuf memory error}\n"); 208 p(pflow_oerrors, "\t{:send-error/%ju} {N:/send error}\n"); 209 #undef p 210 211 xo_close_container(name); 212 } 213 #endif /* PF */ 214 215 /* 216 * Display a formatted value, or a '-' in the same space. 217 */ 218 static void 219 show_stat(const char *fmt, int width, const char *name, 220 u_long value, short showvalue, int div1000) 221 { 222 const char *lsep, *rsep; 223 char newfmt[64]; 224 225 lsep = ""; 226 if (strncmp(fmt, "LS", 2) == 0) { 227 lsep = " "; 228 fmt += 2; 229 } 230 rsep = " "; 231 if (strncmp(fmt, "NRS", 3) == 0) { 232 rsep = ""; 233 fmt += 3; 234 } 235 if (showvalue == 0) { 236 /* Print just dash. */ 237 xo_emit("{P:/%s}{D:/%*s}{P:/%s}", lsep, width, "-", rsep); 238 return; 239 } 240 241 /* 242 * XXX: workaround {P:} modifier can't be empty and doesn't seem to 243 * take args... so we need to conditionally include it in the format. 244 */ 245 #define maybe_pad(pad) do { \ 246 if (strlen(pad)) { \ 247 snprintf(newfmt, sizeof(newfmt), "{P:%s}", pad); \ 248 xo_emit(newfmt); \ 249 } \ 250 } while (0) 251 252 if (hflag) { 253 char buf[5]; 254 255 /* Format in human readable form. */ 256 humanize_number(buf, sizeof(buf), (int64_t)value, "", 257 HN_AUTOSCALE, HN_NOSPACE | HN_DECIMAL | \ 258 ((div1000) ? HN_DIVISOR_1000 : 0)); 259 maybe_pad(lsep); 260 snprintf(newfmt, sizeof(newfmt), "{:%s/%%%ds}", name, width); 261 xo_emit(newfmt, buf); 262 maybe_pad(rsep); 263 } else { 264 /* Construct the format string. */ 265 maybe_pad(lsep); 266 snprintf(newfmt, sizeof(newfmt), "{:%s/%%%d%s}", 267 name, width, fmt); 268 xo_emit(newfmt, value); 269 maybe_pad(rsep); 270 } 271 } 272 273 /* 274 * Find next multiaddr for a given interface name. 275 */ 276 static struct ifmaddrs * 277 next_ifma(struct ifmaddrs *ifma, const char *name, const sa_family_t family) 278 { 279 280 for(; ifma != NULL; ifma = ifma->ifma_next) { 281 struct sockaddr_dl *sdl; 282 283 sdl = (struct sockaddr_dl *)ifma->ifma_name; 284 if (ifma->ifma_addr->sa_family == family && 285 strcmp(sdl->sdl_data, name) == 0) 286 break; 287 } 288 289 return (ifma); 290 } 291 292 enum process_op { MEASURE, EMIT }; 293 294 static void 295 process_ifa_addr(enum process_op op, struct ifaddrs *ifa, int *max_net_len, 296 int *max_addr_len, bool *network, bool *link) 297 { 298 int net_len, addr_len; 299 const char *nn, *rn; 300 301 if (op == EMIT) { 302 net_len = *max_net_len; 303 addr_len = *max_addr_len; 304 } 305 306 switch (ifa->ifa_addr->sa_family) { 307 case AF_UNSPEC: 308 if (op == MEASURE) { 309 net_len = strlen("none"); 310 addr_len = strlen("none"); 311 } else { 312 xo_emit("{:network/%-*.*s} ", net_len, net_len, 313 "none"); 314 xo_emit("{:address/%-*.*s} ", addr_len, addr_len, 315 "none"); 316 } 317 break; 318 case AF_INET: 319 #ifdef INET6 320 case AF_INET6: 321 #endif /* INET6 */ 322 nn = netname(ifa->ifa_addr, ifa->ifa_netmask); 323 rn = routename(ifa->ifa_addr, numeric_addr); 324 if (op == MEASURE) { 325 net_len = strlen(nn); 326 addr_len = strlen(rn); 327 } else { 328 xo_emit("{t:network/%-*s} ", net_len, nn); 329 xo_emit("{t:address/%-*s} ", addr_len, rn); 330 } 331 332 if (network != NULL) 333 *network = true; 334 break; 335 case AF_LINK: 336 { 337 struct sockaddr_dl *sdl; 338 char linknum[sizeof("<Link#32767>")]; 339 340 sdl = (struct sockaddr_dl *)ifa->ifa_addr; 341 snprintf(linknum, sizeof(linknum), "<Link#%d>", sdl->sdl_index); 342 if (op == MEASURE) { 343 net_len = strlen(linknum); 344 if (sdl->sdl_nlen == 0 && 345 sdl->sdl_alen == 0 && 346 sdl->sdl_slen == 0) 347 addr_len = 1; 348 else 349 addr_len = strlen(routename(ifa->ifa_addr, 1)); 350 } else { 351 xo_emit("{t:network/%-*.*s} ", net_len, net_len, 352 linknum); 353 if (sdl->sdl_nlen == 0 && 354 sdl->sdl_alen == 0 && 355 sdl->sdl_slen == 0) 356 xo_emit("{P:/%*s} ", addr_len, ""); 357 else 358 xo_emit("{t:address/%-*.*s} ", addr_len, 359 addr_len, routename(ifa->ifa_addr, 1)); 360 } 361 if (link != NULL) 362 *link = true; 363 break; 364 } 365 } 366 367 if (op == MEASURE) { 368 if (net_len > *max_net_len) 369 *max_net_len = net_len; 370 if (addr_len > *max_addr_len) 371 *max_addr_len = addr_len; 372 } 373 } 374 375 static int 376 max_num_len(int max_len, u_long num) 377 { 378 int len = 2; /* include space */ 379 380 for (; num > 10; len++) 381 num /= 10; 382 return (MAX(max_len, len)); 383 } 384 385 /* 386 * Print a description of the network interfaces. 387 */ 388 void 389 intpr(void (*pfunc)(char *), int af) 390 { 391 struct ifaddrs *ifap, *ifa; 392 struct ifmaddrs *ifmap, *ifma; 393 u_int ifn_len_max = 5, ifn_len; 394 u_int net_len = strlen("Network "), addr_len = strlen("Address "); 395 u_int npkt_len = 8, nbyte_len = 10, nerr_len = 5; 396 397 if (interval) 398 return sidewaysintpr(); 399 400 if (getifaddrs(&ifap) != 0) 401 xo_err(EX_OSERR, "getifaddrs"); 402 if (aflag && getifmaddrs(&ifmap) != 0) 403 xo_err(EX_OSERR, "getifmaddrs"); 404 405 for (ifa = ifap; ifa; ifa = ifa->ifa_next) { 406 if (interface != NULL && 407 strcmp(ifa->ifa_name, interface) != 0) 408 continue; 409 if (af != AF_UNSPEC && ifa->ifa_addr->sa_family != af) 410 continue; 411 ifn_len = strlen(ifa->ifa_name); 412 if ((ifa->ifa_flags & IFF_UP) == 0) 413 ++ifn_len; 414 ifn_len_max = MAX(ifn_len_max, ifn_len); 415 process_ifa_addr(MEASURE, ifa, &net_len, &addr_len, 416 NULL, NULL); 417 418 #define IFA_STAT(s) (((struct if_data *)ifa->ifa_data)->ifi_ ## s) 419 if (!hflag) { 420 npkt_len = max_num_len(npkt_len, IFA_STAT(ipackets)); 421 npkt_len = max_num_len(npkt_len, IFA_STAT(opackets)); 422 nerr_len = max_num_len(nerr_len, IFA_STAT(ierrors)); 423 nerr_len = max_num_len(nerr_len, IFA_STAT(iqdrops)); 424 nerr_len = max_num_len(nerr_len, IFA_STAT(collisions)); 425 if (dflag) 426 nerr_len = max_num_len(nerr_len, 427 IFA_STAT(oqdrops)); 428 if (bflag) { 429 nbyte_len = max_num_len(nbyte_len, 430 IFA_STAT(ibytes)); 431 nbyte_len = max_num_len(nbyte_len, 432 IFA_STAT(obytes)); 433 } 434 } 435 } 436 437 xo_open_list("interface"); 438 if (!pfunc) { 439 xo_emit("{T:/%-*.*s}", ifn_len_max, ifn_len_max, "Name"); 440 xo_emit(" {T:/%5.5s} {T:/%-*.*s} {T:/%-*.*s} {T:/%*.*s} " 441 "{T:/%*.*s} {T:/%*.*s}", 442 "Mtu", net_len, net_len, "Network", addr_len, addr_len, 443 "Address", npkt_len, npkt_len, "Ipkts", 444 nerr_len, nerr_len, "Ierrs", nerr_len, nerr_len, "Idrop"); 445 if (bflag) 446 xo_emit(" {T:/%*.*s}", nbyte_len, nbyte_len, "Ibytes"); 447 xo_emit(" {T:/%*.*s} {T:/%*.*s}", npkt_len, npkt_len, "Opkts", 448 nerr_len, nerr_len, "Oerrs"); 449 if (bflag) 450 xo_emit(" {T:/%*.*s}", nbyte_len, nbyte_len, "Obytes"); 451 xo_emit(" {T:/%*s}", nerr_len, "Coll"); 452 if (dflag) 453 xo_emit(" {T:/%*.*s}", nerr_len, nerr_len, "Drop"); 454 xo_emit("\n"); 455 } 456 457 for (ifa = ifap; ifa; ifa = ifa->ifa_next) { 458 bool network = false, link = false; 459 char *name, *xname, buf[IFNAMSIZ+1]; 460 461 if (interface != NULL && strcmp(ifa->ifa_name, interface) != 0) 462 continue; 463 464 name = ifa->ifa_name; 465 466 if (pfunc) { 467 468 (*pfunc)(name); 469 470 /* 471 * Skip all ifaddrs belonging to same interface. 472 */ 473 while(ifa->ifa_next != NULL && 474 (strcmp(ifa->ifa_next->ifa_name, name) == 0)) { 475 ifa = ifa->ifa_next; 476 } 477 continue; 478 } 479 480 if (af != AF_UNSPEC && ifa->ifa_addr->sa_family != af) 481 continue; 482 483 xo_open_instance("interface"); 484 485 if ((ifa->ifa_flags & IFF_UP) == 0) { 486 xname = stpcpy(buf, name); 487 *xname++ = '*'; 488 *xname = '\0'; 489 xname = buf; 490 } else 491 xname = name; 492 493 xo_emit("{d:/%-*.*s}{etk:name}{eq:flags/0x%x}", 494 ifn_len_max, ifn_len_max, xname, name, ifa->ifa_flags); 495 496 #define IFA_MTU(ifa) (((struct if_data *)(ifa)->ifa_data)->ifi_mtu) 497 show_stat("lu", 6, "mtu", IFA_MTU(ifa), IFA_MTU(ifa), 0); 498 #undef IFA_MTU 499 500 process_ifa_addr(EMIT, ifa, &net_len, &addr_len, 501 &network, &link); 502 503 show_stat("lu", npkt_len, "received-packets", 504 IFA_STAT(ipackets), link|network, 1); 505 show_stat("lu", nerr_len, "received-errors", IFA_STAT(ierrors), 506 link, 1); 507 show_stat("lu", nerr_len, "dropped-packets", IFA_STAT(iqdrops), 508 link, 1); 509 if (bflag) 510 show_stat("lu", nbyte_len, "received-bytes", 511 IFA_STAT(ibytes), link|network, 0); 512 show_stat("lu", npkt_len, "sent-packets", IFA_STAT(opackets), 513 link|network, 1); 514 show_stat("lu", nerr_len, "send-errors", IFA_STAT(oerrors), 515 link, 1); 516 if (bflag) 517 show_stat("lu", nbyte_len, "sent-bytes", 518 IFA_STAT(obytes), link|network, 0); 519 show_stat("NRSlu", nerr_len, "collisions", IFA_STAT(collisions), 520 link, 1); 521 if (dflag) 522 show_stat("LSlu", nerr_len, "dropped-packets", 523 IFA_STAT(oqdrops), link, 1); 524 xo_emit("\n"); 525 526 if (!aflag) { 527 xo_close_instance("interface"); 528 continue; 529 } 530 531 /* 532 * Print family's multicast addresses. 533 */ 534 xo_open_list("multicast-address"); 535 for (ifma = next_ifma(ifmap, ifa->ifa_name, 536 ifa->ifa_addr->sa_family); 537 ifma != NULL; 538 ifma = next_ifma(ifma, ifa->ifa_name, 539 ifa->ifa_addr->sa_family)) { 540 const char *fmt = NULL; 541 542 xo_open_instance("multicast-address"); 543 switch (ifma->ifma_addr->sa_family) { 544 case AF_LINK: 545 { 546 struct sockaddr_dl *sdl; 547 548 sdl = (struct sockaddr_dl *)ifma->ifma_addr; 549 if (sdl->sdl_type != IFT_ETHER && 550 sdl->sdl_type != IFT_FDDI) 551 break; 552 } 553 /* FALLTHROUGH */ 554 case AF_INET: 555 #ifdef INET6 556 case AF_INET6: 557 #endif /* INET6 */ 558 fmt = routename(ifma->ifma_addr, numeric_addr); 559 break; 560 } 561 if (fmt) { 562 if (Wflag) 563 xo_emit("{P:/%27s }" 564 "{t:address/%-17s/}", "", fmt); 565 else 566 xo_emit("{P:/%25s }" 567 "{t:address/%-17.17s/}", "", fmt); 568 if (ifma->ifma_addr->sa_family == AF_LINK) { 569 xo_emit(" {:received-packets/%8lu}", 570 IFA_STAT(imcasts)); 571 xo_emit("{P:/%*s}", bflag? 17 : 6, ""); 572 xo_emit(" {:sent-packets/%8lu}", 573 IFA_STAT(omcasts)); 574 } 575 xo_emit("\n"); 576 } 577 xo_close_instance("multicast-address"); 578 ifma = ifma->ifma_next; 579 } 580 xo_close_list("multicast-address"); 581 xo_close_instance("interface"); 582 } 583 xo_close_list("interface"); 584 585 freeifaddrs(ifap); 586 if (aflag) 587 freeifmaddrs(ifmap); 588 } 589 590 struct iftot { 591 u_long ift_ip; /* input packets */ 592 u_long ift_ie; /* input errors */ 593 u_long ift_id; /* input drops */ 594 u_long ift_op; /* output packets */ 595 u_long ift_oe; /* output errors */ 596 u_long ift_od; /* output drops */ 597 u_long ift_co; /* collisions */ 598 u_long ift_ib; /* input bytes */ 599 u_long ift_ob; /* output bytes */ 600 }; 601 602 /* 603 * Obtain stats for interface(s). 604 */ 605 static void 606 fill_iftot(struct iftot *st) 607 { 608 struct ifaddrs *ifap, *ifa; 609 bool found = false; 610 611 if (getifaddrs(&ifap) != 0) 612 xo_err(EX_OSERR, "getifaddrs"); 613 614 bzero(st, sizeof(*st)); 615 616 for (ifa = ifap; ifa; ifa = ifa->ifa_next) { 617 if (ifa->ifa_addr->sa_family != AF_LINK) 618 continue; 619 if (interface) { 620 if (strcmp(ifa->ifa_name, interface) == 0) 621 found = true; 622 else 623 continue; 624 } 625 626 st->ift_ip += IFA_STAT(ipackets); 627 st->ift_ie += IFA_STAT(ierrors); 628 st->ift_id += IFA_STAT(iqdrops); 629 st->ift_ib += IFA_STAT(ibytes); 630 st->ift_op += IFA_STAT(opackets); 631 st->ift_oe += IFA_STAT(oerrors); 632 st->ift_od += IFA_STAT(oqdrops); 633 st->ift_ob += IFA_STAT(obytes); 634 st->ift_co += IFA_STAT(collisions); 635 } 636 637 if (interface && found == false) 638 xo_err(EX_DATAERR, "interface %s not found", interface); 639 640 freeifaddrs(ifap); 641 } 642 643 /* 644 * Set a flag to indicate that a signal from the periodic itimer has been 645 * caught. 646 */ 647 static sig_atomic_t signalled; 648 static void 649 catchalarm(int signo __unused) 650 { 651 signalled = true; 652 } 653 654 /* 655 * Print a running summary of interface statistics. 656 * Repeat display every interval seconds, showing statistics 657 * collected over that interval. Assumes that interval is non-zero. 658 * First line printed at top of screen is always cumulative. 659 */ 660 static void 661 sidewaysintpr(void) 662 { 663 struct iftot ift[2], *new, *old; 664 struct itimerval interval_it; 665 int oldmask, line; 666 667 new = &ift[0]; 668 old = &ift[1]; 669 fill_iftot(old); 670 671 (void)signal(SIGALRM, catchalarm); 672 signalled = false; 673 interval_it.it_interval.tv_sec = interval; 674 interval_it.it_interval.tv_usec = 0; 675 interval_it.it_value = interval_it.it_interval; 676 setitimer(ITIMER_REAL, &interval_it, NULL); 677 xo_open_list("interface-statistics"); 678 679 banner: 680 xo_emit("{T:/%17s} {T:/%14s} {T:/%16s}\n", "input", 681 interface != NULL ? interface : "(Total)", "output"); 682 xo_emit("{T:/%10s} {T:/%5s} {T:/%5s} {T:/%10s} {T:/%10s} {T:/%5s} " 683 "{T:/%10s} {T:/%5s}", 684 "packets", "errs", "idrops", "bytes", "packets", "errs", "bytes", 685 "colls"); 686 if (dflag) 687 xo_emit(" {T:/%5.5s}", "drops"); 688 xo_emit("\n"); 689 xo_flush(); 690 line = 0; 691 692 loop: 693 if ((noutputs != 0) && (--noutputs == 0)) { 694 xo_close_list("interface-statistics"); 695 return; 696 } 697 oldmask = sigblock(sigmask(SIGALRM)); 698 while (!signalled) 699 sigpause(0); 700 signalled = false; 701 sigsetmask(oldmask); 702 line++; 703 704 fill_iftot(new); 705 706 xo_open_instance("stats"); 707 show_stat("lu", 10, "received-packets", 708 new->ift_ip - old->ift_ip, 1, 1); 709 show_stat("lu", 5, "received-errors", 710 new->ift_ie - old->ift_ie, 1, 1); 711 show_stat("lu", 5, "dropped-packets", 712 new->ift_id - old->ift_id, 1, 1); 713 show_stat("lu", 10, "received-bytes", 714 new->ift_ib - old->ift_ib, 1, 0); 715 show_stat("lu", 10, "sent-packets", 716 new->ift_op - old->ift_op, 1, 1); 717 show_stat("lu", 5, "send-errors", 718 new->ift_oe - old->ift_oe, 1, 1); 719 show_stat("lu", 10, "sent-bytes", 720 new->ift_ob - old->ift_ob, 1, 0); 721 show_stat("NRSlu", 5, "collisions", 722 new->ift_co - old->ift_co, 1, 1); 723 if (dflag) 724 show_stat("LSlu", 5, "dropped-packets", 725 new->ift_od - old->ift_od, 1, 1); 726 xo_close_instance("stats"); 727 xo_emit("\n"); 728 xo_flush(); 729 730 if (new == &ift[0]) { 731 new = &ift[1]; 732 old = &ift[0]; 733 } else { 734 new = &ift[0]; 735 old = &ift[1]; 736 } 737 738 if (line == 21) 739 goto banner; 740 else 741 goto loop; 742 743 /* NOTREACHED */ 744 } 745