xref: /freebsd/usr.bin/netstat/common.c (revision 95968ea7ec8f1cd3c1d03cc56c704cb2392d0d25)
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1983, 1988, 1993
5  *	The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. Neither the name of the University nor the names of its contributors
16  *    may be used to endorse or promote products derived from this software
17  *    without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  */
31 
32 #include <sys/param.h>
33 #include <sys/protosw.h>
34 #include <sys/socket.h>
35 #include <sys/socketvar.h>
36 #include <sys/sysctl.h>
37 #include <sys/time.h>
38 
39 #include <net/if.h>
40 #include <net/if_dl.h>
41 #include <arpa/inet.h>
42 #include <ifaddrs.h>
43 #include <libutil.h>
44 #include <netdb.h>
45 #include <stdbool.h>
46 #include <stdint.h>
47 #include <stdio.h>
48 #include <stdlib.h>
49 #include <stdbool.h>
50 #include <string.h>
51 #include <sysexits.h>
52 #include <unistd.h>
53 #include <libxo/xo.h>
54 #include "netstat.h"
55 #include "common.h"
56 
57 const char *
fmt_flags(const struct bits * p,int f)58 fmt_flags(const struct bits *p, int f)
59 {
60 	static char name[33];
61 	char *flags;
62 
63 	for (flags = name; p->b_mask; p++)
64 		if (p->b_mask & f)
65 			*flags++ = p->b_val;
66 	*flags = '\0';
67 	return (name);
68 }
69 
70 void
print_flags_generic(int flags,const struct bits * pbits,const char * format,const char * tag_name)71 print_flags_generic(int flags, const struct bits *pbits, const char *format,
72     const char *tag_name)
73 {
74 	const struct bits *p;
75 	char tag_fmt[64];
76 
77 	xo_emit(format, fmt_flags(pbits, flags));
78 
79 	snprintf(tag_fmt, sizeof(tag_fmt), "{le:%s/%%s}", tag_name);
80 	xo_open_list(tag_name);
81 	for (p = pbits; p->b_mask; p++)
82 		if (p->b_mask & flags)
83 			xo_emit(tag_fmt, p->b_name);
84 	xo_close_list(tag_name);
85 }
86 
87 struct ifmap_entry *
prepare_ifmap(size_t * pifmap_size)88 prepare_ifmap(size_t *pifmap_size)
89 {
90 	int ifindex = 0, size;
91 	struct ifaddrs *ifap, *ifa;
92 	struct sockaddr_dl *sdl;
93 
94 	struct ifmap_entry *ifmap = NULL;
95 	int ifmap_size = 0;
96 
97 	/*
98 	 * Retrieve interface list at first
99 	 * since we need #ifindex -> if_xname match
100 	 */
101 	if (getifaddrs(&ifap) != 0)
102 		xo_err(EX_OSERR, "getifaddrs");
103 
104 	for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
105 
106 		if (ifa->ifa_addr->sa_family != AF_LINK)
107 			continue;
108 
109 		sdl = (struct sockaddr_dl *)ifa->ifa_addr;
110 		ifindex = sdl->sdl_index;
111 
112 		if (ifindex >= ifmap_size) {
113 			size = roundup2(ifindex + 1, 32) *
114 			    sizeof(struct ifmap_entry);
115 			if ((ifmap = realloc(ifmap, size)) == NULL)
116 				xo_errx(EX_OSERR, "realloc(%d) failed", size);
117 			memset(&ifmap[ifmap_size], 0,
118 			    size - ifmap_size *
119 			    sizeof(struct ifmap_entry));
120 
121 			ifmap_size = roundup2(ifindex + 1, 32);
122 		}
123 
124 		if (*ifmap[ifindex].ifname != '\0')
125 			continue;
126 
127 		strlcpy(ifmap[ifindex].ifname, ifa->ifa_name, IFNAMSIZ);
128 	}
129 
130 	freeifaddrs(ifap);
131 
132 	*pifmap_size = ifmap_size;
133 
134 	return (ifmap);
135 }
136 
137