1 /* $FreeBSD$ */ 2 /* $KAME: in6_rmx.c,v 1.11 2001/07/26 06:53:16 jinmei 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 1994, 1995 Massachusetts Institute of Technology 35 * 36 * Permission to use, copy, modify, and distribute this software and 37 * its documentation for any purpose and without fee is hereby 38 * granted, provided that both the above copyright notice and this 39 * permission notice appear in all copies, that both the above 40 * copyright notice and this permission notice appear in all 41 * supporting documentation, and that the name of M.I.T. not be used 42 * in advertising or publicity pertaining to distribution of the 43 * software without specific, written prior permission. M.I.T. makes 44 * no representations about the suitability of this software for any 45 * purpose. It is provided "as is" without express or implied 46 * warranty. 47 * 48 * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''. M.I.T. DISCLAIMS 49 * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE, 50 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 51 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT 52 * SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 53 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 54 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 55 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 56 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 57 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 58 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 59 * SUCH DAMAGE. 60 * 61 */ 62 63 /* 64 * This code does two things necessary for the enhanced TCP metrics to 65 * function in a useful manner: 66 * 1) It marks all non-host routes as `cloning', thus ensuring that 67 * every actual reference to such a route actually gets turned 68 * into a reference to a host route to the specific destination 69 * requested. 70 * 2) When such routes lose all their references, it arranges for them 71 * to be deleted in some random collection of circumstances, so that 72 * a large quantity of stale routing data is not kept in kernel memory 73 * indefinitely. See in6_rtqtimo() below for the exact mechanism. 74 */ 75 76 #include <sys/param.h> 77 #include <sys/systm.h> 78 #include <sys/kernel.h> 79 #include <sys/sysctl.h> 80 #include <sys/queue.h> 81 #include <sys/socket.h> 82 #include <sys/socketvar.h> 83 #include <sys/mbuf.h> 84 #include <sys/syslog.h> 85 #include <sys/callout.h> 86 87 #include <net/if.h> 88 #include <net/route.h> 89 #include <netinet/in.h> 90 #include <netinet/ip_var.h> 91 #include <netinet/in_var.h> 92 93 #include <netinet/ip6.h> 94 #include <netinet6/ip6_var.h> 95 96 #include <netinet/icmp6.h> 97 #include <netinet6/nd6.h> 98 99 #include <netinet/tcp.h> 100 #include <netinet/tcp_seq.h> 101 #include <netinet/tcp_timer.h> 102 #include <netinet/tcp_var.h> 103 104 extern int in6_inithead __P((void **head, int off)); 105 106 #define RTPRF_OURS RTF_PROTO3 /* set on routes we manage */ 107 108 /* 109 * Do what we need to do when inserting a route. 110 */ 111 static struct radix_node * 112 in6_addroute(void *v_arg, void *n_arg, struct radix_node_head *head, 113 struct radix_node *treenodes) 114 { 115 struct rtentry *rt = (struct rtentry *)treenodes; 116 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)rt_key(rt); 117 struct radix_node *ret; 118 119 /* 120 * For IPv6, all unicast non-host routes are automatically cloning. 121 */ 122 if (IN6_IS_ADDR_MULTICAST(&sin6->sin6_addr)) 123 rt->rt_flags |= RTF_MULTICAST; 124 125 if (!(rt->rt_flags & (RTF_HOST | RTF_CLONING | RTF_MULTICAST))) { 126 rt->rt_flags |= RTF_PRCLONING; 127 } 128 129 /* 130 * A little bit of help for both IPv6 output and input: 131 * For local addresses, we make sure that RTF_LOCAL is set, 132 * with the thought that this might one day be used to speed up 133 * ip_input(). 134 * 135 * We also mark routes to multicast addresses as such, because 136 * it's easy to do and might be useful (but this is much more 137 * dubious since it's so easy to inspect the address). (This 138 * is done above.) 139 * 140 * XXX 141 * should elaborate the code. 142 */ 143 if (rt->rt_flags & RTF_HOST) { 144 if (IN6_ARE_ADDR_EQUAL(&satosin6(rt->rt_ifa->ifa_addr) 145 ->sin6_addr, 146 &sin6->sin6_addr)) { 147 rt->rt_flags |= RTF_LOCAL; 148 } 149 } 150 151 if (!rt->rt_rmx.rmx_mtu && !(rt->rt_rmx.rmx_locks & RTV_MTU) 152 && rt->rt_ifp) 153 rt->rt_rmx.rmx_mtu = IN6_LINKMTU(rt->rt_ifp); 154 155 ret = rn_addroute(v_arg, n_arg, head, treenodes); 156 if (ret == NULL && rt->rt_flags & RTF_HOST) { 157 struct rtentry *rt2; 158 /* 159 * We are trying to add a host route, but can't. 160 * Find out if it is because of an 161 * ARP entry and delete it if so. 162 */ 163 rt2 = rtalloc1((struct sockaddr *)sin6, 0, 164 RTF_CLONING | RTF_PRCLONING); 165 if (rt2) { 166 if (rt2->rt_flags & RTF_LLINFO && 167 rt2->rt_flags & RTF_HOST && 168 rt2->rt_gateway && 169 rt2->rt_gateway->sa_family == AF_LINK) { 170 rtexpunge(rt2); 171 RTFREE_LOCKED(rt2); 172 ret = rn_addroute(v_arg, n_arg, head, 173 treenodes); 174 } else 175 RTFREE_LOCKED(rt2); 176 } 177 } else if (ret == NULL && rt->rt_flags & RTF_CLONING) { 178 struct rtentry *rt2; 179 /* 180 * We are trying to add a net route, but can't. 181 * The following case should be allowed, so we'll make a 182 * special check for this: 183 * Two IPv6 addresses with the same prefix is assigned 184 * to a single interrface. 185 * # ifconfig if0 inet6 3ffe:0501::1 prefix 64 alias (*1) 186 * # ifconfig if0 inet6 3ffe:0501::2 prefix 64 alias (*2) 187 * In this case, (*1) and (*2) want to add the same 188 * net route entry, 3ffe:0501:: -> if0. 189 * This case should not raise an error. 190 */ 191 rt2 = rtalloc1((struct sockaddr *)sin6, 0, 192 RTF_CLONING | RTF_PRCLONING); 193 if (rt2) { 194 if ((rt2->rt_flags & (RTF_CLONING|RTF_HOST|RTF_GATEWAY)) 195 == RTF_CLONING 196 && rt2->rt_gateway 197 && rt2->rt_gateway->sa_family == AF_LINK 198 && rt2->rt_ifp == rt->rt_ifp) { 199 ret = rt2->rt_nodes; 200 } 201 RTFREE_LOCKED(rt2); 202 } 203 } 204 return ret; 205 } 206 207 /* 208 * This code is the inverse of in6_clsroute: on first reference, if we 209 * were managing the route, stop doing so and set the expiration timer 210 * back off again. 211 */ 212 static struct radix_node * 213 in6_matroute(void *v_arg, struct radix_node_head *head) 214 { 215 struct radix_node *rn = rn_match(v_arg, head); 216 struct rtentry *rt = (struct rtentry *)rn; 217 218 if (rt && rt->rt_refcnt == 0) { /* this is first reference */ 219 if (rt->rt_flags & RTPRF_OURS) { 220 rt->rt_flags &= ~RTPRF_OURS; 221 rt->rt_rmx.rmx_expire = 0; 222 } 223 } 224 return rn; 225 } 226 227 SYSCTL_DECL(_net_inet6_ip6); 228 229 static int rtq_reallyold = 60*60; 230 /* one hour is ``really old'' */ 231 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_RTEXPIRE, rtexpire, 232 CTLFLAG_RW, &rtq_reallyold , 0, ""); 233 234 static int rtq_minreallyold = 10; 235 /* never automatically crank down to less */ 236 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_RTMINEXPIRE, rtminexpire, 237 CTLFLAG_RW, &rtq_minreallyold , 0, ""); 238 239 static int rtq_toomany = 128; 240 /* 128 cached routes is ``too many'' */ 241 SYSCTL_INT(_net_inet6_ip6, IPV6CTL_RTMAXCACHE, rtmaxcache, 242 CTLFLAG_RW, &rtq_toomany , 0, ""); 243 244 245 /* 246 * On last reference drop, mark the route as belong to us so that it can be 247 * timed out. 248 */ 249 static void 250 in6_clsroute(struct radix_node *rn, struct radix_node_head *head) 251 { 252 struct rtentry *rt = (struct rtentry *)rn; 253 254 RT_LOCK_ASSERT(rt); 255 256 if (!(rt->rt_flags & RTF_UP)) 257 return; /* prophylactic measures */ 258 259 if ((rt->rt_flags & (RTF_LLINFO | RTF_HOST)) != RTF_HOST) 260 return; 261 262 if ((rt->rt_flags & (RTF_WASCLONED | RTPRF_OURS)) != RTF_WASCLONED) 263 return; 264 265 /* 266 * As requested by David Greenman: 267 * If rtq_reallyold is 0, just delete the route without 268 * waiting for a timeout cycle to kill it. 269 */ 270 if (rtq_reallyold != 0) { 271 rt->rt_flags |= RTPRF_OURS; 272 rt->rt_rmx.rmx_expire = time_second + rtq_reallyold; 273 } else { 274 rtexpunge(rt); 275 } 276 } 277 278 struct rtqk_arg { 279 struct radix_node_head *rnh; 280 int mode; 281 int updating; 282 int draining; 283 int killed; 284 int found; 285 time_t nextstop; 286 }; 287 288 /* 289 * Get rid of old routes. When draining, this deletes everything, even when 290 * the timeout is not expired yet. When updating, this makes sure that 291 * nothing has a timeout longer than the current value of rtq_reallyold. 292 */ 293 static int 294 in6_rtqkill(struct radix_node *rn, void *rock) 295 { 296 struct rtqk_arg *ap = rock; 297 struct rtentry *rt = (struct rtentry *)rn; 298 int err; 299 300 if (rt->rt_flags & RTPRF_OURS) { 301 ap->found++; 302 303 if (ap->draining || rt->rt_rmx.rmx_expire <= time_second) { 304 if (rt->rt_refcnt > 0) 305 panic("rtqkill route really not free"); 306 307 err = rtrequest(RTM_DELETE, 308 (struct sockaddr *)rt_key(rt), 309 rt->rt_gateway, rt_mask(rt), 310 rt->rt_flags, 0); 311 if (err) { 312 log(LOG_WARNING, "in6_rtqkill: error %d", err); 313 } else { 314 ap->killed++; 315 } 316 } else { 317 if (ap->updating 318 && (rt->rt_rmx.rmx_expire - time_second 319 > rtq_reallyold)) { 320 rt->rt_rmx.rmx_expire = time_second 321 + rtq_reallyold; 322 } 323 ap->nextstop = lmin(ap->nextstop, 324 rt->rt_rmx.rmx_expire); 325 } 326 } 327 328 return 0; 329 } 330 331 #define RTQ_TIMEOUT 60*10 /* run no less than once every ten minutes */ 332 static int rtq_timeout = RTQ_TIMEOUT; 333 static struct callout rtq_timer; 334 335 static void 336 in6_rtqtimo(void *rock) 337 { 338 struct radix_node_head *rnh = rock; 339 struct rtqk_arg arg; 340 struct timeval atv; 341 static time_t last_adjusted_timeout = 0; 342 343 arg.found = arg.killed = 0; 344 arg.rnh = rnh; 345 arg.nextstop = time_second + rtq_timeout; 346 arg.draining = arg.updating = 0; 347 RADIX_NODE_HEAD_LOCK(rnh); 348 rnh->rnh_walktree(rnh, in6_rtqkill, &arg); 349 RADIX_NODE_HEAD_UNLOCK(rnh); 350 351 /* 352 * Attempt to be somewhat dynamic about this: 353 * If there are ``too many'' routes sitting around taking up space, 354 * then crank down the timeout, and see if we can't make some more 355 * go away. However, we make sure that we will never adjust more 356 * than once in rtq_timeout seconds, to keep from cranking down too 357 * hard. 358 */ 359 if ((arg.found - arg.killed > rtq_toomany) 360 && (time_second - last_adjusted_timeout >= rtq_timeout) 361 && rtq_reallyold > rtq_minreallyold) { 362 rtq_reallyold = 2*rtq_reallyold / 3; 363 if (rtq_reallyold < rtq_minreallyold) { 364 rtq_reallyold = rtq_minreallyold; 365 } 366 367 last_adjusted_timeout = time_second; 368 #ifdef DIAGNOSTIC 369 log(LOG_DEBUG, "in6_rtqtimo: adjusted rtq_reallyold to %d", 370 rtq_reallyold); 371 #endif 372 arg.found = arg.killed = 0; 373 arg.updating = 1; 374 RADIX_NODE_HEAD_LOCK(rnh); 375 rnh->rnh_walktree(rnh, in6_rtqkill, &arg); 376 RADIX_NODE_HEAD_UNLOCK(rnh); 377 } 378 379 atv.tv_usec = 0; 380 atv.tv_sec = arg.nextstop; 381 callout_reset(&rtq_timer, tvtohz(&atv), in6_rtqtimo, rock); 382 } 383 384 /* 385 * Age old PMTUs. 386 */ 387 struct mtuex_arg { 388 struct radix_node_head *rnh; 389 time_t nextstop; 390 }; 391 static struct callout rtq_mtutimer; 392 393 static int 394 in6_mtuexpire(struct radix_node *rn, void *rock) 395 { 396 struct rtentry *rt = (struct rtentry *)rn; 397 struct mtuex_arg *ap = rock; 398 399 /* sanity */ 400 if (!rt) 401 panic("rt == NULL in in6_mtuexpire"); 402 403 if (rt->rt_rmx.rmx_expire && !(rt->rt_flags & RTF_PROBEMTU)) { 404 if (rt->rt_rmx.rmx_expire <= time_second) { 405 rt->rt_flags |= RTF_PROBEMTU; 406 } else { 407 ap->nextstop = lmin(ap->nextstop, 408 rt->rt_rmx.rmx_expire); 409 } 410 } 411 412 return 0; 413 } 414 415 #define MTUTIMO_DEFAULT (60*1) 416 417 static void 418 in6_mtutimo(void *rock) 419 { 420 struct radix_node_head *rnh = rock; 421 struct mtuex_arg arg; 422 struct timeval atv; 423 424 arg.rnh = rnh; 425 arg.nextstop = time_second + MTUTIMO_DEFAULT; 426 RADIX_NODE_HEAD_LOCK(rnh); 427 rnh->rnh_walktree(rnh, in6_mtuexpire, &arg); 428 RADIX_NODE_HEAD_UNLOCK(rnh); 429 430 atv.tv_usec = 0; 431 atv.tv_sec = arg.nextstop; 432 if (atv.tv_sec < time_second) { 433 printf("invalid mtu expiration time on routing table\n"); 434 arg.nextstop = time_second + 30; /* last resort */ 435 } 436 callout_reset(&rtq_mtutimer, tvtohz(&atv), in6_mtutimo, rock); 437 } 438 439 #if 0 440 void 441 in6_rtqdrain() 442 { 443 struct radix_node_head *rnh = rt_tables[AF_INET6]; 444 struct rtqk_arg arg; 445 446 arg.found = arg.killed = 0; 447 arg.rnh = rnh; 448 arg.nextstop = 0; 449 arg.draining = 1; 450 arg.updating = 0; 451 RADIX_NODE_HEAD_LOCK(rnh); 452 rnh->rnh_walktree(rnh, in6_rtqkill, &arg); 453 RADIX_NODE_HEAD_UNLOCK(rnh); 454 } 455 #endif 456 457 /* 458 * Initialize our routing tree. 459 */ 460 int 461 in6_inithead(void **head, int off) 462 { 463 struct radix_node_head *rnh; 464 465 if (!rn_inithead(head, off)) 466 return 0; 467 468 if (head != (void **)&rt_tables[AF_INET6]) /* BOGUS! */ 469 return 1; /* only do this for the real routing table */ 470 471 rnh = *head; 472 rnh->rnh_addaddr = in6_addroute; 473 rnh->rnh_matchaddr = in6_matroute; 474 rnh->rnh_close = in6_clsroute; 475 callout_init(&rtq_timer, CALLOUT_MPSAFE); 476 in6_rtqtimo(rnh); /* kick off timeout first time */ 477 callout_init(&rtq_mtutimer, CALLOUT_MPSAFE); 478 in6_mtutimo(rnh); /* kick off timeout first time */ 479 return 1; 480 } 481