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