xref: /freebsd/usr.sbin/rtadvd/rtadvd.c (revision 4f52dfbb8d6c4d446500c5b097e3806ec219fbd4)
1 /*	$FreeBSD$	*/
2 /*	$KAME: rtadvd.c,v 1.82 2003/08/05 12:34:23 itojun Exp $	*/
3 
4 /*-
5  * SPDX-License-Identifier: BSD-3-Clause
6  *
7  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
8  * Copyright (C) 2011 Hiroki Sato <hrs@FreeBSD.org>
9  * All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. Neither the name of the project nor the names of its contributors
20  *    may be used to endorse or promote products derived from this software
21  *    without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  */
35 
36 #include <sys/param.h>
37 #include <sys/ioctl.h>
38 #include <sys/socket.h>
39 #include <sys/uio.h>
40 #include <sys/queue.h>
41 #include <sys/stat.h>
42 #include <sys/sysctl.h>
43 
44 #include <net/if.h>
45 #include <net/if_types.h>
46 #include <net/if_media.h>
47 #include <net/if_dl.h>
48 #include <net/route.h>
49 #include <netinet/in.h>
50 #include <netinet/ip6.h>
51 #include <netinet6/ip6_var.h>
52 #include <netinet/icmp6.h>
53 
54 #include <arpa/inet.h>
55 
56 #include <netinet/in_var.h>
57 #include <netinet6/nd6.h>
58 
59 #include <time.h>
60 #include <unistd.h>
61 #include <stdio.h>
62 #include <err.h>
63 #include <errno.h>
64 #include <inttypes.h>
65 #include <libutil.h>
66 #include <netdb.h>
67 #include <signal.h>
68 #include <string.h>
69 #include <stdlib.h>
70 #include <syslog.h>
71 #include <poll.h>
72 
73 #include "pathnames.h"
74 #include "rtadvd.h"
75 #include "if.h"
76 #include "rrenum.h"
77 #include "advcap.h"
78 #include "timer_subr.h"
79 #include "timer.h"
80 #include "config.h"
81 #include "control.h"
82 #include "control_server.h"
83 
84 #define RTADV_TYPE2BITMASK(type) (0x1 << type)
85 
86 struct msghdr rcvmhdr;
87 static char *rcvcmsgbuf;
88 static size_t rcvcmsgbuflen;
89 static char *sndcmsgbuf = NULL;
90 static size_t sndcmsgbuflen;
91 struct msghdr sndmhdr;
92 struct iovec rcviov[2];
93 struct iovec sndiov[2];
94 struct sockaddr_in6 rcvfrom;
95 static const char *pidfilename = _PATH_RTADVDPID;
96 const char *conffile = _PATH_RTADVDCONF;
97 static struct pidfh *pfh;
98 static int dflag, sflag;
99 static int wait_shutdown;
100 
101 #define	PFD_RAWSOCK	0
102 #define	PFD_RTSOCK	1
103 #define	PFD_CSOCK	2
104 #define	PFD_MAX		3
105 
106 struct railist_head_t railist =
107     TAILQ_HEAD_INITIALIZER(railist);
108 struct ifilist_head_t ifilist =
109     TAILQ_HEAD_INITIALIZER(ifilist);
110 
111 struct nd_optlist {
112 	TAILQ_ENTRY(nd_optlist)	nol_next;
113 	struct nd_opt_hdr *nol_opt;
114 };
115 union nd_opt {
116 	struct nd_opt_hdr *opt_array[9];
117 	struct {
118 		struct nd_opt_hdr *zero;
119 		struct nd_opt_hdr *src_lladdr;
120 		struct nd_opt_hdr *tgt_lladdr;
121 		struct nd_opt_prefix_info *pi;
122 		struct nd_opt_rd_hdr *rh;
123 		struct nd_opt_mtu *mtu;
124 		TAILQ_HEAD(, nd_optlist) opt_list;
125 	} nd_opt_each;
126 };
127 #define opt_src_lladdr	nd_opt_each.src_lladdr
128 #define opt_tgt_lladdr	nd_opt_each.tgt_lladdr
129 #define opt_pi		nd_opt_each.pi
130 #define opt_rh		nd_opt_each.rh
131 #define opt_mtu		nd_opt_each.mtu
132 #define opt_list	nd_opt_each.opt_list
133 
134 #define NDOPT_FLAG_SRCLINKADDR	(1 << 0)
135 #define NDOPT_FLAG_TGTLINKADDR	(1 << 1)
136 #define NDOPT_FLAG_PREFIXINFO	(1 << 2)
137 #define NDOPT_FLAG_RDHDR	(1 << 3)
138 #define NDOPT_FLAG_MTU		(1 << 4)
139 #define NDOPT_FLAG_RDNSS	(1 << 5)
140 #define NDOPT_FLAG_DNSSL	(1 << 6)
141 
142 static uint32_t ndopt_flags[] = {
143 	[ND_OPT_SOURCE_LINKADDR]	= NDOPT_FLAG_SRCLINKADDR,
144 	[ND_OPT_TARGET_LINKADDR]	= NDOPT_FLAG_TGTLINKADDR,
145 	[ND_OPT_PREFIX_INFORMATION]	= NDOPT_FLAG_PREFIXINFO,
146 	[ND_OPT_REDIRECTED_HEADER]	= NDOPT_FLAG_RDHDR,
147 	[ND_OPT_MTU]			= NDOPT_FLAG_MTU,
148 	[ND_OPT_RDNSS]			= NDOPT_FLAG_RDNSS,
149 	[ND_OPT_DNSSL]			= NDOPT_FLAG_DNSSL,
150 };
151 
152 static void	rtadvd_shutdown(void);
153 static void	sock_open(struct sockinfo *);
154 static void	rtsock_open(struct sockinfo *);
155 static void	rtadvd_input(struct sockinfo *);
156 static void	rs_input(int, struct nd_router_solicit *,
157 		    struct in6_pktinfo *, struct sockaddr_in6 *);
158 static void	ra_input(int, struct nd_router_advert *,
159 		    struct in6_pktinfo *, struct sockaddr_in6 *);
160 static int	prefix_check(struct nd_opt_prefix_info *, struct rainfo *,
161 		    struct sockaddr_in6 *);
162 static int	nd6_options(struct nd_opt_hdr *, int,
163 		    union nd_opt *, uint32_t);
164 static void	free_ndopts(union nd_opt *);
165 static void	rtmsg_input(struct sockinfo *);
166 static void	set_short_delay(struct ifinfo *);
167 static int	check_accept_rtadv(int);
168 
169 static void
170 usage(void)
171 {
172 
173 	fprintf(stderr, "usage: rtadvd [-dDfRs] "
174 	    "[-c configfile] [-C ctlsock] [-M ifname] [-p pidfile]\n");
175 	exit(1);
176 }
177 
178 int
179 main(int argc, char *argv[])
180 {
181 	struct pollfd set[PFD_MAX];
182 	struct timespec *timeout;
183 	int i, ch;
184 	int fflag = 0, logopt;
185 	int error;
186 	pid_t pid, otherpid;
187 
188 	/* get command line options and arguments */
189 	while ((ch = getopt(argc, argv, "c:C:dDfhM:p:Rs")) != -1) {
190 		switch (ch) {
191 		case 'c':
192 			conffile = optarg;
193 			break;
194 		case 'C':
195 			ctrlsock.si_name = optarg;
196 			break;
197 		case 'd':
198 			dflag++;
199 			break;
200 		case 'D':
201 			dflag += 3;
202 			break;
203 		case 'f':
204 			fflag = 1;
205 			break;
206 		case 'M':
207 			mcastif = optarg;
208 			break;
209 		case 'R':
210 			fprintf(stderr, "rtadvd: "
211 				"the -R option is currently ignored.\n");
212 			/* accept_rr = 1; */
213 			/* run anyway... */
214 			break;
215 		case 's':
216 			sflag = 1;
217 			break;
218 		case 'p':
219 			pidfilename = optarg;
220 			break;
221 		default:
222 			usage();
223 		}
224 	}
225 	argc -= optind;
226 	argv += optind;
227 
228 	logopt = LOG_NDELAY | LOG_PID;
229 	if (fflag)
230 		logopt |= LOG_PERROR;
231 	openlog("rtadvd", logopt, LOG_DAEMON);
232 
233 	/* set log level */
234 	if (dflag > 2)
235 		(void)setlogmask(LOG_UPTO(LOG_DEBUG));
236 	else if (dflag > 1)
237 		(void)setlogmask(LOG_UPTO(LOG_INFO));
238 	else if (dflag > 0)
239 		(void)setlogmask(LOG_UPTO(LOG_NOTICE));
240 	else
241 		(void)setlogmask(LOG_UPTO(LOG_ERR));
242 
243 	/* timer initialization */
244 	rtadvd_timer_init();
245 
246 	pfh = pidfile_open(pidfilename, 0600, &otherpid);
247 	if (pfh == NULL) {
248 		if (errno == EEXIST)
249 			errx(1, "%s already running, pid: %d",
250 			    getprogname(), otherpid);
251 		syslog(LOG_ERR,
252 		    "failed to open the pid file %s, run anyway.",
253 		    pidfilename);
254 	}
255 	if (!fflag)
256 		daemon(1, 0);
257 
258 	sock_open(&sock);
259 
260 	update_ifinfo(&ifilist, UPDATE_IFINFO_ALL);
261 	for (i = 0; i < argc; i++)
262 		update_persist_ifinfo(&ifilist, argv[i]);
263 
264 	csock_open(&ctrlsock, S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH);
265 	if (ctrlsock.si_fd == -1) {
266 		syslog(LOG_ERR, "cannot open control socket: %s",
267 		    strerror(errno));
268 		exit(1);
269 	}
270 
271 	/* record the current PID */
272 	pid = getpid();
273 	pidfile_write(pfh);
274 
275 	set[PFD_RAWSOCK].fd = sock.si_fd;
276 	set[PFD_RAWSOCK].events = POLLIN;
277 	if (sflag == 0) {
278 		rtsock_open(&rtsock);
279 		set[PFD_RTSOCK].fd = rtsock.si_fd;
280 		set[PFD_RTSOCK].events = POLLIN;
281 	} else
282 		set[PFD_RTSOCK].fd = -1;
283 	set[PFD_CSOCK].fd = ctrlsock.si_fd;
284 	set[PFD_CSOCK].events = POLLIN;
285 	signal(SIGTERM, set_do_shutdown);
286 	signal(SIGINT, set_do_shutdown);
287 	signal(SIGHUP, set_do_reload);
288 
289 	error = csock_listen(&ctrlsock);
290 	if (error) {
291 		syslog(LOG_ERR, "cannot listen control socket: %s",
292 		    strerror(errno));
293 		exit(1);
294 	}
295 
296 	/* load configuration file */
297 	set_do_reload(0);
298 
299 	while (1) {
300 		if (is_do_shutdown())
301 			rtadvd_shutdown();
302 
303 		if (is_do_reload()) {
304 			loadconfig_ifname(reload_ifname());
305 			if (reload_ifname() == NULL)
306 				syslog(LOG_INFO,
307 				    "configuration file reloaded.");
308 			else
309 				syslog(LOG_INFO,
310 				    "configuration file for %s reloaded.",
311 				    reload_ifname());
312 			reset_do_reload();
313 		}
314 
315 		/* timeout handler update for active interfaces */
316 		rtadvd_update_timeout_handler();
317 
318 		/* timer expiration check and reset the timer */
319 		timeout = rtadvd_check_timer();
320 
321 		if (timeout != NULL) {
322 			syslog(LOG_DEBUG,
323 			    "<%s> set timer to %ld:%ld. waiting for "
324 			    "inputs or timeout", __func__,
325 			    (long int)timeout->tv_sec,
326 			    (long int)timeout->tv_nsec / 1000);
327 		} else {
328 			syslog(LOG_DEBUG,
329 			    "<%s> there's no timer. waiting for inputs",
330 			    __func__);
331 		}
332 		if ((i = poll(set, sizeof(set)/sizeof(set[0]),
333 			    timeout ? (timeout->tv_sec * 1000 +
334 				timeout->tv_nsec / 1000 / 1000) : INFTIM)) < 0) {
335 
336 			/* EINTR would occur if a signal was delivered */
337 			if (errno != EINTR)
338 				syslog(LOG_ERR, "poll() failed: %s",
339 				    strerror(errno));
340 			continue;
341 		}
342 		if (i == 0)	/* timeout */
343 			continue;
344 		if (rtsock.si_fd != -1 && set[PFD_RTSOCK].revents & POLLIN)
345 			rtmsg_input(&rtsock);
346 
347 		if (set[PFD_RAWSOCK].revents & POLLIN)
348 			rtadvd_input(&sock);
349 
350 		if (set[PFD_CSOCK].revents & POLLIN) {
351 			int fd;
352 
353 			fd = csock_accept(&ctrlsock);
354 			if (fd == -1)
355 				syslog(LOG_ERR,
356 				    "cannot accept() control socket: %s",
357 				    strerror(errno));
358 			else {
359 				cm_handler_server(fd);
360 				close(fd);
361 			}
362 		}
363 	}
364 	exit(0);		/* NOTREACHED */
365 }
366 
367 static void
368 rtadvd_shutdown(void)
369 {
370 	struct ifinfo *ifi;
371 	struct rainfo *rai;
372 	struct rdnss *rdn;
373 	struct dnssl *dns;
374 
375 	if (wait_shutdown) {
376 		syslog(LOG_INFO,
377 		    "waiting expiration of the all RA timers.");
378 
379 		TAILQ_FOREACH(ifi, &ifilist, ifi_next) {
380 			/*
381 			 * Ignore !IFF_UP interfaces in waiting for shutdown.
382 			 */
383 			if (!(ifi->ifi_flags & IFF_UP) &&
384 			    ifi->ifi_ra_timer != NULL) {
385 				ifi->ifi_state = IFI_STATE_UNCONFIGURED;
386 				rtadvd_remove_timer(ifi->ifi_ra_timer);
387 				ifi->ifi_ra_timer = NULL;
388 				syslog(LOG_DEBUG, "<%s> %s(idx=%d) is down. "
389 				    "Timer removed and marked as UNCONFIGURED.",
390 				     __func__, ifi->ifi_ifname,
391 				    ifi->ifi_ifindex);
392 			}
393 		}
394 		TAILQ_FOREACH(ifi, &ifilist, ifi_next) {
395 			if (ifi->ifi_ra_timer != NULL)
396 				break;
397 		}
398 		if (ifi == NULL) {
399 			syslog(LOG_NOTICE, "gracefully terminated.");
400 			exit(0);
401 		}
402 
403 		sleep(1);
404 		return;
405 	}
406 
407 	syslog(LOG_DEBUG, "<%s> cease to be an advertising router",
408 	    __func__);
409 
410 	wait_shutdown = 1;
411 
412 	TAILQ_FOREACH(rai, &railist, rai_next) {
413 		rai->rai_lifetime = 0;
414 		TAILQ_FOREACH(rdn, &rai->rai_rdnss, rd_next)
415 			rdn->rd_ltime = 0;
416 		TAILQ_FOREACH(dns, &rai->rai_dnssl, dn_next)
417 			dns->dn_ltime = 0;
418 	}
419 	TAILQ_FOREACH(ifi, &ifilist, ifi_next) {
420 		if (!ifi->ifi_persist)
421 			continue;
422 		if (ifi->ifi_state == IFI_STATE_UNCONFIGURED)
423 			continue;
424 		if (ifi->ifi_ra_timer == NULL)
425 			continue;
426 		if (ifi->ifi_ra_lastsent.tv_sec == 0 &&
427 		    ifi->ifi_ra_lastsent.tv_nsec == 0 &&
428 		    ifi->ifi_ra_timer != NULL) {
429 			/*
430 			 * When RA configured but never sent,
431 			 * ignore the IF immediately.
432 			 */
433 			rtadvd_remove_timer(ifi->ifi_ra_timer);
434 			ifi->ifi_ra_timer = NULL;
435 			ifi->ifi_state = IFI_STATE_UNCONFIGURED;
436 			continue;
437 		}
438 
439 		ifi->ifi_state = IFI_STATE_TRANSITIVE;
440 
441 		/* Mark as the shut-down state. */
442 		ifi->ifi_rainfo_trans = ifi->ifi_rainfo;
443 		ifi->ifi_rainfo = NULL;
444 
445 		ifi->ifi_burstcount = MAX_FINAL_RTR_ADVERTISEMENTS;
446 		ifi->ifi_burstinterval = MIN_DELAY_BETWEEN_RAS;
447 
448 		ra_timer_update(ifi, &ifi->ifi_ra_timer->rat_tm);
449 		rtadvd_set_timer(&ifi->ifi_ra_timer->rat_tm,
450 		    ifi->ifi_ra_timer);
451 	}
452 	syslog(LOG_NOTICE, "final RA transmission started.");
453 
454 	pidfile_remove(pfh);
455 	csock_close(&ctrlsock);
456 }
457 
458 static void
459 rtmsg_input(struct sockinfo *s)
460 {
461 	int n, type, ifindex = 0, plen;
462 	size_t len;
463 	char msg[2048], *next, *lim;
464 	char ifname[IFNAMSIZ];
465 	struct if_announcemsghdr *ifan;
466 	struct rt_msghdr *rtm;
467 	struct prefix *pfx;
468 	struct rainfo *rai;
469 	struct in6_addr *addr;
470 	struct ifinfo *ifi;
471 	char addrbuf[INET6_ADDRSTRLEN];
472 	int prefixchange = 0;
473 
474 	if (s == NULL) {
475 		syslog(LOG_ERR, "<%s> internal error", __func__);
476 		exit(1);
477 	}
478 	n = read(s->si_fd, msg, sizeof(msg));
479 	rtm = (struct rt_msghdr *)msg;
480 	syslog(LOG_DEBUG, "<%s> received a routing message "
481 	    "(type = %d, len = %d)", __func__, rtm->rtm_type, n);
482 
483 	if (n > rtm->rtm_msglen) {
484 		/*
485 		 * This usually won't happen for messages received on
486 		 * a routing socket.
487 		 */
488 		syslog(LOG_DEBUG,
489 		    "<%s> received data length is larger than "
490 		    "1st routing message len. multiple messages? "
491 		    "read %d bytes, but 1st msg len = %d",
492 		    __func__, n, rtm->rtm_msglen);
493 #if 0
494 		/* adjust length */
495 		n = rtm->rtm_msglen;
496 #endif
497 	}
498 
499 	lim = msg + n;
500 	for (next = msg; next < lim; next += len) {
501 		int oldifflags;
502 
503 		next = get_next_msg(next, lim, 0, &len,
504 		    RTADV_TYPE2BITMASK(RTM_ADD) |
505 		    RTADV_TYPE2BITMASK(RTM_DELETE) |
506 		    RTADV_TYPE2BITMASK(RTM_NEWADDR) |
507 		    RTADV_TYPE2BITMASK(RTM_DELADDR) |
508 		    RTADV_TYPE2BITMASK(RTM_IFINFO) |
509 		    RTADV_TYPE2BITMASK(RTM_IFANNOUNCE));
510 		if (len == 0)
511 			break;
512 		type = ((struct rt_msghdr *)next)->rtm_type;
513 		switch (type) {
514 		case RTM_ADD:
515 		case RTM_DELETE:
516 			ifindex = get_rtm_ifindex(next);
517 			break;
518 		case RTM_NEWADDR:
519 		case RTM_DELADDR:
520 			ifindex = (int)((struct ifa_msghdr *)next)->ifam_index;
521 			break;
522 		case RTM_IFINFO:
523 			ifindex = (int)((struct if_msghdr *)next)->ifm_index;
524 			break;
525 		case RTM_IFANNOUNCE:
526 			ifan = (struct if_announcemsghdr *)next;
527 			switch (ifan->ifan_what) {
528 			case IFAN_ARRIVAL:
529 			case IFAN_DEPARTURE:
530 				break;
531 			default:
532 				syslog(LOG_DEBUG,
533 				    "<%s:%d> unknown ifan msg (ifan_what=%d)",
534 				   __func__, __LINE__, ifan->ifan_what);
535 				continue;
536 			}
537 
538 			syslog(LOG_DEBUG, "<%s>: if_announcemsg (idx=%d:%d)",
539 			       __func__, ifan->ifan_index, ifan->ifan_what);
540 			switch (ifan->ifan_what) {
541 			case IFAN_ARRIVAL:
542 				syslog(LOG_NOTICE,
543 				    "interface added (idx=%d)",
544 				    ifan->ifan_index);
545 				update_ifinfo(&ifilist, ifan->ifan_index);
546 				loadconfig_index(ifan->ifan_index);
547 				break;
548 			case IFAN_DEPARTURE:
549 				syslog(LOG_NOTICE,
550 				    "interface removed (idx=%d)",
551 				    ifan->ifan_index);
552 				rm_ifinfo_index(ifan->ifan_index);
553 
554 				/* Clear ifi_ifindex */
555 				TAILQ_FOREACH(ifi, &ifilist, ifi_next) {
556 					if (ifi->ifi_ifindex
557 					    == ifan->ifan_index) {
558 						ifi->ifi_ifindex = 0;
559 						break;
560 					}
561 				}
562 				update_ifinfo(&ifilist, ifan->ifan_index);
563 				break;
564 			}
565 			continue;
566 		default:
567 			/* should not reach here */
568 			syslog(LOG_DEBUG,
569 			       "<%s:%d> unknown rtmsg %d on %s",
570 			       __func__, __LINE__, type,
571 			       if_indextoname(ifindex, ifname));
572 			continue;
573 		}
574 		ifi = if_indextoifinfo(ifindex);
575 		if (ifi == NULL) {
576 			syslog(LOG_DEBUG,
577 			    "<%s> ifinfo not found for idx=%d.  Why?",
578 			    __func__, ifindex);
579 			continue;
580 		}
581 		rai = ifi->ifi_rainfo;
582 		if (rai == NULL) {
583 			syslog(LOG_DEBUG,
584 			    "<%s> route changed on "
585 			    "non advertising interface(%s)",
586 			    __func__, ifi->ifi_ifname);
587 			continue;
588 		}
589 
590 		oldifflags = ifi->ifi_flags;
591 		/* init ifflags because it may have changed */
592 		update_ifinfo(&ifilist, ifindex);
593 
594 		switch (type) {
595 		case RTM_ADD:
596 			if (sflag)
597 				break;	/* we aren't interested in prefixes  */
598 
599 			addr = get_addr(msg);
600 			plen = get_prefixlen(msg);
601 			/* sanity check for plen */
602 			/* as RFC2373, prefixlen is at least 4 */
603 			if (plen < 4 || plen > 127) {
604 				syslog(LOG_INFO, "<%s> new interface route's"
605 				    "plen %d is invalid for a prefix",
606 				    __func__, plen);
607 				break;
608 			}
609 			pfx = find_prefix(rai, addr, plen);
610 			if (pfx) {
611 				if (pfx->pfx_timer) {
612 					/*
613 					 * If the prefix has been invalidated,
614 					 * make it available again.
615 					 */
616 					update_prefix(pfx);
617 					prefixchange = 1;
618 				} else
619 					syslog(LOG_DEBUG,
620 					    "<%s> new prefix(%s/%d) "
621 					    "added on %s, "
622 					    "but it was already in list",
623 					    __func__,
624 					    inet_ntop(AF_INET6, addr,
625 						(char *)addrbuf,
626 						sizeof(addrbuf)),
627 					    plen, ifi->ifi_ifname);
628 				break;
629 			}
630 			make_prefix(rai, ifindex, addr, plen);
631 			prefixchange = 1;
632 			break;
633 		case RTM_DELETE:
634 			if (sflag)
635 				break;
636 
637 			addr = get_addr(msg);
638 			plen = get_prefixlen(msg);
639 			/* sanity check for plen */
640 			/* as RFC2373, prefixlen is at least 4 */
641 			if (plen < 4 || plen > 127) {
642 				syslog(LOG_INFO,
643 				    "<%s> deleted interface route's "
644 				    "plen %d is invalid for a prefix",
645 				    __func__, plen);
646 				break;
647 			}
648 			pfx = find_prefix(rai, addr, plen);
649 			if (pfx == NULL) {
650 				syslog(LOG_DEBUG,
651 				    "<%s> prefix(%s/%d) was deleted on %s, "
652 				    "but it was not in list",
653 				    __func__, inet_ntop(AF_INET6, addr,
654 					(char *)addrbuf, sizeof(addrbuf)),
655 					plen, ifi->ifi_ifname);
656 				break;
657 			}
658 			invalidate_prefix(pfx);
659 			prefixchange = 1;
660 			break;
661 		case RTM_NEWADDR:
662 		case RTM_DELADDR:
663 		case RTM_IFINFO:
664 			break;
665 		default:
666 			/* should not reach here */
667 			syslog(LOG_DEBUG,
668 			    "<%s:%d> unknown rtmsg %d on %s",
669 			    __func__, __LINE__, type,
670 			    if_indextoname(ifindex, ifname));
671 			return;
672 		}
673 
674 		/* check if an interface flag is changed */
675 		if ((oldifflags & IFF_UP) && /* UP to DOWN */
676 		    !(ifi->ifi_flags & IFF_UP)) {
677 			syslog(LOG_NOTICE,
678 			    "<interface %s becomes down. stop timer.",
679 			    ifi->ifi_ifname);
680 			rtadvd_remove_timer(ifi->ifi_ra_timer);
681 			ifi->ifi_ra_timer = NULL;
682 		} else if (!(oldifflags & IFF_UP) && /* DOWN to UP */
683 		    (ifi->ifi_flags & IFF_UP)) {
684 			syslog(LOG_NOTICE,
685 			    "interface %s becomes up. restart timer.",
686 			    ifi->ifi_ifname);
687 
688 			ifi->ifi_state = IFI_STATE_TRANSITIVE;
689 			ifi->ifi_burstcount =
690 			    MAX_INITIAL_RTR_ADVERTISEMENTS;
691 			ifi->ifi_burstinterval =
692 			    MAX_INITIAL_RTR_ADVERT_INTERVAL;
693 
694 			ifi->ifi_ra_timer = rtadvd_add_timer(ra_timeout,
695 			    ra_timer_update, ifi, ifi);
696 			ra_timer_update(ifi, &ifi->ifi_ra_timer->rat_tm);
697 			rtadvd_set_timer(&ifi->ifi_ra_timer->rat_tm,
698 			    ifi->ifi_ra_timer);
699 		} else if (prefixchange &&
700 		    (ifi->ifi_flags & IFF_UP)) {
701 			/*
702 			 * An advertised prefix has been added or invalidated.
703 			 * Will notice the change in a short delay.
704 			 */
705 			set_short_delay(ifi);
706 		}
707 	}
708 
709 	return;
710 }
711 
712 void
713 rtadvd_input(struct sockinfo *s)
714 {
715 	ssize_t i;
716 	int *hlimp = NULL;
717 #ifdef OLDRAWSOCKET
718 	struct ip6_hdr *ip;
719 #endif
720 	struct icmp6_hdr *icp;
721 	int ifindex = 0;
722 	struct cmsghdr *cm;
723 	struct in6_pktinfo *pi = NULL;
724 	char ntopbuf[INET6_ADDRSTRLEN], ifnamebuf[IFNAMSIZ];
725 	struct in6_addr dst = in6addr_any;
726 	struct ifinfo *ifi;
727 
728 	syslog(LOG_DEBUG, "<%s> enter", __func__);
729 
730 	if (s == NULL) {
731 		syslog(LOG_ERR, "<%s> internal error", __func__);
732 		exit(1);
733 	}
734 	/*
735 	 * Get message. We reset msg_controllen since the field could
736 	 * be modified if we had received a message before setting
737 	 * receive options.
738 	 */
739 	rcvmhdr.msg_controllen = rcvcmsgbuflen;
740 	if ((i = recvmsg(s->si_fd, &rcvmhdr, 0)) < 0)
741 		return;
742 
743 	/* extract optional information via Advanced API */
744 	for (cm = (struct cmsghdr *)CMSG_FIRSTHDR(&rcvmhdr);
745 	     cm;
746 	     cm = (struct cmsghdr *)CMSG_NXTHDR(&rcvmhdr, cm)) {
747 		if (cm->cmsg_level == IPPROTO_IPV6 &&
748 		    cm->cmsg_type == IPV6_PKTINFO &&
749 		    cm->cmsg_len == CMSG_LEN(sizeof(struct in6_pktinfo))) {
750 			pi = (struct in6_pktinfo *)(CMSG_DATA(cm));
751 			ifindex = pi->ipi6_ifindex;
752 			dst = pi->ipi6_addr;
753 		}
754 		if (cm->cmsg_level == IPPROTO_IPV6 &&
755 		    cm->cmsg_type == IPV6_HOPLIMIT &&
756 		    cm->cmsg_len == CMSG_LEN(sizeof(int)))
757 			hlimp = (int *)CMSG_DATA(cm);
758 	}
759 	if (ifindex == 0) {
760 		syslog(LOG_ERR, "failed to get receiving interface");
761 		return;
762 	}
763 	if (hlimp == NULL) {
764 		syslog(LOG_ERR, "failed to get receiving hop limit");
765 		return;
766 	}
767 
768 	/*
769 	 * If we happen to receive data on an interface which is now gone
770 	 * or down, just discard the data.
771 	 */
772 	ifi = if_indextoifinfo(pi->ipi6_ifindex);
773 	if (ifi == NULL || !(ifi->ifi_flags & IFF_UP)) {
774 		syslog(LOG_INFO,
775 		    "<%s> received data on a disabled interface (%s)",
776 		    __func__,
777 		    (ifi == NULL) ? "[gone]" : ifi->ifi_ifname);
778 		return;
779 	}
780 
781 #ifdef OLDRAWSOCKET
782 	if ((size_t)i < sizeof(struct ip6_hdr) + sizeof(struct icmp6_hdr)) {
783 		syslog(LOG_ERR,
784 		    "packet size(%d) is too short", i);
785 		return;
786 	}
787 
788 	ip = (struct ip6_hdr *)rcvmhdr.msg_iov[0].iov_base;
789 	icp = (struct icmp6_hdr *)(ip + 1); /* XXX: ext. hdr? */
790 #else
791 	if ((size_t)i < sizeof(struct icmp6_hdr)) {
792 		syslog(LOG_ERR, "packet size(%zd) is too short", i);
793 		return;
794 	}
795 
796 	icp = (struct icmp6_hdr *)rcvmhdr.msg_iov[0].iov_base;
797 #endif
798 
799 	switch (icp->icmp6_type) {
800 	case ND_ROUTER_SOLICIT:
801 		/*
802 		 * Message verification - RFC 4861 6.1.1
803 		 * XXX: these checks must be done in the kernel as well,
804 		 *      but we can't completely rely on them.
805 		 */
806 		if (*hlimp != 255) {
807 			syslog(LOG_NOTICE,
808 			    "RS with invalid hop limit(%d) "
809 			    "received from %s on %s",
810 			    *hlimp,
811 			    inet_ntop(AF_INET6, &rcvfrom.sin6_addr, ntopbuf,
812 			    sizeof(ntopbuf)),
813 			    if_indextoname(pi->ipi6_ifindex, ifnamebuf));
814 			return;
815 		}
816 		if (icp->icmp6_code) {
817 			syslog(LOG_NOTICE,
818 			    "RS with invalid ICMP6 code(%d) "
819 			    "received from %s on %s",
820 			    icp->icmp6_code,
821 			    inet_ntop(AF_INET6, &rcvfrom.sin6_addr, ntopbuf,
822 			    sizeof(ntopbuf)),
823 			    if_indextoname(pi->ipi6_ifindex, ifnamebuf));
824 			return;
825 		}
826 		if ((size_t)i < sizeof(struct nd_router_solicit)) {
827 			syslog(LOG_NOTICE,
828 			    "RS from %s on %s does not have enough "
829 			    "length (len = %zd)",
830 			    inet_ntop(AF_INET6, &rcvfrom.sin6_addr, ntopbuf,
831 			    sizeof(ntopbuf)),
832 			    if_indextoname(pi->ipi6_ifindex, ifnamebuf), i);
833 			return;
834 		}
835 		rs_input(i, (struct nd_router_solicit *)icp, pi, &rcvfrom);
836 		break;
837 	case ND_ROUTER_ADVERT:
838 		/*
839 		 * Message verification - RFC 4861 6.1.2
840 		 * XXX: there's the same dilemma as above...
841 		 */
842 		if (!IN6_IS_ADDR_LINKLOCAL(&rcvfrom.sin6_addr)) {
843 			syslog(LOG_NOTICE,
844 			    "RA with non-linklocal source address "
845 			    "received from %s on %s",
846 			    inet_ntop(AF_INET6, &rcvfrom.sin6_addr,
847 			    ntopbuf, sizeof(ntopbuf)),
848 			    if_indextoname(pi->ipi6_ifindex, ifnamebuf));
849 			return;
850 		}
851 		if (*hlimp != 255) {
852 			syslog(LOG_NOTICE,
853 			    "RA with invalid hop limit(%d) "
854 			    "received from %s on %s",
855 			    *hlimp,
856 			    inet_ntop(AF_INET6, &rcvfrom.sin6_addr, ntopbuf,
857 			    sizeof(ntopbuf)),
858 			    if_indextoname(pi->ipi6_ifindex, ifnamebuf));
859 			return;
860 		}
861 		if (icp->icmp6_code) {
862 			syslog(LOG_NOTICE,
863 			    "RA with invalid ICMP6 code(%d) "
864 			    "received from %s on %s",
865 			    icp->icmp6_code,
866 			    inet_ntop(AF_INET6, &rcvfrom.sin6_addr, ntopbuf,
867 			    sizeof(ntopbuf)),
868 			    if_indextoname(pi->ipi6_ifindex, ifnamebuf));
869 			return;
870 		}
871 		if ((size_t)i < sizeof(struct nd_router_advert)) {
872 			syslog(LOG_NOTICE,
873 			    "RA from %s on %s does not have enough "
874 			    "length (len = %zd)",
875 			    inet_ntop(AF_INET6, &rcvfrom.sin6_addr, ntopbuf,
876 			    sizeof(ntopbuf)),
877 			    if_indextoname(pi->ipi6_ifindex, ifnamebuf), i);
878 			return;
879 		}
880 		ra_input(i, (struct nd_router_advert *)icp, pi, &rcvfrom);
881 		break;
882 	case ICMP6_ROUTER_RENUMBERING:
883 		if (mcastif == NULL) {
884 			syslog(LOG_ERR, "received a router renumbering "
885 			    "message, but not allowed to be accepted");
886 			break;
887 		}
888 		rr_input(i, (struct icmp6_router_renum *)icp, pi, &rcvfrom,
889 		    &dst);
890 		break;
891 	default:
892 		/*
893 		 * Note that this case is POSSIBLE, especially just
894 		 * after invocation of the daemon. This is because we
895 		 * could receive message after opening the socket and
896 		 * before setting ICMP6 type filter(see sock_open()).
897 		 */
898 		syslog(LOG_ERR, "invalid icmp type(%d)", icp->icmp6_type);
899 		return;
900 	}
901 
902 	return;
903 }
904 
905 static void
906 rs_input(int len, struct nd_router_solicit *rs,
907 	 struct in6_pktinfo *pi, struct sockaddr_in6 *from)
908 {
909 	char ntopbuf[INET6_ADDRSTRLEN];
910 	char ifnamebuf[IFNAMSIZ];
911 	union nd_opt ndopts;
912 	struct rainfo *rai;
913 	struct ifinfo *ifi;
914 	struct soliciter *sol;
915 
916 	syslog(LOG_DEBUG,
917 	    "<%s> RS received from %s on %s",
918 	    __func__,
919 	    inet_ntop(AF_INET6, &from->sin6_addr, ntopbuf, sizeof(ntopbuf)),
920 	    if_indextoname(pi->ipi6_ifindex, ifnamebuf));
921 
922 	/* ND option check */
923 	memset(&ndopts, 0, sizeof(ndopts));
924 	TAILQ_INIT(&ndopts.opt_list);
925 	if (nd6_options((struct nd_opt_hdr *)(rs + 1),
926 			len - sizeof(struct nd_router_solicit),
927 			&ndopts, NDOPT_FLAG_SRCLINKADDR)) {
928 		syslog(LOG_INFO,
929 		    "<%s> ND option check failed for an RS from %s on %s",
930 		    __func__,
931 		    inet_ntop(AF_INET6, &from->sin6_addr, ntopbuf,
932 			sizeof(ntopbuf)),
933 		    if_indextoname(pi->ipi6_ifindex, ifnamebuf));
934 		return;
935 	}
936 
937 	/*
938 	 * If the IP source address is the unspecified address, there
939 	 * must be no source link-layer address option in the message.
940 	 * (RFC 4861 6.1.1)
941 	 */
942 	if (IN6_IS_ADDR_UNSPECIFIED(&from->sin6_addr) &&
943 	    ndopts.opt_src_lladdr) {
944 		syslog(LOG_INFO,
945 		    "<%s> RS from unspecified src on %s has a link-layer"
946 		    " address option",
947 		    __func__, if_indextoname(pi->ipi6_ifindex, ifnamebuf));
948 		goto done;
949 	}
950 
951 	ifi = if_indextoifinfo(pi->ipi6_ifindex);
952 	if (ifi == NULL) {
953 		syslog(LOG_INFO,
954 		    "<%s> if (idx=%d) not found.  Why?",
955 		    __func__, pi->ipi6_ifindex);
956 		goto done;
957 	}
958 	rai = ifi->ifi_rainfo;
959 	if (rai == NULL) {
960 		syslog(LOG_INFO,
961 		       "<%s> RS received on non advertising interface(%s)",
962 		       __func__,
963 		       if_indextoname(pi->ipi6_ifindex, ifnamebuf));
964 		goto done;
965 	}
966 
967 	rai->rai_ifinfo->ifi_rsinput++;
968 
969 	/*
970 	 * Decide whether to send RA according to the rate-limit
971 	 * consideration.
972 	 */
973 
974 	/* record sockaddr waiting for RA, if possible */
975 	sol = (struct soliciter *)malloc(sizeof(*sol));
976 	if (sol) {
977 		sol->sol_addr = *from;
978 		/* XXX RFC 2553 need clarification on flowinfo */
979 		sol->sol_addr.sin6_flowinfo = 0;
980 		TAILQ_INSERT_TAIL(&rai->rai_soliciter, sol, sol_next);
981 	}
982 
983 	/*
984 	 * If there is already a waiting RS packet, don't
985 	 * update the timer.
986 	 */
987 	if (ifi->ifi_rs_waitcount++)
988 		goto done;
989 
990 	set_short_delay(ifi);
991 
992   done:
993 	free_ndopts(&ndopts);
994 	return;
995 }
996 
997 static void
998 set_short_delay(struct ifinfo *ifi)
999 {
1000 	long delay;	/* must not be greater than 1000000 */
1001 	struct timespec interval, now, min_delay, tm_tmp, *rest;
1002 
1003 	if (ifi->ifi_ra_timer == NULL)
1004 		return;
1005 	/*
1006 	 * Compute a random delay. If the computed value
1007 	 * corresponds to a time later than the time the next
1008 	 * multicast RA is scheduled to be sent, ignore the random
1009 	 * delay and send the advertisement at the
1010 	 * already-scheduled time. RFC 4861 6.2.6
1011 	 */
1012 	delay = arc4random_uniform(MAX_RA_DELAY_TIME);
1013 	interval.tv_sec = 0;
1014 	interval.tv_nsec = delay * 1000;
1015 	rest = rtadvd_timer_rest(ifi->ifi_ra_timer);
1016 	if (TS_CMP(rest, &interval, <)) {
1017 		syslog(LOG_DEBUG, "<%s> random delay is larger than "
1018 		    "the rest of the current timer", __func__);
1019 		interval = *rest;
1020 	}
1021 
1022 	/*
1023 	 * If we sent a multicast Router Advertisement within
1024 	 * the last MIN_DELAY_BETWEEN_RAS seconds, schedule
1025 	 * the advertisement to be sent at a time corresponding to
1026 	 * MIN_DELAY_BETWEEN_RAS plus the random value after the
1027 	 * previous advertisement was sent.
1028 	 */
1029 	clock_gettime(CLOCK_MONOTONIC_FAST, &now);
1030 	TS_SUB(&now, &ifi->ifi_ra_lastsent, &tm_tmp);
1031 	min_delay.tv_sec = MIN_DELAY_BETWEEN_RAS;
1032 	min_delay.tv_nsec = 0;
1033 	if (TS_CMP(&tm_tmp, &min_delay, <)) {
1034 		TS_SUB(&min_delay, &tm_tmp, &min_delay);
1035 		TS_ADD(&min_delay, &interval, &interval);
1036 	}
1037 	rtadvd_set_timer(&interval, ifi->ifi_ra_timer);
1038 }
1039 
1040 static int
1041 check_accept_rtadv(int idx)
1042 {
1043 	struct ifinfo *ifi;
1044 
1045 	TAILQ_FOREACH(ifi, &ifilist, ifi_next) {
1046 		if (ifi->ifi_ifindex == idx)
1047 			break;
1048 	}
1049 	if (ifi == NULL) {
1050 		syslog(LOG_DEBUG,
1051 		    "<%s> if (idx=%d) not found.  Why?",
1052 		    __func__, idx);
1053 		return (0);
1054 	}
1055 #if (__FreeBSD_version < 900000)
1056 	/*
1057 	 * RA_RECV: !ip6.forwarding && ip6.accept_rtadv
1058 	 * RA_SEND: ip6.forwarding
1059 	 */
1060 	return ((getinet6sysctl(IPV6CTL_FORWARDING) == 0) &&
1061 	    (getinet6sysctl(IPV6CTL_ACCEPT_RTADV) == 1));
1062 #else
1063 	/*
1064 	 * RA_RECV: ND6_IFF_ACCEPT_RTADV
1065 	 * RA_SEND: ip6.forwarding
1066 	 */
1067 	if (update_ifinfo_nd_flags(ifi) != 0) {
1068 		syslog(LOG_ERR, "cannot get nd6 flags (idx=%d)", idx);
1069 		return (0);
1070 	}
1071 
1072 	return (ifi->ifi_nd_flags & ND6_IFF_ACCEPT_RTADV);
1073 #endif
1074 }
1075 
1076 static void
1077 ra_input(int len, struct nd_router_advert *nra,
1078 	 struct in6_pktinfo *pi, struct sockaddr_in6 *from)
1079 {
1080 	struct rainfo *rai;
1081 	struct ifinfo *ifi;
1082 	char ntopbuf[INET6_ADDRSTRLEN];
1083 	char ifnamebuf[IFNAMSIZ];
1084 	union nd_opt ndopts;
1085 	const char *on_off[] = {"OFF", "ON"};
1086 	uint32_t reachabletime, retranstimer, mtu;
1087 	int inconsistent = 0;
1088 	int error;
1089 
1090 	syslog(LOG_DEBUG, "<%s> RA received from %s on %s", __func__,
1091 	    inet_ntop(AF_INET6, &from->sin6_addr, ntopbuf, sizeof(ntopbuf)),
1092 	    if_indextoname(pi->ipi6_ifindex, ifnamebuf));
1093 
1094 	/* ND option check */
1095 	memset(&ndopts, 0, sizeof(ndopts));
1096 	TAILQ_INIT(&ndopts.opt_list);
1097 	error = nd6_options((struct nd_opt_hdr *)(nra + 1),
1098 	    len - sizeof(struct nd_router_advert), &ndopts,
1099 	    NDOPT_FLAG_SRCLINKADDR | NDOPT_FLAG_PREFIXINFO | NDOPT_FLAG_MTU |
1100 	    NDOPT_FLAG_RDNSS | NDOPT_FLAG_DNSSL);
1101 	if (error) {
1102 		syslog(LOG_INFO,
1103 		    "<%s> ND option check failed for an RA from %s on %s",
1104 		    __func__,
1105 		    inet_ntop(AF_INET6, &from->sin6_addr, ntopbuf,
1106 			sizeof(ntopbuf)), if_indextoname(pi->ipi6_ifindex,
1107 			ifnamebuf));
1108 		return;
1109 	}
1110 
1111 	/*
1112 	 * RA consistency check according to RFC 4861 6.2.7
1113 	 */
1114 	ifi = if_indextoifinfo(pi->ipi6_ifindex);
1115 	if (ifi->ifi_rainfo == NULL) {
1116 		syslog(LOG_INFO,
1117 		    "<%s> received RA from %s on non-advertising"
1118 		    " interface(%s)",
1119 		    __func__,
1120 		    inet_ntop(AF_INET6, &from->sin6_addr, ntopbuf,
1121 			sizeof(ntopbuf)), if_indextoname(pi->ipi6_ifindex,
1122 			ifnamebuf));
1123 		goto done;
1124 	}
1125 	rai = ifi->ifi_rainfo;
1126 	ifi->ifi_rainput++;
1127 	syslog(LOG_DEBUG, "<%s> ifi->ifi_rainput = %" PRIu64, __func__,
1128 	    ifi->ifi_rainput);
1129 
1130 	/* Cur Hop Limit value */
1131 	if (nra->nd_ra_curhoplimit && rai->rai_hoplimit &&
1132 	    nra->nd_ra_curhoplimit != rai->rai_hoplimit) {
1133 		syslog(LOG_NOTICE,
1134 		    "CurHopLimit inconsistent on %s:"
1135 		    " %d from %s, %d from us",
1136 		    ifi->ifi_ifname, nra->nd_ra_curhoplimit,
1137 		    inet_ntop(AF_INET6, &from->sin6_addr, ntopbuf,
1138 			sizeof(ntopbuf)), rai->rai_hoplimit);
1139 		inconsistent++;
1140 	}
1141 	/* M flag */
1142 	if ((nra->nd_ra_flags_reserved & ND_RA_FLAG_MANAGED) !=
1143 	    rai->rai_managedflg) {
1144 		syslog(LOG_NOTICE,
1145 		    "M flag inconsistent on %s:"
1146 		    " %s from %s, %s from us",
1147 		    ifi->ifi_ifname, on_off[!rai->rai_managedflg],
1148 		    inet_ntop(AF_INET6, &from->sin6_addr, ntopbuf,
1149 			sizeof(ntopbuf)), on_off[rai->rai_managedflg]);
1150 		inconsistent++;
1151 	}
1152 	/* O flag */
1153 	if ((nra->nd_ra_flags_reserved & ND_RA_FLAG_OTHER) !=
1154 	    rai->rai_otherflg) {
1155 		syslog(LOG_NOTICE,
1156 		    "O flag inconsistent on %s:"
1157 		    " %s from %s, %s from us",
1158 		    ifi->ifi_ifname, on_off[!rai->rai_otherflg],
1159 		    inet_ntop(AF_INET6, &from->sin6_addr, ntopbuf,
1160 			sizeof(ntopbuf)), on_off[rai->rai_otherflg]);
1161 		inconsistent++;
1162 	}
1163 	/* Reachable Time */
1164 	reachabletime = ntohl(nra->nd_ra_reachable);
1165 	if (reachabletime && rai->rai_reachabletime &&
1166 	    reachabletime != rai->rai_reachabletime) {
1167 		syslog(LOG_NOTICE,
1168 		    "ReachableTime inconsistent on %s:"
1169 		    " %d from %s, %d from us",
1170 		    ifi->ifi_ifname, reachabletime,
1171 		    inet_ntop(AF_INET6, &from->sin6_addr, ntopbuf,
1172 			sizeof(ntopbuf)), rai->rai_reachabletime);
1173 		inconsistent++;
1174 	}
1175 	/* Retrans Timer */
1176 	retranstimer = ntohl(nra->nd_ra_retransmit);
1177 	if (retranstimer && rai->rai_retranstimer &&
1178 	    retranstimer != rai->rai_retranstimer) {
1179 		syslog(LOG_NOTICE,
1180 		    "RetranceTimer inconsistent on %s:"
1181 		    " %d from %s, %d from us",
1182 		    ifi->ifi_ifname, retranstimer,
1183 		    inet_ntop(AF_INET6, &from->sin6_addr, ntopbuf,
1184 			sizeof(ntopbuf)), rai->rai_retranstimer);
1185 		inconsistent++;
1186 	}
1187 	/* Values in the MTU options */
1188 	if (ndopts.opt_mtu) {
1189 		mtu = ntohl(ndopts.opt_mtu->nd_opt_mtu_mtu);
1190 		if (mtu && rai->rai_linkmtu && mtu != rai->rai_linkmtu) {
1191 			syslog(LOG_NOTICE,
1192 			    "MTU option value inconsistent on %s:"
1193 			    " %d from %s, %d from us",
1194 			    ifi->ifi_ifname, mtu,
1195 			    inet_ntop(AF_INET6, &from->sin6_addr, ntopbuf,
1196 				sizeof(ntopbuf)), rai->rai_linkmtu);
1197 			inconsistent++;
1198 		}
1199 	}
1200 	/* Preferred and Valid Lifetimes for prefixes */
1201 	{
1202 		struct nd_optlist *nol;
1203 
1204 		if (ndopts.opt_pi)
1205 			if (prefix_check(ndopts.opt_pi, rai, from))
1206 				inconsistent++;
1207 
1208 		TAILQ_FOREACH(nol, &ndopts.opt_list, nol_next)
1209 			if (prefix_check((struct nd_opt_prefix_info *)nol->nol_opt,
1210 				rai, from))
1211 				inconsistent++;
1212 	}
1213 
1214 	if (inconsistent)
1215 		ifi->ifi_rainconsistent++;
1216 
1217   done:
1218 	free_ndopts(&ndopts);
1219 	return;
1220 }
1221 
1222 static uint32_t
1223 udiff(uint32_t u, uint32_t v)
1224 {
1225 	return (u >= v ? u - v : v - u);
1226 }
1227 
1228 /* return a non-zero value if the received prefix is inconsistent with ours */
1229 static int
1230 prefix_check(struct nd_opt_prefix_info *pinfo,
1231 	struct rainfo *rai, struct sockaddr_in6 *from)
1232 {
1233 	struct ifinfo *ifi;
1234 	uint32_t preferred_time, valid_time;
1235 	struct prefix *pfx;
1236 	int inconsistent = 0;
1237 	char ntopbuf[INET6_ADDRSTRLEN];
1238 	char prefixbuf[INET6_ADDRSTRLEN];
1239 	struct timespec now;
1240 
1241 #if 0				/* impossible */
1242 	if (pinfo->nd_opt_pi_type != ND_OPT_PREFIX_INFORMATION)
1243 		return (0);
1244 #endif
1245 	ifi = rai->rai_ifinfo;
1246 	/*
1247 	 * log if the adveritsed prefix has link-local scope(sanity check?)
1248 	 */
1249 	if (IN6_IS_ADDR_LINKLOCAL(&pinfo->nd_opt_pi_prefix))
1250 		syslog(LOG_INFO,
1251 		    "<%s> link-local prefix %s/%d is advertised "
1252 		    "from %s on %s",
1253 		    __func__,
1254 		    inet_ntop(AF_INET6, &pinfo->nd_opt_pi_prefix, prefixbuf,
1255 			sizeof(prefixbuf)),
1256 		    pinfo->nd_opt_pi_prefix_len,
1257 		    inet_ntop(AF_INET6, &from->sin6_addr, ntopbuf,
1258 			sizeof(ntopbuf)), ifi->ifi_ifname);
1259 
1260 	if ((pfx = find_prefix(rai, &pinfo->nd_opt_pi_prefix,
1261 		pinfo->nd_opt_pi_prefix_len)) == NULL) {
1262 		syslog(LOG_INFO,
1263 		    "<%s> prefix %s/%d from %s on %s is not in our list",
1264 		    __func__,
1265 		    inet_ntop(AF_INET6, &pinfo->nd_opt_pi_prefix, prefixbuf,
1266 			sizeof(prefixbuf)),
1267 		    pinfo->nd_opt_pi_prefix_len,
1268 		    inet_ntop(AF_INET6, &from->sin6_addr, ntopbuf,
1269 			sizeof(ntopbuf)), ifi->ifi_ifname);
1270 		return (0);
1271 	}
1272 
1273 	preferred_time = ntohl(pinfo->nd_opt_pi_preferred_time);
1274 	if (pfx->pfx_pltimeexpire) {
1275 		/*
1276 		 * The lifetime is decremented in real time, so we should
1277 		 * compare the expiration time.
1278 		 * (RFC 2461 Section 6.2.7.)
1279 		 * XXX: can we really expect that all routers on the link
1280 		 * have synchronized clocks?
1281 		 */
1282 		clock_gettime(CLOCK_MONOTONIC_FAST, &now);
1283 		preferred_time += now.tv_sec;
1284 
1285 		if (!pfx->pfx_timer && rai->rai_clockskew &&
1286 		    udiff(preferred_time, pfx->pfx_pltimeexpire) > rai->rai_clockskew) {
1287 			syslog(LOG_INFO,
1288 			    "<%s> preferred lifetime for %s/%d"
1289 			    " (decr. in real time) inconsistent on %s:"
1290 			    " %" PRIu32 " from %s, %" PRIu32 " from us",
1291 			    __func__,
1292 			    inet_ntop(AF_INET6, &pinfo->nd_opt_pi_prefix, prefixbuf,
1293 				sizeof(prefixbuf)),
1294 			    pinfo->nd_opt_pi_prefix_len,
1295 			    ifi->ifi_ifname, preferred_time,
1296 			    inet_ntop(AF_INET6, &from->sin6_addr, ntopbuf,
1297 				sizeof(ntopbuf)), pfx->pfx_pltimeexpire);
1298 			inconsistent++;
1299 		}
1300 	} else if (!pfx->pfx_timer && preferred_time != pfx->pfx_preflifetime)
1301 		syslog(LOG_INFO,
1302 		    "<%s> preferred lifetime for %s/%d"
1303 		    " inconsistent on %s:"
1304 		    " %d from %s, %d from us",
1305 		    __func__,
1306 		    inet_ntop(AF_INET6, &pinfo->nd_opt_pi_prefix, prefixbuf,
1307 			sizeof(prefixbuf)),
1308 		    pinfo->nd_opt_pi_prefix_len,
1309 		    ifi->ifi_ifname, preferred_time,
1310 		    inet_ntop(AF_INET6, &from->sin6_addr, ntopbuf,
1311 			sizeof(ntopbuf)), pfx->pfx_preflifetime);
1312 
1313 	valid_time = ntohl(pinfo->nd_opt_pi_valid_time);
1314 	if (pfx->pfx_vltimeexpire) {
1315 		clock_gettime(CLOCK_MONOTONIC_FAST, &now);
1316 		valid_time += now.tv_sec;
1317 
1318 		if (!pfx->pfx_timer && rai->rai_clockskew &&
1319 		    udiff(valid_time, pfx->pfx_vltimeexpire) > rai->rai_clockskew) {
1320 			syslog(LOG_INFO,
1321 			    "<%s> valid lifetime for %s/%d"
1322 			    " (decr. in real time) inconsistent on %s:"
1323 			    " %d from %s, %" PRIu32 " from us",
1324 			    __func__,
1325 			    inet_ntop(AF_INET6, &pinfo->nd_opt_pi_prefix, prefixbuf,
1326 				sizeof(prefixbuf)),
1327 			    pinfo->nd_opt_pi_prefix_len,
1328 			    ifi->ifi_ifname, preferred_time,
1329 			    inet_ntop(AF_INET6, &from->sin6_addr, ntopbuf,
1330 				sizeof(ntopbuf)), pfx->pfx_vltimeexpire);
1331 			inconsistent++;
1332 		}
1333 	} else if (!pfx->pfx_timer && valid_time != pfx->pfx_validlifetime) {
1334 		syslog(LOG_INFO,
1335 		    "<%s> valid lifetime for %s/%d"
1336 		    " inconsistent on %s:"
1337 		    " %d from %s, %d from us",
1338 		    __func__,
1339 		    inet_ntop(AF_INET6, &pinfo->nd_opt_pi_prefix, prefixbuf,
1340 			sizeof(prefixbuf)),
1341 		    pinfo->nd_opt_pi_prefix_len,
1342 		    ifi->ifi_ifname, valid_time,
1343 		    inet_ntop(AF_INET6, &from->sin6_addr, ntopbuf,
1344 			sizeof(ntopbuf)), pfx->pfx_validlifetime);
1345 		inconsistent++;
1346 	}
1347 
1348 	return (inconsistent);
1349 }
1350 
1351 struct prefix *
1352 find_prefix(struct rainfo *rai, struct in6_addr *prefix, int plen)
1353 {
1354 	struct prefix *pfx;
1355 	int bytelen, bitlen;
1356 	char bitmask;
1357 
1358 	TAILQ_FOREACH(pfx, &rai->rai_prefix, pfx_next) {
1359 		if (plen != pfx->pfx_prefixlen)
1360 			continue;
1361 
1362 		bytelen = plen / 8;
1363 		bitlen = plen % 8;
1364 		bitmask = 0xff << (8 - bitlen);
1365 
1366 		if (memcmp((void *)prefix, (void *)&pfx->pfx_prefix, bytelen))
1367 			continue;
1368 
1369 		if (bitlen == 0 ||
1370 		    ((prefix->s6_addr[bytelen] & bitmask) ==
1371 		     (pfx->pfx_prefix.s6_addr[bytelen] & bitmask))) {
1372 			return (pfx);
1373 		}
1374 	}
1375 
1376 	return (NULL);
1377 }
1378 
1379 /* check if p0/plen0 matches p1/plen1; return 1 if matches, otherwise 0. */
1380 int
1381 prefix_match(struct in6_addr *p0, int plen0,
1382 	struct in6_addr *p1, int plen1)
1383 {
1384 	int bytelen, bitlen;
1385 	char bitmask;
1386 
1387 	if (plen0 < plen1)
1388 		return (0);
1389 
1390 	bytelen = plen1 / 8;
1391 	bitlen = plen1 % 8;
1392 	bitmask = 0xff << (8 - bitlen);
1393 
1394 	if (memcmp((void *)p0, (void *)p1, bytelen))
1395 		return (0);
1396 
1397 	if (bitlen == 0 ||
1398 	    ((p0->s6_addr[bytelen] & bitmask) ==
1399 	     (p1->s6_addr[bytelen] & bitmask))) {
1400 		return (1);
1401 	}
1402 
1403 	return (0);
1404 }
1405 
1406 static int
1407 nd6_options(struct nd_opt_hdr *hdr, int limit,
1408 	union nd_opt *ndopts, uint32_t optflags)
1409 {
1410 	int optlen = 0;
1411 
1412 	for (; limit > 0; limit -= optlen) {
1413 		if ((size_t)limit < sizeof(struct nd_opt_hdr)) {
1414 			syslog(LOG_INFO, "<%s> short option header", __func__);
1415 			goto bad;
1416 		}
1417 
1418 		hdr = (struct nd_opt_hdr *)((caddr_t)hdr + optlen);
1419 		if (hdr->nd_opt_len == 0) {
1420 			syslog(LOG_INFO,
1421 			    "<%s> bad ND option length(0) (type = %d)",
1422 			    __func__, hdr->nd_opt_type);
1423 			goto bad;
1424 		}
1425 		optlen = hdr->nd_opt_len << 3;
1426 		if (optlen > limit) {
1427 			syslog(LOG_INFO, "<%s> short option", __func__);
1428 			goto bad;
1429 		}
1430 
1431 		if (hdr->nd_opt_type > ND_OPT_MTU &&
1432 		    hdr->nd_opt_type != ND_OPT_RDNSS &&
1433 		    hdr->nd_opt_type != ND_OPT_DNSSL) {
1434 			syslog(LOG_INFO, "<%s> unknown ND option(type %d)",
1435 			    __func__, hdr->nd_opt_type);
1436 			continue;
1437 		}
1438 
1439 		if ((ndopt_flags[hdr->nd_opt_type] & optflags) == 0) {
1440 			syslog(LOG_INFO, "<%s> unexpected ND option(type %d)",
1441 			    __func__, hdr->nd_opt_type);
1442 			continue;
1443 		}
1444 
1445 		/*
1446 		 * Option length check.  Do it here for all fixed-length
1447 		 * options.
1448 		 */
1449 		switch (hdr->nd_opt_type) {
1450 		case ND_OPT_MTU:
1451 			if (optlen == sizeof(struct nd_opt_mtu))
1452 				break;
1453 			goto skip;
1454 		case ND_OPT_RDNSS:
1455 			if (optlen >= 24 &&
1456 			    (optlen - sizeof(struct nd_opt_rdnss)) % 16 == 0)
1457 				break;
1458 			goto skip;
1459 		case ND_OPT_DNSSL:
1460 			if (optlen >= 16 &&
1461 			    (optlen - sizeof(struct nd_opt_dnssl)) % 8 == 0)
1462 				break;
1463 			goto skip;
1464 		case ND_OPT_PREFIX_INFORMATION:
1465 			if (optlen == sizeof(struct nd_opt_prefix_info))
1466 				break;
1467 skip:
1468 			syslog(LOG_INFO, "<%s> invalid option length",
1469 			    __func__);
1470 			continue;
1471 		}
1472 
1473 		switch (hdr->nd_opt_type) {
1474 		case ND_OPT_TARGET_LINKADDR:
1475 		case ND_OPT_REDIRECTED_HEADER:
1476 		case ND_OPT_RDNSS:
1477 		case ND_OPT_DNSSL:
1478 			break;	/* we don't care about these options */
1479 		case ND_OPT_SOURCE_LINKADDR:
1480 		case ND_OPT_MTU:
1481 			if (ndopts->opt_array[hdr->nd_opt_type]) {
1482 				syslog(LOG_INFO,
1483 				    "<%s> duplicated ND option (type = %d)",
1484 				    __func__, hdr->nd_opt_type);
1485 			}
1486 			ndopts->opt_array[hdr->nd_opt_type] = hdr;
1487 			break;
1488 		case ND_OPT_PREFIX_INFORMATION:
1489 		{
1490 			struct nd_optlist *nol;
1491 
1492 			if (ndopts->opt_pi == 0) {
1493 				ndopts->opt_pi =
1494 				    (struct nd_opt_prefix_info *)hdr;
1495 				continue;
1496 			}
1497 			nol = malloc(sizeof(*nol));
1498 			if (nol == NULL) {
1499 				syslog(LOG_ERR, "<%s> can't allocate memory",
1500 				    __func__);
1501 				goto bad;
1502 			}
1503 			nol->nol_opt = hdr;
1504 			TAILQ_INSERT_TAIL(&(ndopts->opt_list), nol, nol_next);
1505 
1506 			break;
1507 		}
1508 		default:	/* impossible */
1509 			break;
1510 		}
1511 	}
1512 
1513 	return (0);
1514 
1515   bad:
1516 	free_ndopts(ndopts);
1517 
1518 	return (-1);
1519 }
1520 
1521 static void
1522 free_ndopts(union nd_opt *ndopts)
1523 {
1524 	struct nd_optlist *nol;
1525 
1526 	while ((nol = TAILQ_FIRST(&ndopts->opt_list)) != NULL) {
1527 		TAILQ_REMOVE(&ndopts->opt_list, nol, nol_next);
1528 		free(nol);
1529 	}
1530 }
1531 
1532 void
1533 sock_open(struct sockinfo *s)
1534 {
1535 	struct icmp6_filter filt;
1536 	int on;
1537 	/* XXX: should be max MTU attached to the node */
1538 	static char answer[1500];
1539 
1540 	syslog(LOG_DEBUG, "<%s> enter", __func__);
1541 
1542 	if (s == NULL) {
1543 		syslog(LOG_ERR, "<%s> internal error", __func__);
1544 		exit(1);
1545 	}
1546 	rcvcmsgbuflen = CMSG_SPACE(sizeof(struct in6_pktinfo)) +
1547 	    CMSG_SPACE(sizeof(int));
1548 	rcvcmsgbuf = (char *)malloc(rcvcmsgbuflen);
1549 	if (rcvcmsgbuf == NULL) {
1550 		syslog(LOG_ERR, "<%s> not enough core", __func__);
1551 		exit(1);
1552 	}
1553 
1554 	sndcmsgbuflen = CMSG_SPACE(sizeof(struct in6_pktinfo)) +
1555 	    CMSG_SPACE(sizeof(int));
1556 	sndcmsgbuf = (char *)malloc(sndcmsgbuflen);
1557 	if (sndcmsgbuf == NULL) {
1558 		syslog(LOG_ERR, "<%s> not enough core", __func__);
1559 		exit(1);
1560 	}
1561 
1562 	if ((s->si_fd = socket(AF_INET6, SOCK_RAW, IPPROTO_ICMPV6)) < 0) {
1563 		syslog(LOG_ERR, "<%s> socket: %s", __func__, strerror(errno));
1564 		exit(1);
1565 	}
1566 	/* specify to tell receiving interface */
1567 	on = 1;
1568 	if (setsockopt(s->si_fd, IPPROTO_IPV6, IPV6_RECVPKTINFO, &on,
1569 	    sizeof(on)) < 0) {
1570 		syslog(LOG_ERR, "<%s> IPV6_RECVPKTINFO: %s", __func__,
1571 		    strerror(errno));
1572 		exit(1);
1573 	}
1574 	on = 1;
1575 	/* specify to tell value of hoplimit field of received IP6 hdr */
1576 	if (setsockopt(s->si_fd, IPPROTO_IPV6, IPV6_RECVHOPLIMIT, &on,
1577 		sizeof(on)) < 0) {
1578 		syslog(LOG_ERR, "<%s> IPV6_RECVHOPLIMIT: %s", __func__,
1579 		    strerror(errno));
1580 		exit(1);
1581 	}
1582 	ICMP6_FILTER_SETBLOCKALL(&filt);
1583 	ICMP6_FILTER_SETPASS(ND_ROUTER_SOLICIT, &filt);
1584 	ICMP6_FILTER_SETPASS(ND_ROUTER_ADVERT, &filt);
1585 	if (mcastif != NULL)
1586 		ICMP6_FILTER_SETPASS(ICMP6_ROUTER_RENUMBERING, &filt);
1587 
1588 	if (setsockopt(s->si_fd, IPPROTO_ICMPV6, ICMP6_FILTER, &filt,
1589 	    sizeof(filt)) < 0) {
1590 		syslog(LOG_ERR, "<%s> IICMP6_FILTER: %s",
1591 		    __func__, strerror(errno));
1592 		exit(1);
1593 	}
1594 
1595 	/* initialize msghdr for receiving packets */
1596 	rcviov[0].iov_base = (caddr_t)answer;
1597 	rcviov[0].iov_len = sizeof(answer);
1598 	rcvmhdr.msg_name = (caddr_t)&rcvfrom;
1599 	rcvmhdr.msg_namelen = sizeof(rcvfrom);
1600 	rcvmhdr.msg_iov = rcviov;
1601 	rcvmhdr.msg_iovlen = 1;
1602 	rcvmhdr.msg_control = (caddr_t) rcvcmsgbuf;
1603 	rcvmhdr.msg_controllen = rcvcmsgbuflen;
1604 
1605 	/* initialize msghdr for sending packets */
1606 	sndmhdr.msg_namelen = sizeof(struct sockaddr_in6);
1607 	sndmhdr.msg_iov = sndiov;
1608 	sndmhdr.msg_iovlen = 1;
1609 	sndmhdr.msg_control = (caddr_t)sndcmsgbuf;
1610 	sndmhdr.msg_controllen = sndcmsgbuflen;
1611 
1612 	return;
1613 }
1614 
1615 /* open a routing socket to watch the routing table */
1616 static void
1617 rtsock_open(struct sockinfo *s)
1618 {
1619 	if (s == NULL) {
1620 		syslog(LOG_ERR, "<%s> internal error", __func__);
1621 		exit(1);
1622 	}
1623 	if ((s->si_fd = socket(PF_ROUTE, SOCK_RAW, 0)) < 0) {
1624 		syslog(LOG_ERR,
1625 		    "<%s> socket: %s", __func__, strerror(errno));
1626 		exit(1);
1627 	}
1628 }
1629 
1630 struct ifinfo *
1631 if_indextoifinfo(int idx)
1632 {
1633 	struct ifinfo *ifi;
1634 	char *name, name0[IFNAMSIZ];
1635 
1636 	/* Check if the interface has a valid name or not. */
1637 	if (if_indextoname(idx, name0) == NULL)
1638 		return (NULL);
1639 
1640 	TAILQ_FOREACH(ifi, &ifilist, ifi_next) {
1641 		if (ifi->ifi_ifindex == idx)
1642 			return (ifi);
1643 	}
1644 
1645 	if (ifi != NULL)
1646 		syslog(LOG_DEBUG, "<%s> ifi found (idx=%d)",
1647 		    __func__, idx);
1648 	else
1649 		syslog(LOG_DEBUG, "<%s> ifi not found (idx=%d)",
1650 		    __func__, idx);
1651 
1652 	return (NULL);		/* search failed */
1653 }
1654 
1655 void
1656 ra_output(struct ifinfo *ifi)
1657 {
1658 	int i;
1659 	struct cmsghdr *cm;
1660 	struct in6_pktinfo *pi;
1661 	struct soliciter *sol;
1662 	struct rainfo *rai;
1663 
1664 	switch (ifi->ifi_state) {
1665 	case IFI_STATE_CONFIGURED:
1666 		rai = ifi->ifi_rainfo;
1667 		break;
1668 	case IFI_STATE_TRANSITIVE:
1669 		rai = ifi->ifi_rainfo_trans;
1670 		break;
1671 	case IFI_STATE_UNCONFIGURED:
1672 		syslog(LOG_DEBUG, "<%s> %s is unconfigured.  "
1673 		    "Skip sending RAs.",
1674 		    __func__, ifi->ifi_ifname);
1675 		return;
1676 	default:
1677 		rai = NULL;
1678 	}
1679 	if (rai == NULL) {
1680 		syslog(LOG_DEBUG, "<%s> rainfo is NULL on %s."
1681 		    "Skip sending RAs.",
1682 		    __func__, ifi->ifi_ifname);
1683 		return;
1684 	}
1685 	if (!(ifi->ifi_flags & IFF_UP)) {
1686 		syslog(LOG_DEBUG, "<%s> %s is not up.  "
1687 		    "Skip sending RAs.",
1688 		    __func__, ifi->ifi_ifname);
1689 		return;
1690 	}
1691 	/*
1692 	 * Check lifetime, ACCEPT_RTADV flag, and ip6.forwarding.
1693 	 *
1694 	 * (lifetime == 0) = output
1695 	 * (lifetime != 0 && (check_accept_rtadv()) = no output
1696 	 *
1697 	 * Basically, hosts MUST NOT send Router Advertisement
1698 	 * messages at any time (RFC 4861, Section 6.2.3). However, it
1699 	 * would sometimes be useful to allow hosts to advertise some
1700 	 * parameters such as prefix information and link MTU. Thus,
1701 	 * we allow hosts to invoke rtadvd only when router lifetime
1702 	 * (on every advertising interface) is explicitly set
1703 	 * zero. (see also the above section)
1704 	 */
1705 	syslog(LOG_DEBUG,
1706 	    "<%s> check lifetime=%d, ACCEPT_RTADV=%d, ip6.forwarding=%d "
1707 	    "on %s", __func__,
1708 	    rai->rai_lifetime,
1709 	    check_accept_rtadv(ifi->ifi_ifindex),
1710 	    getinet6sysctl(IPV6CTL_FORWARDING),
1711 	    ifi->ifi_ifname);
1712 
1713 	if (rai->rai_lifetime != 0) {
1714 		if (getinet6sysctl(IPV6CTL_FORWARDING) == 0) {
1715 			syslog(LOG_ERR,
1716 			    "non-zero lifetime RA "
1717 			    "but net.inet6.ip6.forwarding=0.  "
1718 			    "Ignored.");
1719 			return;
1720 		}
1721 		if (check_accept_rtadv(ifi->ifi_ifindex)) {
1722 			syslog(LOG_ERR,
1723 			    "non-zero lifetime RA "
1724 			    "on RA receiving interface %s."
1725 			    "  Ignored.", ifi->ifi_ifname);
1726 			return;
1727 		}
1728 	}
1729 
1730 	make_packet(rai);	/* XXX: inefficient */
1731 
1732 	sndmhdr.msg_name = (caddr_t)&sin6_linklocal_allnodes;
1733 	sndmhdr.msg_iov[0].iov_base = (caddr_t)rai->rai_ra_data;
1734 	sndmhdr.msg_iov[0].iov_len = rai->rai_ra_datalen;
1735 
1736 	cm = CMSG_FIRSTHDR(&sndmhdr);
1737 	/* specify the outgoing interface */
1738 	cm->cmsg_level = IPPROTO_IPV6;
1739 	cm->cmsg_type = IPV6_PKTINFO;
1740 	cm->cmsg_len = CMSG_LEN(sizeof(struct in6_pktinfo));
1741 	pi = (struct in6_pktinfo *)CMSG_DATA(cm);
1742 	memset(&pi->ipi6_addr, 0, sizeof(pi->ipi6_addr));	/*XXX*/
1743 	pi->ipi6_ifindex = ifi->ifi_ifindex;
1744 
1745 	/* specify the hop limit of the packet */
1746 	{
1747 		int hoplimit = 255;
1748 
1749 		cm = CMSG_NXTHDR(&sndmhdr, cm);
1750 		cm->cmsg_level = IPPROTO_IPV6;
1751 		cm->cmsg_type = IPV6_HOPLIMIT;
1752 		cm->cmsg_len = CMSG_LEN(sizeof(int));
1753 		memcpy(CMSG_DATA(cm), &hoplimit, sizeof(int));
1754 	}
1755 
1756 	syslog(LOG_DEBUG,
1757 	    "<%s> send RA on %s, # of RS waitings = %d",
1758 	    __func__, ifi->ifi_ifname, ifi->ifi_rs_waitcount);
1759 
1760 	i = sendmsg(sock.si_fd, &sndmhdr, 0);
1761 
1762 	if (i < 0 || (size_t)i != rai->rai_ra_datalen)  {
1763 		if (i < 0) {
1764 			syslog(LOG_ERR, "<%s> sendmsg on %s: %s",
1765 			    __func__, ifi->ifi_ifname,
1766 			    strerror(errno));
1767 		}
1768 	}
1769 
1770 	/*
1771 	 * unicast advertisements
1772 	 * XXX commented out.  reason: though spec does not forbit it, unicast
1773 	 * advert does not really help
1774 	 */
1775 	while ((sol = TAILQ_FIRST(&rai->rai_soliciter)) != NULL) {
1776 		TAILQ_REMOVE(&rai->rai_soliciter, sol, sol_next);
1777 		free(sol);
1778 	}
1779 
1780 	/* update timestamp */
1781 	clock_gettime(CLOCK_MONOTONIC_FAST, &ifi->ifi_ra_lastsent);
1782 
1783 	/* update counter */
1784 	ifi->ifi_rs_waitcount = 0;
1785 	ifi->ifi_raoutput++;
1786 
1787 	switch (ifi->ifi_state) {
1788 	case IFI_STATE_CONFIGURED:
1789 		if (ifi->ifi_burstcount > 0)
1790 			ifi->ifi_burstcount--;
1791 		break;
1792 	case IFI_STATE_TRANSITIVE:
1793 		ifi->ifi_burstcount--;
1794 		if (ifi->ifi_burstcount == 0) {
1795 			if (ifi->ifi_rainfo == ifi->ifi_rainfo_trans) {
1796 				/* Initial burst finished. */
1797 				if (ifi->ifi_rainfo_trans != NULL)
1798 					ifi->ifi_rainfo_trans = NULL;
1799 			}
1800 
1801 			/* Remove burst RA information */
1802 			if (ifi->ifi_rainfo_trans != NULL) {
1803 				rm_rainfo(ifi->ifi_rainfo_trans);
1804 				ifi->ifi_rainfo_trans = NULL;
1805 			}
1806 
1807 			if (ifi->ifi_rainfo != NULL) {
1808 				/*
1809 				 * TRANSITIVE -> CONFIGURED
1810 				 *
1811 				 * After initial burst or transition from
1812 				 * one configuration to another,
1813 				 * ifi_rainfo always points to the next RA
1814 				 * information.
1815 				 */
1816 				ifi->ifi_state = IFI_STATE_CONFIGURED;
1817 				syslog(LOG_DEBUG,
1818 				    "<%s> ifname=%s marked as "
1819 				    "CONFIGURED.", __func__,
1820 				    ifi->ifi_ifname);
1821 			} else {
1822 				/*
1823 				 * TRANSITIVE -> UNCONFIGURED
1824 				 *
1825 				 * If ifi_rainfo points to NULL, this
1826 				 * interface is shutting down.
1827 				 *
1828 				 */
1829 				int error;
1830 
1831 				ifi->ifi_state = IFI_STATE_UNCONFIGURED;
1832 				syslog(LOG_DEBUG,
1833 				    "<%s> ifname=%s marked as "
1834 				    "UNCONFIGURED.", __func__,
1835 				    ifi->ifi_ifname);
1836 				error = sock_mc_leave(&sock,
1837 				    ifi->ifi_ifindex);
1838 				if (error)
1839 					exit(1);
1840 			}
1841 		}
1842 		break;
1843 	}
1844 }
1845 
1846 /* process RA timer */
1847 struct rtadvd_timer *
1848 ra_timeout(void *arg)
1849 {
1850 	struct ifinfo *ifi;
1851 
1852 	ifi = (struct ifinfo *)arg;
1853 	syslog(LOG_DEBUG, "<%s> RA timer on %s is expired",
1854 	    __func__, ifi->ifi_ifname);
1855 
1856 	ra_output(ifi);
1857 
1858 	return (ifi->ifi_ra_timer);
1859 }
1860 
1861 /* update RA timer */
1862 void
1863 ra_timer_update(void *arg, struct timespec *tm)
1864 {
1865 	uint16_t interval;
1866 	struct rainfo *rai;
1867 	struct ifinfo *ifi;
1868 
1869 	ifi = (struct ifinfo *)arg;
1870 	rai = ifi->ifi_rainfo;
1871 	interval = 0;
1872 
1873 	switch (ifi->ifi_state) {
1874 	case IFI_STATE_UNCONFIGURED:
1875 		return;
1876 		break;
1877 	case IFI_STATE_CONFIGURED:
1878 		/*
1879 		 * Whenever a multicast advertisement is sent from
1880 		 * an interface, the timer is reset to a
1881 		 * uniformly-distributed random value between the
1882 		 * interface's configured MinRtrAdvInterval and
1883 		 * MaxRtrAdvInterval (RFC4861 6.2.4).
1884 		 */
1885 		interval = rai->rai_mininterval;
1886 		interval += arc4random_uniform(rai->rai_maxinterval -
1887 		    rai->rai_mininterval);
1888 		break;
1889 	case IFI_STATE_TRANSITIVE:
1890 		/*
1891 		 * For the first few advertisements (up to
1892 		 * MAX_INITIAL_RTR_ADVERTISEMENTS), if the randomly chosen
1893 		 * interval is greater than
1894 		 * MAX_INITIAL_RTR_ADVERT_INTERVAL, the timer SHOULD be
1895 		 * set to MAX_INITIAL_RTR_ADVERT_INTERVAL instead.  (RFC
1896 		 * 4861 6.2.4)
1897 		 *
1898 		 * In such cases, the router SHOULD transmit one or more
1899 		 * (but not more than MAX_FINAL_RTR_ADVERTISEMENTS) final
1900 		 * multicast Router Advertisements on the interface with a
1901 		 * Router Lifetime field of zero.  (RFC 4861 6.2.5)
1902 		 */
1903 		interval = ifi->ifi_burstinterval;
1904 		break;
1905 	}
1906 
1907 	tm->tv_sec = interval;
1908 	tm->tv_nsec = 0;
1909 
1910 	syslog(LOG_DEBUG,
1911 	    "<%s> RA timer on %s is set to %ld:%ld",
1912 	    __func__, ifi->ifi_ifname,
1913 	    (long int)tm->tv_sec, (long int)tm->tv_nsec / 1000);
1914 
1915 	return;
1916 }
1917