xref: /freebsd/sys/netinet6/in6_proto.c (revision ebccf1e3a6b11b97cbf5f813dd76636e892a9035)
1 /*	$FreeBSD$	*/
2 /*	$KAME: in6_proto.c,v 1.91 2001/05/27 13:28:35 itojun Exp $	*/
3 
4 /*-
5  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. Neither the name of the project nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  */
32 
33 /*-
34  * Copyright (c) 1982, 1986, 1993
35  *	The Regents of the University of California.  All rights reserved.
36  *
37  * Redistribution and use in source and binary forms, with or without
38  * modification, are permitted provided that the following conditions
39  * are met:
40  * 1. Redistributions of source code must retain the above copyright
41  *    notice, this list of conditions and the following disclaimer.
42  * 2. Redistributions in binary form must reproduce the above copyright
43  *    notice, this list of conditions and the following disclaimer in the
44  *    documentation and/or other materials provided with the distribution.
45  * 4. Neither the name of the University nor the names of its contributors
46  *    may be used to endorse or promote products derived from this software
47  *    without specific prior written permission.
48  *
49  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
50  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
51  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
52  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
53  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
54  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
55  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
56  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
57  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
58  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
59  * SUCH DAMAGE.
60  *
61  *	@(#)in_proto.c	8.1 (Berkeley) 6/10/93
62  */
63 
64 #include "opt_inet.h"
65 #include "opt_inet6.h"
66 #include "opt_ipsec.h"
67 #include "opt_carp.h"
68 
69 #include <sys/param.h>
70 #include <sys/socket.h>
71 #include <sys/socketvar.h>
72 #include <sys/protosw.h>
73 #include <sys/kernel.h>
74 #include <sys/domain.h>
75 #include <sys/mbuf.h>
76 #include <sys/systm.h>
77 #include <sys/sysctl.h>
78 
79 #include <net/if.h>
80 #include <net/radix.h>
81 #include <net/route.h>
82 
83 #include <netinet/in.h>
84 #include <netinet/in_systm.h>
85 #include <netinet/in_var.h>
86 #include <netinet/ip_encap.h>
87 #include <netinet/ip.h>
88 #include <netinet/ip_var.h>
89 #include <netinet/ip6.h>
90 #include <netinet6/ip6_var.h>
91 #include <netinet/icmp6.h>
92 
93 #include <netinet/tcp.h>
94 #include <netinet/tcp_timer.h>
95 #include <netinet/tcp_var.h>
96 #include <netinet/udp.h>
97 #include <netinet/udp_var.h>
98 #include <netinet6/tcp6_var.h>
99 #include <netinet6/raw_ip6.h>
100 #include <netinet6/udp6_var.h>
101 #include <netinet6/pim6_var.h>
102 #include <netinet6/nd6.h>
103 
104 #ifdef IPSEC
105 #include <netinet6/ipsec.h>
106 #ifdef INET6
107 #include <netinet6/ipsec6.h>
108 #endif
109 #include <netinet6/ah.h>
110 #ifdef INET6
111 #include <netinet6/ah6.h>
112 #endif
113 #ifdef IPSEC_ESP
114 #include <netinet6/esp.h>
115 #ifdef INET6
116 #include <netinet6/esp6.h>
117 #endif
118 #endif
119 #include <netinet6/ipcomp.h>
120 #ifdef INET6
121 #include <netinet6/ipcomp6.h>
122 #endif
123 #endif /* IPSEC */
124 
125 #ifdef DEV_CARP
126 #include <netinet/ip_carp.h>
127 #endif
128 
129 #ifdef FAST_IPSEC
130 #include <netipsec/ipsec6.h>
131 #define	IPSEC
132 #define	IPSEC_ESP
133 #define	ah6_input	ipsec6_common_input
134 #define	esp6_input	ipsec6_common_input
135 #define	ipcomp6_input	ipsec6_common_input
136 #endif /* FAST_IPSEC */
137 
138 #include <netinet6/ip6protosw.h>
139 
140 #include <net/net_osdep.h>
141 
142 /*
143  * TCP/IP protocol family: IP6, ICMP6, UDP, TCP.
144  */
145 
146 extern	struct domain inet6domain;
147 static struct pr_usrreqs nousrreqs;
148 
149 #define PR_LISTEN	0
150 #define PR_ABRTACPTDIS	0
151 
152 struct ip6protosw inet6sw[] = {
153 { 0,		&inet6domain,	IPPROTO_IPV6,	0,
154   0,		0,		0,		0,
155   0,
156   ip6_init,	0,		frag6_slowtimo,	frag6_drain,
157   &nousrreqs,
158 },
159 { SOCK_DGRAM,	&inet6domain,	IPPROTO_UDP,	PR_ATOMIC|PR_ADDR,
160   udp6_input,	0,		udp6_ctlinput,	ip6_ctloutput,
161   0,
162   0,		0,		0,		0,
163   &udp6_usrreqs,
164 },
165 { SOCK_STREAM,	&inet6domain,	IPPROTO_TCP,	PR_CONNREQUIRED|PR_WANTRCVD|PR_LISTEN,
166   tcp6_input,	0,		tcp6_ctlinput,	tcp_ctloutput,
167   0,
168 #ifdef INET	/* don't call initialization and timeout routines twice */
169   0,		0,		0,		tcp_drain,
170 #else
171   tcp_init,	tcp_fasttimo,	tcp_slowtimo,	tcp_drain,
172 #endif
173   &tcp6_usrreqs,
174 },
175 { SOCK_RAW,	&inet6domain,	IPPROTO_RAW,	PR_ATOMIC|PR_ADDR,
176   rip6_input,	rip6_output,	rip6_ctlinput,	rip6_ctloutput,
177   0,
178   0,		0,		0,		0,
179   &rip6_usrreqs
180 },
181 { SOCK_RAW,	&inet6domain,	IPPROTO_ICMPV6,	PR_ATOMIC|PR_ADDR|PR_LASTHDR,
182   icmp6_input,	rip6_output,	rip6_ctlinput,	rip6_ctloutput,
183   0,
184   icmp6_init,	icmp6_fasttimo,	0,		0,
185   &rip6_usrreqs
186 },
187 { SOCK_RAW,	&inet6domain,	IPPROTO_DSTOPTS,PR_ATOMIC|PR_ADDR,
188   dest6_input,	0,	 	0,		0,
189   0,
190   0,		0,		0,		0,
191   &nousrreqs
192 },
193 { SOCK_RAW,	&inet6domain,	IPPROTO_ROUTING,PR_ATOMIC|PR_ADDR,
194   route6_input,	0,	 	0,		0,
195   0,
196   0,		0,		0,		0,
197   &nousrreqs
198 },
199 { SOCK_RAW,	&inet6domain,	IPPROTO_FRAGMENT,PR_ATOMIC|PR_ADDR,
200   frag6_input,	0,	 	0,		0,
201   0,
202   0,		0,		0,		0,
203   &nousrreqs
204 },
205 #ifdef IPSEC
206 { SOCK_RAW,	&inet6domain,	IPPROTO_AH,	PR_ATOMIC|PR_ADDR,
207   ah6_input,	0,		0,		0,
208   0,
209   0,		0,		0,		0,
210   &nousrreqs,
211 },
212 #ifdef IPSEC_ESP
213 { SOCK_RAW,	&inet6domain,	IPPROTO_ESP,	PR_ATOMIC|PR_ADDR,
214   esp6_input,	0,
215   esp6_ctlinput,
216   0,
217   0,
218   0,		0,		0,		0,
219   &nousrreqs,
220 },
221 #endif
222 { SOCK_RAW,	&inet6domain,	IPPROTO_IPCOMP,	PR_ATOMIC|PR_ADDR,
223   ipcomp6_input, 0,	 	0,		0,
224   0,
225   0,		0,		0,		0,
226   &nousrreqs,
227 },
228 #endif /* IPSEC */
229 #ifdef INET
230 { SOCK_RAW,	&inet6domain,	IPPROTO_IPV4,	PR_ATOMIC|PR_ADDR|PR_LASTHDR,
231   encap6_input,	rip6_output, 	0,		rip6_ctloutput,
232   0,
233   encap_init,	0,		0,		0,
234   &rip6_usrreqs
235 },
236 #endif /* INET */
237 { SOCK_RAW,	&inet6domain,	IPPROTO_IPV6,	PR_ATOMIC|PR_ADDR|PR_LASTHDR,
238   encap6_input, rip6_output,	0,		rip6_ctloutput,
239   0,
240   encap_init,	0,		0,		0,
241   &rip6_usrreqs
242 },
243 { SOCK_RAW,     &inet6domain,	IPPROTO_PIM,	PR_ATOMIC|PR_ADDR|PR_LASTHDR,
244   pim6_input,	rip6_output,	0,              rip6_ctloutput,
245   0,
246   0,            0,              0,              0,
247   &rip6_usrreqs
248 },
249 #ifdef DEV_CARP
250 { SOCK_RAW,	&inet6domain,	IPPROTO_CARP,	PR_ATOMIC|PR_ADDR,
251   carp6_input,	rip6_output,	0,		rip6_ctloutput,
252   0,
253   0,            0,              0,              0,
254   &rip6_usrreqs
255 },
256 #endif /* DEV_CARP */
257 /* raw wildcard */
258 { SOCK_RAW,	&inet6domain,	0,		PR_ATOMIC|PR_ADDR,
259   rip6_input,	rip6_output,	0,		rip6_ctloutput,
260   0,
261   0,		0,		0,		0,
262   &rip6_usrreqs
263 },
264 };
265 
266 extern int in6_inithead __P((void **, int));
267 
268 struct domain inet6domain =
269     { AF_INET6, "internet6", 0, 0, 0,
270       (struct protosw *)inet6sw,
271       (struct protosw *)&inet6sw[sizeof(inet6sw)/sizeof(inet6sw[0])], 0,
272       in6_inithead,
273       offsetof(struct sockaddr_in6, sin6_addr) << 3,
274       sizeof(struct sockaddr_in6),
275       in6_domifattach, in6_domifdetach, };
276 
277 DOMAIN_SET(inet6);
278 
279 /*
280  * Internet configuration info
281  */
282 #ifndef	IPV6FORWARDING
283 #ifdef GATEWAY6
284 #define	IPV6FORWARDING	1	/* forward IP6 packets not for us */
285 #else
286 #define	IPV6FORWARDING	0	/* don't forward IP6 packets not for us */
287 #endif /* GATEWAY6 */
288 #endif /* !IPV6FORWARDING */
289 
290 #ifndef	IPV6_SENDREDIRECTS
291 #define	IPV6_SENDREDIRECTS	1
292 #endif
293 
294 int	ip6_forwarding = IPV6FORWARDING;	/* act as router? */
295 int	ip6_sendredirects = IPV6_SENDREDIRECTS;
296 int	ip6_defhlim = IPV6_DEFHLIM;
297 int	ip6_defmcasthlim = IPV6_DEFAULT_MULTICAST_HOPS;
298 int	ip6_accept_rtadv = 0;	/* "IPV6FORWARDING ? 0 : 1" is dangerous */
299 int	ip6_maxfragpackets;	/* initialized in frag6.c:frag6_init() */
300 int	ip6_maxfrags;	/* initialized in frag6.c:frag6_init() */
301 int	ip6_log_interval = 5;
302 int	ip6_hdrnestlimit = 50;	/* appropriate? */
303 int	ip6_dad_count = 1;	/* DupAddrDetectionTransmits */
304 int	ip6_auto_flowlabel = 1;
305 int	ip6_gif_hlim = 0;
306 int	ip6_use_deprecated = 1;	/* allow deprecated addr (RFC2462 5.5.4) */
307 int	ip6_rr_prune = 5;	/* router renumbering prefix
308 				 * walk list every 5 sec. */
309 int	ip6_v6only = 1;
310 
311 int	ip6_keepfaith = 0;
312 time_t	ip6_log_time = (time_t)0L;
313 
314 /* icmp6 */
315 /*
316  * BSDI4 defines these variables in in_proto.c...
317  * XXX: what if we don't define INET? Should we define pmtu6_expire
318  * or so? (jinmei@kame.net 19990310)
319  */
320 int pmtu_expire = 60*10;
321 int pmtu_probe = 60*2;
322 
323 /* raw IP6 parameters */
324 /*
325  * Nominal space allocated to a raw ip socket.
326  */
327 #define	RIPV6SNDQ	8192
328 #define	RIPV6RCVQ	8192
329 
330 u_long	rip6_sendspace = RIPV6SNDQ;
331 u_long	rip6_recvspace = RIPV6RCVQ;
332 
333 /* ICMPV6 parameters */
334 int	icmp6_rediraccept = 1;		/* accept and process redirects */
335 int	icmp6_redirtimeout = 10 * 60;	/* 10 minutes */
336 int	icmp6errppslim = 100;		/* 100pps */
337 int	icmp6_nodeinfo = 3;		/* enable/disable NI response */
338 
339 /* UDP on IP6 parameters */
340 int	udp6_sendspace = 9216;		/* really max datagram size */
341 int	udp6_recvspace = 40 * (1024 + sizeof(struct sockaddr_in6));
342 					/* 40 1K datagrams */
343 
344 /*
345  * sysctl related items.
346  */
347 SYSCTL_NODE(_net,	PF_INET6,	inet6,	CTLFLAG_RW,	0,
348 	"Internet6 Family");
349 
350 /* net.inet6 */
351 SYSCTL_NODE(_net_inet6,	IPPROTO_IPV6,	ip6,	CTLFLAG_RW, 0,	"IP6");
352 SYSCTL_NODE(_net_inet6,	IPPROTO_ICMPV6,	icmp6,	CTLFLAG_RW, 0,	"ICMP6");
353 SYSCTL_NODE(_net_inet6,	IPPROTO_UDP,	udp6,	CTLFLAG_RW, 0,	"UDP6");
354 SYSCTL_NODE(_net_inet6,	IPPROTO_TCP,	tcp6,	CTLFLAG_RW, 0,	"TCP6");
355 #ifdef IPSEC
356 SYSCTL_NODE(_net_inet6,	IPPROTO_ESP,	ipsec6,	CTLFLAG_RW, 0,	"IPSEC6");
357 #endif /* IPSEC */
358 
359 /* net.inet6.ip6 */
360 static int
361 sysctl_ip6_temppltime(SYSCTL_HANDLER_ARGS)
362 {
363 	int error = 0;
364 	int old;
365 
366 	error = SYSCTL_OUT(req, arg1, sizeof(int));
367 	if (error || !req->newptr)
368 		return (error);
369 	old = ip6_temp_preferred_lifetime;
370 	error = SYSCTL_IN(req, arg1, sizeof(int));
371 	if (ip6_temp_preferred_lifetime <
372 	    ip6_desync_factor + ip6_temp_regen_advance) {
373 		ip6_temp_preferred_lifetime = old;
374 		return (EINVAL);
375 	}
376 	return (error);
377 }
378 
379 static int
380 sysctl_ip6_tempvltime(SYSCTL_HANDLER_ARGS)
381 {
382 	int error = 0;
383 	int old;
384 
385 	error = SYSCTL_OUT(req, arg1, sizeof(int));
386 	if (error || !req->newptr)
387 		return (error);
388 	old = ip6_temp_valid_lifetime;
389 	error = SYSCTL_IN(req, arg1, sizeof(int));
390 	if (ip6_temp_valid_lifetime < ip6_temp_preferred_lifetime) {
391 		ip6_temp_preferred_lifetime = old;
392 		return (EINVAL);
393 	}
394 	return (error);
395 }
396 
397 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_FORWARDING,
398 	forwarding, CTLFLAG_RW, 	&ip6_forwarding,	0, "");
399 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_SENDREDIRECTS,
400 	redirect, CTLFLAG_RW,		&ip6_sendredirects,	0, "");
401 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_DEFHLIM,
402 	hlim, CTLFLAG_RW,		&ip6_defhlim,	0, "");
403 SYSCTL_STRUCT(_net_inet6_ip6, IPV6CTL_STATS, stats, CTLFLAG_RD,
404 	&ip6stat, ip6stat, "");
405 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_MAXFRAGPACKETS,
406 	maxfragpackets, CTLFLAG_RW,	&ip6_maxfragpackets,	0, "");
407 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_ACCEPT_RTADV,
408 	accept_rtadv, CTLFLAG_RW,	&ip6_accept_rtadv,	0, "");
409 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_KEEPFAITH,
410 	keepfaith, CTLFLAG_RW,		&ip6_keepfaith,	0, "");
411 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_LOG_INTERVAL,
412 	log_interval, CTLFLAG_RW,	&ip6_log_interval,	0, "");
413 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_HDRNESTLIMIT,
414 	hdrnestlimit, CTLFLAG_RW,	&ip6_hdrnestlimit,	0, "");
415 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_DAD_COUNT,
416 	dad_count, CTLFLAG_RW,	&ip6_dad_count,	0, "");
417 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_AUTO_FLOWLABEL,
418 	auto_flowlabel, CTLFLAG_RW,	&ip6_auto_flowlabel,	0, "");
419 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_DEFMCASTHLIM,
420 	defmcasthlim, CTLFLAG_RW,	&ip6_defmcasthlim,	0, "");
421 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_GIF_HLIM,
422 	gifhlim, CTLFLAG_RW,	&ip6_gif_hlim,			0, "");
423 SYSCTL_STRING(_net_inet6_ip6, IPV6CTL_KAME_VERSION,
424 	kame_version, CTLFLAG_RD,	__KAME_VERSION,		0, "");
425 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_USE_DEPRECATED,
426 	use_deprecated, CTLFLAG_RW,	&ip6_use_deprecated,	0, "");
427 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_RR_PRUNE,
428 	rr_prune, CTLFLAG_RW,	&ip6_rr_prune,			0, "");
429 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_USETEMPADDR,
430 	use_tempaddr, CTLFLAG_RW, &ip6_use_tempaddr,		0, "");
431 SYSCTL_OID(_net_inet6_ip6, IPV6CTL_TEMPPLTIME, temppltime,
432 	   CTLTYPE_INT|CTLFLAG_RW, &ip6_temp_preferred_lifetime, 0,
433 	   sysctl_ip6_temppltime, "I", "");
434 SYSCTL_OID(_net_inet6_ip6, IPV6CTL_TEMPVLTIME, tempvltime,
435 	   CTLTYPE_INT|CTLFLAG_RW, &ip6_temp_valid_lifetime, 0,
436 	   sysctl_ip6_tempvltime, "I", "");
437 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_V6ONLY,
438 	v6only,	CTLFLAG_RW,	&ip6_v6only,			0, "");
439 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_AUTO_LINKLOCAL,
440 	auto_linklocal, CTLFLAG_RW, &ip6_auto_linklocal,	0, "");
441 SYSCTL_STRUCT(_net_inet6_ip6, IPV6CTL_RIP6STATS, rip6stats, CTLFLAG_RD,
442 	&rip6stat, rip6stat, "");
443 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_PREFER_TEMPADDR,
444 	prefer_tempaddr, CTLFLAG_RW, &ip6_prefer_tempaddr,	0, "");
445 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_MAXFRAGS,
446 	maxfrags, CTLFLAG_RW,		&ip6_maxfrags,	0, "");
447 
448 /* net.inet6.icmp6 */
449 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_REDIRACCEPT,
450 	rediraccept, CTLFLAG_RW,	&icmp6_rediraccept,	0, "");
451 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_REDIRTIMEOUT,
452 	redirtimeout, CTLFLAG_RW,	&icmp6_redirtimeout,	0, "");
453 SYSCTL_STRUCT(_net_inet6_icmp6, ICMPV6CTL_STATS, stats, CTLFLAG_RD,
454 	&icmp6stat, icmp6stat, "");
455 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_ND6_PRUNE,
456 	nd6_prune, CTLFLAG_RW,		&nd6_prune,	0, "");
457 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_ND6_DELAY,
458 	nd6_delay, CTLFLAG_RW,		&nd6_delay,	0, "");
459 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_ND6_UMAXTRIES,
460 	nd6_umaxtries, CTLFLAG_RW,	&nd6_umaxtries,	0, "");
461 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_ND6_MMAXTRIES,
462 	nd6_mmaxtries, CTLFLAG_RW,	&nd6_mmaxtries,	0, "");
463 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_ND6_USELOOPBACK,
464 	nd6_useloopback, CTLFLAG_RW,	&nd6_useloopback, 0, "");
465 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_NODEINFO,
466 	nodeinfo, CTLFLAG_RW,	&icmp6_nodeinfo,	0, "");
467 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_ERRPPSLIMIT,
468 	errppslimit, CTLFLAG_RW,	&icmp6errppslim,	0, "");
469 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_ND6_MAXNUDHINT,
470 	nd6_maxnudhint, CTLFLAG_RW,	&nd6_maxnudhint, 0, "");
471 SYSCTL_INT(_net_inet6_icmp6, ICMPV6CTL_ND6_DEBUG,
472 	nd6_debug, CTLFLAG_RW,	&nd6_debug,		0, "");
473