xref: /freebsd/sys/netinet6/in6_proto.c (revision 9e5787d2284e187abb5b654d924394a65772e004)
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. Neither the name of the project nor the names of its contributors
16  *    may be used to endorse or promote products derived from this software
17  *    without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  *
31  *	$KAME: in6_proto.c,v 1.91 2001/05/27 13:28:35 itojun Exp $
32  */
33 
34 /*-
35  * Copyright (c) 1982, 1986, 1993
36  *	The Regents of the University of California.  All rights reserved.
37  *
38  * Redistribution and use in source and binary forms, with or without
39  * modification, are permitted provided that the following conditions
40  * are met:
41  * 1. Redistributions of source code must retain the above copyright
42  *    notice, this list of conditions and the following disclaimer.
43  * 2. Redistributions in binary form must reproduce the above copyright
44  *    notice, this list of conditions and the following disclaimer in the
45  *    documentation and/or other materials provided with the distribution.
46  * 3. Neither the name of the University nor the names of its contributors
47  *    may be used to endorse or promote products derived from this software
48  *    without specific prior written permission.
49  *
50  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
51  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
52  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
53  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
54  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
55  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
56  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
57  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
58  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
59  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
60  * SUCH DAMAGE.
61  *
62  *	@(#)in_proto.c	8.1 (Berkeley) 6/10/93
63  */
64 
65 #include <sys/cdefs.h>
66 __FBSDID("$FreeBSD$");
67 
68 #include "opt_inet.h"
69 #include "opt_inet6.h"
70 #include "opt_ipsec.h"
71 #include "opt_ipstealth.h"
72 #include "opt_sctp.h"
73 #include "opt_mpath.h"
74 #include "opt_route.h"
75 
76 #include <sys/param.h>
77 #include <sys/socket.h>
78 #include <sys/socketvar.h>
79 #include <sys/proc.h>
80 #include <sys/protosw.h>
81 #include <sys/jail.h>
82 #include <sys/kernel.h>
83 #include <sys/malloc.h>
84 #include <sys/domain.h>
85 #include <sys/mbuf.h>
86 #include <sys/systm.h>
87 #include <sys/sysctl.h>
88 
89 #include <net/if.h>
90 #include <net/if_var.h>
91 #include <net/radix.h>
92 #include <net/route.h>
93 
94 #include <netinet/in.h>
95 #include <netinet/in_systm.h>
96 #include <netinet/in_var.h>
97 #include <netinet/ip_encap.h>
98 #include <netinet/ip.h>
99 #include <netinet/ip_var.h>
100 #include <netinet/ip6.h>
101 #include <netinet6/ip6_var.h>
102 #include <netinet/icmp6.h>
103 
104 #include <netinet/tcp.h>
105 #include <netinet/tcp_timer.h>
106 #include <netinet/tcp_var.h>
107 #include <netinet/udp.h>
108 #include <netinet/udp_var.h>
109 #include <netinet6/tcp6_var.h>
110 #include <netinet6/raw_ip6.h>
111 #include <netinet6/udp6_var.h>
112 #include <netinet6/pim6_var.h>
113 #include <netinet6/nd6.h>
114 
115 #ifdef SCTP
116 #include <netinet/in_pcb.h>
117 #include <netinet/sctp_pcb.h>
118 #include <netinet/sctp.h>
119 #include <netinet/sctp_var.h>
120 #include <netinet6/sctp6_var.h>
121 #endif /* SCTP */
122 
123 #include <netinet6/ip6protosw.h>
124 
125 /*
126  * TCP/IP protocol family: IP6, ICMP6, UDP, TCP.
127  */
128 FEATURE(inet6, "Internet Protocol version 6");
129 
130 extern	struct domain inet6domain;
131 static	struct pr_usrreqs nousrreqs;
132 
133 #define PR_LISTEN	0
134 #define PR_ABRTACPTDIS	0
135 
136 /* Spacer for loadable protocols. */
137 #define IP6PROTOSPACER   			\
138 {						\
139 	.pr_domain =		&inet6domain,	\
140 	.pr_protocol =		PROTO_SPACER,	\
141 	.pr_usrreqs =		&nousrreqs	\
142 }
143 
144 struct protosw inet6sw[] = {
145 {
146 	.pr_type =		0,
147 	.pr_domain =		&inet6domain,
148 	.pr_protocol =		IPPROTO_IPV6,
149 	.pr_init =		ip6_init,
150 	.pr_slowtimo =		frag6_slowtimo,
151 	.pr_drain =		frag6_drain,
152 	.pr_usrreqs =		&nousrreqs,
153 },
154 {
155 	.pr_type =		SOCK_DGRAM,
156 	.pr_domain =		&inet6domain,
157 	.pr_protocol =		IPPROTO_UDP,
158 	.pr_flags =		PR_ATOMIC|PR_ADDR,
159 	.pr_input =		udp6_input,
160 	.pr_ctlinput =		udp6_ctlinput,
161 	.pr_ctloutput =		ip6_ctloutput,
162 #ifndef INET	/* Do not call initialization twice. */
163 	.pr_init =		udp_init,
164 #endif
165 	.pr_usrreqs =		&udp6_usrreqs,
166 },
167 {
168 	.pr_type =		SOCK_STREAM,
169 	.pr_domain =		&inet6domain,
170 	.pr_protocol =		IPPROTO_TCP,
171 	.pr_flags =		PR_CONNREQUIRED|PR_IMPLOPCL|PR_WANTRCVD|PR_LISTEN,
172 	.pr_input =		tcp6_input,
173 	.pr_ctlinput =		tcp6_ctlinput,
174 	.pr_ctloutput =		tcp_ctloutput,
175 #ifndef INET	/* don't call initialization, timeout, and drain routines twice */
176 	.pr_init =		tcp_init,
177 	.pr_slowtimo =		tcp_slowtimo,
178 	.pr_drain =		tcp_drain,
179 #endif
180 	.pr_usrreqs =		&tcp6_usrreqs,
181 },
182 #ifdef SCTP
183 {
184 	.pr_type =		SOCK_SEQPACKET,
185 	.pr_domain =		&inet6domain,
186 	.pr_protocol =		IPPROTO_SCTP,
187 	.pr_flags =		PR_WANTRCVD|PR_LASTHDR,
188 	.pr_input =		sctp6_input,
189 	.pr_ctlinput =		sctp6_ctlinput,
190 	.pr_ctloutput =	sctp_ctloutput,
191 #ifndef INET	/* Do not call initialization and drain routines twice. */
192 	.pr_drain =		sctp_drain,
193 	.pr_init =		sctp_init,
194 #endif
195 	.pr_usrreqs =		&sctp6_usrreqs
196 },
197 {
198 	.pr_type =		SOCK_STREAM,
199 	.pr_domain =		&inet6domain,
200 	.pr_protocol =		IPPROTO_SCTP,
201 	.pr_flags =		PR_CONNREQUIRED|PR_WANTRCVD|PR_LASTHDR,
202 	.pr_input =		sctp6_input,
203 	.pr_ctlinput =		sctp6_ctlinput,
204 	.pr_ctloutput =		sctp_ctloutput,
205 	.pr_drain =		NULL, /* Covered by the SOCK_SEQPACKET entry. */
206 	.pr_usrreqs =		&sctp6_usrreqs
207 },
208 #endif /* SCTP */
209 {
210 	.pr_type =		SOCK_DGRAM,
211 	.pr_domain =		&inet6domain,
212 	.pr_protocol =		IPPROTO_UDPLITE,
213 	.pr_flags =		PR_ATOMIC|PR_ADDR,
214 	.pr_input =		udp6_input,
215 	.pr_ctlinput =		udplite6_ctlinput,
216 	.pr_ctloutput =		udp_ctloutput,
217 #ifndef INET	/* Do not call initialization twice. */
218 	.pr_init =		udplite_init,
219 #endif
220 	.pr_usrreqs =		&udp6_usrreqs,
221 },
222 {
223 	.pr_type =		SOCK_RAW,
224 	.pr_domain =		&inet6domain,
225 	.pr_protocol =		IPPROTO_RAW,
226 	.pr_flags =		PR_ATOMIC|PR_ADDR,
227 	.pr_input =		rip6_input,
228 	.pr_output =		rip6_output,
229 	.pr_ctlinput =		rip6_ctlinput,
230 	.pr_ctloutput =		rip6_ctloutput,
231 #ifndef INET	/* Do not call initialization twice. */
232 	.pr_init =		rip_init,
233 #endif
234 	.pr_usrreqs =		&rip6_usrreqs
235 },
236 {
237 	.pr_type =		SOCK_RAW,
238 	.pr_domain =		&inet6domain,
239 	.pr_protocol =		IPPROTO_ICMPV6,
240 	.pr_flags =		PR_ATOMIC|PR_ADDR|PR_LASTHDR,
241 	.pr_input =		icmp6_input,
242 	.pr_output =		rip6_output,
243 	.pr_ctlinput =		rip6_ctlinput,
244 	.pr_ctloutput =		rip6_ctloutput,
245 	.pr_fasttimo =		icmp6_fasttimo,
246 	.pr_slowtimo =		icmp6_slowtimo,
247 	.pr_usrreqs =		&rip6_usrreqs
248 },
249 {
250 	.pr_type =		SOCK_RAW,
251 	.pr_domain =		&inet6domain,
252 	.pr_protocol =		IPPROTO_DSTOPTS,
253 	.pr_flags =		PR_ATOMIC|PR_ADDR,
254 	.pr_input =		dest6_input,
255 	.pr_usrreqs =		&nousrreqs
256 },
257 {
258 	.pr_type =		SOCK_RAW,
259 	.pr_domain =		&inet6domain,
260 	.pr_protocol =		IPPROTO_ROUTING,
261 	.pr_flags =		PR_ATOMIC|PR_ADDR,
262 	.pr_input =		route6_input,
263 	.pr_usrreqs =		&nousrreqs
264 },
265 {
266 	.pr_type =		SOCK_RAW,
267 	.pr_domain =		&inet6domain,
268 	.pr_protocol =		IPPROTO_FRAGMENT,
269 	.pr_flags =		PR_ATOMIC|PR_ADDR,
270 	.pr_input =		frag6_input,
271 	.pr_usrreqs =		&nousrreqs
272 },
273 #ifdef INET
274 {
275 	.pr_type =		SOCK_RAW,
276 	.pr_domain =		&inet6domain,
277 	.pr_protocol =		IPPROTO_IPV4,
278 	.pr_flags =		PR_ATOMIC|PR_ADDR|PR_LASTHDR,
279 	.pr_input =		encap6_input,
280 	.pr_output =		rip6_output,
281 	.pr_ctloutput =		rip6_ctloutput,
282 	.pr_usrreqs =		&rip6_usrreqs
283 },
284 #endif /* INET */
285 {
286 	.pr_type =		SOCK_RAW,
287 	.pr_domain =		&inet6domain,
288 	.pr_protocol =		IPPROTO_IPV6,
289 	.pr_flags =		PR_ATOMIC|PR_ADDR|PR_LASTHDR,
290 	.pr_input =		encap6_input,
291 	.pr_output =		rip6_output,
292 	.pr_ctloutput =		rip6_ctloutput,
293 	.pr_usrreqs =		&rip6_usrreqs
294 },
295 {
296 	.pr_type =		SOCK_RAW,
297 	.pr_domain =		&inet6domain,
298 	.pr_protocol =		IPPROTO_GRE,
299 	.pr_flags =		PR_ATOMIC|PR_ADDR|PR_LASTHDR,
300 	.pr_input =		encap6_input,
301 	.pr_output =		rip6_output,
302 	.pr_ctloutput =		rip6_ctloutput,
303 	.pr_usrreqs =		&rip6_usrreqs
304 },
305 {
306 	.pr_type =		SOCK_RAW,
307 	.pr_domain =		&inet6domain,
308 	.pr_protocol =		IPPROTO_PIM,
309 	.pr_flags =		PR_ATOMIC|PR_ADDR|PR_LASTHDR,
310 	.pr_input =		encap6_input,
311 	.pr_output =		rip6_output,
312 	.pr_ctloutput =		rip6_ctloutput,
313 	.pr_usrreqs =		&rip6_usrreqs
314 },
315 /* Spacer n-times for loadable protocols. */
316 IP6PROTOSPACER,
317 IP6PROTOSPACER,
318 IP6PROTOSPACER,
319 IP6PROTOSPACER,
320 IP6PROTOSPACER,
321 IP6PROTOSPACER,
322 IP6PROTOSPACER,
323 IP6PROTOSPACER,
324 /* raw wildcard */
325 {
326 	.pr_type =		SOCK_RAW,
327 	.pr_domain =		&inet6domain,
328 	.pr_flags =		PR_ATOMIC|PR_ADDR,
329 	.pr_input =		rip6_input,
330 	.pr_output =		rip6_output,
331 	.pr_ctloutput =		rip6_ctloutput,
332 	.pr_usrreqs =		&rip6_usrreqs
333 },
334 };
335 
336 struct domain inet6domain = {
337 	.dom_family =		AF_INET6,
338 	.dom_name =		"internet6",
339 	.dom_protosw =		(struct protosw *)inet6sw,
340 	.dom_protoswNPROTOSW =	(struct protosw *)&inet6sw[nitems(inet6sw)],
341 	.dom_rtattach =		in6_inithead,
342 #ifdef VIMAGE
343 	.dom_rtdetach =		in6_detachhead,
344 #endif
345 	.dom_ifattach =		in6_domifattach,
346 	.dom_ifdetach =		in6_domifdetach,
347 	.dom_ifmtu    =		in6_domifmtu
348 };
349 
350 VNET_DOMAIN_SET(inet6);
351 
352 /*
353  * Internet configuration info
354  */
355 #ifndef	IPV6FORWARDING
356 #ifdef GATEWAY6
357 #define	IPV6FORWARDING	1	/* forward IP6 packets not for us */
358 #else
359 #define	IPV6FORWARDING	0	/* don't forward IP6 packets not for us */
360 #endif /* GATEWAY6 */
361 #endif /* !IPV6FORWARDING */
362 
363 #ifndef	IPV6_SENDREDIRECTS
364 #define	IPV6_SENDREDIRECTS	1
365 #endif
366 
367 VNET_DEFINE(int, ip6_forwarding) = IPV6FORWARDING;	/* act as router? */
368 VNET_DEFINE(int, ip6_sendredirects) = IPV6_SENDREDIRECTS;
369 VNET_DEFINE(int, ip6_defhlim) = IPV6_DEFHLIM;
370 VNET_DEFINE(int, ip6_defmcasthlim) = IPV6_DEFAULT_MULTICAST_HOPS;
371 VNET_DEFINE(int, ip6_accept_rtadv) = 0;
372 VNET_DEFINE(int, ip6_no_radr) = 0;
373 VNET_DEFINE(int, ip6_norbit_raif) = 0;
374 VNET_DEFINE(int, ip6_rfc6204w3) = 0;
375 VNET_DEFINE(int, ip6_log_interval) = 5;
376 VNET_DEFINE(int, ip6_hdrnestlimit) = 15;/* How many header options will we
377 					 * process? */
378 VNET_DEFINE(int, ip6_dad_count) = 1;	/* DupAddrDetectionTransmits */
379 VNET_DEFINE(int, ip6_auto_flowlabel) = 1;
380 VNET_DEFINE(int, ip6_use_deprecated) = 1;/* allow deprecated addr
381 					 * (RFC2462 5.5.4) */
382 VNET_DEFINE(int, ip6_rr_prune) = 5;	/* router renumbering prefix
383 					 * walk list every 5 sec. */
384 VNET_DEFINE(int, ip6_mcast_pmtu) = 0;	/* enable pMTU discovery for multicast? */
385 VNET_DEFINE(int, ip6_v6only) = 1;
386 
387 VNET_DEFINE(time_t, ip6_log_time) = (time_t)0L;
388 #ifdef IPSTEALTH
389 VNET_DEFINE(int, ip6stealth) = 0;
390 #endif
391 VNET_DEFINE(int, nd6_onlink_ns_rfc4861) = 0;/* allow 'on-link' nd6 NS
392 					     * (RFC 4861) */
393 
394 /* icmp6 */
395 /*
396  * BSDI4 defines these variables in in_proto.c...
397  * XXX: what if we don't define INET? Should we define pmtu6_expire
398  * or so? (jinmei@kame.net 19990310)
399  */
400 VNET_DEFINE(int, pmtu_expire) = 60*10;
401 VNET_DEFINE(int, pmtu_probe) = 60*2;
402 
403 /* ICMPV6 parameters */
404 VNET_DEFINE(int, icmp6_rediraccept) = 1;/* accept and process redirects */
405 VNET_DEFINE(int, icmp6_redirtimeout) = 10 * 60;	/* 10 minutes */
406 VNET_DEFINE(int, icmp6errppslim) = 100;		/* 100pps */
407 /* control how to respond to NI queries */
408 VNET_DEFINE(int, icmp6_nodeinfo) =
409     (ICMP6_NODEINFO_FQDNOK|ICMP6_NODEINFO_NODEADDROK);
410 VNET_DEFINE(int, icmp6_nodeinfo_oldmcprefix) = 1;
411 
412 /*
413  * sysctl related items.
414  */
415 SYSCTL_NODE(_net, PF_INET6, inet6, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
416     "Internet6 Family");
417 
418 /* net.inet6 */
419 SYSCTL_NODE(_net_inet6,	IPPROTO_IPV6, ip6, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
420     "IP6");
421 SYSCTL_NODE(_net_inet6,	IPPROTO_ICMPV6, icmp6, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
422     "ICMP6");
423 SYSCTL_NODE(_net_inet6,	IPPROTO_UDP, udp6, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
424     "UDP6");
425 SYSCTL_NODE(_net_inet6,	IPPROTO_TCP, tcp6, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
426     "TCP6");
427 #if defined(SCTP) || defined(SCTP_SUPPORT)
428 SYSCTL_NODE(_net_inet6,	IPPROTO_SCTP, sctp6, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
429     "SCTP6");
430 #endif
431 #if defined(IPSEC) || defined(IPSEC_SUPPORT)
432 SYSCTL_NODE(_net_inet6,	IPPROTO_ESP, ipsec6, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
433     "IPSEC6");
434 #endif /* IPSEC */
435 
436 /* net.inet6.ip6 */
437 static int
438 sysctl_ip6_temppltime(SYSCTL_HANDLER_ARGS)
439 {
440 	int error, val;
441 
442 	val = V_ip6_temp_preferred_lifetime;
443 	error = sysctl_handle_int(oidp, &val, 0, req);
444 	if (error != 0 || !req->newptr)
445 		return (error);
446 	if (val < V_ip6_desync_factor + V_ip6_temp_regen_advance)
447 		return (EINVAL);
448 	V_ip6_temp_preferred_lifetime = val;
449 	return (0);
450 }
451 
452 static int
453 sysctl_ip6_tempvltime(SYSCTL_HANDLER_ARGS)
454 {
455 	int error, val;
456 
457 	val = V_ip6_temp_valid_lifetime;
458 	error = sysctl_handle_int(oidp, &val, 0, req);
459 	if (error != 0 || !req->newptr)
460 		return (error);
461 	if (val < V_ip6_temp_preferred_lifetime)
462 		return (EINVAL);
463 	V_ip6_temp_valid_lifetime = val;
464 	return (0);
465 }
466 
467 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_FORWARDING, forwarding,
468 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_forwarding), 0,
469 	"Enable forwarding of IPv6 packets between interfaces");
470 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_SENDREDIRECTS, redirect,
471 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_sendredirects), 0,
472 	"Send ICMPv6 redirects for unforwardable IPv6 packets");
473 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_DEFHLIM, hlim,
474 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_defhlim), 0,
475 	"Default hop limit to use for outgoing IPv6 packets");
476 SYSCTL_VNET_PCPUSTAT(_net_inet6_ip6, IPV6CTL_STATS, stats, struct ip6stat,
477 	ip6stat,
478 	"IP6 statistics (struct ip6stat, netinet6/ip6_var.h)");
479 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_ACCEPT_RTADV, accept_rtadv,
480 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_accept_rtadv), 0,
481 	"Default value of per-interface flag for accepting ICMPv6 RA messages");
482 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_NO_RADR, no_radr,
483 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_no_radr), 0,
484 	"Default value of per-interface flag to control whether routers "
485 	"sending ICMPv6 RA messages on that interface are added into the "
486 	"default router list");
487 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_NORBIT_RAIF, norbit_raif,
488 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_norbit_raif), 0,
489 	"Always set clear the R flag in ICMPv6 NA messages when accepting RA "
490 	"on the interface");
491 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_RFC6204W3, rfc6204w3,
492 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_rfc6204w3), 0,
493 	"Accept the default router list from ICMPv6 RA messages even "
494 	"when packet forwarding is enabled");
495 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_LOG_INTERVAL, log_interval,
496 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_log_interval), 0,
497 	"Frequency in seconds at which to log IPv6 forwarding errors");
498 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_HDRNESTLIMIT, hdrnestlimit,
499 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_hdrnestlimit), 0,
500 	"Default maximum number of IPv6 extension headers permitted on "
501 	"incoming IPv6 packets, 0 for no artificial limit");
502 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_DAD_COUNT, dad_count,
503 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_dad_count), 0,
504 	"Number of ICMPv6 NS messages sent during duplicate address detection");
505 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_AUTO_FLOWLABEL, auto_flowlabel,
506 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_auto_flowlabel), 0,
507 	"Provide an IPv6 flowlabel in outbound packets");
508 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_DEFMCASTHLIM, defmcasthlim,
509 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_defmcasthlim), 0,
510 	"Default hop limit for IPv6 multicast packets originating from this "
511 	"node");
512 SYSCTL_STRING(_net_inet6_ip6, IPV6CTL_KAME_VERSION, kame_version,
513 	CTLFLAG_RD, __KAME_VERSION, 0,
514 	"KAME version string");
515 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_USE_DEPRECATED, use_deprecated,
516 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_use_deprecated), 0,
517 	"Allow the use of addresses whose preferred lifetimes have expired");
518 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_RR_PRUNE, rr_prune,
519 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_rr_prune), 0,
520 	""); /* XXX unused */
521 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_USETEMPADDR, use_tempaddr,
522 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_use_tempaddr), 0,
523 	"Create RFC3041 temporary addresses for autoconfigured addresses");
524 SYSCTL_PROC(_net_inet6_ip6, IPV6CTL_TEMPPLTIME, temppltime,
525 	CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_NEEDGIANT,
526 	NULL, 0, sysctl_ip6_temppltime, "I",
527 	"Maximum preferred lifetime for temporary addresses");
528 SYSCTL_PROC(_net_inet6_ip6, IPV6CTL_TEMPVLTIME, tempvltime,
529 	CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_NEEDGIANT,
530 	NULL, 0, sysctl_ip6_tempvltime, "I",
531 	"Maximum valid lifetime for temporary addresses");
532 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_V6ONLY, v6only,
533 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_v6only), 0,
534 	"Restrict AF_INET6 sockets to IPv6 addresses only");
535 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_AUTO_LINKLOCAL, auto_linklocal,
536 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_auto_linklocal), 0,
537 	"Default value of per-interface flag for automatically adding an IPv6 "
538 	"link-local address to interfaces when attached");
539 SYSCTL_VNET_PCPUSTAT(_net_inet6_ip6, IPV6CTL_RIP6STATS, rip6stats,
540 	struct rip6stat, rip6stat,
541 	"Raw IP6 statistics (struct rip6stat, netinet6/raw_ip6.h)");
542 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_PREFER_TEMPADDR, prefer_tempaddr,
543 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_prefer_tempaddr), 0,
544 	"Prefer RFC3041 temporary addresses in source address selection");
545 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_USE_DEFAULTZONE, use_defaultzone,
546 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_use_defzone), 0,
547 	"Use the default scope zone when none is specified");
548 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_MCAST_PMTU, mcast_pmtu,
549 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_mcast_pmtu), 0,
550 	"Enable path MTU discovery for multicast packets");
551 #ifdef IPSTEALTH
552 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_STEALTH, stealth, CTLFLAG_VNET | CTLFLAG_RW,
553 	&VNET_NAME(ip6stealth), 0,
554 	"Forward IPv6 packets without decrementing their TTL");
555 #endif
556 
557 /* net.inet6.icmp6 */
558 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_REDIRACCEPT, rediraccept,
559 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(icmp6_rediraccept), 0,
560 	"Accept ICMPv6 redirect messages");
561 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_REDIRTIMEOUT, redirtimeout,
562 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(icmp6_redirtimeout), 0,
563 	"Delay in seconds before expiring redirect route");
564 SYSCTL_VNET_PCPUSTAT(_net_inet6_icmp6, ICMPV6CTL_STATS, stats,
565 	struct icmp6stat, icmp6stat,
566 	"ICMPv6 statistics (struct icmp6stat, netinet/icmp6.h)");
567 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_ND6_PRUNE, nd6_prune,
568 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(nd6_prune), 0,
569 	"Frequency in seconds of checks for expired prefixes and routers");
570 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_ND6_DELAY, nd6_delay,
571 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(nd6_delay), 0,
572 	"Delay in seconds before probing for reachability");
573 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_ND6_UMAXTRIES, nd6_umaxtries,
574 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(nd6_umaxtries), 0,
575 	"Number of ICMPv6 NS messages sent during reachability detection");
576 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_ND6_MMAXTRIES, nd6_mmaxtries,
577 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(nd6_mmaxtries), 0,
578 	"Number of ICMPv6 NS messages sent during address resolution");
579 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_ND6_USELOOPBACK, nd6_useloopback,
580 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(nd6_useloopback), 0,
581 	"Create a loopback route when configuring an IPv6 address");
582 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_NODEINFO, nodeinfo,
583 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(icmp6_nodeinfo), 0,
584 	"Mask of enabled RFC4620 node information query types");
585 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_NODEINFO_OLDMCPREFIX,
586 	nodeinfo_oldmcprefix, CTLFLAG_VNET | CTLFLAG_RW,
587 	&VNET_NAME(icmp6_nodeinfo_oldmcprefix), 0,
588 	"Join old IPv6 NI group address in draft-ietf-ipngwg-icmp-name-lookup "
589 	"for compatibility with KAME implementation");
590 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_ERRPPSLIMIT, errppslimit,
591 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(icmp6errppslim), 0,
592 	"Maximum number of ICMPv6 error messages per second");
593 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_ND6_MAXNUDHINT, nd6_maxnudhint,
594 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(nd6_maxnudhint), 0,
595 	""); /* XXX unused */
596 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_ND6_DEBUG, nd6_debug,
597 	CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(nd6_debug), 0,
598 	"Log NDP debug messages");
599 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_ND6_ONLINKNSRFC4861,
600 	nd6_onlink_ns_rfc4861, CTLFLAG_VNET | CTLFLAG_RW,
601 	&VNET_NAME(nd6_onlink_ns_rfc4861), 0,
602 	"Accept 'on-link' ICMPv6 NS messages in compliance with RFC 4861");
603 #ifdef EXPERIMENTAL
604 SYSCTL_INT(_net_inet6_icmp6, OID_AUTO,
605 	nd6_ignore_ipv6_only_ra, CTLFLAG_VNET | CTLFLAG_RW,
606 	&VNET_NAME(nd6_ignore_ipv6_only_ra), 0,
607 	"Ignore the 'IPv6-Only flag' in RA messages in compliance with "
608 	"draft-ietf-6man-ipv6only-flag");
609 #endif
610