config.c revision 1.7 1 1.7 itojun /* $NetBSD: config.c,v 1.7 2000/05/23 11:37:58 itojun Exp $ */
2 1.7 itojun /* $KAME: config.c,v 1.12 2000/05/22 22:23:07 itojun Exp $ */
3 1.3 itojun
4 1.1 itojun /*
5 1.1 itojun * Copyright (C) 1998 WIDE Project.
6 1.1 itojun * All rights reserved.
7 1.1 itojun *
8 1.1 itojun * Redistribution and use in source and binary forms, with or without
9 1.1 itojun * modification, are permitted provided that the following conditions
10 1.1 itojun * are met:
11 1.1 itojun * 1. Redistributions of source code must retain the above copyright
12 1.1 itojun * notice, this list of conditions and the following disclaimer.
13 1.1 itojun * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 itojun * notice, this list of conditions and the following disclaimer in the
15 1.1 itojun * documentation and/or other materials provided with the distribution.
16 1.1 itojun * 3. Neither the name of the project nor the names of its contributors
17 1.1 itojun * may be used to endorse or promote products derived from this software
18 1.1 itojun * without specific prior written permission.
19 1.1 itojun *
20 1.1 itojun * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
21 1.1 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 1.1 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 1.1 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
24 1.1 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 1.1 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 1.1 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 1.1 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 1.1 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 1.1 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 1.1 itojun * SUCH DAMAGE.
31 1.1 itojun */
32 1.1 itojun
33 1.1 itojun #include <sys/param.h>
34 1.1 itojun #include <sys/ioctl.h>
35 1.1 itojun #include <sys/socket.h>
36 1.1 itojun #include <sys/time.h>
37 1.1 itojun
38 1.1 itojun #include <net/if.h>
39 1.1 itojun #if defined(__FreeBSD__) && __FreeBSD__ >= 3
40 1.1 itojun #include <net/if_var.h>
41 1.1 itojun #endif /* __FreeBSD__ >= 3 */
42 1.1 itojun #include <net/route.h>
43 1.1 itojun #include <net/if_dl.h>
44 1.1 itojun
45 1.1 itojun #include <netinet/in.h>
46 1.1 itojun #include <netinet/in_var.h>
47 1.5 itojun #include <netinet/ip6.h>
48 1.1 itojun #include <netinet6/ip6_var.h>
49 1.5 itojun #include <netinet/icmp6.h>
50 1.6 itojun #ifdef MIP6
51 1.6 itojun #include <netinet6/mip6.h>
52 1.6 itojun #endif
53 1.1 itojun
54 1.1 itojun #include <arpa/inet.h>
55 1.1 itojun
56 1.1 itojun #include <stdio.h>
57 1.1 itojun #include <syslog.h>
58 1.1 itojun #include <errno.h>
59 1.1 itojun #include <string.h>
60 1.1 itojun #include <stdlib.h>
61 1.7 itojun #if defined(__NetBSD__) || defined(__OpenBSD__)
62 1.1 itojun #include <search.h>
63 1.1 itojun #endif
64 1.1 itojun #include <unistd.h>
65 1.1 itojun
66 1.1 itojun #include "rtadvd.h"
67 1.1 itojun #include "advcap.h"
68 1.1 itojun #include "timer.h"
69 1.1 itojun #include "if.h"
70 1.1 itojun #include "config.h"
71 1.1 itojun
72 1.1 itojun static void makeentry __P((char *, int, char *, int));
73 1.1 itojun static void get_prefix __P((struct rainfo *));
74 1.1 itojun
75 1.1 itojun extern struct rainfo *ralist;
76 1.1 itojun
77 1.1 itojun void
78 1.1 itojun getconfig(intface)
79 1.1 itojun char *intface;
80 1.1 itojun {
81 1.1 itojun int stat, pfxs, i;
82 1.1 itojun char tbuf[BUFSIZ];
83 1.1 itojun struct rainfo *tmp;
84 1.2 itojun long val;
85 1.1 itojun char buf[BUFSIZ];
86 1.1 itojun char *bp = buf;
87 1.1 itojun char *addr;
88 1.1 itojun
89 1.1 itojun #define MUSTHAVE(var, cap) \
90 1.6 itojun do { \
91 1.1 itojun int t; \
92 1.1 itojun if ((t = agetnum(cap)) < 0) { \
93 1.1 itojun fprintf(stderr, "rtadvd: need %s for interface %s\n", \
94 1.1 itojun cap, intface); \
95 1.1 itojun exit(1); \
96 1.1 itojun } \
97 1.1 itojun var = t; \
98 1.6 itojun } while (0)
99 1.1 itojun #define MAYHAVE(var, cap, def) \
100 1.6 itojun do { \
101 1.1 itojun if ((var = agetnum(cap)) < 0) \
102 1.1 itojun var = def; \
103 1.6 itojun } while (0)
104 1.1 itojun
105 1.1 itojun if ((stat = agetent(tbuf, intface)) <= 0) {
106 1.1 itojun memset(tbuf, 0, sizeof(tbuf));
107 1.1 itojun syslog(LOG_INFO,
108 1.1 itojun "<%s> %s isn't defined in the configuration file"
109 1.1 itojun " or the configuration file doesn't exist."
110 1.1 itojun " Treat it as default",
111 1.1 itojun __FUNCTION__, intface);
112 1.1 itojun }
113 1.1 itojun
114 1.1 itojun tmp = (struct rainfo *)malloc(sizeof(*ralist));
115 1.1 itojun memset(tmp, 0, sizeof(*tmp));
116 1.1 itojun tmp->prefix.next = tmp->prefix.prev = &tmp->prefix;
117 1.1 itojun
118 1.1 itojun /* get interface information */
119 1.1 itojun if (agetflag("nolladdr"))
120 1.1 itojun tmp->advlinkopt = 0;
121 1.1 itojun else
122 1.1 itojun tmp->advlinkopt = 1;
123 1.1 itojun if (tmp->advlinkopt) {
124 1.1 itojun if ((tmp->sdl = if_nametosdl(intface)) == NULL) {
125 1.1 itojun syslog(LOG_ERR,
126 1.1 itojun "<%s> can't get information of %s",
127 1.1 itojun __FUNCTION__, intface);
128 1.1 itojun exit(1);
129 1.1 itojun }
130 1.1 itojun tmp->ifindex = tmp->sdl->sdl_index;
131 1.1 itojun } else
132 1.1 itojun tmp->ifindex = if_nametoindex(intface);
133 1.1 itojun strncpy(tmp->ifname, intface, sizeof(tmp->ifname));
134 1.1 itojun if ((tmp->phymtu = if_getmtu(intface)) == 0) {
135 1.1 itojun tmp->phymtu = IPV6_MMTU;
136 1.1 itojun syslog(LOG_WARNING,
137 1.1 itojun "<%s> can't get interface mtu of %s. Treat as %d",
138 1.1 itojun __FUNCTION__, intface, IPV6_MMTU);
139 1.1 itojun }
140 1.1 itojun
141 1.1 itojun /*
142 1.1 itojun * set router configuration variables.
143 1.1 itojun */
144 1.2 itojun MAYHAVE(val, "maxinterval", DEF_MAXRTRADVINTERVAL);
145 1.2 itojun if (val < MIN_MAXINTERVAL || val > MAX_MAXINTERVAL) {
146 1.1 itojun syslog(LOG_ERR,
147 1.6 itojun "<%s> maxinterval must be between %e and %u",
148 1.1 itojun __FUNCTION__, MIN_MAXINTERVAL, MAX_MAXINTERVAL);
149 1.1 itojun exit(1);
150 1.1 itojun }
151 1.2 itojun tmp->maxinterval = (u_int)val;
152 1.2 itojun MAYHAVE(val, "mininterval", tmp->maxinterval/3);
153 1.2 itojun if (val < MIN_MININTERVAL || val > (tmp->maxinterval * 3) / 4) {
154 1.1 itojun syslog(LOG_ERR,
155 1.6 itojun "<%s> mininterval must be between %e and %d",
156 1.1 itojun __FUNCTION__,
157 1.1 itojun MIN_MININTERVAL,
158 1.1 itojun (tmp->maxinterval * 3) / 4);
159 1.1 itojun exit(1);
160 1.1 itojun }
161 1.2 itojun tmp->mininterval = (u_int)val;
162 1.1 itojun
163 1.2 itojun MAYHAVE(val, "chlim", DEF_ADVCURHOPLIMIT);
164 1.2 itojun tmp->hoplimit = val & 0xff;
165 1.1 itojun
166 1.2 itojun MAYHAVE(val, "raflags", 0);
167 1.2 itojun tmp->managedflg= val & ND_RA_FLAG_MANAGED;
168 1.2 itojun tmp->otherflg = val & ND_RA_FLAG_OTHER;
169 1.6 itojun #ifdef MIP6
170 1.6 itojun if (mobileip6)
171 1.6 itojun tmp->haflg = val & ND_RA_FLAG_HA;
172 1.6 itojun #endif
173 1.2 itojun
174 1.2 itojun MAYHAVE(val, "rltime", tmp->maxinterval * 3);
175 1.2 itojun if (val && (val < tmp->maxinterval || val > MAXROUTERLIFETIME)) {
176 1.1 itojun syslog(LOG_ERR,
177 1.1 itojun "<%s> router lifetime on %s must be 0 or"
178 1.1 itojun " between %d and %d",
179 1.1 itojun __FUNCTION__, intface,
180 1.1 itojun tmp->maxinterval, MAXROUTERLIFETIME);
181 1.1 itojun exit(1);
182 1.1 itojun }
183 1.2 itojun tmp->lifetime = val & 0xffff;
184 1.1 itojun
185 1.2 itojun MAYHAVE(val, "rtime", DEF_ADVREACHABLETIME);
186 1.2 itojun if (val > MAXREACHABLETIME) {
187 1.1 itojun syslog(LOG_ERR,
188 1.1 itojun "<%s> reachable time must be no greater than %d",
189 1.1 itojun __FUNCTION__, MAXREACHABLETIME);
190 1.1 itojun exit(1);
191 1.1 itojun }
192 1.2 itojun tmp->reachabletime = (u_int32_t)val;
193 1.1 itojun
194 1.2 itojun MAYHAVE(val, "retrans", DEF_ADVRETRANSTIMER);
195 1.2 itojun if (val < 0 || val > 0xffffffff) {
196 1.2 itojun syslog(LOG_ERR,
197 1.2 itojun "<%s> retrans time out of range", __FUNCTION__);
198 1.2 itojun exit(1);
199 1.2 itojun }
200 1.2 itojun tmp->retranstimer = (u_int32_t)val;
201 1.1 itojun
202 1.6 itojun #ifdef MIP6
203 1.6 itojun if (!mobileip6)
204 1.6 itojun #else
205 1.6 itojun if (1)
206 1.6 itojun #endif
207 1.6 itojun {
208 1.6 itojun if (agetstr("hapref", &bp) || agetstr("hatime", &bp)) {
209 1.6 itojun syslog(LOG_ERR,
210 1.6 itojun "<%s> mobile-ip6 configuration without "
211 1.6 itojun "proper command line option",
212 1.6 itojun __FUNCTION__);
213 1.6 itojun exit(1);
214 1.6 itojun }
215 1.6 itojun }
216 1.6 itojun #ifdef MIP6
217 1.6 itojun else {
218 1.6 itojun tmp->hapref = 0;
219 1.6 itojun if ((val = agetnum("hapref")) >= 0)
220 1.6 itojun tmp->hapref = (int16_t)val;
221 1.6 itojun if (tmp->hapref != 0) {
222 1.6 itojun tmp->hatime = 0;
223 1.6 itojun MUSTHAVE(val, "hatime");
224 1.6 itojun tmp->hatime = (u_int16_t)val;
225 1.6 itojun if (tmp->hatime <= 0) {
226 1.6 itojun syslog(LOG_ERR,
227 1.6 itojun "<%s> home agent lifetime must be greater than 0",
228 1.6 itojun __FUNCTION__);
229 1.6 itojun exit(1);
230 1.6 itojun }
231 1.6 itojun }
232 1.6 itojun }
233 1.6 itojun #endif
234 1.6 itojun
235 1.1 itojun /* prefix information */
236 1.1 itojun if ((pfxs = agetnum("addrs")) < 0) {
237 1.1 itojun /* auto configure prefix information */
238 1.1 itojun if (agetstr("addr", &bp) || agetstr("addr1", &bp)) {
239 1.1 itojun syslog(LOG_ERR,
240 1.1 itojun "<%s> conflicting prefix configuration for %s: "
241 1.1 itojun "automatic and manual config at the same time",
242 1.1 itojun __FUNCTION__, intface);
243 1.1 itojun exit(1);
244 1.1 itojun }
245 1.1 itojun get_prefix(tmp);
246 1.1 itojun }
247 1.1 itojun else {
248 1.1 itojun tmp->pfxs = pfxs;
249 1.1 itojun for (i = 0; i < pfxs; i++) {
250 1.1 itojun struct prefix *pfx;
251 1.1 itojun char entbuf[256];
252 1.1 itojun int added = (pfxs > 1) ? 1 : 0;
253 1.1 itojun
254 1.1 itojun /* allocate memory to store prefix information */
255 1.1 itojun if ((pfx = malloc(sizeof(struct prefix))) == NULL) {
256 1.1 itojun syslog(LOG_ERR,
257 1.1 itojun "<%s> can't allocate enough memory",
258 1.1 itojun __FUNCTION__);
259 1.1 itojun exit(1);
260 1.1 itojun }
261 1.1 itojun /* link into chain */
262 1.1 itojun insque(pfx, &tmp->prefix);
263 1.1 itojun
264 1.7 itojun pfx->origin = PREFIX_FROM_CONFIG;
265 1.7 itojun
266 1.1 itojun makeentry(entbuf, i, "prefixlen", added);
267 1.2 itojun MAYHAVE(val, entbuf, 64);
268 1.2 itojun if (val < 0 || val > 128) {
269 1.2 itojun syslog(LOG_ERR,
270 1.2 itojun "<%s> prefixlen out of range",
271 1.2 itojun __FUNCTION__);
272 1.2 itojun exit(1);
273 1.2 itojun }
274 1.2 itojun pfx->prefixlen = (int)val;
275 1.1 itojun
276 1.1 itojun makeentry(entbuf, i, "pinfoflags", added);
277 1.6 itojun #ifdef MIP6
278 1.6 itojun if (mobileip6)
279 1.6 itojun {
280 1.6 itojun MAYHAVE(val, entbuf,
281 1.6 itojun (ND_OPT_PI_FLAG_ONLINK|ND_OPT_PI_FLAG_AUTO|
282 1.6 itojun ND_OPT_PI_FLAG_RTADDR));
283 1.6 itojun } else
284 1.6 itojun #endif
285 1.6 itojun {
286 1.6 itojun MAYHAVE(val, entbuf,
287 1.6 itojun (ND_OPT_PI_FLAG_ONLINK|ND_OPT_PI_FLAG_AUTO));
288 1.6 itojun }
289 1.2 itojun pfx->onlinkflg = val & ND_OPT_PI_FLAG_ONLINK;
290 1.2 itojun pfx->autoconfflg = val & ND_OPT_PI_FLAG_AUTO;
291 1.6 itojun #ifdef MIP6
292 1.6 itojun if (mobileip6)
293 1.6 itojun pfx->routeraddr = val & ND_OPT_PI_FLAG_RTADDR;
294 1.6 itojun #endif
295 1.1 itojun
296 1.1 itojun makeentry(entbuf, i, "vltime", added);
297 1.2 itojun MAYHAVE(val, entbuf, DEF_ADVVALIDLIFETIME);
298 1.2 itojun if (val < 0 || val > 0xffffffff) {
299 1.2 itojun syslog(LOG_ERR,
300 1.2 itojun "<%s> vltime out of range",
301 1.2 itojun __FUNCTION__);
302 1.2 itojun exit(1);
303 1.2 itojun }
304 1.2 itojun pfx->validlifetime = (u_int32_t)val;
305 1.1 itojun
306 1.1 itojun makeentry(entbuf, i, "pltime", added);
307 1.2 itojun MAYHAVE(val, entbuf, DEF_ADVPREFERREDLIFETIME);
308 1.2 itojun if (val < 0 || val > 0xffffffff) {
309 1.2 itojun syslog(LOG_ERR,
310 1.2 itojun "<%s> pltime out of range",
311 1.2 itojun __FUNCTION__);
312 1.2 itojun exit(1);
313 1.2 itojun }
314 1.2 itojun pfx->preflifetime = (u_int32_t)val;
315 1.1 itojun
316 1.1 itojun makeentry(entbuf, i, "addr", added);
317 1.1 itojun addr = (char *)agetstr(entbuf, &bp);
318 1.1 itojun if (addr == NULL) {
319 1.1 itojun syslog(LOG_ERR,
320 1.1 itojun "<%s> need %s as an prefix for "
321 1.1 itojun "interface %s",
322 1.1 itojun __FUNCTION__, entbuf, intface);
323 1.1 itojun exit(1);
324 1.1 itojun }
325 1.1 itojun if (inet_pton(AF_INET6, addr,
326 1.1 itojun &pfx->prefix) != 1) {
327 1.1 itojun syslog(LOG_ERR,
328 1.1 itojun "<%s> inet_pton failed for %s",
329 1.1 itojun __FUNCTION__, addr);
330 1.1 itojun exit(1);
331 1.1 itojun }
332 1.1 itojun if (IN6_IS_ADDR_MULTICAST(&pfx->prefix)) {
333 1.1 itojun syslog(LOG_ERR,
334 1.1 itojun "<%s> multicast prefix(%s) must "
335 1.1 itojun "not be advertised (IF=%s)",
336 1.1 itojun __FUNCTION__, addr, intface);
337 1.1 itojun exit(1);
338 1.1 itojun }
339 1.1 itojun if (IN6_IS_ADDR_LINKLOCAL(&pfx->prefix))
340 1.1 itojun syslog(LOG_NOTICE,
341 1.1 itojun "<%s> link-local prefix(%s) will be"
342 1.1 itojun " advertised on %s",
343 1.1 itojun __FUNCTION__, addr, intface);
344 1.1 itojun }
345 1.1 itojun }
346 1.1 itojun
347 1.2 itojun MAYHAVE(val, "mtu", 0);
348 1.2 itojun if (val < 0 || val > 0xffffffff) {
349 1.2 itojun syslog(LOG_ERR,
350 1.2 itojun "<%s> mtu out of range", __FUNCTION__);
351 1.2 itojun exit(1);
352 1.2 itojun }
353 1.2 itojun tmp->linkmtu = (u_int32_t)val;
354 1.1 itojun if (tmp->linkmtu == 0) {
355 1.1 itojun char *mtustr;
356 1.1 itojun
357 1.1 itojun if ((mtustr = (char *)agetstr("mtu", &bp)) &&
358 1.1 itojun strcmp(mtustr, "auto") == 0)
359 1.1 itojun tmp->linkmtu = tmp->phymtu;
360 1.1 itojun }
361 1.1 itojun else if (tmp->linkmtu < IPV6_MMTU || tmp->linkmtu > tmp->phymtu) {
362 1.1 itojun syslog(LOG_ERR,
363 1.1 itojun "<%s> advertised link mtu must be between"
364 1.1 itojun " least MTU and physical link MTU",
365 1.1 itojun __FUNCTION__);
366 1.1 itojun exit(1);
367 1.1 itojun }
368 1.1 itojun
369 1.1 itojun /* okey */
370 1.1 itojun tmp->next = ralist;
371 1.1 itojun ralist = tmp;
372 1.1 itojun
373 1.1 itojun /* construct the sending packet */
374 1.1 itojun make_packet(tmp);
375 1.1 itojun
376 1.1 itojun /* set timer */
377 1.1 itojun tmp->timer = rtadvd_add_timer(ra_timeout, ra_timer_update,
378 1.1 itojun tmp, tmp);
379 1.1 itojun ra_timer_update((void *)tmp, &tmp->timer->tm);
380 1.1 itojun rtadvd_set_timer(&tmp->timer->tm, tmp->timer);
381 1.1 itojun }
382 1.1 itojun
383 1.1 itojun static void
384 1.1 itojun get_prefix(struct rainfo *rai)
385 1.1 itojun {
386 1.3 itojun size_t len;
387 1.1 itojun u_char *buf, *lim, *next;
388 1.1 itojun u_char ntopbuf[INET6_ADDRSTRLEN];
389 1.1 itojun
390 1.1 itojun if ((len = rtbuf_len()) < 0) {
391 1.1 itojun syslog(LOG_ERR,
392 1.1 itojun "<%s> can't get buffer length for routing info",
393 1.1 itojun __FUNCTION__);
394 1.1 itojun exit(1);
395 1.1 itojun }
396 1.1 itojun if ((buf = malloc(len)) == NULL) {
397 1.1 itojun syslog(LOG_ERR,
398 1.1 itojun "<%s> can't allocate buffer", __FUNCTION__);
399 1.1 itojun exit(1);
400 1.1 itojun }
401 1.1 itojun if (get_rtinfo(buf, &len) < 0) {
402 1.1 itojun syslog(LOG_ERR,
403 1.1 itojun "<%s> can't get routing inforamtion", __FUNCTION__);
404 1.1 itojun exit(1);
405 1.1 itojun }
406 1.1 itojun
407 1.1 itojun lim = buf + len;
408 1.1 itojun next = get_next_msg(buf, lim, rai->ifindex, &len,
409 1.1 itojun RTADV_TYPE2BITMASK(RTM_GET));
410 1.1 itojun while (next < lim) {
411 1.1 itojun struct prefix *pp;
412 1.1 itojun struct in6_addr *a;
413 1.1 itojun
414 1.1 itojun /* allocate memory to store prefix info. */
415 1.1 itojun if ((pp = malloc(sizeof(*pp))) == NULL) {
416 1.1 itojun syslog(LOG_ERR,
417 1.1 itojun "<%s> can't get allocate buffer for prefix",
418 1.1 itojun __FUNCTION__);
419 1.1 itojun exit(1);
420 1.1 itojun }
421 1.1 itojun memset(pp, 0, sizeof(*pp));
422 1.1 itojun
423 1.1 itojun /* set prefix and its length */
424 1.1 itojun a = get_addr(next);
425 1.1 itojun memcpy(&pp->prefix, a, sizeof(*a));
426 1.1 itojun if ((pp->prefixlen = get_prefixlen(next)) < 0) {
427 1.1 itojun syslog(LOG_ERR,
428 1.1 itojun "<%s> failed to get prefixlen "
429 1.1 itojun "or prefixl is invalid",
430 1.1 itojun __FUNCTION__);
431 1.1 itojun exit(1);
432 1.1 itojun }
433 1.1 itojun syslog(LOG_DEBUG,
434 1.1 itojun "<%s> add %s/%d to prefix list on %s",
435 1.1 itojun __FUNCTION__,
436 1.1 itojun inet_ntop(AF_INET6, a, ntopbuf, INET6_ADDRSTRLEN),
437 1.1 itojun pp->prefixlen, rai->ifname);
438 1.1 itojun
439 1.1 itojun /* set other fields with protocol defaults */
440 1.1 itojun pp->validlifetime = DEF_ADVVALIDLIFETIME;
441 1.1 itojun pp->preflifetime = DEF_ADVPREFERREDLIFETIME;
442 1.1 itojun pp->onlinkflg = 1;
443 1.1 itojun pp->autoconfflg = 1;
444 1.7 itojun pp->origin = PREFIX_FROM_KERNEL;
445 1.1 itojun
446 1.1 itojun /* link into chain */
447 1.1 itojun insque(pp, &rai->prefix);
448 1.1 itojun
449 1.1 itojun /* counter increment */
450 1.1 itojun rai->pfxs++;
451 1.1 itojun
452 1.1 itojun /* forward pointer and get next prefix(if any) */
453 1.1 itojun next += len;
454 1.1 itojun next = get_next_msg(next, lim, rai->ifindex,
455 1.1 itojun &len, RTADV_TYPE2BITMASK(RTM_GET));
456 1.1 itojun }
457 1.1 itojun
458 1.1 itojun free(buf);
459 1.1 itojun }
460 1.1 itojun
461 1.1 itojun static void
462 1.1 itojun makeentry(buf, id, string, add)
463 1.1 itojun char *buf, *string;
464 1.1 itojun int id, add;
465 1.1 itojun {
466 1.1 itojun strcpy(buf, string);
467 1.1 itojun if (add) {
468 1.1 itojun char *cp;
469 1.1 itojun
470 1.1 itojun cp = (char *)index(buf, '\0');
471 1.1 itojun cp += sprintf(cp, "%d", id);
472 1.1 itojun *cp = '\0';
473 1.1 itojun }
474 1.1 itojun }
475 1.1 itojun
476 1.1 itojun /*
477 1.1 itojun * Add a prefix to the list of specified interface and reconstruct
478 1.1 itojun * the outgoing packet.
479 1.1 itojun * The prefix must not be in the list.
480 1.1 itojun * XXX: other parameter of the prefix(e.g. lifetime) shoule be
481 1.1 itojun * able to be specified.
482 1.1 itojun */
483 1.1 itojun static void
484 1.1 itojun add_prefix(struct rainfo *rai, struct in6_prefixreq *ipr)
485 1.1 itojun {
486 1.1 itojun struct prefix *prefix;
487 1.1 itojun u_char ntopbuf[INET6_ADDRSTRLEN];
488 1.1 itojun
489 1.1 itojun if ((prefix = malloc(sizeof(*prefix))) == NULL) {
490 1.1 itojun syslog(LOG_ERR, "<%s> memory allocation failed",
491 1.1 itojun __FUNCTION__);
492 1.1 itojun return; /* XXX: error or exit? */
493 1.1 itojun }
494 1.1 itojun prefix->prefix = ipr->ipr_prefix.sin6_addr;
495 1.1 itojun prefix->prefixlen = ipr->ipr_plen;
496 1.1 itojun prefix->validlifetime = ipr->ipr_vltime;
497 1.1 itojun prefix->preflifetime = ipr->ipr_pltime;
498 1.1 itojun prefix->onlinkflg = ipr->ipr_raf_onlink;
499 1.1 itojun prefix->autoconfflg = ipr->ipr_raf_auto;
500 1.7 itojun prefix->origin = PREFIX_FROM_DYNAMIC;
501 1.1 itojun
502 1.1 itojun insque(prefix, &rai->prefix);
503 1.1 itojun
504 1.1 itojun syslog(LOG_DEBUG, "<%s> new prefix %s/%d was added on %s",
505 1.1 itojun __FUNCTION__, inet_ntop(AF_INET6, &ipr->ipr_prefix.sin6_addr,
506 1.1 itojun ntopbuf, INET6_ADDRSTRLEN),
507 1.1 itojun ipr->ipr_plen, rai->ifname);
508 1.1 itojun
509 1.1 itojun /* free the previous packet */
510 1.1 itojun free(rai->ra_data);
511 1.1 itojun rai->ra_data = 0;
512 1.1 itojun
513 1.1 itojun /* reconstruct the packet */
514 1.1 itojun rai->pfxs++;
515 1.1 itojun make_packet(rai);
516 1.1 itojun
517 1.1 itojun /*
518 1.1 itojun * reset the timer so that the new prefix will be advertised quickly.
519 1.1 itojun */
520 1.1 itojun rai->initcounter = 0;
521 1.1 itojun ra_timer_update((void *)rai, &rai->timer->tm);
522 1.1 itojun rtadvd_set_timer(&rai->timer->tm, rai->timer);
523 1.1 itojun }
524 1.1 itojun
525 1.1 itojun /*
526 1.1 itojun * Delete a prefix to the list of specified interface and reconstruct
527 1.1 itojun * the outgoing packet.
528 1.7 itojun * The prefix must be in the list.
529 1.1 itojun */
530 1.1 itojun void
531 1.1 itojun delete_prefix(struct rainfo *rai, struct prefix *prefix)
532 1.1 itojun {
533 1.1 itojun u_char ntopbuf[INET6_ADDRSTRLEN];
534 1.1 itojun
535 1.1 itojun remque(prefix);
536 1.1 itojun syslog(LOG_DEBUG, "<%s> prefix %s/%d was deleted on %s",
537 1.1 itojun __FUNCTION__, inet_ntop(AF_INET6, &prefix->prefix,
538 1.1 itojun ntopbuf, INET6_ADDRSTRLEN),
539 1.1 itojun prefix->prefixlen, rai->ifname);
540 1.1 itojun free(prefix);
541 1.1 itojun rai->pfxs--;
542 1.1 itojun make_packet(rai);
543 1.1 itojun }
544 1.1 itojun
545 1.1 itojun /*
546 1.1 itojun * Try to get an in6_prefixreq contents for a prefix which matches
547 1.1 itojun * ipr->ipr_prefix and ipr->ipr_plen and belongs to
548 1.1 itojun * the interface whose name is ipr->ipr_name[].
549 1.1 itojun */
550 1.1 itojun static int
551 1.1 itojun init_prefix(struct in6_prefixreq *ipr)
552 1.1 itojun {
553 1.1 itojun int s;
554 1.1 itojun
555 1.1 itojun if ((s = socket(AF_INET6, SOCK_DGRAM, 0)) < 0) {
556 1.1 itojun syslog(LOG_ERR, "<%s> socket: %s", __FUNCTION__,
557 1.1 itojun strerror(errno));
558 1.1 itojun exit(1);
559 1.1 itojun }
560 1.1 itojun
561 1.1 itojun if (ioctl(s, SIOCGIFPREFIX_IN6, (caddr_t)ipr) < 0) {
562 1.1 itojun syslog(LOG_INFO, "<%s> ioctl:SIOCGIFPREFIX %s", __FUNCTION__,
563 1.1 itojun strerror(errno));
564 1.1 itojun
565 1.1 itojun ipr->ipr_vltime = DEF_ADVVALIDLIFETIME;
566 1.1 itojun ipr->ipr_pltime = DEF_ADVPREFERREDLIFETIME;
567 1.1 itojun ipr->ipr_raf_onlink = 1;
568 1.1 itojun ipr->ipr_raf_auto = 1;
569 1.1 itojun /* omit other field initialization */
570 1.1 itojun }
571 1.1 itojun else if (ipr->ipr_origin < PR_ORIG_RR) {
572 1.1 itojun u_char ntopbuf[INET6_ADDRSTRLEN];
573 1.1 itojun
574 1.1 itojun syslog(LOG_WARNING, "<%s> Added prefix(%s)'s origin %d is"
575 1.1 itojun "lower than PR_ORIG_RR(router renumbering)."
576 1.1 itojun "This should not happen if I am router", __FUNCTION__,
577 1.1 itojun inet_ntop(AF_INET6, &ipr->ipr_prefix.sin6_addr, ntopbuf,
578 1.1 itojun sizeof(ntopbuf)), ipr->ipr_origin);
579 1.6 itojun close(s);
580 1.1 itojun return 1;
581 1.1 itojun }
582 1.1 itojun
583 1.1 itojun close(s);
584 1.1 itojun return 0;
585 1.1 itojun }
586 1.1 itojun
587 1.1 itojun void
588 1.1 itojun make_prefix(struct rainfo *rai, int ifindex, struct in6_addr *addr, int plen)
589 1.1 itojun {
590 1.1 itojun struct in6_prefixreq ipr;
591 1.1 itojun
592 1.1 itojun memset(&ipr, 0, sizeof(ipr));
593 1.1 itojun if (if_indextoname(ifindex, ipr.ipr_name) == NULL) {
594 1.1 itojun syslog(LOG_ERR, "<%s> Prefix added interface No.%d doesn't"
595 1.1 itojun "exist. This should not happen! %s", __FUNCTION__,
596 1.1 itojun ifindex, strerror(errno));
597 1.1 itojun exit(1);
598 1.1 itojun }
599 1.1 itojun ipr.ipr_prefix.sin6_len = sizeof(ipr.ipr_prefix);
600 1.1 itojun ipr.ipr_prefix.sin6_family = AF_INET6;
601 1.1 itojun ipr.ipr_prefix.sin6_addr = *addr;
602 1.1 itojun ipr.ipr_plen = plen;
603 1.1 itojun
604 1.1 itojun if (init_prefix(&ipr))
605 1.1 itojun return; /* init failed by some error */
606 1.1 itojun add_prefix(rai, &ipr);
607 1.1 itojun }
608 1.1 itojun
609 1.4 itojun void
610 1.1 itojun make_packet(struct rainfo *rainfo)
611 1.1 itojun {
612 1.1 itojun size_t packlen, lladdroptlen = 0;
613 1.1 itojun char *buf;
614 1.1 itojun struct nd_router_advert *ra;
615 1.1 itojun struct nd_opt_prefix_info *ndopt_pi;
616 1.1 itojun struct nd_opt_mtu *ndopt_mtu;
617 1.6 itojun #ifdef MIP6
618 1.6 itojun struct nd_opt_advint *ndopt_advint;
619 1.6 itojun struct nd_opt_hai *ndopt_hai;
620 1.6 itojun #endif
621 1.1 itojun struct prefix *pfx;
622 1.1 itojun
623 1.1 itojun /* calculate total length */
624 1.1 itojun packlen = sizeof(struct nd_router_advert);
625 1.1 itojun if (rainfo->advlinkopt) {
626 1.1 itojun if ((lladdroptlen = lladdropt_length(rainfo->sdl)) == 0) {
627 1.1 itojun syslog(LOG_INFO,
628 1.1 itojun "<%s> link-layer address option has"
629 1.1 itojun " null length on %s."
630 1.1 itojun " Treat as not included.",
631 1.1 itojun __FUNCTION__, rainfo->ifname);
632 1.1 itojun rainfo->advlinkopt = 0;
633 1.1 itojun }
634 1.1 itojun packlen += lladdroptlen;
635 1.1 itojun }
636 1.1 itojun if (rainfo->pfxs)
637 1.1 itojun packlen += sizeof(struct nd_opt_prefix_info) * rainfo->pfxs;
638 1.1 itojun if (rainfo->linkmtu)
639 1.1 itojun packlen += sizeof(struct nd_opt_mtu);
640 1.6 itojun #ifdef MIP6
641 1.6 itojun if (mobileip6 && rainfo->maxinterval)
642 1.6 itojun packlen += sizeof(struct nd_opt_advint);
643 1.6 itojun if (mobileip6 && rainfo->hatime)
644 1.6 itojun packlen += sizeof(struct nd_opt_hai);
645 1.6 itojun #endif
646 1.1 itojun
647 1.1 itojun /* allocate memory for the packet */
648 1.1 itojun if ((buf = malloc(packlen)) == NULL) {
649 1.1 itojun syslog(LOG_ERR,
650 1.1 itojun "<%s> can't get enough memory for an RA packet",
651 1.1 itojun __FUNCTION__);
652 1.1 itojun exit(1);
653 1.1 itojun }
654 1.1 itojun rainfo->ra_data = buf;
655 1.1 itojun /* XXX: what if packlen > 576? */
656 1.1 itojun rainfo->ra_datalen = packlen;
657 1.1 itojun
658 1.1 itojun /*
659 1.1 itojun * construct the packet
660 1.1 itojun */
661 1.1 itojun ra = (struct nd_router_advert *)buf;
662 1.1 itojun ra->nd_ra_type = ND_ROUTER_ADVERT;
663 1.1 itojun ra->nd_ra_code = 0;
664 1.1 itojun ra->nd_ra_cksum = 0;
665 1.1 itojun ra->nd_ra_curhoplimit = (u_int8_t)(0xff & rainfo->hoplimit);
666 1.1 itojun ra->nd_ra_flags_reserved = 0;
667 1.1 itojun ra->nd_ra_flags_reserved |=
668 1.1 itojun rainfo->managedflg ? ND_RA_FLAG_MANAGED : 0;
669 1.1 itojun ra->nd_ra_flags_reserved |=
670 1.1 itojun rainfo->otherflg ? ND_RA_FLAG_OTHER : 0;
671 1.6 itojun #ifdef MIP6
672 1.6 itojun ra->nd_ra_flags_reserved |=
673 1.6 itojun rainfo->haflg ? ND_RA_FLAG_HA : 0;
674 1.6 itojun #endif
675 1.1 itojun ra->nd_ra_router_lifetime = htons(rainfo->lifetime);
676 1.1 itojun ra->nd_ra_reachable = htonl(rainfo->reachabletime);
677 1.1 itojun ra->nd_ra_retransmit = htonl(rainfo->retranstimer);
678 1.1 itojun buf += sizeof(*ra);
679 1.1 itojun
680 1.1 itojun if (rainfo->advlinkopt) {
681 1.1 itojun lladdropt_fill(rainfo->sdl, (struct nd_opt_hdr *)buf);
682 1.1 itojun buf += lladdroptlen;
683 1.1 itojun }
684 1.1 itojun
685 1.1 itojun if (rainfo->linkmtu) {
686 1.1 itojun ndopt_mtu = (struct nd_opt_mtu *)buf;
687 1.1 itojun ndopt_mtu->nd_opt_mtu_type = ND_OPT_MTU;
688 1.1 itojun ndopt_mtu->nd_opt_mtu_len = 1;
689 1.1 itojun ndopt_mtu->nd_opt_mtu_reserved = 0;
690 1.1 itojun ndopt_mtu->nd_opt_mtu_mtu = ntohl(rainfo->linkmtu);
691 1.1 itojun buf += sizeof(struct nd_opt_mtu);
692 1.1 itojun }
693 1.1 itojun
694 1.6 itojun #ifdef MIP6
695 1.6 itojun if (mobileip6 && rainfo->maxinterval) {
696 1.6 itojun ndopt_advint = (struct nd_opt_advint *)buf;
697 1.6 itojun ndopt_advint->nd_opt_int_type = ND_OPT_ADV_INTERVAL;
698 1.6 itojun ndopt_advint->nd_opt_int_len = 1;
699 1.6 itojun ndopt_advint->nd_opt_int_reserved = 0;
700 1.6 itojun ndopt_advint->nd_opt_int_interval = ntohl(rainfo->maxinterval *
701 1.6 itojun 1000);
702 1.6 itojun buf += sizeof(struct nd_opt_advint);
703 1.6 itojun }
704 1.6 itojun #endif
705 1.6 itojun
706 1.6 itojun #ifdef MIP6
707 1.6 itojun if (rainfo->hatime) {
708 1.6 itojun ndopt_hai = (struct nd_opt_hai *)buf;
709 1.6 itojun ndopt_hai->nd_opt_hai_type = ND_OPT_HA_INFORMATION;
710 1.6 itojun ndopt_hai->nd_opt_hai_len = 1;
711 1.6 itojun ndopt_hai->nd_opt_hai_reserved = 0;
712 1.6 itojun ndopt_hai->nd_opt_hai_pref = ntohs(rainfo->hapref);
713 1.6 itojun ndopt_hai->nd_opt_hai_lifetime = ntohs(rainfo->hatime);
714 1.6 itojun buf += sizeof(struct nd_opt_hai);
715 1.6 itojun }
716 1.6 itojun #endif
717 1.6 itojun
718 1.1 itojun for (pfx = rainfo->prefix.next;
719 1.1 itojun pfx != &rainfo->prefix; pfx = pfx->next) {
720 1.1 itojun ndopt_pi = (struct nd_opt_prefix_info *)buf;
721 1.1 itojun ndopt_pi->nd_opt_pi_type = ND_OPT_PREFIX_INFORMATION;
722 1.1 itojun ndopt_pi->nd_opt_pi_len = 4;
723 1.1 itojun ndopt_pi->nd_opt_pi_prefix_len = pfx->prefixlen;
724 1.1 itojun ndopt_pi->nd_opt_pi_flags_reserved = 0;
725 1.1 itojun if (pfx->onlinkflg)
726 1.1 itojun ndopt_pi->nd_opt_pi_flags_reserved |=
727 1.1 itojun ND_OPT_PI_FLAG_ONLINK;
728 1.1 itojun if (pfx->autoconfflg)
729 1.1 itojun ndopt_pi->nd_opt_pi_flags_reserved |=
730 1.1 itojun ND_OPT_PI_FLAG_AUTO;
731 1.6 itojun #ifdef MIP6
732 1.6 itojun if (pfx->routeraddr)
733 1.6 itojun ndopt_pi->nd_opt_pi_flags_reserved |=
734 1.6 itojun ND_OPT_PI_FLAG_RTADDR;
735 1.6 itojun #endif
736 1.1 itojun ndopt_pi->nd_opt_pi_valid_time = ntohl(pfx->validlifetime);
737 1.1 itojun ndopt_pi->nd_opt_pi_preferred_time =
738 1.1 itojun ntohl(pfx->preflifetime);
739 1.1 itojun ndopt_pi->nd_opt_pi_reserved2 = 0;
740 1.1 itojun ndopt_pi->nd_opt_pi_prefix = pfx->prefix;
741 1.1 itojun
742 1.1 itojun buf += sizeof(struct nd_opt_prefix_info);
743 1.1 itojun }
744 1.1 itojun
745 1.1 itojun return;
746 1.1 itojun }
747