165475bc8SDavid E. O'Brien /*- 205ddff6eSPeter Wemm * Copyright (c) 1983, 1988, 1993, 1995 39b50d902SRodney W. Grimes * The Regents of the University of California. All rights reserved. 49b50d902SRodney W. Grimes * 59b50d902SRodney W. Grimes * Redistribution and use in source and binary forms, with or without 69b50d902SRodney W. Grimes * modification, are permitted provided that the following conditions 79b50d902SRodney W. Grimes * are met: 89b50d902SRodney W. Grimes * 1. Redistributions of source code must retain the above copyright 99b50d902SRodney W. Grimes * notice, this list of conditions and the following disclaimer. 109b50d902SRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright 119b50d902SRodney W. Grimes * notice, this list of conditions and the following disclaimer in the 129b50d902SRodney W. Grimes * documentation and/or other materials provided with the distribution. 139b50d902SRodney W. Grimes * 3. All advertising materials mentioning features or use of this software 149b50d902SRodney W. Grimes * must display the following acknowledgement: 159b50d902SRodney W. Grimes * This product includes software developed by the University of 169b50d902SRodney W. Grimes * California, Berkeley and its contributors. 179b50d902SRodney W. Grimes * 4. Neither the name of the University nor the names of its contributors 189b50d902SRodney W. Grimes * may be used to endorse or promote products derived from this software 199b50d902SRodney W. Grimes * without specific prior written permission. 209b50d902SRodney W. Grimes * 219b50d902SRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 229b50d902SRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 239b50d902SRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 249b50d902SRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 259b50d902SRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 269b50d902SRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 279b50d902SRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 289b50d902SRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 299b50d902SRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 309b50d902SRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 319b50d902SRodney W. Grimes * SUCH DAMAGE. 329b50d902SRodney W. Grimes */ 339b50d902SRodney W. Grimes 346cc6f122SPhilippe Charnier #if 0 359b50d902SRodney W. Grimes #ifndef lint 3605ddff6eSPeter Wemm static char sccsid[] = "@(#)inet.c 8.5 (Berkeley) 5/24/95"; 379b50d902SRodney W. Grimes #endif /* not lint */ 386cc6f122SPhilippe Charnier #endif 396cc6f122SPhilippe Charnier 406cc6f122SPhilippe Charnier #include <sys/cdefs.h> 416cc6f122SPhilippe Charnier __FBSDID("$FreeBSD$"); 429b50d902SRodney W. Grimes 439b50d902SRodney W. Grimes #include <sys/param.h> 44d8d89152SDavid Greenman #include <sys/queue.h> 45feda1a43SJohn Baldwin #include <sys/domain.h> 469b50d902SRodney W. Grimes #include <sys/socket.h> 479b50d902SRodney W. Grimes #include <sys/socketvar.h> 484e00c309SGarrett Wollman #include <sys/sysctl.h> 499b50d902SRodney W. Grimes #include <sys/protosw.h> 509b50d902SRodney W. Grimes 519b50d902SRodney W. Grimes #include <net/route.h> 529b50d902SRodney W. Grimes #include <netinet/in.h> 539b50d902SRodney W. Grimes #include <netinet/in_systm.h> 549b50d902SRodney W. Grimes #include <netinet/ip.h> 55a9771948SGleb Smirnoff #include <netinet/ip_carp.h> 56cfa1ca9dSYoshinobu Inoue #ifdef INET6 57cfa1ca9dSYoshinobu Inoue #include <netinet/ip6.h> 58cfa1ca9dSYoshinobu Inoue #endif /* INET6 */ 599b50d902SRodney W. Grimes #include <netinet/in_pcb.h> 609b50d902SRodney W. Grimes #include <netinet/ip_icmp.h> 619b50d902SRodney W. Grimes #include <netinet/icmp_var.h> 629b50d902SRodney W. Grimes #include <netinet/igmp_var.h> 639b50d902SRodney W. Grimes #include <netinet/ip_var.h> 64c7b9b5bbSJeffrey Hsu #include <netinet/pim_var.h> 659b50d902SRodney W. Grimes #include <netinet/tcp.h> 669b50d902SRodney W. Grimes #include <netinet/tcpip.h> 679b50d902SRodney W. Grimes #include <netinet/tcp_seq.h> 689b50d902SRodney W. Grimes #define TCPSTATES 699b50d902SRodney W. Grimes #include <netinet/tcp_fsm.h> 709b50d902SRodney W. Grimes #include <netinet/tcp_timer.h> 719b50d902SRodney W. Grimes #include <netinet/tcp_var.h> 729b50d902SRodney W. Grimes #include <netinet/tcp_debug.h> 739b50d902SRodney W. Grimes #include <netinet/udp.h> 749b50d902SRodney W. Grimes #include <netinet/udp_var.h> 759b50d902SRodney W. Grimes 769b50d902SRodney W. Grimes #include <arpa/inet.h> 774f81ef50SGarrett Wollman #include <err.h> 784f81ef50SGarrett Wollman #include <errno.h> 79d121b556SBrian Somers #include <libutil.h> 809b50d902SRodney W. Grimes #include <netdb.h> 817b95a1ebSYaroslav Tykhiy #include <stdint.h> 829b50d902SRodney W. Grimes #include <stdio.h> 834f81ef50SGarrett Wollman #include <stdlib.h> 849b50d902SRodney W. Grimes #include <string.h> 859b50d902SRodney W. Grimes #include <unistd.h> 869b50d902SRodney W. Grimes #include "netstat.h" 879b50d902SRodney W. Grimes 885e051718SAssar Westerlund char *inetname(struct in_addr *); 89a01e3379SDavid Malone void inetprint(struct in_addr *, int, const char *, int); 90cfa1ca9dSYoshinobu Inoue #ifdef INET6 91cfa1ca9dSYoshinobu Inoue static int udp_done, tcp_done; 92cfa1ca9dSYoshinobu Inoue #endif /* INET6 */ 939b50d902SRodney W. Grimes 94feda1a43SJohn Baldwin static int 95feda1a43SJohn Baldwin pcblist_sysctl(int proto, char **bufp, int istcp) 96feda1a43SJohn Baldwin { 97feda1a43SJohn Baldwin const char *mibvar; 98feda1a43SJohn Baldwin char *buf; 99feda1a43SJohn Baldwin size_t len; 100feda1a43SJohn Baldwin 101feda1a43SJohn Baldwin switch (proto) { 102feda1a43SJohn Baldwin case IPPROTO_TCP: 103feda1a43SJohn Baldwin mibvar = "net.inet.tcp.pcblist"; 104feda1a43SJohn Baldwin break; 105feda1a43SJohn Baldwin case IPPROTO_UDP: 106feda1a43SJohn Baldwin mibvar = "net.inet.udp.pcblist"; 107feda1a43SJohn Baldwin break; 108feda1a43SJohn Baldwin case IPPROTO_DIVERT: 109feda1a43SJohn Baldwin mibvar = "net.inet.divert.pcblist"; 110feda1a43SJohn Baldwin break; 111feda1a43SJohn Baldwin default: 112feda1a43SJohn Baldwin mibvar = "net.inet.raw.pcblist"; 113feda1a43SJohn Baldwin break; 114feda1a43SJohn Baldwin } 115feda1a43SJohn Baldwin 116feda1a43SJohn Baldwin len = 0; 117feda1a43SJohn Baldwin if (sysctlbyname(mibvar, 0, &len, 0, 0) < 0) { 118feda1a43SJohn Baldwin if (errno != ENOENT) 119feda1a43SJohn Baldwin warn("sysctl: %s", mibvar); 120feda1a43SJohn Baldwin return (0); 121feda1a43SJohn Baldwin } 122feda1a43SJohn Baldwin if ((buf = malloc(len)) == 0) { 123feda1a43SJohn Baldwin warnx("malloc %lu bytes", (u_long)len); 124feda1a43SJohn Baldwin return (0); 125feda1a43SJohn Baldwin } 126feda1a43SJohn Baldwin if (sysctlbyname(mibvar, buf, &len, 0, 0) < 0) { 127feda1a43SJohn Baldwin warn("sysctl: %s", mibvar); 128feda1a43SJohn Baldwin free(buf); 129feda1a43SJohn Baldwin return (0); 130feda1a43SJohn Baldwin } 131feda1a43SJohn Baldwin *bufp = buf; 132feda1a43SJohn Baldwin return (1); 133feda1a43SJohn Baldwin } 134feda1a43SJohn Baldwin 135feda1a43SJohn Baldwin /* 136feda1a43SJohn Baldwin * Copied directly from uipc_socket2.c. We leave out some fields that are in 137feda1a43SJohn Baldwin * nested structures that aren't used to avoid extra work. 138feda1a43SJohn Baldwin */ 139feda1a43SJohn Baldwin static void 140feda1a43SJohn Baldwin sbtoxsockbuf(struct sockbuf *sb, struct xsockbuf *xsb) 141feda1a43SJohn Baldwin { 142feda1a43SJohn Baldwin xsb->sb_cc = sb->sb_cc; 143feda1a43SJohn Baldwin xsb->sb_hiwat = sb->sb_hiwat; 144feda1a43SJohn Baldwin xsb->sb_mbcnt = sb->sb_mbcnt; 14549f287f8SGeorge V. Neville-Neil xsb->sb_mcnt = sb->sb_mcnt; 14649f287f8SGeorge V. Neville-Neil xsb->sb_ccnt = sb->sb_ccnt; 147feda1a43SJohn Baldwin xsb->sb_mbmax = sb->sb_mbmax; 148feda1a43SJohn Baldwin xsb->sb_lowat = sb->sb_lowat; 149feda1a43SJohn Baldwin xsb->sb_flags = sb->sb_flags; 150feda1a43SJohn Baldwin xsb->sb_timeo = sb->sb_timeo; 151feda1a43SJohn Baldwin } 152feda1a43SJohn Baldwin 153feda1a43SJohn Baldwin int 154feda1a43SJohn Baldwin sotoxsocket(struct socket *so, struct xsocket *xso) 155feda1a43SJohn Baldwin { 156feda1a43SJohn Baldwin struct protosw proto; 157feda1a43SJohn Baldwin struct domain domain; 158feda1a43SJohn Baldwin 159feda1a43SJohn Baldwin bzero(xso, sizeof *xso); 160feda1a43SJohn Baldwin xso->xso_len = sizeof *xso; 161feda1a43SJohn Baldwin xso->xso_so = so; 162feda1a43SJohn Baldwin xso->so_type = so->so_type; 163feda1a43SJohn Baldwin xso->so_options = so->so_options; 164feda1a43SJohn Baldwin xso->so_linger = so->so_linger; 165feda1a43SJohn Baldwin xso->so_state = so->so_state; 166feda1a43SJohn Baldwin xso->so_pcb = so->so_pcb; 167feda1a43SJohn Baldwin if (kread((uintptr_t)so->so_proto, &proto, sizeof(proto)) != 0) 168feda1a43SJohn Baldwin return (-1); 169feda1a43SJohn Baldwin xso->xso_protocol = proto.pr_protocol; 170feda1a43SJohn Baldwin if (kread((uintptr_t)proto.pr_domain, &domain, sizeof(domain)) != 0) 171feda1a43SJohn Baldwin return (-1); 172feda1a43SJohn Baldwin xso->xso_family = domain.dom_family; 173feda1a43SJohn Baldwin xso->so_qlen = so->so_qlen; 174feda1a43SJohn Baldwin xso->so_incqlen = so->so_incqlen; 175feda1a43SJohn Baldwin xso->so_qlimit = so->so_qlimit; 176feda1a43SJohn Baldwin xso->so_timeo = so->so_timeo; 177feda1a43SJohn Baldwin xso->so_error = so->so_error; 178feda1a43SJohn Baldwin xso->so_oobmark = so->so_oobmark; 179feda1a43SJohn Baldwin sbtoxsockbuf(&so->so_snd, &xso->so_snd); 180feda1a43SJohn Baldwin sbtoxsockbuf(&so->so_rcv, &xso->so_rcv); 181feda1a43SJohn Baldwin return (0); 182feda1a43SJohn Baldwin } 183feda1a43SJohn Baldwin 184feda1a43SJohn Baldwin static int 185feda1a43SJohn Baldwin pcblist_kvm(u_long off, char **bufp, int istcp) 186feda1a43SJohn Baldwin { 187feda1a43SJohn Baldwin struct inpcbinfo pcbinfo; 188feda1a43SJohn Baldwin struct inpcbhead listhead; 189feda1a43SJohn Baldwin struct inpcb *inp; 190feda1a43SJohn Baldwin struct xinpcb xi; 191feda1a43SJohn Baldwin struct xinpgen xig; 192feda1a43SJohn Baldwin struct xtcpcb xt; 193feda1a43SJohn Baldwin struct socket so; 194feda1a43SJohn Baldwin struct xsocket *xso; 195feda1a43SJohn Baldwin char *buf, *p; 196feda1a43SJohn Baldwin size_t len; 197feda1a43SJohn Baldwin 198feda1a43SJohn Baldwin if (off == 0) 199feda1a43SJohn Baldwin return (0); 200feda1a43SJohn Baldwin kread(off, &pcbinfo, sizeof(pcbinfo)); 201feda1a43SJohn Baldwin if (istcp) 202feda1a43SJohn Baldwin len = 2 * sizeof(xig) + 203feda1a43SJohn Baldwin (pcbinfo.ipi_count + pcbinfo.ipi_count / 8) * 204feda1a43SJohn Baldwin sizeof(struct xtcpcb); 205feda1a43SJohn Baldwin else 206feda1a43SJohn Baldwin len = 2 * sizeof(xig) + 207feda1a43SJohn Baldwin (pcbinfo.ipi_count + pcbinfo.ipi_count / 8) * 208feda1a43SJohn Baldwin sizeof(struct xinpcb); 209feda1a43SJohn Baldwin if ((buf = malloc(len)) == 0) { 210feda1a43SJohn Baldwin warnx("malloc %lu bytes", (u_long)len); 211feda1a43SJohn Baldwin return (0); 212feda1a43SJohn Baldwin } 213feda1a43SJohn Baldwin p = buf; 214feda1a43SJohn Baldwin 215feda1a43SJohn Baldwin #define COPYOUT(obj, size) do { \ 216feda1a43SJohn Baldwin if (len < (size)) { \ 217feda1a43SJohn Baldwin warnx("buffer size exceeded"); \ 218feda1a43SJohn Baldwin goto fail; \ 219feda1a43SJohn Baldwin } \ 220feda1a43SJohn Baldwin bcopy((obj), p, (size)); \ 221feda1a43SJohn Baldwin len -= (size); \ 222feda1a43SJohn Baldwin p += (size); \ 223feda1a43SJohn Baldwin } while (0) 224feda1a43SJohn Baldwin 225feda1a43SJohn Baldwin #define KREAD(off, buf, len) do { \ 226feda1a43SJohn Baldwin if (kread((uintptr_t)(off), (buf), (len)) != 0) \ 227feda1a43SJohn Baldwin goto fail; \ 228feda1a43SJohn Baldwin } while (0) 229feda1a43SJohn Baldwin 230feda1a43SJohn Baldwin /* Write out header. */ 231feda1a43SJohn Baldwin xig.xig_len = sizeof xig; 232feda1a43SJohn Baldwin xig.xig_count = pcbinfo.ipi_count; 233feda1a43SJohn Baldwin xig.xig_gen = pcbinfo.ipi_gencnt; 234feda1a43SJohn Baldwin xig.xig_sogen = 0; 235feda1a43SJohn Baldwin COPYOUT(&xig, sizeof xig); 236feda1a43SJohn Baldwin 237feda1a43SJohn Baldwin /* Walk the PCB list. */ 238feda1a43SJohn Baldwin xt.xt_len = sizeof xt; 239feda1a43SJohn Baldwin xi.xi_len = sizeof xi; 240feda1a43SJohn Baldwin if (istcp) 241feda1a43SJohn Baldwin xso = &xt.xt_socket; 242feda1a43SJohn Baldwin else 243feda1a43SJohn Baldwin xso = &xi.xi_socket; 244feda1a43SJohn Baldwin KREAD(pcbinfo.ipi_listhead, &listhead, sizeof(listhead)); 245feda1a43SJohn Baldwin LIST_FOREACH(inp, &listhead, inp_list) { 246feda1a43SJohn Baldwin if (istcp) { 247feda1a43SJohn Baldwin KREAD(inp, &xt.xt_inp, sizeof(*inp)); 248feda1a43SJohn Baldwin inp = &xt.xt_inp; 249feda1a43SJohn Baldwin } else { 250feda1a43SJohn Baldwin KREAD(inp, &xi.xi_inp, sizeof(*inp)); 251feda1a43SJohn Baldwin inp = &xi.xi_inp; 252feda1a43SJohn Baldwin } 253feda1a43SJohn Baldwin 254feda1a43SJohn Baldwin if (inp->inp_gencnt > pcbinfo.ipi_gencnt) 255feda1a43SJohn Baldwin continue; 256feda1a43SJohn Baldwin 257feda1a43SJohn Baldwin if (istcp) { 258feda1a43SJohn Baldwin if (inp->inp_ppcb == NULL) 259feda1a43SJohn Baldwin bzero(&xt.xt_tp, sizeof xt.xt_tp); 260feda1a43SJohn Baldwin else if (inp->inp_vflag & INP_TIMEWAIT) { 261feda1a43SJohn Baldwin bzero(&xt.xt_tp, sizeof xt.xt_tp); 262feda1a43SJohn Baldwin xt.xt_tp.t_state = TCPS_TIME_WAIT; 263feda1a43SJohn Baldwin } else 264feda1a43SJohn Baldwin KREAD(inp->inp_ppcb, &xt.xt_tp, 265feda1a43SJohn Baldwin sizeof xt.xt_tp); 266feda1a43SJohn Baldwin } 267feda1a43SJohn Baldwin if (inp->inp_socket) { 268feda1a43SJohn Baldwin KREAD(inp->inp_socket, &so, sizeof(so)); 269feda1a43SJohn Baldwin if (sotoxsocket(&so, xso) != 0) 270feda1a43SJohn Baldwin goto fail; 271feda1a43SJohn Baldwin } else { 272feda1a43SJohn Baldwin bzero(xso, sizeof(*xso)); 273feda1a43SJohn Baldwin if (istcp) 274feda1a43SJohn Baldwin xso->xso_protocol = IPPROTO_TCP; 275feda1a43SJohn Baldwin } 276feda1a43SJohn Baldwin if (istcp) 277feda1a43SJohn Baldwin COPYOUT(&xt, sizeof xt); 278feda1a43SJohn Baldwin else 279feda1a43SJohn Baldwin COPYOUT(&xi, sizeof xi); 280feda1a43SJohn Baldwin } 281feda1a43SJohn Baldwin 282feda1a43SJohn Baldwin /* Reread the pcbinfo and write out the footer. */ 283feda1a43SJohn Baldwin kread(off, &pcbinfo, sizeof(pcbinfo)); 284feda1a43SJohn Baldwin xig.xig_count = pcbinfo.ipi_count; 285feda1a43SJohn Baldwin xig.xig_gen = pcbinfo.ipi_gencnt; 286feda1a43SJohn Baldwin COPYOUT(&xig, sizeof xig); 287feda1a43SJohn Baldwin 288feda1a43SJohn Baldwin *bufp = buf; 289feda1a43SJohn Baldwin return (1); 290feda1a43SJohn Baldwin 291feda1a43SJohn Baldwin fail: 292feda1a43SJohn Baldwin free(buf); 293feda1a43SJohn Baldwin return (0); 294feda1a43SJohn Baldwin #undef COPYOUT 295feda1a43SJohn Baldwin #undef KREAD 296feda1a43SJohn Baldwin } 297feda1a43SJohn Baldwin 2989b50d902SRodney W. Grimes /* 2999b50d902SRodney W. Grimes * Print a summary of connections related to an Internet 3009b50d902SRodney W. Grimes * protocol. For TCP, also give state of connection. 3019b50d902SRodney W. Grimes * Listening processes (aflag) are suppressed unless the 3029b50d902SRodney W. Grimes * -a (all) flag is specified. 3039b50d902SRodney W. Grimes */ 3049b50d902SRodney W. Grimes void 305feda1a43SJohn Baldwin protopr(u_long off, const char *name, int af1, int proto) 3069b50d902SRodney W. Grimes { 3079b50d902SRodney W. Grimes int istcp; 3089b50d902SRodney W. Grimes static int first = 1; 3094f81ef50SGarrett Wollman char *buf; 310feda1a43SJohn Baldwin const char *vchar; 311a97a9922SJulian Elischer struct tcpcb *tp = NULL; 3124f81ef50SGarrett Wollman struct inpcb *inp; 3134f81ef50SGarrett Wollman struct xinpgen *xig, *oxig; 3144f81ef50SGarrett Wollman struct xsocket *so; 3159b50d902SRodney W. Grimes 3164f81ef50SGarrett Wollman istcp = 0; 3174f81ef50SGarrett Wollman switch (proto) { 3184f81ef50SGarrett Wollman case IPPROTO_TCP: 319cfa1ca9dSYoshinobu Inoue #ifdef INET6 320cfa1ca9dSYoshinobu Inoue if (tcp_done != 0) 321cfa1ca9dSYoshinobu Inoue return; 322cfa1ca9dSYoshinobu Inoue else 323cfa1ca9dSYoshinobu Inoue tcp_done = 1; 324cfa1ca9dSYoshinobu Inoue #endif 3254f81ef50SGarrett Wollman istcp = 1; 3264f81ef50SGarrett Wollman break; 3274f81ef50SGarrett Wollman case IPPROTO_UDP: 328cfa1ca9dSYoshinobu Inoue #ifdef INET6 329cfa1ca9dSYoshinobu Inoue if (udp_done != 0) 330cfa1ca9dSYoshinobu Inoue return; 331cfa1ca9dSYoshinobu Inoue else 332cfa1ca9dSYoshinobu Inoue udp_done = 1; 333cfa1ca9dSYoshinobu Inoue #endif 3344f81ef50SGarrett Wollman break; 3354f81ef50SGarrett Wollman } 336feda1a43SJohn Baldwin if (live) { 337feda1a43SJohn Baldwin if (!pcblist_sysctl(proto, &buf, istcp)) 3389b50d902SRodney W. Grimes return; 339feda1a43SJohn Baldwin } else { 340feda1a43SJohn Baldwin if (!pcblist_kvm(off, &buf, istcp)) 3414f81ef50SGarrett Wollman return; 3424f81ef50SGarrett Wollman } 3434f81ef50SGarrett Wollman 3444f81ef50SGarrett Wollman oxig = xig = (struct xinpgen *)buf; 3454f81ef50SGarrett Wollman for (xig = (struct xinpgen *)((char *)xig + xig->xig_len); 3464f81ef50SGarrett Wollman xig->xig_len > sizeof(struct xinpgen); 3474f81ef50SGarrett Wollman xig = (struct xinpgen *)((char *)xig + xig->xig_len)) { 3489b50d902SRodney W. Grimes if (istcp) { 3494f81ef50SGarrett Wollman tp = &((struct xtcpcb *)xig)->xt_tp; 3504f81ef50SGarrett Wollman inp = &((struct xtcpcb *)xig)->xt_inp; 3514f81ef50SGarrett Wollman so = &((struct xtcpcb *)xig)->xt_socket; 3524f81ef50SGarrett Wollman } else { 3534f81ef50SGarrett Wollman inp = &((struct xinpcb *)xig)->xi_inp; 3544f81ef50SGarrett Wollman so = &((struct xinpcb *)xig)->xi_socket; 3559b50d902SRodney W. Grimes } 3564f81ef50SGarrett Wollman 3574f81ef50SGarrett Wollman /* Ignore sockets for protocols other than the desired one. */ 358feda1a43SJohn Baldwin if (so->xso_protocol != proto) 3594f81ef50SGarrett Wollman continue; 3604f81ef50SGarrett Wollman 3614f81ef50SGarrett Wollman /* Ignore PCBs which were freed during copyout. */ 3624f81ef50SGarrett Wollman if (inp->inp_gencnt > oxig->xig_gen) 3634f81ef50SGarrett Wollman continue; 3644f81ef50SGarrett Wollman 365a01e3379SDavid Malone if ((af1 == AF_INET && (inp->inp_vflag & INP_IPV4) == 0) 366cfa1ca9dSYoshinobu Inoue #ifdef INET6 367a01e3379SDavid Malone || (af1 == AF_INET6 && (inp->inp_vflag & INP_IPV6) == 0) 368cfa1ca9dSYoshinobu Inoue #endif /* INET6 */ 369a01e3379SDavid Malone || (af1 == AF_UNSPEC && ((inp->inp_vflag & INP_IPV4) == 0 370cfa1ca9dSYoshinobu Inoue #ifdef INET6 3713feeb332SDavid E. O'Brien && (inp->inp_vflag & INP_IPV6) == 0 372cfa1ca9dSYoshinobu Inoue #endif /* INET6 */ 373cfa1ca9dSYoshinobu Inoue )) 374cfa1ca9dSYoshinobu Inoue ) 375cfa1ca9dSYoshinobu Inoue continue; 376cfa1ca9dSYoshinobu Inoue if (!aflag && 377cfa1ca9dSYoshinobu Inoue ( 3782b286cedSBruce M Simpson (istcp && tp->t_state == TCPS_LISTEN) 3792b286cedSBruce M Simpson || (af1 == AF_INET && 380cfa1ca9dSYoshinobu Inoue inet_lnaof(inp->inp_laddr) == INADDR_ANY) 381cfa1ca9dSYoshinobu Inoue #ifdef INET6 382a01e3379SDavid Malone || (af1 == AF_INET6 && 383cfa1ca9dSYoshinobu Inoue IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_laddr)) 384cfa1ca9dSYoshinobu Inoue #endif /* INET6 */ 385a01e3379SDavid Malone || (af1 == AF_UNSPEC && 386cfa1ca9dSYoshinobu Inoue (((inp->inp_vflag & INP_IPV4) != 0 && 387cfa1ca9dSYoshinobu Inoue inet_lnaof(inp->inp_laddr) == INADDR_ANY) 388cfa1ca9dSYoshinobu Inoue #ifdef INET6 389cfa1ca9dSYoshinobu Inoue || ((inp->inp_vflag & INP_IPV6) != 0 && 390cfa1ca9dSYoshinobu Inoue IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_laddr)) 391cfa1ca9dSYoshinobu Inoue #endif 392cfa1ca9dSYoshinobu Inoue )) 393cfa1ca9dSYoshinobu Inoue )) 3944f81ef50SGarrett Wollman continue; 3954f81ef50SGarrett Wollman 3969b50d902SRodney W. Grimes if (first) { 397ac55add0SGuido van Rooij if (!Lflag) { 3989b50d902SRodney W. Grimes printf("Active Internet connections"); 3999b50d902SRodney W. Grimes if (aflag) 4009b50d902SRodney W. Grimes printf(" (including servers)"); 401ac55add0SGuido van Rooij } else 402ac55add0SGuido van Rooij printf( 403ac55add0SGuido van Rooij "Current listen queue sizes (qlen/incqlen/maxqlen)"); 4049b50d902SRodney W. Grimes putchar('\n'); 4059b50d902SRodney W. Grimes if (Aflag) 406612d2129SAndre Oppermann printf("%-8.8s ", "Tcpcb"); 407ac55add0SGuido van Rooij if (Lflag) 408fb5d0fbdSRuslan Ermilov printf("%-5.5s %-14.14s %-22.22s\n", 409fb5d0fbdSRuslan Ermilov "Proto", "Listen", "Local Address"); 410080b7f49SDag-Erling Smørgrav printf((Aflag && !Wflag) ? 41149f287f8SGeorge V. Neville-Neil "%-5.5s %-6.6s %-6.6s %-18.18s %-18.18s" : 41249f287f8SGeorge V. Neville-Neil "%-5.5s %-6.6s %-6.6s %-22.22s %-22.22s", 4139b50d902SRodney W. Grimes "Proto", "Recv-Q", "Send-Q", 41449f287f8SGeorge V. Neville-Neil "Local Address", "Foreign Address"); 41549f287f8SGeorge V. Neville-Neil if (xflag) 41649f287f8SGeorge V. Neville-Neil printf("%-6.6s %-6.6s %-6.6s %-6.6s %-6.6s %-6.6s %-6.6s %-6.6s %-6.6s %-6.6s %-6.6s %-6.6s %s\n", 41749f287f8SGeorge V. Neville-Neil "R-MBUF", "S-MBUF", "R-CLUS", "S-CLUS", 41849f287f8SGeorge V. Neville-Neil "R-HIWA", "S-HIWA", "R-LOWA", "S-LOWA", 41949f287f8SGeorge V. Neville-Neil "R-BCNT", "S-BCNT", "R-BMAX", "S-BMAX", 420ac55add0SGuido van Rooij "(state)"); 42149f287f8SGeorge V. Neville-Neil else 42249f287f8SGeorge V. Neville-Neil printf("(state)\n"); 4239b50d902SRodney W. Grimes first = 0; 4249b50d902SRodney W. Grimes } 425fb5d0fbdSRuslan Ermilov if (Lflag && so->so_qlimit == 0) 426fb5d0fbdSRuslan Ermilov continue; 427e4ec3989SDag-Erling Smørgrav if (Aflag) { 428e4ec3989SDag-Erling Smørgrav if (istcp) 429e4ec3989SDag-Erling Smørgrav printf("%8lx ", (u_long)inp->inp_ppcb); 430e4ec3989SDag-Erling Smørgrav else 4314f81ef50SGarrett Wollman printf("%8lx ", (u_long)so->so_pcb); 432e4ec3989SDag-Erling Smørgrav } 433cfa1ca9dSYoshinobu Inoue #ifdef INET6 434fc60ab7bSYoshinobu Inoue if ((inp->inp_vflag & INP_IPV6) != 0) 4353feeb332SDavid E. O'Brien vchar = ((inp->inp_vflag & INP_IPV4) != 0) ? 4363feeb332SDavid E. O'Brien "46" : "6 "; 437fc60ab7bSYoshinobu Inoue else 438cfa1ca9dSYoshinobu Inoue #endif 4393feeb332SDavid E. O'Brien vchar = ((inp->inp_vflag & INP_IPV4) != 0) ? 4403feeb332SDavid E. O'Brien "4 " : " "; 441fb5d0fbdSRuslan Ermilov printf("%-3.3s%-2.2s ", name, vchar); 442fb5d0fbdSRuslan Ermilov if (Lflag) { 443a01e3379SDavid Malone char buf1[15]; 444fc60ab7bSYoshinobu Inoue 445a01e3379SDavid Malone snprintf(buf1, 15, "%d/%d/%d", so->so_qlen, 446fb5d0fbdSRuslan Ermilov so->so_incqlen, so->so_qlimit); 447a01e3379SDavid Malone printf("%-14.14s ", buf1); 448fb5d0fbdSRuslan Ermilov } else { 44949f287f8SGeorge V. Neville-Neil printf("%6u %6u ", 45049f287f8SGeorge V. Neville-Neil so->so_rcv.sb_cc, so->so_snd.sb_cc); 451fc60ab7bSYoshinobu Inoue } 45265ea0024SAssar Westerlund if (numeric_port) { 453cfa1ca9dSYoshinobu Inoue if (inp->inp_vflag & INP_IPV4) { 4544f81ef50SGarrett Wollman inetprint(&inp->inp_laddr, (int)inp->inp_lport, 4558d612dd2SPoul-Henning Kamp name, 1); 456ac55add0SGuido van Rooij if (!Lflag) 457ac55add0SGuido van Rooij inetprint(&inp->inp_faddr, 458ac55add0SGuido van Rooij (int)inp->inp_fport, name, 1); 459cfa1ca9dSYoshinobu Inoue } 460cfa1ca9dSYoshinobu Inoue #ifdef INET6 461cfa1ca9dSYoshinobu Inoue else if (inp->inp_vflag & INP_IPV6) { 462cfa1ca9dSYoshinobu Inoue inet6print(&inp->in6p_laddr, 463cfa1ca9dSYoshinobu Inoue (int)inp->inp_lport, name, 1); 464ac55add0SGuido van Rooij if (!Lflag) 465cfa1ca9dSYoshinobu Inoue inet6print(&inp->in6p_faddr, 466cfa1ca9dSYoshinobu Inoue (int)inp->inp_fport, name, 1); 467cfa1ca9dSYoshinobu Inoue } /* else nothing printed now */ 468cfa1ca9dSYoshinobu Inoue #endif /* INET6 */ 4694f81ef50SGarrett Wollman } else if (inp->inp_flags & INP_ANONPORT) { 470cfa1ca9dSYoshinobu Inoue if (inp->inp_vflag & INP_IPV4) { 4714f81ef50SGarrett Wollman inetprint(&inp->inp_laddr, (int)inp->inp_lport, 4728d612dd2SPoul-Henning Kamp name, 1); 473ac55add0SGuido van Rooij if (!Lflag) 474ac55add0SGuido van Rooij inetprint(&inp->inp_faddr, 475ac55add0SGuido van Rooij (int)inp->inp_fport, name, 0); 476cfa1ca9dSYoshinobu Inoue } 477cfa1ca9dSYoshinobu Inoue #ifdef INET6 478cfa1ca9dSYoshinobu Inoue else if (inp->inp_vflag & INP_IPV6) { 479cfa1ca9dSYoshinobu Inoue inet6print(&inp->in6p_laddr, 480cfa1ca9dSYoshinobu Inoue (int)inp->inp_lport, name, 1); 481ac55add0SGuido van Rooij if (!Lflag) 482cfa1ca9dSYoshinobu Inoue inet6print(&inp->in6p_faddr, 483cfa1ca9dSYoshinobu Inoue (int)inp->inp_fport, name, 0); 484cfa1ca9dSYoshinobu Inoue } /* else nothing printed now */ 485cfa1ca9dSYoshinobu Inoue #endif /* INET6 */ 4868d612dd2SPoul-Henning Kamp } else { 487cfa1ca9dSYoshinobu Inoue if (inp->inp_vflag & INP_IPV4) { 4884f81ef50SGarrett Wollman inetprint(&inp->inp_laddr, (int)inp->inp_lport, 4898d612dd2SPoul-Henning Kamp name, 0); 490ac55add0SGuido van Rooij if (!Lflag) 491ac55add0SGuido van Rooij inetprint(&inp->inp_faddr, 492ac55add0SGuido van Rooij (int)inp->inp_fport, name, 4933feeb332SDavid E. O'Brien inp->inp_lport != inp->inp_fport); 494cfa1ca9dSYoshinobu Inoue } 495cfa1ca9dSYoshinobu Inoue #ifdef INET6 496cfa1ca9dSYoshinobu Inoue else if (inp->inp_vflag & INP_IPV6) { 497cfa1ca9dSYoshinobu Inoue inet6print(&inp->in6p_laddr, 498cfa1ca9dSYoshinobu Inoue (int)inp->inp_lport, name, 0); 499ac55add0SGuido van Rooij if (!Lflag) 500cfa1ca9dSYoshinobu Inoue inet6print(&inp->in6p_faddr, 501cfa1ca9dSYoshinobu Inoue (int)inp->inp_fport, name, 5023feeb332SDavid E. O'Brien inp->inp_lport != inp->inp_fport); 503cfa1ca9dSYoshinobu Inoue } /* else nothing printed now */ 504cfa1ca9dSYoshinobu Inoue #endif /* INET6 */ 5058d612dd2SPoul-Henning Kamp } 50649f287f8SGeorge V. Neville-Neil if (xflag) { 50749f287f8SGeorge V. Neville-Neil if (Lflag) 50849f287f8SGeorge V. Neville-Neil printf("%21s %6u %6u %6u %6u %6u %6u %6u %6u %6u %6u %6u %6u ", 50949f287f8SGeorge V. Neville-Neil " ", 51049f287f8SGeorge V. Neville-Neil so->so_rcv.sb_mcnt, so->so_snd.sb_mcnt, 51149f287f8SGeorge V. Neville-Neil so->so_rcv.sb_ccnt, so->so_snd.sb_ccnt, 51249f287f8SGeorge V. Neville-Neil so->so_rcv.sb_hiwat, so->so_snd.sb_hiwat, 51349f287f8SGeorge V. Neville-Neil so->so_rcv.sb_lowat, so->so_snd.sb_lowat, 51449f287f8SGeorge V. Neville-Neil so->so_rcv.sb_mbcnt, so->so_snd.sb_mbcnt, 51549f287f8SGeorge V. Neville-Neil so->so_rcv.sb_mbmax, so->so_snd.sb_mbmax); 51649f287f8SGeorge V. Neville-Neil else 51749f287f8SGeorge V. Neville-Neil printf("%6u %6u %6u %6u %6u %6u %6u %6u %6u %6u %6u %6u ", 51849f287f8SGeorge V. Neville-Neil so->so_rcv.sb_mcnt, so->so_snd.sb_mcnt, 51949f287f8SGeorge V. Neville-Neil so->so_rcv.sb_ccnt, so->so_snd.sb_ccnt, 52049f287f8SGeorge V. Neville-Neil so->so_rcv.sb_hiwat, so->so_snd.sb_hiwat, 52149f287f8SGeorge V. Neville-Neil so->so_rcv.sb_lowat, so->so_snd.sb_lowat, 52249f287f8SGeorge V. Neville-Neil so->so_rcv.sb_mbcnt, so->so_snd.sb_mbcnt, 52349f287f8SGeorge V. Neville-Neil so->so_rcv.sb_mbmax, so->so_snd.sb_mbmax); 52449f287f8SGeorge V. Neville-Neil } 525ac55add0SGuido van Rooij if (istcp && !Lflag) { 5264f81ef50SGarrett Wollman if (tp->t_state < 0 || tp->t_state >= TCP_NSTATES) 5274f81ef50SGarrett Wollman printf("%d", tp->t_state); 5289a94a597SGarrett Wollman else { 5294f81ef50SGarrett Wollman printf("%s", tcpstates[tp->t_state]); 530513822ddSAdam David #if defined(TF_NEEDSYN) && defined(TF_NEEDFIN) 5319a94a597SGarrett Wollman /* Show T/TCP `hidden state' */ 5324f81ef50SGarrett Wollman if (tp->t_flags & (TF_NEEDSYN|TF_NEEDFIN)) 5339a94a597SGarrett Wollman putchar('*'); 534513822ddSAdam David #endif /* defined(TF_NEEDSYN) && defined(TF_NEEDFIN) */ 5359a94a597SGarrett Wollman } 5369b50d902SRodney W. Grimes } 5379b50d902SRodney W. Grimes putchar('\n'); 5389b50d902SRodney W. Grimes } 5394f81ef50SGarrett Wollman if (xig != oxig && xig->xig_gen != oxig->xig_gen) { 5404f81ef50SGarrett Wollman if (oxig->xig_count > xig->xig_count) { 5414f81ef50SGarrett Wollman printf("Some %s sockets may have been deleted.\n", 5424f81ef50SGarrett Wollman name); 5434f81ef50SGarrett Wollman } else if (oxig->xig_count < xig->xig_count) { 5444f81ef50SGarrett Wollman printf("Some %s sockets may have been created.\n", 5454f81ef50SGarrett Wollman name); 5464f81ef50SGarrett Wollman } else { 5473feeb332SDavid E. O'Brien printf( 5483feeb332SDavid E. O'Brien "Some %s sockets may have been created or deleted.\n", 5494f81ef50SGarrett Wollman name); 5504f81ef50SGarrett Wollman } 5514f81ef50SGarrett Wollman } 5524f81ef50SGarrett Wollman free(buf); 5539b50d902SRodney W. Grimes } 5549b50d902SRodney W. Grimes 5559b50d902SRodney W. Grimes /* 5569b50d902SRodney W. Grimes * Dump TCP statistics structure. 5579b50d902SRodney W. Grimes */ 5589b50d902SRodney W. Grimes void 559feda1a43SJohn Baldwin tcp_stats(u_long off, const char *name, int af1 __unused, int proto __unused) 5609b50d902SRodney W. Grimes { 561c73d99b5SRuslan Ermilov struct tcpstat tcpstat, zerostat; 5624f81ef50SGarrett Wollman size_t len = sizeof tcpstat; 5639b50d902SRodney W. Grimes 564cfa1ca9dSYoshinobu Inoue #ifdef INET6 565cfa1ca9dSYoshinobu Inoue if (tcp_done != 0) 566cfa1ca9dSYoshinobu Inoue return; 567cfa1ca9dSYoshinobu Inoue else 568cfa1ca9dSYoshinobu Inoue tcp_done = 1; 569cfa1ca9dSYoshinobu Inoue #endif 570cfa1ca9dSYoshinobu Inoue 571feda1a43SJohn Baldwin if (live) { 572feda1a43SJohn Baldwin if (zflag) 573feda1a43SJohn Baldwin memset(&zerostat, 0, len); 574feda1a43SJohn Baldwin if (sysctlbyname("net.inet.tcp.stats", &tcpstat, &len, 575feda1a43SJohn Baldwin zflag ? &zerostat : NULL, zflag ? len : 0) < 0) { 576feda1a43SJohn Baldwin warn("sysctl: net.inet.tcp.stats"); 577feda1a43SJohn Baldwin return; 578feda1a43SJohn Baldwin } 579feda1a43SJohn Baldwin } else 580feda1a43SJohn Baldwin kread(off, &tcpstat, len); 581feda1a43SJohn Baldwin 5829b50d902SRodney W. Grimes printf ("%s:\n", name); 5839b50d902SRodney W. Grimes 5849b50d902SRodney W. Grimes #define p(f, m) if (tcpstat.f || sflag <= 1) \ 5859b50d902SRodney W. Grimes printf(m, tcpstat.f, plural(tcpstat.f)) 58622694ebaSBruce Evans #define p1a(f, m) if (tcpstat.f || sflag <= 1) \ 58722694ebaSBruce Evans printf(m, tcpstat.f) 5889b50d902SRodney W. Grimes #define p2(f1, f2, m) if (tcpstat.f1 || tcpstat.f2 || sflag <= 1) \ 5899b50d902SRodney W. Grimes printf(m, tcpstat.f1, plural(tcpstat.f1), tcpstat.f2, plural(tcpstat.f2)) 59022694ebaSBruce Evans #define p2a(f1, f2, m) if (tcpstat.f1 || tcpstat.f2 || sflag <= 1) \ 59122694ebaSBruce Evans printf(m, tcpstat.f1, plural(tcpstat.f1), tcpstat.f2) 5929b50d902SRodney W. Grimes #define p3(f, m) if (tcpstat.f || sflag <= 1) \ 5930decbf9dSRuslan Ermilov printf(m, tcpstat.f, pluralies(tcpstat.f)) 5949b50d902SRodney W. Grimes 595e1fb4daaSPaul Traina p(tcps_sndtotal, "\t%lu packet%s sent\n"); 5963feeb332SDavid E. O'Brien p2(tcps_sndpack,tcps_sndbyte, "\t\t%lu data packet%s (%lu byte%s)\n"); 5979b50d902SRodney W. Grimes p2(tcps_sndrexmitpack, tcps_sndrexmitbyte, 598e1fb4daaSPaul Traina "\t\t%lu data packet%s (%lu byte%s) retransmitted\n"); 599d65bf08aSMatthew Dillon p(tcps_sndrexmitbad, 600d65bf08aSMatthew Dillon "\t\t%lu data packet%s unnecessarily retransmitted\n"); 601e1fb4daaSPaul Traina p(tcps_mturesent, "\t\t%lu resend%s initiated by MTU discovery\n"); 60222694ebaSBruce Evans p2a(tcps_sndacks, tcps_delack, 603e1fb4daaSPaul Traina "\t\t%lu ack-only packet%s (%lu delayed)\n"); 604e1fb4daaSPaul Traina p(tcps_sndurg, "\t\t%lu URG only packet%s\n"); 605e1fb4daaSPaul Traina p(tcps_sndprobe, "\t\t%lu window probe packet%s\n"); 606e1fb4daaSPaul Traina p(tcps_sndwinup, "\t\t%lu window update packet%s\n"); 607e1fb4daaSPaul Traina p(tcps_sndctrl, "\t\t%lu control packet%s\n"); 608e1fb4daaSPaul Traina p(tcps_rcvtotal, "\t%lu packet%s received\n"); 6093feeb332SDavid E. O'Brien p2(tcps_rcvackpack, tcps_rcvackbyte, 6103feeb332SDavid E. O'Brien "\t\t%lu ack%s (for %lu byte%s)\n"); 611e1fb4daaSPaul Traina p(tcps_rcvdupack, "\t\t%lu duplicate ack%s\n"); 612e1fb4daaSPaul Traina p(tcps_rcvacktoomuch, "\t\t%lu ack%s for unsent data\n"); 6139b50d902SRodney W. Grimes p2(tcps_rcvpack, tcps_rcvbyte, 614e1fb4daaSPaul Traina "\t\t%lu packet%s (%lu byte%s) received in-sequence\n"); 6159b50d902SRodney W. Grimes p2(tcps_rcvduppack, tcps_rcvdupbyte, 616e1fb4daaSPaul Traina "\t\t%lu completely duplicate packet%s (%lu byte%s)\n"); 617e1fb4daaSPaul Traina p(tcps_pawsdrop, "\t\t%lu old duplicate packet%s\n"); 6189b50d902SRodney W. Grimes p2(tcps_rcvpartduppack, tcps_rcvpartdupbyte, 619e1fb4daaSPaul Traina "\t\t%lu packet%s with some dup. data (%lu byte%s duped)\n"); 6209b50d902SRodney W. Grimes p2(tcps_rcvoopack, tcps_rcvoobyte, 621e1fb4daaSPaul Traina "\t\t%lu out-of-order packet%s (%lu byte%s)\n"); 6229b50d902SRodney W. Grimes p2(tcps_rcvpackafterwin, tcps_rcvbyteafterwin, 623e1fb4daaSPaul Traina "\t\t%lu packet%s (%lu byte%s) of data after window\n"); 624e1fb4daaSPaul Traina p(tcps_rcvwinprobe, "\t\t%lu window probe%s\n"); 625e1fb4daaSPaul Traina p(tcps_rcvwinupd, "\t\t%lu window update packet%s\n"); 626e1fb4daaSPaul Traina p(tcps_rcvafterclose, "\t\t%lu packet%s received after close\n"); 627e1fb4daaSPaul Traina p(tcps_rcvbadsum, "\t\t%lu discarded for bad checksum%s\n"); 628e1fb4daaSPaul Traina p(tcps_rcvbadoff, "\t\t%lu discarded for bad header offset field%s\n"); 62922694ebaSBruce Evans p1a(tcps_rcvshort, "\t\t%lu discarded because packet too short\n"); 63060e15662SWojciech A. Koszek p1a(tcps_rcvmemdrop, "\t\t%lu discarded due to memory problems\n"); 631e1fb4daaSPaul Traina p(tcps_connattempt, "\t%lu connection request%s\n"); 632e1fb4daaSPaul Traina p(tcps_accepts, "\t%lu connection accept%s\n"); 633e1fb4daaSPaul Traina p(tcps_badsyn, "\t%lu bad connection attempt%s\n"); 634e1fb4daaSPaul Traina p(tcps_listendrop, "\t%lu listen queue overflow%s\n"); 63501d3e1c0SRuslan Ermilov p(tcps_badrst, "\t%lu ignored RSTs in the window%s\n"); 636e1fb4daaSPaul Traina p(tcps_connects, "\t%lu connection%s established (including accepts)\n"); 6379b50d902SRodney W. Grimes p2(tcps_closed, tcps_drops, 638e1fb4daaSPaul Traina "\t%lu connection%s closed (including %lu drop%s)\n"); 639e1fb4daaSPaul Traina p(tcps_cachedrtt, "\t\t%lu connection%s updated cached RTT on close\n"); 640861b1828SGarrett Wollman p(tcps_cachedrttvar, 641e1fb4daaSPaul Traina "\t\t%lu connection%s updated cached RTT variance on close\n"); 642861b1828SGarrett Wollman p(tcps_cachedssthresh, 643e1fb4daaSPaul Traina "\t\t%lu connection%s updated cached ssthresh on close\n"); 644e1fb4daaSPaul Traina p(tcps_conndrops, "\t%lu embryonic connection%s dropped\n"); 6459b50d902SRodney W. Grimes p2(tcps_rttupdated, tcps_segstimed, 646e1fb4daaSPaul Traina "\t%lu segment%s updated rtt (of %lu attempt%s)\n"); 647e1fb4daaSPaul Traina p(tcps_rexmttimeo, "\t%lu retransmit timeout%s\n"); 648e1fb4daaSPaul Traina p(tcps_timeoutdrop, "\t\t%lu connection%s dropped by rexmit timeout\n"); 649e1fb4daaSPaul Traina p(tcps_persisttimeo, "\t%lu persist timeout%s\n"); 650e1fb4daaSPaul Traina p(tcps_persistdrop, "\t\t%lu connection%s dropped by persist timeout\n"); 6513feeb332SDavid E. O'Brien p(tcps_finwait2_drops, 6523feeb332SDavid E. O'Brien "\t%lu Connection%s (fin_wait_2) dropped because of timeout\n"); 653e1fb4daaSPaul Traina p(tcps_keeptimeo, "\t%lu keepalive timeout%s\n"); 654e1fb4daaSPaul Traina p(tcps_keepprobe, "\t\t%lu keepalive probe%s sent\n"); 655e1fb4daaSPaul Traina p(tcps_keepdrops, "\t\t%lu connection%s dropped by keepalive\n"); 656e1fb4daaSPaul Traina p(tcps_predack, "\t%lu correct ACK header prediction%s\n"); 657e1fb4daaSPaul Traina p(tcps_preddat, "\t%lu correct data packet header prediction%s\n"); 65860a31b3aSJonathan Lemon 6590decbf9dSRuslan Ermilov p3(tcps_sc_added, "\t%lu syncache entr%s added\n"); 660a01e3379SDavid Malone p1a(tcps_sc_retransmitted, "\t\t%lu retransmitted\n"); 661a01e3379SDavid Malone p1a(tcps_sc_dupsyn, "\t\t%lu dupsyn\n"); 662a01e3379SDavid Malone p1a(tcps_sc_dropped, "\t\t%lu dropped\n"); 663a01e3379SDavid Malone p1a(tcps_sc_completed, "\t\t%lu completed\n"); 664a01e3379SDavid Malone p1a(tcps_sc_bucketoverflow, "\t\t%lu bucket overflow\n"); 665a01e3379SDavid Malone p1a(tcps_sc_cacheoverflow, "\t\t%lu cache overflow\n"); 666a01e3379SDavid Malone p1a(tcps_sc_reset, "\t\t%lu reset\n"); 667a01e3379SDavid Malone p1a(tcps_sc_stale, "\t\t%lu stale\n"); 668a01e3379SDavid Malone p1a(tcps_sc_aborted, "\t\t%lu aborted\n"); 669a01e3379SDavid Malone p1a(tcps_sc_badack, "\t\t%lu badack\n"); 670a01e3379SDavid Malone p1a(tcps_sc_unreach, "\t\t%lu unreach\n"); 671a01e3379SDavid Malone p(tcps_sc_zonefail, "\t\t%lu zone failure%s\n"); 672a01e3379SDavid Malone p(tcps_sc_sendcookie, "\t%lu cookie%s sent\n"); 673a01e3379SDavid Malone p(tcps_sc_recvcookie, "\t%lu cookie%s received\n"); 674b6101dafSPaul Saab 675b6101dafSPaul Saab p(tcps_sack_recovery_episode, "\t%lu SACK recovery episode%s\n"); 676b6101dafSPaul Saab p(tcps_sack_rexmits, 677b6101dafSPaul Saab "\t%lu segment rexmit%s in SACK recovery episodes\n"); 678b6101dafSPaul Saab p(tcps_sack_rexmit_bytes, 679b6101dafSPaul Saab "\t%lu byte rexmit%s in SACK recovery episodes\n"); 680b6101dafSPaul Saab p(tcps_sack_rcv_blocks, 681b6101dafSPaul Saab "\t%lu SACK option%s (SACK blocks) received\n"); 682b6101dafSPaul Saab p(tcps_sack_send_blocks, "\t%lu SACK option%s (SACK blocks) sent\n"); 683e891d82bSPaul Saab p1a(tcps_sack_sboverflow, "\t%lu SACK scoreboard overflow\n"); 684b6101dafSPaul Saab 6859b50d902SRodney W. Grimes #undef p 68622694ebaSBruce Evans #undef p1a 6879b50d902SRodney W. Grimes #undef p2 68822694ebaSBruce Evans #undef p2a 6899b50d902SRodney W. Grimes #undef p3 6909b50d902SRodney W. Grimes } 6919b50d902SRodney W. Grimes 6929b50d902SRodney W. Grimes /* 6939b50d902SRodney W. Grimes * Dump UDP statistics structure. 6949b50d902SRodney W. Grimes */ 6959b50d902SRodney W. Grimes void 696feda1a43SJohn Baldwin udp_stats(u_long off, const char *name, int af1 __unused, int proto __unused) 6979b50d902SRodney W. Grimes { 698c73d99b5SRuslan Ermilov struct udpstat udpstat, zerostat; 6994f81ef50SGarrett Wollman size_t len = sizeof udpstat; 7009b50d902SRodney W. Grimes u_long delivered; 7019b50d902SRodney W. Grimes 702cfa1ca9dSYoshinobu Inoue #ifdef INET6 703cfa1ca9dSYoshinobu Inoue if (udp_done != 0) 704cfa1ca9dSYoshinobu Inoue return; 705cfa1ca9dSYoshinobu Inoue else 706cfa1ca9dSYoshinobu Inoue udp_done = 1; 707cfa1ca9dSYoshinobu Inoue #endif 708cfa1ca9dSYoshinobu Inoue 709feda1a43SJohn Baldwin if (live) { 710feda1a43SJohn Baldwin if (zflag) 711feda1a43SJohn Baldwin memset(&zerostat, 0, len); 712feda1a43SJohn Baldwin if (sysctlbyname("net.inet.udp.stats", &udpstat, &len, 713feda1a43SJohn Baldwin zflag ? &zerostat : NULL, zflag ? len : 0) < 0) { 714feda1a43SJohn Baldwin warn("sysctl: net.inet.udp.stats"); 715feda1a43SJohn Baldwin return; 716feda1a43SJohn Baldwin } 717feda1a43SJohn Baldwin } else 718feda1a43SJohn Baldwin kread(off, &udpstat, len); 719feda1a43SJohn Baldwin 7209b50d902SRodney W. Grimes printf("%s:\n", name); 7219b50d902SRodney W. Grimes #define p(f, m) if (udpstat.f || sflag <= 1) \ 7229b50d902SRodney W. Grimes printf(m, udpstat.f, plural(udpstat.f)) 72322694ebaSBruce Evans #define p1a(f, m) if (udpstat.f || sflag <= 1) \ 72422694ebaSBruce Evans printf(m, udpstat.f) 7257d56c0eeSAlexander Langer p(udps_ipackets, "\t%lu datagram%s received\n"); 72622694ebaSBruce Evans p1a(udps_hdrops, "\t%lu with incomplete header\n"); 72722694ebaSBruce Evans p1a(udps_badlen, "\t%lu with bad data length field\n"); 72822694ebaSBruce Evans p1a(udps_badsum, "\t%lu with bad checksum\n"); 729fb9aaba0SRuslan Ermilov p1a(udps_nosum, "\t%lu with no checksum\n"); 73022694ebaSBruce Evans p1a(udps_noport, "\t%lu dropped due to no socket\n"); 73122694ebaSBruce Evans p(udps_noportbcast, 73271498f30SBruce M Simpson "\t%lu broadcast/multicast datagram%s undelivered\n"); 73322694ebaSBruce Evans p1a(udps_fullsock, "\t%lu dropped due to full socket buffers\n"); 73422694ebaSBruce Evans p1a(udpps_pcbhashmiss, "\t%lu not for hashed pcb\n"); 7359b50d902SRodney W. Grimes delivered = udpstat.udps_ipackets - 7369b50d902SRodney W. Grimes udpstat.udps_hdrops - 7379b50d902SRodney W. Grimes udpstat.udps_badlen - 7389b50d902SRodney W. Grimes udpstat.udps_badsum - 7399b50d902SRodney W. Grimes udpstat.udps_noport - 7409b50d902SRodney W. Grimes udpstat.udps_noportbcast - 7419b50d902SRodney W. Grimes udpstat.udps_fullsock; 7429b50d902SRodney W. Grimes if (delivered || sflag <= 1) 7437d56c0eeSAlexander Langer printf("\t%lu delivered\n", delivered); 7447d56c0eeSAlexander Langer p(udps_opackets, "\t%lu datagram%s output\n"); 74571498f30SBruce M Simpson /* the next statistic is cumulative in udps_noportbcast */ 74671498f30SBruce M Simpson p(udps_filtermcast, 74771498f30SBruce M Simpson "\t%lu time%s multicast source filter matched\n"); 7489b50d902SRodney W. Grimes #undef p 74922694ebaSBruce Evans #undef p1a 7509b50d902SRodney W. Grimes } 7519b50d902SRodney W. Grimes 7529b50d902SRodney W. Grimes /* 753a9771948SGleb Smirnoff * Dump CARP statistics structure. 754a9771948SGleb Smirnoff */ 755a9771948SGleb Smirnoff void 756feda1a43SJohn Baldwin carp_stats(u_long off, const char *name, int af1 __unused, int proto __unused) 757a9771948SGleb Smirnoff { 758a9771948SGleb Smirnoff struct carpstats carpstat, zerostat; 759a9771948SGleb Smirnoff size_t len = sizeof(struct carpstats); 760a9771948SGleb Smirnoff 761feda1a43SJohn Baldwin if (live) { 762a9771948SGleb Smirnoff if (zflag) 763a9771948SGleb Smirnoff memset(&zerostat, 0, len); 764a9771948SGleb Smirnoff if (sysctlbyname("net.inet.carp.stats", &carpstat, &len, 765a9771948SGleb Smirnoff zflag ? &zerostat : NULL, zflag ? len : 0) < 0) { 76645125e14SRuslan Ermilov if (errno != ENOENT) 767a9771948SGleb Smirnoff warn("sysctl: net.inet.carp.stats"); 768a9771948SGleb Smirnoff return; 769a9771948SGleb Smirnoff } 770feda1a43SJohn Baldwin } else { 771feda1a43SJohn Baldwin if (off == 0) 772feda1a43SJohn Baldwin return; 773feda1a43SJohn Baldwin kread(off, &carpstat, len); 774feda1a43SJohn Baldwin } 775a9771948SGleb Smirnoff 776a9771948SGleb Smirnoff printf("%s:\n", name); 777a9771948SGleb Smirnoff 778a9771948SGleb Smirnoff #define p(f, m) if (carpstat.f || sflag <= 1) \ 7797b95a1ebSYaroslav Tykhiy printf(m, (uintmax_t)carpstat.f, plural(carpstat.f)) 780a9771948SGleb Smirnoff #define p2(f, m) if (carpstat.f || sflag <= 1) \ 7817b95a1ebSYaroslav Tykhiy printf(m, (uintmax_t)carpstat.f) 782a9771948SGleb Smirnoff 7837b95a1ebSYaroslav Tykhiy p(carps_ipackets, "\t%ju packet%s received (IPv4)\n"); 7847b95a1ebSYaroslav Tykhiy p(carps_ipackets6, "\t%ju packet%s received (IPv6)\n"); 7857b95a1ebSYaroslav Tykhiy p(carps_badttl, "\t\t%ju packet%s discarded for wrong TTL\n"); 7867b95a1ebSYaroslav Tykhiy p(carps_hdrops, "\t\t%ju packet%s shorter than header\n"); 7877b95a1ebSYaroslav Tykhiy p(carps_badsum, "\t\t%ju discarded for bad checksum%s\n"); 7887b95a1ebSYaroslav Tykhiy p(carps_badver, "\t\t%ju discarded packet%s with a bad version\n"); 7897b95a1ebSYaroslav Tykhiy p2(carps_badlen, "\t\t%ju discarded because packet too short\n"); 7907b95a1ebSYaroslav Tykhiy p2(carps_badauth, "\t\t%ju discarded for bad authentication\n"); 7917b95a1ebSYaroslav Tykhiy p2(carps_badvhid, "\t\t%ju discarded for bad vhid\n"); 7927b95a1ebSYaroslav Tykhiy p2(carps_badaddrs, "\t\t%ju discarded because of a bad address list\n"); 7937b95a1ebSYaroslav Tykhiy p(carps_opackets, "\t%ju packet%s sent (IPv4)\n"); 7947b95a1ebSYaroslav Tykhiy p(carps_opackets6, "\t%ju packet%s sent (IPv6)\n"); 7957b95a1ebSYaroslav Tykhiy p2(carps_onomem, "\t\t%ju send failed due to mbuf memory error\n"); 796a9771948SGleb Smirnoff #if notyet 797a9771948SGleb Smirnoff p(carps_ostates, "\t\t%s state update%s sent\n"); 798a9771948SGleb Smirnoff #endif 799a9771948SGleb Smirnoff #undef p 800a9771948SGleb Smirnoff #undef p2 801a9771948SGleb Smirnoff } 802a9771948SGleb Smirnoff 803a9771948SGleb Smirnoff /* 8049b50d902SRodney W. Grimes * Dump IP statistics structure. 8059b50d902SRodney W. Grimes */ 8069b50d902SRodney W. Grimes void 807feda1a43SJohn Baldwin ip_stats(u_long off, const char *name, int af1 __unused, int proto __unused) 8089b50d902SRodney W. Grimes { 809c73d99b5SRuslan Ermilov struct ipstat ipstat, zerostat; 8104f81ef50SGarrett Wollman size_t len = sizeof ipstat; 8119b50d902SRodney W. Grimes 812feda1a43SJohn Baldwin if (live) { 813c73d99b5SRuslan Ermilov if (zflag) 814c73d99b5SRuslan Ermilov memset(&zerostat, 0, len); 815c73d99b5SRuslan Ermilov if (sysctlbyname("net.inet.ip.stats", &ipstat, &len, 816c73d99b5SRuslan Ermilov zflag ? &zerostat : NULL, zflag ? len : 0) < 0) { 8174f81ef50SGarrett Wollman warn("sysctl: net.inet.ip.stats"); 8189b50d902SRodney W. Grimes return; 8194f81ef50SGarrett Wollman } 820feda1a43SJohn Baldwin } else 821feda1a43SJohn Baldwin kread(off, &ipstat, len); 8224f81ef50SGarrett Wollman 8239b50d902SRodney W. Grimes printf("%s:\n", name); 8249b50d902SRodney W. Grimes 8259b50d902SRodney W. Grimes #define p(f, m) if (ipstat.f || sflag <= 1) \ 8269b50d902SRodney W. Grimes printf(m, ipstat.f, plural(ipstat.f)) 82722694ebaSBruce Evans #define p1a(f, m) if (ipstat.f || sflag <= 1) \ 82822694ebaSBruce Evans printf(m, ipstat.f) 8299b50d902SRodney W. Grimes 8307d56c0eeSAlexander Langer p(ips_total, "\t%lu total packet%s received\n"); 8317d56c0eeSAlexander Langer p(ips_badsum, "\t%lu bad header checksum%s\n"); 83222694ebaSBruce Evans p1a(ips_toosmall, "\t%lu with size smaller than minimum\n"); 83322694ebaSBruce Evans p1a(ips_tooshort, "\t%lu with data size < data length\n"); 834cfa1ca9dSYoshinobu Inoue p1a(ips_toolong, "\t%lu with ip length > max ip packet size\n"); 83522694ebaSBruce Evans p1a(ips_badhlen, "\t%lu with header length < data size\n"); 83622694ebaSBruce Evans p1a(ips_badlen, "\t%lu with data length < header length\n"); 83722694ebaSBruce Evans p1a(ips_badoptions, "\t%lu with bad options\n"); 83822694ebaSBruce Evans p1a(ips_badvers, "\t%lu with incorrect version number\n"); 8397d56c0eeSAlexander Langer p(ips_fragments, "\t%lu fragment%s received\n"); 8407d56c0eeSAlexander Langer p(ips_fragdropped, "\t%lu fragment%s dropped (dup or out of space)\n"); 8417d56c0eeSAlexander Langer p(ips_fragtimeout, "\t%lu fragment%s dropped after timeout\n"); 8427d56c0eeSAlexander Langer p(ips_reassembled, "\t%lu packet%s reassembled ok\n"); 8437d56c0eeSAlexander Langer p(ips_delivered, "\t%lu packet%s for this host\n"); 8447d56c0eeSAlexander Langer p(ips_noproto, "\t%lu packet%s for unknown/unsupported protocol\n"); 845958d6f7fSPierre Beyssac p(ips_forward, "\t%lu packet%s forwarded"); 846958d6f7fSPierre Beyssac p(ips_fastforward, " (%lu packet%s fast forwarded)"); 847958d6f7fSPierre Beyssac if (ipstat.ips_forward || sflag <= 1) 848958d6f7fSPierre Beyssac putchar('\n'); 8497d56c0eeSAlexander Langer p(ips_cantforward, "\t%lu packet%s not forwardable\n"); 850a5969f5fSGarrett Wollman p(ips_notmember, 851a5969f5fSGarrett Wollman "\t%lu packet%s received for unknown multicast group\n"); 8527d56c0eeSAlexander Langer p(ips_redirectsent, "\t%lu redirect%s sent\n"); 8537d56c0eeSAlexander Langer p(ips_localout, "\t%lu packet%s sent from this host\n"); 8547d56c0eeSAlexander Langer p(ips_rawout, "\t%lu packet%s sent with fabricated ip header\n"); 855a5969f5fSGarrett Wollman p(ips_odropped, 856a5969f5fSGarrett Wollman "\t%lu output packet%s dropped due to no bufs, etc.\n"); 8577d56c0eeSAlexander Langer p(ips_noroute, "\t%lu output packet%s discarded due to no route\n"); 8587d56c0eeSAlexander Langer p(ips_fragmented, "\t%lu output datagram%s fragmented\n"); 8597d56c0eeSAlexander Langer p(ips_ofragments, "\t%lu fragment%s created\n"); 8607d56c0eeSAlexander Langer p(ips_cantfrag, "\t%lu datagram%s that can't be fragmented\n"); 861cfa1ca9dSYoshinobu Inoue p(ips_nogif, "\t%lu tunneling packet%s that can't find gif\n"); 86233841545SHajimu UMEMOTO p(ips_badaddr, "\t%lu datagram%s with bad address in header\n"); 8639b50d902SRodney W. Grimes #undef p 86422694ebaSBruce Evans #undef p1a 8659b50d902SRodney W. Grimes } 8669b50d902SRodney W. Grimes 8674063583aSMaxim Konovalov static const char *icmpnames[ICMP_MAXTYPE + 1] = { 8684063583aSMaxim Konovalov "echo reply", /* RFC 792 */ 8699b50d902SRodney W. Grimes "#1", 8709b50d902SRodney W. Grimes "#2", 8714063583aSMaxim Konovalov "destination unreachable", /* RFC 792 */ 8724063583aSMaxim Konovalov "source quench", /* RFC 792 */ 8734063583aSMaxim Konovalov "routing redirect", /* RFC 792 */ 8749b50d902SRodney W. Grimes "#6", 8759b50d902SRodney W. Grimes "#7", 8764063583aSMaxim Konovalov "echo", /* RFC 792 */ 8774063583aSMaxim Konovalov "router advertisement", /* RFC 1256 */ 8784063583aSMaxim Konovalov "router solicitation", /* RFC 1256 */ 8794063583aSMaxim Konovalov "time exceeded", /* RFC 792 */ 8804063583aSMaxim Konovalov "parameter problem", /* RFC 792 */ 8814063583aSMaxim Konovalov "time stamp", /* RFC 792 */ 8824063583aSMaxim Konovalov "time stamp reply", /* RFC 792 */ 8834063583aSMaxim Konovalov "information request", /* RFC 792 */ 8844063583aSMaxim Konovalov "information request reply", /* RFC 792 */ 8854063583aSMaxim Konovalov "address mask request", /* RFC 950 */ 8864063583aSMaxim Konovalov "address mask reply", /* RFC 950 */ 8874063583aSMaxim Konovalov "#19", 8884063583aSMaxim Konovalov "#20", 8894063583aSMaxim Konovalov "#21", 8904063583aSMaxim Konovalov "#22", 8914063583aSMaxim Konovalov "#23", 8924063583aSMaxim Konovalov "#24", 8934063583aSMaxim Konovalov "#25", 8944063583aSMaxim Konovalov "#26", 8954063583aSMaxim Konovalov "#27", 8964063583aSMaxim Konovalov "#28", 8974063583aSMaxim Konovalov "#29", 8984063583aSMaxim Konovalov "icmp traceroute", /* RFC 1393 */ 8994063583aSMaxim Konovalov "datagram conversion error", /* RFC 1475 */ 9004063583aSMaxim Konovalov "mobile host redirect", 9014063583aSMaxim Konovalov "IPv6 where-are-you", 9024063583aSMaxim Konovalov "IPv6 i-am-here", 9034063583aSMaxim Konovalov "mobile registration req", 9044063583aSMaxim Konovalov "mobile registration reply", 9054063583aSMaxim Konovalov "domain name request", /* RFC 1788 */ 9064063583aSMaxim Konovalov "domain name reply", /* RFC 1788 */ 9074063583aSMaxim Konovalov "icmp SKIP", 9084063583aSMaxim Konovalov "icmp photuris", /* RFC 2521 */ 9099b50d902SRodney W. Grimes }; 9109b50d902SRodney W. Grimes 9119b50d902SRodney W. Grimes /* 9129b50d902SRodney W. Grimes * Dump ICMP statistics. 9139b50d902SRodney W. Grimes */ 9149b50d902SRodney W. Grimes void 915feda1a43SJohn Baldwin icmp_stats(u_long off, const char *name, int af1 __unused, int proto __unused) 9169b50d902SRodney W. Grimes { 917c73d99b5SRuslan Ermilov struct icmpstat icmpstat, zerostat; 9184e00c309SGarrett Wollman int i, first; 9194e00c309SGarrett Wollman size_t len; 9209b50d902SRodney W. Grimes 9214e00c309SGarrett Wollman len = sizeof icmpstat; 922feda1a43SJohn Baldwin if (live) { 923c73d99b5SRuslan Ermilov if (zflag) 924c73d99b5SRuslan Ermilov memset(&zerostat, 0, len); 925feda1a43SJohn Baldwin if (sysctlbyname("net.inet.icmp.stats", &icmpstat, &len, 926c73d99b5SRuslan Ermilov zflag ? &zerostat : NULL, zflag ? len : 0) < 0) { 927c73d99b5SRuslan Ermilov warn("sysctl: net.inet.icmp.stats"); 928c73d99b5SRuslan Ermilov return; 929c73d99b5SRuslan Ermilov } 930feda1a43SJohn Baldwin } else 931feda1a43SJohn Baldwin kread(off, &icmpstat, len); 9324e00c309SGarrett Wollman 9339b50d902SRodney W. Grimes printf("%s:\n", name); 9349b50d902SRodney W. Grimes 9359b50d902SRodney W. Grimes #define p(f, m) if (icmpstat.f || sflag <= 1) \ 9369b50d902SRodney W. Grimes printf(m, icmpstat.f, plural(icmpstat.f)) 93722694ebaSBruce Evans #define p1a(f, m) if (icmpstat.f || sflag <= 1) \ 93822694ebaSBruce Evans printf(m, icmpstat.f) 939bd714208SRuslan Ermilov #define p2(f, m) if (icmpstat.f || sflag <= 1) \ 940bd714208SRuslan Ermilov printf(m, icmpstat.f, plurales(icmpstat.f)) 9419b50d902SRodney W. Grimes 9427d56c0eeSAlexander Langer p(icps_error, "\t%lu call%s to icmp_error\n"); 9439b50d902SRodney W. Grimes p(icps_oldicmp, 944f99a4046SMike Makonnen "\t%lu error%s not generated in response to an icmp message\n"); 9459b50d902SRodney W. Grimes for (first = 1, i = 0; i < ICMP_MAXTYPE + 1; i++) 9469b50d902SRodney W. Grimes if (icmpstat.icps_outhist[i] != 0) { 9479b50d902SRodney W. Grimes if (first) { 9489b50d902SRodney W. Grimes printf("\tOutput histogram:\n"); 9499b50d902SRodney W. Grimes first = 0; 9509b50d902SRodney W. Grimes } 9514063583aSMaxim Konovalov if (icmpnames[i] != NULL) 9527d56c0eeSAlexander Langer printf("\t\t%s: %lu\n", icmpnames[i], 9539b50d902SRodney W. Grimes icmpstat.icps_outhist[i]); 9544063583aSMaxim Konovalov else 9554063583aSMaxim Konovalov printf("\t\tunknown ICMP #%d: %lu\n", i, 9564063583aSMaxim Konovalov icmpstat.icps_outhist[i]); 9579b50d902SRodney W. Grimes } 9587d56c0eeSAlexander Langer p(icps_badcode, "\t%lu message%s with bad code fields\n"); 959bc215f59SDavid E. O'Brien p(icps_tooshort, "\t%lu message%s less than the minimum length\n"); 960bc215f59SDavid E. O'Brien p(icps_checksum, "\t%lu message%s with bad checksum\n"); 9617d56c0eeSAlexander Langer p(icps_badlen, "\t%lu message%s with bad length\n"); 96222694ebaSBruce Evans p1a(icps_bmcastecho, "\t%lu multicast echo requests ignored\n"); 96322694ebaSBruce Evans p1a(icps_bmcasttstamp, "\t%lu multicast timestamp requests ignored\n"); 9649b50d902SRodney W. Grimes for (first = 1, i = 0; i < ICMP_MAXTYPE + 1; i++) 9659b50d902SRodney W. Grimes if (icmpstat.icps_inhist[i] != 0) { 9669b50d902SRodney W. Grimes if (first) { 9679b50d902SRodney W. Grimes printf("\tInput histogram:\n"); 9689b50d902SRodney W. Grimes first = 0; 9699b50d902SRodney W. Grimes } 9704063583aSMaxim Konovalov if (icmpnames[i] != NULL) 9717d56c0eeSAlexander Langer printf("\t\t%s: %lu\n", icmpnames[i], 9729b50d902SRodney W. Grimes icmpstat.icps_inhist[i]); 9734063583aSMaxim Konovalov else 9744063583aSMaxim Konovalov printf("\t\tunknown ICMP #%d: %lu\n", i, 9754063583aSMaxim Konovalov icmpstat.icps_inhist[i]); 9769b50d902SRodney W. Grimes } 9777d56c0eeSAlexander Langer p(icps_reflect, "\t%lu message response%s generated\n"); 978bd714208SRuslan Ermilov p2(icps_badaddr, "\t%lu invalid return address%s\n"); 9790237ca7bSRuslan Ermilov p(icps_noroute, "\t%lu no return route%s\n"); 9809b50d902SRodney W. Grimes #undef p 98122694ebaSBruce Evans #undef p1a 982bd714208SRuslan Ermilov #undef p2 983feda1a43SJohn Baldwin if (live) { 9844e00c309SGarrett Wollman len = sizeof i; 985feda1a43SJohn Baldwin if (sysctlbyname("net.inet.icmp.maskrepl", &i, &len, NULL, 0) < 986feda1a43SJohn Baldwin 0) 9874e00c309SGarrett Wollman return; 9884e00c309SGarrett Wollman printf("\tICMP address mask responses are %sabled\n", 9894e00c309SGarrett Wollman i ? "en" : "dis"); 9909b50d902SRodney W. Grimes } 991feda1a43SJohn Baldwin } 9929b50d902SRodney W. Grimes 9939b50d902SRodney W. Grimes /* 9949b50d902SRodney W. Grimes * Dump IGMP statistics structure. 9959b50d902SRodney W. Grimes */ 9969b50d902SRodney W. Grimes void 997feda1a43SJohn Baldwin igmp_stats(u_long off, const char *name, int af1 __unused, int proto __unused) 9989b50d902SRodney W. Grimes { 999c73d99b5SRuslan Ermilov struct igmpstat igmpstat, zerostat; 10004f81ef50SGarrett Wollman size_t len = sizeof igmpstat; 10019b50d902SRodney W. Grimes 1002feda1a43SJohn Baldwin if (live) { 1003c73d99b5SRuslan Ermilov if (zflag) 1004c73d99b5SRuslan Ermilov memset(&zerostat, 0, len); 1005c73d99b5SRuslan Ermilov if (sysctlbyname("net.inet.igmp.stats", &igmpstat, &len, 1006c73d99b5SRuslan Ermilov zflag ? &zerostat : NULL, zflag ? len : 0) < 0) { 10074f81ef50SGarrett Wollman warn("sysctl: net.inet.igmp.stats"); 10089b50d902SRodney W. Grimes return; 10094f81ef50SGarrett Wollman } 1010feda1a43SJohn Baldwin } else 1011feda1a43SJohn Baldwin kread(off, &igmpstat, len); 10124f81ef50SGarrett Wollman 10139b50d902SRodney W. Grimes printf("%s:\n", name); 10149b50d902SRodney W. Grimes 10159b50d902SRodney W. Grimes #define p(f, m) if (igmpstat.f || sflag <= 1) \ 10169b50d902SRodney W. Grimes printf(m, igmpstat.f, plural(igmpstat.f)) 10179b50d902SRodney W. Grimes #define py(f, m) if (igmpstat.f || sflag <= 1) \ 10189b50d902SRodney W. Grimes printf(m, igmpstat.f, igmpstat.f != 1 ? "ies" : "y") 10199b50d902SRodney W. Grimes p(igps_rcv_total, "\t%u message%s received\n"); 10209b50d902SRodney W. Grimes p(igps_rcv_tooshort, "\t%u message%s received with too few bytes\n"); 10219b50d902SRodney W. Grimes p(igps_rcv_badsum, "\t%u message%s received with bad checksum\n"); 10229b50d902SRodney W. Grimes py(igps_rcv_queries, "\t%u membership quer%s received\n"); 10233feeb332SDavid E. O'Brien py(igps_rcv_badqueries, 10243feeb332SDavid E. O'Brien "\t%u membership quer%s received with invalid field(s)\n"); 10259b50d902SRodney W. Grimes p(igps_rcv_reports, "\t%u membership report%s received\n"); 10263feeb332SDavid E. O'Brien p(igps_rcv_badreports, 10273feeb332SDavid E. O'Brien "\t%u membership report%s received with invalid field(s)\n"); 10283feeb332SDavid E. O'Brien p(igps_rcv_ourreports, 10293feeb332SDavid E. O'Brien "\t%u membership report%s received for groups to which we belong\n"); 10309b50d902SRodney W. Grimes p(igps_snd_reports, "\t%u membership report%s sent\n"); 10319b50d902SRodney W. Grimes #undef p 10329b50d902SRodney W. Grimes #undef py 10339b50d902SRodney W. Grimes } 10349b50d902SRodney W. Grimes 10359b50d902SRodney W. Grimes /* 1036c7b9b5bbSJeffrey Hsu * Dump PIM statistics structure. 1037c7b9b5bbSJeffrey Hsu */ 1038c7b9b5bbSJeffrey Hsu void 1039feda1a43SJohn Baldwin pim_stats(u_long off __unused, const char *name, int af1 __unused, 1040feda1a43SJohn Baldwin int proto __unused) 1041c7b9b5bbSJeffrey Hsu { 1042c7b9b5bbSJeffrey Hsu struct pimstat pimstat, zerostat; 1043c7b9b5bbSJeffrey Hsu size_t len = sizeof pimstat; 1044c7b9b5bbSJeffrey Hsu 1045feda1a43SJohn Baldwin if (live) { 1046c7b9b5bbSJeffrey Hsu if (zflag) 1047c7b9b5bbSJeffrey Hsu memset(&zerostat, 0, len); 1048c7b9b5bbSJeffrey Hsu if (sysctlbyname("net.inet.pim.stats", &pimstat, &len, 1049c7b9b5bbSJeffrey Hsu zflag ? &zerostat : NULL, zflag ? len : 0) < 0) { 10506d7c0d2fSDag-Erling Smørgrav if (errno != ENOENT) 1051c7b9b5bbSJeffrey Hsu warn("sysctl: net.inet.pim.stats"); 1052c7b9b5bbSJeffrey Hsu return; 1053c7b9b5bbSJeffrey Hsu } 1054feda1a43SJohn Baldwin } else { 1055feda1a43SJohn Baldwin if (off == 0) 1056feda1a43SJohn Baldwin return; 1057feda1a43SJohn Baldwin kread(off, &pimstat, len); 1058feda1a43SJohn Baldwin } 1059c7b9b5bbSJeffrey Hsu 1060c7b9b5bbSJeffrey Hsu printf("%s:\n", name); 1061c7b9b5bbSJeffrey Hsu 1062c7b9b5bbSJeffrey Hsu #define p(f, m) if (pimstat.f || sflag <= 1) \ 10637b95a1ebSYaroslav Tykhiy printf(m, (uintmax_t)pimstat.f, plural(pimstat.f)) 1064c7b9b5bbSJeffrey Hsu #define py(f, m) if (pimstat.f || sflag <= 1) \ 10657b95a1ebSYaroslav Tykhiy printf(m, (uintmax_t)pimstat.f, pimstat.f != 1 ? "ies" : "y") 10667b95a1ebSYaroslav Tykhiy p(pims_rcv_total_msgs, "\t%ju message%s received\n"); 10677b95a1ebSYaroslav Tykhiy p(pims_rcv_total_bytes, "\t%ju byte%s received\n"); 10687b95a1ebSYaroslav Tykhiy p(pims_rcv_tooshort, "\t%ju message%s received with too few bytes\n"); 10697b95a1ebSYaroslav Tykhiy p(pims_rcv_badsum, "\t%ju message%s received with bad checksum\n"); 10707b95a1ebSYaroslav Tykhiy p(pims_rcv_badversion, "\t%ju message%s received with bad version\n"); 10717b95a1ebSYaroslav Tykhiy p(pims_rcv_registers_msgs, "\t%ju data register message%s received\n"); 10727b95a1ebSYaroslav Tykhiy p(pims_rcv_registers_bytes, "\t%ju data register byte%s received\n"); 10733feeb332SDavid E. O'Brien p(pims_rcv_registers_wrongiif, 10743feeb332SDavid E. O'Brien "\t%ju data register message%s received on wrong iif\n"); 10757b95a1ebSYaroslav Tykhiy p(pims_rcv_badregisters, "\t%ju bad register%s received\n"); 10767b95a1ebSYaroslav Tykhiy p(pims_snd_registers_msgs, "\t%ju data register message%s sent\n"); 10777b95a1ebSYaroslav Tykhiy p(pims_snd_registers_bytes, "\t%ju data register byte%s sent\n"); 1078c7b9b5bbSJeffrey Hsu #undef p 1079c7b9b5bbSJeffrey Hsu #undef py 1080c7b9b5bbSJeffrey Hsu } 1081c7b9b5bbSJeffrey Hsu 1082c7b9b5bbSJeffrey Hsu /* 10839b50d902SRodney W. Grimes * Pretty print an Internet address (net address + port). 10849b50d902SRodney W. Grimes */ 10859b50d902SRodney W. Grimes void 1086a01e3379SDavid Malone inetprint(struct in_addr *in, int port, const char *proto, int num_port) 10879b50d902SRodney W. Grimes { 10889b50d902SRodney W. Grimes struct servent *sp = 0; 10899b50d902SRodney W. Grimes char line[80], *cp; 1090cfa1ca9dSYoshinobu Inoue int width; 10919b50d902SRodney W. Grimes 1092080b7f49SDag-Erling Smørgrav if (Wflag) 1093080b7f49SDag-Erling Smørgrav sprintf(line, "%s.", inetname(in)); 1094080b7f49SDag-Erling Smørgrav else 1095a01e3379SDavid Malone sprintf(line, "%.*s.", (Aflag && !num_port) ? 12 : 16, inetname(in)); 10969b50d902SRodney W. Grimes cp = index(line, '\0'); 1097a01e3379SDavid Malone if (!num_port && port) 10989b50d902SRodney W. Grimes sp = getservbyport((int)port, proto); 10999b50d902SRodney W. Grimes if (sp || port == 0) 11001ef69972SAndrey A. Chernov sprintf(cp, "%.15s ", sp ? sp->s_name : "*"); 11019b50d902SRodney W. Grimes else 11029b50d902SRodney W. Grimes sprintf(cp, "%d ", ntohs((u_short)port)); 1103080b7f49SDag-Erling Smørgrav width = (Aflag && !Wflag) ? 18 : 22; 1104080b7f49SDag-Erling Smørgrav if (Wflag) 1105080b7f49SDag-Erling Smørgrav printf("%-*s ", width, line); 1106080b7f49SDag-Erling Smørgrav else 1107cfa1ca9dSYoshinobu Inoue printf("%-*.*s ", width, width, line); 11089b50d902SRodney W. Grimes } 11099b50d902SRodney W. Grimes 11109b50d902SRodney W. Grimes /* 11119b50d902SRodney W. Grimes * Construct an Internet address representation. 111265ea0024SAssar Westerlund * If numeric_addr has been supplied, give 11139b50d902SRodney W. Grimes * numeric value, otherwise try for symbolic name. 11149b50d902SRodney W. Grimes */ 11159b50d902SRodney W. Grimes char * 11165e051718SAssar Westerlund inetname(struct in_addr *inp) 11179b50d902SRodney W. Grimes { 1118a01e3379SDavid Malone char *cp; 1119d121b556SBrian Somers static char line[MAXHOSTNAMELEN]; 11209b50d902SRodney W. Grimes struct hostent *hp; 11219b50d902SRodney W. Grimes struct netent *np; 11229b50d902SRodney W. Grimes 11239b50d902SRodney W. Grimes cp = 0; 112465ea0024SAssar Westerlund if (!numeric_addr && inp->s_addr != INADDR_ANY) { 11259b50d902SRodney W. Grimes int net = inet_netof(*inp); 11269b50d902SRodney W. Grimes int lna = inet_lnaof(*inp); 11279b50d902SRodney W. Grimes 11289b50d902SRodney W. Grimes if (lna == INADDR_ANY) { 11299b50d902SRodney W. Grimes np = getnetbyaddr(net, AF_INET); 11309b50d902SRodney W. Grimes if (np) 11319b50d902SRodney W. Grimes cp = np->n_name; 11329b50d902SRodney W. Grimes } 11339b50d902SRodney W. Grimes if (cp == 0) { 11349b50d902SRodney W. Grimes hp = gethostbyaddr((char *)inp, sizeof (*inp), AF_INET); 11359b50d902SRodney W. Grimes if (hp) { 11369b50d902SRodney W. Grimes cp = hp->h_name; 1137d121b556SBrian Somers trimdomain(cp, strlen(cp)); 11389b50d902SRodney W. Grimes } 11399b50d902SRodney W. Grimes } 11409b50d902SRodney W. Grimes } 11419b50d902SRodney W. Grimes if (inp->s_addr == INADDR_ANY) 11429b50d902SRodney W. Grimes strcpy(line, "*"); 11439a1f6729SWarner Losh else if (cp) { 11449a1f6729SWarner Losh strncpy(line, cp, sizeof(line) - 1); 11459a1f6729SWarner Losh line[sizeof(line) - 1] = '\0'; 11469a1f6729SWarner Losh } else { 11479b50d902SRodney W. Grimes inp->s_addr = ntohl(inp->s_addr); 114822694ebaSBruce Evans #define C(x) ((u_int)((x) & 0xff)) 114922694ebaSBruce Evans sprintf(line, "%u.%u.%u.%u", C(inp->s_addr >> 24), 11509b50d902SRodney W. Grimes C(inp->s_addr >> 16), C(inp->s_addr >> 8), C(inp->s_addr)); 11519b50d902SRodney W. Grimes } 11529b50d902SRodney W. Grimes return (line); 11539b50d902SRodney W. Grimes } 1154