Home | History | Annotate | Line # | Download | only in rtadvd
config.c revision 1.11
      1  1.11  itojun /*	$NetBSD: config.c,v 1.11 2001/02/04 06:19:40 itojun Exp $	*/
      2  1.11  itojun /*	$KAME: config.c,v 1.32 2001/02/01 09:12:08 jinmei 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.8  itojun #include <sys/sysctl.h>
     38   1.1  itojun 
     39   1.1  itojun #include <net/if.h>
     40   1.1  itojun #if defined(__FreeBSD__) && __FreeBSD__ >= 3
     41   1.1  itojun #include <net/if_var.h>
     42   1.1  itojun #endif /* __FreeBSD__ >= 3 */
     43   1.1  itojun #include <net/route.h>
     44   1.1  itojun #include <net/if_dl.h>
     45   1.1  itojun 
     46   1.1  itojun #include <netinet/in.h>
     47   1.1  itojun #include <netinet/in_var.h>
     48   1.5  itojun #include <netinet/ip6.h>
     49   1.1  itojun #include <netinet6/ip6_var.h>
     50   1.5  itojun #include <netinet/icmp6.h>
     51   1.6  itojun #ifdef MIP6
     52   1.6  itojun #include <netinet6/mip6.h>
     53   1.6  itojun #endif
     54   1.1  itojun 
     55   1.1  itojun #include <arpa/inet.h>
     56   1.1  itojun 
     57   1.1  itojun #include <stdio.h>
     58   1.1  itojun #include <syslog.h>
     59   1.1  itojun #include <errno.h>
     60   1.1  itojun #include <string.h>
     61   1.1  itojun #include <stdlib.h>
     62   1.7  itojun #if defined(__NetBSD__) || defined(__OpenBSD__)
     63   1.1  itojun #include <search.h>
     64   1.1  itojun #endif
     65   1.1  itojun #include <unistd.h>
     66   1.8  itojun #include <ifaddrs.h>
     67   1.1  itojun 
     68   1.1  itojun #include "rtadvd.h"
     69   1.1  itojun #include "advcap.h"
     70   1.1  itojun #include "timer.h"
     71   1.1  itojun #include "if.h"
     72   1.1  itojun #include "config.h"
     73   1.1  itojun 
     74   1.1  itojun static void makeentry __P((char *, int, char *, int));
     75   1.1  itojun static void get_prefix __P((struct rainfo *));
     76   1.8  itojun static int getinet6sysctl __P((int));
     77   1.1  itojun 
     78   1.1  itojun extern struct rainfo *ralist;
     79   1.1  itojun 
     80   1.1  itojun void
     81   1.1  itojun getconfig(intface)
     82   1.1  itojun 	char *intface;
     83   1.1  itojun {
     84   1.1  itojun 	int stat, pfxs, i;
     85   1.1  itojun 	char tbuf[BUFSIZ];
     86   1.1  itojun 	struct rainfo *tmp;
     87   1.2  itojun 	long val;
     88  1.11  itojun 	long long val64;
     89   1.1  itojun 	char buf[BUFSIZ];
     90   1.1  itojun 	char *bp = buf;
     91   1.1  itojun 	char *addr;
     92   1.8  itojun 	static int forwarding = -1;
     93   1.1  itojun 
     94   1.1  itojun #define MUSTHAVE(var, cap)	\
     95   1.6  itojun     do {								\
     96   1.1  itojun 	int t;								\
     97   1.1  itojun 	if ((t = agetnum(cap)) < 0) {					\
     98   1.1  itojun 		fprintf(stderr, "rtadvd: need %s for interface %s\n",	\
     99   1.1  itojun 			cap, intface);					\
    100   1.1  itojun 		exit(1);						\
    101   1.1  itojun 	}								\
    102   1.1  itojun 	var = t;							\
    103   1.6  itojun      } while (0)
    104   1.1  itojun #define MAYHAVE(var, cap, def)	\
    105   1.6  itojun      do {								\
    106   1.1  itojun 	if ((var = agetnum(cap)) < 0)					\
    107   1.1  itojun 		var = def;						\
    108   1.6  itojun      } while (0)
    109   1.1  itojun 
    110   1.1  itojun 	if ((stat = agetent(tbuf, intface)) <= 0) {
    111   1.1  itojun 		memset(tbuf, 0, sizeof(tbuf));
    112   1.1  itojun 		syslog(LOG_INFO,
    113   1.1  itojun 		       "<%s> %s isn't defined in the configuration file"
    114   1.1  itojun 		       " or the configuration file doesn't exist."
    115   1.1  itojun 		       " Treat it as default",
    116   1.1  itojun 		        __FUNCTION__, intface);
    117   1.1  itojun 	}
    118   1.1  itojun 
    119   1.1  itojun 	tmp = (struct rainfo *)malloc(sizeof(*ralist));
    120   1.1  itojun 	memset(tmp, 0, sizeof(*tmp));
    121   1.1  itojun 	tmp->prefix.next = tmp->prefix.prev = &tmp->prefix;
    122   1.1  itojun 
    123   1.8  itojun 	/* check if we are allowed to forward packets (if not determined) */
    124   1.8  itojun 	if (forwarding < 0) {
    125   1.8  itojun 		if ((forwarding = getinet6sysctl(IPV6CTL_FORWARDING)) < 0)
    126   1.8  itojun 			exit(1);
    127   1.8  itojun 	}
    128   1.8  itojun 
    129   1.1  itojun 	/* get interface information */
    130   1.1  itojun 	if (agetflag("nolladdr"))
    131   1.1  itojun 		tmp->advlinkopt = 0;
    132   1.1  itojun 	else
    133   1.1  itojun 		tmp->advlinkopt = 1;
    134   1.1  itojun 	if (tmp->advlinkopt) {
    135   1.1  itojun 		if ((tmp->sdl = if_nametosdl(intface)) == NULL) {
    136   1.1  itojun 			syslog(LOG_ERR,
    137   1.1  itojun 			       "<%s> can't get information of %s",
    138   1.1  itojun 			       __FUNCTION__, intface);
    139   1.1  itojun 			exit(1);
    140   1.1  itojun 		}
    141   1.1  itojun 		tmp->ifindex = tmp->sdl->sdl_index;
    142   1.1  itojun 	} else
    143   1.1  itojun 		tmp->ifindex = if_nametoindex(intface);
    144   1.1  itojun 	strncpy(tmp->ifname, intface, sizeof(tmp->ifname));
    145   1.1  itojun 	if ((tmp->phymtu = if_getmtu(intface)) == 0) {
    146   1.1  itojun 		tmp->phymtu = IPV6_MMTU;
    147   1.1  itojun 		syslog(LOG_WARNING,
    148   1.1  itojun 		       "<%s> can't get interface mtu of %s. Treat as %d",
    149   1.1  itojun 		       __FUNCTION__, intface, IPV6_MMTU);
    150   1.1  itojun 	}
    151   1.1  itojun 
    152   1.1  itojun 	/*
    153   1.1  itojun 	 * set router configuration variables.
    154   1.1  itojun 	 */
    155   1.2  itojun 	MAYHAVE(val, "maxinterval", DEF_MAXRTRADVINTERVAL);
    156   1.2  itojun 	if (val < MIN_MAXINTERVAL || val > MAX_MAXINTERVAL) {
    157   1.1  itojun 		syslog(LOG_ERR,
    158   1.6  itojun 		       "<%s> maxinterval must be between %e and %u",
    159   1.1  itojun 		       __FUNCTION__, MIN_MAXINTERVAL, MAX_MAXINTERVAL);
    160   1.1  itojun 		exit(1);
    161   1.1  itojun 	}
    162   1.2  itojun 	tmp->maxinterval = (u_int)val;
    163   1.2  itojun 	MAYHAVE(val, "mininterval", tmp->maxinterval/3);
    164   1.2  itojun 	if (val < MIN_MININTERVAL || val > (tmp->maxinterval * 3) / 4) {
    165   1.1  itojun 		syslog(LOG_ERR,
    166   1.6  itojun 		       "<%s> mininterval must be between %e and %d",
    167   1.1  itojun 		       __FUNCTION__,
    168   1.1  itojun 		       MIN_MININTERVAL,
    169   1.1  itojun 		       (tmp->maxinterval * 3) / 4);
    170   1.1  itojun 		exit(1);
    171   1.1  itojun 	}
    172   1.2  itojun 	tmp->mininterval = (u_int)val;
    173   1.1  itojun 
    174   1.2  itojun 	MAYHAVE(val, "chlim", DEF_ADVCURHOPLIMIT);
    175   1.2  itojun 	tmp->hoplimit = val & 0xff;
    176   1.1  itojun 
    177   1.2  itojun 	MAYHAVE(val, "raflags", 0);
    178   1.2  itojun 	tmp->managedflg= val & ND_RA_FLAG_MANAGED;
    179   1.2  itojun 	tmp->otherflg = val & ND_RA_FLAG_OTHER;
    180   1.6  itojun #ifdef MIP6
    181   1.6  itojun 	if (mobileip6)
    182   1.6  itojun 		tmp->haflg = val & ND_RA_FLAG_HA;
    183   1.6  itojun #endif
    184   1.2  itojun 
    185   1.2  itojun 	MAYHAVE(val, "rltime", tmp->maxinterval * 3);
    186   1.2  itojun 	if (val && (val < tmp->maxinterval || val > MAXROUTERLIFETIME)) {
    187   1.1  itojun 		syslog(LOG_ERR,
    188   1.1  itojun 		       "<%s> router lifetime on %s must be 0 or"
    189   1.1  itojun 		       " between %d and %d",
    190   1.1  itojun 		       __FUNCTION__, intface,
    191   1.1  itojun 		       tmp->maxinterval, MAXROUTERLIFETIME);
    192   1.1  itojun 		exit(1);
    193   1.1  itojun 	}
    194   1.8  itojun 	/*
    195   1.8  itojun 	 * Basically, hosts MUST NOT send Router Advertisement messages at any
    196   1.8  itojun 	 * time (RFC 2461, Section 6.2.3). However, it would sometimes be
    197   1.8  itojun 	 * useful to allow hosts to advertise some parameters such as prefix
    198   1.8  itojun 	 * information and link MTU. Thus, we allow hosts to invoke rtadvd
    199   1.8  itojun 	 * only when router lifetime (on every advertising interface) is
    200   1.8  itojun 	 * explicitly set zero. (see also the above section)
    201   1.8  itojun 	 */
    202   1.8  itojun 	if (val && forwarding == 0) {
    203   1.8  itojun 		syslog(LOG_WARNING,
    204   1.8  itojun 		       "<%s> non zero router lifetime is specified for %s, "
    205   1.8  itojun 		       "which must not be allowed for hosts.",
    206   1.8  itojun 		       __FUNCTION__, intface);
    207   1.8  itojun 		exit(1);
    208   1.8  itojun 	}
    209   1.2  itojun 	tmp->lifetime = val & 0xffff;
    210   1.1  itojun 
    211   1.2  itojun 	MAYHAVE(val, "rtime", DEF_ADVREACHABLETIME);
    212   1.2  itojun 	if (val > MAXREACHABLETIME) {
    213   1.1  itojun 		syslog(LOG_ERR,
    214   1.1  itojun 		       "<%s> reachable time must be no greater than %d",
    215   1.1  itojun 		       __FUNCTION__, MAXREACHABLETIME);
    216   1.1  itojun 		exit(1);
    217   1.1  itojun 	}
    218   1.2  itojun 	tmp->reachabletime = (u_int32_t)val;
    219   1.1  itojun 
    220  1.11  itojun 	MAYHAVE(val64, "retrans", DEF_ADVRETRANSTIMER);
    221  1.11  itojun 	if (val64 < 0 || val64 > 0xffffffff) {
    222   1.2  itojun 		syslog(LOG_ERR,
    223   1.2  itojun 		       "<%s> retrans time out of range", __FUNCTION__);
    224   1.2  itojun 		exit(1);
    225   1.2  itojun 	}
    226  1.11  itojun 	tmp->retranstimer = (u_int32_t)val64;
    227   1.1  itojun 
    228  1.11  itojun #ifndef MIP6
    229  1.11  itojun 	if (agetstr("hapref", &bp) || agetstr("hatime", &bp)) {
    230  1.11  itojun 		syslog(LOG_ERR,
    231  1.11  itojun 		       "<%s> mobile-ip6 configuration not supported",
    232  1.11  itojun 		       __FUNCTION__);
    233  1.11  itojun 		exit(1);
    234  1.11  itojun 	}
    235   1.6  itojun #else
    236  1.11  itojun 	if (!mobileip6) {
    237   1.6  itojun 		if (agetstr("hapref", &bp) || agetstr("hatime", &bp)) {
    238   1.6  itojun 			syslog(LOG_ERR,
    239   1.6  itojun 			       "<%s> mobile-ip6 configuration without "
    240   1.6  itojun 			       "proper command line option",
    241   1.6  itojun 			       __FUNCTION__);
    242   1.6  itojun 			exit(1);
    243   1.6  itojun 		}
    244  1.11  itojun 	} else {
    245   1.6  itojun 		tmp->hapref = 0;
    246   1.6  itojun 		if ((val = agetnum("hapref")) >= 0)
    247   1.6  itojun 			tmp->hapref = (int16_t)val;
    248   1.6  itojun 		if (tmp->hapref != 0) {
    249   1.6  itojun 			tmp->hatime = 0;
    250   1.6  itojun 			MUSTHAVE(val, "hatime");
    251   1.6  itojun 			tmp->hatime = (u_int16_t)val;
    252   1.6  itojun 			if (tmp->hatime <= 0) {
    253   1.6  itojun 				syslog(LOG_ERR,
    254   1.6  itojun 				       "<%s> home agent lifetime must be greater than 0",
    255   1.6  itojun 				       __FUNCTION__);
    256   1.6  itojun 				exit(1);
    257   1.6  itojun 			}
    258   1.6  itojun 		}
    259   1.6  itojun 	}
    260   1.6  itojun #endif
    261   1.6  itojun 
    262   1.1  itojun 	/* prefix information */
    263   1.8  itojun 
    264   1.8  itojun 	/*
    265   1.8  itojun 	 * This is an implementation specific parameter to consinder
    266   1.8  itojun 	 * link propagation delays and poorly synchronized clocks when
    267   1.8  itojun 	 * checking consistency of advertised lifetimes.
    268   1.8  itojun 	 */
    269   1.8  itojun 	MAYHAVE(val, "clockskew", 0);
    270   1.8  itojun 	tmp->clockskew = val;
    271   1.8  itojun 
    272   1.1  itojun 	if ((pfxs = agetnum("addrs")) < 0) {
    273   1.1  itojun 		/* auto configure prefix information */
    274   1.1  itojun 		if (agetstr("addr", &bp) || agetstr("addr1", &bp)) {
    275   1.1  itojun 			syslog(LOG_ERR,
    276   1.1  itojun 			       "<%s> conflicting prefix configuration for %s: "
    277   1.1  itojun 			       "automatic and manual config at the same time",
    278   1.1  itojun 			       __FUNCTION__, intface);
    279   1.1  itojun 			exit(1);
    280   1.1  itojun 		}
    281   1.1  itojun 		get_prefix(tmp);
    282   1.1  itojun 	}
    283   1.1  itojun 	else {
    284   1.1  itojun 		tmp->pfxs = pfxs;
    285   1.1  itojun 		for (i = 0; i < pfxs; i++) {
    286   1.1  itojun 			struct prefix *pfx;
    287   1.1  itojun 			char entbuf[256];
    288   1.1  itojun 			int added = (pfxs > 1) ? 1 : 0;
    289   1.1  itojun 
    290   1.1  itojun 			/* allocate memory to store prefix information */
    291   1.1  itojun 			if ((pfx = malloc(sizeof(struct prefix))) == NULL) {
    292   1.1  itojun 				syslog(LOG_ERR,
    293   1.1  itojun 				       "<%s> can't allocate enough memory",
    294   1.1  itojun 				       __FUNCTION__);
    295   1.1  itojun 				exit(1);
    296   1.1  itojun 			}
    297  1.10  itojun 			memset(pfx, 0, sizeof(*pfx));
    298  1.10  itojun 
    299   1.1  itojun 			/* link into chain */
    300   1.1  itojun 			insque(pfx, &tmp->prefix);
    301   1.1  itojun 
    302   1.7  itojun 			pfx->origin = PREFIX_FROM_CONFIG;
    303   1.7  itojun 
    304   1.1  itojun 			makeentry(entbuf, i, "prefixlen", added);
    305   1.2  itojun 			MAYHAVE(val, entbuf, 64);
    306   1.2  itojun 			if (val < 0 || val > 128) {
    307   1.2  itojun 				syslog(LOG_ERR,
    308   1.2  itojun 				       "<%s> prefixlen out of range",
    309   1.2  itojun 				       __FUNCTION__);
    310   1.2  itojun 				exit(1);
    311   1.2  itojun 			}
    312   1.2  itojun 			pfx->prefixlen = (int)val;
    313   1.1  itojun 
    314   1.1  itojun 			makeentry(entbuf, i, "pinfoflags", added);
    315   1.6  itojun #ifdef MIP6
    316   1.6  itojun 			if (mobileip6)
    317   1.6  itojun 			{
    318   1.6  itojun 				MAYHAVE(val, entbuf,
    319   1.6  itojun 				    (ND_OPT_PI_FLAG_ONLINK|ND_OPT_PI_FLAG_AUTO|
    320  1.11  itojun 					 ND_OPT_PI_FLAG_ROUTER));
    321   1.6  itojun 			} else
    322   1.6  itojun #endif
    323   1.6  itojun 			{
    324   1.6  itojun 				MAYHAVE(val, entbuf,
    325   1.6  itojun 				    (ND_OPT_PI_FLAG_ONLINK|ND_OPT_PI_FLAG_AUTO));
    326   1.6  itojun 			}
    327   1.2  itojun 			pfx->onlinkflg = val & ND_OPT_PI_FLAG_ONLINK;
    328   1.2  itojun 			pfx->autoconfflg = val & ND_OPT_PI_FLAG_AUTO;
    329   1.6  itojun #ifdef MIP6
    330  1.11  itojun 			pfx->routeraddr = val & ND_OPT_PI_FLAG_ROUTER;
    331   1.6  itojun #endif
    332   1.1  itojun 
    333   1.1  itojun 			makeentry(entbuf, i, "vltime", added);
    334  1.11  itojun 			MAYHAVE(val64, entbuf, DEF_ADVVALIDLIFETIME);
    335  1.11  itojun 			if (val64 < 0 || val64 > 0xffffffff) {
    336   1.2  itojun 				syslog(LOG_ERR,
    337   1.2  itojun 				       "<%s> vltime out of range",
    338   1.2  itojun 				       __FUNCTION__);
    339   1.2  itojun 				exit(1);
    340   1.2  itojun 			}
    341  1.11  itojun 			pfx->validlifetime = (u_int32_t)val64;
    342   1.1  itojun 
    343   1.8  itojun 			makeentry(entbuf, i, "vltimedecr", added);
    344   1.8  itojun 			if (agetflag(entbuf)) {
    345   1.8  itojun 				struct timeval now;
    346   1.8  itojun 				gettimeofday(&now, 0);
    347   1.8  itojun 				pfx->vltimeexpire =
    348   1.8  itojun 					now.tv_sec + pfx->validlifetime;
    349   1.8  itojun 			}
    350   1.8  itojun 
    351   1.1  itojun 			makeentry(entbuf, i, "pltime", added);
    352  1.11  itojun 			MAYHAVE(val64, entbuf, DEF_ADVPREFERREDLIFETIME);
    353  1.11  itojun 			if (val64 < 0 || val64 > 0xffffffff) {
    354   1.2  itojun 				syslog(LOG_ERR,
    355   1.2  itojun 				       "<%s> pltime out of range",
    356   1.2  itojun 				       __FUNCTION__);
    357   1.2  itojun 				exit(1);
    358   1.2  itojun 			}
    359  1.11  itojun 			pfx->preflifetime = (u_int32_t)val64;
    360   1.1  itojun 
    361   1.8  itojun 			makeentry(entbuf, i, "pltimedecr", added);
    362   1.8  itojun 			if (agetflag(entbuf)) {
    363   1.8  itojun 				struct timeval now;
    364   1.8  itojun 				gettimeofday(&now, 0);
    365   1.8  itojun 				pfx->pltimeexpire =
    366   1.8  itojun 					now.tv_sec + pfx->preflifetime;
    367   1.8  itojun 			}
    368   1.8  itojun 
    369   1.1  itojun 			makeentry(entbuf, i, "addr", added);
    370   1.1  itojun 			addr = (char *)agetstr(entbuf, &bp);
    371   1.1  itojun 			if (addr == NULL) {
    372   1.1  itojun 				syslog(LOG_ERR,
    373   1.1  itojun 				       "<%s> need %s as an prefix for "
    374   1.1  itojun 				       "interface %s",
    375   1.1  itojun 				       __FUNCTION__, entbuf, intface);
    376   1.1  itojun 				exit(1);
    377   1.1  itojun 			}
    378   1.1  itojun 			if (inet_pton(AF_INET6, addr,
    379   1.1  itojun 				      &pfx->prefix) != 1) {
    380   1.1  itojun 				syslog(LOG_ERR,
    381   1.1  itojun 				       "<%s> inet_pton failed for %s",
    382   1.1  itojun 				       __FUNCTION__, addr);
    383   1.1  itojun 				exit(1);
    384   1.1  itojun 			}
    385   1.1  itojun 			if (IN6_IS_ADDR_MULTICAST(&pfx->prefix)) {
    386   1.1  itojun 				syslog(LOG_ERR,
    387   1.1  itojun 				       "<%s> multicast prefix(%s) must "
    388   1.1  itojun 				       "not be advertised (IF=%s)",
    389   1.1  itojun 				       __FUNCTION__, addr, intface);
    390   1.1  itojun 				exit(1);
    391   1.1  itojun 			}
    392   1.1  itojun 			if (IN6_IS_ADDR_LINKLOCAL(&pfx->prefix))
    393   1.1  itojun 				syslog(LOG_NOTICE,
    394   1.1  itojun 				       "<%s> link-local prefix(%s) will be"
    395   1.1  itojun 				       " advertised on %s",
    396   1.1  itojun 				       __FUNCTION__, addr, intface);
    397   1.1  itojun 		}
    398   1.1  itojun 	}
    399   1.1  itojun 
    400   1.2  itojun 	MAYHAVE(val, "mtu", 0);
    401   1.2  itojun 	if (val < 0 || val > 0xffffffff) {
    402   1.2  itojun 		syslog(LOG_ERR,
    403   1.2  itojun 		       "<%s> mtu out of range", __FUNCTION__);
    404   1.2  itojun 		exit(1);
    405   1.2  itojun 	}
    406   1.2  itojun 	tmp->linkmtu = (u_int32_t)val;
    407   1.1  itojun 	if (tmp->linkmtu == 0) {
    408   1.1  itojun 		char *mtustr;
    409   1.1  itojun 
    410   1.1  itojun 		if ((mtustr = (char *)agetstr("mtu", &bp)) &&
    411   1.1  itojun 		    strcmp(mtustr, "auto") == 0)
    412   1.1  itojun 			tmp->linkmtu = tmp->phymtu;
    413   1.1  itojun 	}
    414   1.1  itojun 	else if (tmp->linkmtu < IPV6_MMTU || tmp->linkmtu > tmp->phymtu) {
    415   1.1  itojun 		syslog(LOG_ERR,
    416   1.1  itojun 		       "<%s> advertised link mtu must be between"
    417   1.1  itojun 		       " least MTU and physical link MTU",
    418   1.1  itojun 		       __FUNCTION__);
    419   1.1  itojun 		exit(1);
    420   1.1  itojun 	}
    421   1.1  itojun 
    422   1.1  itojun 	/* okey */
    423   1.1  itojun 	tmp->next = ralist;
    424   1.1  itojun 	ralist = tmp;
    425   1.1  itojun 
    426   1.1  itojun 	/* construct the sending packet */
    427   1.1  itojun 	make_packet(tmp);
    428   1.1  itojun 
    429   1.1  itojun 	/* set timer */
    430   1.1  itojun 	tmp->timer = rtadvd_add_timer(ra_timeout, ra_timer_update,
    431   1.1  itojun 				      tmp, tmp);
    432   1.1  itojun 	ra_timer_update((void *)tmp, &tmp->timer->tm);
    433   1.1  itojun 	rtadvd_set_timer(&tmp->timer->tm, tmp->timer);
    434   1.1  itojun }
    435   1.1  itojun 
    436   1.1  itojun static void
    437   1.1  itojun get_prefix(struct rainfo *rai)
    438   1.1  itojun {
    439   1.8  itojun 	struct ifaddrs *ifap, *ifa;
    440   1.8  itojun 	struct prefix *pp;
    441   1.8  itojun 	struct in6_addr *a;
    442   1.8  itojun 	u_char *p, *ep, *m, *lim;
    443   1.8  itojun 	u_char ntopbuf[INET6_ADDRSTRLEN];
    444   1.8  itojun 
    445   1.8  itojun 	if (getifaddrs(&ifap) < 0) {
    446   1.8  itojun 		syslog(LOG_ERR,
    447   1.8  itojun 		       "<%s> can't get interface addresses",
    448   1.8  itojun 		       __FUNCTION__);
    449   1.8  itojun 		exit(1);
    450   1.8  itojun 	}
    451   1.8  itojun 	for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
    452   1.8  itojun 		if (strcmp(ifa->ifa_name, rai->ifname) != 0)
    453   1.8  itojun 			continue;
    454   1.8  itojun 		if (ifa->ifa_addr->sa_family != AF_INET6)
    455   1.8  itojun 			continue;
    456   1.8  itojun 		a = &((struct sockaddr_in6 *)ifa->ifa_addr)->sin6_addr;
    457   1.8  itojun 		if (IN6_IS_ADDR_LINKLOCAL(a))
    458   1.8  itojun 			continue;
    459   1.8  itojun 
    460   1.8  itojun 		/* allocate memory to store prefix info. */
    461   1.8  itojun 		if ((pp = malloc(sizeof(*pp))) == NULL) {
    462   1.8  itojun 			syslog(LOG_ERR,
    463   1.8  itojun 			       "<%s> can't get allocate buffer for prefix",
    464   1.8  itojun 			       __FUNCTION__);
    465   1.8  itojun 			exit(1);
    466   1.8  itojun 		}
    467   1.8  itojun 		memset(pp, 0, sizeof(*pp));
    468   1.8  itojun 
    469   1.8  itojun 		/* set prefix length */
    470   1.8  itojun 		m = (u_char *)&((struct sockaddr_in6 *)ifa->ifa_netmask)->sin6_addr;
    471   1.8  itojun 		lim = (u_char *)(ifa->ifa_netmask) + ifa->ifa_netmask->sa_len;
    472   1.8  itojun 		pp->prefixlen = prefixlen(m, lim);
    473   1.8  itojun 		if (pp->prefixlen < 0 || pp->prefixlen > 128) {
    474   1.8  itojun 			syslog(LOG_ERR,
    475   1.8  itojun 			       "<%s> failed to get prefixlen "
    476   1.8  itojun 			       "or prefix is invalid",
    477   1.8  itojun 			       __FUNCTION__);
    478   1.8  itojun 			exit(1);
    479   1.8  itojun 		}
    480   1.8  itojun 
    481   1.8  itojun 		/* set prefix, sweep bits outside of prefixlen */
    482   1.8  itojun 		memcpy(&pp->prefix, a, sizeof(*a));
    483   1.8  itojun 		p = (u_char *)&pp->prefix;
    484   1.8  itojun 		ep = (u_char *)(&pp->prefix + 1);
    485   1.8  itojun 		while (m < lim)
    486   1.8  itojun 			*p++ &= *m++;
    487   1.8  itojun 		while (p < ep)
    488   1.8  itojun 			*p++ = 0x00;
    489   1.8  itojun 
    490   1.8  itojun 	        if (!inet_ntop(AF_INET6, &pp->prefix, ntopbuf,
    491   1.8  itojun 	            sizeof(ntopbuf))) {
    492   1.8  itojun 			syslog(LOG_ERR, "<%s> inet_ntop failed", __FUNCTION__);
    493   1.8  itojun 			exit(1);
    494   1.8  itojun 		}
    495   1.8  itojun 		syslog(LOG_DEBUG,
    496   1.8  itojun 		       "<%s> add %s/%d to prefix list on %s",
    497   1.8  itojun 		       __FUNCTION__, ntopbuf, pp->prefixlen, rai->ifname);
    498   1.8  itojun 
    499   1.8  itojun 		/* set other fields with protocol defaults */
    500   1.8  itojun 		pp->validlifetime = DEF_ADVVALIDLIFETIME;
    501   1.8  itojun 		pp->preflifetime = DEF_ADVPREFERREDLIFETIME;
    502   1.8  itojun 		pp->onlinkflg = 1;
    503   1.8  itojun 		pp->autoconfflg = 1;
    504   1.8  itojun 		pp->origin = PREFIX_FROM_KERNEL;
    505   1.8  itojun 
    506   1.8  itojun 		/* link into chain */
    507   1.8  itojun 		insque(pp, &rai->prefix);
    508   1.8  itojun 
    509   1.8  itojun 		/* counter increment */
    510   1.8  itojun 		rai->pfxs++;
    511   1.8  itojun 	}
    512   1.8  itojun 
    513   1.8  itojun 	freeifaddrs(ifap);
    514   1.1  itojun }
    515   1.1  itojun 
    516   1.1  itojun static void
    517   1.1  itojun makeentry(buf, id, string, add)
    518   1.1  itojun     char *buf, *string;
    519   1.1  itojun     int id, add;
    520   1.1  itojun {
    521   1.1  itojun 	strcpy(buf, string);
    522   1.1  itojun 	if (add) {
    523   1.1  itojun 		char *cp;
    524   1.1  itojun 
    525   1.1  itojun 		cp = (char *)index(buf, '\0');
    526   1.1  itojun 		cp += sprintf(cp, "%d", id);
    527   1.1  itojun 		*cp = '\0';
    528   1.1  itojun 	}
    529   1.1  itojun }
    530   1.1  itojun 
    531   1.1  itojun /*
    532   1.1  itojun  * Add a prefix to the list of specified interface and reconstruct
    533   1.1  itojun  * the outgoing packet.
    534   1.1  itojun  * The prefix must not be in the list.
    535   1.1  itojun  * XXX: other parameter of the prefix(e.g. lifetime) shoule be
    536   1.1  itojun  * able to be specified.
    537   1.1  itojun  */
    538   1.1  itojun static void
    539   1.1  itojun add_prefix(struct rainfo *rai, struct in6_prefixreq *ipr)
    540   1.1  itojun {
    541   1.1  itojun 	struct prefix *prefix;
    542   1.1  itojun 	u_char ntopbuf[INET6_ADDRSTRLEN];
    543   1.1  itojun 
    544   1.1  itojun 	if ((prefix = malloc(sizeof(*prefix))) == NULL) {
    545   1.1  itojun 		syslog(LOG_ERR, "<%s> memory allocation failed",
    546   1.1  itojun 		       __FUNCTION__);
    547   1.1  itojun 		return;		/* XXX: error or exit? */
    548   1.1  itojun 	}
    549   1.8  itojun 	memset(prefix, 0, sizeof(*prefix));
    550   1.1  itojun 	prefix->prefix = ipr->ipr_prefix.sin6_addr;
    551   1.1  itojun 	prefix->prefixlen = ipr->ipr_plen;
    552   1.1  itojun 	prefix->validlifetime = ipr->ipr_vltime;
    553   1.1  itojun 	prefix->preflifetime = ipr->ipr_pltime;
    554   1.1  itojun 	prefix->onlinkflg = ipr->ipr_raf_onlink;
    555   1.1  itojun 	prefix->autoconfflg = ipr->ipr_raf_auto;
    556   1.7  itojun 	prefix->origin = PREFIX_FROM_DYNAMIC;
    557   1.1  itojun 
    558   1.1  itojun 	insque(prefix, &rai->prefix);
    559   1.1  itojun 
    560   1.1  itojun 	syslog(LOG_DEBUG, "<%s> new prefix %s/%d was added on %s",
    561   1.1  itojun 	       __FUNCTION__, inet_ntop(AF_INET6, &ipr->ipr_prefix.sin6_addr,
    562   1.1  itojun 				       ntopbuf, INET6_ADDRSTRLEN),
    563   1.1  itojun 	       ipr->ipr_plen, rai->ifname);
    564   1.1  itojun 
    565   1.1  itojun 	/* free the previous packet */
    566   1.1  itojun 	free(rai->ra_data);
    567   1.1  itojun 	rai->ra_data = 0;
    568   1.1  itojun 
    569   1.1  itojun 	/* reconstruct the packet */
    570   1.1  itojun 	rai->pfxs++;
    571   1.1  itojun 	make_packet(rai);
    572   1.1  itojun 
    573   1.1  itojun 	/*
    574   1.1  itojun 	 * reset the timer so that the new prefix will be advertised quickly.
    575   1.1  itojun 	 */
    576   1.1  itojun 	rai->initcounter = 0;
    577   1.1  itojun 	ra_timer_update((void *)rai, &rai->timer->tm);
    578   1.1  itojun 	rtadvd_set_timer(&rai->timer->tm, rai->timer);
    579   1.1  itojun }
    580   1.1  itojun 
    581   1.1  itojun /*
    582   1.1  itojun  * Delete a prefix to the list of specified interface and reconstruct
    583   1.1  itojun  * the outgoing packet.
    584   1.7  itojun  * The prefix must be in the list.
    585   1.1  itojun  */
    586   1.1  itojun void
    587   1.1  itojun delete_prefix(struct rainfo *rai, struct prefix *prefix)
    588   1.1  itojun {
    589   1.1  itojun 	u_char ntopbuf[INET6_ADDRSTRLEN];
    590   1.1  itojun 
    591   1.1  itojun 	remque(prefix);
    592   1.1  itojun 	syslog(LOG_DEBUG, "<%s> prefix %s/%d was deleted on %s",
    593   1.1  itojun 	       __FUNCTION__, inet_ntop(AF_INET6, &prefix->prefix,
    594   1.1  itojun 				       ntopbuf, INET6_ADDRSTRLEN),
    595   1.1  itojun 	       prefix->prefixlen, rai->ifname);
    596   1.1  itojun 	free(prefix);
    597   1.1  itojun 	rai->pfxs--;
    598   1.1  itojun 	make_packet(rai);
    599   1.1  itojun }
    600   1.1  itojun 
    601   1.1  itojun /*
    602   1.1  itojun  * Try to get an in6_prefixreq contents for a prefix which matches
    603   1.1  itojun  * ipr->ipr_prefix and ipr->ipr_plen and belongs to
    604   1.1  itojun  * the interface whose name is ipr->ipr_name[].
    605   1.1  itojun  */
    606   1.1  itojun static int
    607   1.1  itojun init_prefix(struct in6_prefixreq *ipr)
    608   1.1  itojun {
    609   1.1  itojun 	int s;
    610   1.1  itojun 
    611   1.1  itojun 	if ((s = socket(AF_INET6, SOCK_DGRAM, 0)) < 0) {
    612   1.1  itojun 		syslog(LOG_ERR, "<%s> socket: %s", __FUNCTION__,
    613   1.1  itojun 		       strerror(errno));
    614   1.1  itojun 		exit(1);
    615   1.1  itojun 	}
    616   1.1  itojun 
    617   1.1  itojun 	if (ioctl(s, SIOCGIFPREFIX_IN6, (caddr_t)ipr) < 0) {
    618   1.1  itojun 		syslog(LOG_INFO, "<%s> ioctl:SIOCGIFPREFIX %s", __FUNCTION__,
    619   1.1  itojun 		       strerror(errno));
    620   1.1  itojun 
    621   1.1  itojun 		ipr->ipr_vltime = DEF_ADVVALIDLIFETIME;
    622   1.1  itojun 		ipr->ipr_pltime = DEF_ADVPREFERREDLIFETIME;
    623   1.1  itojun 		ipr->ipr_raf_onlink = 1;
    624   1.1  itojun 		ipr->ipr_raf_auto = 1;
    625   1.1  itojun 		/* omit other field initialization */
    626   1.1  itojun 	}
    627   1.1  itojun 	else if (ipr->ipr_origin < PR_ORIG_RR) {
    628   1.1  itojun 		u_char ntopbuf[INET6_ADDRSTRLEN];
    629   1.1  itojun 
    630   1.1  itojun 		syslog(LOG_WARNING, "<%s> Added prefix(%s)'s origin %d is"
    631   1.1  itojun 		       "lower than PR_ORIG_RR(router renumbering)."
    632   1.1  itojun 		       "This should not happen if I am router", __FUNCTION__,
    633   1.1  itojun 		       inet_ntop(AF_INET6, &ipr->ipr_prefix.sin6_addr, ntopbuf,
    634   1.1  itojun 				 sizeof(ntopbuf)), ipr->ipr_origin);
    635   1.6  itojun 		close(s);
    636   1.1  itojun 		return 1;
    637   1.1  itojun 	}
    638   1.1  itojun 
    639   1.1  itojun 	close(s);
    640   1.1  itojun 	return 0;
    641   1.1  itojun }
    642   1.1  itojun 
    643   1.1  itojun void
    644   1.1  itojun make_prefix(struct rainfo *rai, int ifindex, struct in6_addr *addr, int plen)
    645   1.1  itojun {
    646   1.1  itojun 	struct in6_prefixreq ipr;
    647   1.1  itojun 
    648   1.1  itojun 	memset(&ipr, 0, sizeof(ipr));
    649   1.1  itojun 	if (if_indextoname(ifindex, ipr.ipr_name) == NULL) {
    650   1.1  itojun 		syslog(LOG_ERR, "<%s> Prefix added interface No.%d doesn't"
    651   1.1  itojun 		       "exist. This should not happen! %s", __FUNCTION__,
    652   1.1  itojun 		       ifindex, strerror(errno));
    653   1.1  itojun 		exit(1);
    654   1.1  itojun 	}
    655   1.1  itojun 	ipr.ipr_prefix.sin6_len = sizeof(ipr.ipr_prefix);
    656   1.1  itojun 	ipr.ipr_prefix.sin6_family = AF_INET6;
    657   1.1  itojun 	ipr.ipr_prefix.sin6_addr = *addr;
    658   1.1  itojun 	ipr.ipr_plen = plen;
    659   1.1  itojun 
    660   1.1  itojun 	if (init_prefix(&ipr))
    661   1.1  itojun 		return; /* init failed by some error */
    662   1.1  itojun 	add_prefix(rai, &ipr);
    663   1.1  itojun }
    664   1.1  itojun 
    665   1.4  itojun void
    666   1.1  itojun make_packet(struct rainfo *rainfo)
    667   1.1  itojun {
    668   1.1  itojun 	size_t packlen, lladdroptlen = 0;
    669   1.1  itojun 	char *buf;
    670   1.1  itojun 	struct nd_router_advert *ra;
    671   1.1  itojun 	struct nd_opt_prefix_info *ndopt_pi;
    672   1.1  itojun 	struct nd_opt_mtu *ndopt_mtu;
    673   1.6  itojun #ifdef MIP6
    674  1.11  itojun 	struct nd_opt_advinterval *ndopt_advint;
    675  1.11  itojun 	struct nd_opt_homeagent_info *ndopt_hai;
    676   1.6  itojun #endif
    677   1.1  itojun 	struct prefix *pfx;
    678   1.1  itojun 
    679   1.1  itojun 	/* calculate total length */
    680   1.1  itojun 	packlen = sizeof(struct nd_router_advert);
    681   1.1  itojun 	if (rainfo->advlinkopt) {
    682   1.1  itojun 		if ((lladdroptlen = lladdropt_length(rainfo->sdl)) == 0) {
    683   1.1  itojun 			syslog(LOG_INFO,
    684   1.1  itojun 			       "<%s> link-layer address option has"
    685   1.1  itojun 			       " null length on %s."
    686   1.1  itojun 			       " Treat as not included.",
    687   1.1  itojun 			       __FUNCTION__, rainfo->ifname);
    688   1.1  itojun 			rainfo->advlinkopt = 0;
    689   1.1  itojun 		}
    690   1.1  itojun 		packlen += lladdroptlen;
    691   1.1  itojun 	}
    692   1.1  itojun 	if (rainfo->pfxs)
    693   1.1  itojun 		packlen += sizeof(struct nd_opt_prefix_info) * rainfo->pfxs;
    694   1.1  itojun 	if (rainfo->linkmtu)
    695   1.1  itojun 		packlen += sizeof(struct nd_opt_mtu);
    696   1.6  itojun #ifdef MIP6
    697   1.6  itojun 	if (mobileip6 && rainfo->maxinterval)
    698  1.11  itojun 		packlen += sizeof(struct nd_opt_advinterval);
    699   1.6  itojun 	if (mobileip6 && rainfo->hatime)
    700  1.11  itojun 		packlen += sizeof(struct nd_opt_homeagent_info);
    701   1.6  itojun #endif
    702   1.1  itojun 
    703   1.1  itojun 	/* allocate memory for the packet */
    704   1.1  itojun 	if ((buf = malloc(packlen)) == NULL) {
    705   1.1  itojun 		syslog(LOG_ERR,
    706   1.1  itojun 		       "<%s> can't get enough memory for an RA packet",
    707   1.1  itojun 		       __FUNCTION__);
    708   1.1  itojun 		exit(1);
    709   1.1  itojun 	}
    710   1.1  itojun 	rainfo->ra_data = buf;
    711   1.1  itojun 	/* XXX: what if packlen > 576? */
    712   1.1  itojun 	rainfo->ra_datalen = packlen;
    713   1.1  itojun 
    714   1.1  itojun 	/*
    715   1.1  itojun 	 * construct the packet
    716   1.1  itojun 	 */
    717   1.1  itojun 	ra = (struct nd_router_advert *)buf;
    718   1.1  itojun 	ra->nd_ra_type = ND_ROUTER_ADVERT;
    719   1.1  itojun 	ra->nd_ra_code = 0;
    720   1.1  itojun 	ra->nd_ra_cksum = 0;
    721   1.1  itojun 	ra->nd_ra_curhoplimit = (u_int8_t)(0xff & rainfo->hoplimit);
    722   1.1  itojun 	ra->nd_ra_flags_reserved = 0;
    723   1.1  itojun 	ra->nd_ra_flags_reserved |=
    724   1.1  itojun 		rainfo->managedflg ? ND_RA_FLAG_MANAGED : 0;
    725   1.1  itojun 	ra->nd_ra_flags_reserved |=
    726   1.1  itojun 		rainfo->otherflg ? ND_RA_FLAG_OTHER : 0;
    727   1.6  itojun #ifdef MIP6
    728   1.6  itojun 	ra->nd_ra_flags_reserved |=
    729   1.6  itojun 		rainfo->haflg ? ND_RA_FLAG_HA : 0;
    730   1.6  itojun #endif
    731   1.1  itojun 	ra->nd_ra_router_lifetime = htons(rainfo->lifetime);
    732   1.1  itojun 	ra->nd_ra_reachable = htonl(rainfo->reachabletime);
    733   1.1  itojun 	ra->nd_ra_retransmit = htonl(rainfo->retranstimer);
    734   1.1  itojun 	buf += sizeof(*ra);
    735   1.1  itojun 
    736   1.1  itojun 	if (rainfo->advlinkopt) {
    737   1.1  itojun 		lladdropt_fill(rainfo->sdl, (struct nd_opt_hdr *)buf);
    738   1.1  itojun 		buf += lladdroptlen;
    739   1.1  itojun 	}
    740   1.1  itojun 
    741   1.1  itojun 	if (rainfo->linkmtu) {
    742   1.1  itojun 		ndopt_mtu = (struct nd_opt_mtu *)buf;
    743   1.1  itojun 		ndopt_mtu->nd_opt_mtu_type = ND_OPT_MTU;
    744   1.1  itojun 		ndopt_mtu->nd_opt_mtu_len = 1;
    745   1.1  itojun 		ndopt_mtu->nd_opt_mtu_reserved = 0;
    746   1.1  itojun 		ndopt_mtu->nd_opt_mtu_mtu = ntohl(rainfo->linkmtu);
    747   1.1  itojun 		buf += sizeof(struct nd_opt_mtu);
    748   1.1  itojun 	}
    749   1.1  itojun 
    750   1.6  itojun #ifdef MIP6
    751   1.6  itojun 	if (mobileip6 && rainfo->maxinterval) {
    752  1.11  itojun 		ndopt_advint = (struct nd_opt_advinterval *)buf;
    753  1.11  itojun 		ndopt_advint->nd_opt_adv_type = ND_OPT_ADVINTERVAL;
    754  1.11  itojun 		ndopt_advint->nd_opt_adv_len = 1;
    755  1.11  itojun 		ndopt_advint->nd_opt_adv_reserved = 0;
    756  1.11  itojun 		ndopt_advint->nd_opt_adv_interval = ntohl(rainfo->maxinterval *
    757   1.6  itojun 							  1000);
    758  1.11  itojun 		buf += sizeof(struct nd_opt_advinterval);
    759   1.6  itojun 	}
    760   1.6  itojun #endif
    761   1.6  itojun 
    762   1.6  itojun #ifdef MIP6
    763   1.6  itojun 	if (rainfo->hatime) {
    764  1.11  itojun 		ndopt_hai = (struct nd_opt_homeagent_info *)buf;
    765  1.11  itojun 		ndopt_hai->nd_opt_hai_type = ND_OPT_HOMEAGENT_INFO;
    766   1.6  itojun 		ndopt_hai->nd_opt_hai_len = 1;
    767   1.6  itojun 		ndopt_hai->nd_opt_hai_reserved = 0;
    768  1.11  itojun 		ndopt_hai->nd_opt_hai_preference = ntohs(rainfo->hapref);
    769   1.6  itojun 		ndopt_hai->nd_opt_hai_lifetime = ntohs(rainfo->hatime);
    770  1.11  itojun 		buf += sizeof(struct nd_opt_homeagent_info);
    771   1.6  itojun 	}
    772   1.6  itojun #endif
    773   1.6  itojun 
    774   1.1  itojun 	for (pfx = rainfo->prefix.next;
    775   1.1  itojun 	     pfx != &rainfo->prefix; pfx = pfx->next) {
    776   1.8  itojun 		u_int32_t vltime, pltime;
    777   1.8  itojun 		struct timeval now;
    778   1.8  itojun 
    779   1.1  itojun 		ndopt_pi = (struct nd_opt_prefix_info *)buf;
    780   1.1  itojun 		ndopt_pi->nd_opt_pi_type = ND_OPT_PREFIX_INFORMATION;
    781   1.1  itojun 		ndopt_pi->nd_opt_pi_len = 4;
    782   1.1  itojun 		ndopt_pi->nd_opt_pi_prefix_len = pfx->prefixlen;
    783   1.1  itojun 		ndopt_pi->nd_opt_pi_flags_reserved = 0;
    784   1.1  itojun 		if (pfx->onlinkflg)
    785   1.1  itojun 			ndopt_pi->nd_opt_pi_flags_reserved |=
    786   1.1  itojun 				ND_OPT_PI_FLAG_ONLINK;
    787   1.1  itojun 		if (pfx->autoconfflg)
    788   1.1  itojun 			ndopt_pi->nd_opt_pi_flags_reserved |=
    789   1.1  itojun 				ND_OPT_PI_FLAG_AUTO;
    790   1.6  itojun #ifdef MIP6
    791   1.6  itojun 		if (pfx->routeraddr)
    792   1.6  itojun 			ndopt_pi->nd_opt_pi_flags_reserved |=
    793  1.11  itojun 				ND_OPT_PI_FLAG_ROUTER;
    794   1.6  itojun #endif
    795   1.8  itojun 		if (pfx->vltimeexpire || pfx->pltimeexpire)
    796   1.8  itojun 			gettimeofday(&now, NULL);
    797   1.8  itojun 		if (pfx->vltimeexpire == 0)
    798   1.8  itojun 			vltime = pfx->validlifetime;
    799   1.8  itojun 		else
    800   1.8  itojun 			vltime = (pfx->vltimeexpire > now.tv_sec) ?
    801   1.8  itojun 				pfx->vltimeexpire - now.tv_sec : 0;
    802   1.8  itojun 		if (pfx->pltimeexpire == 0)
    803   1.8  itojun 			pltime = pfx->preflifetime;
    804   1.8  itojun 		else
    805   1.8  itojun 			pltime = (pfx->pltimeexpire > now.tv_sec) ?
    806   1.8  itojun 				pfx->pltimeexpire - now.tv_sec : 0;
    807   1.8  itojun 		if (vltime < pltime) {
    808   1.8  itojun 			/*
    809   1.8  itojun 			 * this can happen if vltime is decrement but pltime
    810   1.8  itojun 			 * is not.
    811   1.8  itojun 			 */
    812   1.8  itojun 			pltime = vltime;
    813   1.8  itojun 		}
    814   1.8  itojun 		ndopt_pi->nd_opt_pi_valid_time = ntohl(vltime);
    815   1.8  itojun 		ndopt_pi->nd_opt_pi_preferred_time = ntohl(pltime);
    816   1.1  itojun 		ndopt_pi->nd_opt_pi_reserved2 = 0;
    817   1.1  itojun 		ndopt_pi->nd_opt_pi_prefix = pfx->prefix;
    818   1.1  itojun 
    819   1.1  itojun 		buf += sizeof(struct nd_opt_prefix_info);
    820   1.1  itojun 	}
    821   1.1  itojun 
    822   1.1  itojun 	return;
    823   1.8  itojun }
    824   1.8  itojun 
    825   1.8  itojun static int
    826   1.8  itojun getinet6sysctl(int code)
    827   1.8  itojun {
    828   1.8  itojun 	int mib[] = { CTL_NET, PF_INET6, IPPROTO_IPV6, 0 };
    829   1.8  itojun 	int value;
    830   1.8  itojun 	size_t size;
    831   1.8  itojun 
    832   1.8  itojun 	mib[3] = code;
    833   1.8  itojun 	size = sizeof(value);
    834   1.8  itojun 	if (sysctl(mib, sizeof(mib)/sizeof(mib[0]), &value, &size, NULL, 0)
    835   1.8  itojun 	    < 0) {
    836   1.8  itojun 		syslog(LOG_ERR, "<%s>: failed to get ip6 sysctl(%d): %s",
    837   1.8  itojun 		       __FUNCTION__, code,
    838   1.8  itojun 		       strerror(errno));
    839   1.8  itojun 		return(-1);
    840   1.8  itojun 	}
    841   1.8  itojun 	else
    842   1.8  itojun 		return(value);
    843   1.1  itojun }
    844