Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
/* $NetBSD: uipc_domain.c,v 1.44 2003/12/04 19:38:24 atatat Exp $ */
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-05-13 10:01:27 +04:00
|
|
|
* Copyright (c) 1982, 1986, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 20:26:28 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS 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.
|
|
|
|
*
|
1998-03-01 05:20:01 +03:00
|
|
|
* @(#)uipc_domain.c 8.3 (Berkeley) 2/14/95
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
2001-11-12 18:25:01 +03:00
|
|
|
#include <sys/cdefs.h>
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: uipc_domain.c,v 1.44 2003/12/04 19:38:24 atatat Exp $");
|
2001-11-12 18:25:01 +03:00
|
|
|
|
1998-07-05 04:51:04 +04:00
|
|
|
#include "opt_inet.h"
|
1999-07-10 02:57:15 +04:00
|
|
|
#include "opt_ipsec.h"
|
1998-07-05 04:51:04 +04:00
|
|
|
#include "opt_atalk.h"
|
1998-07-05 06:12:22 +04:00
|
|
|
#include "opt_ccitt.h"
|
1998-07-05 08:37:35 +04:00
|
|
|
#include "opt_iso.h"
|
1998-07-05 10:49:00 +04:00
|
|
|
#include "opt_ns.h"
|
2003-06-23 15:00:59 +04:00
|
|
|
#include "opt_mbuftrace.h"
|
1998-07-06 02:48:05 +04:00
|
|
|
#include "opt_natm.h"
|
1999-08-05 08:04:28 +04:00
|
|
|
#include "arp.h"
|
1998-07-05 04:51:04 +04:00
|
|
|
|
1993-12-18 07:21:37 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/protosw.h>
|
|
|
|
#include <sys/domain.h>
|
|
|
|
#include <sys/mbuf.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/kernel.h>
|
1994-05-13 10:01:27 +04:00
|
|
|
#include <sys/systm.h>
|
2000-03-23 09:30:07 +03:00
|
|
|
#include <sys/callout.h>
|
1994-05-07 04:46:28 +04:00
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/sysctl.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-05-13 10:01:27 +04:00
|
|
|
void pffasttimo __P((void *));
|
|
|
|
void pfslowtimo __P((void *));
|
|
|
|
|
2002-05-13 00:36:58 +04:00
|
|
|
struct domain *domains;
|
|
|
|
|
2000-03-23 09:30:07 +03:00
|
|
|
struct callout pffasttimo_ch, pfslowtimo_ch;
|
|
|
|
|
1998-05-06 05:11:46 +04:00
|
|
|
/*
|
|
|
|
* Current time values for fast and slow timeouts. We can use u_int
|
|
|
|
* relatively safely. The fast timer will roll over in 27 years and
|
|
|
|
* the slow timer in 68 years.
|
|
|
|
*/
|
|
|
|
u_int pfslowtimo_now;
|
|
|
|
u_int pffasttimo_now;
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#define ADDDOMAIN(x) { \
|
|
|
|
extern struct domain __CONCAT(x,domain); \
|
|
|
|
__CONCAT(x,domain.dom_next) = domains; \
|
|
|
|
domains = &__CONCAT(x,domain); \
|
|
|
|
}
|
|
|
|
|
1993-06-27 10:01:27 +04:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
domaininit()
|
|
|
|
{
|
2000-03-30 13:27:11 +04:00
|
|
|
struct domain *dp;
|
|
|
|
struct protosw *pr;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
#undef unix
|
1999-07-01 12:12:45 +04:00
|
|
|
/*
|
|
|
|
* KAME NOTE: ADDDOMAIN(route) is moved to the last part so that
|
|
|
|
* it will be initialized as the *first* element. confusing!
|
|
|
|
*/
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifndef lint
|
|
|
|
ADDDOMAIN(unix);
|
|
|
|
#ifdef INET
|
|
|
|
ADDDOMAIN(inet);
|
|
|
|
#endif
|
1999-07-01 12:12:45 +04:00
|
|
|
#ifdef INET6
|
|
|
|
ADDDOMAIN(inet6);
|
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifdef NS
|
|
|
|
ADDDOMAIN(ns);
|
|
|
|
#endif
|
|
|
|
#ifdef ISO
|
|
|
|
ADDDOMAIN(iso);
|
|
|
|
#endif
|
|
|
|
#ifdef CCITT
|
|
|
|
ADDDOMAIN(ccitt);
|
|
|
|
#endif
|
1996-07-04 07:16:56 +04:00
|
|
|
#ifdef NATM
|
|
|
|
ADDDOMAIN(natm);
|
|
|
|
#endif
|
1997-04-04 18:22:21 +04:00
|
|
|
#ifdef NETATALK
|
|
|
|
ADDDOMAIN(atalk);
|
|
|
|
#endif
|
2003-08-07 00:34:35 +04:00
|
|
|
#if defined(IPSEC) || defined(FAST_IPSEC)
|
1999-07-01 12:12:45 +04:00
|
|
|
ADDDOMAIN(key);
|
1999-08-05 08:04:28 +04:00
|
|
|
#endif
|
2000-10-02 08:27:21 +04:00
|
|
|
#ifdef INET
|
1999-08-05 08:04:28 +04:00
|
|
|
#if NARP > 0
|
|
|
|
ADDDOMAIN(arp);
|
2000-10-02 08:27:21 +04:00
|
|
|
#endif
|
1999-07-01 12:12:45 +04:00
|
|
|
#endif
|
|
|
|
ADDDOMAIN(route);
|
1999-01-14 04:14:01 +03:00
|
|
|
#endif /* ! lint */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
for (dp = domains; dp; dp = dp->dom_next) {
|
|
|
|
if (dp->dom_init)
|
|
|
|
(*dp->dom_init)();
|
2003-02-26 09:31:08 +03:00
|
|
|
#ifdef MBUFTRACE
|
|
|
|
if (dp->dom_mowner.mo_name[0] == '\0') {
|
|
|
|
strncpy(dp->dom_mowner.mo_name, dp->dom_name,
|
|
|
|
sizeof(dp->dom_mowner.mo_name));
|
|
|
|
MOWNER_ATTACH(&dp->dom_mowner);
|
|
|
|
}
|
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
for (pr = dp->dom_protosw; pr < dp->dom_protoswNPROTOSW; pr++)
|
|
|
|
if (pr->pr_init)
|
|
|
|
(*pr->pr_init)();
|
|
|
|
}
|
|
|
|
|
1996-08-14 09:43:35 +04:00
|
|
|
if (max_linkhdr < 16) /* XXX */
|
|
|
|
max_linkhdr = 16;
|
1993-03-21 12:45:37 +03:00
|
|
|
max_hdr = max_linkhdr + max_protohdr;
|
|
|
|
max_datalen = MHLEN - max_hdr;
|
2000-03-23 09:30:07 +03:00
|
|
|
|
|
|
|
callout_init(&pffasttimo_ch);
|
|
|
|
callout_init(&pfslowtimo_ch);
|
|
|
|
|
|
|
|
callout_reset(&pffasttimo_ch, 1, pffasttimo, NULL);
|
|
|
|
callout_reset(&pfslowtimo_ch, 1, pfslowtimo, NULL);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2000-02-06 05:54:15 +03:00
|
|
|
struct domain *
|
|
|
|
pffinddomain(family)
|
|
|
|
int family;
|
|
|
|
{
|
|
|
|
struct domain *dp;
|
|
|
|
|
|
|
|
for (dp = domains; dp != NULL; dp = dp->dom_next)
|
|
|
|
if (dp->dom_family == family)
|
|
|
|
return (dp);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
struct protosw *
|
|
|
|
pffindtype(family, type)
|
|
|
|
int family, type;
|
|
|
|
{
|
2000-02-06 05:54:15 +03:00
|
|
|
struct domain *dp;
|
|
|
|
struct protosw *pr;
|
|
|
|
|
|
|
|
dp = pffinddomain(family);
|
|
|
|
if (dp == NULL)
|
|
|
|
return (NULL);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
for (pr = dp->dom_protosw; pr < dp->dom_protoswNPROTOSW; pr++)
|
|
|
|
if (pr->pr_type && pr->pr_type == type)
|
|
|
|
return (pr);
|
2000-02-06 05:54:15 +03:00
|
|
|
|
|
|
|
return (NULL);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
struct protosw *
|
|
|
|
pffindproto(family, protocol, type)
|
|
|
|
int family, protocol, type;
|
|
|
|
{
|
2000-02-06 05:54:15 +03:00
|
|
|
struct domain *dp;
|
|
|
|
struct protosw *pr;
|
|
|
|
struct protosw *maybe = NULL;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
if (family == 0)
|
2000-02-06 05:54:15 +03:00
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
dp = pffinddomain(family);
|
|
|
|
if (dp == NULL)
|
|
|
|
return (NULL);
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
for (pr = dp->dom_protosw; pr < dp->dom_protoswNPROTOSW; pr++) {
|
|
|
|
if ((pr->pr_protocol == protocol) && (pr->pr_type == type))
|
|
|
|
return (pr);
|
|
|
|
|
|
|
|
if (type == SOCK_RAW && pr->pr_type == SOCK_RAW &&
|
2000-02-06 05:54:15 +03:00
|
|
|
pr->pr_protocol == 0 && maybe == NULL)
|
1993-03-21 12:45:37 +03:00
|
|
|
maybe = pr;
|
|
|
|
}
|
|
|
|
return (maybe);
|
|
|
|
}
|
|
|
|
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
SYSCTL_SETUP(sysctl_net_setup, "sysctl net subtree setup")
|
1994-05-07 04:46:28 +04:00
|
|
|
{
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
sysctl_createv(SYSCTL_PERMANENT,
|
|
|
|
CTLTYPE_NODE, "net", NULL,
|
|
|
|
NULL, 0, NULL, 0,
|
|
|
|
CTL_NET, CTL_EOL);
|
|
|
|
|
|
|
|
sysctl_createv(SYSCTL_PERMANENT,
|
|
|
|
CTLTYPE_NODE, "local", NULL,
|
|
|
|
NULL, 0, NULL, 0,
|
|
|
|
CTL_NET, PF_LOCAL, CTL_EOL);
|
1994-05-07 04:46:28 +04:00
|
|
|
|
|
|
|
/*
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
* other protocols are expected to have their own setup
|
|
|
|
* routines that will do everything. we end up not having
|
|
|
|
* anything at all to do.
|
1994-05-07 04:46:28 +04:00
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
1993-06-27 10:01:27 +04:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
pfctlinput(cmd, sa)
|
|
|
|
int cmd;
|
|
|
|
struct sockaddr *sa;
|
|
|
|
{
|
2000-03-30 13:27:11 +04:00
|
|
|
struct domain *dp;
|
|
|
|
struct protosw *pr;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
for (dp = domains; dp; dp = dp->dom_next)
|
|
|
|
for (pr = dp->dom_protosw; pr < dp->dom_protoswNPROTOSW; pr++)
|
|
|
|
if (pr->pr_ctlinput)
|
1996-02-04 05:17:43 +03:00
|
|
|
(*pr->pr_ctlinput)(cmd, sa, NULL);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2001-02-11 09:38:45 +03:00
|
|
|
void
|
|
|
|
pfctlinput2(cmd, sa, ctlparam)
|
|
|
|
int cmd;
|
|
|
|
struct sockaddr *sa;
|
|
|
|
void *ctlparam;
|
|
|
|
{
|
|
|
|
struct domain *dp;
|
|
|
|
struct protosw *pr;
|
|
|
|
|
|
|
|
if (!sa)
|
|
|
|
return;
|
|
|
|
for (dp = domains; dp; dp = dp->dom_next) {
|
|
|
|
/*
|
|
|
|
* the check must be made by xx_ctlinput() anyways, to
|
|
|
|
* make sure we use data item pointed to by ctlparam in
|
|
|
|
* correct way. the following check is made just for safety.
|
|
|
|
*/
|
|
|
|
if (dp->dom_family != sa->sa_family)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (pr = dp->dom_protosw; pr < dp->dom_protoswNPROTOSW; pr++)
|
|
|
|
if (pr->pr_ctlinput)
|
|
|
|
(*pr->pr_ctlinput)(cmd, sa, ctlparam);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1993-06-27 10:01:27 +04:00
|
|
|
void
|
1994-01-15 01:20:25 +03:00
|
|
|
pfslowtimo(arg)
|
1994-05-05 09:35:42 +04:00
|
|
|
void *arg;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2000-03-30 13:27:11 +04:00
|
|
|
struct domain *dp;
|
|
|
|
struct protosw *pr;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1998-05-06 05:11:46 +04:00
|
|
|
pfslowtimo_now++;
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
for (dp = domains; dp; dp = dp->dom_next)
|
|
|
|
for (pr = dp->dom_protosw; pr < dp->dom_protoswNPROTOSW; pr++)
|
|
|
|
if (pr->pr_slowtimo)
|
|
|
|
(*pr->pr_slowtimo)();
|
2000-03-23 09:30:07 +03:00
|
|
|
callout_reset(&pfslowtimo_ch, hz / 2, pfslowtimo, NULL);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1993-06-27 10:01:27 +04:00
|
|
|
void
|
1994-01-15 01:20:25 +03:00
|
|
|
pffasttimo(arg)
|
1994-05-05 09:35:42 +04:00
|
|
|
void *arg;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2000-03-30 13:27:11 +04:00
|
|
|
struct domain *dp;
|
|
|
|
struct protosw *pr;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1998-05-06 05:11:46 +04:00
|
|
|
pffasttimo_now++;
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
for (dp = domains; dp; dp = dp->dom_next)
|
|
|
|
for (pr = dp->dom_protosw; pr < dp->dom_protoswNPROTOSW; pr++)
|
|
|
|
if (pr->pr_fasttimo)
|
|
|
|
(*pr->pr_fasttimo)();
|
2000-03-23 09:30:07 +03:00
|
|
|
callout_reset(&pffasttimo_ch, hz / 5, pffasttimo, NULL);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|