nd6_rtr.c revision 1.32 1 1.32 itojun /* $NetBSD: nd6_rtr.c,v 1.32 2002/06/08 21:22:35 itojun Exp $ */
2 1.20 itojun /* $KAME: nd6_rtr.c,v 1.95 2001/02/07 08:09:47 itojun Exp $ */
3 1.3 thorpej
4 1.2 itojun /*
5 1.2 itojun * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6 1.2 itojun * All rights reserved.
7 1.16 itojun *
8 1.2 itojun * Redistribution and use in source and binary forms, with or without
9 1.2 itojun * modification, are permitted provided that the following conditions
10 1.2 itojun * are met:
11 1.2 itojun * 1. Redistributions of source code must retain the above copyright
12 1.2 itojun * notice, this list of conditions and the following disclaimer.
13 1.2 itojun * 2. Redistributions in binary form must reproduce the above copyright
14 1.2 itojun * notice, this list of conditions and the following disclaimer in the
15 1.2 itojun * documentation and/or other materials provided with the distribution.
16 1.2 itojun * 3. Neither the name of the project nor the names of its contributors
17 1.2 itojun * may be used to endorse or promote products derived from this software
18 1.2 itojun * without specific prior written permission.
19 1.16 itojun *
20 1.2 itojun * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
21 1.2 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 1.2 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 1.2 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
24 1.2 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 1.2 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 1.2 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 1.2 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 1.2 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 1.2 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 1.2 itojun * SUCH DAMAGE.
31 1.2 itojun */
32 1.27 lukem
33 1.27 lukem #include <sys/cdefs.h>
34 1.32 itojun __KERNEL_RCSID(0, "$NetBSD: nd6_rtr.c,v 1.32 2002/06/08 21:22:35 itojun Exp $");
35 1.2 itojun
36 1.2 itojun #include <sys/param.h>
37 1.2 itojun #include <sys/systm.h>
38 1.2 itojun #include <sys/malloc.h>
39 1.2 itojun #include <sys/mbuf.h>
40 1.2 itojun #include <sys/socket.h>
41 1.2 itojun #include <sys/sockio.h>
42 1.2 itojun #include <sys/time.h>
43 1.2 itojun #include <sys/kernel.h>
44 1.2 itojun #include <sys/errno.h>
45 1.2 itojun #include <sys/ioctl.h>
46 1.2 itojun #include <sys/syslog.h>
47 1.2 itojun
48 1.2 itojun #include <net/if.h>
49 1.2 itojun #include <net/if_types.h>
50 1.2 itojun #include <net/if_dl.h>
51 1.2 itojun #include <net/route.h>
52 1.2 itojun #include <net/radix.h>
53 1.2 itojun
54 1.2 itojun #include <netinet/in.h>
55 1.2 itojun #include <netinet6/in6_var.h>
56 1.11 itojun #include <netinet/ip6.h>
57 1.2 itojun #include <netinet6/ip6_var.h>
58 1.2 itojun #include <netinet6/nd6.h>
59 1.11 itojun #include <netinet/icmp6.h>
60 1.2 itojun
61 1.7 itojun #include <net/net_osdep.h>
62 1.2 itojun
63 1.2 itojun #define SDL(s) ((struct sockaddr_dl *)s)
64 1.2 itojun
65 1.32 itojun static int rtpref __P((struct nd_defrouter *));
66 1.2 itojun static struct nd_defrouter *defrtrlist_update __P((struct nd_defrouter *));
67 1.32 itojun static struct in6_ifaddr *in6_ifadd __P((struct nd_prefix *));
68 1.2 itojun static struct nd_pfxrouter *pfxrtr_lookup __P((struct nd_prefix *,
69 1.32 itojun struct nd_defrouter *));
70 1.2 itojun static void pfxrtr_add __P((struct nd_prefix *, struct nd_defrouter *));
71 1.2 itojun static void pfxrtr_del __P((struct nd_pfxrouter *));
72 1.32 itojun static struct nd_pfxrouter *find_pfxlist_reachable_router
73 1.32 itojun __P((struct nd_prefix *));
74 1.32 itojun static void defrouter_delreq __P((struct nd_defrouter *));
75 1.7 itojun static void defrouter_addifreq __P((struct ifnet *));
76 1.32 itojun static void defrouter_delifreq __P((void));
77 1.32 itojun static void nd6_rtmsg __P((int, struct rtentry *));
78 1.2 itojun
79 1.2 itojun static void in6_init_address_ltimes __P((struct nd_prefix *ndpr,
80 1.32 itojun struct in6_addrlifetime *lt6));
81 1.2 itojun
82 1.2 itojun static int rt6_deleteroute __P((struct radix_node *, void *));
83 1.2 itojun
84 1.2 itojun extern int nd6_recalc_reachtm_interval;
85 1.2 itojun
86 1.28 itojun static struct ifnet *nd6_defifp;
87 1.7 itojun int nd6_defifindex;
88 1.32 itojun static struct ifaddr *nd6_defif_installed = NULL;
89 1.7 itojun
90 1.2 itojun /*
91 1.2 itojun * Receive Router Solicitation Message - just for routers.
92 1.2 itojun * Router solicitation/advertisement is mostly managed by userland program
93 1.2 itojun * (rtadvd) so here we have no function like nd6_ra_output().
94 1.2 itojun *
95 1.2 itojun * Based on RFC 2461
96 1.2 itojun */
97 1.2 itojun void
98 1.2 itojun nd6_rs_input(m, off, icmp6len)
99 1.2 itojun struct mbuf *m;
100 1.2 itojun int off, icmp6len;
101 1.2 itojun {
102 1.2 itojun struct ifnet *ifp = m->m_pkthdr.rcvif;
103 1.2 itojun struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
104 1.12 itojun struct nd_router_solicit *nd_rs;
105 1.2 itojun struct in6_addr saddr6 = ip6->ip6_src;
106 1.2 itojun #if 0
107 1.2 itojun struct in6_addr daddr6 = ip6->ip6_dst;
108 1.2 itojun #endif
109 1.2 itojun char *lladdr = NULL;
110 1.2 itojun int lladdrlen = 0;
111 1.2 itojun #if 0
112 1.2 itojun struct sockaddr_dl *sdl = (struct sockaddr_dl *)NULL;
113 1.2 itojun struct llinfo_nd6 *ln = (struct llinfo_nd6 *)NULL;
114 1.2 itojun struct rtentry *rt = NULL;
115 1.2 itojun int is_newentry;
116 1.2 itojun #endif
117 1.2 itojun union nd_opts ndopts;
118 1.2 itojun
119 1.2 itojun /* If I'm not a router, ignore it. */
120 1.2 itojun if (ip6_accept_rtadv != 0 || ip6_forwarding != 1)
121 1.12 itojun goto freeit;
122 1.2 itojun
123 1.2 itojun /* Sanity checks */
124 1.2 itojun if (ip6->ip6_hlim != 255) {
125 1.20 itojun nd6log((LOG_ERR,
126 1.20 itojun "nd6_rs_input: invalid hlim (%d) from %s to %s on %s\n",
127 1.20 itojun ip6->ip6_hlim, ip6_sprintf(&ip6->ip6_src),
128 1.20 itojun ip6_sprintf(&ip6->ip6_dst), if_name(ifp)));
129 1.20 itojun goto bad;
130 1.2 itojun }
131 1.2 itojun
132 1.2 itojun /*
133 1.2 itojun * Don't update the neighbor cache, if src = ::.
134 1.2 itojun * This indicates that the src has no IP address assigned yet.
135 1.2 itojun */
136 1.2 itojun if (IN6_IS_ADDR_UNSPECIFIED(&saddr6))
137 1.12 itojun goto freeit;
138 1.12 itojun
139 1.12 itojun #ifndef PULLDOWN_TEST
140 1.12 itojun IP6_EXTHDR_CHECK(m, off, icmp6len,);
141 1.12 itojun nd_rs = (struct nd_router_solicit *)((caddr_t)ip6 + off);
142 1.12 itojun #else
143 1.12 itojun IP6_EXTHDR_GET(nd_rs, struct nd_router_solicit *, m, off, icmp6len);
144 1.12 itojun if (nd_rs == NULL) {
145 1.12 itojun icmp6stat.icp6s_tooshort++;
146 1.2 itojun return;
147 1.12 itojun }
148 1.12 itojun #endif
149 1.2 itojun
150 1.2 itojun icmp6len -= sizeof(*nd_rs);
151 1.2 itojun nd6_option_init(nd_rs + 1, icmp6len, &ndopts);
152 1.2 itojun if (nd6_options(&ndopts) < 0) {
153 1.20 itojun nd6log((LOG_INFO,
154 1.20 itojun "nd6_rs_input: invalid ND option, ignored\n"));
155 1.20 itojun /* nd6_options have incremented stats */
156 1.12 itojun goto freeit;
157 1.2 itojun }
158 1.2 itojun
159 1.2 itojun if (ndopts.nd_opts_src_lladdr) {
160 1.2 itojun lladdr = (char *)(ndopts.nd_opts_src_lladdr + 1);
161 1.2 itojun lladdrlen = ndopts.nd_opts_src_lladdr->nd_opt_len << 3;
162 1.2 itojun }
163 1.2 itojun
164 1.2 itojun if (lladdr && ((ifp->if_addrlen + 2 + 7) & ~7) != lladdrlen) {
165 1.20 itojun nd6log((LOG_INFO,
166 1.2 itojun "nd6_rs_input: lladdrlen mismatch for %s "
167 1.2 itojun "(if %d, RS packet %d)\n",
168 1.32 itojun ip6_sprintf(&saddr6), ifp->if_addrlen, lladdrlen - 2));
169 1.20 itojun goto bad;
170 1.2 itojun }
171 1.2 itojun
172 1.6 itojun nd6_cache_lladdr(ifp, &saddr6, lladdr, lladdrlen, ND_ROUTER_SOLICIT, 0);
173 1.12 itojun
174 1.12 itojun freeit:
175 1.12 itojun m_freem(m);
176 1.20 itojun return;
177 1.20 itojun
178 1.20 itojun bad:
179 1.20 itojun icmp6stat.icp6s_badrs++;
180 1.20 itojun m_freem(m);
181 1.2 itojun }
182 1.2 itojun
183 1.2 itojun /*
184 1.2 itojun * Receive Router Advertisement Message.
185 1.2 itojun *
186 1.2 itojun * Based on RFC 2461
187 1.2 itojun * TODO: on-link bit on prefix information
188 1.2 itojun * TODO: ND_RA_FLAG_{OTHER,MANAGED} processing
189 1.2 itojun */
190 1.2 itojun void
191 1.2 itojun nd6_ra_input(m, off, icmp6len)
192 1.2 itojun struct mbuf *m;
193 1.2 itojun int off, icmp6len;
194 1.2 itojun {
195 1.2 itojun struct ifnet *ifp = m->m_pkthdr.rcvif;
196 1.29 itojun struct nd_ifinfo *ndi = ND_IFINFO(ifp);
197 1.2 itojun struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
198 1.12 itojun struct nd_router_advert *nd_ra;
199 1.2 itojun struct in6_addr saddr6 = ip6->ip6_src;
200 1.2 itojun #if 0
201 1.2 itojun struct in6_addr daddr6 = ip6->ip6_dst;
202 1.12 itojun int flags; /* = nd_ra->nd_ra_flags_reserved; */
203 1.2 itojun int is_managed = ((flags & ND_RA_FLAG_MANAGED) != 0);
204 1.2 itojun int is_other = ((flags & ND_RA_FLAG_OTHER) != 0);
205 1.2 itojun #endif
206 1.2 itojun union nd_opts ndopts;
207 1.2 itojun struct nd_defrouter *dr;
208 1.2 itojun
209 1.32 itojun /*
210 1.32 itojun * We only accept RAs only when
211 1.32 itojun * the system-wide variable allows the acceptance, and
212 1.32 itojun * per-interface variable allows RAs on the receiving interface.
213 1.32 itojun */
214 1.2 itojun if (ip6_accept_rtadv == 0)
215 1.12 itojun goto freeit;
216 1.32 itojun if (!(ndi->flags & ND6_IFF_ACCEPT_RTADV))
217 1.32 itojun goto freeit;
218 1.2 itojun
219 1.2 itojun if (ip6->ip6_hlim != 255) {
220 1.20 itojun nd6log((LOG_ERR,
221 1.20 itojun "nd6_ra_input: invalid hlim (%d) from %s to %s on %s\n",
222 1.20 itojun ip6->ip6_hlim, ip6_sprintf(&ip6->ip6_src),
223 1.20 itojun ip6_sprintf(&ip6->ip6_dst), if_name(ifp)));
224 1.20 itojun goto bad;
225 1.2 itojun }
226 1.2 itojun
227 1.2 itojun if (!IN6_IS_ADDR_LINKLOCAL(&saddr6)) {
228 1.20 itojun nd6log((LOG_ERR,
229 1.2 itojun "nd6_ra_input: src %s is not link-local\n",
230 1.20 itojun ip6_sprintf(&saddr6)));
231 1.20 itojun goto bad;
232 1.12 itojun }
233 1.12 itojun
234 1.12 itojun #ifndef PULLDOWN_TEST
235 1.12 itojun IP6_EXTHDR_CHECK(m, off, icmp6len,);
236 1.12 itojun nd_ra = (struct nd_router_advert *)((caddr_t)ip6 + off);
237 1.12 itojun #else
238 1.12 itojun IP6_EXTHDR_GET(nd_ra, struct nd_router_advert *, m, off, icmp6len);
239 1.12 itojun if (nd_ra == NULL) {
240 1.12 itojun icmp6stat.icp6s_tooshort++;
241 1.2 itojun return;
242 1.2 itojun }
243 1.12 itojun #endif
244 1.2 itojun
245 1.2 itojun icmp6len -= sizeof(*nd_ra);
246 1.2 itojun nd6_option_init(nd_ra + 1, icmp6len, &ndopts);
247 1.2 itojun if (nd6_options(&ndopts) < 0) {
248 1.20 itojun nd6log((LOG_INFO,
249 1.20 itojun "nd6_ra_input: invalid ND option, ignored\n"));
250 1.20 itojun /* nd6_options have incremented stats */
251 1.12 itojun goto freeit;
252 1.2 itojun }
253 1.2 itojun
254 1.2 itojun {
255 1.2 itojun struct nd_defrouter dr0;
256 1.2 itojun u_int32_t advreachable = nd_ra->nd_ra_reachable;
257 1.7 itojun long time_second = time.tv_sec;
258 1.2 itojun
259 1.26 itojun Bzero(&dr0, sizeof(dr0));
260 1.32 itojun Bzero(&dr0, sizeof(dr0));
261 1.2 itojun dr0.rtaddr = saddr6;
262 1.2 itojun dr0.flags = nd_ra->nd_ra_flags_reserved;
263 1.2 itojun dr0.rtlifetime = ntohs(nd_ra->nd_ra_router_lifetime);
264 1.2 itojun dr0.expire = time_second + dr0.rtlifetime;
265 1.2 itojun dr0.ifp = ifp;
266 1.2 itojun /* unspecified or not? (RFC 2461 6.3.4) */
267 1.2 itojun if (advreachable) {
268 1.2 itojun NTOHL(advreachable);
269 1.2 itojun if (advreachable <= MAX_REACHABLE_TIME &&
270 1.2 itojun ndi->basereachable != advreachable) {
271 1.2 itojun ndi->basereachable = advreachable;
272 1.2 itojun ndi->reachable = ND_COMPUTE_RTIME(ndi->basereachable);
273 1.2 itojun ndi->recalctm = nd6_recalc_reachtm_interval; /* reset */
274 1.2 itojun }
275 1.2 itojun }
276 1.2 itojun if (nd_ra->nd_ra_retransmit)
277 1.2 itojun ndi->retrans = ntohl(nd_ra->nd_ra_retransmit);
278 1.2 itojun if (nd_ra->nd_ra_curhoplimit)
279 1.2 itojun ndi->chlim = nd_ra->nd_ra_curhoplimit;
280 1.2 itojun dr = defrtrlist_update(&dr0);
281 1.2 itojun }
282 1.2 itojun
283 1.2 itojun /*
284 1.2 itojun * prefix
285 1.2 itojun */
286 1.2 itojun if (ndopts.nd_opts_pi) {
287 1.2 itojun struct nd_opt_hdr *pt;
288 1.32 itojun struct nd_opt_prefix_info *pi = NULL;
289 1.2 itojun struct nd_prefix pr;
290 1.32 itojun long time_second = time.tv_sec;
291 1.2 itojun
292 1.2 itojun for (pt = (struct nd_opt_hdr *)ndopts.nd_opts_pi;
293 1.2 itojun pt <= (struct nd_opt_hdr *)ndopts.nd_opts_pi_end;
294 1.2 itojun pt = (struct nd_opt_hdr *)((caddr_t)pt +
295 1.2 itojun (pt->nd_opt_len << 3))) {
296 1.2 itojun if (pt->nd_opt_type != ND_OPT_PREFIX_INFORMATION)
297 1.2 itojun continue;
298 1.2 itojun pi = (struct nd_opt_prefix_info *)pt;
299 1.2 itojun
300 1.2 itojun if (pi->nd_opt_pi_len != 4) {
301 1.22 itojun nd6log((LOG_INFO,
302 1.22 itojun "nd6_ra_input: invalid option "
303 1.22 itojun "len %d for prefix information option, "
304 1.22 itojun "ignored\n", pi->nd_opt_pi_len));
305 1.2 itojun continue;
306 1.2 itojun }
307 1.2 itojun
308 1.2 itojun if (128 < pi->nd_opt_pi_prefix_len) {
309 1.22 itojun nd6log((LOG_INFO,
310 1.22 itojun "nd6_ra_input: invalid prefix "
311 1.22 itojun "len %d for prefix information option, "
312 1.22 itojun "ignored\n", pi->nd_opt_pi_prefix_len));
313 1.2 itojun continue;
314 1.2 itojun }
315 1.2 itojun
316 1.2 itojun if (IN6_IS_ADDR_MULTICAST(&pi->nd_opt_pi_prefix)
317 1.2 itojun || IN6_IS_ADDR_LINKLOCAL(&pi->nd_opt_pi_prefix)) {
318 1.22 itojun nd6log((LOG_INFO,
319 1.22 itojun "nd6_ra_input: invalid prefix "
320 1.22 itojun "%s, ignored\n",
321 1.22 itojun ip6_sprintf(&pi->nd_opt_pi_prefix)));
322 1.2 itojun continue;
323 1.2 itojun }
324 1.2 itojun
325 1.2 itojun /* aggregatable unicast address, rfc2374 */
326 1.2 itojun if ((pi->nd_opt_pi_prefix.s6_addr8[0] & 0xe0) == 0x20
327 1.2 itojun && pi->nd_opt_pi_prefix_len != 64) {
328 1.22 itojun nd6log((LOG_INFO,
329 1.22 itojun "nd6_ra_input: invalid prefixlen "
330 1.22 itojun "%d for rfc2374 prefix %s, ignored\n",
331 1.22 itojun pi->nd_opt_pi_prefix_len,
332 1.22 itojun ip6_sprintf(&pi->nd_opt_pi_prefix)));
333 1.2 itojun continue;
334 1.2 itojun }
335 1.2 itojun
336 1.2 itojun bzero(&pr, sizeof(pr));
337 1.2 itojun pr.ndpr_prefix.sin6_family = AF_INET6;
338 1.2 itojun pr.ndpr_prefix.sin6_len = sizeof(pr.ndpr_prefix);
339 1.2 itojun pr.ndpr_prefix.sin6_addr = pi->nd_opt_pi_prefix;
340 1.2 itojun pr.ndpr_ifp = (struct ifnet *)m->m_pkthdr.rcvif;
341 1.2 itojun
342 1.2 itojun pr.ndpr_raf_onlink = (pi->nd_opt_pi_flags_reserved &
343 1.32 itojun ND_OPT_PI_FLAG_ONLINK) ? 1 : 0;
344 1.2 itojun pr.ndpr_raf_auto = (pi->nd_opt_pi_flags_reserved &
345 1.32 itojun ND_OPT_PI_FLAG_AUTO) ? 1 : 0;
346 1.2 itojun pr.ndpr_plen = pi->nd_opt_pi_prefix_len;
347 1.2 itojun pr.ndpr_vltime = ntohl(pi->nd_opt_pi_valid_time);
348 1.32 itojun pr.ndpr_pltime = ntohl(pi->nd_opt_pi_preferred_time);
349 1.32 itojun pr.ndpr_lastupdate = time_second;
350 1.2 itojun
351 1.2 itojun if (in6_init_prefix_ltimes(&pr))
352 1.2 itojun continue; /* prefix lifetime init failed */
353 1.2 itojun
354 1.2 itojun (void)prelist_update(&pr, dr, m);
355 1.2 itojun }
356 1.2 itojun }
357 1.2 itojun
358 1.2 itojun /*
359 1.2 itojun * MTU
360 1.2 itojun */
361 1.2 itojun if (ndopts.nd_opts_mtu && ndopts.nd_opts_mtu->nd_opt_mtu_len == 1) {
362 1.32 itojun u_long mtu;
363 1.30 itojun u_long maxmtu;
364 1.2 itojun
365 1.32 itojun mtu = ntohl(ndopts.nd_opts_mtu->nd_opt_mtu_mtu);
366 1.32 itojun
367 1.2 itojun /* lower bound */
368 1.2 itojun if (mtu < IPV6_MMTU) {
369 1.22 itojun nd6log((LOG_INFO, "nd6_ra_input: bogus mtu option "
370 1.32 itojun "mtu=%lu sent from %s, ignoring\n",
371 1.22 itojun mtu, ip6_sprintf(&ip6->ip6_src)));
372 1.2 itojun goto skip;
373 1.2 itojun }
374 1.2 itojun
375 1.2 itojun /* upper bound */
376 1.30 itojun maxmtu = (ndi->maxmtu && ndi->maxmtu < ifp->if_mtu)
377 1.30 itojun ? ndi->maxmtu : ifp->if_mtu;
378 1.30 itojun if (mtu <= maxmtu) {
379 1.30 itojun int change = (ndi->linkmtu != mtu);
380 1.30 itojun
381 1.30 itojun ndi->linkmtu = mtu;
382 1.30 itojun if (change) /* in6_maxmtu may change */
383 1.30 itojun in6_setmaxmtu();
384 1.2 itojun } else {
385 1.30 itojun nd6log((LOG_INFO, "nd6_ra_input: bogus mtu "
386 1.32 itojun "mtu=%lu sent from %s; "
387 1.30 itojun "exceeds maxmtu %lu, ignoring\n",
388 1.30 itojun mtu, ip6_sprintf(&ip6->ip6_src), maxmtu));
389 1.2 itojun }
390 1.2 itojun }
391 1.2 itojun
392 1.2 itojun skip:
393 1.2 itojun
394 1.2 itojun /*
395 1.26 itojun * Source link layer address
396 1.2 itojun */
397 1.2 itojun {
398 1.2 itojun char *lladdr = NULL;
399 1.2 itojun int lladdrlen = 0;
400 1.2 itojun
401 1.2 itojun if (ndopts.nd_opts_src_lladdr) {
402 1.2 itojun lladdr = (char *)(ndopts.nd_opts_src_lladdr + 1);
403 1.2 itojun lladdrlen = ndopts.nd_opts_src_lladdr->nd_opt_len << 3;
404 1.2 itojun }
405 1.2 itojun
406 1.2 itojun if (lladdr && ((ifp->if_addrlen + 2 + 7) & ~7) != lladdrlen) {
407 1.20 itojun nd6log((LOG_INFO,
408 1.2 itojun "nd6_ra_input: lladdrlen mismatch for %s "
409 1.30 itojun "(if %d, RA packet %d)\n", ip6_sprintf(&saddr6),
410 1.30 itojun ifp->if_addrlen, lladdrlen - 2));
411 1.20 itojun goto bad;
412 1.2 itojun }
413 1.2 itojun
414 1.6 itojun nd6_cache_lladdr(ifp, &saddr6, lladdr, lladdrlen, ND_ROUTER_ADVERT, 0);
415 1.7 itojun
416 1.7 itojun /*
417 1.7 itojun * Installing a link-layer address might change the state of the
418 1.7 itojun * router's neighbor cache, which might also affect our on-link
419 1.7 itojun * detection of adveritsed prefixes.
420 1.7 itojun */
421 1.7 itojun pfxlist_onlink_check();
422 1.2 itojun }
423 1.12 itojun
424 1.20 itojun freeit:
425 1.20 itojun m_freem(m);
426 1.20 itojun return;
427 1.20 itojun
428 1.20 itojun bad:
429 1.20 itojun icmp6stat.icp6s_badra++;
430 1.12 itojun m_freem(m);
431 1.2 itojun }
432 1.2 itojun
433 1.2 itojun /*
434 1.2 itojun * default router list proccessing sub routines
435 1.2 itojun */
436 1.32 itojun
437 1.32 itojun /* tell the change to user processes watching the routing socket. */
438 1.32 itojun static void
439 1.32 itojun nd6_rtmsg(cmd, rt)
440 1.32 itojun int cmd;
441 1.32 itojun struct rtentry *rt;
442 1.32 itojun {
443 1.32 itojun struct rt_addrinfo info;
444 1.32 itojun
445 1.32 itojun bzero((caddr_t)&info, sizeof(info));
446 1.32 itojun info.rti_info[RTAX_DST] = rt_key(rt);
447 1.32 itojun info.rti_info[RTAX_GATEWAY] = rt->rt_gateway;
448 1.32 itojun info.rti_info[RTAX_NETMASK] = rt_mask(rt);
449 1.32 itojun info.rti_info[RTAX_IFP] =
450 1.32 itojun (struct sockaddr *)TAILQ_FIRST(&rt->rt_ifp->if_addrlist);
451 1.32 itojun info.rti_info[RTAX_IFA] = rt->rt_ifa->ifa_addr;
452 1.32 itojun
453 1.32 itojun rt_missmsg(cmd, &info, rt->rt_flags, 0);
454 1.32 itojun }
455 1.32 itojun
456 1.2 itojun void
457 1.2 itojun defrouter_addreq(new)
458 1.2 itojun struct nd_defrouter *new;
459 1.2 itojun {
460 1.2 itojun struct sockaddr_in6 def, mask, gate;
461 1.32 itojun struct rtentry *newrt = NULL;
462 1.2 itojun int s;
463 1.32 itojun int error;
464 1.2 itojun
465 1.2 itojun Bzero(&def, sizeof(def));
466 1.2 itojun Bzero(&mask, sizeof(mask));
467 1.32 itojun Bzero(&gate, sizeof(gate)); /* for safety */
468 1.2 itojun
469 1.32 itojun def.sin6_len = mask.sin6_len = gate.sin6_len =
470 1.32 itojun sizeof(struct sockaddr_in6);
471 1.2 itojun def.sin6_family = mask.sin6_family = gate.sin6_family = AF_INET6;
472 1.2 itojun gate.sin6_addr = new->rtaddr;
473 1.32 itojun #ifndef SCOPEDROUTING
474 1.32 itojun gate.sin6_scope_id = 0; /* XXX */
475 1.32 itojun #endif
476 1.2 itojun
477 1.4 itojun s = splsoftnet();
478 1.32 itojun error = rtrequest(RTM_ADD, (struct sockaddr *)&def,
479 1.32 itojun (struct sockaddr *)&gate, (struct sockaddr *)&mask,
480 1.32 itojun RTF_GATEWAY, &newrt);
481 1.32 itojun if (newrt) {
482 1.32 itojun nd6_rtmsg(RTM_ADD, newrt); /* tell user process */
483 1.32 itojun newrt->rt_refcnt--;
484 1.32 itojun }
485 1.32 itojun if (error == 0)
486 1.32 itojun new->installed = 1;
487 1.2 itojun splx(s);
488 1.2 itojun return;
489 1.2 itojun }
490 1.2 itojun
491 1.7 itojun /* Add a route to a given interface as default */
492 1.7 itojun static void
493 1.7 itojun defrouter_addifreq(ifp)
494 1.7 itojun struct ifnet *ifp;
495 1.7 itojun {
496 1.7 itojun struct sockaddr_in6 def, mask;
497 1.7 itojun struct ifaddr *ifa;
498 1.32 itojun struct rtentry *newrt = NULL;
499 1.7 itojun int error, flags;
500 1.32 itojun struct rt_addrinfo info;
501 1.32 itojun
502 1.32 itojun /* remove one if we have already installed one */
503 1.32 itojun if (nd6_defif_installed)
504 1.32 itojun defrouter_delifreq();
505 1.7 itojun
506 1.7 itojun bzero(&def, sizeof(def));
507 1.7 itojun bzero(&mask, sizeof(mask));
508 1.7 itojun
509 1.7 itojun def.sin6_len = mask.sin6_len = sizeof(struct sockaddr_in6);
510 1.7 itojun def.sin6_family = mask.sin6_family = AF_INET6;
511 1.7 itojun
512 1.7 itojun /*
513 1.7 itojun * Search for an ifaddr beloging to the specified interface.
514 1.7 itojun * XXX: An IPv6 address are required to be assigned on the interface.
515 1.7 itojun */
516 1.7 itojun if ((ifa = ifaof_ifpforaddr((struct sockaddr *)&def, ifp)) == NULL) {
517 1.22 itojun nd6log((LOG_ERR, /* better error? */
518 1.7 itojun "defrouter_addifreq: failed to find an ifaddr "
519 1.7 itojun "to install a route to interface %s\n",
520 1.22 itojun if_name(ifp)));
521 1.7 itojun return;
522 1.7 itojun }
523 1.7 itojun
524 1.32 itojun /* RTF_CLONING is necessary to make sure to perform ND */
525 1.32 itojun flags = ifa->ifa_flags | RTF_CLONING;
526 1.32 itojun bzero(&info, sizeof(info));
527 1.32 itojun info.rti_info[RTAX_DST] = (struct sockaddr *)&def;
528 1.32 itojun info.rti_info[RTAX_GATEWAY] = (struct sockaddr *)ifa->ifa_addr;
529 1.32 itojun info.rti_info[RTAX_NETMASK] = (struct sockaddr *)&mask;
530 1.32 itojun info.rti_info[RTAX_IFA] = (struct sockaddr *)ifa->ifa_addr;
531 1.32 itojun info.rti_flags = flags;
532 1.32 itojun error = rtrequest1(RTM_ADD, &info, &newrt);
533 1.28 itojun if (error != 0) {
534 1.22 itojun nd6log((LOG_ERR,
535 1.7 itojun "defrouter_addifreq: failed to install a route to "
536 1.7 itojun "interface %s (errno = %d)\n",
537 1.22 itojun if_name(ifp), error));
538 1.32 itojun
539 1.32 itojun if (newrt) /* maybe unnecessary, but do it for safety */
540 1.32 itojun newrt->rt_refcnt--;
541 1.32 itojun } else {
542 1.32 itojun if (newrt) {
543 1.32 itojun nd6_rtmsg(RTM_ADD, newrt);
544 1.32 itojun newrt->rt_refcnt--;
545 1.32 itojun }
546 1.32 itojun }
547 1.32 itojun
548 1.32 itojun nd6_defif_installed = ifa;
549 1.32 itojun IFAREF(ifa);
550 1.32 itojun }
551 1.32 itojun
552 1.32 itojun /* Remove a default route points to interface */
553 1.32 itojun static void
554 1.32 itojun defrouter_delifreq()
555 1.32 itojun {
556 1.32 itojun struct sockaddr_in6 def, mask;
557 1.32 itojun struct rtentry *oldrt = NULL;
558 1.32 itojun
559 1.32 itojun if (!nd6_defif_installed)
560 1.32 itojun return;
561 1.32 itojun
562 1.32 itojun Bzero(&def, sizeof(def));
563 1.32 itojun Bzero(&mask, sizeof(mask));
564 1.32 itojun
565 1.32 itojun def.sin6_len = mask.sin6_len = sizeof(struct sockaddr_in6);
566 1.32 itojun def.sin6_family = mask.sin6_family = AF_INET6;
567 1.32 itojun
568 1.32 itojun rtrequest(RTM_DELETE, (struct sockaddr *)&def,
569 1.32 itojun (struct sockaddr *)nd6_defif_installed->ifa_addr,
570 1.32 itojun (struct sockaddr *)&mask, RTF_GATEWAY, &oldrt);
571 1.32 itojun if (oldrt) {
572 1.32 itojun nd6_rtmsg(RTM_DELETE, oldrt);
573 1.32 itojun if (oldrt->rt_refcnt <= 0) {
574 1.32 itojun /*
575 1.32 itojun * XXX: borrowed from the RTM_DELETE case of
576 1.32 itojun * rtrequest().
577 1.32 itojun */
578 1.32 itojun oldrt->rt_refcnt++;
579 1.32 itojun rtfree(oldrt);
580 1.32 itojun }
581 1.7 itojun }
582 1.32 itojun
583 1.32 itojun IFAFREE(nd6_defif_installed);
584 1.32 itojun nd6_defif_installed = NULL;
585 1.7 itojun }
586 1.7 itojun
587 1.2 itojun struct nd_defrouter *
588 1.2 itojun defrouter_lookup(addr, ifp)
589 1.2 itojun struct in6_addr *addr;
590 1.2 itojun struct ifnet *ifp;
591 1.2 itojun {
592 1.2 itojun struct nd_defrouter *dr;
593 1.2 itojun
594 1.7 itojun for (dr = TAILQ_FIRST(&nd_defrouter); dr;
595 1.7 itojun dr = TAILQ_NEXT(dr, dr_entry)) {
596 1.32 itojun if (dr->ifp == ifp && IN6_ARE_ADDR_EQUAL(addr, &dr->rtaddr)) {
597 1.2 itojun return(dr);
598 1.32 itojun }
599 1.7 itojun }
600 1.2 itojun
601 1.2 itojun return(NULL); /* search failed */
602 1.2 itojun }
603 1.2 itojun
604 1.2 itojun void
605 1.2 itojun defrtrlist_del(dr)
606 1.2 itojun struct nd_defrouter *dr;
607 1.2 itojun {
608 1.2 itojun struct nd_defrouter *deldr = NULL;
609 1.2 itojun struct nd_prefix *pr;
610 1.2 itojun
611 1.2 itojun /*
612 1.2 itojun * Flush all the routing table entries that use the router
613 1.2 itojun * as a next hop.
614 1.2 itojun */
615 1.32 itojun if (!ip6_forwarding && ip6_accept_rtadv) /* XXX: better condition? */
616 1.2 itojun rt6_flush(&dr->rtaddr, dr->ifp);
617 1.32 itojun
618 1.32 itojun if (dr->installed) {
619 1.32 itojun deldr = dr;
620 1.32 itojun defrouter_delreq(dr);
621 1.2 itojun }
622 1.7 itojun TAILQ_REMOVE(&nd_defrouter, dr, dr_entry);
623 1.2 itojun
624 1.2 itojun /*
625 1.2 itojun * Also delete all the pointers to the router in each prefix lists.
626 1.2 itojun */
627 1.2 itojun for (pr = nd_prefix.lh_first; pr; pr = pr->ndpr_next) {
628 1.2 itojun struct nd_pfxrouter *pfxrtr;
629 1.2 itojun if ((pfxrtr = pfxrtr_lookup(pr, dr)) != NULL)
630 1.2 itojun pfxrtr_del(pfxrtr);
631 1.2 itojun }
632 1.2 itojun pfxlist_onlink_check();
633 1.2 itojun
634 1.2 itojun /*
635 1.7 itojun * If the router is the primary one, choose a new one.
636 1.7 itojun * Note that defrouter_select() will remove the current gateway
637 1.7 itojun * from the routing table.
638 1.2 itojun */
639 1.2 itojun if (deldr)
640 1.7 itojun defrouter_select();
641 1.7 itojun
642 1.2 itojun free(dr, M_IP6NDP);
643 1.2 itojun }
644 1.2 itojun
645 1.7 itojun /*
646 1.32 itojun * Remove the default route for a given router.
647 1.32 itojun * This is just a subroutine function for defrouter_select(), and should
648 1.32 itojun * not be called from anywhere else.
649 1.32 itojun */
650 1.32 itojun static void
651 1.32 itojun defrouter_delreq(dr)
652 1.32 itojun struct nd_defrouter *dr;
653 1.32 itojun {
654 1.32 itojun struct sockaddr_in6 def, mask, gw;
655 1.32 itojun struct rtentry *oldrt = NULL;
656 1.32 itojun
657 1.32 itojun Bzero(&def, sizeof(def));
658 1.32 itojun Bzero(&mask, sizeof(mask));
659 1.32 itojun Bzero(&gw, sizeof(gw)); /* for safety */
660 1.32 itojun
661 1.32 itojun def.sin6_len = mask.sin6_len = gw.sin6_len =
662 1.32 itojun sizeof(struct sockaddr_in6);
663 1.32 itojun def.sin6_family = mask.sin6_family = gw.sin6_family = AF_INET6;
664 1.32 itojun gw.sin6_addr = dr->rtaddr;
665 1.32 itojun #ifndef SCOPEDROUTING
666 1.32 itojun gw.sin6_scope_id = 0; /* XXX */
667 1.32 itojun #endif
668 1.32 itojun
669 1.32 itojun rtrequest(RTM_DELETE, (struct sockaddr *)&def,
670 1.32 itojun dr ? (struct sockaddr *)&gw : NULL,
671 1.32 itojun (struct sockaddr *)&mask, RTF_GATEWAY, &oldrt);
672 1.32 itojun if (oldrt) {
673 1.32 itojun nd6_rtmsg(RTM_DELETE, oldrt);
674 1.32 itojun if (oldrt->rt_refcnt <= 0) {
675 1.32 itojun /*
676 1.32 itojun * XXX: borrowed from the RTM_DELETE case of
677 1.32 itojun * rtrequest().
678 1.32 itojun */
679 1.32 itojun oldrt->rt_refcnt++;
680 1.32 itojun rtfree(oldrt);
681 1.32 itojun }
682 1.32 itojun }
683 1.32 itojun
684 1.32 itojun if (dr)
685 1.32 itojun dr->installed = 0;
686 1.32 itojun }
687 1.32 itojun
688 1.32 itojun /*
689 1.32 itojun * remove all default routes from default router list
690 1.32 itojun */
691 1.32 itojun void
692 1.32 itojun defrouter_reset()
693 1.32 itojun {
694 1.32 itojun struct nd_defrouter *dr;
695 1.32 itojun
696 1.32 itojun for (dr = TAILQ_FIRST(&nd_defrouter); dr;
697 1.32 itojun dr = TAILQ_NEXT(dr, dr_entry))
698 1.32 itojun defrouter_delreq(dr);
699 1.32 itojun defrouter_delifreq();
700 1.32 itojun
701 1.32 itojun /*
702 1.32 itojun * XXX should we also nuke any default routers in the kernel, by
703 1.32 itojun * going through them by rtalloc1()?
704 1.32 itojun */
705 1.32 itojun }
706 1.32 itojun
707 1.32 itojun /*
708 1.32 itojun * Default Router Selection according to Section 6.3.6 of RFC 2461 and
709 1.32 itojun * draft-ietf-ipngwg-router-selection:
710 1.32 itojun * 1) Routers that are reachable or probably reachable should be preferred.
711 1.32 itojun * If we have more than one (probably) reachable router, prefer ones
712 1.32 itojun * with the highest router preference.
713 1.7 itojun * 2) When no routers on the list are known to be reachable or
714 1.7 itojun * probably reachable, routers SHOULD be selected in a round-robin
715 1.32 itojun * fashion, regardless of router preference values.
716 1.7 itojun * 3) If the Default Router List is empty, assume that all
717 1.7 itojun * destinations are on-link.
718 1.32 itojun *
719 1.32 itojun * We assume nd_defrouter is sorted by router preference value.
720 1.32 itojun * Since the code below covers both with and without router preference cases,
721 1.32 itojun * we do not need to classify the cases by ifdef.
722 1.32 itojun *
723 1.32 itojun * At this moment, we do not try to install more than one default router,
724 1.32 itojun * even when the multipath routing is available, because we're not sure about
725 1.32 itojun * the benefits for stub hosts comparing to the risk of making the code
726 1.32 itojun * complicated and the possibility of introducing bugs.
727 1.7 itojun */
728 1.7 itojun void
729 1.7 itojun defrouter_select()
730 1.7 itojun {
731 1.7 itojun int s = splsoftnet();
732 1.32 itojun struct nd_defrouter *dr, *selected_dr = NULL, *installed_dr = NULL;
733 1.7 itojun struct rtentry *rt = NULL;
734 1.7 itojun struct llinfo_nd6 *ln = NULL;
735 1.7 itojun
736 1.7 itojun /*
737 1.32 itojun * This function should be called only when acting as an autoconfigured
738 1.32 itojun * host. Although the remaining part of this function is not effective
739 1.32 itojun * if the node is not an autoconfigured host, we explicitly exclude
740 1.32 itojun * such cases here for safety.
741 1.7 itojun */
742 1.32 itojun if (ip6_forwarding || !ip6_accept_rtadv) {
743 1.32 itojun nd6log((LOG_WARNING,
744 1.32 itojun "defrouter_select: called unexpectedly (forwarding=%d, "
745 1.32 itojun "accept_rtadv=%d)\n", ip6_forwarding, ip6_accept_rtadv));
746 1.32 itojun splx(s);
747 1.32 itojun return;
748 1.7 itojun }
749 1.7 itojun
750 1.32 itojun /*
751 1.32 itojun * Let's handle easy case (3) first:
752 1.32 itojun * If default router list is empty, we should probably install
753 1.32 itojun * an interface route and assume that all destinations are on-link.
754 1.32 itojun */
755 1.32 itojun if (!TAILQ_FIRST(&nd_defrouter)) {
756 1.7 itojun /*
757 1.7 itojun * XXX: The specification does not say this mechanism should
758 1.7 itojun * be restricted to hosts, but this would be not useful
759 1.7 itojun * (even harmful) for routers.
760 1.32 itojun * This test is meaningless due to a test at the beginning of
761 1.32 itojun * the function, but we intentionally keep it to make the note
762 1.32 itojun * clear.
763 1.7 itojun */
764 1.7 itojun if (!ip6_forwarding) {
765 1.7 itojun if (nd6_defifp) {
766 1.7 itojun /*
767 1.7 itojun * Install a route to the default interface
768 1.7 itojun * as default route.
769 1.7 itojun */
770 1.7 itojun defrouter_addifreq(nd6_defifp);
771 1.20 itojun } else {
772 1.32 itojun /*
773 1.32 itojun * purge the existing route.
774 1.32 itojun * XXX: is this really correct?
775 1.32 itojun */
776 1.32 itojun defrouter_delifreq();
777 1.20 itojun nd6log((LOG_INFO, "defrouter_select: "
778 1.20 itojun "there's no default router and no default"
779 1.20 itojun " interface\n"));
780 1.7 itojun }
781 1.7 itojun }
782 1.32 itojun splx(s);
783 1.32 itojun return;
784 1.32 itojun }
785 1.32 itojun
786 1.32 itojun /*
787 1.32 itojun * If we have a default route for the default interface, delete it.
788 1.32 itojun * Note that the existence of the route is checked in the delete
789 1.32 itojun * function.
790 1.32 itojun */
791 1.32 itojun defrouter_delifreq();
792 1.32 itojun
793 1.32 itojun /*
794 1.32 itojun * Search for a (probably) reachable router from the list.
795 1.32 itojun * We just pick up the first reachable one (if any), assuming that
796 1.32 itojun * the ordering rule of the list described in defrtrlist_update().
797 1.32 itojun */
798 1.32 itojun for (dr = TAILQ_FIRST(&nd_defrouter); dr;
799 1.32 itojun dr = TAILQ_NEXT(dr, dr_entry)) {
800 1.32 itojun if (!selected_dr &&
801 1.32 itojun (rt = nd6_lookup(&dr->rtaddr, 0, dr->ifp)) &&
802 1.32 itojun (ln = (struct llinfo_nd6 *)rt->rt_llinfo) &&
803 1.32 itojun ND6_IS_LLINFO_PROBREACH(ln)) {
804 1.32 itojun selected_dr = dr;
805 1.32 itojun }
806 1.32 itojun
807 1.32 itojun if (dr->installed && !installed_dr)
808 1.32 itojun installed_dr = dr;
809 1.32 itojun else if (dr->installed && installed_dr) {
810 1.32 itojun /* this should not happen. warn for diagnosis. */
811 1.32 itojun log(LOG_ERR, "defrouter_select: more than one router"
812 1.32 itojun " is installed\n");
813 1.32 itojun }
814 1.32 itojun }
815 1.32 itojun /*
816 1.32 itojun * If none of the default routers was found to be reachable,
817 1.32 itojun * round-robin the list regardless of preference.
818 1.32 itojun * Otherwise, if we have an installed router, check if the selected
819 1.32 itojun * (reachable) router should really be preferred to the installed one.
820 1.32 itojun * We only prefer the new router when the old one is not reachable
821 1.32 itojun * or when the new one has a really higher preference value.
822 1.32 itojun */
823 1.32 itojun if (!selected_dr) {
824 1.32 itojun if (!installed_dr || !TAILQ_NEXT(installed_dr, dr_entry))
825 1.32 itojun selected_dr = TAILQ_FIRST(&nd_defrouter);
826 1.32 itojun else
827 1.32 itojun selected_dr = TAILQ_NEXT(installed_dr, dr_entry);
828 1.32 itojun } else if (installed_dr &&
829 1.32 itojun (rt = nd6_lookup(&installed_dr->rtaddr, 0, installed_dr->ifp)) &&
830 1.32 itojun (ln = (struct llinfo_nd6 *)rt->rt_llinfo) &&
831 1.32 itojun ND6_IS_LLINFO_PROBREACH(ln) &&
832 1.32 itojun rtpref(selected_dr) <= rtpref(installed_dr)) {
833 1.32 itojun selected_dr = installed_dr;
834 1.32 itojun }
835 1.32 itojun
836 1.32 itojun /*
837 1.32 itojun * If the selected router is different than the installed one,
838 1.32 itojun * remove the installed router and install the selected one.
839 1.32 itojun * Note that the selected router is never NULL here.
840 1.32 itojun */
841 1.32 itojun if (installed_dr != selected_dr) {
842 1.32 itojun if (installed_dr)
843 1.32 itojun defrouter_delreq(installed_dr);
844 1.32 itojun defrouter_addreq(selected_dr);
845 1.7 itojun }
846 1.7 itojun
847 1.7 itojun splx(s);
848 1.7 itojun return;
849 1.7 itojun }
850 1.7 itojun
851 1.32 itojun /*
852 1.32 itojun * for default router selection
853 1.32 itojun * regards router-preference field as a 2-bit signed integer
854 1.32 itojun */
855 1.32 itojun static int
856 1.32 itojun rtpref(struct nd_defrouter *dr)
857 1.32 itojun {
858 1.32 itojun #ifdef RTPREF
859 1.32 itojun switch (dr->flags & ND_RA_FLAG_RTPREF_MASK) {
860 1.32 itojun case ND_RA_FLAG_RTPREF_HIGH:
861 1.32 itojun return RTPREF_HIGH;
862 1.32 itojun case ND_RA_FLAG_RTPREF_MEDIUM:
863 1.32 itojun case ND_RA_FLAG_RTPREF_RSV:
864 1.32 itojun return RTPREF_MEDIUM;
865 1.32 itojun case ND_RA_FLAG_RTPREF_LOW:
866 1.32 itojun return RTPREF_LOW;
867 1.32 itojun default:
868 1.32 itojun /*
869 1.32 itojun * This case should never happen. If it did, it would mean a
870 1.32 itojun * serious bug of kernel internal. We thus always bark here.
871 1.32 itojun * Or, can we even panic?
872 1.32 itojun */
873 1.32 itojun log(LOG_ERR, "rtpref: impossible RA flag %x", dr->flags);
874 1.32 itojun return RTPREF_INVALID;
875 1.32 itojun }
876 1.32 itojun /* NOTREACHED */
877 1.32 itojun #else
878 1.32 itojun return 0;
879 1.32 itojun #endif
880 1.32 itojun }
881 1.32 itojun
882 1.2 itojun static struct nd_defrouter *
883 1.2 itojun defrtrlist_update(new)
884 1.2 itojun struct nd_defrouter *new;
885 1.2 itojun {
886 1.2 itojun struct nd_defrouter *dr, *n;
887 1.4 itojun int s = splsoftnet();
888 1.2 itojun
889 1.2 itojun if ((dr = defrouter_lookup(&new->rtaddr, new->ifp)) != NULL) {
890 1.2 itojun /* entry exists */
891 1.2 itojun if (new->rtlifetime == 0) {
892 1.2 itojun defrtrlist_del(dr);
893 1.2 itojun dr = NULL;
894 1.2 itojun } else {
895 1.32 itojun int oldpref = rtpref(dr);
896 1.32 itojun
897 1.2 itojun /* override */
898 1.2 itojun dr->flags = new->flags; /* xxx flag check */
899 1.2 itojun dr->rtlifetime = new->rtlifetime;
900 1.2 itojun dr->expire = new->expire;
901 1.32 itojun
902 1.32 itojun /*
903 1.32 itojun * If the preference does not change, there's no need
904 1.32 itojun * to sort the entries.
905 1.32 itojun */
906 1.32 itojun if (rtpref(new) == oldpref) {
907 1.32 itojun splx(s);
908 1.32 itojun return(dr);
909 1.32 itojun }
910 1.32 itojun
911 1.32 itojun /*
912 1.32 itojun * preferred router may be changed, so relocate
913 1.32 itojun * this router.
914 1.32 itojun * XXX: calling TAILQ_REMOVE directly is a bad manner.
915 1.32 itojun * However, since defrtrlist_del() has many side
916 1.32 itojun * effects, we intentionally do so here.
917 1.32 itojun * defrouter_select() below will handle routing
918 1.32 itojun * changes later.
919 1.32 itojun */
920 1.32 itojun TAILQ_REMOVE(&nd_defrouter, dr, dr_entry);
921 1.32 itojun n = dr;
922 1.32 itojun goto insert;
923 1.2 itojun }
924 1.2 itojun splx(s);
925 1.2 itojun return(dr);
926 1.2 itojun }
927 1.2 itojun
928 1.2 itojun /* entry does not exist */
929 1.2 itojun if (new->rtlifetime == 0) {
930 1.2 itojun splx(s);
931 1.2 itojun return(NULL);
932 1.2 itojun }
933 1.2 itojun
934 1.2 itojun n = (struct nd_defrouter *)malloc(sizeof(*n), M_IP6NDP, M_NOWAIT);
935 1.2 itojun if (n == NULL) {
936 1.2 itojun splx(s);
937 1.2 itojun return(NULL);
938 1.2 itojun }
939 1.2 itojun bzero(n, sizeof(*n));
940 1.2 itojun *n = *new;
941 1.7 itojun
942 1.32 itojun insert:
943 1.7 itojun /*
944 1.32 itojun * Insert the new router in the Default Router List;
945 1.32 itojun * The Default Router List should be in the descending order
946 1.32 itojun * of router-preferece. Routers with the same preference are
947 1.32 itojun * sorted in the arriving time order.
948 1.7 itojun */
949 1.32 itojun
950 1.32 itojun /* insert at the end of the group */
951 1.32 itojun for (dr = TAILQ_FIRST(&nd_defrouter); dr;
952 1.32 itojun dr = TAILQ_NEXT(dr, dr_entry)) {
953 1.32 itojun if (rtpref(n) > rtpref(dr))
954 1.32 itojun break;
955 1.32 itojun }
956 1.32 itojun if (dr)
957 1.32 itojun TAILQ_INSERT_BEFORE(dr, n, dr_entry);
958 1.32 itojun else
959 1.32 itojun TAILQ_INSERT_TAIL(&nd_defrouter, n, dr_entry);
960 1.32 itojun
961 1.32 itojun defrouter_select();
962 1.32 itojun
963 1.2 itojun splx(s);
964 1.2 itojun
965 1.2 itojun return(n);
966 1.2 itojun }
967 1.2 itojun
968 1.2 itojun static struct nd_pfxrouter *
969 1.2 itojun pfxrtr_lookup(pr, dr)
970 1.2 itojun struct nd_prefix *pr;
971 1.2 itojun struct nd_defrouter *dr;
972 1.2 itojun {
973 1.2 itojun struct nd_pfxrouter *search;
974 1.2 itojun
975 1.2 itojun for (search = pr->ndpr_advrtrs.lh_first; search; search = search->pfr_next) {
976 1.2 itojun if (search->router == dr)
977 1.2 itojun break;
978 1.2 itojun }
979 1.2 itojun
980 1.2 itojun return(search);
981 1.2 itojun }
982 1.2 itojun
983 1.2 itojun static void
984 1.2 itojun pfxrtr_add(pr, dr)
985 1.2 itojun struct nd_prefix *pr;
986 1.2 itojun struct nd_defrouter *dr;
987 1.2 itojun {
988 1.2 itojun struct nd_pfxrouter *new;
989 1.2 itojun
990 1.2 itojun new = (struct nd_pfxrouter *)malloc(sizeof(*new), M_IP6NDP, M_NOWAIT);
991 1.2 itojun if (new == NULL)
992 1.2 itojun return;
993 1.2 itojun bzero(new, sizeof(*new));
994 1.2 itojun new->router = dr;
995 1.2 itojun
996 1.2 itojun LIST_INSERT_HEAD(&pr->ndpr_advrtrs, new, pfr_entry);
997 1.2 itojun
998 1.2 itojun pfxlist_onlink_check();
999 1.2 itojun }
1000 1.2 itojun
1001 1.2 itojun static void
1002 1.2 itojun pfxrtr_del(pfr)
1003 1.2 itojun struct nd_pfxrouter *pfr;
1004 1.2 itojun {
1005 1.2 itojun LIST_REMOVE(pfr, pfr_entry);
1006 1.2 itojun free(pfr, M_IP6NDP);
1007 1.2 itojun }
1008 1.2 itojun
1009 1.32 itojun struct nd_prefix *
1010 1.32 itojun nd6_prefix_lookup(pr)
1011 1.2 itojun struct nd_prefix *pr;
1012 1.2 itojun {
1013 1.2 itojun struct nd_prefix *search;
1014 1.2 itojun
1015 1.2 itojun for (search = nd_prefix.lh_first; search; search = search->ndpr_next) {
1016 1.2 itojun if (pr->ndpr_ifp == search->ndpr_ifp &&
1017 1.2 itojun pr->ndpr_plen == search->ndpr_plen &&
1018 1.2 itojun in6_are_prefix_equal(&pr->ndpr_prefix.sin6_addr,
1019 1.32 itojun &search->ndpr_prefix.sin6_addr, pr->ndpr_plen)) {
1020 1.2 itojun break;
1021 1.2 itojun }
1022 1.2 itojun }
1023 1.2 itojun
1024 1.2 itojun return(search);
1025 1.2 itojun }
1026 1.2 itojun
1027 1.32 itojun int
1028 1.32 itojun nd6_prelist_add(pr, dr, newp)
1029 1.32 itojun struct nd_prefix *pr, **newp;
1030 1.2 itojun struct nd_defrouter *dr;
1031 1.2 itojun {
1032 1.32 itojun struct nd_prefix *new = NULL;
1033 1.2 itojun int i, s;
1034 1.2 itojun
1035 1.2 itojun new = (struct nd_prefix *)malloc(sizeof(*new), M_IP6NDP, M_NOWAIT);
1036 1.2 itojun if (new == NULL)
1037 1.2 itojun return ENOMEM;
1038 1.2 itojun bzero(new, sizeof(*new));
1039 1.2 itojun *new = *pr;
1040 1.32 itojun if (newp != NULL)
1041 1.32 itojun *newp = new;
1042 1.2 itojun
1043 1.2 itojun /* initilization */
1044 1.2 itojun LIST_INIT(&new->ndpr_advrtrs);
1045 1.2 itojun in6_prefixlen2mask(&new->ndpr_mask, new->ndpr_plen);
1046 1.2 itojun /* make prefix in the canonical form */
1047 1.2 itojun for (i = 0; i < 4; i++)
1048 1.2 itojun new->ndpr_prefix.sin6_addr.s6_addr32[i] &=
1049 1.32 itojun new->ndpr_mask.s6_addr32[i];
1050 1.2 itojun
1051 1.4 itojun s = splsoftnet();
1052 1.2 itojun /* link ndpr_entry to nd_prefix list */
1053 1.2 itojun LIST_INSERT_HEAD(&nd_prefix, new, ndpr_entry);
1054 1.2 itojun splx(s);
1055 1.2 itojun
1056 1.32 itojun /* ND_OPT_PI_FLAG_ONLINK processing */
1057 1.32 itojun if (new->ndpr_raf_onlink) {
1058 1.32 itojun int e;
1059 1.32 itojun
1060 1.32 itojun if ((e = nd6_prefix_onlink(new)) != 0) {
1061 1.32 itojun nd6log((LOG_ERR, "nd6_prelist_add: failed to make "
1062 1.32 itojun "the prefix %s/%d on-link on %s (errno=%d)\n",
1063 1.32 itojun ip6_sprintf(&pr->ndpr_prefix.sin6_addr),
1064 1.32 itojun pr->ndpr_plen, if_name(pr->ndpr_ifp), e));
1065 1.32 itojun /* proceed anyway. XXX: is it correct? */
1066 1.32 itojun }
1067 1.32 itojun }
1068 1.32 itojun
1069 1.2 itojun if (dr)
1070 1.2 itojun pfxrtr_add(new, dr);
1071 1.2 itojun
1072 1.2 itojun return 0;
1073 1.2 itojun }
1074 1.2 itojun
1075 1.2 itojun void
1076 1.2 itojun prelist_remove(pr)
1077 1.2 itojun struct nd_prefix *pr;
1078 1.2 itojun {
1079 1.2 itojun struct nd_pfxrouter *pfr, *next;
1080 1.32 itojun int e, s;
1081 1.32 itojun
1082 1.32 itojun /* make sure to invalidate the prefix until it is really freed. */
1083 1.32 itojun pr->ndpr_vltime = 0;
1084 1.32 itojun pr->ndpr_pltime = 0;
1085 1.32 itojun #if 0
1086 1.32 itojun /*
1087 1.32 itojun * Though these flags are now meaningless, we'd rather keep the value
1088 1.32 itojun * not to confuse users when executing "ndp -p".
1089 1.32 itojun */
1090 1.32 itojun pr->ndpr_raf_onlink = 0;
1091 1.32 itojun pr->ndpr_raf_auto = 0;
1092 1.32 itojun #endif
1093 1.32 itojun if ((pr->ndpr_stateflags & NDPRF_ONLINK) != 0 &&
1094 1.32 itojun (e = nd6_prefix_offlink(pr)) != 0) {
1095 1.32 itojun nd6log((LOG_ERR, "prelist_remove: failed to make %s/%d offlink "
1096 1.32 itojun "on %s, errno=%d\n",
1097 1.32 itojun ip6_sprintf(&pr->ndpr_prefix.sin6_addr),
1098 1.32 itojun pr->ndpr_plen, if_name(pr->ndpr_ifp), e));
1099 1.32 itojun /* what should we do? */
1100 1.32 itojun }
1101 1.32 itojun
1102 1.32 itojun if (pr->ndpr_refcnt > 0)
1103 1.32 itojun return; /* notice here? */
1104 1.2 itojun
1105 1.4 itojun s = splsoftnet();
1106 1.2 itojun /* unlink ndpr_entry from nd_prefix list */
1107 1.2 itojun LIST_REMOVE(pr, ndpr_entry);
1108 1.2 itojun
1109 1.2 itojun /* free list of routers that adversed the prefix */
1110 1.2 itojun for (pfr = pr->ndpr_advrtrs.lh_first; pfr; pfr = next) {
1111 1.2 itojun next = pfr->pfr_next;
1112 1.2 itojun
1113 1.2 itojun free(pfr, M_IP6NDP);
1114 1.2 itojun }
1115 1.21 itojun splx(s);
1116 1.21 itojun
1117 1.2 itojun free(pr, M_IP6NDP);
1118 1.2 itojun
1119 1.2 itojun pfxlist_onlink_check();
1120 1.2 itojun }
1121 1.2 itojun
1122 1.2 itojun int
1123 1.2 itojun prelist_update(new, dr, m)
1124 1.2 itojun struct nd_prefix *new;
1125 1.2 itojun struct nd_defrouter *dr; /* may be NULL */
1126 1.2 itojun struct mbuf *m;
1127 1.2 itojun {
1128 1.32 itojun struct in6_ifaddr *ia6 = NULL, *ia6_match = NULL;
1129 1.32 itojun struct ifaddr *ifa;
1130 1.32 itojun struct ifnet *ifp = new->ndpr_ifp;
1131 1.2 itojun struct nd_prefix *pr;
1132 1.4 itojun int s = splsoftnet();
1133 1.2 itojun int error = 0;
1134 1.32 itojun int newprefix = 0;
1135 1.2 itojun int auth;
1136 1.32 itojun struct in6_addrlifetime lt6_tmp;
1137 1.2 itojun
1138 1.7 itojun auth = 0;
1139 1.2 itojun if (m) {
1140 1.2 itojun /*
1141 1.2 itojun * Authenticity for NA consists authentication for
1142 1.2 itojun * both IP header and IP datagrams, doesn't it ?
1143 1.2 itojun */
1144 1.7 itojun #if defined(M_AUTHIPHDR) && defined(M_AUTHIPDGM)
1145 1.2 itojun auth = (m->m_flags & M_AUTHIPHDR
1146 1.2 itojun && m->m_flags & M_AUTHIPDGM) ? 1 : 0;
1147 1.7 itojun #endif
1148 1.7 itojun }
1149 1.2 itojun
1150 1.32 itojun if ((pr = nd6_prefix_lookup(new)) != NULL) {
1151 1.32 itojun /*
1152 1.32 itojun * nd6_prefix_lookup() ensures that pr and new have the same
1153 1.32 itojun * prefix on a same interface.
1154 1.32 itojun */
1155 1.32 itojun
1156 1.32 itojun /*
1157 1.32 itojun * Update prefix information. Note that the on-link (L) bit
1158 1.32 itojun * and the autonomous (A) bit should NOT be changed from 1
1159 1.32 itojun * to 0.
1160 1.32 itojun */
1161 1.32 itojun if (new->ndpr_raf_onlink == 1)
1162 1.32 itojun pr->ndpr_raf_onlink = 1;
1163 1.32 itojun if (new->ndpr_raf_auto == 1)
1164 1.32 itojun pr->ndpr_raf_auto = 1;
1165 1.32 itojun if (new->ndpr_raf_onlink) {
1166 1.32 itojun pr->ndpr_vltime = new->ndpr_vltime;
1167 1.32 itojun pr->ndpr_pltime = new->ndpr_pltime;
1168 1.32 itojun pr->ndpr_preferred = new->ndpr_preferred;
1169 1.32 itojun pr->ndpr_expire = new->ndpr_expire;
1170 1.32 itojun pr->ndpr_lastupdate = new->ndpr_lastupdate;
1171 1.32 itojun }
1172 1.32 itojun
1173 1.32 itojun if (new->ndpr_raf_onlink &&
1174 1.32 itojun (pr->ndpr_stateflags & NDPRF_ONLINK) == 0) {
1175 1.32 itojun int e;
1176 1.32 itojun
1177 1.32 itojun if ((e = nd6_prefix_onlink(pr)) != 0) {
1178 1.32 itojun nd6log((LOG_ERR,
1179 1.32 itojun "prelist_update: failed to make "
1180 1.32 itojun "the prefix %s/%d on-link on %s "
1181 1.32 itojun "(errno=%d)\n",
1182 1.32 itojun ip6_sprintf(&pr->ndpr_prefix.sin6_addr),
1183 1.32 itojun pr->ndpr_plen, if_name(pr->ndpr_ifp), e));
1184 1.32 itojun /* proceed anyway. XXX: is it correct? */
1185 1.32 itojun }
1186 1.32 itojun }
1187 1.32 itojun
1188 1.32 itojun if (dr && pfxrtr_lookup(pr, dr) == NULL)
1189 1.32 itojun pfxrtr_add(pr, dr);
1190 1.32 itojun } else {
1191 1.32 itojun struct nd_prefix *newpr = NULL;
1192 1.32 itojun
1193 1.32 itojun newprefix = 1;
1194 1.32 itojun
1195 1.32 itojun if (new->ndpr_vltime == 0)
1196 1.2 itojun goto end;
1197 1.32 itojun if (new->ndpr_raf_onlink == 0 && new->ndpr_raf_auto == 0)
1198 1.32 itojun goto end;
1199 1.32 itojun
1200 1.32 itojun error = nd6_prelist_add(new, dr, &newpr);
1201 1.32 itojun if (error != 0 || newpr == NULL) {
1202 1.32 itojun nd6log((LOG_NOTICE, "prelist_update: "
1203 1.32 itojun "nd6_prelist_add failed for %s/%d on %s "
1204 1.32 itojun "errno=%d, returnpr=%p\n",
1205 1.32 itojun ip6_sprintf(&new->ndpr_prefix.sin6_addr),
1206 1.32 itojun new->ndpr_plen, if_name(new->ndpr_ifp),
1207 1.32 itojun error, newpr));
1208 1.32 itojun goto end; /* we should just give up in this case. */
1209 1.2 itojun }
1210 1.2 itojun
1211 1.2 itojun /*
1212 1.32 itojun * XXX: from the ND point of view, we can ignore a prefix
1213 1.32 itojun * with the on-link bit being zero. However, we need a
1214 1.32 itojun * prefix structure for references from autoconfigured
1215 1.32 itojun * addresses. Thus, we explicitly make sure that the prefix
1216 1.32 itojun * itself expires now.
1217 1.2 itojun */
1218 1.32 itojun if (newpr->ndpr_raf_onlink == 0) {
1219 1.32 itojun newpr->ndpr_vltime = 0;
1220 1.32 itojun newpr->ndpr_pltime = 0;
1221 1.32 itojun in6_init_prefix_ltimes(newpr);
1222 1.32 itojun }
1223 1.2 itojun
1224 1.32 itojun pr = newpr;
1225 1.32 itojun }
1226 1.32 itojun
1227 1.32 itojun /*
1228 1.32 itojun * Address autoconfiguration based on Section 5.5.3 of RFC 2462.
1229 1.32 itojun * Note that pr must be non NULL at this point.
1230 1.32 itojun */
1231 1.32 itojun
1232 1.32 itojun /* 5.5.3 (a). Ignore the prefix without the A bit set. */
1233 1.32 itojun if (!new->ndpr_raf_auto)
1234 1.32 itojun goto end;
1235 1.2 itojun
1236 1.32 itojun /*
1237 1.32 itojun * 5.5.3 (b). the link-local prefix should have been ignored in
1238 1.32 itojun * nd6_ra_input.
1239 1.32 itojun */
1240 1.2 itojun
1241 1.32 itojun /*
1242 1.32 itojun * 5.5.3 (c). Consistency check on lifetimes: pltime <= vltime.
1243 1.32 itojun * This should have been done in nd6_ra_input.
1244 1.32 itojun */
1245 1.2 itojun
1246 1.32 itojun /*
1247 1.32 itojun * 5.5.3 (d). If the prefix advertised does not match the prefix of an
1248 1.32 itojun * address already in the list, and the Valid Lifetime is not 0,
1249 1.32 itojun * form an address. Note that even a manually configured address
1250 1.32 itojun * should reject autoconfiguration of a new address.
1251 1.32 itojun */
1252 1.32 itojun for (ifa = ifp->if_addrlist.tqh_first; ifa; ifa = ifa->ifa_list.tqe_next)
1253 1.32 itojun {
1254 1.32 itojun struct in6_ifaddr *ifa6;
1255 1.32 itojun int ifa_plen;
1256 1.32 itojun u_int32_t storedlifetime;
1257 1.32 itojun long time_second = time.tv_sec;
1258 1.2 itojun
1259 1.32 itojun if (ifa->ifa_addr->sa_family != AF_INET6)
1260 1.32 itojun continue;
1261 1.2 itojun
1262 1.32 itojun ifa6 = (struct in6_ifaddr *)ifa;
1263 1.2 itojun
1264 1.32 itojun /*
1265 1.32 itojun * Spec is not clear here, but I believe we should concentrate
1266 1.32 itojun * on unicast (i.e. not anycast) addresses.
1267 1.32 itojun * XXX: other ia6_flags? detached or duplicated?
1268 1.32 itojun */
1269 1.32 itojun if ((ifa6->ia6_flags & IN6_IFF_ANYCAST) != 0)
1270 1.32 itojun continue;
1271 1.32 itojun
1272 1.32 itojun ifa_plen = in6_mask2len(&ifa6->ia_prefixmask.sin6_addr, NULL);
1273 1.32 itojun if (ifa_plen != new->ndpr_plen ||
1274 1.32 itojun !in6_are_prefix_equal(&ifa6->ia_addr.sin6_addr,
1275 1.32 itojun &new->ndpr_prefix.sin6_addr, ifa_plen))
1276 1.32 itojun continue;
1277 1.7 itojun
1278 1.32 itojun if (ia6_match == NULL) /* remember the first one */
1279 1.32 itojun ia6_match = ifa6;
1280 1.2 itojun
1281 1.32 itojun if ((ifa6->ia6_flags & IN6_IFF_AUTOCONF) == 0)
1282 1.32 itojun continue;
1283 1.2 itojun
1284 1.32 itojun /*
1285 1.32 itojun * An already autoconfigured address matched. Now that we
1286 1.32 itojun * are sure there is at least one matched address, we can
1287 1.32 itojun * proceed to 5.5.3. (e): update the lifetimes according to the
1288 1.32 itojun * "two hours" rule and the privacy extension.
1289 1.32 itojun */
1290 1.32 itojun #define TWOHOUR (120*60)
1291 1.32 itojun /*
1292 1.32 itojun * RFC2462 introduces the notion of StoredLifetime to the
1293 1.32 itojun * "two hours" rule as follows:
1294 1.32 itojun * the Lifetime associated with the previously autoconfigured
1295 1.32 itojun * address.
1296 1.32 itojun * Our interpretation of this definition is "the remaining
1297 1.32 itojun * lifetime to expiration at the evaluation time". One might
1298 1.32 itojun * be wondering if this interpretation is really conform to the
1299 1.32 itojun * RFC, because the text can read that "Lifetimes" are never
1300 1.32 itojun * decreased, and our definition of the "storedlifetime" below
1301 1.32 itojun * essentially reduces the "Valid Lifetime" advertised in the
1302 1.32 itojun * previous RA. But, this is due to the wording of the text,
1303 1.32 itojun * and our interpretation is the same as an author's intention.
1304 1.32 itojun * See the discussion in the IETF ipngwg ML in August 2001,
1305 1.32 itojun * with the Subject "StoredLifetime in RFC 2462".
1306 1.32 itojun */
1307 1.32 itojun lt6_tmp = ifa6->ia6_lifetime;
1308 1.32 itojun if (lt6_tmp.ia6t_vltime == ND6_INFINITE_LIFETIME)
1309 1.32 itojun storedlifetime = ND6_INFINITE_LIFETIME;
1310 1.32 itojun else if (time_second - ifa6->ia6_updatetime >
1311 1.32 itojun lt6_tmp.ia6t_vltime) {
1312 1.32 itojun /*
1313 1.32 itojun * The case of "invalid" address. We should usually
1314 1.32 itojun * not see this case.
1315 1.32 itojun */
1316 1.32 itojun storedlifetime = 0;
1317 1.32 itojun } else
1318 1.32 itojun storedlifetime = lt6_tmp.ia6t_vltime -
1319 1.32 itojun (time_second - ifa6->ia6_updatetime);
1320 1.32 itojun if (TWOHOUR < new->ndpr_vltime ||
1321 1.32 itojun storedlifetime < new->ndpr_vltime) {
1322 1.32 itojun lt6_tmp.ia6t_vltime = new->ndpr_vltime;
1323 1.32 itojun } else if (storedlifetime <= TWOHOUR
1324 1.2 itojun #if 0
1325 1.32 itojun /*
1326 1.32 itojun * This condition is logically redundant, so we just
1327 1.32 itojun * omit it.
1328 1.32 itojun * See IPng 6712, 6717, and 6721.
1329 1.32 itojun */
1330 1.32 itojun && new->ndpr_vltime <= storedlifetime
1331 1.32 itojun #endif
1332 1.32 itojun ) {
1333 1.32 itojun if (auth) {
1334 1.32 itojun lt6_tmp.ia6t_vltime = new->ndpr_vltime;
1335 1.32 itojun }
1336 1.32 itojun } else {
1337 1.32 itojun /*
1338 1.32 itojun * new->ndpr_vltime <= TWOHOUR &&
1339 1.32 itojun * TWOHOUR < storedlifetime
1340 1.32 itojun */
1341 1.32 itojun lt6_tmp.ia6t_vltime = TWOHOUR;
1342 1.2 itojun }
1343 1.2 itojun
1344 1.32 itojun /* The 2 hour rule is not imposed for preferred lifetime. */
1345 1.32 itojun lt6_tmp.ia6t_pltime = new->ndpr_pltime;
1346 1.2 itojun
1347 1.32 itojun in6_init_address_ltimes(pr, <6_tmp);
1348 1.2 itojun
1349 1.32 itojun ifa6->ia6_lifetime = lt6_tmp;
1350 1.32 itojun ifa6->ia6_updatetime = time_second;
1351 1.32 itojun }
1352 1.32 itojun if (ia6_match == NULL && new->ndpr_vltime) {
1353 1.2 itojun /*
1354 1.32 itojun * No address matched and the valid lifetime is non-zero.
1355 1.32 itojun * Create a new address.
1356 1.2 itojun */
1357 1.32 itojun if ((ia6 = in6_ifadd(new)) != NULL) {
1358 1.32 itojun /*
1359 1.32 itojun * note that we should use pr (not new) for reference.
1360 1.32 itojun */
1361 1.32 itojun pr->ndpr_refcnt++;
1362 1.32 itojun ia6->ia6_ndpr = pr;
1363 1.2 itojun
1364 1.32 itojun /*
1365 1.32 itojun * A newly added address might affect the status
1366 1.32 itojun * of other addresses, so we check and update it.
1367 1.32 itojun * XXX: what if address duplication happens?
1368 1.32 itojun */
1369 1.32 itojun pfxlist_onlink_check();
1370 1.32 itojun } else {
1371 1.32 itojun /* just set an error. do not bark here. */
1372 1.32 itojun error = EADDRNOTAVAIL; /* XXX: might be unused. */
1373 1.32 itojun }
1374 1.2 itojun }
1375 1.2 itojun
1376 1.2 itojun end:
1377 1.2 itojun splx(s);
1378 1.2 itojun return error;
1379 1.2 itojun }
1380 1.2 itojun
1381 1.2 itojun /*
1382 1.7 itojun * A supplement function used in the on-link detection below;
1383 1.7 itojun * detect if a given prefix has a (probably) reachable advertising router.
1384 1.7 itojun * XXX: lengthy function name...
1385 1.7 itojun */
1386 1.7 itojun static struct nd_pfxrouter *
1387 1.7 itojun find_pfxlist_reachable_router(pr)
1388 1.7 itojun struct nd_prefix *pr;
1389 1.7 itojun {
1390 1.7 itojun struct nd_pfxrouter *pfxrtr;
1391 1.7 itojun struct rtentry *rt;
1392 1.7 itojun struct llinfo_nd6 *ln;
1393 1.7 itojun
1394 1.7 itojun for (pfxrtr = LIST_FIRST(&pr->ndpr_advrtrs); pfxrtr;
1395 1.7 itojun pfxrtr = LIST_NEXT(pfxrtr, pfr_entry)) {
1396 1.7 itojun if ((rt = nd6_lookup(&pfxrtr->router->rtaddr, 0,
1397 1.32 itojun pfxrtr->router->ifp)) &&
1398 1.7 itojun (ln = (struct llinfo_nd6 *)rt->rt_llinfo) &&
1399 1.7 itojun ND6_IS_LLINFO_PROBREACH(ln))
1400 1.7 itojun break; /* found */
1401 1.7 itojun }
1402 1.7 itojun
1403 1.7 itojun return(pfxrtr);
1404 1.7 itojun }
1405 1.7 itojun
1406 1.7 itojun /*
1407 1.2 itojun * Check if each prefix in the prefix list has at least one available router
1408 1.25 itojun * that advertised the prefix (a router is "available" if its neighbor cache
1409 1.25 itojun * entry is reachable or probably reachable).
1410 1.7 itojun * If the check fails, the prefix may be off-link, because, for example,
1411 1.2 itojun * we have moved from the network but the lifetime of the prefix has not
1412 1.25 itojun * expired yet. So we should not use the prefix if there is another prefix
1413 1.25 itojun * that has an available router.
1414 1.25 itojun * But, if there is no prefix that has an available router, we still regards
1415 1.25 itojun * all the prefixes as on-link. This is because we can't tell if all the
1416 1.2 itojun * routers are simply dead or if we really moved from the network and there
1417 1.2 itojun * is no router around us.
1418 1.2 itojun */
1419 1.7 itojun void
1420 1.2 itojun pfxlist_onlink_check()
1421 1.2 itojun {
1422 1.2 itojun struct nd_prefix *pr;
1423 1.32 itojun struct in6_ifaddr *ifa;
1424 1.2 itojun
1425 1.7 itojun /*
1426 1.7 itojun * Check if there is a prefix that has a reachable advertising
1427 1.7 itojun * router.
1428 1.7 itojun */
1429 1.7 itojun for (pr = nd_prefix.lh_first; pr; pr = pr->ndpr_next) {
1430 1.32 itojun if (pr->ndpr_raf_onlink && find_pfxlist_reachable_router(pr))
1431 1.2 itojun break;
1432 1.7 itojun }
1433 1.32 itojun if (pr != NULL || TAILQ_FIRST(&nd_defrouter) != NULL) {
1434 1.2 itojun /*
1435 1.32 itojun * There is at least one prefix that has a reachable router,
1436 1.32 itojun * or at least a router which probably does not advertise
1437 1.32 itojun * any prefixes. The latter would be the case when we move
1438 1.32 itojun * to a new link where we have a router that does not provide
1439 1.32 itojun * prefixes and we configure an address by hand.
1440 1.32 itojun * Detach prefixes which have no reachable advertising
1441 1.32 itojun * router, and attach other prefixes.
1442 1.2 itojun */
1443 1.2 itojun for (pr = nd_prefix.lh_first; pr; pr = pr->ndpr_next) {
1444 1.32 itojun /* XXX: a link-local prefix should never be detached */
1445 1.32 itojun if (IN6_IS_ADDR_LINKLOCAL(&pr->ndpr_prefix.sin6_addr))
1446 1.32 itojun continue;
1447 1.32 itojun
1448 1.32 itojun /*
1449 1.32 itojun * we aren't interested in prefixes without the L bit
1450 1.32 itojun * set.
1451 1.32 itojun */
1452 1.32 itojun if (pr->ndpr_raf_onlink == 0)
1453 1.32 itojun continue;
1454 1.32 itojun
1455 1.32 itojun if ((pr->ndpr_stateflags & NDPRF_DETACHED) == 0 &&
1456 1.32 itojun find_pfxlist_reachable_router(pr) == NULL)
1457 1.32 itojun pr->ndpr_stateflags |= NDPRF_DETACHED;
1458 1.32 itojun if ((pr->ndpr_stateflags & NDPRF_DETACHED) != 0 &&
1459 1.32 itojun find_pfxlist_reachable_router(pr) != 0)
1460 1.32 itojun pr->ndpr_stateflags &= ~NDPRF_DETACHED;
1461 1.32 itojun }
1462 1.32 itojun } else {
1463 1.32 itojun /* there is no prefix that has a reachable router */
1464 1.32 itojun for (pr = nd_prefix.lh_first; pr; pr = pr->ndpr_next) {
1465 1.32 itojun if (IN6_IS_ADDR_LINKLOCAL(&pr->ndpr_prefix.sin6_addr))
1466 1.32 itojun continue;
1467 1.32 itojun
1468 1.32 itojun if (pr->ndpr_raf_onlink == 0)
1469 1.32 itojun continue;
1470 1.32 itojun
1471 1.32 itojun if ((pr->ndpr_stateflags & NDPRF_DETACHED) != 0)
1472 1.32 itojun pr->ndpr_stateflags &= ~NDPRF_DETACHED;
1473 1.32 itojun }
1474 1.32 itojun }
1475 1.32 itojun
1476 1.32 itojun /*
1477 1.32 itojun * Remove each interface route associated with a (just) detached
1478 1.32 itojun * prefix, and reinstall the interface route for a (just) attached
1479 1.32 itojun * prefix. Note that all attempt of reinstallation does not
1480 1.32 itojun * necessarily success, when a same prefix is shared among multiple
1481 1.32 itojun * interfaces. Such cases will be handled in nd6_prefix_onlink,
1482 1.32 itojun * so we don't have to care about them.
1483 1.32 itojun */
1484 1.32 itojun for (pr = nd_prefix.lh_first; pr; pr = pr->ndpr_next) {
1485 1.32 itojun int e;
1486 1.32 itojun
1487 1.32 itojun if (IN6_IS_ADDR_LINKLOCAL(&pr->ndpr_prefix.sin6_addr))
1488 1.32 itojun continue;
1489 1.32 itojun
1490 1.32 itojun if (pr->ndpr_raf_onlink == 0)
1491 1.32 itojun continue;
1492 1.32 itojun
1493 1.32 itojun if ((pr->ndpr_stateflags & NDPRF_DETACHED) != 0 &&
1494 1.32 itojun (pr->ndpr_stateflags & NDPRF_ONLINK) != 0) {
1495 1.32 itojun if ((e = nd6_prefix_offlink(pr)) != 0) {
1496 1.32 itojun nd6log((LOG_ERR,
1497 1.32 itojun "pfxlist_onlink_check: failed to "
1498 1.32 itojun "make %s/%d offlink, errno=%d\n",
1499 1.32 itojun ip6_sprintf(&pr->ndpr_prefix.sin6_addr),
1500 1.32 itojun pr->ndpr_plen, e));
1501 1.2 itojun }
1502 1.2 itojun }
1503 1.32 itojun if ((pr->ndpr_stateflags & NDPRF_DETACHED) == 0 &&
1504 1.32 itojun (pr->ndpr_stateflags & NDPRF_ONLINK) == 0 &&
1505 1.32 itojun pr->ndpr_raf_onlink) {
1506 1.32 itojun if ((e = nd6_prefix_onlink(pr)) != 0) {
1507 1.32 itojun nd6log((LOG_ERR,
1508 1.32 itojun "pfxlist_onlink_check: failed to "
1509 1.32 itojun "make %s/%d offlink, errno=%d\n",
1510 1.32 itojun ip6_sprintf(&pr->ndpr_prefix.sin6_addr),
1511 1.32 itojun pr->ndpr_plen, e));
1512 1.32 itojun }
1513 1.32 itojun }
1514 1.32 itojun }
1515 1.32 itojun
1516 1.32 itojun /*
1517 1.32 itojun * Changes on the prefix status might affect address status as well.
1518 1.32 itojun * Make sure that all addresses derived from an attached prefix are
1519 1.32 itojun * attached, and that all addresses derived from a detached prefix are
1520 1.32 itojun * detached. Note, however, that a manually configured address should
1521 1.32 itojun * always be attached.
1522 1.32 itojun * The precise detection logic is same as the one for prefixes.
1523 1.32 itojun */
1524 1.32 itojun for (ifa = in6_ifaddr; ifa; ifa = ifa->ia_next) {
1525 1.32 itojun if (!(ifa->ia6_flags & IN6_IFF_AUTOCONF))
1526 1.32 itojun continue;
1527 1.32 itojun
1528 1.32 itojun if (ifa->ia6_ndpr == NULL) {
1529 1.32 itojun /*
1530 1.32 itojun * This can happen when we first configure the address
1531 1.32 itojun * (i.e. the address exists, but the prefix does not).
1532 1.32 itojun * XXX: complicated relationships...
1533 1.32 itojun */
1534 1.32 itojun continue;
1535 1.32 itojun }
1536 1.32 itojun
1537 1.32 itojun if (find_pfxlist_reachable_router(ifa->ia6_ndpr))
1538 1.32 itojun break;
1539 1.32 itojun }
1540 1.32 itojun if (ifa) {
1541 1.32 itojun for (ifa = in6_ifaddr; ifa; ifa = ifa->ia_next) {
1542 1.32 itojun if ((ifa->ia6_flags & IN6_IFF_AUTOCONF) == 0)
1543 1.32 itojun continue;
1544 1.32 itojun
1545 1.32 itojun if (ifa->ia6_ndpr == NULL) /* XXX: see above. */
1546 1.32 itojun continue;
1547 1.32 itojun
1548 1.32 itojun if (find_pfxlist_reachable_router(ifa->ia6_ndpr))
1549 1.32 itojun ifa->ia6_flags &= ~IN6_IFF_DETACHED;
1550 1.32 itojun else
1551 1.32 itojun ifa->ia6_flags |= IN6_IFF_DETACHED;
1552 1.2 itojun }
1553 1.2 itojun }
1554 1.2 itojun else {
1555 1.32 itojun for (ifa = in6_ifaddr; ifa; ifa = ifa->ia_next) {
1556 1.32 itojun if ((ifa->ia6_flags & IN6_IFF_AUTOCONF) == 0)
1557 1.32 itojun continue;
1558 1.32 itojun
1559 1.32 itojun ifa->ia6_flags &= ~IN6_IFF_DETACHED;
1560 1.32 itojun }
1561 1.2 itojun }
1562 1.2 itojun }
1563 1.2 itojun
1564 1.32 itojun int
1565 1.32 itojun nd6_prefix_onlink(pr)
1566 1.2 itojun struct nd_prefix *pr;
1567 1.2 itojun {
1568 1.32 itojun struct ifaddr *ifa;
1569 1.32 itojun struct ifnet *ifp = pr->ndpr_ifp;
1570 1.32 itojun struct sockaddr_in6 mask6;
1571 1.32 itojun struct nd_prefix *opr;
1572 1.32 itojun u_long rtflags;
1573 1.32 itojun int error = 0;
1574 1.32 itojun struct rtentry *rt = NULL;
1575 1.32 itojun
1576 1.32 itojun /* sanity check */
1577 1.32 itojun if ((pr->ndpr_stateflags & NDPRF_ONLINK) != 0) {
1578 1.32 itojun nd6log((LOG_ERR,
1579 1.32 itojun "nd6_prefix_onlink: %s/%d is already on-link\n",
1580 1.32 itojun ip6_sprintf(&pr->ndpr_prefix.sin6_addr), pr->ndpr_plen);
1581 1.32 itojun return(EEXIST));
1582 1.32 itojun }
1583 1.32 itojun
1584 1.32 itojun /*
1585 1.32 itojun * Add the interface route associated with the prefix. Before
1586 1.32 itojun * installing the route, check if there's the same prefix on another
1587 1.32 itojun * interface, and the prefix has already installed the interface route.
1588 1.32 itojun * Although such a configuration is expected to be rare, we explicitly
1589 1.32 itojun * allow it.
1590 1.32 itojun */
1591 1.32 itojun for (opr = nd_prefix.lh_first; opr; opr = opr->ndpr_next) {
1592 1.32 itojun if (opr == pr)
1593 1.32 itojun continue;
1594 1.32 itojun
1595 1.32 itojun if ((opr->ndpr_stateflags & NDPRF_ONLINK) == 0)
1596 1.32 itojun continue;
1597 1.32 itojun
1598 1.32 itojun if (opr->ndpr_plen == pr->ndpr_plen &&
1599 1.32 itojun in6_are_prefix_equal(&pr->ndpr_prefix.sin6_addr,
1600 1.32 itojun &opr->ndpr_prefix.sin6_addr, pr->ndpr_plen))
1601 1.32 itojun return(0);
1602 1.32 itojun }
1603 1.32 itojun
1604 1.32 itojun /*
1605 1.32 itojun * We prefer link-local addresses as the associated interface address.
1606 1.32 itojun */
1607 1.32 itojun /* search for a link-local addr */
1608 1.32 itojun ifa = (struct ifaddr *)in6ifa_ifpforlinklocal(ifp,
1609 1.32 itojun IN6_IFF_NOTREADY | IN6_IFF_ANYCAST);
1610 1.32 itojun if (ifa == NULL) {
1611 1.32 itojun /* XXX: freebsd does not have ifa_ifwithaf */
1612 1.32 itojun for (ifa = ifp->if_addrlist.tqh_first;
1613 1.32 itojun ifa;
1614 1.32 itojun ifa = ifa->ifa_list.tqe_next)
1615 1.32 itojun {
1616 1.32 itojun if (ifa->ifa_addr->sa_family == AF_INET6)
1617 1.32 itojun break;
1618 1.32 itojun }
1619 1.32 itojun /* should we care about ia6_flags? */
1620 1.32 itojun }
1621 1.32 itojun if (ifa == NULL) {
1622 1.32 itojun /*
1623 1.32 itojun * This can still happen, when, for example, we receive an RA
1624 1.32 itojun * containing a prefix with the L bit set and the A bit clear,
1625 1.32 itojun * after removing all IPv6 addresses on the receiving
1626 1.32 itojun * interface. This should, of course, be rare though.
1627 1.32 itojun */
1628 1.32 itojun nd6log((LOG_NOTICE,
1629 1.32 itojun "nd6_prefix_onlink: failed to find any ifaddr"
1630 1.32 itojun " to add route for a prefix(%s/%d) on %s\n",
1631 1.32 itojun ip6_sprintf(&pr->ndpr_prefix.sin6_addr),
1632 1.32 itojun pr->ndpr_plen, if_name(ifp)));
1633 1.32 itojun return(0);
1634 1.32 itojun }
1635 1.2 itojun
1636 1.2 itojun /*
1637 1.32 itojun * in6_ifinit() sets nd6_rtrequest to ifa_rtrequest for all ifaddrs.
1638 1.32 itojun * ifa->ifa_rtrequest = nd6_rtrequest;
1639 1.2 itojun */
1640 1.32 itojun bzero(&mask6, sizeof(mask6));
1641 1.32 itojun mask6.sin6_len = sizeof(mask6);
1642 1.32 itojun mask6.sin6_addr = pr->ndpr_mask;
1643 1.32 itojun /* rtrequest() will probably set RTF_UP, but we're not sure. */
1644 1.32 itojun rtflags = ifa->ifa_flags | RTF_UP;
1645 1.32 itojun if (nd6_need_cache(ifp)) {
1646 1.32 itojun /* explicitly set in case ifa_flags does not set the flag. */
1647 1.32 itojun rtflags |= RTF_CLONING;
1648 1.32 itojun } else {
1649 1.32 itojun /*
1650 1.32 itojun * explicitly clear the cloning bit in case ifa_flags sets it.
1651 1.32 itojun */
1652 1.32 itojun rtflags &= ~RTF_CLONING;
1653 1.32 itojun }
1654 1.32 itojun error = rtrequest(RTM_ADD, (struct sockaddr *)&pr->ndpr_prefix,
1655 1.32 itojun ifa->ifa_addr, (struct sockaddr *)&mask6, rtflags, &rt);
1656 1.32 itojun if (error == 0) {
1657 1.32 itojun if (rt != NULL) /* this should be non NULL, though */
1658 1.32 itojun nd6_rtmsg(RTM_ADD, rt);
1659 1.32 itojun pr->ndpr_stateflags |= NDPRF_ONLINK;
1660 1.32 itojun } else {
1661 1.32 itojun nd6log((LOG_ERR, "nd6_prefix_onlink: failed to add route for a"
1662 1.32 itojun " prefix (%s/%d) on %s, gw=%s, mask=%s, flags=%lx "
1663 1.32 itojun "errno = %d\n",
1664 1.32 itojun ip6_sprintf(&pr->ndpr_prefix.sin6_addr),
1665 1.32 itojun pr->ndpr_plen, if_name(ifp),
1666 1.32 itojun ip6_sprintf(&((struct sockaddr_in6 *)ifa->ifa_addr)->sin6_addr),
1667 1.32 itojun ip6_sprintf(&mask6.sin6_addr), rtflags, error));
1668 1.32 itojun }
1669 1.32 itojun
1670 1.32 itojun if (rt != NULL)
1671 1.32 itojun rt->rt_refcnt--;
1672 1.32 itojun
1673 1.32 itojun return(error);
1674 1.32 itojun }
1675 1.32 itojun
1676 1.32 itojun int
1677 1.32 itojun nd6_prefix_offlink(pr)
1678 1.32 itojun struct nd_prefix *pr;
1679 1.32 itojun {
1680 1.32 itojun int error = 0;
1681 1.32 itojun struct ifnet *ifp = pr->ndpr_ifp;
1682 1.32 itojun struct nd_prefix *opr;
1683 1.32 itojun struct sockaddr_in6 sa6, mask6;
1684 1.32 itojun struct rtentry *rt = NULL;
1685 1.32 itojun
1686 1.32 itojun /* sanity check */
1687 1.32 itojun if ((pr->ndpr_stateflags & NDPRF_ONLINK) == 0) {
1688 1.32 itojun nd6log((LOG_ERR,
1689 1.32 itojun "nd6_prefix_offlink: %s/%d is already off-link\n",
1690 1.32 itojun ip6_sprintf(&pr->ndpr_prefix.sin6_addr), pr->ndpr_plen));
1691 1.32 itojun return(EEXIST);
1692 1.32 itojun }
1693 1.32 itojun
1694 1.2 itojun bzero(&sa6, sizeof(sa6));
1695 1.2 itojun sa6.sin6_family = AF_INET6;
1696 1.2 itojun sa6.sin6_len = sizeof(sa6);
1697 1.2 itojun bcopy(&pr->ndpr_prefix.sin6_addr, &sa6.sin6_addr,
1698 1.32 itojun sizeof(struct in6_addr));
1699 1.2 itojun bzero(&mask6, sizeof(mask6));
1700 1.2 itojun mask6.sin6_family = AF_INET6;
1701 1.2 itojun mask6.sin6_len = sizeof(sa6);
1702 1.2 itojun bcopy(&pr->ndpr_mask, &mask6.sin6_addr, sizeof(struct in6_addr));
1703 1.32 itojun error = rtrequest(RTM_DELETE, (struct sockaddr *)&sa6, NULL,
1704 1.32 itojun (struct sockaddr *)&mask6, 0, &rt);
1705 1.32 itojun if (error == 0) {
1706 1.32 itojun pr->ndpr_stateflags &= ~NDPRF_ONLINK;
1707 1.32 itojun
1708 1.32 itojun /* report the route deletion to the routing socket. */
1709 1.32 itojun if (rt != NULL)
1710 1.32 itojun nd6_rtmsg(RTM_DELETE, rt);
1711 1.2 itojun
1712 1.32 itojun /*
1713 1.32 itojun * There might be the same prefix on another interface,
1714 1.32 itojun * the prefix which could not be on-link just because we have
1715 1.32 itojun * the interface route (see comments in nd6_prefix_onlink).
1716 1.32 itojun * If there's one, try to make the prefix on-link on the
1717 1.32 itojun * interface.
1718 1.32 itojun */
1719 1.32 itojun for (opr = nd_prefix.lh_first; opr; opr = opr->ndpr_next) {
1720 1.32 itojun if (opr == pr)
1721 1.32 itojun continue;
1722 1.2 itojun
1723 1.32 itojun if ((opr->ndpr_stateflags & NDPRF_ONLINK) != 0)
1724 1.32 itojun continue;
1725 1.2 itojun
1726 1.32 itojun /*
1727 1.32 itojun * KAME specific: detached prefixes should not be
1728 1.32 itojun * on-link.
1729 1.32 itojun */
1730 1.32 itojun if ((opr->ndpr_stateflags & NDPRF_DETACHED) != 0)
1731 1.32 itojun continue;
1732 1.2 itojun
1733 1.32 itojun if (opr->ndpr_plen == pr->ndpr_plen &&
1734 1.32 itojun in6_are_prefix_equal(&pr->ndpr_prefix.sin6_addr,
1735 1.32 itojun &opr->ndpr_prefix.sin6_addr, pr->ndpr_plen)) {
1736 1.32 itojun int e;
1737 1.32 itojun
1738 1.32 itojun if ((e = nd6_prefix_onlink(opr)) != 0) {
1739 1.32 itojun nd6log((LOG_ERR,
1740 1.32 itojun "nd6_prefix_offlink: failed to "
1741 1.32 itojun "recover a prefix %s/%d from %s "
1742 1.32 itojun "to %s (errno = %d)\n",
1743 1.32 itojun ip6_sprintf(&opr->ndpr_prefix.sin6_addr),
1744 1.32 itojun opr->ndpr_plen, if_name(ifp),
1745 1.32 itojun if_name(opr->ndpr_ifp), e));
1746 1.32 itojun }
1747 1.32 itojun }
1748 1.32 itojun }
1749 1.32 itojun } else {
1750 1.32 itojun /* XXX: can we still set the NDPRF_ONLINK flag? */
1751 1.22 itojun nd6log((LOG_ERR,
1752 1.32 itojun "nd6_prefix_offlink: failed to delete route: "
1753 1.32 itojun "%s/%d on %s (errno = %d)\n",
1754 1.32 itojun ip6_sprintf(&sa6.sin6_addr), pr->ndpr_plen, if_name(ifp),
1755 1.32 itojun error));
1756 1.2 itojun }
1757 1.2 itojun
1758 1.32 itojun if (rt != NULL) {
1759 1.32 itojun if (rt->rt_refcnt <= 0) {
1760 1.32 itojun /* XXX: we should free the entry ourselves. */
1761 1.32 itojun rt->rt_refcnt++;
1762 1.32 itojun rtfree(rt);
1763 1.2 itojun }
1764 1.2 itojun }
1765 1.2 itojun
1766 1.32 itojun return(error);
1767 1.2 itojun }
1768 1.2 itojun
1769 1.2 itojun static struct in6_ifaddr *
1770 1.32 itojun in6_ifadd(pr)
1771 1.32 itojun struct nd_prefix *pr;
1772 1.2 itojun {
1773 1.32 itojun struct ifnet *ifp = pr->ndpr_ifp;
1774 1.2 itojun struct ifaddr *ifa;
1775 1.32 itojun struct in6_aliasreq ifra;
1776 1.32 itojun struct in6_ifaddr *ia, *ib;
1777 1.32 itojun int error, plen0;
1778 1.2 itojun struct in6_addr mask;
1779 1.32 itojun int prefixlen = pr->ndpr_plen;
1780 1.2 itojun
1781 1.31 itojun in6_prefixlen2mask(&mask, prefixlen);
1782 1.2 itojun
1783 1.32 itojun /*
1784 1.32 itojun * find a link-local address (will be interface ID).
1785 1.32 itojun * Is it really mandatory? Theoretically, a global or a site-local
1786 1.32 itojun * address can be configured without a link-local address, if we
1787 1.32 itojun * have a unique interface identifier...
1788 1.32 itojun *
1789 1.32 itojun * it is not mandatory to have a link-local address, we can generate
1790 1.32 itojun * interface identifier on the fly. we do this because:
1791 1.32 itojun * (1) it should be the easiest way to find interface identifier.
1792 1.32 itojun * (2) RFC2462 5.4 suggesting the use of the same interface identifier
1793 1.32 itojun * for multiple addresses on a single interface, and possible shortcut
1794 1.32 itojun * of DAD. we omitted DAD for this reason in the past.
1795 1.32 itojun * (3) a user can prevent autoconfiguration of global address
1796 1.32 itojun * by removing link-local address by hand (this is partly because we
1797 1.32 itojun * don't have other way to control the use of IPv6 on a interface.
1798 1.32 itojun * this has been our design choice - cf. NRL's "ifconfig auto").
1799 1.32 itojun * (4) it is easier to manage when an interface has addresses
1800 1.32 itojun * with the same interface identifier, than to have multiple addresses
1801 1.32 itojun * with different interface identifiers.
1802 1.32 itojun */
1803 1.32 itojun ifa = (struct ifaddr *)in6ifa_ifpforlinklocal(ifp, 0); /* 0 is OK? */
1804 1.2 itojun if (ifa)
1805 1.2 itojun ib = (struct in6_ifaddr *)ifa;
1806 1.2 itojun else
1807 1.2 itojun return NULL;
1808 1.2 itojun
1809 1.2 itojun #if 0 /* don't care link local addr state, and always do DAD */
1810 1.2 itojun /* if link-local address is not eligible, do not autoconfigure. */
1811 1.2 itojun if (((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_NOTREADY) {
1812 1.2 itojun printf("in6_ifadd: link-local address not ready\n");
1813 1.2 itojun return NULL;
1814 1.2 itojun }
1815 1.2 itojun #endif
1816 1.2 itojun
1817 1.2 itojun /* prefixlen + ifidlen must be equal to 128 */
1818 1.32 itojun plen0 = in6_mask2len(&ib->ia_prefixmask.sin6_addr, NULL);
1819 1.32 itojun if (prefixlen != plen0) {
1820 1.22 itojun nd6log((LOG_ERR, "in6_ifadd: wrong prefixlen for %s"
1821 1.32 itojun "(prefix=%d ifid=%d)\n",
1822 1.32 itojun if_name(ifp), prefixlen, 128 - plen0));
1823 1.2 itojun return NULL;
1824 1.2 itojun }
1825 1.2 itojun
1826 1.2 itojun /* make ifaddr */
1827 1.2 itojun
1828 1.32 itojun bzero(&ifra, sizeof(ifra));
1829 1.32 itojun /*
1830 1.32 itojun * in6_update_ifa() does not use ifra_name, but we accurately set it
1831 1.32 itojun * for safety.
1832 1.32 itojun */
1833 1.32 itojun strncpy(ifra.ifra_name, if_name(ifp), sizeof(ifra.ifra_name));
1834 1.32 itojun ifra.ifra_addr.sin6_family = AF_INET6;
1835 1.32 itojun ifra.ifra_addr.sin6_len = sizeof(struct sockaddr_in6);
1836 1.32 itojun /* prefix */
1837 1.32 itojun bcopy(&pr->ndpr_prefix.sin6_addr, &ifra.ifra_addr.sin6_addr,
1838 1.32 itojun sizeof(ifra.ifra_addr.sin6_addr));
1839 1.32 itojun ifra.ifra_addr.sin6_addr.s6_addr32[0] &= mask.s6_addr32[0];
1840 1.32 itojun ifra.ifra_addr.sin6_addr.s6_addr32[1] &= mask.s6_addr32[1];
1841 1.32 itojun ifra.ifra_addr.sin6_addr.s6_addr32[2] &= mask.s6_addr32[2];
1842 1.32 itojun ifra.ifra_addr.sin6_addr.s6_addr32[3] &= mask.s6_addr32[3];
1843 1.2 itojun
1844 1.2 itojun /* interface ID */
1845 1.32 itojun ifra.ifra_addr.sin6_addr.s6_addr32[0] |=
1846 1.32 itojun (ib->ia_addr.sin6_addr.s6_addr32[0] & ~mask.s6_addr32[0]);
1847 1.32 itojun ifra.ifra_addr.sin6_addr.s6_addr32[1] |=
1848 1.32 itojun (ib->ia_addr.sin6_addr.s6_addr32[1] & ~mask.s6_addr32[1]);
1849 1.32 itojun ifra.ifra_addr.sin6_addr.s6_addr32[2] |=
1850 1.32 itojun (ib->ia_addr.sin6_addr.s6_addr32[2] & ~mask.s6_addr32[2]);
1851 1.32 itojun ifra.ifra_addr.sin6_addr.s6_addr32[3] |=
1852 1.32 itojun (ib->ia_addr.sin6_addr.s6_addr32[3] & ~mask.s6_addr32[3]);
1853 1.32 itojun
1854 1.32 itojun /* new prefix mask. */
1855 1.32 itojun ifra.ifra_prefixmask.sin6_len = sizeof(struct sockaddr_in6);
1856 1.32 itojun ifra.ifra_prefixmask.sin6_family = AF_INET6;
1857 1.32 itojun bcopy(&mask, &ifra.ifra_prefixmask.sin6_addr,
1858 1.32 itojun sizeof(ifra.ifra_prefixmask.sin6_addr));
1859 1.2 itojun
1860 1.2 itojun /*
1861 1.32 itojun * lifetime.
1862 1.32 itojun * XXX: in6_init_address_ltimes would override these values later.
1863 1.32 itojun * We should reconsider this logic.
1864 1.2 itojun */
1865 1.32 itojun ifra.ifra_lifetime.ia6t_vltime = pr->ndpr_vltime;
1866 1.32 itojun ifra.ifra_lifetime.ia6t_pltime = pr->ndpr_pltime;
1867 1.2 itojun
1868 1.32 itojun /* XXX: scope zone ID? */
1869 1.2 itojun
1870 1.32 itojun ifra.ifra_flags |= IN6_IFF_AUTOCONF; /* obey autoconf */
1871 1.2 itojun
1872 1.32 itojun /* allocate ifaddr structure, link into chain, etc. */
1873 1.32 itojun if ((error = in6_update_ifa(ifp, &ifra, NULL)) != 0) {
1874 1.32 itojun nd6log((LOG_ERR,
1875 1.32 itojun "in6_ifadd: failed to make ifaddr %s on %s (errno=%d)\n",
1876 1.32 itojun ip6_sprintf(&ifra.ifra_addr.sin6_addr), if_name(ifp),
1877 1.32 itojun error));
1878 1.32 itojun return(NULL); /* ifaddr must not have been allocated. */
1879 1.32 itojun }
1880 1.2 itojun
1881 1.32 itojun ia = in6ifa_ifpwithaddr(ifp, &ifra.ifra_addr.sin6_addr);
1882 1.2 itojun
1883 1.32 itojun return(ia); /* this is always non-NULL */
1884 1.2 itojun }
1885 1.2 itojun
1886 1.2 itojun int
1887 1.2 itojun in6_init_prefix_ltimes(struct nd_prefix *ndpr)
1888 1.2 itojun {
1889 1.7 itojun long time_second = time.tv_sec;
1890 1.7 itojun
1891 1.26 itojun /* check if preferred lifetime > valid lifetime. RFC2462 5.5.3 (c) */
1892 1.2 itojun if (ndpr->ndpr_pltime > ndpr->ndpr_vltime) {
1893 1.22 itojun nd6log((LOG_INFO, "in6_init_prefix_ltimes: preferred lifetime"
1894 1.2 itojun "(%d) is greater than valid lifetime(%d)\n",
1895 1.22 itojun (u_int)ndpr->ndpr_pltime, (u_int)ndpr->ndpr_vltime));
1896 1.2 itojun return (EINVAL);
1897 1.2 itojun }
1898 1.7 itojun if (ndpr->ndpr_pltime == ND6_INFINITE_LIFETIME)
1899 1.2 itojun ndpr->ndpr_preferred = 0;
1900 1.2 itojun else
1901 1.2 itojun ndpr->ndpr_preferred = time_second + ndpr->ndpr_pltime;
1902 1.7 itojun if (ndpr->ndpr_vltime == ND6_INFINITE_LIFETIME)
1903 1.2 itojun ndpr->ndpr_expire = 0;
1904 1.2 itojun else
1905 1.2 itojun ndpr->ndpr_expire = time_second + ndpr->ndpr_vltime;
1906 1.2 itojun
1907 1.2 itojun return 0;
1908 1.2 itojun }
1909 1.2 itojun
1910 1.2 itojun static void
1911 1.32 itojun in6_init_address_ltimes(struct nd_prefix *new, struct in6_addrlifetime *lt6)
1912 1.2 itojun {
1913 1.7 itojun long time_second = time.tv_sec;
1914 1.7 itojun
1915 1.7 itojun /* Valid lifetime must not be updated unless explicitly specified. */
1916 1.32 itojun /* init ia6t_expire */
1917 1.32 itojun if (lt6->ia6t_vltime == ND6_INFINITE_LIFETIME)
1918 1.32 itojun lt6->ia6t_expire = 0;
1919 1.32 itojun else {
1920 1.32 itojun lt6->ia6t_expire = time_second;
1921 1.32 itojun lt6->ia6t_expire += lt6->ia6t_vltime;
1922 1.2 itojun }
1923 1.7 itojun
1924 1.2 itojun /* init ia6t_preferred */
1925 1.7 itojun if (lt6->ia6t_pltime == ND6_INFINITE_LIFETIME)
1926 1.2 itojun lt6->ia6t_preferred = 0;
1927 1.2 itojun else {
1928 1.2 itojun lt6->ia6t_preferred = time_second;
1929 1.2 itojun lt6->ia6t_preferred += lt6->ia6t_pltime;
1930 1.2 itojun }
1931 1.2 itojun }
1932 1.2 itojun
1933 1.2 itojun /*
1934 1.2 itojun * Delete all the routing table entries that use the specified gateway.
1935 1.2 itojun * XXX: this function causes search through all entries of routing table, so
1936 1.16 itojun * it shouldn't be called when acting as a router.
1937 1.2 itojun */
1938 1.2 itojun void
1939 1.2 itojun rt6_flush(gateway, ifp)
1940 1.26 itojun struct in6_addr *gateway;
1941 1.26 itojun struct ifnet *ifp;
1942 1.2 itojun {
1943 1.2 itojun struct radix_node_head *rnh = rt_tables[AF_INET6];
1944 1.4 itojun int s = splsoftnet();
1945 1.2 itojun
1946 1.2 itojun /* We'll care only link-local addresses */
1947 1.2 itojun if (!IN6_IS_ADDR_LINKLOCAL(gateway)) {
1948 1.2 itojun splx(s);
1949 1.2 itojun return;
1950 1.2 itojun }
1951 1.2 itojun /* XXX: hack for KAME's link-local address kludge */
1952 1.2 itojun gateway->s6_addr16[1] = htons(ifp->if_index);
1953 1.2 itojun
1954 1.2 itojun rnh->rnh_walktree(rnh, rt6_deleteroute, (void *)gateway);
1955 1.2 itojun splx(s);
1956 1.2 itojun }
1957 1.2 itojun
1958 1.2 itojun static int
1959 1.2 itojun rt6_deleteroute(rn, arg)
1960 1.2 itojun struct radix_node *rn;
1961 1.2 itojun void *arg;
1962 1.2 itojun {
1963 1.2 itojun #define SIN6(s) ((struct sockaddr_in6 *)s)
1964 1.2 itojun struct rtentry *rt = (struct rtentry *)rn;
1965 1.2 itojun struct in6_addr *gate = (struct in6_addr *)arg;
1966 1.2 itojun
1967 1.2 itojun if (rt->rt_gateway == NULL || rt->rt_gateway->sa_family != AF_INET6)
1968 1.2 itojun return(0);
1969 1.2 itojun
1970 1.2 itojun if (!IN6_ARE_ADDR_EQUAL(gate, &SIN6(rt->rt_gateway)->sin6_addr))
1971 1.2 itojun return(0);
1972 1.2 itojun
1973 1.2 itojun /*
1974 1.26 itojun * Do not delete a static route.
1975 1.26 itojun * XXX: this seems to be a bit ad-hoc. Should we consider the
1976 1.26 itojun * 'cloned' bit instead?
1977 1.26 itojun */
1978 1.26 itojun if ((rt->rt_flags & RTF_STATIC) != 0)
1979 1.26 itojun return(0);
1980 1.26 itojun
1981 1.26 itojun /*
1982 1.32 itojun * Do not delete a static route.
1983 1.32 itojun * XXX: this seems to be a bit ad-hoc. Should we consider the
1984 1.32 itojun * 'cloned' bit instead?
1985 1.32 itojun */
1986 1.32 itojun if ((rt->rt_flags & RTF_STATIC) != 0)
1987 1.32 itojun return(0);
1988 1.32 itojun
1989 1.32 itojun /*
1990 1.2 itojun * We delete only host route. This means, in particular, we don't
1991 1.2 itojun * delete default route.
1992 1.2 itojun */
1993 1.2 itojun if ((rt->rt_flags & RTF_HOST) == 0)
1994 1.2 itojun return(0);
1995 1.2 itojun
1996 1.32 itojun return(rtrequest(RTM_DELETE, rt_key(rt), rt->rt_gateway,
1997 1.32 itojun rt_mask(rt), rt->rt_flags, 0));
1998 1.2 itojun #undef SIN6
1999 1.2 itojun }
2000 1.7 itojun
2001 1.7 itojun int
2002 1.7 itojun nd6_setdefaultiface(ifindex)
2003 1.7 itojun int ifindex;
2004 1.7 itojun {
2005 1.7 itojun int error = 0;
2006 1.7 itojun
2007 1.7 itojun if (ifindex < 0 || if_index < ifindex)
2008 1.7 itojun return(EINVAL);
2009 1.7 itojun
2010 1.7 itojun if (nd6_defifindex != ifindex) {
2011 1.7 itojun nd6_defifindex = ifindex;
2012 1.26 itojun if (nd6_defifindex > 0) {
2013 1.7 itojun nd6_defifp = ifindex2ifnet[nd6_defifindex];
2014 1.26 itojun } else
2015 1.7 itojun nd6_defifp = NULL;
2016 1.7 itojun
2017 1.7 itojun /*
2018 1.32 itojun * Rescan default router list, refresh default route(s).
2019 1.7 itojun */
2020 1.32 itojun defrouter_select();
2021 1.7 itojun }
2022 1.7 itojun
2023 1.7 itojun return(error);
2024 1.7 itojun }
2025