2005-05-30 01:43:51 +04:00
|
|
|
/* $NetBSD: in6_proto.c,v 1.59 2005/05/29 21:43:51 christos Exp $ */
|
2000-10-10 20:26:43 +04:00
|
|
|
/* $KAME: in6_proto.c,v 1.66 2000/10/10 15:35:47 itojun Exp $ */
|
1999-07-04 01:24:45 +04:00
|
|
|
|
1999-06-28 10:36:47 +04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
|
|
|
|
* All rights reserved.
|
2000-07-06 16:36:18 +04:00
|
|
|
*
|
1999-06-28 10:36:47 +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.
|
2000-07-06 16:36:18 +04:00
|
|
|
*
|
1999-06-28 10:36:47 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1982, 1986, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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
|
1999-06-28 10:36:47 +04: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.
|
|
|
|
*
|
|
|
|
* @(#)in_proto.c 8.1 (Berkeley) 6/10/93
|
|
|
|
*/
|
|
|
|
|
2001-11-13 03:56:55 +03:00
|
|
|
#include <sys/cdefs.h>
|
2005-05-30 01:43:51 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: in6_proto.c,v 1.59 2005/05/29 21:43:51 christos Exp $");
|
2001-11-13 03:56:55 +03:00
|
|
|
|
1999-06-28 10:36:47 +04:00
|
|
|
#include "opt_inet.h"
|
1999-07-10 02:57:15 +04:00
|
|
|
#include "opt_ipsec.h"
|
2001-02-20 11:49:15 +03:00
|
|
|
#include "opt_iso.h"
|
1999-06-28 10:36:47 +04:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/protosw.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/domain.h>
|
|
|
|
#include <sys/mbuf.h>
|
|
|
|
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <net/radix.h>
|
|
|
|
#include <net/route.h>
|
|
|
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/in_systm.h>
|
|
|
|
#include <netinet/in_var.h>
|
2000-04-19 10:30:51 +04:00
|
|
|
#include <netinet/ip_encap.h>
|
1999-06-28 10:36:47 +04:00
|
|
|
#include <netinet/ip.h>
|
|
|
|
#include <netinet/ip_var.h>
|
|
|
|
#include <netinet/in_pcb.h>
|
2000-02-06 15:49:37 +03:00
|
|
|
#include <netinet/ip6.h>
|
1999-06-28 10:36:47 +04:00
|
|
|
#include <netinet6/ip6_var.h>
|
2000-02-06 15:49:37 +03:00
|
|
|
#include <netinet/icmp6.h>
|
1999-06-28 10:36:47 +04:00
|
|
|
#include <netinet6/in6_pcb.h>
|
|
|
|
|
|
|
|
#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 <netinet6/udp6.h>
|
|
|
|
#include <netinet6/udp6_var.h>
|
|
|
|
|
|
|
|
#include <netinet6/pim6_var.h>
|
|
|
|
|
|
|
|
#include <netinet6/nd6.h>
|
1999-12-13 18:17:17 +03:00
|
|
|
|
1999-06-28 10:36:47 +04:00
|
|
|
#ifdef IPSEC
|
1999-12-13 18:17:17 +03:00
|
|
|
#include <netinet6/ipsec.h>
|
1999-06-28 10:36:47 +04:00
|
|
|
#include <netinet6/ah.h>
|
|
|
|
#ifdef IPSEC_ESP
|
|
|
|
#include <netinet6/esp.h>
|
|
|
|
#endif
|
|
|
|
#include <netinet6/ipcomp.h>
|
2001-10-24 10:36:37 +04:00
|
|
|
#endif /* IPSEC */
|
1999-06-28 10:36:47 +04:00
|
|
|
|
|
|
|
#include <netinet6/ip6protosw.h>
|
|
|
|
|
2001-12-21 06:21:50 +03:00
|
|
|
#include <net/net_osdep.h>
|
|
|
|
|
2003-04-17 23:58:57 +04:00
|
|
|
#ifndef offsetof /* XXX */
|
1999-06-28 10:36:47 +04:00
|
|
|
#define offsetof(type, member) ((size_t)(&((type *)0)->member))
|
2003-04-17 23:58:57 +04:00
|
|
|
#endif
|
1999-06-28 10:36:47 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* TCP/IP protocol family: IP6, ICMP6, UDP, TCP.
|
|
|
|
*/
|
|
|
|
|
2005-01-23 21:41:56 +03:00
|
|
|
DOMAIN_DEFINE(inet6domain); /* forward declare and add to link set */
|
1999-06-28 10:36:47 +04:00
|
|
|
|
2004-04-22 05:01:40 +04:00
|
|
|
const struct ip6protosw inet6sw[] = {
|
1999-06-28 10:36:47 +04:00
|
|
|
{ 0, &inet6domain, IPPROTO_IPV6, 0,
|
|
|
|
0, 0, 0, 0,
|
|
|
|
0,
|
1999-12-13 18:17:17 +03:00
|
|
|
ip6_init, 0, frag6_slowtimo, frag6_drain,
|
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
|
|
|
NULL,
|
1999-06-28 10:36:47 +04:00
|
|
|
},
|
2001-03-01 19:31:37 +03:00
|
|
|
{ SOCK_DGRAM, &inet6domain, IPPROTO_UDP, PR_ATOMIC|PR_ADDR,
|
1999-06-28 10:36:47 +04:00
|
|
|
udp6_input, 0, udp6_ctlinput, ip6_ctloutput,
|
2000-01-06 18:46:07 +03:00
|
|
|
udp6_usrreq, udp6_init,
|
1999-12-13 18:17:17 +03:00
|
|
|
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
|
|
|
NULL,
|
1999-06-28 10:36:47 +04:00
|
|
|
},
|
2001-03-21 22:22:27 +03:00
|
|
|
{ SOCK_STREAM, &inet6domain, IPPROTO_TCP, PR_CONNREQUIRED|PR_WANTRCVD|PR_LISTEN|PR_ABRTACPTDIS,
|
1999-06-28 10:36:47 +04:00
|
|
|
tcp6_input, 0, tcp6_ctlinput, tcp_ctloutput,
|
|
|
|
tcp_usrreq,
|
2000-10-10 17:25:28 +04:00
|
|
|
#ifdef INET /* don't call initialization and timeout routines twice */
|
2003-09-04 13:16:57 +04:00
|
|
|
0, 0, 0, 0,
|
1999-07-27 10:23:57 +04:00
|
|
|
#else
|
2003-09-05 05:35:08 +04:00
|
|
|
tcp_init, 0, tcp_slowtimo, tcp_drain,
|
1999-07-27 10:23:57 +04:00
|
|
|
#endif
|
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
|
|
|
NULL,
|
1999-12-13 18:17:17 +03:00
|
|
|
},
|
2001-03-01 19:31:37 +03:00
|
|
|
{ SOCK_RAW, &inet6domain, IPPROTO_RAW, PR_ATOMIC|PR_ADDR,
|
2000-02-26 12:09:17 +03:00
|
|
|
rip6_input, rip6_output, rip6_ctlinput, rip6_ctloutput,
|
1999-06-28 10:36:47 +04:00
|
|
|
rip6_usrreq,
|
1999-12-13 18:17:17 +03:00
|
|
|
0, 0, 0, 0,
|
1999-06-28 10:36:47 +04:00
|
|
|
},
|
2001-03-01 19:31:37 +03:00
|
|
|
{ SOCK_RAW, &inet6domain, IPPROTO_ICMPV6, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
|
2001-02-11 09:49:49 +03:00
|
|
|
icmp6_input, rip6_output, rip6_ctlinput, rip6_ctloutput,
|
1999-06-28 10:36:47 +04:00
|
|
|
rip6_usrreq,
|
1999-12-13 18:17:17 +03:00
|
|
|
icmp6_init, icmp6_fasttimo, 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
|
|
|
NULL,
|
1999-06-28 10:36:47 +04:00
|
|
|
},
|
|
|
|
{ SOCK_RAW, &inet6domain, IPPROTO_DSTOPTS,PR_ATOMIC|PR_ADDR,
|
|
|
|
dest6_input, 0, 0, 0,
|
2002-06-09 18:43:10 +04:00
|
|
|
0,
|
1999-06-28 10:36:47 +04:00
|
|
|
0, 0, 0, 0,
|
|
|
|
},
|
|
|
|
{ SOCK_RAW, &inet6domain, IPPROTO_ROUTING,PR_ATOMIC|PR_ADDR,
|
|
|
|
route6_input, 0, 0, 0,
|
2002-06-09 18:43:10 +04:00
|
|
|
0,
|
1999-06-28 10:36:47 +04:00
|
|
|
0, 0, 0, 0,
|
|
|
|
},
|
|
|
|
{ SOCK_RAW, &inet6domain, IPPROTO_FRAGMENT,PR_ATOMIC|PR_ADDR,
|
|
|
|
frag6_input, 0, 0, 0,
|
2002-06-09 18:43:10 +04:00
|
|
|
0,
|
1999-06-28 10:36:47 +04:00
|
|
|
0, 0, 0, 0,
|
|
|
|
},
|
|
|
|
#ifdef IPSEC
|
|
|
|
{ SOCK_RAW, &inet6domain, IPPROTO_AH, PR_ATOMIC|PR_ADDR,
|
2000-10-19 01:14:12 +04:00
|
|
|
ah6_input, 0, ah6_ctlinput, 0,
|
2002-06-09 18:43:10 +04:00
|
|
|
0,
|
1999-12-13 18:17:17 +03:00
|
|
|
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
|
|
|
NULL,
|
1999-06-28 10:36:47 +04:00
|
|
|
},
|
|
|
|
#ifdef IPSEC_ESP
|
|
|
|
{ SOCK_RAW, &inet6domain, IPPROTO_ESP, PR_ATOMIC|PR_ADDR,
|
2000-10-19 01:14:12 +04:00
|
|
|
esp6_input, 0, esp6_ctlinput, 0,
|
2002-06-09 18:43:10 +04:00
|
|
|
0,
|
1999-12-13 18:17:17 +03:00
|
|
|
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
|
|
|
NULL,
|
1999-06-28 10:36:47 +04:00
|
|
|
},
|
|
|
|
#endif
|
|
|
|
{ SOCK_RAW, &inet6domain, IPPROTO_IPCOMP, PR_ATOMIC|PR_ADDR,
|
|
|
|
ipcomp6_input, 0, 0, 0,
|
2002-06-09 18:43:10 +04:00
|
|
|
0,
|
1999-12-13 18:17:17 +03:00
|
|
|
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
|
|
|
NULL,
|
1999-06-28 10:36:47 +04:00
|
|
|
},
|
|
|
|
#endif /* IPSEC */
|
2000-04-19 10:30:51 +04:00
|
|
|
#ifdef INET
|
2001-03-01 19:31:37 +03:00
|
|
|
{ SOCK_RAW, &inet6domain, IPPROTO_IPV4, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
|
2001-12-21 11:54:19 +03:00
|
|
|
encap6_input, rip6_output, encap6_ctlinput, rip6_ctloutput,
|
2000-04-19 10:30:51 +04:00
|
|
|
rip6_usrreq,
|
2001-12-21 09:30:43 +03:00
|
|
|
encap_init, 0, 0, 0,
|
1999-06-28 10:36:47 +04:00
|
|
|
},
|
2000-04-19 10:30:51 +04:00
|
|
|
#endif
|
2001-03-01 19:31:37 +03:00
|
|
|
{ SOCK_RAW, &inet6domain, IPPROTO_IPV6, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
|
2001-12-21 11:54:19 +03:00
|
|
|
encap6_input, rip6_output, encap6_ctlinput, rip6_ctloutput,
|
2000-04-19 10:30:51 +04:00
|
|
|
rip6_usrreq,
|
|
|
|
encap_init, 0, 0, 0,
|
1999-06-28 10:36:47 +04:00
|
|
|
},
|
2001-02-20 11:49:15 +03:00
|
|
|
#ifdef ISO
|
2001-03-01 19:31:37 +03:00
|
|
|
{ SOCK_RAW, &inet6domain, IPPROTO_EON, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
|
2001-12-21 11:54:19 +03:00
|
|
|
encap6_input, rip6_output, encap6_ctlinput, rip6_ctloutput,
|
2001-02-21 03:11:53 +03:00
|
|
|
rip6_usrreq, /*XXX*/
|
2001-12-21 09:30:43 +03:00
|
|
|
encap_init, 0, 0, 0,
|
2001-02-20 11:49:15 +03:00
|
|
|
},
|
|
|
|
#endif
|
2001-03-01 19:31:37 +03:00
|
|
|
{ SOCK_RAW, &inet6domain, IPPROTO_PIM, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
|
2002-06-09 00:06:44 +04:00
|
|
|
pim6_input, rip6_output, 0, rip6_ctloutput,
|
1999-06-28 10:36:47 +04:00
|
|
|
rip6_usrreq,
|
|
|
|
0, 0, 0, 0,
|
|
|
|
},
|
|
|
|
/* raw wildcard */
|
2003-08-14 11:57:40 +04:00
|
|
|
{ SOCK_RAW, &inet6domain, 0, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
|
1999-06-28 10:36:47 +04:00
|
|
|
rip6_input, rip6_output, 0, rip6_ctloutput,
|
2000-02-26 12:01:59 +03:00
|
|
|
rip6_usrreq,
|
|
|
|
rip6_init, 0, 0, 0,
|
1999-06-28 10:36:47 +04:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct domain inet6domain =
|
2001-02-11 08:25:04 +03:00
|
|
|
{ AF_INET6, "internet6", 0, 0, 0,
|
2005-05-30 01:43:51 +04:00
|
|
|
(const struct protosw *)inet6sw,
|
|
|
|
(const struct protosw *)&inet6sw[sizeof(inet6sw)/sizeof(inet6sw[0])],
|
1999-12-13 18:17:17 +03:00
|
|
|
rn_inithead,
|
|
|
|
offsetof(struct sockaddr_in6, sin6_addr) << 3,
|
2002-05-29 06:58:28 +04:00
|
|
|
sizeof(struct sockaddr_in6),
|
|
|
|
in6_domifattach, in6_domifdetach, };
|
1999-06-28 10:36:47 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Internet configuration info
|
|
|
|
*/
|
|
|
|
#ifndef IPV6FORWARDING
|
|
|
|
#ifdef GATEWAY6
|
|
|
|
#define IPV6FORWARDING 1 /* forward IP6 packets not for us */
|
|
|
|
#else
|
|
|
|
#define IPV6FORWARDING 0 /* don't forward IP6 packets not for us */
|
|
|
|
#endif /* GATEWAY6 */
|
|
|
|
#endif /* !IPV6FORWARDING */
|
|
|
|
|
|
|
|
int ip6_forwarding = IPV6FORWARDING; /* act as router? */
|
2003-08-07 12:52:32 +04:00
|
|
|
int ip6_sendredirects = 1;
|
1999-06-28 10:36:47 +04:00
|
|
|
int ip6_defhlim = IPV6_DEFHLIM;
|
|
|
|
int ip6_defmcasthlim = IPV6_DEFAULT_MULTICAST_HOPS;
|
|
|
|
int ip6_accept_rtadv = 0; /* "IPV6FORWARDING ? 0 : 1" is dangerous */
|
|
|
|
int ip6_maxfragpackets = 200;
|
2002-05-28 07:04:05 +04:00
|
|
|
int ip6_maxfrags = 200;
|
1999-06-28 10:36:47 +04:00
|
|
|
int ip6_log_interval = 5;
|
|
|
|
int ip6_hdrnestlimit = 50; /* appropriate? */
|
|
|
|
int ip6_dad_count = 1; /* DupAddrDetectionTransmits */
|
|
|
|
int ip6_auto_flowlabel = 1;
|
2002-08-21 02:06:04 +04:00
|
|
|
int ip6_use_deprecated = 1; /* allow deprecated addr (RFC2462 5.5.4) */
|
1999-12-13 18:17:17 +03:00
|
|
|
int ip6_rr_prune = 5; /* router renumbering prefix
|
2001-12-21 11:54:19 +03:00
|
|
|
* walk list every 5 sec. */
|
2003-11-03 18:12:06 +03:00
|
|
|
int ip6_v6only = 1;
|
2000-01-06 09:41:18 +03:00
|
|
|
|
1999-06-28 10:36:47 +04:00
|
|
|
int ip6_keepfaith = 0;
|
|
|
|
time_t ip6_log_time = (time_t)0L;
|
|
|
|
|
|
|
|
/* icmp6 */
|
1999-12-13 18:17:17 +03:00
|
|
|
/*
|
|
|
|
* BSDI4 defines these variables in in_proto.c...
|
|
|
|
* XXX: what if we don't define INET? Should we define pmtu6_expire
|
|
|
|
* or so? (jinmei@kame.net 19990310)
|
|
|
|
*/
|
1999-06-28 10:36:47 +04:00
|
|
|
int pmtu_expire = 60*10;
|
|
|
|
|
|
|
|
/* raw IP6 parameters */
|
|
|
|
/*
|
|
|
|
* Nominal space allocated to a raw ip socket.
|
|
|
|
*/
|
|
|
|
#define RIPV6SNDQ 8192
|
|
|
|
#define RIPV6RCVQ 8192
|
|
|
|
|
|
|
|
u_long rip6_sendspace = RIPV6SNDQ;
|
|
|
|
u_long rip6_recvspace = RIPV6RCVQ;
|
|
|
|
|
|
|
|
/* ICMPV6 parameters */
|
|
|
|
int icmp6_rediraccept = 1; /* accept and process redirects */
|
|
|
|
int icmp6_redirtimeout = 10 * 60; /* 10 minutes */
|
2000-07-06 16:36:18 +04:00
|
|
|
int icmp6errppslim = 100; /* 100pps */
|
2000-01-02 19:31:17 +03:00
|
|
|
int icmp6_nodeinfo = 1; /* enable/disable NI response */
|
1999-06-28 10:36:47 +04:00
|
|
|
|
|
|
|
/* UDP on IP6 parameters */
|
|
|
|
int udp6_sendspace = 9216; /* really max datagram size */
|
|
|
|
int udp6_recvspace = 40 * (1024 + sizeof(struct sockaddr_in6));
|
|
|
|
/* 40 1K datagrams */
|