1100b98dbSKelly Yancey /* $NetBSD: inet.c,v 1.35.2.1 1999/04/29 14:57:08 perry Exp $ */ 2100b98dbSKelly Yancey /* $KAME: ipsec.c,v 1.25 2001/03/12 09:04:39 itojun Exp $ */ 365475bc8SDavid E. O'Brien /*- 4*8a16b7a1SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause 5*8a16b7a1SPedro F. Giffuni * 6100b98dbSKelly Yancey * Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project. 7100b98dbSKelly Yancey * All rights reserved. 8100b98dbSKelly Yancey * 9100b98dbSKelly Yancey * Redistribution and use in source and binary forms, with or without 10100b98dbSKelly Yancey * modification, are permitted provided that the following conditions 11100b98dbSKelly Yancey * are met: 12100b98dbSKelly Yancey * 1. Redistributions of source code must retain the above copyright 13100b98dbSKelly Yancey * notice, this list of conditions and the following disclaimer. 14100b98dbSKelly Yancey * 2. Redistributions in binary form must reproduce the above copyright 15100b98dbSKelly Yancey * notice, this list of conditions and the following disclaimer in the 16100b98dbSKelly Yancey * documentation and/or other materials provided with the distribution. 17100b98dbSKelly Yancey * 3. Neither the name of the project nor the names of its contributors 18100b98dbSKelly Yancey * may be used to endorse or promote products derived from this software 19100b98dbSKelly Yancey * without specific prior written permission. 20100b98dbSKelly Yancey * 21100b98dbSKelly Yancey * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND 22100b98dbSKelly Yancey * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23100b98dbSKelly Yancey * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 24100b98dbSKelly Yancey * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE 25100b98dbSKelly Yancey * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26100b98dbSKelly Yancey * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 27100b98dbSKelly Yancey * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 28100b98dbSKelly Yancey * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 29100b98dbSKelly Yancey * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 30100b98dbSKelly Yancey * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31100b98dbSKelly Yancey * SUCH DAMAGE. 32100b98dbSKelly Yancey */ 3365475bc8SDavid E. O'Brien /*- 34100b98dbSKelly Yancey * Copyright (c) 1983, 1988, 1993 35100b98dbSKelly Yancey * The Regents of the University of California. All rights reserved. 36100b98dbSKelly Yancey * 37100b98dbSKelly Yancey * Redistribution and use in source and binary forms, with or without 38100b98dbSKelly Yancey * modification, are permitted provided that the following conditions 39100b98dbSKelly Yancey * are met: 40100b98dbSKelly Yancey * 1. Redistributions of source code must retain the above copyright 41100b98dbSKelly Yancey * notice, this list of conditions and the following disclaimer. 42100b98dbSKelly Yancey * 2. Redistributions in binary form must reproduce the above copyright 43100b98dbSKelly Yancey * notice, this list of conditions and the following disclaimer in the 44100b98dbSKelly Yancey * documentation and/or other materials provided with the distribution. 45fbbd9655SWarner Losh * 3. Neither the name of the University nor the names of its contributors 46100b98dbSKelly Yancey * may be used to endorse or promote products derived from this software 47100b98dbSKelly Yancey * without specific prior written permission. 48100b98dbSKelly Yancey * 49100b98dbSKelly Yancey * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 50100b98dbSKelly Yancey * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 51100b98dbSKelly Yancey * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 52100b98dbSKelly Yancey * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 53100b98dbSKelly Yancey * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 54100b98dbSKelly Yancey * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 55100b98dbSKelly Yancey * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 56100b98dbSKelly Yancey * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 57100b98dbSKelly Yancey * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 58100b98dbSKelly Yancey * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 59100b98dbSKelly Yancey * SUCH DAMAGE. 60100b98dbSKelly Yancey */ 61100b98dbSKelly Yancey 6265475bc8SDavid E. O'Brien #if 0 63100b98dbSKelly Yancey #ifndef lint 64100b98dbSKelly Yancey static char sccsid[] = "@(#)inet.c 8.5 (Berkeley) 5/24/95"; 65100b98dbSKelly Yancey #endif /* not lint */ 6665475bc8SDavid E. O'Brien #endif 6765475bc8SDavid E. O'Brien 6865475bc8SDavid E. O'Brien #include <sys/cdefs.h> 6965475bc8SDavid E. O'Brien __FBSDID("$FreeBSD$"); 70100b98dbSKelly Yancey 71100b98dbSKelly Yancey #include <sys/param.h> 72100b98dbSKelly Yancey #include <sys/queue.h> 73100b98dbSKelly Yancey #include <sys/socket.h> 74feda1a43SJohn Baldwin #include <sys/socketvar.h> 75100b98dbSKelly Yancey 76100b98dbSKelly Yancey #include <netinet/in.h> 77100b98dbSKelly Yancey 788409aedfSGeorge V. Neville-Neil #ifdef IPSEC 79100b98dbSKelly Yancey #include <netipsec/keysock.h> 80100b98dbSKelly Yancey #endif 81100b98dbSKelly Yancey 827b95a1ebSYaroslav Tykhiy #include <stdint.h> 83100b98dbSKelly Yancey #include <stdio.h> 84821df508SXin LI #include <string.h> 85821df508SXin LI #include <unistd.h> 86ade9ccfeSMarcel Moolenaar #include <stdbool.h> 87ade9ccfeSMarcel Moolenaar #include <libxo/xo.h> 88100b98dbSKelly Yancey #include "netstat.h" 89100b98dbSKelly Yancey 90100b98dbSKelly Yancey #ifdef IPSEC 91100b98dbSKelly Yancey 92100b98dbSKelly Yancey static const char *pfkey_msgtypenames[] = { 93100b98dbSKelly Yancey "reserved", "getspi", "update", "add", "delete", 94100b98dbSKelly Yancey "get", "acquire", "register", "expire", "flush", 95100b98dbSKelly Yancey "dump", "x_promisc", "x_pchange", "x_spdupdate", "x_spdadd", 96100b98dbSKelly Yancey "x_spddelete", "x_spdget", "x_spdacquire", "x_spddump", "x_spdflush", 97100b98dbSKelly Yancey "x_spdsetidx", "x_spdexpire", "x_spddelete2" 98100b98dbSKelly Yancey }; 99100b98dbSKelly Yancey 100100b98dbSKelly Yancey static const char *pfkey_msgtype_names (int); 101100b98dbSKelly Yancey 102100b98dbSKelly Yancey 103100b98dbSKelly Yancey static const char * 104100b98dbSKelly Yancey pfkey_msgtype_names(int x) 105100b98dbSKelly Yancey { 106d19ba08aSMarcelo Araujo const int max = nitems(pfkey_msgtypenames); 107100b98dbSKelly Yancey static char buf[20]; 108100b98dbSKelly Yancey 109100b98dbSKelly Yancey if (x < max && pfkey_msgtypenames[x]) 110100b98dbSKelly Yancey return pfkey_msgtypenames[x]; 111100b98dbSKelly Yancey snprintf(buf, sizeof(buf), "#%d", x); 112100b98dbSKelly Yancey return buf; 113100b98dbSKelly Yancey } 114100b98dbSKelly Yancey 115100b98dbSKelly Yancey void 116feda1a43SJohn Baldwin pfkey_stats(u_long off, const char *name, int family __unused, 117feda1a43SJohn Baldwin int proto __unused) 118100b98dbSKelly Yancey { 119100b98dbSKelly Yancey struct pfkeystat pfkeystat; 120100b98dbSKelly Yancey unsigned first, type; 121100b98dbSKelly Yancey 122100b98dbSKelly Yancey if (off == 0) 123100b98dbSKelly Yancey return; 124ade9ccfeSMarcel Moolenaar xo_emit("{T:/%s}:\n", name); 125ade9ccfeSMarcel Moolenaar xo_open_container(name); 126db8c0879SAndrey V. Elsukov kread_counters(off, (char *)&pfkeystat, sizeof(pfkeystat)); 127100b98dbSKelly Yancey 128100b98dbSKelly Yancey #define p(f, m) if (pfkeystat.f || sflag <= 1) \ 129ade9ccfeSMarcel Moolenaar xo_emit(m, (uintmax_t)pfkeystat.f, plural(pfkeystat.f)) 130100b98dbSKelly Yancey 131100b98dbSKelly Yancey /* userland -> kernel */ 1324ffc6e48SMark Johnston p(out_total, "\t{:sent-requests/%ju} " 133ade9ccfeSMarcel Moolenaar "{N:/request%s sent from userland}\n"); 134ade9ccfeSMarcel Moolenaar p(out_bytes, "\t{:sent-bytes/%ju} " 135ade9ccfeSMarcel Moolenaar "{N:/byte%s sent from userland}\n"); 136100b98dbSKelly Yancey for (first = 1, type = 0; 137100b98dbSKelly Yancey type<sizeof(pfkeystat.out_msgtype)/sizeof(pfkeystat.out_msgtype[0]); 138100b98dbSKelly Yancey type++) { 139100b98dbSKelly Yancey if (pfkeystat.out_msgtype[type] <= 0) 140100b98dbSKelly Yancey continue; 141100b98dbSKelly Yancey if (first) { 142ade9ccfeSMarcel Moolenaar xo_open_list("output-histogram"); 143ade9ccfeSMarcel Moolenaar xo_emit("\t{T:histogram by message type}:\n"); 144100b98dbSKelly Yancey first = 0; 145100b98dbSKelly Yancey } 146ade9ccfeSMarcel Moolenaar xo_open_instance("output-histogram"); 147ade9ccfeSMarcel Moolenaar xo_emit("\t\t{k::type/%s}: {:count/%ju}\n", 148ade9ccfeSMarcel Moolenaar pfkey_msgtype_names(type), 1497b95a1ebSYaroslav Tykhiy (uintmax_t)pfkeystat.out_msgtype[type]); 150ade9ccfeSMarcel Moolenaar xo_close_instance("output-histogram"); 151100b98dbSKelly Yancey } 152ade9ccfeSMarcel Moolenaar if (!first) 153ade9ccfeSMarcel Moolenaar xo_close_list("output-histogram"); 154ade9ccfeSMarcel Moolenaar 155ade9ccfeSMarcel Moolenaar p(out_invlen, "\t{:dropped-bad-length/%ju} " 156ade9ccfeSMarcel Moolenaar "{N:/message%s with invalid length field}\n"); 157ade9ccfeSMarcel Moolenaar p(out_invver, "\t{:dropped-bad-version/%ju} " 158ade9ccfeSMarcel Moolenaar "{N:/message%s with invalid version field}\n"); 159ade9ccfeSMarcel Moolenaar p(out_invmsgtype, "\t{:dropped-bad-type/%ju} " 160ade9ccfeSMarcel Moolenaar "{N:/message%s with invalid message type field}\n"); 161ade9ccfeSMarcel Moolenaar p(out_tooshort, "\t{:dropped-too-short/%ju} " 162ade9ccfeSMarcel Moolenaar "{N:/message%s too short}\n"); 163ade9ccfeSMarcel Moolenaar p(out_nomem, "\t{:dropped-no-memory/%ju} " 164ade9ccfeSMarcel Moolenaar "{N:/message%s with memory allocation failure}\n"); 165ade9ccfeSMarcel Moolenaar p(out_dupext, "\t{:dropped-duplicate-extension/%ju} " 166ade9ccfeSMarcel Moolenaar "{N:/message%s with duplicate extension}\n"); 167ade9ccfeSMarcel Moolenaar p(out_invexttype, "\t{:dropped-bad-extension/%ju} " 168ade9ccfeSMarcel Moolenaar "{N:/message%s with invalid extension type}\n"); 1694ffc6e48SMark Johnston p(out_invsatype, "\t{:dropped-bad-sa-type/%ju} " 170ade9ccfeSMarcel Moolenaar "{N:/message%s with invalid sa type}\n"); 171ade9ccfeSMarcel Moolenaar p(out_invaddr, "\t{:dropped-bad-address-extension/%ju} " 172ade9ccfeSMarcel Moolenaar "{N:/message%s with invalid address extension}\n"); 173100b98dbSKelly Yancey 174100b98dbSKelly Yancey /* kernel -> userland */ 175ade9ccfeSMarcel Moolenaar p(in_total, "\t{:received-requests/%ju} " 176ade9ccfeSMarcel Moolenaar "{N:/request%s sent to userland}\n"); 177ade9ccfeSMarcel Moolenaar p(in_bytes, "\t{:received-bytes/%ju} " 178ade9ccfeSMarcel Moolenaar "{N:/byte%s sent to userland}\n"); 179100b98dbSKelly Yancey for (first = 1, type = 0; 180100b98dbSKelly Yancey type < sizeof(pfkeystat.in_msgtype)/sizeof(pfkeystat.in_msgtype[0]); 181100b98dbSKelly Yancey type++) { 182100b98dbSKelly Yancey if (pfkeystat.in_msgtype[type] <= 0) 183100b98dbSKelly Yancey continue; 184100b98dbSKelly Yancey if (first) { 185ade9ccfeSMarcel Moolenaar xo_open_list("input-histogram"); 186ade9ccfeSMarcel Moolenaar xo_emit("\t{T:histogram by message type}:\n"); 187100b98dbSKelly Yancey first = 0; 188100b98dbSKelly Yancey } 189ade9ccfeSMarcel Moolenaar xo_open_instance("input-histogram"); 190ade9ccfeSMarcel Moolenaar xo_emit("\t\t{k:type/%s}: {:count/%ju}\n", 191ade9ccfeSMarcel Moolenaar pfkey_msgtype_names(type), 1927b95a1ebSYaroslav Tykhiy (uintmax_t)pfkeystat.in_msgtype[type]); 193ade9ccfeSMarcel Moolenaar xo_close_instance("input-histogram"); 194100b98dbSKelly Yancey } 195ade9ccfeSMarcel Moolenaar if (!first) 196ade9ccfeSMarcel Moolenaar xo_close_list("input-histogram"); 197ade9ccfeSMarcel Moolenaar p(in_msgtarget[KEY_SENDUP_ONE], "\t{:received-one-socket/%ju} " 198ade9ccfeSMarcel Moolenaar "{N:/message%s toward single socket}\n"); 199ade9ccfeSMarcel Moolenaar p(in_msgtarget[KEY_SENDUP_ALL], "\t{:received-all-sockets/%ju} " 200ade9ccfeSMarcel Moolenaar "{N:/message%s toward all sockets}\n"); 201100b98dbSKelly Yancey p(in_msgtarget[KEY_SENDUP_REGISTERED], 202ade9ccfeSMarcel Moolenaar "\t{:received-registered-sockets/%ju} " 203ade9ccfeSMarcel Moolenaar "{N:/message%s toward registered sockets}\n"); 204ade9ccfeSMarcel Moolenaar p(in_nomem, "\t{:discarded-no-memory/%ju} " 205ade9ccfeSMarcel Moolenaar "{N:/message%s with memory allocation failure}\n"); 206100b98dbSKelly Yancey #undef p 207ade9ccfeSMarcel Moolenaar xo_close_container(name); 208100b98dbSKelly Yancey } 209100b98dbSKelly Yancey #endif /* IPSEC */ 210