atkbdc - Do not attach PS2 controller via legacy ISA bus, if FADT says so.
[dragonfly.git] / sys / net / if_mib.c
blob6a72ba2b7b40b9dc25b8b280d844e3e05940e4e7
1 /*
2 * Copyright 1996 Massachusetts Institute of Technology
4 * Permission to use, copy, modify, and distribute this software and
5 * its documentation for any purpose and without fee is hereby
6 * granted, provided that both the above copyright notice and this
7 * permission notice appear in all copies, that both the above
8 * copyright notice and this permission notice appear in all
9 * supporting documentation, and that the name of M.I.T. not be used
10 * in advertising or publicity pertaining to distribution of the
11 * software without specific, written prior permission. M.I.T. makes
12 * no representations about the suitability of this software for any
13 * purpose. It is provided "as is" without express or implied
14 * warranty.
16 * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''. M.I.T. DISCLAIMS
17 * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,
18 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT
20 * SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
26 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
29 * $FreeBSD: src/sys/net/if_mib.c,v 1.8.2.1 2000/08/03 00:09:34 ps Exp $
30 * $DragonFly: src/sys/net/if_mib.c,v 1.7 2005/06/15 19:29:30 joerg Exp $
33 #include <sys/param.h>
34 #include <sys/systm.h>
35 #include <sys/kernel.h>
36 #include <sys/socket.h>
37 #include <sys/sysctl.h>
39 #include <net/if.h>
40 #include <net/if_mib.h>
43 * A sysctl(3) MIB for generic interface information. This information
44 * is exported in the net.link.generic branch, which has the following
45 * structure:
47 * net.link.generic .system - system-wide control variables
48 * and statistics (node)
49 * .ifdata.<ifindex>.general
50 * - what's in `struct ifdata'
51 * plus some other info
52 * .ifdata.<ifindex>.linkspecific
53 * - a link-type-specific data
54 * structure (as might be used
55 * by an SNMP agent
57 * Perhaps someday we will make addresses accessible via this interface
58 * as well (then there will be four such...). The reason that the
59 * index comes before the last element in the name is because it
60 * seems more orthogonal that way, particularly with the possibility
61 * of other per-interface data living down here as well (e.g., integrated
62 * services stuff).
65 SYSCTL_DECL(_net_link_generic);
66 SYSCTL_NODE(_net_link_generic, IFMIB_SYSTEM, system, CTLFLAG_RW, 0,
67 "Variables global to all interfaces");
68 SYSCTL_INT(_net_link_generic_system, IFMIB_IFCOUNT, ifcount, CTLFLAG_RD,
69 &if_index, 0, "Number of configured interfaces");
71 static int
72 sysctl_ifdata(SYSCTL_HANDLER_ARGS) /* XXX bad syntax! */
74 int *name = (int *)arg1;
75 int error;
76 u_int namelen = arg2;
77 struct ifnet *ifp;
78 struct ifmibdata ifmd;
80 if (namelen != 2)
81 return EINVAL;
84 * Hold the ifnet lock while we are accessing the ifp
85 * obtained through ifindex2ifnet.
87 ifnet_lock();
89 if (name[0] <= 0 || name[0] > if_index ||
90 ifindex2ifnet[name[0]] == NULL) {
91 ifnet_unlock();
92 return ENOENT;
95 ifp = ifindex2ifnet[name[0]];
97 switch(name[1]) {
98 default:
99 ifnet_unlock();
100 return ENOENT;
102 case IFDATA_GENERAL:
103 bzero(&ifmd, sizeof(ifmd));
104 strlcpy(ifmd.ifmd_name, ifp->if_xname, sizeof(ifmd.ifmd_name));
106 #define COPY(fld) ifmd.ifmd_##fld = ifp->if_##fld
107 COPY(pcount);
108 COPY(flags);
109 COPY(data);
110 #undef COPY
111 #define COPY_DATA(name) IFNET_STAT_GET(ifp, name, ifmd.ifmd_data.ifi_##name)
112 COPY_DATA(ipackets);
113 COPY_DATA(ierrors);
114 COPY_DATA(opackets);
115 COPY_DATA(oerrors);
116 COPY_DATA(collisions);
117 COPY_DATA(ibytes);
118 COPY_DATA(obytes);
119 COPY_DATA(imcasts);
120 COPY_DATA(omcasts);
121 COPY_DATA(iqdrops);
122 COPY_DATA(noproto);
123 COPY_DATA(oqdrops);
124 #undef COPY_DATA
126 ifmd.ifmd_snd_maxlen = ifp->if_snd.altq_maxlen;
127 #ifdef notyet
128 ifmd.ifmd_snd_len = ifp->if_snd.ifq_len;
129 ifmd.ifmd_snd_drops = ifp->if_snd.ifq_drops;
130 #endif
132 error = SYSCTL_OUT(req, &ifmd, sizeof ifmd);
133 if (error || !req->newptr) {
134 ifnet_unlock();
135 return error;
138 error = SYSCTL_IN(req, &ifmd, sizeof ifmd);
139 if (error) {
140 ifnet_unlock();
141 return error;
144 #define DONTCOPY(fld) ifmd.ifmd_data.ifi_##fld = ifp->if_data.ifi_##fld
145 DONTCOPY(type);
146 DONTCOPY(physical);
147 DONTCOPY(addrlen);
148 DONTCOPY(hdrlen);
149 DONTCOPY(mtu);
150 DONTCOPY(metric);
151 DONTCOPY(baudrate);
152 #undef DONTCOPY
153 #define COPY(fld) ifp->if_##fld = ifmd.ifmd_##fld
154 COPY(data);
155 #undef COPY
156 #define COPY_DATA(name) IFNET_STAT_SET(ifp, name, ifmd.ifmd_data.ifi_##name)
157 COPY_DATA(ipackets);
158 COPY_DATA(ierrors);
159 COPY_DATA(opackets);
160 COPY_DATA(oerrors);
161 COPY_DATA(collisions);
162 COPY_DATA(ibytes);
163 COPY_DATA(obytes);
164 COPY_DATA(imcasts);
165 COPY_DATA(omcasts);
166 COPY_DATA(iqdrops);
167 COPY_DATA(noproto);
168 COPY_DATA(oqdrops);
169 #undef COPY_DATA
171 #ifdef notyet
172 ifp->if_snd.ifq_maxlen = ifmd.ifmd_snd_maxlen;
173 ifp->if_snd.ifq_drops = ifmd.ifmd_snd_drops;
174 #endif
175 break;
177 case IFDATA_LINKSPECIFIC:
178 error = SYSCTL_OUT(req, ifp->if_linkmib, ifp->if_linkmiblen);
179 if (error || !req->newptr) {
180 ifnet_unlock();
181 return error;
184 error = SYSCTL_IN(req, ifp->if_linkmib, ifp->if_linkmiblen);
185 if (error) {
186 ifnet_unlock();
187 return error;
191 ifnet_unlock();
192 return 0;
195 SYSCTL_NODE(_net_link_generic, IFMIB_IFDATA, ifdata, CTLFLAG_RW,
196 sysctl_ifdata, "Interface table");