]>
Commit | Line | Data |
---|---|---|
1c79356b | 1 | /* |
f427ee49 | 2 | * Copyright (c) 2000-2020 Apple Inc. All rights reserved. |
5d5c5d0d | 3 | * |
2d21ac55 | 4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ |
0a7de745 | 5 | * |
2d21ac55 A |
6 | * This file contains Original Code and/or Modifications of Original Code |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. The rights granted to you under the License | |
10 | * may not be used to create, or enable the creation or redistribution of, | |
11 | * unlawful or unlicensed copies of an Apple operating system, or to | |
12 | * circumvent, violate, or enable the circumvention or violation of, any | |
13 | * terms of an Apple operating system software license agreement. | |
0a7de745 | 14 | * |
2d21ac55 A |
15 | * Please obtain a copy of the License at |
16 | * http://www.opensource.apple.com/apsl/ and read it before using this file. | |
0a7de745 | 17 | * |
2d21ac55 A |
18 | * The Original Code and all software distributed under the License are |
19 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
8f6c56a5 A |
20 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
21 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
2d21ac55 A |
22 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. |
23 | * Please see the License for the specific language governing rights and | |
24 | * limitations under the License. | |
0a7de745 | 25 | * |
2d21ac55 | 26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ |
1c79356b A |
27 | */ |
28 | /* | |
29 | * Copyright 1996 Massachusetts Institute of Technology | |
30 | * | |
31 | * Permission to use, copy, modify, and distribute this software and | |
32 | * its documentation for any purpose and without fee is hereby | |
33 | * granted, provided that both the above copyright notice and this | |
34 | * permission notice appear in all copies, that both the above | |
35 | * copyright notice and this permission notice appear in all | |
36 | * supporting documentation, and that the name of M.I.T. not be used | |
37 | * in advertising or publicity pertaining to distribution of the | |
38 | * software without specific, written prior permission. M.I.T. makes | |
39 | * no representations about the suitability of this software for any | |
40 | * purpose. It is provided "as is" without express or implied | |
41 | * warranty. | |
0a7de745 | 42 | * |
1c79356b A |
43 | * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''. M.I.T. DISCLAIMS |
44 | * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE, | |
45 | * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | |
46 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT | |
47 | * SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
48 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
49 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF | |
50 | * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | |
51 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | |
52 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT | |
53 | * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
54 | * SUCH DAMAGE. | |
55 | * | |
9bccf70c | 56 | * $FreeBSD: src/sys/net/if_mib.c,v 1.8.2.1 2000/08/03 00:09:34 ps Exp $ |
1c79356b A |
57 | */ |
58 | ||
59 | #include <sys/param.h> | |
60 | #include <sys/systm.h> | |
61 | #include <sys/kernel.h> | |
62 | #include <sys/socket.h> | |
63 | #include <sys/sysctl.h> | |
91447636 | 64 | #include <sys/systm.h> |
1c79356b A |
65 | |
66 | #include <net/if.h> | |
67 | #include <net/if_mib.h> | |
d41d1dae | 68 | #include <net/if_var.h> |
1c79356b | 69 | |
1c79356b A |
70 | /* |
71 | * A sysctl(3) MIB for generic interface information. This information | |
72 | * is exported in the net.link.generic branch, which has the following | |
73 | * structure: | |
74 | * | |
75 | * net.link.generic .system - system-wide control variables | |
76 | * and statistics (node) | |
77 | * .ifdata.<ifindex>.general | |
78 | * - what's in `struct ifdata' | |
79 | * plus some other info | |
80 | * .ifdata.<ifindex>.linkspecific | |
81 | * - a link-type-specific data | |
82 | * structure (as might be used | |
83 | * by an SNMP agent | |
84 | * | |
85 | * Perhaps someday we will make addresses accessible via this interface | |
86 | * as well (then there will be four such...). The reason that the | |
87 | * index comes before the last element in the name is because it | |
88 | * seems more orthogonal that way, particularly with the possibility | |
89 | * of other per-interface data living down here as well (e.g., integrated | |
90 | * services stuff). | |
91 | */ | |
92 | ||
93 | SYSCTL_DECL(_net_link_generic); | |
91447636 | 94 | |
0a7de745 A |
95 | SYSCTL_NODE(_net_link_generic, IFMIB_SYSTEM, system, CTLFLAG_RD | CTLFLAG_LOCKED, 0, |
96 | "Variables global to all interfaces"); | |
91447636 | 97 | |
6d2010ae | 98 | SYSCTL_INT(_net_link_generic_system, IFMIB_IFCOUNT, ifcount, CTLFLAG_RD | CTLFLAG_LOCKED, |
0a7de745 | 99 | &if_index, 0, "Number of configured interfaces"); |
1c79356b | 100 | |
91447636 | 101 | static int sysctl_ifdata SYSCTL_HANDLER_ARGS; |
6d2010ae | 102 | SYSCTL_NODE(_net_link_generic, IFMIB_IFDATA, ifdata, CTLFLAG_RD | CTLFLAG_LOCKED, |
0a7de745 | 103 | sysctl_ifdata, "Interface table"); |
1c79356b | 104 | |
91447636 | 105 | static int sysctl_ifalldata SYSCTL_HANDLER_ARGS; |
6d2010ae | 106 | SYSCTL_NODE(_net_link_generic, IFMIB_IFALLDATA, ifalldata, CTLFLAG_RD | CTLFLAG_LOCKED, |
0a7de745 | 107 | sysctl_ifalldata, "Interface table"); |
1c79356b | 108 | |
91447636 | 109 | static int make_ifmibdata(struct ifnet *, int *, struct sysctl_req *); |
1c79356b | 110 | |
316670eb | 111 | int |
91447636 A |
112 | make_ifmibdata(struct ifnet *ifp, int *name, struct sysctl_req *req) |
113 | { | |
0a7de745 | 114 | struct ifmibdata ifmd; |
91447636 | 115 | int error = 0; |
316670eb | 116 | |
0a7de745 | 117 | switch (name[1]) { |
1c79356b | 118 | default: |
91447636 A |
119 | error = ENOENT; |
120 | break; | |
1c79356b A |
121 | |
122 | case IFDATA_GENERAL: | |
3a60a9f5 | 123 | bzero(&ifmd, sizeof(ifmd)); |
d1ecb069 A |
124 | /* |
125 | * Make sure the interface is in use | |
126 | */ | |
6d2010ae | 127 | if (ifnet_is_attached(ifp, 0)) { |
39236c6e | 128 | snprintf(ifmd.ifmd_name, sizeof(ifmd.ifmd_name), "%s", |
0a7de745 | 129 | if_name(ifp)); |
316670eb | 130 | |
1c79356b | 131 | #define COPY(fld) ifmd.ifmd_##fld = ifp->if_##fld |
d1ecb069 A |
132 | COPY(pcount); |
133 | COPY(flags); | |
134 | if_data_internal_to_if_data64(ifp, &ifp->if_data, &ifmd.ifmd_data); | |
1c79356b | 135 | #undef COPY |
316670eb A |
136 | ifmd.ifmd_snd_len = IFCQ_LEN(&ifp->if_snd); |
137 | ifmd.ifmd_snd_maxlen = IFCQ_MAXLEN(&ifp->if_snd); | |
f427ee49 | 138 | ifmd.ifmd_snd_drops = (unsigned int)ifp->if_snd.ifcq_dropcnt.packets; |
d1ecb069 | 139 | } |
1c79356b | 140 | error = SYSCTL_OUT(req, &ifmd, sizeof ifmd); |
0a7de745 | 141 | if (error || !req->newptr) { |
91447636 | 142 | break; |
0a7de745 | 143 | } |
1c79356b | 144 | |
91447636 | 145 | #ifdef IF_MIB_WR |
1c79356b | 146 | error = SYSCTL_IN(req, &ifmd, sizeof ifmd); |
0a7de745 | 147 | if (error) { |
91447636 | 148 | break; |
0a7de745 | 149 | } |
1c79356b A |
150 | |
151 | #define DONTCOPY(fld) ifmd.ifmd_data.ifi_##fld = ifp->if_data.ifi_##fld | |
152 | DONTCOPY(type); | |
153 | DONTCOPY(physical); | |
154 | DONTCOPY(addrlen); | |
155 | DONTCOPY(hdrlen); | |
156 | DONTCOPY(mtu); | |
157 | DONTCOPY(metric); | |
158 | DONTCOPY(baudrate); | |
159 | #undef DONTCOPY | |
160 | #define COPY(fld) ifp->if_##fld = ifmd.ifmd_##fld | |
161 | COPY(data); | |
162 | ifp->if_snd.ifq_maxlen = ifmd.ifmd_snd_maxlen; | |
163 | ifp->if_snd.ifq_drops = ifmd.ifmd_snd_drops; | |
164 | #undef COPY | |
91447636 | 165 | #endif /* IF_MIB_WR */ |
1c79356b A |
166 | break; |
167 | ||
168 | case IFDATA_LINKSPECIFIC: | |
169 | error = SYSCTL_OUT(req, ifp->if_linkmib, ifp->if_linkmiblen); | |
0a7de745 | 170 | if (error || !req->newptr) { |
91447636 | 171 | break; |
0a7de745 | 172 | } |
1c79356b | 173 | |
91447636 | 174 | #ifdef IF_MIB_WR |
1c79356b | 175 | error = SYSCTL_IN(req, ifp->if_linkmib, ifp->if_linkmiblen); |
0a7de745 | 176 | if (error) { |
91447636 | 177 | break; |
0a7de745 | 178 | } |
91447636 A |
179 | #endif /* IF_MIB_WR */ |
180 | break; | |
d41d1dae | 181 | |
6d2010ae | 182 | case IFDATA_SUPPLEMENTAL: { |
316670eb A |
183 | struct ifmibdata_supplemental *ifmd_supp; |
184 | ||
0a7de745 | 185 | if ((ifmd_supp = _MALLOC(sizeof(*ifmd_supp), M_TEMP, |
316670eb A |
186 | M_NOWAIT | M_ZERO)) == NULL) { |
187 | error = ENOMEM; | |
188 | break; | |
189 | } | |
6d2010ae | 190 | |
316670eb A |
191 | if_copy_traffic_class(ifp, &ifmd_supp->ifmd_traffic_class); |
192 | if_copy_data_extended(ifp, &ifmd_supp->ifmd_data_extended); | |
193 | if_copy_packet_stats(ifp, &ifmd_supp->ifmd_packet_stats); | |
194 | if_copy_rxpoll_stats(ifp, &ifmd_supp->ifmd_rxpoll_stats); | |
cb323159 | 195 | if_copy_netif_stats(ifp, &ifmd_supp->ifmd_netif_stats); |
316670eb | 196 | |
0a7de745 A |
197 | if (req->oldptr == USER_ADDR_NULL) { |
198 | req->oldlen = sizeof(*ifmd_supp); | |
199 | } | |
39236c6e | 200 | |
0a7de745 | 201 | error = SYSCTL_OUT(req, ifmd_supp, MIN(sizeof(*ifmd_supp), |
39236c6e A |
202 | req->oldlen)); |
203 | ||
316670eb | 204 | _FREE(ifmd_supp, M_TEMP); |
d41d1dae | 205 | break; |
6d2010ae | 206 | } |
1c79356b | 207 | } |
316670eb | 208 | |
91447636 A |
209 | return error; |
210 | } | |
211 | ||
212 | int | |
213 | sysctl_ifdata SYSCTL_HANDLER_ARGS /* XXX bad syntax! */ | |
214 | { | |
d1ecb069 | 215 | #pragma unused(oidp) |
91447636 A |
216 | int *name = (int *)arg1; |
217 | int error = 0; | |
218 | u_int namelen = arg2; | |
219 | struct ifnet *ifp; | |
220 | ||
0a7de745 A |
221 | if (namelen != 2) { |
222 | return EINVAL; | |
223 | } | |
6d2010ae | 224 | |
b0d623f7 | 225 | ifnet_head_lock_shared(); |
91447636 | 226 | if (name[0] <= 0 || name[0] > if_index || |
6d2010ae | 227 | (ifp = ifindex2ifnet[name[0]]) == NULL) { |
b0d623f7 | 228 | ifnet_head_done(); |
0a7de745 | 229 | return ENOENT; |
b0d623f7 | 230 | } |
6d2010ae | 231 | ifnet_reference(ifp); |
b0d623f7 | 232 | ifnet_head_done(); |
91447636 A |
233 | |
234 | ifnet_lock_shared(ifp); | |
91447636 | 235 | error = make_ifmibdata(ifp, name, req); |
91447636 | 236 | ifnet_lock_done(ifp); |
6d2010ae A |
237 | |
238 | ifnet_release(ifp); | |
239 | ||
0a7de745 | 240 | return error; |
1c79356b A |
241 | } |
242 | ||
91447636 A |
243 | int |
244 | sysctl_ifalldata SYSCTL_HANDLER_ARGS /* XXX bad syntax! */ | |
245 | { | |
d1ecb069 | 246 | #pragma unused(oidp) |
91447636 A |
247 | int *name = (int *)arg1; |
248 | int error = 0; | |
249 | u_int namelen = arg2; | |
250 | struct ifnet *ifp; | |
251 | ||
0a7de745 A |
252 | if (namelen != 2) { |
253 | return EINVAL; | |
254 | } | |
91447636 A |
255 | |
256 | ifnet_head_lock_shared(); | |
257 | TAILQ_FOREACH(ifp, &ifnet_head, if_link) { | |
258 | ifnet_lock_shared(ifp); | |
6d2010ae | 259 | |
91447636 | 260 | error = make_ifmibdata(ifp, name, req); |
6d2010ae | 261 | |
91447636 | 262 | ifnet_lock_done(ifp); |
0a7de745 | 263 | if (error != 0) { |
91447636 | 264 | break; |
0a7de745 | 265 | } |
91447636 A |
266 | } |
267 | ifnet_head_done(); | |
268 | return error; | |
269 | } |