2004-09-05 03:29:44 +04:00
|
|
|
/* $NetBSD: in_proto.c,v 1.65 2004/09/04 23:30:07 manu Exp $ */
|
1999-07-01 12:12:45 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
|
|
|
|
* All rights reserved.
|
2002-06-09 20:33:36 +04:00
|
|
|
*
|
1999-07-01 12:12:45 +04: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.
|
|
|
|
* 3. Neither the name of the project nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
2002-06-09 20:33:36 +04:00
|
|
|
*
|
1999-07-01 12:12:45 +04:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE PROJECT 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 PROJECT 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.
|
|
|
|
*/
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-05-13 10:02:48 +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-01-05 13:31:44 +03:00
|
|
|
* @(#)in_proto.c 8.2 (Berkeley) 2/9/95
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
2001-11-13 03:32:34 +03:00
|
|
|
#include <sys/cdefs.h>
|
2004-09-05 03:29:44 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: in_proto.c,v 1.65 2004/09/04 23:30:07 manu Exp $");
|
2001-11-13 03:32:34 +03:00
|
|
|
|
1998-01-12 06:02:48 +03:00
|
|
|
#include "opt_mrouting.h"
|
1998-07-05 08:37:35 +04:00
|
|
|
#include "opt_eon.h" /* ISO CLNL over IP */
|
|
|
|
#include "opt_iso.h" /* ISO TP tunneled over IP */
|
1998-07-05 10:49:00 +04:00
|
|
|
#include "opt_ns.h" /* NSIP: XNS tunneled over IP */
|
1999-07-01 12:12:45 +04:00
|
|
|
#include "opt_inet.h"
|
1999-07-10 02:57:15 +04:00
|
|
|
#include "opt_ipsec.h"
|
2004-09-05 03:29:44 +04:00
|
|
|
#include "opt_pim.h"
|
1998-01-12 06:02:48 +03:00
|
|
|
|
1993-12-18 03:40:47 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/protosw.h>
|
|
|
|
#include <sys/domain.h>
|
|
|
|
#include <sys/mbuf.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-05-13 10:02:48 +04:00
|
|
|
#include <net/if.h>
|
|
|
|
#include <net/radix.h>
|
|
|
|
#include <net/route.h>
|
|
|
|
|
1993-12-18 03:40:47 +03:00
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/in_systm.h>
|
1994-05-13 10:02:48 +04:00
|
|
|
#include <netinet/ip.h>
|
|
|
|
#include <netinet/ip_var.h>
|
|
|
|
#include <netinet/ip_icmp.h>
|
|
|
|
#include <netinet/in_pcb.h>
|
1999-07-01 12:12:45 +04:00
|
|
|
|
|
|
|
#ifdef INET6
|
|
|
|
#ifndef INET
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#endif
|
|
|
|
#include <netinet/ip6.h>
|
|
|
|
#endif
|
|
|
|
|
1994-05-13 10:02:48 +04:00
|
|
|
#include <netinet/igmp_var.h>
|
2004-09-05 03:29:44 +04:00
|
|
|
#ifdef PIM
|
|
|
|
#include <netinet/pim_var.h>
|
|
|
|
#endif
|
1994-05-13 10:02:48 +04:00
|
|
|
#include <netinet/tcp.h>
|
|
|
|
#include <netinet/tcp_fsm.h>
|
|
|
|
#include <netinet/tcp_seq.h>
|
|
|
|
#include <netinet/tcp_timer.h>
|
|
|
|
#include <netinet/tcp_var.h>
|
|
|
|
#include <netinet/tcpip.h>
|
|
|
|
#include <netinet/tcp_debug.h>
|
|
|
|
#include <netinet/udp.h>
|
|
|
|
#include <netinet/udp_var.h>
|
2000-04-19 10:30:51 +04:00
|
|
|
#include <netinet/ip_encap.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* TCP/IP protocol family: IP, ICMP, UDP, TCP.
|
|
|
|
*/
|
|
|
|
|
1999-07-01 12:12:45 +04:00
|
|
|
#ifdef IPSEC
|
2002-11-02 22:03:44 +03:00
|
|
|
#include <netinet6/ipsec.h>
|
1999-07-01 12:12:45 +04:00
|
|
|
#include <netinet6/ah.h>
|
|
|
|
#ifdef IPSEC_ESP
|
|
|
|
#include <netinet6/esp.h>
|
|
|
|
#endif
|
|
|
|
#include <netinet6/ipcomp.h>
|
|
|
|
#endif /* IPSEC */
|
|
|
|
|
2003-08-15 07:42:00 +04:00
|
|
|
#ifdef FAST_IPSEC
|
|
|
|
#include <netipsec/ipsec.h>
|
|
|
|
#include <netipsec/key.h>
|
|
|
|
#endif /* FAST_IPSEC */
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifdef NSIP
|
1996-02-14 02:40:59 +03:00
|
|
|
#include <netns/ns_var.h>
|
|
|
|
#include <netns/idp_var.h>
|
1995-06-01 01:50:34 +04:00
|
|
|
#endif /* NSIP */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
#ifdef TPIP
|
1996-02-14 02:40:59 +03:00
|
|
|
#include <netiso/tp_param.h>
|
|
|
|
#include <netiso/tp_var.h>
|
1995-06-01 01:50:34 +04:00
|
|
|
#endif /* TPIP */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
#ifdef EON
|
1996-02-14 02:40:59 +03:00
|
|
|
#include <netiso/eonvar.h>
|
1994-05-13 10:02:48 +04:00
|
|
|
#endif /* EON */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1998-09-14 00:27:47 +04:00
|
|
|
#include "gre.h"
|
1999-01-12 00:28:28 +03:00
|
|
|
#if NGRE > 0
|
|
|
|
#include <netinet/ip_gre.h>
|
1998-09-14 00:27:47 +04:00
|
|
|
#endif
|
|
|
|
|
2004-04-22 05:01:40 +04:00
|
|
|
const struct protosw inetsw[] = {
|
1993-03-21 12:45:37 +03:00
|
|
|
{ 0, &inetdomain, 0, 0,
|
|
|
|
0, ip_output, 0, 0,
|
|
|
|
0,
|
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
|
|
|
ip_init, 0, ip_slowtimo, ip_drain, NULL
|
1993-03-21 12:45:37 +03:00
|
|
|
},
|
|
|
|
{ SOCK_DGRAM, &inetdomain, IPPROTO_UDP, PR_ATOMIC|PR_ADDR,
|
|
|
|
udp_input, 0, udp_ctlinput, ip_ctloutput,
|
|
|
|
udp_usrreq,
|
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
|
|
|
udp_init, 0, 0, 0, NULL
|
1993-03-21 12:45:37 +03:00
|
|
|
},
|
2001-03-21 22:22:27 +03:00
|
|
|
{ SOCK_STREAM, &inetdomain, IPPROTO_TCP, PR_CONNREQUIRED|PR_WANTRCVD|PR_LISTEN|PR_ABRTACPTDIS,
|
1993-03-21 12:45:37 +03:00
|
|
|
tcp_input, 0, tcp_ctlinput, tcp_ctloutput,
|
|
|
|
tcp_usrreq,
|
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
|
|
|
tcp_init, 0, tcp_slowtimo, tcp_drain, NULL
|
1993-03-21 12:45:37 +03:00
|
|
|
},
|
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_RAW, PR_ATOMIC|PR_ADDR,
|
2001-12-21 07:07:25 +03:00
|
|
|
rip_input, rip_output, rip_ctlinput, rip_ctloutput,
|
1993-03-21 12:45:37 +03:00
|
|
|
rip_usrreq,
|
|
|
|
0, 0, 0, 0,
|
|
|
|
},
|
2001-03-01 19:31:37 +03:00
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_ICMP, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
|
2001-12-21 07:07:25 +03:00
|
|
|
icmp_input, rip_output, rip_ctlinput, rip_ctloutput,
|
1993-03-21 12:45:37 +03:00
|
|
|
rip_usrreq,
|
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
|
|
|
icmp_init, 0, 0, 0, NULL
|
1994-05-13 10:02:48 +04:00
|
|
|
},
|
1999-07-01 12:12:45 +04:00
|
|
|
#ifdef IPSEC
|
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_AH, PR_ATOMIC|PR_ADDR,
|
2000-10-18 21:09:14 +04:00
|
|
|
ah4_input, 0, ah4_ctlinput, 0,
|
2002-06-09 20:33:36 +04:00
|
|
|
0,
|
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
|
|
|
0, 0, 0, 0, NULL
|
1999-07-01 12:12:45 +04:00
|
|
|
},
|
|
|
|
#ifdef IPSEC_ESP
|
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_ESP, PR_ATOMIC|PR_ADDR,
|
2003-08-15 07:42:00 +04:00
|
|
|
esp4_input,
|
|
|
|
0, esp4_ctlinput, 0,
|
2002-06-09 20:33:36 +04:00
|
|
|
0,
|
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
|
|
|
0, 0, 0, 0, NULL
|
1999-07-01 12:12:45 +04:00
|
|
|
},
|
|
|
|
#endif
|
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_IPCOMP, PR_ATOMIC|PR_ADDR,
|
2003-08-15 07:42:00 +04:00
|
|
|
ipcomp4_input,
|
|
|
|
0, 0, 0,
|
2002-06-09 20:33:36 +04:00
|
|
|
0,
|
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
|
|
|
0, 0, 0, 0, NULL
|
1999-07-01 12:12:45 +04:00
|
|
|
},
|
|
|
|
#endif /* IPSEC */
|
2003-08-15 07:42:00 +04:00
|
|
|
#ifdef FAST_IPSEC
|
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_AH, PR_ATOMIC|PR_ADDR,
|
|
|
|
ipsec4_common_input, 0, ah4_ctlinput, 0,
|
|
|
|
0,
|
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
|
|
|
0, 0, 0, 0, NULL
|
2003-08-15 07:42:00 +04:00
|
|
|
},
|
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_ESP, PR_ATOMIC|PR_ADDR,
|
|
|
|
ipsec4_common_input, 0, esp4_ctlinput, 0,
|
|
|
|
0,
|
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
|
|
|
0, 0, 0, 0, NULL
|
2003-08-15 07:42:00 +04:00
|
|
|
},
|
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_IPCOMP, PR_ATOMIC|PR_ADDR,
|
|
|
|
ipsec4_common_input, 0, 0, 0,
|
|
|
|
0,
|
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
|
|
|
0, 0, 0, 0, NULL
|
2003-08-15 07:42:00 +04:00
|
|
|
},
|
|
|
|
#endif /* FAST_IPSEC */
|
2001-03-01 19:31:37 +03:00
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_IPV4, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
|
2001-12-21 07:07:25 +03:00
|
|
|
encap4_input, rip_output, rip_ctlinput, rip_ctloutput,
|
1999-12-13 18:17:17 +03:00
|
|
|
rip_usrreq, /*XXX*/
|
2000-04-19 10:30:51 +04:00
|
|
|
encap_init, 0, 0, 0,
|
1999-07-01 12:12:45 +04:00
|
|
|
},
|
|
|
|
#ifdef INET6
|
2001-03-01 19:31:37 +03:00
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_IPV6, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
|
2001-12-21 07:07:25 +03:00
|
|
|
encap4_input, rip_output, rip_ctlinput, rip_ctloutput,
|
1999-12-13 18:17:17 +03:00
|
|
|
rip_usrreq, /*XXX*/
|
2002-09-25 11:37:12 +04:00
|
|
|
encap_init, 0, 0, 0,
|
1999-07-01 12:12:45 +04:00
|
|
|
},
|
|
|
|
#endif /* INET6 */
|
1998-09-14 00:27:47 +04:00
|
|
|
#if NGRE > 0
|
2001-03-01 19:31:37 +03:00
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_GRE, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
|
2001-12-21 07:07:25 +03:00
|
|
|
gre_input, rip_output, rip_ctlinput, rip_ctloutput,
|
1998-09-30 09:59:27 +04:00
|
|
|
rip_usrreq,
|
|
|
|
0, 0, 0, 0,
|
|
|
|
},
|
2001-03-01 19:31:37 +03:00
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_MOBILE, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
|
2001-12-21 07:07:25 +03:00
|
|
|
gre_mobile_input, rip_output, rip_ctlinput, rip_ctloutput,
|
1998-09-30 09:59:27 +04:00
|
|
|
rip_usrreq,
|
1998-09-14 00:27:47 +04:00
|
|
|
0, 0, 0, 0,
|
|
|
|
},
|
1999-01-12 00:28:28 +03:00
|
|
|
#endif /* NGRE > 0 */
|
2001-03-01 19:31:37 +03:00
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_IGMP, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
|
2001-12-21 07:07:25 +03:00
|
|
|
igmp_input, rip_output, rip_ctlinput, rip_ctloutput,
|
1994-05-13 10:02:48 +04:00
|
|
|
rip_usrreq,
|
2004-04-25 20:42:40 +04:00
|
|
|
NULL, igmp_fasttimo, igmp_slowtimo, 0,
|
1993-03-21 12:45:37 +03:00
|
|
|
},
|
2004-09-05 03:29:44 +04:00
|
|
|
#ifdef PIM
|
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_PIM, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
|
|
|
|
pim_input, rip_output, rip_ctlinput, rip_ctloutput,
|
|
|
|
rip_usrreq,
|
|
|
|
NULL, 0, 0, 0,
|
|
|
|
},
|
|
|
|
#endif /* PIM */
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifdef TPIP
|
2001-03-21 22:22:27 +03:00
|
|
|
{ SOCK_SEQPACKET,&inetdomain, IPPROTO_TP, PR_CONNREQUIRED|PR_WANTRCVD|PR_LISTEN|PR_LASTHDR|PR_ABRTACPTDIS,
|
1994-05-13 10:02:48 +04:00
|
|
|
tpip_input, 0, tpip_ctlinput, tp_ctloutput,
|
1993-03-21 12:45:37 +03:00
|
|
|
tp_usrreq,
|
|
|
|
tp_init, 0, tp_slowtimo, tp_drain,
|
|
|
|
},
|
1995-06-01 01:50:34 +04:00
|
|
|
#endif /* TPIP */
|
2001-02-20 11:49:15 +03:00
|
|
|
#ifdef ISO
|
1993-03-21 12:45:37 +03:00
|
|
|
/* EON (ISO CLNL over IP) */
|
|
|
|
#ifdef EON
|
2001-03-01 19:31:37 +03:00
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_EON, PR_LASTHDR,
|
2001-02-20 11:49:15 +03:00
|
|
|
eoninput, 0, eonctlinput, 0,
|
1993-03-21 12:45:37 +03:00
|
|
|
0,
|
|
|
|
eonprotoinit, 0, 0, 0,
|
|
|
|
},
|
2001-02-20 11:49:15 +03:00
|
|
|
#else
|
2001-03-01 19:31:37 +03:00
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_EON, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
|
2001-12-21 07:07:25 +03:00
|
|
|
encap4_input, rip_output, rip_ctlinput, rip_ctloutput,
|
2001-02-20 11:49:15 +03:00
|
|
|
rip_usrreq, /*XXX*/
|
2001-12-21 09:30:43 +03:00
|
|
|
encap_init, 0, 0, 0,
|
2001-02-20 11:49:15 +03:00
|
|
|
},
|
1995-06-01 01:50:34 +04:00
|
|
|
#endif /* EON */
|
2001-02-20 11:49:15 +03:00
|
|
|
#endif /* ISO */
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifdef NSIP
|
2001-03-01 19:31:37 +03:00
|
|
|
{ SOCK_RAW, &inetdomain, IPPROTO_IDP, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
|
1996-10-11 03:04:26 +04:00
|
|
|
idpip_input, NULL, nsip_ctlinput, 0,
|
1993-03-21 12:45:37 +03:00
|
|
|
rip_usrreq,
|
|
|
|
0, 0, 0, 0,
|
|
|
|
},
|
1995-06-01 01:50:34 +04:00
|
|
|
#endif /* NSIP */
|
|
|
|
/* raw wildcard */
|
2003-08-14 11:57:40 +04:00
|
|
|
{ SOCK_RAW, &inetdomain, 0, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
|
2001-12-21 07:07:25 +03:00
|
|
|
rip_input, rip_output, rip_ctlinput, rip_ctloutput,
|
1993-03-21 12:45:37 +03:00
|
|
|
rip_usrreq,
|
1994-05-13 10:02:48 +04:00
|
|
|
rip_init, 0, 0, 0,
|
1993-03-21 12:45:37 +03:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct domain inetdomain =
|
2002-06-09 20:33:36 +04:00
|
|
|
{ PF_INET, "internet", 0, 0, 0,
|
1994-05-13 10:02:48 +04:00
|
|
|
inetsw, &inetsw[sizeof(inetsw)/sizeof(inetsw[0])], 0,
|
|
|
|
rn_inithead, 32, sizeof(struct sockaddr_in) };
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2000-02-17 13:59:32 +03:00
|
|
|
u_char ip_protox[IPPROTO_MAX];
|
|
|
|
|
2000-07-10 13:31:29 +04:00
|
|
|
int icmperrppslim = 100; /* 100pps */
|