1 /*- 2 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 3. Neither the name of the project nor the names of its contributors 14 * may be used to endorse or promote products derived from this software 15 * without specific prior written permission. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 * 29 * $KAME: in6_rmx.c,v 1.11 2001/07/26 06:53:16 jinmei Exp $ 30 */ 31 32 /*- 33 * Copyright 1994, 1995 Massachusetts Institute of Technology 34 * 35 * Permission to use, copy, modify, and distribute this software and 36 * its documentation for any purpose and without fee is hereby 37 * granted, provided that both the above copyright notice and this 38 * permission notice appear in all copies, that both the above 39 * copyright notice and this permission notice appear in all 40 * supporting documentation, and that the name of M.I.T. not be used 41 * in advertising or publicity pertaining to distribution of the 42 * software without specific, written prior permission. M.I.T. makes 43 * no representations about the suitability of this software for any 44 * purpose. It is provided "as is" without express or implied 45 * warranty. 46 * 47 * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''. M.I.T. DISCLAIMS 48 * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE, 49 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 50 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT 51 * SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 52 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 53 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 54 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 55 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 56 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 57 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 58 * SUCH DAMAGE. 59 * 60 */ 61 62 #include <sys/cdefs.h> 63 __FBSDID("$FreeBSD$"); 64 65 #include <sys/param.h> 66 #include <sys/systm.h> 67 #include <sys/kernel.h> 68 #include <sys/lock.h> 69 #include <sys/sysctl.h> 70 #include <sys/queue.h> 71 #include <sys/socket.h> 72 #include <sys/socketvar.h> 73 #include <sys/mbuf.h> 74 #include <sys/rwlock.h> 75 #include <sys/syslog.h> 76 #include <sys/callout.h> 77 78 #include <net/if.h> 79 #include <net/route.h> 80 81 #include <netinet/in.h> 82 #include <netinet/ip_var.h> 83 #include <netinet/in_var.h> 84 85 #include <netinet/ip6.h> 86 #include <netinet6/ip6_var.h> 87 88 #include <netinet/icmp6.h> 89 #include <netinet6/nd6.h> 90 91 #include <netinet/tcp.h> 92 #include <netinet/tcp_seq.h> 93 #include <netinet/tcp_timer.h> 94 #include <netinet/tcp_var.h> 95 96 extern int in6_inithead(void **head, int off); 97 #ifdef VIMAGE 98 extern int in6_detachhead(void **head, int off); 99 #endif 100 101 #define RTPRF_OURS RTF_PROTO3 /* set on routes we manage */ 102 103 /* 104 * Do what we need to do when inserting a route. 105 */ 106 static struct radix_node * 107 in6_addroute(void *v_arg, void *n_arg, struct radix_node_head *head, 108 struct radix_node *treenodes) 109 { 110 struct rtentry *rt = (struct rtentry *)treenodes; 111 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)rt_key(rt); 112 struct radix_node *ret; 113 114 RADIX_NODE_HEAD_WLOCK_ASSERT(head); 115 if (IN6_IS_ADDR_MULTICAST(&sin6->sin6_addr)) 116 rt->rt_flags |= RTF_MULTICAST; 117 118 /* 119 * A little bit of help for both IPv6 output and input: 120 * For local addresses, we make sure that RTF_LOCAL is set, 121 * with the thought that this might one day be used to speed up 122 * ip_input(). 123 * 124 * We also mark routes to multicast addresses as such, because 125 * it's easy to do and might be useful (but this is much more 126 * dubious since it's so easy to inspect the address). (This 127 * is done above.) 128 * 129 * XXX 130 * should elaborate the code. 131 */ 132 if (rt->rt_flags & RTF_HOST) { 133 if (IN6_ARE_ADDR_EQUAL(&satosin6(rt->rt_ifa->ifa_addr) 134 ->sin6_addr, 135 &sin6->sin6_addr)) { 136 rt->rt_flags |= RTF_LOCAL; 137 } 138 } 139 140 if (!rt->rt_rmx.rmx_mtu && rt->rt_ifp) 141 rt->rt_rmx.rmx_mtu = IN6_LINKMTU(rt->rt_ifp); 142 143 ret = rn_addroute(v_arg, n_arg, head, treenodes); 144 if (ret == NULL) { 145 struct rtentry *rt2; 146 /* 147 * We are trying to add a net route, but can't. 148 * The following case should be allowed, so we'll make a 149 * special check for this: 150 * Two IPv6 addresses with the same prefix is assigned 151 * to a single interrface. 152 * # ifconfig if0 inet6 3ffe:0501::1 prefix 64 alias (*1) 153 * # ifconfig if0 inet6 3ffe:0501::2 prefix 64 alias (*2) 154 * In this case, (*1) and (*2) want to add the same 155 * net route entry, 3ffe:0501:: -> if0. 156 * This case should not raise an error. 157 */ 158 rt2 = in6_rtalloc1((struct sockaddr *)sin6, 0, RTF_RNH_LOCKED, 159 rt->rt_fibnum); 160 if (rt2) { 161 if (((rt2->rt_flags & (RTF_HOST|RTF_GATEWAY)) == 0) 162 && rt2->rt_gateway 163 && rt2->rt_gateway->sa_family == AF_LINK 164 && rt2->rt_ifp == rt->rt_ifp) { 165 ret = rt2->rt_nodes; 166 } 167 RTFREE_LOCKED(rt2); 168 } 169 } 170 return (ret); 171 } 172 173 /* 174 * This code is the inverse of in6_clsroute: on first reference, if we 175 * were managing the route, stop doing so and set the expiration timer 176 * back off again. 177 */ 178 static struct radix_node * 179 in6_matroute(void *v_arg, struct radix_node_head *head) 180 { 181 struct radix_node *rn = rn_match(v_arg, head); 182 struct rtentry *rt = (struct rtentry *)rn; 183 184 if (rt) { 185 RT_LOCK(rt); 186 if (rt->rt_flags & RTPRF_OURS) { 187 rt->rt_flags &= ~RTPRF_OURS; 188 rt->rt_rmx.rmx_expire = 0; 189 } 190 RT_UNLOCK(rt); 191 } 192 return rn; 193 } 194 195 SYSCTL_DECL(_net_inet6_ip6); 196 197 static VNET_DEFINE(int, rtq_reallyold6) = 60*60; 198 /* one hour is ``really old'' */ 199 #define V_rtq_reallyold6 VNET(rtq_reallyold6) 200 SYSCTL_VNET_INT(_net_inet6_ip6, IPV6CTL_RTEXPIRE, rtexpire, CTLFLAG_RW, 201 &VNET_NAME(rtq_reallyold6) , 0, ""); 202 203 static VNET_DEFINE(int, rtq_minreallyold6) = 10; 204 /* never automatically crank down to less */ 205 #define V_rtq_minreallyold6 VNET(rtq_minreallyold6) 206 SYSCTL_VNET_INT(_net_inet6_ip6, IPV6CTL_RTMINEXPIRE, rtminexpire, CTLFLAG_RW, 207 &VNET_NAME(rtq_minreallyold6) , 0, ""); 208 209 static VNET_DEFINE(int, rtq_toomany6) = 128; 210 /* 128 cached routes is ``too many'' */ 211 #define V_rtq_toomany6 VNET(rtq_toomany6) 212 SYSCTL_VNET_INT(_net_inet6_ip6, IPV6CTL_RTMAXCACHE, rtmaxcache, CTLFLAG_RW, 213 &VNET_NAME(rtq_toomany6) , 0, ""); 214 215 struct rtqk_arg { 216 struct radix_node_head *rnh; 217 int mode; 218 int updating; 219 int draining; 220 int killed; 221 int found; 222 time_t nextstop; 223 }; 224 225 /* 226 * Get rid of old routes. When draining, this deletes everything, even when 227 * the timeout is not expired yet. When updating, this makes sure that 228 * nothing has a timeout longer than the current value of rtq_reallyold6. 229 */ 230 static int 231 in6_rtqkill(struct radix_node *rn, void *rock) 232 { 233 struct rtqk_arg *ap = rock; 234 struct rtentry *rt = (struct rtentry *)rn; 235 int err; 236 237 RADIX_NODE_HEAD_WLOCK_ASSERT(ap->rnh); 238 239 if (rt->rt_flags & RTPRF_OURS) { 240 ap->found++; 241 242 if (ap->draining || rt->rt_rmx.rmx_expire <= time_uptime) { 243 if (rt->rt_refcnt > 0) 244 panic("rtqkill route really not free"); 245 246 err = in6_rtrequest(RTM_DELETE, 247 (struct sockaddr *)rt_key(rt), 248 rt->rt_gateway, rt_mask(rt), 249 rt->rt_flags|RTF_RNH_LOCKED, 0, 250 rt->rt_fibnum); 251 if (err) { 252 log(LOG_WARNING, "in6_rtqkill: error %d", err); 253 } else { 254 ap->killed++; 255 } 256 } else { 257 if (ap->updating 258 && (rt->rt_rmx.rmx_expire - time_uptime 259 > V_rtq_reallyold6)) { 260 rt->rt_rmx.rmx_expire = time_uptime 261 + V_rtq_reallyold6; 262 } 263 ap->nextstop = lmin(ap->nextstop, 264 rt->rt_rmx.rmx_expire); 265 } 266 } 267 268 return 0; 269 } 270 271 #define RTQ_TIMEOUT 60*10 /* run no less than once every ten minutes */ 272 static VNET_DEFINE(int, rtq_timeout6) = RTQ_TIMEOUT; 273 static VNET_DEFINE(struct callout, rtq_timer6); 274 275 #define V_rtq_timeout6 VNET(rtq_timeout6) 276 #define V_rtq_timer6 VNET(rtq_timer6) 277 278 static void 279 in6_rtqtimo_one(struct radix_node_head *rnh) 280 { 281 struct rtqk_arg arg; 282 static time_t last_adjusted_timeout = 0; 283 284 arg.found = arg.killed = 0; 285 arg.rnh = rnh; 286 arg.nextstop = time_uptime + V_rtq_timeout6; 287 arg.draining = arg.updating = 0; 288 RADIX_NODE_HEAD_LOCK(rnh); 289 rnh->rnh_walktree(rnh, in6_rtqkill, &arg); 290 RADIX_NODE_HEAD_UNLOCK(rnh); 291 292 /* 293 * Attempt to be somewhat dynamic about this: 294 * If there are ``too many'' routes sitting around taking up space, 295 * then crank down the timeout, and see if we can't make some more 296 * go away. However, we make sure that we will never adjust more 297 * than once in rtq_timeout6 seconds, to keep from cranking down too 298 * hard. 299 */ 300 if ((arg.found - arg.killed > V_rtq_toomany6) 301 && (time_uptime - last_adjusted_timeout >= V_rtq_timeout6) 302 && V_rtq_reallyold6 > V_rtq_minreallyold6) { 303 V_rtq_reallyold6 = 2*V_rtq_reallyold6 / 3; 304 if (V_rtq_reallyold6 < V_rtq_minreallyold6) { 305 V_rtq_reallyold6 = V_rtq_minreallyold6; 306 } 307 308 last_adjusted_timeout = time_uptime; 309 #ifdef DIAGNOSTIC 310 log(LOG_DEBUG, "in6_rtqtimo: adjusted rtq_reallyold6 to %d", 311 V_rtq_reallyold6); 312 #endif 313 arg.found = arg.killed = 0; 314 arg.updating = 1; 315 RADIX_NODE_HEAD_LOCK(rnh); 316 rnh->rnh_walktree(rnh, in6_rtqkill, &arg); 317 RADIX_NODE_HEAD_UNLOCK(rnh); 318 } 319 } 320 321 static void 322 in6_rtqtimo(void *rock) 323 { 324 CURVNET_SET_QUIET((struct vnet *) rock); 325 struct radix_node_head *rnh; 326 struct timeval atv; 327 u_int fibnum; 328 329 for (fibnum = 0; fibnum < rt_numfibs; fibnum++) { 330 rnh = rt_tables_get_rnh(fibnum, AF_INET6); 331 if (rnh != NULL) 332 in6_rtqtimo_one(rnh); 333 } 334 335 atv.tv_usec = 0; 336 atv.tv_sec = V_rtq_timeout6; 337 callout_reset(&V_rtq_timer6, tvtohz(&atv), in6_rtqtimo, rock); 338 CURVNET_RESTORE(); 339 } 340 341 /* 342 * Age old PMTUs. 343 */ 344 struct mtuex_arg { 345 struct radix_node_head *rnh; 346 time_t nextstop; 347 }; 348 static VNET_DEFINE(struct callout, rtq_mtutimer); 349 #define V_rtq_mtutimer VNET(rtq_mtutimer) 350 351 static int 352 in6_mtuexpire(struct radix_node *rn, void *rock) 353 { 354 struct rtentry *rt = (struct rtentry *)rn; 355 struct mtuex_arg *ap = rock; 356 357 /* sanity */ 358 if (!rt) 359 panic("rt == NULL in in6_mtuexpire"); 360 361 if (rt->rt_rmx.rmx_expire && !(rt->rt_flags & RTF_PROBEMTU)) { 362 if (rt->rt_rmx.rmx_expire <= time_uptime) { 363 rt->rt_flags |= RTF_PROBEMTU; 364 } else { 365 ap->nextstop = lmin(ap->nextstop, 366 rt->rt_rmx.rmx_expire); 367 } 368 } 369 370 return 0; 371 } 372 373 #define MTUTIMO_DEFAULT (60*1) 374 375 static void 376 in6_mtutimo_one(struct radix_node_head *rnh) 377 { 378 struct mtuex_arg arg; 379 380 arg.rnh = rnh; 381 arg.nextstop = time_uptime + MTUTIMO_DEFAULT; 382 RADIX_NODE_HEAD_LOCK(rnh); 383 rnh->rnh_walktree(rnh, in6_mtuexpire, &arg); 384 RADIX_NODE_HEAD_UNLOCK(rnh); 385 } 386 387 static void 388 in6_mtutimo(void *rock) 389 { 390 CURVNET_SET_QUIET((struct vnet *) rock); 391 struct radix_node_head *rnh; 392 struct timeval atv; 393 u_int fibnum; 394 395 for (fibnum = 0; fibnum < rt_numfibs; fibnum++) { 396 rnh = rt_tables_get_rnh(fibnum, AF_INET6); 397 if (rnh != NULL) 398 in6_mtutimo_one(rnh); 399 } 400 401 atv.tv_sec = MTUTIMO_DEFAULT; 402 atv.tv_usec = 0; 403 callout_reset(&V_rtq_mtutimer, tvtohz(&atv), in6_mtutimo, rock); 404 CURVNET_RESTORE(); 405 } 406 407 /* 408 * Initialize our routing tree. 409 * XXX MRT When off == 0, we are being called from vfs_export.c 410 * so just set up their table and leave. (we know what the correct 411 * value should be so just use that).. FIX AFTER RELENG_7 is MFC'd 412 * see also comments in in_inithead() vfs_export.c and domain.h 413 */ 414 static VNET_DEFINE(int, _in6_rt_was_here); 415 #define V__in6_rt_was_here VNET(_in6_rt_was_here) 416 417 int 418 in6_inithead(void **head, int off) 419 { 420 struct radix_node_head *rnh; 421 422 if (!rn_inithead(head, offsetof(struct sockaddr_in6, sin6_addr) << 3)) 423 return 0; /* See above */ 424 425 if (off == 0) /* See above */ 426 return 1; /* only do the rest for the real thing */ 427 428 rnh = *head; 429 rnh->rnh_addaddr = in6_addroute; 430 rnh->rnh_matchaddr = in6_matroute; 431 432 if (V__in6_rt_was_here == 0) { 433 callout_init(&V_rtq_timer6, CALLOUT_MPSAFE); 434 callout_init(&V_rtq_mtutimer, CALLOUT_MPSAFE); 435 in6_rtqtimo(curvnet); /* kick off timeout first time */ 436 in6_mtutimo(curvnet); /* kick off timeout first time */ 437 V__in6_rt_was_here = 1; 438 } 439 440 return 1; 441 } 442 443 #ifdef VIMAGE 444 int 445 in6_detachhead(void **head, int off) 446 { 447 448 callout_drain(&V_rtq_timer6); 449 callout_drain(&V_rtq_mtutimer); 450 return (1); 451 } 452 #endif 453 454 /* 455 * Extended API for IPv6 FIB support. 456 */ 457 void 458 in6_rtredirect(struct sockaddr *dst, struct sockaddr *gw, struct sockaddr *nm, 459 int flags, struct sockaddr *src, u_int fibnum) 460 { 461 462 rtredirect_fib(dst, gw, nm, flags, src, fibnum); 463 } 464 465 int 466 in6_rtrequest(int req, struct sockaddr *dst, struct sockaddr *gw, 467 struct sockaddr *mask, int flags, struct rtentry **ret_nrt, u_int fibnum) 468 { 469 470 return (rtrequest_fib(req, dst, gw, mask, flags, ret_nrt, fibnum)); 471 } 472 473 void 474 in6_rtalloc(struct route_in6 *ro, u_int fibnum) 475 { 476 477 rtalloc_ign_fib((struct route *)ro, 0ul, fibnum); 478 } 479 480 void 481 in6_rtalloc_ign(struct route_in6 *ro, u_long ignflags, u_int fibnum) 482 { 483 484 rtalloc_ign_fib((struct route *)ro, ignflags, fibnum); 485 } 486 487 struct rtentry * 488 in6_rtalloc1(struct sockaddr *dst, int report, u_long ignflags, u_int fibnum) 489 { 490 491 return (rtalloc1_fib(dst, report, ignflags, fibnum)); 492 } 493