Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/netinet6/in6_proto.c
104863 views
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
63
#include "opt_inet.h"
64
#include "opt_inet6.h"
65
#include "opt_ipsec.h"
66
#include "opt_ipstealth.h"
67
#include "opt_sctp.h"
68
#include "opt_route.h"
69
70
#include <sys/param.h>
71
#include <sys/socket.h>
72
#include <sys/socketvar.h>
73
#include <sys/proc.h>
74
#include <sys/protosw.h>
75
#include <sys/jail.h>
76
#include <sys/kernel.h>
77
#include <sys/malloc.h>
78
#include <sys/domain.h>
79
#include <sys/mbuf.h>
80
#include <sys/systm.h>
81
#include <sys/sysctl.h>
82
83
#include <net/if.h>
84
#include <net/if_var.h>
85
#include <netinet/in.h>
86
#include <netinet/ip6.h>
87
#include <netinet6/in6_var.h>
88
#include <netinet6/ip6_var.h>
89
#include <netinet/icmp6.h>
90
#include <netinet6/nd6.h>
91
#include <netinet6/raw_ip6.h>
92
93
/* netinet6/raw_ip6.c */
94
extern struct protosw rip6_protosw;
95
/* netinet6/udp6_usrreq.c */
96
extern struct protosw udp6_protosw, udplite6_protosw;
97
/* netinet/tcp_usrreq.c */
98
extern struct protosw tcp6_protosw;
99
/* netinet/sctp6_usrreq.c */
100
extern struct protosw sctp6_seqpacket_protosw, sctp6_stream_protosw;
101
102
/*
103
* TCP/IP protocol family: IP6, ICMP6, UDP, TCP.
104
*/
105
FEATURE(inet6, "Internet Protocol version 6");
106
107
struct domain inet6domain = {
108
.dom_family = AF_INET6,
109
.dom_name = "internet6",
110
.dom_rtattach = in6_inithead,
111
#ifdef VIMAGE
112
.dom_rtdetach = in6_detachhead,
113
#endif
114
.dom_nprotosw = 14,
115
.dom_protosw = {
116
&tcp6_protosw,
117
&udp6_protosw,
118
#ifdef SCTP
119
&sctp6_seqpacket_protosw,
120
&sctp6_stream_protosw,
121
#else
122
NULL, NULL,
123
#endif
124
&udplite6_protosw,
125
&rip6_protosw,
126
/* Spacer 8 times for loadable protocols. XXXGL: why 8? */
127
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
128
},
129
};
130
131
DOMAIN_SET(inet6);
132
133
/*
134
* Internet configuration info
135
*/
136
#ifndef IPV6FORWARDING
137
#ifdef GATEWAY6
138
#define IPV6FORWARDING 1 /* forward IP6 packets not for us */
139
#else
140
#define IPV6FORWARDING 0 /* don't forward IP6 packets not for us */
141
#endif /* GATEWAY6 */
142
#endif /* !IPV6FORWARDING */
143
144
#ifndef IPV6_SENDREDIRECTS
145
#define IPV6_SENDREDIRECTS 1
146
#endif
147
148
VNET_DEFINE(int, ip6_forwarding) = IPV6FORWARDING; /* act as router? */
149
VNET_DEFINE(int, ip6_sendredirects) = IPV6_SENDREDIRECTS;
150
VNET_DEFINE(int, ip6_defhlim) = IPV6_DEFHLIM;
151
VNET_DEFINE(int, ip6_defmcasthlim) = IPV6_DEFAULT_MULTICAST_HOPS;
152
VNET_DEFINE(int, ip6_accept_rtadv) = 0;
153
VNET_DEFINE(int, ip6_no_radr) = 0;
154
VNET_DEFINE(int, ip6_norbit_raif) = 0;
155
VNET_DEFINE(int, ip6_rfc6204w3) = 0;
156
VNET_DEFINE(int, ip6_hdrnestlimit) = 15;/* How many header options will we
157
* process? */
158
VNET_DEFINE(int, ip6_dad_count) = 1; /* DupAddrDetectionTransmits */
159
VNET_DEFINE(int, ip6_auto_flowlabel) = 1;
160
VNET_DEFINE(int, ip6_use_deprecated) = 1;/* allow deprecated addr
161
* (RFC2462 5.5.4) */
162
VNET_DEFINE(int, ip6_rr_prune) = 5; /* router renumbering prefix
163
* walk list every 5 sec. */
164
VNET_DEFINE(int, ip6_mcast_pmtu) = 0; /* enable pMTU discovery for multicast? */
165
VNET_DEFINE(int, ip6_v6only) = 1;
166
VNET_DEFINE(u_int, ip6_stableaddr_maxretries) = IP6_IDGEN_RETRIES;
167
168
#ifdef IPSTEALTH
169
VNET_DEFINE(int, ip6stealth) = 0;
170
#endif
171
VNET_DEFINE(bool, ip6_log_cannot_forward) = 1;
172
173
/*
174
* BSDI4 defines these variables in in_proto.c...
175
* XXX: what if we don't define INET? Should we define pmtu6_expire
176
* or so? ([email protected] 19990310)
177
*/
178
VNET_DEFINE(int, pmtu_expire) = 60*10;
179
VNET_DEFINE(int, pmtu_probe) = 60*2;
180
181
VNET_DEFINE_STATIC(int, ip6_log_interval) = 5;
182
VNET_DEFINE_STATIC(int, ip6_log_count) = 0;
183
VNET_DEFINE_STATIC(struct timeval, ip6_log_last) = { 0 };
184
185
#define V_ip6_log_interval VNET(ip6_log_interval)
186
#define V_ip6_log_count VNET(ip6_log_count)
187
#define V_ip6_log_last VNET(ip6_log_last)
188
189
/*
190
* sysctl related items.
191
*/
192
SYSCTL_NODE(_net, PF_INET6, inet6, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
193
"Internet6 Family");
194
195
/* net.inet6 */
196
SYSCTL_NODE(_net_inet6, IPPROTO_IPV6, ip6, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
197
"IP6");
198
SYSCTL_NODE(_net_inet6, IPPROTO_ICMPV6, icmp6, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
199
"ICMP6");
200
SYSCTL_NODE(_net_inet6, IPPROTO_UDP, udp6, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
201
"UDP6");
202
SYSCTL_NODE(_net_inet6, IPPROTO_TCP, tcp6, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
203
"TCP6");
204
#if defined(SCTP) || defined(SCTP_SUPPORT)
205
SYSCTL_NODE(_net_inet6, IPPROTO_SCTP, sctp6, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
206
"SCTP6");
207
#endif
208
#if defined(IPSEC) || defined(IPSEC_SUPPORT)
209
SYSCTL_NODE(_net_inet6, IPPROTO_ESP, ipsec6, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
210
"IPSEC6");
211
#endif /* IPSEC */
212
213
/* net.inet6.ip6 */
214
static int
215
sysctl_ip6_temppltime(SYSCTL_HANDLER_ARGS)
216
{
217
int error, val, ndf;
218
219
val = V_ip6_temp_preferred_lifetime;
220
error = sysctl_handle_int(oidp, &val, 0, req);
221
if (error != 0 || !req->newptr)
222
return (error);
223
ndf = TEMP_MAX_DESYNC_FACTOR_BASE + (val >> 2) + (val >> 3);
224
if (val < ndf + V_ip6_temp_regen_advance ||
225
val > V_ip6_temp_valid_lifetime)
226
return (EINVAL);
227
V_ip6_temp_preferred_lifetime = val;
228
V_ip6_temp_max_desync_factor = ndf;
229
V_ip6_desync_factor = arc4random() % ndf;
230
return (0);
231
}
232
233
static int
234
sysctl_ip6_tempvltime(SYSCTL_HANDLER_ARGS)
235
{
236
int error, val;
237
238
val = V_ip6_temp_valid_lifetime;
239
error = sysctl_handle_int(oidp, &val, 0, req);
240
if (error != 0 || !req->newptr)
241
return (error);
242
if (val < V_ip6_temp_preferred_lifetime)
243
return (EINVAL);
244
V_ip6_temp_valid_lifetime = val;
245
return (0);
246
}
247
248
int
249
ip6_log_ratelimit(void)
250
{
251
252
return (ppsratecheck(&V_ip6_log_last, &V_ip6_log_count,
253
V_ip6_log_interval));
254
}
255
256
SYSCTL_INT(_net_inet6_ip6, IPV6CTL_FORWARDING, forwarding,
257
CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_forwarding), 0,
258
"Enable forwarding of IPv6 packets between interfaces");
259
SYSCTL_INT(_net_inet6_ip6, IPV6CTL_SENDREDIRECTS, redirect,
260
CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_sendredirects), 0,
261
"Send ICMPv6 redirects for unforwardable IPv6 packets");
262
SYSCTL_INT(_net_inet6_ip6, IPV6CTL_DEFHLIM, hlim,
263
CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_defhlim), 0,
264
"Default hop limit to use for outgoing IPv6 packets");
265
SYSCTL_VNET_PCPUSTAT(_net_inet6_ip6, IPV6CTL_STATS, stats, struct ip6stat,
266
ip6stat,
267
"IP6 statistics (struct ip6stat, netinet6/ip6_var.h)");
268
SYSCTL_INT(_net_inet6_ip6, IPV6CTL_ACCEPT_RTADV, accept_rtadv,
269
CTLFLAG_VNET | CTLFLAG_RWTUN, &VNET_NAME(ip6_accept_rtadv), 0,
270
"Default value of per-interface flag for accepting ICMPv6 RA messages");
271
SYSCTL_INT(_net_inet6_ip6, IPV6CTL_NO_RADR, no_radr,
272
CTLFLAG_VNET | CTLFLAG_RWTUN, &VNET_NAME(ip6_no_radr), 0,
273
"Default value of per-interface flag to control whether routers "
274
"sending ICMPv6 RA messages on that interface are added into the "
275
"default router list");
276
SYSCTL_INT(_net_inet6_ip6, IPV6CTL_NORBIT_RAIF, norbit_raif,
277
CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_norbit_raif), 0,
278
"Always set clear the R flag in ICMPv6 NA messages when accepting RA "
279
"on the interface");
280
SYSCTL_INT(_net_inet6_ip6, IPV6CTL_RFC6204W3, rfc6204w3,
281
CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_rfc6204w3), 0,
282
"Accept the default router list from ICMPv6 RA messages even "
283
"when packet forwarding is enabled");
284
SYSCTL_INT(_net_inet6_ip6, IPV6CTL_LOG_INTERVAL, log_interval,
285
CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_log_interval), 0,
286
"Frequency in seconds at which to log IPv6 forwarding errors");
287
SYSCTL_INT(_net_inet6_ip6, IPV6CTL_HDRNESTLIMIT, hdrnestlimit,
288
CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_hdrnestlimit), 0,
289
"Default maximum number of IPv6 extension headers permitted on "
290
"incoming IPv6 packets, 0 for no artificial limit");
291
SYSCTL_INT(_net_inet6_ip6, IPV6CTL_DAD_COUNT, dad_count,
292
CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_dad_count), 0,
293
"Number of ICMPv6 NS messages sent during duplicate address detection");
294
SYSCTL_INT(_net_inet6_ip6, IPV6CTL_AUTO_FLOWLABEL, auto_flowlabel,
295
CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_auto_flowlabel), 0,
296
"Provide an IPv6 flowlabel in outbound packets");
297
SYSCTL_INT(_net_inet6_ip6, IPV6CTL_DEFMCASTHLIM, defmcasthlim,
298
CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_defmcasthlim), 0,
299
"Default hop limit for IPv6 multicast packets originating from this "
300
"node");
301
SYSCTL_STRING(_net_inet6_ip6, IPV6CTL_KAME_VERSION, kame_version,
302
CTLFLAG_RD, __KAME_VERSION, 0,
303
"KAME version string");
304
SYSCTL_INT(_net_inet6_ip6, IPV6CTL_USE_DEPRECATED, use_deprecated,
305
CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_use_deprecated), 0,
306
"Allow the use of addresses whose preferred lifetimes have expired");
307
SYSCTL_INT(_net_inet6_ip6, IPV6CTL_RR_PRUNE, rr_prune,
308
CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_rr_prune), 0,
309
""); /* XXX unused */
310
SYSCTL_INT(_net_inet6_ip6, IPV6CTL_USETEMPADDR, use_tempaddr,
311
CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_use_tempaddr), 0,
312
"Create RFC3041 temporary addresses for autoconfigured addresses");
313
SYSCTL_BOOL(_net_inet6_ip6, IPV6CTL_USESTABLEADDR, use_stableaddr,
314
CTLFLAG_VNET | CTLFLAG_RWTUN, &VNET_NAME(ip6_use_stableaddr), 0,
315
"Create RFC7217 semantically opaque address for autoconfigured addresses (default for new interfaces)");
316
SYSCTL_UINT(_net_inet6_ip6, IPV6CTL_STABLEADDR_MAXRETRIES, stableaddr_maxretries,
317
CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_stableaddr_maxretries), IP6_IDGEN_RETRIES,
318
"RFC7217 semantically opaque address DAD max retries");
319
SYSCTL_INT(_net_inet6_ip6, IPV6CTL_STABLEADDR_NETIFSRC, stableaddr_netifsource,
320
CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_stableaddr_netifsource), IP6_STABLEADDR_NETIFSRC_NAME,
321
"RFC7217 semantically opaque address Net_Iface source (0 - name, 1 - ID, 2 - MAC addr)");
322
SYSCTL_PROC(_net_inet6_ip6, IPV6CTL_TEMPPLTIME, temppltime,
323
CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_NEEDGIANT,
324
NULL, 0, sysctl_ip6_temppltime, "I",
325
"Maximum preferred lifetime for temporary addresses");
326
SYSCTL_PROC(_net_inet6_ip6, IPV6CTL_TEMPVLTIME, tempvltime,
327
CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_NEEDGIANT,
328
NULL, 0, sysctl_ip6_tempvltime, "I",
329
"Maximum valid lifetime for temporary addresses");
330
SYSCTL_INT(_net_inet6_ip6, IPV6CTL_V6ONLY, v6only,
331
CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_v6only), 0,
332
"Restrict AF_INET6 sockets to IPv6 addresses only");
333
SYSCTL_INT(_net_inet6_ip6, IPV6CTL_AUTO_LINKLOCAL, auto_linklocal,
334
CTLFLAG_VNET | CTLFLAG_RWTUN, &VNET_NAME(ip6_auto_linklocal), 0,
335
"Default value of per-interface flag for automatically adding an IPv6 "
336
"link-local address to interfaces when attached");
337
SYSCTL_VNET_PCPUSTAT(_net_inet6_ip6, IPV6CTL_RIP6STATS, rip6stats,
338
struct rip6stat, rip6stat,
339
"Raw IP6 statistics (struct rip6stat, netinet6/raw_ip6.h)");
340
SYSCTL_INT(_net_inet6_ip6, IPV6CTL_PREFER_TEMPADDR, prefer_tempaddr,
341
CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_prefer_tempaddr), 0,
342
"Prefer RFC3041 temporary addresses in source address selection");
343
SYSCTL_INT(_net_inet6_ip6, IPV6CTL_USE_DEFAULTZONE, use_defaultzone,
344
CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_use_defzone), 0,
345
"Use the default scope zone when none is specified");
346
SYSCTL_INT(_net_inet6_ip6, IPV6CTL_MCAST_PMTU, mcast_pmtu,
347
CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_mcast_pmtu), 0,
348
"Enable path MTU discovery for multicast packets");
349
#ifdef IPSTEALTH
350
SYSCTL_INT(_net_inet6_ip6, IPV6CTL_STEALTH, stealth, CTLFLAG_VNET | CTLFLAG_RW,
351
&VNET_NAME(ip6stealth), 0,
352
"Forward IPv6 packets without decrementing their TTL");
353
#endif
354
SYSCTL_BOOL(_net_inet6_ip6, OID_AUTO,
355
log_cannot_forward, CTLFLAG_VNET | CTLFLAG_RW,
356
&VNET_NAME(ip6_log_cannot_forward), 1,
357
"Log packets that cannot be forwarded");
358
359