2005-01-07 01:45:51 +00:00
|
|
|
/*-
|
1996-07-30 19:17:07 +00:00
|
|
|
* Copyright 1996 Massachusetts Institute of Technology
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software and
|
|
|
|
* its documentation for any purpose and without fee is hereby
|
|
|
|
* granted, provided that both the above copyright notice and this
|
|
|
|
* permission notice appear in all copies, that both the above
|
|
|
|
* copyright notice and this permission notice appear in all
|
|
|
|
* supporting documentation, and that the name of M.I.T. not be used
|
|
|
|
* in advertising or publicity pertaining to distribution of the
|
|
|
|
* software without specific, written prior permission. M.I.T. makes
|
|
|
|
* no representations about the suitability of this software for any
|
|
|
|
* purpose. It is provided "as is" without express or implied
|
|
|
|
* warranty.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''. M.I.T. DISCLAIMS
|
|
|
|
* ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT
|
|
|
|
* SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
|
|
|
|
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1999-08-28 01:08:13 +00:00
|
|
|
* $FreeBSD$
|
1996-07-30 19:17:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
1996-10-12 19:49:43 +00:00
|
|
|
#include <sys/socket.h>
|
1996-07-30 19:17:07 +00:00
|
|
|
#include <sys/sysctl.h>
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
#include <sys/vimage.h>
|
1996-07-30 19:17:07 +00:00
|
|
|
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <net/if_mib.h>
|
2008-12-02 21:37:28 +00:00
|
|
|
#include <net/vnet.h>
|
1996-07-30 19:17:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* A sysctl(3) MIB for generic interface information. This information
|
|
|
|
* is exported in the net.link.generic branch, which has the following
|
|
|
|
* structure:
|
|
|
|
*
|
|
|
|
* net.link.generic .system - system-wide control variables
|
|
|
|
* and statistics (node)
|
|
|
|
* .ifdata.<ifindex>.general
|
|
|
|
* - what's in `struct ifdata'
|
|
|
|
* plus some other info
|
|
|
|
* .ifdata.<ifindex>.linkspecific
|
|
|
|
* - a link-type-specific data
|
|
|
|
* structure (as might be used
|
|
|
|
* by an SNMP agent
|
|
|
|
*
|
|
|
|
* Perhaps someday we will make addresses accessible via this interface
|
|
|
|
* as well (then there will be four such...). The reason that the
|
|
|
|
* index comes before the last element in the name is because it
|
|
|
|
* seems more orthogonal that way, particularly with the possibility
|
|
|
|
* of other per-interface data living down here as well (e.g., integrated
|
|
|
|
* services stuff).
|
|
|
|
*/
|
|
|
|
|
1999-02-16 10:49:55 +00:00
|
|
|
SYSCTL_DECL(_net_link_generic);
|
1996-07-30 19:17:07 +00:00
|
|
|
SYSCTL_NODE(_net_link_generic, IFMIB_SYSTEM, system, CTLFLAG_RW, 0,
|
|
|
|
"Variables global to all interfaces");
|
Step 1.5 of importing the network stack virtualization infrastructure
from the vimage project, as per plan established at devsummit 08/08:
http://wiki.freebsd.org/Image/Notes200808DevSummit
Introduce INIT_VNET_*() initializer macros, VNET_FOREACH() iterator
macros, and CURVNET_SET() context setting macros, all currently
resolving to NOPs.
Prepare for virtualization of selected SYSCTL objects by introducing a
family of SYSCTL_V_*() macros, currently resolving to their global
counterparts, i.e. SYSCTL_V_INT() == SYSCTL_INT().
Move selected #defines from sys/sys/vimage.h to newly introduced header
files specific to virtualized subsystems (sys/net/vnet.h,
sys/netinet/vinet.h etc.).
All the changes are verified to have zero functional impact at this
point in time by doing MD5 comparision between pre- and post-change
object files(*).
(*) netipsec/keysock.c did not validate depending on compile time options.
Implemented by: julian, bz, brooks, zec
Reviewed by: julian, bz, brooks, kris, rwatson, ...
Approved by: julian (mentor)
Obtained from: //depot/projects/vimage-commit2/...
X-MFC after: never
Sponsored by: NLnet Foundation, The FreeBSD Foundation
2008-10-02 15:37:58 +00:00
|
|
|
|
|
|
|
SYSCTL_V_INT(V_NET, vnet_net, _net_link_generic_system, IFMIB_IFCOUNT,
|
|
|
|
ifcount, CTLFLAG_RD, if_index, 0,
|
|
|
|
"Number of configured interfaces");
|
1996-07-30 19:17:07 +00:00
|
|
|
|
|
|
|
static int
|
2000-07-04 11:25:35 +00:00
|
|
|
sysctl_ifdata(SYSCTL_HANDLER_ARGS) /* XXX bad syntax! */
|
1996-07-30 19:17:07 +00:00
|
|
|
{
|
Step 1.5 of importing the network stack virtualization infrastructure
from the vimage project, as per plan established at devsummit 08/08:
http://wiki.freebsd.org/Image/Notes200808DevSummit
Introduce INIT_VNET_*() initializer macros, VNET_FOREACH() iterator
macros, and CURVNET_SET() context setting macros, all currently
resolving to NOPs.
Prepare for virtualization of selected SYSCTL objects by introducing a
family of SYSCTL_V_*() macros, currently resolving to their global
counterparts, i.e. SYSCTL_V_INT() == SYSCTL_INT().
Move selected #defines from sys/sys/vimage.h to newly introduced header
files specific to virtualized subsystems (sys/net/vnet.h,
sys/netinet/vinet.h etc.).
All the changes are verified to have zero functional impact at this
point in time by doing MD5 comparision between pre- and post-change
object files(*).
(*) netipsec/keysock.c did not validate depending on compile time options.
Implemented by: julian, bz, brooks, zec
Reviewed by: julian, bz, brooks, kris, rwatson, ...
Approved by: julian (mentor)
Obtained from: //depot/projects/vimage-commit2/...
X-MFC after: never
Sponsored by: NLnet Foundation, The FreeBSD Foundation
2008-10-02 15:37:58 +00:00
|
|
|
INIT_VNET_NET(curvnet);
|
1996-07-30 19:17:07 +00:00
|
|
|
int *name = (int *)arg1;
|
2003-10-31 18:32:15 +00:00
|
|
|
int error;
|
1996-07-30 19:17:07 +00:00
|
|
|
u_int namelen = arg2;
|
|
|
|
struct ifnet *ifp;
|
|
|
|
struct ifmibdata ifmd;
|
2006-01-04 12:57:09 +00:00
|
|
|
size_t dlen;
|
|
|
|
char *dbuf;
|
1996-07-30 19:17:07 +00:00
|
|
|
|
|
|
|
if (namelen != 2)
|
|
|
|
return EINVAL;
|
|
|
|
|
Commit step 1 of the vimage project, (network stack)
virtualization work done by Marko Zec (zec@).
This is the first in a series of commits over the course
of the next few weeks.
Mark all uses of global variables to be virtualized
with a V_ prefix.
Use macros to map them back to their global names for
now, so this is a NOP change only.
We hope to have caught at least 85-90% of what is needed
so we do not invalidate a lot of outstanding patches again.
Obtained from: //depot/projects/vimage-commit2/...
Reviewed by: brooks, des, ed, mav, julian,
jamie, kris, rwatson, zec, ...
(various people I forgot, different versions)
md5 (with a bit of help)
Sponsored by: NLnet Foundation, The FreeBSD Foundation
X-MFC after: never
V_Commit_Message_Reviewed_By: more people than the patch
2008-08-17 23:27:27 +00:00
|
|
|
if (name[0] <= 0 || name[0] > V_if_index ||
|
2005-11-11 12:32:49 +00:00
|
|
|
ifnet_byindex(name[0]) == NULL)
|
1996-07-30 19:17:07 +00:00
|
|
|
return ENOENT;
|
|
|
|
|
2005-11-11 12:32:49 +00:00
|
|
|
ifp = ifnet_byindex(name[0]);
|
1996-07-30 19:17:07 +00:00
|
|
|
|
|
|
|
switch(name[1]) {
|
|
|
|
default:
|
|
|
|
return ENOENT;
|
|
|
|
|
|
|
|
case IFDATA_GENERAL:
|
2005-05-06 02:50:00 +00:00
|
|
|
bzero(&ifmd, sizeof(ifmd));
|
2003-10-31 18:32:15 +00:00
|
|
|
strlcpy(ifmd.ifmd_name, ifp->if_xname, sizeof(ifmd.ifmd_name));
|
1996-07-30 19:17:07 +00:00
|
|
|
|
|
|
|
#define COPY(fld) ifmd.ifmd_##fld = ifp->if_##fld
|
|
|
|
COPY(pcount);
|
|
|
|
COPY(data);
|
|
|
|
#undef COPY
|
2005-10-23 01:44:08 +00:00
|
|
|
ifmd.ifmd_flags = ifp->if_flags | ifp->if_drv_flags;
|
1996-07-30 19:17:07 +00:00
|
|
|
ifmd.ifmd_snd_len = ifp->if_snd.ifq_len;
|
|
|
|
ifmd.ifmd_snd_maxlen = ifp->if_snd.ifq_maxlen;
|
|
|
|
ifmd.ifmd_snd_drops = ifp->if_snd.ifq_drops;
|
|
|
|
|
|
|
|
error = SYSCTL_OUT(req, &ifmd, sizeof ifmd);
|
|
|
|
if (error || !req->newptr)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
error = SYSCTL_IN(req, &ifmd, sizeof ifmd);
|
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
#define DONTCOPY(fld) ifmd.ifmd_data.ifi_##fld = ifp->if_data.ifi_##fld
|
|
|
|
DONTCOPY(type);
|
|
|
|
DONTCOPY(physical);
|
|
|
|
DONTCOPY(addrlen);
|
|
|
|
DONTCOPY(hdrlen);
|
|
|
|
DONTCOPY(mtu);
|
|
|
|
DONTCOPY(metric);
|
|
|
|
DONTCOPY(baudrate);
|
|
|
|
#undef DONTCOPY
|
|
|
|
#define COPY(fld) ifp->if_##fld = ifmd.ifmd_##fld
|
|
|
|
COPY(data);
|
|
|
|
ifp->if_snd.ifq_maxlen = ifmd.ifmd_snd_maxlen;
|
|
|
|
ifp->if_snd.ifq_drops = ifmd.ifmd_snd_drops;
|
|
|
|
#undef COPY
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IFDATA_LINKSPECIFIC:
|
|
|
|
error = SYSCTL_OUT(req, ifp->if_linkmib, ifp->if_linkmiblen);
|
|
|
|
if (error || !req->newptr)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
error = SYSCTL_IN(req, ifp->if_linkmib, ifp->if_linkmiblen);
|
|
|
|
if (error)
|
|
|
|
return error;
|
2008-09-10 13:08:37 +00:00
|
|
|
break;
|
2006-01-04 12:57:09 +00:00
|
|
|
|
|
|
|
case IFDATA_DRIVERNAME:
|
|
|
|
/* 20 is enough for 64bit ints */
|
|
|
|
dlen = strlen(ifp->if_dname) + 20 + 1;
|
|
|
|
if ((dbuf = malloc(dlen, M_TEMP, M_NOWAIT)) == NULL)
|
|
|
|
return (ENOMEM);
|
|
|
|
if (ifp->if_dunit == IF_DUNIT_NONE)
|
|
|
|
strcpy(dbuf, ifp->if_dname);
|
|
|
|
else
|
|
|
|
sprintf(dbuf, "%s%d", ifp->if_dname, ifp->if_dunit);
|
|
|
|
|
|
|
|
error = SYSCTL_OUT(req, dbuf, strlen(dbuf) + 1);
|
|
|
|
if (error == 0 && req->newptr != NULL)
|
|
|
|
error = EPERM;
|
|
|
|
free(dbuf, M_TEMP);
|
|
|
|
return (error);
|
1996-07-30 19:17:07 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
SYSCTL_NODE(_net_link_generic, IFMIB_IFDATA, ifdata, CTLFLAG_RW,
|
|
|
|
sysctl_ifdata, "Interface table");
|
|
|
|
|