1 /* $FreeBSD: src/sys/netinet6/in6_rmx.c,v 1.1.2.4 2004/10/06 02:35:17 suz Exp $ */
2 /* $DragonFly: src/sys/netinet6/in6_rmx.c,v 1.15 2006/12/23 00:57:53 swildner Exp $ */
3 /* $KAME: in6_rmx.c,v 1.11 2001/07/26 06:53:16 jinmei Exp $ */
6 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
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.
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
35 * Copyright 1994, 1995 Massachusetts Institute of Technology
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
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
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
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.
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>
85 #include <sys/syslog.h>
86 #include <sys/globaldata.h>
87 #include <sys/thread2.h>
90 #include <net/route.h>
91 #include <netinet/in.h>
92 #include <netinet/ip_var.h>
93 #include <netinet/in_var.h>
95 #include <netinet/ip6.h>
96 #include <netinet6/ip6_var.h>
98 #include <netinet/icmp6.h>
100 #include <netinet/tcp.h>
101 #include <netinet/tcp_seq.h>
102 #include <netinet/tcp_timer.h>
103 #include <netinet/tcp_var.h>
105 static struct callout in6_rtqtimo_ch
[MAXCPU
];
106 static struct callout in6_mtutimo_ch
[MAXCPU
];
108 extern int in6_inithead (void **head
, int off
);
110 #define RTPRF_OURS RTF_PROTO3 /* set on routes we manage */
113 * Do what we need to do when inserting a route.
115 static struct radix_node
*
116 in6_addroute(char *key
, char *mask
, struct radix_node_head
*head
,
117 struct radix_node
*treenodes
)
119 struct rtentry
*rt
= (struct rtentry
*)treenodes
;
120 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*)rt_key(rt
);
121 struct radix_node
*ret
;
124 * For IPv6, all unicast non-host routes are automatically cloning.
126 if (IN6_IS_ADDR_MULTICAST(&sin6
->sin6_addr
))
127 rt
->rt_flags
|= RTF_MULTICAST
;
129 if (!(rt
->rt_flags
& (RTF_HOST
| RTF_CLONING
| RTF_MULTICAST
))) {
130 rt
->rt_flags
|= RTF_PRCLONING
;
134 * A little bit of help for both IPv6 output and input:
135 * For local addresses, we make sure that RTF_LOCAL is set,
136 * with the thought that this might one day be used to speed up
139 * We also mark routes to multicast addresses as such, because
140 * it's easy to do and might be useful (but this is much more
141 * dubious since it's so easy to inspect the address). (This
145 * should elaborate the code.
147 if (rt
->rt_flags
& RTF_HOST
) {
148 if (IN6_ARE_ADDR_EQUAL(&satosin6(rt
->rt_ifa
->ifa_addr
)
151 rt
->rt_flags
|= RTF_LOCAL
;
155 if (!rt
->rt_rmx
.rmx_mtu
&& !(rt
->rt_rmx
.rmx_locks
& RTV_MTU
) &&
157 rt
->rt_rmx
.rmx_mtu
= rt
->rt_ifp
->if_mtu
;
159 ret
= rn_addroute(key
, mask
, head
, treenodes
);
160 if (ret
== NULL
&& rt
->rt_flags
& RTF_HOST
) {
164 * We are trying to add a host route, but can't.
165 * Find out if it is because of an
166 * ARP entry and delete it if so.
168 rt2
= rtpurelookup((struct sockaddr
*)sin6
);
171 if (rt2
->rt_flags
& RTF_LLINFO
&&
172 rt2
->rt_flags
& RTF_HOST
&&
174 rt2
->rt_gateway
->sa_family
== AF_LINK
) {
175 rtrequest(RTM_DELETE
, rt_key(rt2
),
176 rt2
->rt_gateway
, rt_mask(rt2
),
177 rt2
->rt_flags
, NULL
);
178 ret
= rn_addroute(key
, mask
, head
, treenodes
);
181 } else if (ret
== NULL
&& rt
->rt_flags
& RTF_CLONING
) {
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.
196 rt2
= rtpurelookup((struct sockaddr
*)sin6
);
198 if ((rt2
->rt_flags
& (RTF_CLONING
|RTF_HOST
|RTF_GATEWAY
))
201 rt2
->rt_gateway
->sa_family
== AF_LINK
&&
202 rt2
->rt_ifp
== rt
->rt_ifp
) {
212 * This code is the inverse of in6_clsroute: on first reference, if we
213 * were managing the route, stop doing so and set the expiration timer
216 static struct radix_node
*
217 in6_matchroute(char *key
, struct radix_node_head
*head
)
219 struct radix_node
*rn
= rn_match(key
, head
);
220 struct rtentry
*rt
= (struct rtentry
*)rn
;
222 if (rt
!= NULL
&& rt
->rt_refcnt
== 0) { /* this is first reference */
223 if (rt
->rt_flags
& RTPRF_OURS
) {
224 rt
->rt_flags
&= ~RTPRF_OURS
;
225 rt
->rt_rmx
.rmx_expire
= 0;
231 SYSCTL_DECL(_net_inet6_ip6
);
233 static int rtq_reallyold
= 60*60;
234 /* one hour is ``really old'' */
235 SYSCTL_INT(_net_inet6_ip6
, IPV6CTL_RTEXPIRE
, rtexpire
,
236 CTLFLAG_RW
, &rtq_reallyold
, 0, "");
238 static int rtq_minreallyold
= 10;
239 /* never automatically crank down to less */
240 SYSCTL_INT(_net_inet6_ip6
, IPV6CTL_RTMINEXPIRE
, rtminexpire
,
241 CTLFLAG_RW
, &rtq_minreallyold
, 0, "");
243 static int rtq_toomany
= 128;
244 /* 128 cached routes is ``too many'' */
245 SYSCTL_INT(_net_inet6_ip6
, IPV6CTL_RTMAXCACHE
, rtmaxcache
,
246 CTLFLAG_RW
, &rtq_toomany
, 0, "");
250 * On last reference drop, mark the route as belong to us so that it can be
254 in6_clsroute(struct radix_node
*rn
, struct radix_node_head
*head
)
256 struct rtentry
*rt
= (struct rtentry
*)rn
;
258 if (!(rt
->rt_flags
& RTF_UP
))
259 return; /* prophylactic measures */
261 if ((rt
->rt_flags
& (RTF_LLINFO
| RTF_HOST
)) != RTF_HOST
)
264 if ((rt
->rt_flags
& (RTF_WASCLONED
| RTPRF_OURS
)) != RTF_WASCLONED
)
268 * As requested by David Greenman:
269 * If rtq_reallyold is 0, just delete the route without
270 * waiting for a timeout cycle to kill it.
272 if (rtq_reallyold
!= 0) {
273 rt
->rt_flags
|= RTPRF_OURS
;
274 rt
->rt_rmx
.rmx_expire
= time_second
+ rtq_reallyold
;
277 * Remove route from the radix tree, but defer deallocation
278 * until we return to rtfree().
280 rtrequest(RTM_DELETE
, rt_key(rt
), rt
->rt_gateway
, rt_mask(rt
),
286 struct radix_node_head
*rnh
;
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.
301 in6_rtqkill(struct radix_node
*rn
, void *rock
)
303 struct rtqk_arg
*ap
= rock
;
304 struct rtentry
*rt
= (struct rtentry
*)rn
;
307 if (rt
->rt_flags
& RTPRF_OURS
) {
310 if (ap
->draining
|| rt
->rt_rmx
.rmx_expire
<= time_second
) {
311 if (rt
->rt_refcnt
> 0)
312 panic("rtqkill route really not free");
314 err
= rtrequest(RTM_DELETE
, rt_key(rt
), rt
->rt_gateway
,
315 rt_mask(rt
), rt
->rt_flags
, NULL
);
317 log(LOG_WARNING
, "in6_rtqkill: error %d", err
);
322 (rt
->rt_rmx
.rmx_expire
- time_second
>
324 rt
->rt_rmx
.rmx_expire
=
325 time_second
+ rtq_reallyold
;
327 ap
->nextstop
= lmin(ap
->nextstop
,
328 rt
->rt_rmx
.rmx_expire
);
335 #define RTQ_TIMEOUT 60*10 /* run no less than once every ten minutes */
336 static int rtq_timeout
= RTQ_TIMEOUT
;
339 in6_rtqtimo(void *rock
)
341 struct radix_node_head
*rnh
= rock
;
344 static time_t last_adjusted_timeout
= 0;
346 arg
.found
= arg
.killed
= 0;
348 arg
.nextstop
= time_second
+ rtq_timeout
;
349 arg
.draining
= arg
.updating
= 0;
351 rnh
->rnh_walktree(rnh
, in6_rtqkill
, &arg
);
355 * Attempt to be somewhat dynamic about this:
356 * If there are ``too many'' routes sitting around taking up space,
357 * then crank down the timeout, and see if we can't make some more
358 * go away. However, we make sure that we will never adjust more
359 * than once in rtq_timeout seconds, to keep from cranking down too
362 if ((arg
.found
- arg
.killed
> rtq_toomany
)
363 && (time_second
- last_adjusted_timeout
>= rtq_timeout
)
364 && rtq_reallyold
> rtq_minreallyold
) {
365 rtq_reallyold
= 2*rtq_reallyold
/ 3;
366 if (rtq_reallyold
< rtq_minreallyold
) {
367 rtq_reallyold
= rtq_minreallyold
;
370 last_adjusted_timeout
= time_second
;
372 log(LOG_DEBUG
, "in6_rtqtimo: adjusted rtq_reallyold to %d",
375 arg
.found
= arg
.killed
= 0;
378 rnh
->rnh_walktree(rnh
, in6_rtqkill
, &arg
);
383 atv
.tv_sec
= arg
.nextstop
;
384 callout_reset(&in6_rtqtimo_ch
[mycpuid
], tvtohz_high(&atv
), in6_rtqtimo
,
392 struct radix_node_head
*rnh
;
397 in6_mtuexpire(struct radix_node
*rn
, void *rock
)
399 struct rtentry
*rt
= (struct rtentry
*)rn
;
400 struct mtuex_arg
*ap
= rock
;
404 panic("rt == NULL in in6_mtuexpire");
406 if (rt
->rt_rmx
.rmx_expire
&& !(rt
->rt_flags
& RTF_PROBEMTU
)) {
407 if (rt
->rt_rmx
.rmx_expire
<= time_second
) {
408 rt
->rt_flags
|= RTF_PROBEMTU
;
410 ap
->nextstop
= lmin(ap
->nextstop
,
411 rt
->rt_rmx
.rmx_expire
);
418 #define MTUTIMO_DEFAULT (60*1)
421 in6_mtutimo(void *rock
)
423 struct radix_node_head
*rnh
= rock
;
424 struct mtuex_arg arg
;
428 arg
.nextstop
= time_second
+ MTUTIMO_DEFAULT
;
430 rnh
->rnh_walktree(rnh
, in6_mtuexpire
, &arg
);
434 atv
.tv_sec
= arg
.nextstop
;
435 if (atv
.tv_sec
< time_second
) {
436 kprintf("invalid mtu expiration time on routing table\n");
437 arg
.nextstop
= time_second
+ 30; /* last resort */
439 callout_reset(&in6_mtutimo_ch
[mycpuid
], tvtohz_high(&atv
), in6_mtutimo
,
447 struct radix_node_head
*rnh
= rt_tables
[mycpuid
][AF_INET6
];
450 arg
.found
= arg
.killed
= 0;
456 rnh
->rnh_walktree(rnh
, in6_rtqkill
, &arg
);
462 * Initialize our routing tree.
465 in6_inithead(void **head
, int off
)
467 struct radix_node_head
*rnh
;
469 if (!rn_inithead(head
, off
))
472 if (head
!= (void **)&rt_tables
[mycpuid
][AF_INET6
]) /* BOGUS! */
473 return 1; /* only do this for the real routing table */
476 rnh
->rnh_addaddr
= in6_addroute
;
477 rnh
->rnh_matchaddr
= in6_matchroute
;
478 rnh
->rnh_close
= in6_clsroute
;
479 callout_init(&in6_mtutimo_ch
[mycpuid
]);
480 callout_init(&in6_rtqtimo_ch
[mycpuid
]);
481 in6_rtqtimo(rnh
); /* kick off timeout first time */
482 in6_mtutimo(rnh
); /* kick off timeout first time */