route.c revision 1.24 1 1.24 thorpej /* $NetBSD: route.c,v 1.24 1998/12/27 18:27:48 thorpej Exp $ */
2 1.18 kml
3 1.18 kml /*-
4 1.18 kml * Copyright (c) 1998 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 * 3. All advertising materials mentioning features or use of this software
20 1.18 kml * must display the following acknowledgement:
21 1.18 kml * This product includes software developed by the NetBSD
22 1.18 kml * Foundation, Inc. and its contributors.
23 1.18 kml * 4. Neither the name of The NetBSD Foundation nor the names of its
24 1.18 kml * contributors may be used to endorse or promote products derived
25 1.18 kml * from this software without specific prior written permission.
26 1.18 kml *
27 1.18 kml * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 1.18 kml * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 1.18 kml * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 1.18 kml * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 1.18 kml * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 1.18 kml * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 1.18 kml * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 1.18 kml * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 1.18 kml * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 1.18 kml * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 1.18 kml * POSSIBILITY OF SUCH DAMAGE.
38 1.18 kml */
39 1.11 cgd
40 1.1 cgd /*
41 1.10 mycroft * Copyright (c) 1980, 1986, 1991, 1993
42 1.10 mycroft * The Regents of the University of California. All rights reserved.
43 1.1 cgd *
44 1.1 cgd * Redistribution and use in source and binary forms, with or without
45 1.1 cgd * modification, are permitted provided that the following conditions
46 1.1 cgd * are met:
47 1.1 cgd * 1. Redistributions of source code must retain the above copyright
48 1.1 cgd * notice, this list of conditions and the following disclaimer.
49 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
50 1.1 cgd * notice, this list of conditions and the following disclaimer in the
51 1.1 cgd * documentation and/or other materials provided with the distribution.
52 1.1 cgd * 3. All advertising materials mentioning features or use of this software
53 1.1 cgd * must display the following acknowledgement:
54 1.1 cgd * This product includes software developed by the University of
55 1.1 cgd * California, Berkeley and its contributors.
56 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
57 1.1 cgd * may be used to endorse or promote products derived from this software
58 1.1 cgd * without specific prior written permission.
59 1.1 cgd *
60 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
61 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
62 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
63 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
64 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
65 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
66 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
67 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
68 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
69 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
70 1.1 cgd * SUCH DAMAGE.
71 1.1 cgd *
72 1.17 christos * @(#)route.c 8.3 (Berkeley) 1/9/95
73 1.1 cgd */
74 1.19 jonathan
75 1.19 jonathan #include "opt_ns.h"
76 1.2 cgd
77 1.5 mycroft #include <sys/param.h>
78 1.5 mycroft #include <sys/systm.h>
79 1.5 mycroft #include <sys/proc.h>
80 1.5 mycroft #include <sys/mbuf.h>
81 1.5 mycroft #include <sys/socket.h>
82 1.5 mycroft #include <sys/socketvar.h>
83 1.5 mycroft #include <sys/domain.h>
84 1.5 mycroft #include <sys/protosw.h>
85 1.18 kml #include <sys/kernel.h>
86 1.5 mycroft #include <sys/ioctl.h>
87 1.22 thorpej #include <sys/pool.h>
88 1.1 cgd
89 1.5 mycroft #include <net/if.h>
90 1.5 mycroft #include <net/route.h>
91 1.5 mycroft #include <net/raw_cb.h>
92 1.1 cgd
93 1.5 mycroft #include <netinet/in.h>
94 1.5 mycroft #include <netinet/in_var.h>
95 1.1 cgd
96 1.1 cgd #ifdef NS
97 1.5 mycroft #include <netns/ns.h>
98 1.1 cgd #endif
99 1.5 mycroft
100 1.1 cgd #define SA(p) ((struct sockaddr *)(p))
101 1.1 cgd
102 1.1 cgd int rttrash; /* routes not in table but not freed */
103 1.1 cgd struct sockaddr wildcard; /* zero valued cookie for wildcard searches */
104 1.1 cgd
105 1.22 thorpej struct pool rtentry_pool; /* pool for rtentry structures */
106 1.22 thorpej struct pool rttimer_pool; /* pool for rttimer structures */
107 1.22 thorpej
108 1.10 mycroft void
109 1.10 mycroft rtable_init(table)
110 1.10 mycroft void **table;
111 1.10 mycroft {
112 1.10 mycroft struct domain *dom;
113 1.10 mycroft for (dom = domains; dom; dom = dom->dom_next)
114 1.10 mycroft if (dom->dom_rtattach)
115 1.10 mycroft dom->dom_rtattach(&table[dom->dom_family],
116 1.10 mycroft dom->dom_rtoffset);
117 1.10 mycroft }
118 1.1 cgd
119 1.9 mycroft void
120 1.10 mycroft route_init()
121 1.1 cgd {
122 1.22 thorpej
123 1.22 thorpej pool_init(&rtentry_pool, sizeof(struct rtentry), 0, 0, 0, "rtentpl",
124 1.22 thorpej 0, NULL, NULL, M_RTABLE);
125 1.22 thorpej
126 1.10 mycroft rn_init(); /* initialize all zeroes, all ones, mask table */
127 1.10 mycroft rtable_init((void **)rt_tables);
128 1.1 cgd }
129 1.1 cgd
130 1.1 cgd /*
131 1.1 cgd * Packet routing routines.
132 1.1 cgd */
133 1.9 mycroft void
134 1.1 cgd rtalloc(ro)
135 1.1 cgd register struct route *ro;
136 1.1 cgd {
137 1.1 cgd if (ro->ro_rt && ro->ro_rt->rt_ifp && (ro->ro_rt->rt_flags & RTF_UP))
138 1.1 cgd return; /* XXX */
139 1.1 cgd ro->ro_rt = rtalloc1(&ro->ro_dst, 1);
140 1.1 cgd }
141 1.1 cgd
142 1.1 cgd struct rtentry *
143 1.1 cgd rtalloc1(dst, report)
144 1.1 cgd register struct sockaddr *dst;
145 1.10 mycroft int report;
146 1.1 cgd {
147 1.10 mycroft register struct radix_node_head *rnh = rt_tables[dst->sa_family];
148 1.1 cgd register struct rtentry *rt;
149 1.1 cgd register struct radix_node *rn;
150 1.1 cgd struct rtentry *newrt = 0;
151 1.10 mycroft struct rt_addrinfo info;
152 1.13 mycroft int s = splsoftnet(), err = 0, msgtype = RTM_MISS;
153 1.1 cgd
154 1.10 mycroft if (rnh && (rn = rnh->rnh_matchaddr((caddr_t)dst, rnh)) &&
155 1.1 cgd ((rn->rn_flags & RNF_ROOT) == 0)) {
156 1.1 cgd newrt = rt = (struct rtentry *)rn;
157 1.1 cgd if (report && (rt->rt_flags & RTF_CLONING)) {
158 1.8 cgd err = rtrequest(RTM_RESOLVE, dst, SA(0),
159 1.10 mycroft SA(0), 0, &newrt);
160 1.8 cgd if (err) {
161 1.8 cgd newrt = rt;
162 1.8 cgd rt->rt_refcnt++;
163 1.8 cgd goto miss;
164 1.8 cgd }
165 1.8 cgd if ((rt = newrt) && (rt->rt_flags & RTF_XRESOLVE)) {
166 1.8 cgd msgtype = RTM_RESOLVE;
167 1.8 cgd goto miss;
168 1.8 cgd }
169 1.1 cgd } else
170 1.1 cgd rt->rt_refcnt++;
171 1.1 cgd } else {
172 1.1 cgd rtstat.rts_unreach++;
173 1.10 mycroft miss: if (report) {
174 1.10 mycroft bzero((caddr_t)&info, sizeof(info));
175 1.10 mycroft info.rti_info[RTAX_DST] = dst;
176 1.10 mycroft rt_missmsg(msgtype, &info, 0, err);
177 1.10 mycroft }
178 1.1 cgd }
179 1.1 cgd splx(s);
180 1.1 cgd return (newrt);
181 1.1 cgd }
182 1.1 cgd
183 1.9 mycroft void
184 1.1 cgd rtfree(rt)
185 1.1 cgd register struct rtentry *rt;
186 1.1 cgd {
187 1.1 cgd register struct ifaddr *ifa;
188 1.10 mycroft
189 1.1 cgd if (rt == 0)
190 1.1 cgd panic("rtfree");
191 1.1 cgd rt->rt_refcnt--;
192 1.1 cgd if (rt->rt_refcnt <= 0 && (rt->rt_flags & RTF_UP) == 0) {
193 1.1 cgd if (rt->rt_nodes->rn_flags & (RNF_ACTIVE | RNF_ROOT))
194 1.1 cgd panic ("rtfree 2");
195 1.10 mycroft rttrash--;
196 1.10 mycroft if (rt->rt_refcnt < 0) {
197 1.16 christos printf("rtfree: %p not freed (neg refs)\n", rt);
198 1.10 mycroft return;
199 1.10 mycroft }
200 1.18 kml rt_timer_remove_all(rt);
201 1.10 mycroft ifa = rt->rt_ifa;
202 1.10 mycroft IFAFREE(ifa);
203 1.10 mycroft Free(rt_key(rt));
204 1.22 thorpej pool_put(&rtentry_pool, rt);
205 1.1 cgd }
206 1.1 cgd }
207 1.1 cgd
208 1.10 mycroft void
209 1.10 mycroft ifafree(ifa)
210 1.10 mycroft register struct ifaddr *ifa;
211 1.10 mycroft {
212 1.10 mycroft if (ifa == NULL)
213 1.10 mycroft panic("ifafree");
214 1.10 mycroft if (ifa->ifa_refcnt == 0)
215 1.10 mycroft free(ifa, M_IFADDR);
216 1.10 mycroft else
217 1.10 mycroft ifa->ifa_refcnt--;
218 1.10 mycroft }
219 1.10 mycroft
220 1.1 cgd /*
221 1.1 cgd * Force a routing table entry to the specified
222 1.1 cgd * destination to go through the given gateway.
223 1.1 cgd * Normally called as a result of a routing redirect
224 1.1 cgd * message from the network layer.
225 1.1 cgd *
226 1.13 mycroft * N.B.: must be called at splsoftnet
227 1.1 cgd */
228 1.14 christos void
229 1.1 cgd rtredirect(dst, gateway, netmask, flags, src, rtp)
230 1.1 cgd struct sockaddr *dst, *gateway, *netmask, *src;
231 1.1 cgd int flags;
232 1.1 cgd struct rtentry **rtp;
233 1.1 cgd {
234 1.10 mycroft register struct rtentry *rt;
235 1.1 cgd int error = 0;
236 1.1 cgd short *stat = 0;
237 1.10 mycroft struct rt_addrinfo info;
238 1.10 mycroft struct ifaddr *ifa;
239 1.1 cgd
240 1.1 cgd /* verify the gateway is directly reachable */
241 1.10 mycroft if ((ifa = ifa_ifwithnet(gateway)) == 0) {
242 1.1 cgd error = ENETUNREACH;
243 1.8 cgd goto out;
244 1.1 cgd }
245 1.1 cgd rt = rtalloc1(dst, 0);
246 1.1 cgd /*
247 1.1 cgd * If the redirect isn't from our current router for this dst,
248 1.1 cgd * it's either old or wrong. If it redirects us to ourselves,
249 1.1 cgd * we have a routing loop, perhaps as a result of an interface
250 1.1 cgd * going down recently.
251 1.1 cgd */
252 1.1 cgd #define equal(a1, a2) (bcmp((caddr_t)(a1), (caddr_t)(a2), (a1)->sa_len) == 0)
253 1.10 mycroft if (!(flags & RTF_DONE) && rt &&
254 1.10 mycroft (!equal(src, rt->rt_gateway) || rt->rt_ifa != ifa))
255 1.1 cgd error = EINVAL;
256 1.1 cgd else if (ifa_ifwithaddr(gateway))
257 1.1 cgd error = EHOSTUNREACH;
258 1.1 cgd if (error)
259 1.1 cgd goto done;
260 1.1 cgd /*
261 1.1 cgd * Create a new entry if we just got back a wildcard entry
262 1.1 cgd * or the the lookup failed. This is necessary for hosts
263 1.1 cgd * which use routing redirects generated by smart gateways
264 1.1 cgd * to dynamically build the routing tables.
265 1.1 cgd */
266 1.1 cgd if ((rt == 0) || (rt_mask(rt) && rt_mask(rt)->sa_len < 2))
267 1.1 cgd goto create;
268 1.1 cgd /*
269 1.1 cgd * Don't listen to the redirect if it's
270 1.1 cgd * for a route to an interface.
271 1.1 cgd */
272 1.1 cgd if (rt->rt_flags & RTF_GATEWAY) {
273 1.1 cgd if (((rt->rt_flags & RTF_HOST) == 0) && (flags & RTF_HOST)) {
274 1.1 cgd /*
275 1.1 cgd * Changing from route to net => route to host.
276 1.1 cgd * Create new route, rather than smashing route to net.
277 1.1 cgd */
278 1.1 cgd create:
279 1.1 cgd flags |= RTF_GATEWAY | RTF_DYNAMIC;
280 1.1 cgd error = rtrequest((int)RTM_ADD, dst, gateway,
281 1.10 mycroft netmask, flags,
282 1.1 cgd (struct rtentry **)0);
283 1.1 cgd stat = &rtstat.rts_dynamic;
284 1.1 cgd } else {
285 1.1 cgd /*
286 1.1 cgd * Smash the current notion of the gateway to
287 1.1 cgd * this destination. Should check about netmask!!!
288 1.1 cgd */
289 1.10 mycroft rt->rt_flags |= RTF_MODIFIED;
290 1.10 mycroft flags |= RTF_MODIFIED;
291 1.10 mycroft stat = &rtstat.rts_newgateway;
292 1.10 mycroft rt_setgate(rt, rt_key(rt), gateway);
293 1.1 cgd }
294 1.1 cgd } else
295 1.1 cgd error = EHOSTUNREACH;
296 1.1 cgd done:
297 1.1 cgd if (rt) {
298 1.1 cgd if (rtp && !error)
299 1.1 cgd *rtp = rt;
300 1.1 cgd else
301 1.1 cgd rtfree(rt);
302 1.1 cgd }
303 1.8 cgd out:
304 1.1 cgd if (error)
305 1.1 cgd rtstat.rts_badredirect++;
306 1.8 cgd else if (stat != NULL)
307 1.8 cgd (*stat)++;
308 1.10 mycroft bzero((caddr_t)&info, sizeof(info));
309 1.10 mycroft info.rti_info[RTAX_DST] = dst;
310 1.10 mycroft info.rti_info[RTAX_GATEWAY] = gateway;
311 1.10 mycroft info.rti_info[RTAX_NETMASK] = netmask;
312 1.10 mycroft info.rti_info[RTAX_AUTHOR] = src;
313 1.10 mycroft rt_missmsg(RTM_REDIRECT, &info, flags, error);
314 1.1 cgd }
315 1.1 cgd
316 1.1 cgd /*
317 1.22 thorpej * Routing table ioctl interface.
318 1.22 thorpej */
319 1.9 mycroft int
320 1.1 cgd rtioctl(req, data, p)
321 1.12 cgd u_long req;
322 1.1 cgd caddr_t data;
323 1.1 cgd struct proc *p;
324 1.1 cgd {
325 1.1 cgd return (EOPNOTSUPP);
326 1.1 cgd }
327 1.1 cgd
328 1.1 cgd struct ifaddr *
329 1.1 cgd ifa_ifwithroute(flags, dst, gateway)
330 1.10 mycroft int flags;
331 1.10 mycroft struct sockaddr *dst, *gateway;
332 1.1 cgd {
333 1.1 cgd register struct ifaddr *ifa;
334 1.1 cgd if ((flags & RTF_GATEWAY) == 0) {
335 1.1 cgd /*
336 1.1 cgd * If we are adding a route to an interface,
337 1.1 cgd * and the interface is a pt to pt link
338 1.1 cgd * we should search for the destination
339 1.1 cgd * as our clue to the interface. Otherwise
340 1.1 cgd * we can use the local address.
341 1.1 cgd */
342 1.1 cgd ifa = 0;
343 1.1 cgd if (flags & RTF_HOST)
344 1.1 cgd ifa = ifa_ifwithdstaddr(dst);
345 1.1 cgd if (ifa == 0)
346 1.1 cgd ifa = ifa_ifwithaddr(gateway);
347 1.1 cgd } else {
348 1.1 cgd /*
349 1.1 cgd * If we are adding a route to a remote net
350 1.1 cgd * or host, the gateway may still be on the
351 1.1 cgd * other end of a pt to pt link.
352 1.1 cgd */
353 1.1 cgd ifa = ifa_ifwithdstaddr(gateway);
354 1.1 cgd }
355 1.1 cgd if (ifa == 0)
356 1.1 cgd ifa = ifa_ifwithnet(gateway);
357 1.1 cgd if (ifa == 0) {
358 1.1 cgd struct rtentry *rt = rtalloc1(dst, 0);
359 1.1 cgd if (rt == 0)
360 1.1 cgd return (0);
361 1.1 cgd rt->rt_refcnt--;
362 1.1 cgd if ((ifa = rt->rt_ifa) == 0)
363 1.1 cgd return (0);
364 1.1 cgd }
365 1.1 cgd if (ifa->ifa_addr->sa_family != dst->sa_family) {
366 1.10 mycroft struct ifaddr *oifa = ifa;
367 1.1 cgd ifa = ifaof_ifpforaddr(dst, ifa->ifa_ifp);
368 1.1 cgd if (ifa == 0)
369 1.1 cgd ifa = oifa;
370 1.1 cgd }
371 1.1 cgd return (ifa);
372 1.1 cgd }
373 1.1 cgd
374 1.1 cgd #define ROUNDUP(a) (a>0 ? (1 + (((a) - 1) | (sizeof(long) - 1))) : sizeof(long))
375 1.1 cgd
376 1.9 mycroft int
377 1.1 cgd rtrequest(req, dst, gateway, netmask, flags, ret_nrt)
378 1.1 cgd int req, flags;
379 1.1 cgd struct sockaddr *dst, *gateway, *netmask;
380 1.1 cgd struct rtentry **ret_nrt;
381 1.1 cgd {
382 1.13 mycroft int s = splsoftnet(); int error = 0;
383 1.1 cgd register struct rtentry *rt;
384 1.1 cgd register struct radix_node *rn;
385 1.1 cgd register struct radix_node_head *rnh;
386 1.10 mycroft struct ifaddr *ifa;
387 1.1 cgd struct sockaddr *ndst;
388 1.1 cgd #define senderr(x) { error = x ; goto bad; }
389 1.1 cgd
390 1.10 mycroft if ((rnh = rt_tables[dst->sa_family]) == 0)
391 1.1 cgd senderr(ESRCH);
392 1.1 cgd if (flags & RTF_HOST)
393 1.1 cgd netmask = 0;
394 1.1 cgd switch (req) {
395 1.1 cgd case RTM_DELETE:
396 1.10 mycroft if ((rn = rnh->rnh_deladdr(dst, netmask, rnh)) == 0)
397 1.1 cgd senderr(ESRCH);
398 1.1 cgd if (rn->rn_flags & (RNF_ACTIVE | RNF_ROOT))
399 1.1 cgd panic ("rtrequest delete");
400 1.1 cgd rt = (struct rtentry *)rn;
401 1.1 cgd rt->rt_flags &= ~RTF_UP;
402 1.10 mycroft if (rt->rt_gwroute) {
403 1.10 mycroft rt = rt->rt_gwroute; RTFREE(rt);
404 1.10 mycroft (rt = (struct rtentry *)rn)->rt_gwroute = 0;
405 1.10 mycroft }
406 1.1 cgd if ((ifa = rt->rt_ifa) && ifa->ifa_rtrequest)
407 1.1 cgd ifa->ifa_rtrequest(RTM_DELETE, rt, SA(0));
408 1.1 cgd rttrash++;
409 1.10 mycroft if (ret_nrt)
410 1.10 mycroft *ret_nrt = rt;
411 1.10 mycroft else if (rt->rt_refcnt <= 0) {
412 1.10 mycroft rt->rt_refcnt++;
413 1.1 cgd rtfree(rt);
414 1.10 mycroft }
415 1.1 cgd break;
416 1.1 cgd
417 1.1 cgd case RTM_RESOLVE:
418 1.1 cgd if (ret_nrt == 0 || (rt = *ret_nrt) == 0)
419 1.1 cgd senderr(EINVAL);
420 1.1 cgd ifa = rt->rt_ifa;
421 1.1 cgd flags = rt->rt_flags & ~RTF_CLONING;
422 1.1 cgd gateway = rt->rt_gateway;
423 1.1 cgd if ((netmask = rt->rt_genmask) == 0)
424 1.1 cgd flags |= RTF_HOST;
425 1.1 cgd goto makeroute;
426 1.1 cgd
427 1.1 cgd case RTM_ADD:
428 1.1 cgd if ((ifa = ifa_ifwithroute(flags, dst, gateway)) == 0)
429 1.1 cgd senderr(ENETUNREACH);
430 1.1 cgd makeroute:
431 1.22 thorpej rt = pool_get(&rtentry_pool, PR_NOWAIT);
432 1.1 cgd if (rt == 0)
433 1.1 cgd senderr(ENOBUFS);
434 1.10 mycroft Bzero(rt, sizeof(*rt));
435 1.10 mycroft rt->rt_flags = RTF_UP | flags;
436 1.18 kml LIST_INIT(&rt->rt_timer);
437 1.10 mycroft if (rt_setgate(rt, dst, gateway)) {
438 1.22 thorpej pool_put(&rtentry_pool, rt);
439 1.10 mycroft senderr(ENOBUFS);
440 1.10 mycroft }
441 1.10 mycroft ndst = rt_key(rt);
442 1.1 cgd if (netmask) {
443 1.1 cgd rt_maskedcopy(dst, ndst, netmask);
444 1.1 cgd } else
445 1.1 cgd Bcopy(dst, ndst, dst->sa_len);
446 1.10 mycroft rn = rnh->rnh_addaddr((caddr_t)ndst, (caddr_t)netmask,
447 1.10 mycroft rnh, rt->rt_nodes);
448 1.1 cgd if (rn == 0) {
449 1.10 mycroft if (rt->rt_gwroute)
450 1.10 mycroft rtfree(rt->rt_gwroute);
451 1.10 mycroft Free(rt_key(rt));
452 1.22 thorpej pool_put(&rtentry_pool, rt);
453 1.1 cgd senderr(EEXIST);
454 1.1 cgd }
455 1.10 mycroft ifa->ifa_refcnt++;
456 1.1 cgd rt->rt_ifa = ifa;
457 1.1 cgd rt->rt_ifp = ifa->ifa_ifp;
458 1.1 cgd if (req == RTM_RESOLVE)
459 1.1 cgd rt->rt_rmx = (*ret_nrt)->rt_rmx; /* copy metrics */
460 1.1 cgd if (ifa->ifa_rtrequest)
461 1.1 cgd ifa->ifa_rtrequest(req, rt, SA(ret_nrt ? *ret_nrt : 0));
462 1.1 cgd if (ret_nrt) {
463 1.1 cgd *ret_nrt = rt;
464 1.1 cgd rt->rt_refcnt++;
465 1.1 cgd }
466 1.1 cgd break;
467 1.1 cgd }
468 1.1 cgd bad:
469 1.1 cgd splx(s);
470 1.1 cgd return (error);
471 1.1 cgd }
472 1.1 cgd
473 1.10 mycroft int
474 1.10 mycroft rt_setgate(rt0, dst, gate)
475 1.10 mycroft struct rtentry *rt0;
476 1.10 mycroft struct sockaddr *dst, *gate;
477 1.10 mycroft {
478 1.10 mycroft caddr_t new, old;
479 1.10 mycroft int dlen = ROUNDUP(dst->sa_len), glen = ROUNDUP(gate->sa_len);
480 1.10 mycroft register struct rtentry *rt = rt0;
481 1.10 mycroft
482 1.10 mycroft if (rt->rt_gateway == 0 || glen > ROUNDUP(rt->rt_gateway->sa_len)) {
483 1.10 mycroft old = (caddr_t)rt_key(rt);
484 1.10 mycroft R_Malloc(new, caddr_t, dlen + glen);
485 1.10 mycroft if (new == 0)
486 1.10 mycroft return 1;
487 1.10 mycroft rt->rt_nodes->rn_key = new;
488 1.10 mycroft } else {
489 1.10 mycroft new = rt->rt_nodes->rn_key;
490 1.10 mycroft old = 0;
491 1.10 mycroft }
492 1.10 mycroft Bcopy(gate, (rt->rt_gateway = (struct sockaddr *)(new + dlen)), glen);
493 1.10 mycroft if (old) {
494 1.10 mycroft Bcopy(dst, new, dlen);
495 1.10 mycroft Free(old);
496 1.10 mycroft }
497 1.10 mycroft if (rt->rt_gwroute) {
498 1.10 mycroft rt = rt->rt_gwroute; RTFREE(rt);
499 1.10 mycroft rt = rt0; rt->rt_gwroute = 0;
500 1.10 mycroft }
501 1.10 mycroft if (rt->rt_flags & RTF_GATEWAY) {
502 1.10 mycroft rt->rt_gwroute = rtalloc1(gate, 1);
503 1.10 mycroft }
504 1.10 mycroft return 0;
505 1.10 mycroft }
506 1.10 mycroft
507 1.9 mycroft void
508 1.1 cgd rt_maskedcopy(src, dst, netmask)
509 1.9 mycroft struct sockaddr *src, *dst, *netmask;
510 1.1 cgd {
511 1.1 cgd register u_char *cp1 = (u_char *)src;
512 1.1 cgd register u_char *cp2 = (u_char *)dst;
513 1.1 cgd register u_char *cp3 = (u_char *)netmask;
514 1.1 cgd u_char *cplim = cp2 + *cp3;
515 1.1 cgd u_char *cplim2 = cp2 + *cp1;
516 1.1 cgd
517 1.1 cgd *cp2++ = *cp1++; *cp2++ = *cp1++; /* copies sa_len & sa_family */
518 1.1 cgd cp3 += 2;
519 1.1 cgd if (cplim > cplim2)
520 1.1 cgd cplim = cplim2;
521 1.1 cgd while (cp2 < cplim)
522 1.1 cgd *cp2++ = *cp1++ & *cp3++;
523 1.1 cgd if (cp2 < cplim2)
524 1.1 cgd bzero((caddr_t)cp2, (unsigned)(cplim2 - cp2));
525 1.1 cgd }
526 1.10 mycroft
527 1.1 cgd /*
528 1.1 cgd * Set up a routing table entry, normally
529 1.1 cgd * for an interface.
530 1.1 cgd */
531 1.9 mycroft int
532 1.1 cgd rtinit(ifa, cmd, flags)
533 1.1 cgd register struct ifaddr *ifa;
534 1.1 cgd int cmd, flags;
535 1.1 cgd {
536 1.1 cgd register struct rtentry *rt;
537 1.1 cgd register struct sockaddr *dst;
538 1.1 cgd register struct sockaddr *deldst;
539 1.1 cgd struct mbuf *m = 0;
540 1.10 mycroft struct rtentry *nrt = 0;
541 1.1 cgd int error;
542 1.1 cgd
543 1.1 cgd dst = flags & RTF_HOST ? ifa->ifa_dstaddr : ifa->ifa_addr;
544 1.1 cgd if (cmd == RTM_DELETE) {
545 1.1 cgd if ((flags & RTF_HOST) == 0 && ifa->ifa_netmask) {
546 1.1 cgd m = m_get(M_WAIT, MT_SONAME);
547 1.1 cgd deldst = mtod(m, struct sockaddr *);
548 1.1 cgd rt_maskedcopy(dst, deldst, ifa->ifa_netmask);
549 1.1 cgd dst = deldst;
550 1.1 cgd }
551 1.14 christos if ((rt = rtalloc1(dst, 0)) != NULL) {
552 1.1 cgd rt->rt_refcnt--;
553 1.1 cgd if (rt->rt_ifa != ifa) {
554 1.1 cgd if (m)
555 1.1 cgd (void) m_free(m);
556 1.1 cgd return (flags & RTF_HOST ? EHOSTUNREACH
557 1.1 cgd : ENETUNREACH);
558 1.1 cgd }
559 1.1 cgd }
560 1.1 cgd }
561 1.1 cgd error = rtrequest(cmd, dst, ifa->ifa_addr, ifa->ifa_netmask,
562 1.10 mycroft flags | ifa->ifa_flags, &nrt);
563 1.1 cgd if (m)
564 1.1 cgd (void) m_free(m);
565 1.10 mycroft if (cmd == RTM_DELETE && error == 0 && (rt = nrt)) {
566 1.10 mycroft rt_newaddrmsg(cmd, ifa, error, nrt);
567 1.10 mycroft if (rt->rt_refcnt <= 0) {
568 1.10 mycroft rt->rt_refcnt++;
569 1.10 mycroft rtfree(rt);
570 1.10 mycroft }
571 1.10 mycroft }
572 1.10 mycroft if (cmd == RTM_ADD && error == 0 && (rt = nrt)) {
573 1.10 mycroft rt->rt_refcnt--;
574 1.10 mycroft if (rt->rt_ifa != ifa) {
575 1.17 christos printf("rtinit: wrong ifa (%p) was (%p)\n", ifa,
576 1.17 christos rt->rt_ifa);
577 1.10 mycroft if (rt->rt_ifa->ifa_rtrequest)
578 1.10 mycroft rt->rt_ifa->ifa_rtrequest(RTM_DELETE, rt, SA(0));
579 1.10 mycroft IFAFREE(rt->rt_ifa);
580 1.10 mycroft rt->rt_ifa = ifa;
581 1.10 mycroft rt->rt_ifp = ifa->ifa_ifp;
582 1.10 mycroft ifa->ifa_refcnt++;
583 1.10 mycroft if (ifa->ifa_rtrequest)
584 1.10 mycroft ifa->ifa_rtrequest(RTM_ADD, rt, SA(0));
585 1.10 mycroft }
586 1.10 mycroft rt_newaddrmsg(cmd, ifa, error, nrt);
587 1.1 cgd }
588 1.1 cgd return (error);
589 1.18 kml }
590 1.18 kml
591 1.18 kml /*
592 1.18 kml * Route timer routines. These routes allow functions to be called
593 1.18 kml * for various routes at any time. This is useful in supporting
594 1.18 kml * path MTU discovery and redirect route deletion.
595 1.18 kml *
596 1.18 kml * This is similar to some BSDI internal functions, but it provides
597 1.18 kml * for multiple queues for efficiency's sake...
598 1.18 kml */
599 1.18 kml
600 1.18 kml LIST_HEAD(, rttimer_queue) rttimer_queue_head;
601 1.18 kml static int rt_init_done = 0;
602 1.18 kml
603 1.18 kml #define RTTIMER_CALLOUT(r) { \
604 1.18 kml if (r->rtt_func != NULL) { \
605 1.20 thorpej (*r->rtt_func)(r->rtt_rt, r); \
606 1.18 kml } else { \
607 1.18 kml rtrequest((int) RTM_DELETE, \
608 1.18 kml (struct sockaddr *)rt_key(r->rtt_rt), \
609 1.18 kml 0, 0, 0, 0); \
610 1.18 kml } \
611 1.18 kml }
612 1.18 kml
613 1.18 kml /*
614 1.18 kml * Some subtle order problems with domain initialization mean that
615 1.18 kml * we cannot count on this being run from rt_init before various
616 1.18 kml * protocol initializations are done. Therefore, we make sure
617 1.18 kml * that this is run when the first queue is added...
618 1.18 kml */
619 1.18 kml
620 1.18 kml void
621 1.18 kml rt_timer_init()
622 1.18 kml {
623 1.18 kml assert(rt_init_done == 0);
624 1.18 kml
625 1.23 veego pool_init(&rttimer_pool, sizeof(struct rttimer), 0, 0, 0, "rttmrpl",
626 1.22 thorpej 0, NULL, NULL, M_RTABLE);
627 1.22 thorpej
628 1.18 kml LIST_INIT(&rttimer_queue_head);
629 1.18 kml timeout(rt_timer_timer, NULL, hz); /* every second */
630 1.18 kml rt_init_done = 1;
631 1.18 kml }
632 1.18 kml
633 1.18 kml struct rttimer_queue *
634 1.18 kml rt_timer_queue_create(timeout)
635 1.18 kml u_int timeout;
636 1.18 kml {
637 1.18 kml struct rttimer_queue *rtq;
638 1.18 kml
639 1.18 kml if (rt_init_done == 0)
640 1.18 kml rt_timer_init();
641 1.18 kml
642 1.18 kml R_Malloc(rtq, struct rttimer_queue *, sizeof *rtq);
643 1.18 kml if (rtq == NULL)
644 1.24 thorpej return (NULL);
645 1.18 kml
646 1.18 kml rtq->rtq_timeout = timeout;
647 1.24 thorpej TAILQ_INIT(&rtq->rtq_head);
648 1.18 kml LIST_INSERT_HEAD(&rttimer_queue_head, rtq, rtq_link);
649 1.18 kml
650 1.24 thorpej return (rtq);
651 1.18 kml }
652 1.18 kml
653 1.18 kml void
654 1.18 kml rt_timer_queue_change(rtq, timeout)
655 1.18 kml struct rttimer_queue *rtq;
656 1.18 kml long timeout;
657 1.18 kml {
658 1.24 thorpej
659 1.18 kml rtq->rtq_timeout = timeout;
660 1.18 kml }
661 1.18 kml
662 1.18 kml
663 1.18 kml void
664 1.18 kml rt_timer_queue_destroy(rtq, destroy)
665 1.18 kml struct rttimer_queue *rtq;
666 1.18 kml int destroy;
667 1.18 kml {
668 1.24 thorpej struct rttimer *r;
669 1.18 kml
670 1.24 thorpej while ((r = TAILQ_FIRST(&rtq->rtq_head)) != NULL) {
671 1.18 kml LIST_REMOVE(r, rtt_link);
672 1.24 thorpej TAILQ_REMOVE(&rtq->rtq_head, r, rtt_next);
673 1.24 thorpej if (destroy)
674 1.18 kml RTTIMER_CALLOUT(r);
675 1.22 thorpej pool_put(&rttimer_pool, r);
676 1.18 kml }
677 1.18 kml
678 1.18 kml LIST_REMOVE(rtq, rtq_link);
679 1.22 thorpej
680 1.22 thorpej /*
681 1.22 thorpej * Caller is responsible for freeing the rttimer_queue structure.
682 1.22 thorpej */
683 1.18 kml }
684 1.18 kml
685 1.18 kml void
686 1.18 kml rt_timer_remove_all(rt)
687 1.18 kml struct rtentry *rt;
688 1.18 kml {
689 1.24 thorpej struct rttimer *r;
690 1.18 kml
691 1.24 thorpej while ((r = LIST_FIRST(&rt->rt_timer)) != NULL) {
692 1.18 kml LIST_REMOVE(r, rtt_link);
693 1.24 thorpej TAILQ_REMOVE(&r->rtt_queue->rtq_head, r, rtt_next);
694 1.22 thorpej pool_put(&rttimer_pool, r);
695 1.18 kml }
696 1.18 kml }
697 1.18 kml
698 1.18 kml int
699 1.18 kml rt_timer_add(rt, func, queue)
700 1.18 kml struct rtentry *rt;
701 1.18 kml void(*func) __P((struct rtentry *, struct rttimer *));
702 1.18 kml struct rttimer_queue *queue;
703 1.18 kml {
704 1.24 thorpej struct rttimer *r;
705 1.24 thorpej long current_time;
706 1.18 kml int s;
707 1.18 kml
708 1.18 kml s = splclock();
709 1.18 kml current_time = mono_time.tv_sec;
710 1.18 kml splx(s);
711 1.18 kml
712 1.24 thorpej /*
713 1.24 thorpej * If there's already a timer with this action, destroy it before
714 1.24 thorpej * we add a new one.
715 1.24 thorpej */
716 1.24 thorpej for (r = LIST_FIRST(&rt->rt_timer); r != NULL;
717 1.24 thorpej r = LIST_NEXT(r, rtt_link)) {
718 1.18 kml if (r->rtt_func == func) {
719 1.18 kml LIST_REMOVE(r, rtt_link);
720 1.24 thorpej TAILQ_REMOVE(&r->rtt_queue->rtq_head, r, rtt_next);
721 1.22 thorpej pool_put(&rttimer_pool, r);
722 1.18 kml break; /* only one per list, so we can quit... */
723 1.18 kml }
724 1.18 kml }
725 1.18 kml
726 1.24 thorpej r = pool_get(&rttimer_pool, PR_NOWAIT);
727 1.24 thorpej if (r == NULL)
728 1.24 thorpej return (ENOBUFS);
729 1.24 thorpej
730 1.24 thorpej r->rtt_rt = rt;
731 1.24 thorpej r->rtt_time = current_time;
732 1.24 thorpej r->rtt_func = func;
733 1.24 thorpej r->rtt_queue = queue;
734 1.24 thorpej LIST_INSERT_HEAD(&rt->rt_timer, r, rtt_link);
735 1.24 thorpej TAILQ_INSERT_TAIL(&queue->rtq_head, r, rtt_next);
736 1.24 thorpej
737 1.24 thorpej return (0);
738 1.18 kml }
739 1.18 kml
740 1.18 kml /* ARGSUSED */
741 1.18 kml void
742 1.18 kml rt_timer_timer(arg)
743 1.18 kml void *arg;
744 1.18 kml {
745 1.24 thorpej struct rttimer_queue *rtq;
746 1.24 thorpej struct rttimer *r;
747 1.18 kml long current_time;
748 1.24 thorpej int s;
749 1.21 kml
750 1.24 thorpej s = splclock();
751 1.18 kml current_time = mono_time.tv_sec;
752 1.24 thorpej splx(s);
753 1.18 kml
754 1.24 thorpej s = splsoftnet();
755 1.18 kml for (rtq = LIST_FIRST(&rttimer_queue_head); rtq != NULL;
756 1.18 kml rtq = LIST_NEXT(rtq, rtq_link)) {
757 1.24 thorpej while ((r = TAILQ_FIRST(&rtq->rtq_head)) != NULL &&
758 1.24 thorpej (r->rtt_time + rtq->rtq_timeout) < current_time) {
759 1.24 thorpej LIST_REMOVE(r, rtt_link);
760 1.24 thorpej TAILQ_REMOVE(&rtq->rtq_head, r, rtt_next);
761 1.24 thorpej RTTIMER_CALLOUT(r);
762 1.24 thorpej pool_put(&rttimer_pool, r);
763 1.18 kml }
764 1.18 kml }
765 1.24 thorpej splx(s);
766 1.18 kml
767 1.18 kml timeout(rt_timer_timer, NULL, hz); /* every second */
768 1.1 cgd }
769