]>
Commit | Line | Data |
---|---|---|
2d21ac55 | 1 | /* |
39037602 | 2 | * Copyright (c) 2003-2016 Apple Inc. All rights reserved. |
2d21ac55 A |
3 | * |
4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ | |
5 | * | |
6 | * This file contains Original Code and/or Modifications of Original Code | |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. The rights granted to you under the License | |
10 | * may not be used to create, or enable the creation or redistribution of, | |
11 | * unlawful or unlicensed copies of an Apple operating system, or to | |
12 | * circumvent, violate, or enable the circumvention or violation of, any | |
13 | * terms of an Apple operating system software license agreement. | |
14 | * | |
15 | * Please obtain a copy of the License at | |
16 | * http://www.opensource.apple.com/apsl/ and read it before using this file. | |
17 | * | |
18 | * The Original Code and all software distributed under the License are | |
19 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
20 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
21 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
22 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. | |
23 | * Please see the License for the specific language governing rights and | |
24 | * limitations under the License. | |
25 | * | |
26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ | |
27 | */ | |
28 | ||
1c79356b A |
29 | /* |
30 | * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. | |
31 | * All rights reserved. | |
32 | * | |
33 | * Redistribution and use in source and binary forms, with or without | |
34 | * modification, are permitted provided that the following conditions | |
35 | * are met: | |
36 | * 1. Redistributions of source code must retain the above copyright | |
37 | * notice, this list of conditions and the following disclaimer. | |
38 | * 2. Redistributions in binary form must reproduce the above copyright | |
39 | * notice, this list of conditions and the following disclaimer in the | |
40 | * documentation and/or other materials provided with the distribution. | |
41 | * 3. Neither the name of the project nor the names of its contributors | |
42 | * may be used to endorse or promote products derived from this software | |
43 | * without specific prior written permission. | |
44 | * | |
45 | * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND | |
46 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
47 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
48 | * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE | |
49 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
50 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
51 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
52 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
53 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
54 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
55 | * SUCH DAMAGE. | |
56 | */ | |
57 | ||
58 | /* | |
59 | * Copyright 1994, 1995 Massachusetts Institute of Technology | |
60 | * | |
61 | * Permission to use, copy, modify, and distribute this software and | |
62 | * its documentation for any purpose and without fee is hereby | |
63 | * granted, provided that both the above copyright notice and this | |
64 | * permission notice appear in all copies, that both the above | |
65 | * copyright notice and this permission notice appear in all | |
66 | * supporting documentation, and that the name of M.I.T. not be used | |
67 | * in advertising or publicity pertaining to distribution of the | |
68 | * software without specific, written prior permission. M.I.T. makes | |
69 | * no representations about the suitability of this software for any | |
70 | * purpose. It is provided "as is" without express or implied | |
71 | * warranty. | |
72 | * | |
73 | * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''. M.I.T. DISCLAIMS | |
74 | * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE, | |
75 | * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | |
76 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT | |
77 | * SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
78 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
79 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF | |
80 | * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | |
81 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | |
82 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT | |
83 | * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
84 | * SUCH DAMAGE. | |
85 | * | |
86 | */ | |
87 | ||
88 | /* | |
89 | * This code does two things necessary for the enhanced TCP metrics to | |
90 | * function in a useful manner: | |
91 | * 1) It marks all non-host routes as `cloning', thus ensuring that | |
92 | * every actual reference to such a route actually gets turned | |
93 | * into a reference to a host route to the specific destination | |
94 | * requested. | |
95 | * 2) When such routes lose all their references, it arranges for them | |
96 | * to be deleted in some random collection of circumstances, so that | |
97 | * a large quantity of stale routing data is not kept in kernel memory | |
98 | * indefinitely. See in6_rtqtimo() below for the exact mechanism. | |
99 | */ | |
100 | ||
101 | #include <sys/param.h> | |
102 | #include <sys/systm.h> | |
103 | #include <sys/kernel.h> | |
104 | #include <sys/sysctl.h> | |
105 | #include <kern/queue.h> | |
106 | #include <sys/socket.h> | |
107 | #include <sys/socketvar.h> | |
6d2010ae | 108 | #include <sys/protosw.h> |
1c79356b A |
109 | #include <sys/mbuf.h> |
110 | #include <sys/syslog.h> | |
6d2010ae | 111 | #include <sys/mcache.h> |
fe8ab488 | 112 | #include <kern/locks.h> |
1c79356b A |
113 | |
114 | #include <net/if.h> | |
115 | #include <net/route.h> | |
116 | #include <netinet/in.h> | |
1c79356b | 117 | #include <netinet/ip_var.h> |
1c79356b A |
118 | #include <netinet/in_var.h> |
119 | ||
120 | #include <netinet/ip6.h> | |
121 | #include <netinet6/ip6_var.h> | |
122 | ||
123 | #include <netinet/icmp6.h> | |
124 | ||
1c79356b A |
125 | #include <netinet/tcp.h> |
126 | #include <netinet/tcp_seq.h> | |
127 | #include <netinet/tcp_timer.h> | |
128 | #include <netinet/tcp_var.h> | |
1c79356b | 129 | |
6d2010ae | 130 | extern int tvtohz(struct timeval *); |
1c79356b | 131 | |
39236c6e A |
132 | static int in6_rtqtimo_run; /* in6_rtqtimo is scheduled to run */ |
133 | static void in6_rtqtimo(void *); | |
134 | static void in6_sched_rtqtimo(struct timeval *); | |
135 | ||
136 | static struct radix_node *in6_addroute(void *, void *, struct radix_node_head *, | |
137 | struct radix_node *); | |
138 | static struct radix_node *in6_deleteroute(void *, void *, | |
139 | struct radix_node_head *); | |
140 | static struct radix_node *in6_matroute(void *, struct radix_node_head *); | |
c910b4d9 A |
141 | static struct radix_node *in6_matroute_args(void *, struct radix_node_head *, |
142 | rn_matchf_t *, void *); | |
39236c6e A |
143 | static void in6_clsroute(struct radix_node *, struct radix_node_head *); |
144 | static int in6_rtqkill(struct radix_node *, void *); | |
c910b4d9 | 145 | |
39236c6e | 146 | #define RTPRF_OURS RTF_PROTO3 /* set on routes we manage */ |
1c79356b | 147 | |
b0d623f7 A |
148 | /* |
149 | * Accessed by in6_addroute(), in6_deleteroute() and in6_rtqkill(), during | |
150 | * which the routing lock (rnh_lock) is held and thus protects the variable. | |
151 | */ | |
39236c6e | 152 | static int in6dynroutes; |
b0d623f7 | 153 | |
1c79356b A |
154 | /* |
155 | * Do what we need to do when inserting a route. | |
156 | */ | |
157 | static struct radix_node * | |
158 | in6_addroute(void *v_arg, void *n_arg, struct radix_node_head *head, | |
39236c6e | 159 | struct radix_node *treenodes) |
1c79356b A |
160 | { |
161 | struct rtentry *rt = (struct rtentry *)treenodes; | |
316670eb | 162 | struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)(void *)rt_key(rt); |
1c79356b | 163 | struct radix_node *ret; |
39236c6e A |
164 | char dbuf[MAX_IPv6_STR_LEN], gbuf[MAX_IPv6_STR_LEN]; |
165 | uint32_t flags = rt->rt_flags; | |
166 | boolean_t verbose = (rt_verbose > 1); | |
1c79356b | 167 | |
b0d623f7 A |
168 | lck_mtx_assert(rnh_lock, LCK_MTX_ASSERT_OWNED); |
169 | RT_LOCK_ASSERT_HELD(rt); | |
170 | ||
39236c6e A |
171 | if (verbose) |
172 | rt_str(rt, dbuf, sizeof (dbuf), gbuf, sizeof (gbuf)); | |
173 | ||
b0d623f7 A |
174 | /* |
175 | * If this is a dynamic route (which is created via Redirect) and | |
176 | * we already have the maximum acceptable number of such route entries, | |
177 | * reject creating a new one. We could initiate garbage collection to | |
178 | * make available space right now, but the benefit would probably not | |
179 | * be worth the cleaning overhead; we only have to endure a slightly | |
39236c6e | 180 | * suboptimal path even without the redirected route. |
b0d623f7 | 181 | */ |
39236c6e | 182 | if ((rt->rt_flags & RTF_DYNAMIC) && |
b0d623f7 A |
183 | ip6_maxdynroutes >= 0 && in6dynroutes >= ip6_maxdynroutes) |
184 | return (NULL); | |
185 | ||
1c79356b A |
186 | /* |
187 | * For IPv6, all unicast non-host routes are automatically cloning. | |
188 | */ | |
189 | if (IN6_IS_ADDR_MULTICAST(&sin6->sin6_addr)) | |
190 | rt->rt_flags |= RTF_MULTICAST; | |
191 | ||
39236c6e | 192 | if (!(rt->rt_flags & (RTF_HOST | RTF_CLONING | RTF_MULTICAST))) |
1c79356b | 193 | rt->rt_flags |= RTF_PRCLONING; |
1c79356b A |
194 | |
195 | /* | |
196 | * A little bit of help for both IPv6 output and input: | |
197 | * For local addresses, we make sure that RTF_LOCAL is set, | |
198 | * with the thought that this might one day be used to speed up | |
199 | * ip_input(). | |
200 | * | |
201 | * We also mark routes to multicast addresses as such, because | |
202 | * it's easy to do and might be useful (but this is much more | |
203 | * dubious since it's so easy to inspect the address). (This | |
204 | * is done above.) | |
205 | * | |
206 | * XXX | |
207 | * should elaborate the code. | |
208 | */ | |
209 | if (rt->rt_flags & RTF_HOST) { | |
6d2010ae | 210 | IFA_LOCK_SPIN(rt->rt_ifa); |
39236c6e A |
211 | if (IN6_ARE_ADDR_EQUAL(&satosin6(rt->rt_ifa->ifa_addr)-> |
212 | sin6_addr, &sin6->sin6_addr)) { | |
1c79356b A |
213 | rt->rt_flags |= RTF_LOCAL; |
214 | } | |
6d2010ae | 215 | IFA_UNLOCK(rt->rt_ifa); |
1c79356b A |
216 | } |
217 | ||
39236c6e A |
218 | if (!rt->rt_rmx.rmx_mtu && !(rt->rt_rmx.rmx_locks & RTV_MTU) && |
219 | rt->rt_ifp) | |
1c79356b A |
220 | rt->rt_rmx.rmx_mtu = rt->rt_ifp->if_mtu; |
221 | ||
222 | ret = rn_addroute(v_arg, n_arg, head, treenodes); | |
b0d623f7 | 223 | if (ret == NULL && (rt->rt_flags & RTF_HOST)) { |
1c79356b A |
224 | struct rtentry *rt2; |
225 | /* | |
226 | * We are trying to add a host route, but can't. | |
227 | * Find out if it is because of an | |
39236c6e | 228 | * ND6 entry and delete it if so. |
1c79356b | 229 | */ |
6d2010ae A |
230 | rt2 = rtalloc1_scoped_locked((struct sockaddr *)sin6, 0, |
231 | RTF_CLONING | RTF_PRCLONING, sin6_get_ifscope(rt_key(rt))); | |
39236c6e A |
232 | if (rt2 != NULL) { |
233 | char dbufc[MAX_IPv6_STR_LEN]; | |
234 | ||
b0d623f7 | 235 | RT_LOCK(rt2); |
39236c6e A |
236 | if (verbose) |
237 | rt_str(rt2, dbufc, sizeof (dbufc), NULL, 0); | |
238 | ||
b0d623f7 A |
239 | if ((rt2->rt_flags & RTF_LLINFO) && |
240 | (rt2->rt_flags & RTF_HOST) && | |
241 | rt2->rt_gateway != NULL && | |
242 | rt2->rt_gateway->sa_family == AF_LINK) { | |
39236c6e A |
243 | if (verbose) { |
244 | log(LOG_DEBUG, "%s: unable to insert " | |
245 | "route to %s:%s, flags=%b, due to " | |
246 | "existing ND6 route %s->%s " | |
247 | "flags=%b, attempting to delete\n", | |
248 | __func__, dbuf, | |
249 | (rt->rt_ifp != NULL) ? | |
250 | rt->rt_ifp->if_xname : "", | |
251 | rt->rt_flags, RTF_BITS, | |
252 | dbufc, (rt2->rt_ifp != NULL) ? | |
253 | rt2->rt_ifp->if_xname : "", | |
254 | rt2->rt_flags, RTF_BITS); | |
255 | } | |
b0d623f7 A |
256 | /* |
257 | * Safe to drop rt_lock and use rt_key, | |
258 | * rt_gateway, since holding rnh_lock here | |
259 | * prevents another thread from calling | |
260 | * rt_setgate() on this route. | |
261 | */ | |
262 | RT_UNLOCK(rt2); | |
263 | (void) rtrequest_locked(RTM_DELETE, rt_key(rt2), | |
264 | rt2->rt_gateway, rt_mask(rt2), | |
39236c6e | 265 | rt2->rt_flags, NULL); |
1c79356b | 266 | ret = rn_addroute(v_arg, n_arg, head, |
39236c6e | 267 | treenodes); |
b0d623f7 A |
268 | } else { |
269 | RT_UNLOCK(rt2); | |
1c79356b | 270 | } |
91447636 | 271 | rtfree_locked(rt2); |
1c79356b | 272 | } |
b0d623f7 | 273 | } else if (ret == NULL && (rt->rt_flags & RTF_CLONING)) { |
1c79356b A |
274 | struct rtentry *rt2; |
275 | /* | |
276 | * We are trying to add a net route, but can't. | |
277 | * The following case should be allowed, so we'll make a | |
278 | * special check for this: | |
279 | * Two IPv6 addresses with the same prefix is assigned | |
280 | * to a single interrface. | |
281 | * # ifconfig if0 inet6 3ffe:0501::1 prefix 64 alias (*1) | |
282 | * # ifconfig if0 inet6 3ffe:0501::2 prefix 64 alias (*2) | |
283 | * In this case, (*1) and (*2) want to add the same | |
284 | * net route entry, 3ffe:0501:: -> if0. | |
285 | * This case should not raise an error. | |
286 | */ | |
6d2010ae A |
287 | rt2 = rtalloc1_scoped_locked((struct sockaddr *)sin6, 0, |
288 | RTF_CLONING | RTF_PRCLONING, sin6_get_ifscope(rt_key(rt))); | |
39236c6e | 289 | if (rt2 != NULL) { |
b0d623f7 | 290 | RT_LOCK(rt2); |
39236c6e A |
291 | if ((rt2->rt_flags & (RTF_CLONING|RTF_HOST| |
292 | RTF_GATEWAY)) == RTF_CLONING && | |
293 | rt2->rt_gateway && | |
294 | rt2->rt_gateway->sa_family == AF_LINK && | |
295 | rt2->rt_ifp == rt->rt_ifp) { | |
1c79356b A |
296 | ret = rt2->rt_nodes; |
297 | } | |
b0d623f7 | 298 | RT_UNLOCK(rt2); |
91447636 | 299 | rtfree_locked(rt2); |
1c79356b A |
300 | } |
301 | } | |
b0d623f7 | 302 | |
39236c6e | 303 | if (ret != NULL && (rt->rt_flags & RTF_DYNAMIC)) |
b0d623f7 A |
304 | in6dynroutes++; |
305 | ||
39236c6e A |
306 | if (!verbose) |
307 | goto done; | |
308 | ||
309 | if (ret != NULL) { | |
310 | if (flags != rt->rt_flags) { | |
311 | log(LOG_DEBUG, "%s: route to %s->%s->%s inserted, " | |
312 | "oflags=%b, flags=%b\n", __func__, | |
313 | dbuf, gbuf, (rt->rt_ifp != NULL) ? | |
314 | rt->rt_ifp->if_xname : "", flags, RTF_BITS, | |
315 | rt->rt_flags, RTF_BITS); | |
316 | } else { | |
317 | log(LOG_DEBUG, "%s: route to %s->%s->%s inserted, " | |
318 | "flags=%b\n", __func__, dbuf, gbuf, | |
319 | (rt->rt_ifp != NULL) ? rt->rt_ifp->if_xname : "", | |
320 | rt->rt_flags, RTF_BITS); | |
321 | } | |
322 | } else { | |
323 | log(LOG_DEBUG, "%s: unable to insert route to %s->%s->%s, " | |
324 | "flags=%b, already exists\n", __func__, dbuf, gbuf, | |
325 | (rt->rt_ifp != NULL) ? rt->rt_ifp->if_xname : "", | |
326 | rt->rt_flags, RTF_BITS); | |
327 | } | |
328 | done: | |
329 | return (ret); | |
1c79356b A |
330 | } |
331 | ||
b0d623f7 | 332 | static struct radix_node * |
39236c6e | 333 | in6_deleteroute(void *v_arg, void *netmask_arg, struct radix_node_head *head) |
b0d623f7 A |
334 | { |
335 | struct radix_node *rn; | |
336 | ||
337 | lck_mtx_assert(rnh_lock, LCK_MTX_ASSERT_OWNED); | |
338 | ||
339 | rn = rn_delete(v_arg, netmask_arg, head); | |
340 | if (rn != NULL) { | |
341 | struct rtentry *rt = (struct rtentry *)rn; | |
39236c6e A |
342 | |
343 | RT_LOCK(rt); | |
344 | if (rt->rt_flags & RTF_DYNAMIC) | |
b0d623f7 | 345 | in6dynroutes--; |
39236c6e A |
346 | if (rt_verbose > 1) { |
347 | char dbuf[MAX_IPv6_STR_LEN], gbuf[MAX_IPv6_STR_LEN]; | |
348 | ||
349 | rt_str(rt, dbuf, sizeof (dbuf), gbuf, sizeof (gbuf)); | |
350 | log(LOG_DEBUG, "%s: route to %s->%s->%s deleted, " | |
351 | "flags=%b\n", __func__, dbuf, gbuf, | |
352 | (rt->rt_ifp != NULL) ? rt->rt_ifp->if_xname : "", | |
353 | rt->rt_flags, RTF_BITS); | |
354 | } | |
b0d623f7 A |
355 | RT_UNLOCK(rt); |
356 | } | |
b0d623f7 A |
357 | return (rn); |
358 | } | |
359 | ||
6d2010ae A |
360 | /* |
361 | * Validate (unexpire) an expiring AF_INET6 route. | |
362 | */ | |
363 | struct radix_node * | |
364 | in6_validate(struct radix_node *rn) | |
365 | { | |
366 | struct rtentry *rt = (struct rtentry *)rn; | |
367 | ||
368 | RT_LOCK_ASSERT_HELD(rt); | |
369 | ||
370 | /* This is first reference? */ | |
39236c6e A |
371 | if (rt->rt_refcnt == 0) { |
372 | if (rt_verbose > 2) { | |
373 | char dbuf[MAX_IPv6_STR_LEN], gbuf[MAX_IPv6_STR_LEN]; | |
374 | ||
375 | rt_str(rt, dbuf, sizeof (dbuf), gbuf, sizeof (gbuf)); | |
376 | log(LOG_DEBUG, "%s: route to %s->%s->%s validated, " | |
377 | "flags=%b\n", __func__, dbuf, gbuf, | |
378 | (rt->rt_ifp != NULL) ? rt->rt_ifp->if_xname : "", | |
379 | rt->rt_flags, RTF_BITS); | |
380 | } | |
381 | ||
382 | /* | |
383 | * It's one of ours; unexpire it. If the timer is already | |
384 | * scheduled, let it run later as it won't re-arm itself | |
385 | * if there's nothing to do. | |
386 | */ | |
387 | if (rt->rt_flags & RTPRF_OURS) { | |
388 | rt->rt_flags &= ~RTPRF_OURS; | |
389 | rt_setexpire(rt, 0); | |
390 | } | |
6d2010ae A |
391 | } |
392 | return (rn); | |
393 | } | |
394 | ||
c910b4d9 A |
395 | /* |
396 | * Similar to in6_matroute_args except without the leaf-matching parameters. | |
397 | */ | |
398 | static struct radix_node * | |
399 | in6_matroute(void *v_arg, struct radix_node_head *head) | |
400 | { | |
401 | return (in6_matroute_args(v_arg, head, NULL, NULL)); | |
402 | } | |
403 | ||
1c79356b A |
404 | /* |
405 | * This code is the inverse of in6_clsroute: on first reference, if we | |
406 | * were managing the route, stop doing so and set the expiration timer | |
407 | * back off again. | |
408 | */ | |
409 | static struct radix_node * | |
c910b4d9 A |
410 | in6_matroute_args(void *v_arg, struct radix_node_head *head, |
411 | rn_matchf_t *f, void *w) | |
1c79356b | 412 | { |
c910b4d9 | 413 | struct radix_node *rn = rn_match_args(v_arg, head, f, w); |
1c79356b | 414 | |
6d2010ae A |
415 | if (rn != NULL) { |
416 | RT_LOCK_SPIN((struct rtentry *)rn); | |
417 | in6_validate(rn); | |
418 | RT_UNLOCK((struct rtentry *)rn); | |
1c79356b | 419 | } |
c910b4d9 | 420 | return (rn); |
1c79356b A |
421 | } |
422 | ||
9bccf70c A |
423 | SYSCTL_DECL(_net_inet6_ip6); |
424 | ||
39236c6e A |
425 | /* one hour is ``really old'' */ |
426 | static uint32_t rtq_reallyold = 60*60; | |
427 | SYSCTL_UINT(_net_inet6_ip6, IPV6CTL_RTEXPIRE, rtexpire, | |
428 | CTLFLAG_RW | CTLFLAG_LOCKED, &rtq_reallyold, 0, ""); | |
b0d623f7 | 429 | |
39236c6e A |
430 | /* never automatically crank down to less */ |
431 | static uint32_t rtq_minreallyold = 10; | |
432 | SYSCTL_UINT(_net_inet6_ip6, IPV6CTL_RTMINEXPIRE, rtminexpire, | |
433 | CTLFLAG_RW | CTLFLAG_LOCKED, &rtq_minreallyold, 0, ""); | |
b0d623f7 | 434 | |
39236c6e A |
435 | /* 128 cached routes is ``too many'' */ |
436 | static uint32_t rtq_toomany = 128; | |
437 | SYSCTL_UINT(_net_inet6_ip6, IPV6CTL_RTMAXCACHE, rtmaxcache, | |
438 | CTLFLAG_RW | CTLFLAG_LOCKED, &rtq_toomany, 0, ""); | |
1c79356b A |
439 | |
440 | /* | |
441 | * On last reference drop, mark the route as belong to us so that it can be | |
442 | * timed out. | |
443 | */ | |
444 | static void | |
39236c6e | 445 | in6_clsroute(struct radix_node *rn, struct radix_node_head *head) |
1c79356b | 446 | { |
39236c6e A |
447 | #pragma unused(head) |
448 | char dbuf[MAX_IPv6_STR_LEN], gbuf[MAX_IPv6_STR_LEN]; | |
1c79356b | 449 | struct rtentry *rt = (struct rtentry *)rn; |
39236c6e | 450 | boolean_t verbose = (rt_verbose > 1); |
1c79356b | 451 | |
b0d623f7 A |
452 | lck_mtx_assert(rnh_lock, LCK_MTX_ASSERT_OWNED); |
453 | RT_LOCK_ASSERT_HELD(rt); | |
454 | ||
1c79356b A |
455 | if (!(rt->rt_flags & RTF_UP)) |
456 | return; /* prophylactic measures */ | |
457 | ||
458 | if ((rt->rt_flags & (RTF_LLINFO | RTF_HOST)) != RTF_HOST) | |
459 | return; | |
460 | ||
b0d623f7 A |
461 | if (rt->rt_flags & RTPRF_OURS) |
462 | return; | |
463 | ||
464 | if (!(rt->rt_flags & (RTF_WASCLONED | RTF_DYNAMIC))) | |
1c79356b A |
465 | return; |
466 | ||
39236c6e A |
467 | if (verbose) |
468 | rt_str(rt, dbuf, sizeof (dbuf), gbuf, sizeof (gbuf)); | |
469 | ||
1c79356b | 470 | /* |
2d21ac55 A |
471 | * Delete the route immediately if RTF_DELCLONE is set or |
472 | * if route caching is disabled (rtq_reallyold set to 0). | |
473 | * Otherwise, let it expire and be deleted by in6_rtqkill(). | |
1c79356b | 474 | */ |
2d21ac55 | 475 | if ((rt->rt_flags & RTF_DELCLONE) || rtq_reallyold == 0) { |
39236c6e A |
476 | int err; |
477 | ||
478 | if (verbose) { | |
479 | log(LOG_DEBUG, "%s: deleting route to %s->%s->%s, " | |
480 | "flags=%b\n", __func__, dbuf, gbuf, | |
481 | (rt->rt_ifp != NULL) ? rt->rt_ifp->if_xname : "", | |
482 | rt->rt_flags, RTF_BITS); | |
483 | } | |
2d21ac55 A |
484 | /* |
485 | * Delete the route from the radix tree but since we are | |
486 | * called when the route's reference count is 0, don't | |
487 | * deallocate it until we return from this routine by | |
488 | * telling rtrequest that we're interested in it. | |
b0d623f7 A |
489 | * Safe to drop rt_lock and use rt_key, rt_gateway, |
490 | * since holding rnh_lock here prevents another thread | |
491 | * from calling rt_setgate() on this route. | |
2d21ac55 | 492 | */ |
b0d623f7 | 493 | RT_UNLOCK(rt); |
39236c6e A |
494 | err = rtrequest_locked(RTM_DELETE, rt_key(rt), |
495 | rt->rt_gateway, rt_mask(rt), rt->rt_flags, &rt); | |
496 | if (err == 0) { | |
2d21ac55 | 497 | /* Now let the caller free it */ |
b0d623f7 A |
498 | RT_LOCK(rt); |
499 | RT_REMREF_LOCKED(rt); | |
500 | } else { | |
501 | RT_LOCK(rt); | |
39236c6e A |
502 | if (!verbose) |
503 | rt_str(rt, dbuf, sizeof (dbuf), | |
504 | gbuf, sizeof (gbuf)); | |
505 | log(LOG_ERR, "%s: error deleting route to " | |
506 | "%s->%s->%s, flags=%b, err=%d\n", __func__, | |
507 | dbuf, gbuf, (rt->rt_ifp != NULL) ? | |
508 | rt->rt_ifp->if_xname : "", rt->rt_flags, | |
509 | RTF_BITS, err); | |
2d21ac55 A |
510 | } |
511 | } else { | |
6d2010ae | 512 | uint64_t timenow; |
2d21ac55 | 513 | |
6d2010ae | 514 | timenow = net_uptime(); |
1c79356b | 515 | rt->rt_flags |= RTPRF_OURS; |
39236c6e A |
516 | rt_setexpire(rt, timenow + rtq_reallyold); |
517 | ||
518 | if (verbose) { | |
519 | log(LOG_DEBUG, "%s: route to %s->%s->%s invalidated, " | |
520 | "flags=%b, expire=T+%u\n", __func__, dbuf, gbuf, | |
521 | (rt->rt_ifp != NULL) ? rt->rt_ifp->if_xname : "", | |
522 | rt->rt_flags, RTF_BITS, rt->rt_expire - timenow); | |
523 | } | |
524 | ||
525 | /* We have at least one entry; arm the timer if not already */ | |
526 | in6_sched_rtqtimo(NULL); | |
1c79356b A |
527 | } |
528 | } | |
529 | ||
530 | struct rtqk_arg { | |
531 | struct radix_node_head *rnh; | |
1c79356b A |
532 | int updating; |
533 | int draining; | |
39236c6e A |
534 | uint32_t killed; |
535 | uint32_t found; | |
6d2010ae | 536 | uint64_t nextstop; |
1c79356b A |
537 | }; |
538 | ||
539 | /* | |
540 | * Get rid of old routes. When draining, this deletes everything, even when | |
b0d623f7 A |
541 | * the timeout is not expired yet. This also applies if the route is dynamic |
542 | * and there are sufficiently large number of such routes (more than a half of | |
543 | * maximum). When updating, this makes sure that nothing has a timeout longer | |
544 | * than the current value of rtq_reallyold. | |
1c79356b A |
545 | */ |
546 | static int | |
547 | in6_rtqkill(struct radix_node *rn, void *rock) | |
548 | { | |
549 | struct rtqk_arg *ap = rock; | |
550 | struct rtentry *rt = (struct rtentry *)rn; | |
39236c6e | 551 | boolean_t verbose = (rt_verbose > 1); |
6d2010ae | 552 | uint64_t timenow; |
39236c6e | 553 | int err; |
91447636 | 554 | |
6d2010ae | 555 | timenow = net_uptime(); |
b0d623f7 | 556 | lck_mtx_assert(rnh_lock, LCK_MTX_ASSERT_OWNED); |
2d21ac55 | 557 | |
b0d623f7 | 558 | RT_LOCK(rt); |
1c79356b | 559 | if (rt->rt_flags & RTPRF_OURS) { |
39236c6e A |
560 | char dbuf[MAX_IPv6_STR_LEN], gbuf[MAX_IPv6_STR_LEN]; |
561 | ||
562 | if (verbose) | |
563 | rt_str(rt, dbuf, sizeof (dbuf), gbuf, sizeof (gbuf)); | |
564 | ||
1c79356b | 565 | ap->found++; |
6d2010ae A |
566 | VERIFY(rt->rt_expire == 0 || rt->rt_rmx.rmx_expire != 0); |
567 | VERIFY(rt->rt_expire != 0 || rt->rt_rmx.rmx_expire == 0); | |
568 | if (ap->draining || rt->rt_expire <= timenow || | |
39236c6e | 569 | ((rt->rt_flags & RTF_DYNAMIC) && ip6_maxdynroutes >= 0 && |
b0d623f7 | 570 | in6dynroutes > ip6_maxdynroutes / 2)) { |
39236c6e A |
571 | if (rt->rt_refcnt > 0) { |
572 | panic("%s: route %p marked with RTPRF_OURS " | |
573 | "with non-zero refcnt (%u)", __func__, | |
574 | rt, rt->rt_refcnt); | |
575 | /* NOTREACHED */ | |
576 | } | |
577 | if (verbose) { | |
578 | log(LOG_DEBUG, "%s: deleting route to " | |
579 | "%s->%s->%s, flags=%b, draining=%d\n", | |
580 | __func__, dbuf, gbuf, (rt->rt_ifp != NULL) ? | |
581 | rt->rt_ifp->if_xname : "", rt->rt_flags, | |
582 | RTF_BITS, ap->draining); | |
583 | } | |
584 | RT_ADDREF_LOCKED(rt); /* for us to free below */ | |
b0d623f7 A |
585 | /* |
586 | * Delete this route since we're done with it; | |
587 | * the route may be freed afterwards, so we | |
588 | * can no longer refer to 'rt' upon returning | |
589 | * from rtrequest(). Safe to drop rt_lock and | |
590 | * use rt_key, rt_gateway, since holding rnh_lock | |
591 | * here prevents another thread from calling | |
592 | * rt_setgate() on this route. | |
593 | */ | |
594 | RT_UNLOCK(rt); | |
595 | err = rtrequest_locked(RTM_DELETE, rt_key(rt), | |
39236c6e A |
596 | rt->rt_gateway, rt_mask(rt), rt->rt_flags, NULL); |
597 | if (err != 0) { | |
598 | RT_LOCK(rt); | |
599 | if (!verbose) | |
600 | rt_str(rt, dbuf, sizeof (dbuf), | |
601 | gbuf, sizeof (gbuf)); | |
602 | log(LOG_ERR, "%s: error deleting route to " | |
603 | "%s->%s->%s, flags=%b, err=%d\n", __func__, | |
604 | dbuf, gbuf, (rt->rt_ifp != NULL) ? | |
605 | rt->rt_ifp->if_xname : "", rt->rt_flags, | |
606 | RTF_BITS, err); | |
607 | RT_UNLOCK(rt); | |
1c79356b A |
608 | } else { |
609 | ap->killed++; | |
610 | } | |
39236c6e | 611 | rtfree_locked(rt); |
1c79356b | 612 | } else { |
39236c6e A |
613 | uint64_t expire = (rt->rt_expire - timenow); |
614 | ||
615 | if (ap->updating && expire > rtq_reallyold) { | |
616 | rt_setexpire(rt, timenow + rtq_reallyold); | |
617 | if (verbose) { | |
618 | log(LOG_DEBUG, "%s: route to " | |
619 | "%s->%s->%s, flags=%b, adjusted " | |
620 | "expire=T+%u (was T+%u)\n", | |
621 | __func__, dbuf, gbuf, | |
622 | (rt->rt_ifp != NULL) ? | |
623 | rt->rt_ifp->if_xname : "", | |
624 | rt->rt_flags, RTF_BITS, | |
625 | (rt->rt_expire - timenow), expire); | |
626 | } | |
1c79356b | 627 | } |
39236c6e | 628 | ap->nextstop = lmin(ap->nextstop, rt->rt_expire); |
b0d623f7 | 629 | RT_UNLOCK(rt); |
1c79356b | 630 | } |
b0d623f7 A |
631 | } else { |
632 | RT_UNLOCK(rt); | |
1c79356b A |
633 | } |
634 | ||
39236c6e | 635 | return (0); |
1c79356b A |
636 | } |
637 | ||
39236c6e | 638 | #define RTQ_TIMEOUT 60*10 /* run no less than once every ten minutes */ |
1c79356b A |
639 | static int rtq_timeout = RTQ_TIMEOUT; |
640 | ||
641 | static void | |
39236c6e | 642 | in6_rtqtimo(void *targ) |
1c79356b | 643 | { |
39236c6e A |
644 | #pragma unused(targ) |
645 | struct radix_node_head *rnh; | |
1c79356b A |
646 | struct rtqk_arg arg; |
647 | struct timeval atv; | |
6d2010ae | 648 | static uint64_t last_adjusted_timeout = 0; |
39236c6e | 649 | boolean_t verbose = (rt_verbose > 1); |
6d2010ae | 650 | uint64_t timenow; |
39236c6e | 651 | uint32_t ours; |
91447636 | 652 | |
b0d623f7 | 653 | lck_mtx_lock(rnh_lock); |
39236c6e A |
654 | rnh = rt_tables[AF_INET6]; |
655 | VERIFY(rnh != NULL); | |
656 | ||
2d21ac55 | 657 | /* Get the timestamp after we acquire the lock for better accuracy */ |
6d2010ae | 658 | timenow = net_uptime(); |
39236c6e A |
659 | if (verbose) { |
660 | log(LOG_DEBUG, "%s: initial nextstop is T+%u seconds\n", | |
661 | __func__, rtq_timeout); | |
662 | } | |
663 | bzero(&arg, sizeof (arg)); | |
1c79356b | 664 | arg.rnh = rnh; |
6d2010ae | 665 | arg.nextstop = timenow + rtq_timeout; |
1c79356b | 666 | rnh->rnh_walktree(rnh, in6_rtqkill, &arg); |
39236c6e A |
667 | if (verbose) { |
668 | log(LOG_DEBUG, "%s: found %u, killed %u\n", __func__, | |
669 | arg.found, arg.killed); | |
670 | } | |
1c79356b A |
671 | /* |
672 | * Attempt to be somewhat dynamic about this: | |
673 | * If there are ``too many'' routes sitting around taking up space, | |
674 | * then crank down the timeout, and see if we can't make some more | |
675 | * go away. However, we make sure that we will never adjust more | |
676 | * than once in rtq_timeout seconds, to keep from cranking down too | |
677 | * hard. | |
678 | */ | |
39236c6e A |
679 | ours = (arg.found - arg.killed); |
680 | if (ours > rtq_toomany && | |
681 | ((timenow - last_adjusted_timeout) >= (uint64_t)rtq_timeout) && | |
682 | rtq_reallyold > rtq_minreallyold) { | |
683 | rtq_reallyold = 2 * rtq_reallyold / 3; | |
684 | if (rtq_reallyold < rtq_minreallyold) | |
1c79356b | 685 | rtq_reallyold = rtq_minreallyold; |
1c79356b | 686 | |
6d2010ae | 687 | last_adjusted_timeout = timenow; |
39236c6e A |
688 | if (verbose) { |
689 | log(LOG_DEBUG, "%s: adjusted rtq_reallyold to %d " | |
690 | "seconds\n", __func__, rtq_reallyold); | |
691 | } | |
1c79356b A |
692 | arg.found = arg.killed = 0; |
693 | arg.updating = 1; | |
1c79356b | 694 | rnh->rnh_walktree(rnh, in6_rtqkill, &arg); |
1c79356b A |
695 | } |
696 | ||
697 | atv.tv_usec = 0; | |
6d2010ae | 698 | atv.tv_sec = arg.nextstop - timenow; |
39236c6e A |
699 | /* re-arm the timer only if there's work to do */ |
700 | in6_rtqtimo_run = 0; | |
701 | if (ours > 0) | |
702 | in6_sched_rtqtimo(&atv); | |
703 | else if (verbose) | |
704 | log(LOG_DEBUG, "%s: not rescheduling timer\n", __func__); | |
b0d623f7 | 705 | lck_mtx_unlock(rnh_lock); |
1c79356b A |
706 | } |
707 | ||
39236c6e A |
708 | static void |
709 | in6_sched_rtqtimo(struct timeval *atv) | |
1c79356b | 710 | { |
39236c6e | 711 | lck_mtx_assert(rnh_lock, LCK_MTX_ASSERT_OWNED); |
1c79356b | 712 | |
39236c6e A |
713 | if (!in6_rtqtimo_run) { |
714 | struct timeval tv; | |
1c79356b | 715 | |
39236c6e A |
716 | if (atv == NULL) { |
717 | tv.tv_usec = 0; | |
718 | tv.tv_sec = MAX(rtq_timeout / 10, 1); | |
719 | atv = &tv; | |
720 | } | |
721 | if (rt_verbose > 1) { | |
722 | log(LOG_DEBUG, "%s: timer scheduled in " | |
723 | "T+%llus.%lluu\n", __func__, | |
724 | (uint64_t)atv->tv_sec, (uint64_t)atv->tv_usec); | |
1c79356b | 725 | } |
39236c6e A |
726 | in6_rtqtimo_run = 1; |
727 | timeout(in6_rtqtimo, NULL, tvtohz(atv)); | |
1c79356b | 728 | } |
1c79356b A |
729 | } |
730 | ||
39236c6e A |
731 | void |
732 | in6_rtqdrain(void) | |
1c79356b | 733 | { |
39236c6e A |
734 | struct radix_node_head *rnh; |
735 | struct rtqk_arg arg; | |
91447636 | 736 | |
39236c6e A |
737 | if (rt_verbose > 1) |
738 | log(LOG_DEBUG, "%s: draining routes\n", __func__); | |
1c79356b | 739 | |
b0d623f7 | 740 | lck_mtx_lock(rnh_lock); |
39236c6e A |
741 | rnh = rt_tables[AF_INET6]; |
742 | VERIFY(rnh != NULL); | |
743 | bzero(&arg, sizeof (arg)); | |
1c79356b | 744 | arg.rnh = rnh; |
1c79356b | 745 | arg.draining = 1; |
1c79356b | 746 | rnh->rnh_walktree(rnh, in6_rtqkill, &arg); |
d1ecb069 | 747 | lck_mtx_unlock(rnh_lock); |
1c79356b | 748 | } |
1c79356b A |
749 | |
750 | /* | |
751 | * Initialize our routing tree. | |
752 | */ | |
753 | int | |
754 | in6_inithead(void **head, int off) | |
755 | { | |
756 | struct radix_node_head *rnh; | |
757 | ||
39236c6e A |
758 | /* If called from route_init(), make sure it is exactly once */ |
759 | VERIFY(head != (void **)&rt_tables[AF_INET6] || *head == NULL); | |
760 | ||
1c79356b | 761 | if (!rn_inithead(head, off)) |
39236c6e | 762 | return (0); |
1c79356b | 763 | |
39236c6e A |
764 | /* |
765 | * We can get here from nfs_subs.c as well, in which case this | |
766 | * won't be for the real routing table and thus we're done; | |
767 | * this also takes care of the case when we're called more than | |
768 | * once from anywhere but route_init(). | |
769 | */ | |
770 | if (head != (void **)&rt_tables[AF_INET6]) | |
771 | return (1); /* only do this for the real routing table */ | |
1c79356b A |
772 | |
773 | rnh = *head; | |
774 | rnh->rnh_addaddr = in6_addroute; | |
b0d623f7 | 775 | rnh->rnh_deladdr = in6_deleteroute; |
1c79356b | 776 | rnh->rnh_matchaddr = in6_matroute; |
c910b4d9 | 777 | rnh->rnh_matchaddr_args = in6_matroute_args; |
1c79356b | 778 | rnh->rnh_close = in6_clsroute; |
39236c6e | 779 | return (1); |
1c79356b | 780 | } |