route.c revision 1.116 1 1.116 roy /* $NetBSD: route.c,v 1.116 2009/03/24 16:36:52 roy Exp $ */
2 1.18 kml
3 1.18 kml /*-
4 1.106 ad * Copyright (c) 1998, 2008 The NetBSD Foundation, Inc.
5 1.18 kml * All rights reserved.
6 1.18 kml *
7 1.18 kml * This code is derived from software contributed to The NetBSD Foundation
8 1.18 kml * by Kevin M. Lahey of the Numerical Aerospace Simulation Facility,
9 1.18 kml * NASA Ames Research Center.
10 1.18 kml *
11 1.18 kml * Redistribution and use in source and binary forms, with or without
12 1.18 kml * modification, are permitted provided that the following conditions
13 1.18 kml * are met:
14 1.18 kml * 1. Redistributions of source code must retain the above copyright
15 1.18 kml * notice, this list of conditions and the following disclaimer.
16 1.18 kml * 2. Redistributions in binary form must reproduce the above copyright
17 1.18 kml * notice, this list of conditions and the following disclaimer in the
18 1.18 kml * documentation and/or other materials provided with the distribution.
19 1.18 kml *
20 1.18 kml * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21 1.18 kml * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22 1.18 kml * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 1.18 kml * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24 1.18 kml * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 1.18 kml * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 1.18 kml * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 1.18 kml * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 1.18 kml * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 1.18 kml * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 1.18 kml * POSSIBILITY OF SUCH DAMAGE.
31 1.18 kml */
32 1.11 cgd
33 1.1 cgd /*
34 1.25 itojun * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
35 1.25 itojun * All rights reserved.
36 1.65 perry *
37 1.25 itojun * Redistribution and use in source and binary forms, with or without
38 1.25 itojun * modification, are permitted provided that the following conditions
39 1.25 itojun * are met:
40 1.25 itojun * 1. Redistributions of source code must retain the above copyright
41 1.25 itojun * notice, this list of conditions and the following disclaimer.
42 1.25 itojun * 2. Redistributions in binary form must reproduce the above copyright
43 1.25 itojun * notice, this list of conditions and the following disclaimer in the
44 1.25 itojun * documentation and/or other materials provided with the distribution.
45 1.25 itojun * 3. Neither the name of the project nor the names of its contributors
46 1.25 itojun * may be used to endorse or promote products derived from this software
47 1.25 itojun * without specific prior written permission.
48 1.65 perry *
49 1.25 itojun * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
50 1.25 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
51 1.25 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
52 1.25 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
53 1.25 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
54 1.25 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
55 1.25 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
56 1.25 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
57 1.25 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
58 1.25 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
59 1.25 itojun * SUCH DAMAGE.
60 1.25 itojun */
61 1.25 itojun
62 1.25 itojun /*
63 1.10 mycroft * Copyright (c) 1980, 1986, 1991, 1993
64 1.10 mycroft * The Regents of the University of California. All rights reserved.
65 1.1 cgd *
66 1.1 cgd * Redistribution and use in source and binary forms, with or without
67 1.1 cgd * modification, are permitted provided that the following conditions
68 1.1 cgd * are met:
69 1.1 cgd * 1. Redistributions of source code must retain the above copyright
70 1.1 cgd * notice, this list of conditions and the following disclaimer.
71 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
72 1.1 cgd * notice, this list of conditions and the following disclaimer in the
73 1.1 cgd * documentation and/or other materials provided with the distribution.
74 1.58 agc * 3. Neither the name of the University nor the names of its contributors
75 1.1 cgd * may be used to endorse or promote products derived from this software
76 1.1 cgd * without specific prior written permission.
77 1.1 cgd *
78 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
79 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
80 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
81 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
82 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
83 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
84 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
85 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
86 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
87 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
88 1.1 cgd * SUCH DAMAGE.
89 1.1 cgd *
90 1.17 christos * @(#)route.c 8.3 (Berkeley) 1/9/95
91 1.1 cgd */
92 1.50 lukem
93 1.90 dyoung #include "opt_route.h"
94 1.90 dyoung
95 1.50 lukem #include <sys/cdefs.h>
96 1.116 roy __KERNEL_RCSID(0, "$NetBSD: route.c,v 1.116 2009/03/24 16:36:52 roy Exp $");
97 1.2 cgd
98 1.5 mycroft #include <sys/param.h>
99 1.90 dyoung #include <sys/sysctl.h>
100 1.5 mycroft #include <sys/systm.h>
101 1.35 thorpej #include <sys/callout.h>
102 1.5 mycroft #include <sys/proc.h>
103 1.5 mycroft #include <sys/mbuf.h>
104 1.5 mycroft #include <sys/socket.h>
105 1.5 mycroft #include <sys/socketvar.h>
106 1.5 mycroft #include <sys/domain.h>
107 1.5 mycroft #include <sys/protosw.h>
108 1.18 kml #include <sys/kernel.h>
109 1.5 mycroft #include <sys/ioctl.h>
110 1.22 thorpej #include <sys/pool.h>
111 1.1 cgd
112 1.5 mycroft #include <net/if.h>
113 1.114 dyoung #include <net/if_dl.h>
114 1.5 mycroft #include <net/route.h>
115 1.5 mycroft #include <net/raw_cb.h>
116 1.1 cgd
117 1.5 mycroft #include <netinet/in.h>
118 1.5 mycroft #include <netinet/in_var.h>
119 1.1 cgd
120 1.90 dyoung #ifdef RTFLUSH_DEBUG
121 1.90 dyoung #define rtcache_debug() __predict_false(_rtcache_debug)
122 1.90 dyoung #else /* RTFLUSH_DEBUG */
123 1.90 dyoung #define rtcache_debug() 0
124 1.90 dyoung #endif /* RTFLUSH_DEBUG */
125 1.5 mycroft
126 1.52 matt struct route_cb route_cb;
127 1.52 matt struct rtstat rtstat;
128 1.52 matt struct radix_node_head *rt_tables[AF_MAX+1];
129 1.1 cgd
130 1.1 cgd int rttrash; /* routes not in table but not freed */
131 1.1 cgd
132 1.113 pooka struct pool rtentry_pool;
133 1.113 pooka struct pool rttimer_pool;
134 1.22 thorpej
135 1.35 thorpej struct callout rt_timer_ch; /* callout for rt_timer_timer() */
136 1.35 thorpej
137 1.90 dyoung #ifdef RTFLUSH_DEBUG
138 1.90 dyoung static int _rtcache_debug = 0;
139 1.90 dyoung #endif /* RTFLUSH_DEBUG */
140 1.90 dyoung
141 1.60 matt static int rtdeletemsg(struct rtentry *);
142 1.92 dyoung static int rtflushclone1(struct rtentry *, void *);
143 1.92 dyoung static void rtflushclone(sa_family_t family, struct rtentry *);
144 1.40 itojun
145 1.90 dyoung #ifdef RTFLUSH_DEBUG
146 1.90 dyoung SYSCTL_SETUP(sysctl_net_rtcache_setup, "sysctl net.rtcache.debug setup")
147 1.90 dyoung {
148 1.90 dyoung const struct sysctlnode *rnode;
149 1.90 dyoung
150 1.90 dyoung /* XXX do not duplicate */
151 1.90 dyoung if (sysctl_createv(clog, 0, NULL, &rnode, CTLFLAG_PERMANENT,
152 1.90 dyoung CTLTYPE_NODE, "net", NULL, NULL, 0, NULL, 0, CTL_NET, CTL_EOL) != 0)
153 1.90 dyoung return;
154 1.90 dyoung if (sysctl_createv(clog, 0, &rnode, &rnode, CTLFLAG_PERMANENT,
155 1.90 dyoung CTLTYPE_NODE,
156 1.90 dyoung "rtcache", SYSCTL_DESCR("Route cache related settings"),
157 1.90 dyoung NULL, 0, NULL, 0, CTL_CREATE, CTL_EOL) != 0)
158 1.90 dyoung return;
159 1.90 dyoung if (sysctl_createv(clog, 0, &rnode, &rnode,
160 1.90 dyoung CTLFLAG_PERMANENT|CTLFLAG_READWRITE, CTLTYPE_INT,
161 1.90 dyoung "debug", SYSCTL_DESCR("Debug route caches"),
162 1.90 dyoung NULL, 0, &_rtcache_debug, 0, CTL_CREATE, CTL_EOL) != 0)
163 1.90 dyoung return;
164 1.90 dyoung }
165 1.90 dyoung #endif /* RTFLUSH_DEBUG */
166 1.90 dyoung
167 1.81 joerg struct ifaddr *
168 1.81 joerg rt_get_ifa(struct rtentry *rt)
169 1.81 joerg {
170 1.81 joerg struct ifaddr *ifa;
171 1.81 joerg
172 1.81 joerg if ((ifa = rt->rt_ifa) == NULL)
173 1.81 joerg return ifa;
174 1.81 joerg else if (ifa->ifa_getifa == NULL)
175 1.81 joerg return ifa;
176 1.81 joerg #if 0
177 1.81 joerg else if (ifa->ifa_seqno != NULL && *ifa->ifa_seqno == rt->rt_ifa_seqno)
178 1.81 joerg return ifa;
179 1.81 joerg #endif
180 1.81 joerg else {
181 1.94 dyoung ifa = (*ifa->ifa_getifa)(ifa, rt_getkey(rt));
182 1.81 joerg rt_replace_ifa(rt, ifa);
183 1.81 joerg return ifa;
184 1.81 joerg }
185 1.81 joerg }
186 1.81 joerg
187 1.80 joerg static void
188 1.80 joerg rt_set_ifa1(struct rtentry *rt, struct ifaddr *ifa)
189 1.80 joerg {
190 1.80 joerg rt->rt_ifa = ifa;
191 1.80 joerg if (ifa->ifa_seqno != NULL)
192 1.80 joerg rt->rt_ifa_seqno = *ifa->ifa_seqno;
193 1.80 joerg }
194 1.80 joerg
195 1.116 roy /*
196 1.116 roy * Is this route the connected route for the ifa?
197 1.116 roy */
198 1.116 roy static int
199 1.116 roy rt_ifa_connected(const struct rtentry *rt, const struct ifaddr *ifa)
200 1.116 roy {
201 1.116 roy const struct sockaddr *key, *dst, *odst;
202 1.116 roy struct sockaddr_storage maskeddst;
203 1.116 roy
204 1.116 roy key = rt_getkey(rt);
205 1.116 roy dst = rt->rt_flags & RTF_HOST ? ifa->ifa_dstaddr : ifa->ifa_addr;
206 1.116 roy if (dst == NULL ||
207 1.116 roy dst->sa_family != key->sa_family ||
208 1.116 roy dst->sa_len != key->sa_len)
209 1.116 roy return 0;
210 1.116 roy if ((rt->rt_flags & RTF_HOST) == 0 && ifa->ifa_netmask) {
211 1.116 roy odst = dst;
212 1.116 roy dst = (struct sockaddr *)&maskeddst;
213 1.116 roy rt_maskedcopy(odst, (struct sockaddr *)&maskeddst,
214 1.116 roy ifa->ifa_netmask);
215 1.116 roy }
216 1.116 roy return (memcmp(dst, key, dst->sa_len) == 0);
217 1.116 roy }
218 1.116 roy
219 1.80 joerg void
220 1.80 joerg rt_replace_ifa(struct rtentry *rt, struct ifaddr *ifa)
221 1.80 joerg {
222 1.116 roy if (rt->rt_ifa &&
223 1.116 roy rt->rt_ifa != ifa &&
224 1.116 roy rt->rt_ifa->ifa_flags & IFA_ROUTE &&
225 1.116 roy rt_ifa_connected(rt, rt->rt_ifa))
226 1.116 roy {
227 1.116 roy RT_DPRINTF("rt->_rt_key = %p, ifa = %p, "
228 1.116 roy "replace deleted IFA_ROUTE\n",
229 1.116 roy (void *)rt->_rt_key, (void *)rt->rt_ifa);
230 1.116 roy rt->rt_ifa->ifa_flags &= ~IFA_ROUTE;
231 1.116 roy if (rt_ifa_connected(rt, ifa)) {
232 1.116 roy RT_DPRINTF("rt->_rt_key = %p, ifa = %p, "
233 1.116 roy "replace added IFA_ROUTE\n",
234 1.116 roy (void *)rt->_rt_key, (void *)ifa);
235 1.116 roy ifa->ifa_flags |= IFA_ROUTE;
236 1.116 roy }
237 1.116 roy }
238 1.116 roy
239 1.80 joerg IFAREF(ifa);
240 1.80 joerg IFAFREE(rt->rt_ifa);
241 1.80 joerg rt_set_ifa1(rt, ifa);
242 1.80 joerg }
243 1.80 joerg
244 1.80 joerg static void
245 1.80 joerg rt_set_ifa(struct rtentry *rt, struct ifaddr *ifa)
246 1.80 joerg {
247 1.80 joerg IFAREF(ifa);
248 1.80 joerg rt_set_ifa1(rt, ifa);
249 1.80 joerg }
250 1.80 joerg
251 1.10 mycroft void
252 1.60 matt rtable_init(void **table)
253 1.10 mycroft {
254 1.10 mycroft struct domain *dom;
255 1.64 matt DOMAIN_FOREACH(dom)
256 1.10 mycroft if (dom->dom_rtattach)
257 1.10 mycroft dom->dom_rtattach(&table[dom->dom_family],
258 1.10 mycroft dom->dom_rtoffset);
259 1.10 mycroft }
260 1.1 cgd
261 1.9 mycroft void
262 1.60 matt route_init(void)
263 1.1 cgd {
264 1.22 thorpej
265 1.113 pooka pool_init(&rtentry_pool, sizeof(struct rtentry), 0, 0, 0, "rtentpl",
266 1.113 pooka NULL, IPL_SOFTNET);
267 1.113 pooka pool_init(&rttimer_pool, sizeof(struct rttimer), 0, 0, 0, "rttmrpl",
268 1.113 pooka NULL, IPL_SOFTNET);
269 1.113 pooka
270 1.106 ad rt_init();
271 1.10 mycroft rn_init(); /* initialize all zeroes, all ones, mask table */
272 1.10 mycroft rtable_init((void **)rt_tables);
273 1.1 cgd }
274 1.1 cgd
275 1.82 dyoung void
276 1.82 dyoung rtflushall(int family)
277 1.82 dyoung {
278 1.90 dyoung struct domain *dom;
279 1.90 dyoung
280 1.90 dyoung if (rtcache_debug())
281 1.90 dyoung printf("%s: enter\n", __func__);
282 1.90 dyoung
283 1.90 dyoung if ((dom = pffinddomain(family)) == NULL)
284 1.90 dyoung return;
285 1.82 dyoung
286 1.105 dyoung rtcache_invalidate(&dom->dom_rtcache);
287 1.82 dyoung }
288 1.82 dyoung
289 1.82 dyoung void
290 1.82 dyoung rtcache(struct route *ro)
291 1.82 dyoung {
292 1.90 dyoung struct domain *dom;
293 1.82 dyoung
294 1.114 dyoung rtcache_invariants(ro);
295 1.99 dyoung KASSERT(ro->_ro_rt != NULL);
296 1.105 dyoung KASSERT(ro->ro_invalid == false);
297 1.90 dyoung KASSERT(rtcache_getdst(ro) != NULL);
298 1.82 dyoung
299 1.90 dyoung if ((dom = pffinddomain(rtcache_getdst(ro)->sa_family)) == NULL)
300 1.90 dyoung return;
301 1.90 dyoung
302 1.90 dyoung LIST_INSERT_HEAD(&dom->dom_rtcache, ro, ro_rtcache_next);
303 1.114 dyoung rtcache_invariants(ro);
304 1.82 dyoung }
305 1.82 dyoung
306 1.1 cgd /*
307 1.1 cgd * Packet routing routines.
308 1.1 cgd */
309 1.1 cgd struct rtentry *
310 1.60 matt rtalloc1(const struct sockaddr *dst, int report)
311 1.1 cgd {
312 1.36 augustss struct radix_node_head *rnh = rt_tables[dst->sa_family];
313 1.36 augustss struct rtentry *rt;
314 1.36 augustss struct radix_node *rn;
315 1.68 christos struct rtentry *newrt = NULL;
316 1.10 mycroft struct rt_addrinfo info;
317 1.13 mycroft int s = splsoftnet(), err = 0, msgtype = RTM_MISS;
318 1.1 cgd
319 1.66 christos if (rnh && (rn = rnh->rnh_matchaddr(dst, rnh)) &&
320 1.1 cgd ((rn->rn_flags & RNF_ROOT) == 0)) {
321 1.1 cgd newrt = rt = (struct rtentry *)rn;
322 1.1 cgd if (report && (rt->rt_flags & RTF_CLONING)) {
323 1.68 christos err = rtrequest(RTM_RESOLVE, dst, NULL, NULL, 0,
324 1.68 christos &newrt);
325 1.8 cgd if (err) {
326 1.8 cgd newrt = rt;
327 1.8 cgd rt->rt_refcnt++;
328 1.8 cgd goto miss;
329 1.8 cgd }
330 1.69 christos KASSERT(newrt != NULL);
331 1.8 cgd if ((rt = newrt) && (rt->rt_flags & RTF_XRESOLVE)) {
332 1.8 cgd msgtype = RTM_RESOLVE;
333 1.8 cgd goto miss;
334 1.8 cgd }
335 1.39 itojun /* Inform listeners of the new route */
336 1.44 thorpej memset(&info, 0, sizeof(info));
337 1.94 dyoung info.rti_info[RTAX_DST] = rt_getkey(rt);
338 1.39 itojun info.rti_info[RTAX_NETMASK] = rt_mask(rt);
339 1.39 itojun info.rti_info[RTAX_GATEWAY] = rt->rt_gateway;
340 1.39 itojun if (rt->rt_ifp != NULL) {
341 1.65 perry info.rti_info[RTAX_IFP] =
342 1.99 dyoung rt->rt_ifp->if_dl->ifa_addr;
343 1.39 itojun info.rti_info[RTAX_IFA] = rt->rt_ifa->ifa_addr;
344 1.39 itojun }
345 1.39 itojun rt_missmsg(RTM_ADD, &info, rt->rt_flags, 0);
346 1.1 cgd } else
347 1.1 cgd rt->rt_refcnt++;
348 1.1 cgd } else {
349 1.1 cgd rtstat.rts_unreach++;
350 1.10 mycroft miss: if (report) {
351 1.87 christos memset((void *)&info, 0, sizeof(info));
352 1.10 mycroft info.rti_info[RTAX_DST] = dst;
353 1.10 mycroft rt_missmsg(msgtype, &info, 0, err);
354 1.10 mycroft }
355 1.1 cgd }
356 1.1 cgd splx(s);
357 1.95 dyoung return newrt;
358 1.1 cgd }
359 1.1 cgd
360 1.9 mycroft void
361 1.60 matt rtfree(struct rtentry *rt)
362 1.1 cgd {
363 1.36 augustss struct ifaddr *ifa;
364 1.10 mycroft
365 1.68 christos if (rt == NULL)
366 1.1 cgd panic("rtfree");
367 1.1 cgd rt->rt_refcnt--;
368 1.1 cgd if (rt->rt_refcnt <= 0 && (rt->rt_flags & RTF_UP) == 0) {
369 1.1 cgd if (rt->rt_nodes->rn_flags & (RNF_ACTIVE | RNF_ROOT))
370 1.1 cgd panic ("rtfree 2");
371 1.10 mycroft rttrash--;
372 1.10 mycroft if (rt->rt_refcnt < 0) {
373 1.16 christos printf("rtfree: %p not freed (neg refs)\n", rt);
374 1.10 mycroft return;
375 1.10 mycroft }
376 1.54 itojun rt_timer_remove_all(rt, 0);
377 1.10 mycroft ifa = rt->rt_ifa;
378 1.78 dyoung rt->rt_ifa = NULL;
379 1.10 mycroft IFAFREE(ifa);
380 1.78 dyoung rt->rt_ifp = NULL;
381 1.94 dyoung rt_destroy(rt);
382 1.22 thorpej pool_put(&rtentry_pool, rt);
383 1.1 cgd }
384 1.1 cgd }
385 1.1 cgd
386 1.10 mycroft void
387 1.60 matt ifafree(struct ifaddr *ifa)
388 1.10 mycroft {
389 1.30 thorpej
390 1.30 thorpej #ifdef DIAGNOSTIC
391 1.10 mycroft if (ifa == NULL)
392 1.30 thorpej panic("ifafree: null ifa");
393 1.30 thorpej if (ifa->ifa_refcnt != 0)
394 1.30 thorpej panic("ifafree: ifa_refcnt != 0 (%d)", ifa->ifa_refcnt);
395 1.30 thorpej #endif
396 1.31 thorpej #ifdef IFAREF_DEBUG
397 1.31 thorpej printf("ifafree: freeing ifaddr %p\n", ifa);
398 1.31 thorpej #endif
399 1.30 thorpej free(ifa, M_IFADDR);
400 1.10 mycroft }
401 1.10 mycroft
402 1.1 cgd /*
403 1.1 cgd * Force a routing table entry to the specified
404 1.1 cgd * destination to go through the given gateway.
405 1.1 cgd * Normally called as a result of a routing redirect
406 1.1 cgd * message from the network layer.
407 1.1 cgd *
408 1.13 mycroft * N.B.: must be called at splsoftnet
409 1.1 cgd */
410 1.14 christos void
411 1.60 matt rtredirect(const struct sockaddr *dst, const struct sockaddr *gateway,
412 1.60 matt const struct sockaddr *netmask, int flags, const struct sockaddr *src,
413 1.60 matt struct rtentry **rtp)
414 1.1 cgd {
415 1.36 augustss struct rtentry *rt;
416 1.1 cgd int error = 0;
417 1.68 christos u_quad_t *stat = NULL;
418 1.10 mycroft struct rt_addrinfo info;
419 1.10 mycroft struct ifaddr *ifa;
420 1.1 cgd
421 1.1 cgd /* verify the gateway is directly reachable */
422 1.68 christos if ((ifa = ifa_ifwithnet(gateway)) == NULL) {
423 1.1 cgd error = ENETUNREACH;
424 1.8 cgd goto out;
425 1.1 cgd }
426 1.1 cgd rt = rtalloc1(dst, 0);
427 1.1 cgd /*
428 1.1 cgd * If the redirect isn't from our current router for this dst,
429 1.1 cgd * it's either old or wrong. If it redirects us to ourselves,
430 1.1 cgd * we have a routing loop, perhaps as a result of an interface
431 1.1 cgd * going down recently.
432 1.1 cgd */
433 1.10 mycroft if (!(flags & RTF_DONE) && rt &&
434 1.115 yamt (sockaddr_cmp(src, rt->rt_gateway) != 0 || rt->rt_ifa != ifa))
435 1.1 cgd error = EINVAL;
436 1.1 cgd else if (ifa_ifwithaddr(gateway))
437 1.1 cgd error = EHOSTUNREACH;
438 1.1 cgd if (error)
439 1.1 cgd goto done;
440 1.1 cgd /*
441 1.1 cgd * Create a new entry if we just got back a wildcard entry
442 1.33 soren * or the lookup failed. This is necessary for hosts
443 1.1 cgd * which use routing redirects generated by smart gateways
444 1.1 cgd * to dynamically build the routing tables.
445 1.1 cgd */
446 1.95 dyoung if (rt == NULL || (rt_mask(rt) && rt_mask(rt)->sa_len < 2))
447 1.1 cgd goto create;
448 1.1 cgd /*
449 1.1 cgd * Don't listen to the redirect if it's
450 1.65 perry * for a route to an interface.
451 1.1 cgd */
452 1.1 cgd if (rt->rt_flags & RTF_GATEWAY) {
453 1.1 cgd if (((rt->rt_flags & RTF_HOST) == 0) && (flags & RTF_HOST)) {
454 1.1 cgd /*
455 1.1 cgd * Changing from route to net => route to host.
456 1.1 cgd * Create new route, rather than smashing route to net.
457 1.1 cgd */
458 1.1 cgd create:
459 1.95 dyoung if (rt != NULL)
460 1.39 itojun rtfree(rt);
461 1.1 cgd flags |= RTF_GATEWAY | RTF_DYNAMIC;
462 1.39 itojun info.rti_info[RTAX_DST] = dst;
463 1.39 itojun info.rti_info[RTAX_GATEWAY] = gateway;
464 1.39 itojun info.rti_info[RTAX_NETMASK] = netmask;
465 1.39 itojun info.rti_ifa = ifa;
466 1.39 itojun info.rti_flags = flags;
467 1.39 itojun rt = NULL;
468 1.39 itojun error = rtrequest1(RTM_ADD, &info, &rt);
469 1.39 itojun if (rt != NULL)
470 1.39 itojun flags = rt->rt_flags;
471 1.1 cgd stat = &rtstat.rts_dynamic;
472 1.1 cgd } else {
473 1.1 cgd /*
474 1.1 cgd * Smash the current notion of the gateway to
475 1.1 cgd * this destination. Should check about netmask!!!
476 1.1 cgd */
477 1.10 mycroft rt->rt_flags |= RTF_MODIFIED;
478 1.10 mycroft flags |= RTF_MODIFIED;
479 1.10 mycroft stat = &rtstat.rts_newgateway;
480 1.94 dyoung rt_setgate(rt, gateway);
481 1.1 cgd }
482 1.1 cgd } else
483 1.1 cgd error = EHOSTUNREACH;
484 1.1 cgd done:
485 1.1 cgd if (rt) {
486 1.95 dyoung if (rtp != NULL && !error)
487 1.1 cgd *rtp = rt;
488 1.1 cgd else
489 1.1 cgd rtfree(rt);
490 1.1 cgd }
491 1.8 cgd out:
492 1.1 cgd if (error)
493 1.1 cgd rtstat.rts_badredirect++;
494 1.8 cgd else if (stat != NULL)
495 1.8 cgd (*stat)++;
496 1.95 dyoung memset(&info, 0, sizeof(info));
497 1.10 mycroft info.rti_info[RTAX_DST] = dst;
498 1.10 mycroft info.rti_info[RTAX_GATEWAY] = gateway;
499 1.10 mycroft info.rti_info[RTAX_NETMASK] = netmask;
500 1.10 mycroft info.rti_info[RTAX_AUTHOR] = src;
501 1.10 mycroft rt_missmsg(RTM_REDIRECT, &info, flags, error);
502 1.1 cgd }
503 1.1 cgd
504 1.1 cgd /*
505 1.40 itojun * Delete a route and generate a message
506 1.40 itojun */
507 1.40 itojun static int
508 1.60 matt rtdeletemsg(struct rtentry *rt)
509 1.40 itojun {
510 1.40 itojun int error;
511 1.40 itojun struct rt_addrinfo info;
512 1.40 itojun
513 1.40 itojun /*
514 1.40 itojun * Request the new route so that the entry is not actually
515 1.40 itojun * deleted. That will allow the information being reported to
516 1.40 itojun * be accurate (and consistent with route_output()).
517 1.40 itojun */
518 1.95 dyoung memset(&info, 0, sizeof(info));
519 1.94 dyoung info.rti_info[RTAX_DST] = rt_getkey(rt);
520 1.40 itojun info.rti_info[RTAX_NETMASK] = rt_mask(rt);
521 1.40 itojun info.rti_info[RTAX_GATEWAY] = rt->rt_gateway;
522 1.40 itojun info.rti_flags = rt->rt_flags;
523 1.40 itojun error = rtrequest1(RTM_DELETE, &info, &rt);
524 1.40 itojun
525 1.40 itojun rt_missmsg(RTM_DELETE, &info, info.rti_flags, error);
526 1.40 itojun
527 1.40 itojun /* Adjust the refcount */
528 1.40 itojun if (error == 0 && rt->rt_refcnt <= 0) {
529 1.40 itojun rt->rt_refcnt++;
530 1.40 itojun rtfree(rt);
531 1.40 itojun }
532 1.95 dyoung return error;
533 1.40 itojun }
534 1.40 itojun
535 1.41 itojun static int
536 1.92 dyoung rtflushclone1(struct rtentry *rt, void *arg)
537 1.41 itojun {
538 1.92 dyoung struct rtentry *parent;
539 1.41 itojun
540 1.41 itojun parent = (struct rtentry *)arg;
541 1.41 itojun if ((rt->rt_flags & RTF_CLONED) != 0 && rt->rt_parent == parent)
542 1.41 itojun rtdeletemsg(rt);
543 1.41 itojun return 0;
544 1.41 itojun }
545 1.41 itojun
546 1.41 itojun static void
547 1.92 dyoung rtflushclone(sa_family_t family, struct rtentry *parent)
548 1.41 itojun {
549 1.41 itojun
550 1.41 itojun #ifdef DIAGNOSTIC
551 1.41 itojun if (!parent || (parent->rt_flags & RTF_CLONING) == 0)
552 1.41 itojun panic("rtflushclone: called with a non-cloning route");
553 1.41 itojun #endif
554 1.92 dyoung rt_walktree(family, rtflushclone1, (void *)parent);
555 1.41 itojun }
556 1.41 itojun
557 1.40 itojun /*
558 1.22 thorpej * Routing table ioctl interface.
559 1.22 thorpej */
560 1.9 mycroft int
561 1.87 christos rtioctl(u_long req, void *data, struct lwp *l)
562 1.1 cgd {
563 1.95 dyoung return EOPNOTSUPP;
564 1.1 cgd }
565 1.1 cgd
566 1.1 cgd struct ifaddr *
567 1.60 matt ifa_ifwithroute(int flags, const struct sockaddr *dst,
568 1.60 matt const struct sockaddr *gateway)
569 1.1 cgd {
570 1.36 augustss struct ifaddr *ifa;
571 1.1 cgd if ((flags & RTF_GATEWAY) == 0) {
572 1.1 cgd /*
573 1.1 cgd * If we are adding a route to an interface,
574 1.1 cgd * and the interface is a pt to pt link
575 1.1 cgd * we should search for the destination
576 1.1 cgd * as our clue to the interface. Otherwise
577 1.1 cgd * we can use the local address.
578 1.1 cgd */
579 1.68 christos ifa = NULL;
580 1.65 perry if (flags & RTF_HOST)
581 1.1 cgd ifa = ifa_ifwithdstaddr(dst);
582 1.68 christos if (ifa == NULL)
583 1.1 cgd ifa = ifa_ifwithaddr(gateway);
584 1.1 cgd } else {
585 1.1 cgd /*
586 1.1 cgd * If we are adding a route to a remote net
587 1.1 cgd * or host, the gateway may still be on the
588 1.1 cgd * other end of a pt to pt link.
589 1.1 cgd */
590 1.1 cgd ifa = ifa_ifwithdstaddr(gateway);
591 1.1 cgd }
592 1.68 christos if (ifa == NULL)
593 1.1 cgd ifa = ifa_ifwithnet(gateway);
594 1.68 christos if (ifa == NULL) {
595 1.1 cgd struct rtentry *rt = rtalloc1(dst, 0);
596 1.68 christos if (rt == NULL)
597 1.68 christos return NULL;
598 1.1 cgd rt->rt_refcnt--;
599 1.68 christos if ((ifa = rt->rt_ifa) == NULL)
600 1.68 christos return NULL;
601 1.1 cgd }
602 1.1 cgd if (ifa->ifa_addr->sa_family != dst->sa_family) {
603 1.10 mycroft struct ifaddr *oifa = ifa;
604 1.1 cgd ifa = ifaof_ifpforaddr(dst, ifa->ifa_ifp);
605 1.1 cgd if (ifa == 0)
606 1.1 cgd ifa = oifa;
607 1.1 cgd }
608 1.95 dyoung return ifa;
609 1.1 cgd }
610 1.1 cgd
611 1.1 cgd #define ROUNDUP(a) (a>0 ? (1 + (((a) - 1) | (sizeof(long) - 1))) : sizeof(long))
612 1.1 cgd
613 1.9 mycroft int
614 1.60 matt rtrequest(int req, const struct sockaddr *dst, const struct sockaddr *gateway,
615 1.60 matt const struct sockaddr *netmask, int flags, struct rtentry **ret_nrt)
616 1.1 cgd {
617 1.39 itojun struct rt_addrinfo info;
618 1.39 itojun
619 1.44 thorpej memset(&info, 0, sizeof(info));
620 1.39 itojun info.rti_flags = flags;
621 1.39 itojun info.rti_info[RTAX_DST] = dst;
622 1.39 itojun info.rti_info[RTAX_GATEWAY] = gateway;
623 1.39 itojun info.rti_info[RTAX_NETMASK] = netmask;
624 1.39 itojun return rtrequest1(req, &info, ret_nrt);
625 1.39 itojun }
626 1.39 itojun
627 1.39 itojun int
628 1.60 matt rt_getifa(struct rt_addrinfo *info)
629 1.39 itojun {
630 1.39 itojun struct ifaddr *ifa;
631 1.68 christos const struct sockaddr *dst = info->rti_info[RTAX_DST];
632 1.68 christos const struct sockaddr *gateway = info->rti_info[RTAX_GATEWAY];
633 1.68 christos const struct sockaddr *ifaaddr = info->rti_info[RTAX_IFA];
634 1.68 christos const struct sockaddr *ifpaddr = info->rti_info[RTAX_IFP];
635 1.68 christos int flags = info->rti_flags;
636 1.39 itojun
637 1.39 itojun /*
638 1.39 itojun * ifp may be specified by sockaddr_dl when protocol address
639 1.39 itojun * is ambiguous
640 1.39 itojun */
641 1.39 itojun if (info->rti_ifp == NULL && ifpaddr != NULL
642 1.39 itojun && ifpaddr->sa_family == AF_LINK &&
643 1.101 dyoung (ifa = ifa_ifwithnet(ifpaddr)) != NULL)
644 1.39 itojun info->rti_ifp = ifa->ifa_ifp;
645 1.39 itojun if (info->rti_ifa == NULL && ifaaddr != NULL)
646 1.39 itojun info->rti_ifa = ifa_ifwithaddr(ifaaddr);
647 1.39 itojun if (info->rti_ifa == NULL) {
648 1.59 matt const struct sockaddr *sa;
649 1.39 itojun
650 1.39 itojun sa = ifaaddr != NULL ? ifaaddr :
651 1.39 itojun (gateway != NULL ? gateway : dst);
652 1.39 itojun if (sa != NULL && info->rti_ifp != NULL)
653 1.39 itojun info->rti_ifa = ifaof_ifpforaddr(sa, info->rti_ifp);
654 1.39 itojun else if (dst != NULL && gateway != NULL)
655 1.39 itojun info->rti_ifa = ifa_ifwithroute(flags, dst, gateway);
656 1.39 itojun else if (sa != NULL)
657 1.39 itojun info->rti_ifa = ifa_ifwithroute(flags, sa, sa);
658 1.39 itojun }
659 1.74 dyoung if ((ifa = info->rti_ifa) == NULL)
660 1.74 dyoung return ENETUNREACH;
661 1.74 dyoung if (ifa->ifa_getifa != NULL)
662 1.74 dyoung info->rti_ifa = ifa = (*ifa->ifa_getifa)(ifa, dst);
663 1.74 dyoung if (info->rti_ifp == NULL)
664 1.74 dyoung info->rti_ifp = ifa->ifa_ifp;
665 1.74 dyoung return 0;
666 1.39 itojun }
667 1.39 itojun
668 1.39 itojun int
669 1.60 matt rtrequest1(int req, struct rt_addrinfo *info, struct rtentry **ret_nrt)
670 1.39 itojun {
671 1.60 matt int s = splsoftnet();
672 1.60 matt int error = 0;
673 1.40 itojun struct rtentry *rt, *crt;
674 1.36 augustss struct radix_node *rn;
675 1.36 augustss struct radix_node_head *rnh;
676 1.10 mycroft struct ifaddr *ifa;
677 1.94 dyoung struct sockaddr_storage maskeddst;
678 1.68 christos const struct sockaddr *dst = info->rti_info[RTAX_DST];
679 1.68 christos const struct sockaddr *gateway = info->rti_info[RTAX_GATEWAY];
680 1.68 christos const struct sockaddr *netmask = info->rti_info[RTAX_NETMASK];
681 1.68 christos int flags = info->rti_flags;
682 1.1 cgd #define senderr(x) { error = x ; goto bad; }
683 1.1 cgd
684 1.68 christos if ((rnh = rt_tables[dst->sa_family]) == NULL)
685 1.1 cgd senderr(ESRCH);
686 1.1 cgd if (flags & RTF_HOST)
687 1.68 christos netmask = NULL;
688 1.1 cgd switch (req) {
689 1.1 cgd case RTM_DELETE:
690 1.63 christos if (netmask) {
691 1.94 dyoung rt_maskedcopy(dst, (struct sockaddr *)&maskeddst,
692 1.94 dyoung netmask);
693 1.94 dyoung dst = (struct sockaddr *)&maskeddst;
694 1.63 christos }
695 1.68 christos if ((rn = rnh->rnh_lookup(dst, netmask, rnh)) == NULL)
696 1.41 itojun senderr(ESRCH);
697 1.41 itojun rt = (struct rtentry *)rn;
698 1.41 itojun if ((rt->rt_flags & RTF_CLONING) != 0) {
699 1.41 itojun /* clean up any cloned children */
700 1.92 dyoung rtflushclone(dst->sa_family, rt);
701 1.41 itojun }
702 1.68 christos if ((rn = rnh->rnh_deladdr(dst, netmask, rnh)) == NULL)
703 1.1 cgd senderr(ESRCH);
704 1.1 cgd if (rn->rn_flags & (RNF_ACTIVE | RNF_ROOT))
705 1.1 cgd panic ("rtrequest delete");
706 1.1 cgd rt = (struct rtentry *)rn;
707 1.10 mycroft if (rt->rt_gwroute) {
708 1.68 christos RTFREE(rt->rt_gwroute);
709 1.68 christos rt->rt_gwroute = NULL;
710 1.48 itojun }
711 1.48 itojun if (rt->rt_parent) {
712 1.48 itojun rt->rt_parent->rt_refcnt--;
713 1.48 itojun rt->rt_parent = NULL;
714 1.10 mycroft }
715 1.28 erh rt->rt_flags &= ~RTF_UP;
716 1.116 roy if ((ifa = rt->rt_ifa)) {
717 1.116 roy if (ifa->ifa_flags & IFA_ROUTE &&
718 1.116 roy rt_ifa_connected(rt, ifa)) {
719 1.116 roy RT_DPRINTF("rt->_rt_key = %p, ifa = %p, "
720 1.116 roy "deleted IFA_ROUTE\n",
721 1.116 roy (void *)rt->_rt_key, (void *)ifa);
722 1.116 roy ifa->ifa_flags &= ~IFA_ROUTE;
723 1.116 roy }
724 1.116 roy if (ifa->ifa_rtrequest)
725 1.116 roy ifa->ifa_rtrequest(RTM_DELETE, rt, info);
726 1.116 roy }
727 1.1 cgd rttrash++;
728 1.10 mycroft if (ret_nrt)
729 1.10 mycroft *ret_nrt = rt;
730 1.10 mycroft else if (rt->rt_refcnt <= 0) {
731 1.10 mycroft rt->rt_refcnt++;
732 1.1 cgd rtfree(rt);
733 1.10 mycroft }
734 1.1 cgd break;
735 1.1 cgd
736 1.1 cgd case RTM_RESOLVE:
737 1.68 christos if (ret_nrt == NULL || (rt = *ret_nrt) == NULL)
738 1.1 cgd senderr(EINVAL);
739 1.40 itojun if ((rt->rt_flags & RTF_CLONING) == 0)
740 1.40 itojun senderr(EINVAL);
741 1.1 cgd ifa = rt->rt_ifa;
742 1.40 itojun flags = rt->rt_flags & ~(RTF_CLONING | RTF_STATIC);
743 1.40 itojun flags |= RTF_CLONED;
744 1.1 cgd gateway = rt->rt_gateway;
745 1.94 dyoung flags |= RTF_HOST;
746 1.1 cgd goto makeroute;
747 1.1 cgd
748 1.1 cgd case RTM_ADD:
749 1.68 christos if (info->rti_ifa == NULL && (error = rt_getifa(info)))
750 1.39 itojun senderr(error);
751 1.39 itojun ifa = info->rti_ifa;
752 1.1 cgd makeroute:
753 1.72 tls /* Already at splsoftnet() so pool_get/pool_put are safe */
754 1.22 thorpej rt = pool_get(&rtentry_pool, PR_NOWAIT);
755 1.68 christos if (rt == NULL)
756 1.1 cgd senderr(ENOBUFS);
757 1.109 dyoung memset(rt, 0, sizeof(*rt));
758 1.10 mycroft rt->rt_flags = RTF_UP | flags;
759 1.18 kml LIST_INIT(&rt->rt_timer);
760 1.110 dyoung RT_DPRINTF("rt->_rt_key = %p\n", (void *)rt->_rt_key);
761 1.96 dyoung if (rt_setkey(rt, dst, M_NOWAIT) == NULL ||
762 1.94 dyoung rt_setgate(rt, gateway) != 0) {
763 1.22 thorpej pool_put(&rtentry_pool, rt);
764 1.10 mycroft senderr(ENOBUFS);
765 1.10 mycroft }
766 1.110 dyoung RT_DPRINTF("rt->_rt_key = %p\n", (void *)rt->_rt_key);
767 1.1 cgd if (netmask) {
768 1.94 dyoung rt_maskedcopy(dst, (struct sockaddr *)&maskeddst,
769 1.94 dyoung netmask);
770 1.96 dyoung rt_setkey(rt, (struct sockaddr *)&maskeddst, M_NOWAIT);
771 1.110 dyoung RT_DPRINTF("rt->_rt_key = %p\n", (void *)rt->_rt_key);
772 1.94 dyoung } else {
773 1.96 dyoung rt_setkey(rt, dst, M_NOWAIT);
774 1.110 dyoung RT_DPRINTF("rt->_rt_key = %p\n", (void *)rt->_rt_key);
775 1.94 dyoung }
776 1.74 dyoung rt_set_ifa(rt, ifa);
777 1.110 dyoung RT_DPRINTF("rt->_rt_key = %p\n", (void *)rt->_rt_key);
778 1.1 cgd rt->rt_ifp = ifa->ifa_ifp;
779 1.27 matt if (req == RTM_RESOLVE) {
780 1.1 cgd rt->rt_rmx = (*ret_nrt)->rt_rmx; /* copy metrics */
781 1.41 itojun rt->rt_parent = *ret_nrt;
782 1.41 itojun rt->rt_parent->rt_refcnt++;
783 1.40 itojun }
784 1.110 dyoung RT_DPRINTF("rt->_rt_key = %p\n", (void *)rt->_rt_key);
785 1.94 dyoung rn = rnh->rnh_addaddr(rt_getkey(rt), netmask, rnh,
786 1.94 dyoung rt->rt_nodes);
787 1.110 dyoung RT_DPRINTF("rt->_rt_key = %p\n", (void *)rt->_rt_key);
788 1.94 dyoung if (rn == NULL && (crt = rtalloc1(rt_getkey(rt), 0)) != NULL) {
789 1.40 itojun /* overwrite cloned route */
790 1.40 itojun if ((crt->rt_flags & RTF_CLONED) != 0) {
791 1.40 itojun rtdeletemsg(crt);
792 1.94 dyoung rn = rnh->rnh_addaddr(rt_getkey(rt),
793 1.66 christos netmask, rnh, rt->rt_nodes);
794 1.40 itojun }
795 1.40 itojun RTFREE(crt);
796 1.110 dyoung RT_DPRINTF("rt->_rt_key = %p\n", (void *)rt->_rt_key);
797 1.40 itojun }
798 1.110 dyoung RT_DPRINTF("rt->_rt_key = %p\n", (void *)rt->_rt_key);
799 1.68 christos if (rn == NULL) {
800 1.40 itojun IFAFREE(ifa);
801 1.41 itojun if ((rt->rt_flags & RTF_CLONED) != 0 && rt->rt_parent)
802 1.41 itojun rtfree(rt->rt_parent);
803 1.40 itojun if (rt->rt_gwroute)
804 1.40 itojun rtfree(rt->rt_gwroute);
805 1.94 dyoung rt_destroy(rt);
806 1.40 itojun pool_put(&rtentry_pool, rt);
807 1.40 itojun senderr(EEXIST);
808 1.27 matt }
809 1.110 dyoung RT_DPRINTF("rt->_rt_key = %p\n", (void *)rt->_rt_key);
810 1.1 cgd if (ifa->ifa_rtrequest)
811 1.39 itojun ifa->ifa_rtrequest(req, rt, info);
812 1.110 dyoung RT_DPRINTF("rt->_rt_key = %p\n", (void *)rt->_rt_key);
813 1.1 cgd if (ret_nrt) {
814 1.1 cgd *ret_nrt = rt;
815 1.1 cgd rt->rt_refcnt++;
816 1.41 itojun }
817 1.41 itojun if ((rt->rt_flags & RTF_CLONING) != 0) {
818 1.41 itojun /* clean up any cloned children */
819 1.92 dyoung rtflushclone(dst->sa_family, rt);
820 1.1 cgd }
821 1.82 dyoung rtflushall(dst->sa_family);
822 1.1 cgd break;
823 1.92 dyoung case RTM_GET:
824 1.94 dyoung if (netmask != NULL) {
825 1.94 dyoung rt_maskedcopy(dst, (struct sockaddr *)&maskeddst,
826 1.94 dyoung netmask);
827 1.94 dyoung dst = (struct sockaddr *)&maskeddst;
828 1.94 dyoung }
829 1.92 dyoung rn = rnh->rnh_lookup(dst, netmask, rnh);
830 1.92 dyoung if (rn == NULL || (rn->rn_flags & RNF_ROOT) != 0)
831 1.92 dyoung senderr(ESRCH);
832 1.92 dyoung if (ret_nrt != NULL) {
833 1.92 dyoung rt = (struct rtentry *)rn;
834 1.92 dyoung *ret_nrt = rt;
835 1.92 dyoung rt->rt_refcnt++;
836 1.92 dyoung }
837 1.92 dyoung break;
838 1.1 cgd }
839 1.1 cgd bad:
840 1.1 cgd splx(s);
841 1.95 dyoung return error;
842 1.1 cgd }
843 1.1 cgd
844 1.10 mycroft int
845 1.94 dyoung rt_setgate(struct rtentry *rt, const struct sockaddr *gate)
846 1.10 mycroft {
847 1.94 dyoung KASSERT(rt != rt->rt_gwroute);
848 1.94 dyoung
849 1.94 dyoung KASSERT(rt->_rt_key != NULL);
850 1.110 dyoung RT_DPRINTF("rt->_rt_key = %p\n", (void *)rt->_rt_key);
851 1.94 dyoung
852 1.10 mycroft if (rt->rt_gwroute) {
853 1.68 christos RTFREE(rt->rt_gwroute);
854 1.68 christos rt->rt_gwroute = NULL;
855 1.10 mycroft }
856 1.94 dyoung KASSERT(rt->_rt_key != NULL);
857 1.110 dyoung RT_DPRINTF("rt->_rt_key = %p\n", (void *)rt->_rt_key);
858 1.94 dyoung if (rt->rt_gateway != NULL)
859 1.94 dyoung sockaddr_free(rt->rt_gateway);
860 1.94 dyoung KASSERT(rt->_rt_key != NULL);
861 1.110 dyoung RT_DPRINTF("rt->_rt_key = %p\n", (void *)rt->_rt_key);
862 1.96 dyoung if ((rt->rt_gateway = sockaddr_dup(gate, M_NOWAIT)) == NULL)
863 1.94 dyoung return ENOMEM;
864 1.94 dyoung KASSERT(rt->_rt_key != NULL);
865 1.110 dyoung RT_DPRINTF("rt->_rt_key = %p\n", (void *)rt->_rt_key);
866 1.94 dyoung
867 1.10 mycroft if (rt->rt_flags & RTF_GATEWAY) {
868 1.94 dyoung KASSERT(rt->_rt_key != NULL);
869 1.110 dyoung RT_DPRINTF("rt->_rt_key = %p\n", (void *)rt->_rt_key);
870 1.10 mycroft rt->rt_gwroute = rtalloc1(gate, 1);
871 1.27 matt /*
872 1.27 matt * If we switched gateways, grab the MTU from the new
873 1.47 itojun * gateway route if the current MTU, if the current MTU is
874 1.47 itojun * greater than the MTU of gateway.
875 1.47 itojun * Note that, if the MTU of gateway is 0, we will reset the
876 1.47 itojun * MTU of the route to run PMTUD again from scratch. XXX
877 1.27 matt */
878 1.94 dyoung KASSERT(rt->_rt_key != NULL);
879 1.110 dyoung RT_DPRINTF("rt->_rt_key = %p\n", (void *)rt->_rt_key);
880 1.27 matt if (rt->rt_gwroute
881 1.27 matt && !(rt->rt_rmx.rmx_locks & RTV_MTU)
882 1.47 itojun && rt->rt_rmx.rmx_mtu
883 1.47 itojun && rt->rt_rmx.rmx_mtu > rt->rt_gwroute->rt_rmx.rmx_mtu) {
884 1.27 matt rt->rt_rmx.rmx_mtu = rt->rt_gwroute->rt_rmx.rmx_mtu;
885 1.27 matt }
886 1.10 mycroft }
887 1.94 dyoung KASSERT(rt->_rt_key != NULL);
888 1.110 dyoung RT_DPRINTF("rt->_rt_key = %p\n", (void *)rt->_rt_key);
889 1.10 mycroft return 0;
890 1.10 mycroft }
891 1.10 mycroft
892 1.9 mycroft void
893 1.60 matt rt_maskedcopy(const struct sockaddr *src, struct sockaddr *dst,
894 1.60 matt const struct sockaddr *netmask)
895 1.1 cgd {
896 1.94 dyoung const char *netmaskp = &netmask->sa_data[0],
897 1.94 dyoung *srcp = &src->sa_data[0];
898 1.94 dyoung char *dstp = &dst->sa_data[0];
899 1.94 dyoung const char *maskend = dstp + MIN(netmask->sa_len, src->sa_len);
900 1.94 dyoung const char *srcend = dstp + src->sa_len;
901 1.94 dyoung
902 1.94 dyoung dst->sa_len = src->sa_len;
903 1.94 dyoung dst->sa_family = src->sa_family;
904 1.94 dyoung
905 1.94 dyoung while (dstp < maskend)
906 1.94 dyoung *dstp++ = *srcp++ & *netmaskp++;
907 1.94 dyoung if (dstp < srcend)
908 1.94 dyoung memset(dstp, 0, (size_t)(srcend - dstp));
909 1.1 cgd }
910 1.10 mycroft
911 1.1 cgd /*
912 1.29 sommerfe * Set up or tear down a routing table entry, normally
913 1.1 cgd * for an interface.
914 1.1 cgd */
915 1.9 mycroft int
916 1.60 matt rtinit(struct ifaddr *ifa, int cmd, int flags)
917 1.1 cgd {
918 1.36 augustss struct rtentry *rt;
919 1.36 augustss struct sockaddr *dst, *odst;
920 1.94 dyoung struct sockaddr_storage maskeddst;
921 1.68 christos struct rtentry *nrt = NULL;
922 1.1 cgd int error;
923 1.39 itojun struct rt_addrinfo info;
924 1.114 dyoung struct sockaddr_dl *sdl;
925 1.114 dyoung const struct sockaddr_dl *ifsdl;
926 1.1 cgd
927 1.1 cgd dst = flags & RTF_HOST ? ifa->ifa_dstaddr : ifa->ifa_addr;
928 1.1 cgd if (cmd == RTM_DELETE) {
929 1.1 cgd if ((flags & RTF_HOST) == 0 && ifa->ifa_netmask) {
930 1.29 sommerfe /* Delete subnet route for this interface */
931 1.29 sommerfe odst = dst;
932 1.94 dyoung dst = (struct sockaddr *)&maskeddst;
933 1.29 sommerfe rt_maskedcopy(odst, dst, ifa->ifa_netmask);
934 1.1 cgd }
935 1.14 christos if ((rt = rtalloc1(dst, 0)) != NULL) {
936 1.1 cgd rt->rt_refcnt--;
937 1.29 sommerfe if (rt->rt_ifa != ifa)
938 1.85 dyoung return (flags & RTF_HOST) ? EHOSTUNREACH
939 1.85 dyoung : ENETUNREACH;
940 1.1 cgd }
941 1.1 cgd }
942 1.44 thorpej memset(&info, 0, sizeof(info));
943 1.39 itojun info.rti_ifa = ifa;
944 1.39 itojun info.rti_flags = flags | ifa->ifa_flags;
945 1.39 itojun info.rti_info[RTAX_DST] = dst;
946 1.39 itojun info.rti_info[RTAX_GATEWAY] = ifa->ifa_addr;
947 1.39 itojun /*
948 1.39 itojun * XXX here, it seems that we are assuming that ifa_netmask is NULL
949 1.39 itojun * for RTF_HOST. bsdi4 passes NULL explicitly (via intermediate
950 1.39 itojun * variable) when RTF_HOST is 1. still not sure if i can safely
951 1.39 itojun * change it to meet bsdi4 behavior.
952 1.39 itojun */
953 1.114 dyoung if (cmd != RTM_LLINFO_UPD)
954 1.114 dyoung info.rti_info[RTAX_NETMASK] = ifa->ifa_netmask;
955 1.114 dyoung error = rtrequest1((cmd == RTM_LLINFO_UPD) ? RTM_GET : cmd, &info,
956 1.114 dyoung &nrt);
957 1.114 dyoung if (error != 0 || (rt = nrt) == NULL)
958 1.114 dyoung ;
959 1.114 dyoung else switch (cmd) {
960 1.114 dyoung case RTM_DELETE:
961 1.10 mycroft rt_newaddrmsg(cmd, ifa, error, nrt);
962 1.10 mycroft if (rt->rt_refcnt <= 0) {
963 1.10 mycroft rt->rt_refcnt++;
964 1.10 mycroft rtfree(rt);
965 1.10 mycroft }
966 1.114 dyoung break;
967 1.114 dyoung case RTM_LLINFO_UPD:
968 1.114 dyoung rt->rt_refcnt--;
969 1.114 dyoung RT_DPRINTF("%s: updating%s\n", __func__,
970 1.114 dyoung ((rt->rt_flags & RTF_LLINFO) == 0) ? " (no llinfo)" : "");
971 1.114 dyoung
972 1.114 dyoung ifsdl = ifa->ifa_ifp->if_sadl;
973 1.114 dyoung
974 1.114 dyoung if ((rt->rt_flags & RTF_LLINFO) != 0 &&
975 1.114 dyoung (sdl = satosdl(rt->rt_gateway)) != NULL &&
976 1.114 dyoung sdl->sdl_family == AF_LINK &&
977 1.114 dyoung sockaddr_dl_setaddr(sdl, sdl->sdl_len, CLLADDR(ifsdl),
978 1.114 dyoung ifa->ifa_ifp->if_addrlen) == NULL) {
979 1.114 dyoung error = EINVAL;
980 1.114 dyoung break;
981 1.114 dyoung }
982 1.114 dyoung
983 1.114 dyoung if (cmd == RTM_LLINFO_UPD && ifa->ifa_rtrequest != NULL)
984 1.114 dyoung ifa->ifa_rtrequest(RTM_LLINFO_UPD, rt, &info);
985 1.114 dyoung rt_newaddrmsg(RTM_CHANGE, ifa, error, nrt);
986 1.114 dyoung break;
987 1.114 dyoung case RTM_ADD:
988 1.10 mycroft rt->rt_refcnt--;
989 1.10 mycroft if (rt->rt_ifa != ifa) {
990 1.17 christos printf("rtinit: wrong ifa (%p) was (%p)\n", ifa,
991 1.17 christos rt->rt_ifa);
992 1.114 dyoung if (rt->rt_ifa->ifa_rtrequest != NULL) {
993 1.114 dyoung rt->rt_ifa->ifa_rtrequest(RTM_DELETE, rt,
994 1.114 dyoung &info);
995 1.114 dyoung }
996 1.74 dyoung rt_replace_ifa(rt, ifa);
997 1.10 mycroft rt->rt_ifp = ifa->ifa_ifp;
998 1.114 dyoung if (ifa->ifa_rtrequest != NULL)
999 1.114 dyoung ifa->ifa_rtrequest(RTM_ADD, rt, &info);
1000 1.10 mycroft }
1001 1.10 mycroft rt_newaddrmsg(cmd, ifa, error, nrt);
1002 1.114 dyoung break;
1003 1.1 cgd }
1004 1.85 dyoung return error;
1005 1.18 kml }
1006 1.18 kml
1007 1.18 kml /*
1008 1.18 kml * Route timer routines. These routes allow functions to be called
1009 1.18 kml * for various routes at any time. This is useful in supporting
1010 1.18 kml * path MTU discovery and redirect route deletion.
1011 1.18 kml *
1012 1.18 kml * This is similar to some BSDI internal functions, but it provides
1013 1.18 kml * for multiple queues for efficiency's sake...
1014 1.18 kml */
1015 1.18 kml
1016 1.18 kml LIST_HEAD(, rttimer_queue) rttimer_queue_head;
1017 1.18 kml static int rt_init_done = 0;
1018 1.18 kml
1019 1.60 matt #define RTTIMER_CALLOUT(r) do { \
1020 1.60 matt if (r->rtt_func != NULL) { \
1021 1.60 matt (*r->rtt_func)(r->rtt_rt, r); \
1022 1.60 matt } else { \
1023 1.60 matt rtrequest((int) RTM_DELETE, \
1024 1.94 dyoung rt_getkey(r->rtt_rt), \
1025 1.60 matt 0, 0, 0, 0); \
1026 1.60 matt } \
1027 1.60 matt } while (/*CONSTCOND*/0)
1028 1.18 kml
1029 1.65 perry /*
1030 1.18 kml * Some subtle order problems with domain initialization mean that
1031 1.18 kml * we cannot count on this being run from rt_init before various
1032 1.18 kml * protocol initializations are done. Therefore, we make sure
1033 1.18 kml * that this is run when the first queue is added...
1034 1.18 kml */
1035 1.18 kml
1036 1.65 perry void
1037 1.60 matt rt_timer_init(void)
1038 1.18 kml {
1039 1.18 kml assert(rt_init_done == 0);
1040 1.18 kml
1041 1.18 kml LIST_INIT(&rttimer_queue_head);
1042 1.93 ad callout_init(&rt_timer_ch, 0);
1043 1.35 thorpej callout_reset(&rt_timer_ch, hz, rt_timer_timer, NULL);
1044 1.18 kml rt_init_done = 1;
1045 1.18 kml }
1046 1.18 kml
1047 1.18 kml struct rttimer_queue *
1048 1.60 matt rt_timer_queue_create(u_int timeout)
1049 1.18 kml {
1050 1.18 kml struct rttimer_queue *rtq;
1051 1.18 kml
1052 1.18 kml if (rt_init_done == 0)
1053 1.18 kml rt_timer_init();
1054 1.18 kml
1055 1.18 kml R_Malloc(rtq, struct rttimer_queue *, sizeof *rtq);
1056 1.18 kml if (rtq == NULL)
1057 1.85 dyoung return NULL;
1058 1.109 dyoung memset(rtq, 0, sizeof(*rtq));
1059 1.18 kml
1060 1.18 kml rtq->rtq_timeout = timeout;
1061 1.24 thorpej TAILQ_INIT(&rtq->rtq_head);
1062 1.18 kml LIST_INSERT_HEAD(&rttimer_queue_head, rtq, rtq_link);
1063 1.18 kml
1064 1.85 dyoung return rtq;
1065 1.18 kml }
1066 1.18 kml
1067 1.18 kml void
1068 1.60 matt rt_timer_queue_change(struct rttimer_queue *rtq, long timeout)
1069 1.18 kml {
1070 1.24 thorpej
1071 1.18 kml rtq->rtq_timeout = timeout;
1072 1.18 kml }
1073 1.18 kml
1074 1.18 kml void
1075 1.60 matt rt_timer_queue_remove_all(struct rttimer_queue *rtq, int destroy)
1076 1.18 kml {
1077 1.24 thorpej struct rttimer *r;
1078 1.18 kml
1079 1.24 thorpej while ((r = TAILQ_FIRST(&rtq->rtq_head)) != NULL) {
1080 1.18 kml LIST_REMOVE(r, rtt_link);
1081 1.24 thorpej TAILQ_REMOVE(&rtq->rtq_head, r, rtt_next);
1082 1.24 thorpej if (destroy)
1083 1.18 kml RTTIMER_CALLOUT(r);
1084 1.72 tls /* we are already at splsoftnet */
1085 1.22 thorpej pool_put(&rttimer_pool, r);
1086 1.37 itojun if (rtq->rtq_count > 0)
1087 1.37 itojun rtq->rtq_count--;
1088 1.37 itojun else
1089 1.55 itojun printf("rt_timer_queue_remove_all: "
1090 1.55 itojun "rtq_count reached 0\n");
1091 1.18 kml }
1092 1.55 itojun }
1093 1.55 itojun
1094 1.55 itojun void
1095 1.60 matt rt_timer_queue_destroy(struct rttimer_queue *rtq, int destroy)
1096 1.55 itojun {
1097 1.55 itojun
1098 1.55 itojun rt_timer_queue_remove_all(rtq, destroy);
1099 1.18 kml
1100 1.18 kml LIST_REMOVE(rtq, rtq_link);
1101 1.22 thorpej
1102 1.22 thorpej /*
1103 1.22 thorpej * Caller is responsible for freeing the rttimer_queue structure.
1104 1.22 thorpej */
1105 1.18 kml }
1106 1.18 kml
1107 1.37 itojun unsigned long
1108 1.60 matt rt_timer_count(struct rttimer_queue *rtq)
1109 1.37 itojun {
1110 1.37 itojun return rtq->rtq_count;
1111 1.37 itojun }
1112 1.37 itojun
1113 1.65 perry void
1114 1.60 matt rt_timer_remove_all(struct rtentry *rt, int destroy)
1115 1.18 kml {
1116 1.24 thorpej struct rttimer *r;
1117 1.18 kml
1118 1.24 thorpej while ((r = LIST_FIRST(&rt->rt_timer)) != NULL) {
1119 1.18 kml LIST_REMOVE(r, rtt_link);
1120 1.24 thorpej TAILQ_REMOVE(&r->rtt_queue->rtq_head, r, rtt_next);
1121 1.54 itojun if (destroy)
1122 1.54 itojun RTTIMER_CALLOUT(r);
1123 1.37 itojun if (r->rtt_queue->rtq_count > 0)
1124 1.37 itojun r->rtt_queue->rtq_count--;
1125 1.37 itojun else
1126 1.37 itojun printf("rt_timer_remove_all: rtq_count reached 0\n");
1127 1.72 tls /* we are already at splsoftnet */
1128 1.38 itojun pool_put(&rttimer_pool, r);
1129 1.18 kml }
1130 1.18 kml }
1131 1.18 kml
1132 1.65 perry int
1133 1.60 matt rt_timer_add(struct rtentry *rt,
1134 1.60 matt void (*func)(struct rtentry *, struct rttimer *),
1135 1.60 matt struct rttimer_queue *queue)
1136 1.18 kml {
1137 1.24 thorpej struct rttimer *r;
1138 1.72 tls int s;
1139 1.18 kml
1140 1.24 thorpej /*
1141 1.24 thorpej * If there's already a timer with this action, destroy it before
1142 1.24 thorpej * we add a new one.
1143 1.24 thorpej */
1144 1.85 dyoung LIST_FOREACH(r, &rt->rt_timer, rtt_link) {
1145 1.85 dyoung if (r->rtt_func == func)
1146 1.85 dyoung break;
1147 1.85 dyoung }
1148 1.85 dyoung if (r != NULL) {
1149 1.85 dyoung LIST_REMOVE(r, rtt_link);
1150 1.85 dyoung TAILQ_REMOVE(&r->rtt_queue->rtq_head, r, rtt_next);
1151 1.85 dyoung if (r->rtt_queue->rtq_count > 0)
1152 1.85 dyoung r->rtt_queue->rtq_count--;
1153 1.85 dyoung else
1154 1.85 dyoung printf("rt_timer_add: rtq_count reached 0\n");
1155 1.85 dyoung } else {
1156 1.85 dyoung s = splsoftnet();
1157 1.85 dyoung r = pool_get(&rttimer_pool, PR_NOWAIT);
1158 1.85 dyoung splx(s);
1159 1.85 dyoung if (r == NULL)
1160 1.85 dyoung return ENOBUFS;
1161 1.18 kml }
1162 1.18 kml
1163 1.85 dyoung memset(r, 0, sizeof(*r));
1164 1.24 thorpej
1165 1.24 thorpej r->rtt_rt = rt;
1166 1.70 kardel r->rtt_time = time_uptime;
1167 1.24 thorpej r->rtt_func = func;
1168 1.24 thorpej r->rtt_queue = queue;
1169 1.24 thorpej LIST_INSERT_HEAD(&rt->rt_timer, r, rtt_link);
1170 1.24 thorpej TAILQ_INSERT_TAIL(&queue->rtq_head, r, rtt_next);
1171 1.37 itojun r->rtt_queue->rtq_count++;
1172 1.65 perry
1173 1.95 dyoung return 0;
1174 1.18 kml }
1175 1.18 kml
1176 1.18 kml /* ARGSUSED */
1177 1.18 kml void
1178 1.76 christos rt_timer_timer(void *arg)
1179 1.18 kml {
1180 1.24 thorpej struct rttimer_queue *rtq;
1181 1.24 thorpej struct rttimer *r;
1182 1.24 thorpej int s;
1183 1.21 kml
1184 1.24 thorpej s = splsoftnet();
1185 1.85 dyoung LIST_FOREACH(rtq, &rttimer_queue_head, rtq_link) {
1186 1.24 thorpej while ((r = TAILQ_FIRST(&rtq->rtq_head)) != NULL &&
1187 1.70 kardel (r->rtt_time + rtq->rtq_timeout) < time_uptime) {
1188 1.24 thorpej LIST_REMOVE(r, rtt_link);
1189 1.24 thorpej TAILQ_REMOVE(&rtq->rtq_head, r, rtt_next);
1190 1.24 thorpej RTTIMER_CALLOUT(r);
1191 1.24 thorpej pool_put(&rttimer_pool, r);
1192 1.37 itojun if (rtq->rtq_count > 0)
1193 1.37 itojun rtq->rtq_count--;
1194 1.37 itojun else
1195 1.37 itojun printf("rt_timer_timer: rtq_count reached 0\n");
1196 1.18 kml }
1197 1.18 kml }
1198 1.24 thorpej splx(s);
1199 1.18 kml
1200 1.35 thorpej callout_reset(&rt_timer_ch, hz, rt_timer_timer, NULL);
1201 1.1 cgd }
1202 1.83 joerg
1203 1.102 dyoung static struct rtentry *
1204 1.84 joerg _rtcache_init(struct route *ro, int flag)
1205 1.84 joerg {
1206 1.114 dyoung rtcache_invariants(ro);
1207 1.99 dyoung KASSERT(ro->_ro_rt == NULL);
1208 1.84 joerg
1209 1.90 dyoung if (rtcache_getdst(ro) == NULL)
1210 1.102 dyoung return NULL;
1211 1.105 dyoung ro->ro_invalid = false;
1212 1.105 dyoung if ((ro->_ro_rt = rtalloc1(rtcache_getdst(ro), flag)) != NULL)
1213 1.105 dyoung rtcache(ro);
1214 1.103 dyoung
1215 1.114 dyoung rtcache_invariants(ro);
1216 1.102 dyoung return ro->_ro_rt;
1217 1.84 joerg }
1218 1.84 joerg
1219 1.102 dyoung struct rtentry *
1220 1.83 joerg rtcache_init(struct route *ro)
1221 1.83 joerg {
1222 1.102 dyoung return _rtcache_init(ro, 1);
1223 1.83 joerg }
1224 1.83 joerg
1225 1.102 dyoung struct rtentry *
1226 1.83 joerg rtcache_init_noclone(struct route *ro)
1227 1.83 joerg {
1228 1.102 dyoung return _rtcache_init(ro, 0);
1229 1.83 joerg }
1230 1.90 dyoung
1231 1.102 dyoung struct rtentry *
1232 1.90 dyoung rtcache_update(struct route *ro, int clone)
1233 1.90 dyoung {
1234 1.90 dyoung rtcache_clear(ro);
1235 1.102 dyoung return _rtcache_init(ro, clone);
1236 1.90 dyoung }
1237 1.83 joerg
1238 1.83 joerg void
1239 1.90 dyoung rtcache_copy(struct route *new_ro, const struct route *old_ro)
1240 1.83 joerg {
1241 1.103 dyoung struct rtentry *rt;
1242 1.103 dyoung
1243 1.103 dyoung KASSERT(new_ro != old_ro);
1244 1.114 dyoung rtcache_invariants(new_ro);
1245 1.114 dyoung rtcache_invariants(old_ro);
1246 1.103 dyoung
1247 1.104 dyoung if ((rt = rtcache_validate(old_ro)) != NULL)
1248 1.103 dyoung rt->rt_refcnt++;
1249 1.103 dyoung
1250 1.90 dyoung if (rtcache_getdst(old_ro) == NULL ||
1251 1.90 dyoung rtcache_setdst(new_ro, rtcache_getdst(old_ro)) != 0)
1252 1.90 dyoung return;
1253 1.103 dyoung
1254 1.105 dyoung new_ro->ro_invalid = false;
1255 1.103 dyoung if ((new_ro->_ro_rt = rt) != NULL)
1256 1.86 dyoung rtcache(new_ro);
1257 1.114 dyoung rtcache_invariants(new_ro);
1258 1.83 joerg }
1259 1.83 joerg
1260 1.105 dyoung static struct dom_rtlist invalid_routes = LIST_HEAD_INITIALIZER(dom_rtlist);
1261 1.105 dyoung
1262 1.89 xtraeme void
1263 1.105 dyoung rtcache_invalidate(struct dom_rtlist *rtlist)
1264 1.83 joerg {
1265 1.105 dyoung struct route *ro;
1266 1.99 dyoung
1267 1.105 dyoung while ((ro = LIST_FIRST(rtlist)) != NULL) {
1268 1.114 dyoung rtcache_invariants(ro);
1269 1.105 dyoung KASSERT(ro->_ro_rt != NULL);
1270 1.105 dyoung ro->ro_invalid = true;
1271 1.99 dyoung LIST_REMOVE(ro, ro_rtcache_next);
1272 1.105 dyoung LIST_INSERT_HEAD(&invalid_routes, ro, ro_rtcache_next);
1273 1.114 dyoung rtcache_invariants(ro);
1274 1.84 joerg }
1275 1.105 dyoung }
1276 1.105 dyoung
1277 1.105 dyoung void
1278 1.105 dyoung rtcache_clear(struct route *ro)
1279 1.105 dyoung {
1280 1.114 dyoung rtcache_invariants(ro);
1281 1.105 dyoung if (ro->_ro_rt == NULL)
1282 1.105 dyoung return;
1283 1.105 dyoung
1284 1.105 dyoung LIST_REMOVE(ro, ro_rtcache_next);
1285 1.105 dyoung
1286 1.105 dyoung RTFREE(ro->_ro_rt);
1287 1.105 dyoung ro->_ro_rt = NULL;
1288 1.114 dyoung ro->ro_invalid = false;
1289 1.114 dyoung rtcache_invariants(ro);
1290 1.83 joerg }
1291 1.83 joerg
1292 1.90 dyoung struct rtentry *
1293 1.91 dyoung rtcache_lookup2(struct route *ro, const struct sockaddr *dst, int clone,
1294 1.91 dyoung int *hitp)
1295 1.90 dyoung {
1296 1.90 dyoung const struct sockaddr *odst;
1297 1.104 dyoung struct rtentry *rt = NULL;
1298 1.90 dyoung
1299 1.114 dyoung rtcache_invariants(ro);
1300 1.114 dyoung
1301 1.90 dyoung odst = rtcache_getdst(ro);
1302 1.90 dyoung
1303 1.90 dyoung if (odst == NULL)
1304 1.90 dyoung ;
1305 1.90 dyoung else if (sockaddr_cmp(odst, dst) != 0)
1306 1.90 dyoung rtcache_free(ro);
1307 1.104 dyoung else if ((rt = rtcache_validate(ro)) == NULL)
1308 1.91 dyoung rtcache_clear(ro);
1309 1.90 dyoung
1310 1.104 dyoung if (rt == NULL) {
1311 1.91 dyoung *hitp = 0;
1312 1.104 dyoung if (rtcache_setdst(ro, dst) == 0)
1313 1.104 dyoung rt = _rtcache_init(ro, clone);
1314 1.91 dyoung } else
1315 1.91 dyoung *hitp = 1;
1316 1.90 dyoung
1317 1.114 dyoung rtcache_invariants(ro);
1318 1.114 dyoung
1319 1.104 dyoung return rt;
1320 1.90 dyoung }
1321 1.90 dyoung
1322 1.83 joerg void
1323 1.86 dyoung rtcache_free(struct route *ro)
1324 1.86 dyoung {
1325 1.86 dyoung rtcache_clear(ro);
1326 1.86 dyoung if (ro->ro_sa != NULL) {
1327 1.86 dyoung sockaddr_free(ro->ro_sa);
1328 1.86 dyoung ro->ro_sa = NULL;
1329 1.86 dyoung }
1330 1.114 dyoung rtcache_invariants(ro);
1331 1.86 dyoung }
1332 1.86 dyoung
1333 1.90 dyoung int
1334 1.90 dyoung rtcache_setdst(struct route *ro, const struct sockaddr *sa)
1335 1.83 joerg {
1336 1.90 dyoung KASSERT(sa != NULL);
1337 1.90 dyoung
1338 1.114 dyoung rtcache_invariants(ro);
1339 1.90 dyoung if (ro->ro_sa != NULL && ro->ro_sa->sa_family == sa->sa_family) {
1340 1.90 dyoung rtcache_clear(ro);
1341 1.114 dyoung if (sockaddr_copy(ro->ro_sa, ro->ro_sa->sa_len, sa) != NULL) {
1342 1.114 dyoung rtcache_invariants(ro);
1343 1.96 dyoung return 0;
1344 1.114 dyoung }
1345 1.96 dyoung sockaddr_free(ro->ro_sa);
1346 1.90 dyoung } else if (ro->ro_sa != NULL)
1347 1.90 dyoung rtcache_free(ro); /* free ro_sa, wrong family */
1348 1.90 dyoung
1349 1.107 dyoung KASSERT(ro->_ro_rt == NULL);
1350 1.107 dyoung
1351 1.107 dyoung if ((ro->ro_sa = sockaddr_dup(sa, M_NOWAIT)) == NULL) {
1352 1.114 dyoung rtcache_invariants(ro);
1353 1.90 dyoung return ENOMEM;
1354 1.107 dyoung }
1355 1.114 dyoung rtcache_invariants(ro);
1356 1.90 dyoung return 0;
1357 1.83 joerg }
1358 1.92 dyoung
1359 1.92 dyoung static int
1360 1.92 dyoung rt_walktree_visitor(struct radix_node *rn, void *v)
1361 1.92 dyoung {
1362 1.92 dyoung struct rtwalk *rw = (struct rtwalk *)v;
1363 1.92 dyoung
1364 1.92 dyoung return (*rw->rw_f)((struct rtentry *)rn, rw->rw_v);
1365 1.92 dyoung }
1366 1.92 dyoung
1367 1.92 dyoung int
1368 1.92 dyoung rt_walktree(sa_family_t family, int (*f)(struct rtentry *, void *), void *v)
1369 1.92 dyoung {
1370 1.92 dyoung struct radix_node_head *rnh = rt_tables[family];
1371 1.92 dyoung struct rtwalk rw;
1372 1.92 dyoung
1373 1.92 dyoung if (rnh == NULL)
1374 1.92 dyoung return 0;
1375 1.92 dyoung
1376 1.92 dyoung rw.rw_f = f;
1377 1.92 dyoung rw.rw_v = v;
1378 1.92 dyoung
1379 1.92 dyoung return rn_walktree(rnh, rt_walktree_visitor, &rw);
1380 1.92 dyoung }
1381