Home | History | Annotate | Line # | Download | only in ndp
ndp.c revision 1.45
      1  1.45     ozaki /*	$NetBSD: ndp.c,v 1.45 2015/08/03 09:51:40 ozaki-r Exp $	*/
      2  1.34    rpaulo /*	$KAME: ndp.c,v 1.121 2005/07/13 11:30:13 keiichi Exp $	*/
      3   1.9    itojun 
      4   1.1    itojun /*
      5   1.1    itojun  * Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project.
      6   1.1    itojun  * All rights reserved.
      7   1.9    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.9    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  * Copyright (c) 1984, 1993
     34   1.1    itojun  *	The Regents of the University of California.  All rights reserved.
     35   1.1    itojun  *
     36   1.1    itojun  * This code is derived from software contributed to Berkeley by
     37   1.1    itojun  * Sun Microsystems, Inc.
     38   1.1    itojun  *
     39   1.1    itojun  * Redistribution and use in source and binary forms, with or without
     40   1.1    itojun  * modification, are permitted provided that the following conditions
     41   1.1    itojun  * are met:
     42   1.1    itojun  * 1. Redistributions of source code must retain the above copyright
     43   1.1    itojun  *    notice, this list of conditions and the following disclaimer.
     44   1.1    itojun  * 2. Redistributions in binary form must reproduce the above copyright
     45   1.1    itojun  *    notice, this list of conditions and the following disclaimer in the
     46   1.1    itojun  *    documentation and/or other materials provided with the distribution.
     47  1.29       agc  * 3. Neither the name of the University nor the names of its contributors
     48   1.1    itojun  *    may be used to endorse or promote products derived from this software
     49   1.1    itojun  *    without specific prior written permission.
     50   1.1    itojun  *
     51   1.1    itojun  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     52   1.1    itojun  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     53   1.1    itojun  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     54   1.1    itojun  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     55   1.1    itojun  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     56   1.1    itojun  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     57   1.1    itojun  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     58   1.1    itojun  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     59   1.1    itojun  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     60   1.1    itojun  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     61   1.1    itojun  * SUCH DAMAGE.
     62   1.1    itojun  */
     63   1.1    itojun 
     64   1.1    itojun /*
     65   1.1    itojun  * Based on:
     66   1.1    itojun  * "@(#) Copyright (c) 1984, 1993\n\
     67   1.1    itojun  *	The Regents of the University of California.  All rights reserved.\n";
     68   1.1    itojun  *
     69   1.1    itojun  * "@(#)arp.c	8.2 (Berkeley) 1/2/94";
     70   1.1    itojun  */
     71   1.1    itojun 
     72   1.1    itojun /*
     73   1.1    itojun  * ndp - display, set, delete and flush neighbor cache
     74   1.1    itojun  */
     75   1.1    itojun 
     76   1.1    itojun 
     77   1.1    itojun #include <sys/param.h>
     78   1.1    itojun #include <sys/file.h>
     79   1.1    itojun #include <sys/ioctl.h>
     80   1.1    itojun #include <sys/socket.h>
     81   1.1    itojun #include <sys/sysctl.h>
     82   1.1    itojun #include <sys/time.h>
     83   1.1    itojun 
     84   1.1    itojun #include <net/if.h>
     85   1.1    itojun #include <net/if_dl.h>
     86   1.1    itojun #include <net/if_types.h>
     87   1.1    itojun #include <net/route.h>
     88   1.1    itojun 
     89   1.1    itojun #include <netinet/in.h>
     90   1.1    itojun 
     91   1.1    itojun #include <netinet/icmp6.h>
     92   1.1    itojun #include <netinet6/in6_var.h>
     93   1.1    itojun #include <netinet6/nd6.h>
     94   1.1    itojun 
     95   1.1    itojun #include <arpa/inet.h>
     96   1.1    itojun 
     97   1.1    itojun #include <netdb.h>
     98   1.1    itojun #include <errno.h>
     99   1.1    itojun #include <nlist.h>
    100   1.1    itojun #include <stdio.h>
    101   1.1    itojun #include <string.h>
    102   1.1    itojun #include <paths.h>
    103   1.1    itojun #include <err.h>
    104   1.1    itojun #include <stdlib.h>
    105   1.1    itojun #include <fcntl.h>
    106   1.1    itojun #include <unistd.h>
    107  1.45     ozaki 
    108   1.1    itojun #include "gmt2local.h"
    109  1.45     ozaki #include "prog_ops.h"
    110   1.1    itojun 
    111  1.19    itojun static pid_t pid;
    112   1.1    itojun static int nflag;
    113   1.1    itojun static int tflag;
    114   1.1    itojun static int32_t thiszone;	/* time difference with gmt */
    115  1.35  christos static int my_s = -1;
    116  1.35  christos static unsigned int repeat = 0;
    117   1.1    itojun 
    118  1.35  christos 
    119  1.35  christos static char host_buf[NI_MAXHOST];		/* getnameinfo() */
    120  1.35  christos static char ifix_buf[IFNAMSIZ];		/* if_indextoname() */
    121  1.35  christos 
    122  1.35  christos static void getsocket(void);
    123  1.35  christos static int set(int, char **);
    124  1.35  christos static void get(char *);
    125  1.35  christos static int delete(char *);
    126  1.35  christos static void dump(struct in6_addr *, int);
    127  1.35  christos static struct in6_nbrinfo *getnbrinfo(struct in6_addr *, unsigned int, int);
    128  1.35  christos static char *ether_str(struct sockaddr_dl *);
    129  1.35  christos static int ndp_ether_aton(char *, u_char *);
    130  1.40     joerg __dead static void usage(void);
    131  1.35  christos static int rtmsg(int);
    132  1.35  christos static void ifinfo(char *, int, char **);
    133  1.35  christos static void rtrlist(void);
    134  1.35  christos static void plist(void);
    135  1.35  christos static void pfx_flush(void);
    136  1.35  christos static void rtrlist(void);
    137  1.35  christos static void rtr_flush(void);
    138  1.35  christos static void harmonize_rtr(void);
    139   1.4    itojun #ifdef SIOCSDEFIFACE_IN6	/* XXX: check SIOCGDEFIFACE_IN6 as well? */
    140  1.35  christos static void getdefif(void);
    141  1.35  christos static void setdefif(char *);
    142   1.4    itojun #endif
    143  1.35  christos static const char *sec2str(time_t);
    144  1.35  christos static char *ether_str(struct sockaddr_dl *);
    145  1.35  christos static void ts_print(const struct timeval *);
    146   1.1    itojun 
    147  1.16    itojun #ifdef ICMPV6CTL_ND6_DRLIST
    148  1.35  christos static const char *rtpref_str[] = {
    149  1.16    itojun 	"medium",		/* 00 */
    150  1.16    itojun 	"high",			/* 01 */
    151  1.16    itojun 	"rsv",			/* 10 */
    152  1.16    itojun 	"low"			/* 11 */
    153  1.16    itojun };
    154  1.16    itojun #endif
    155  1.16    itojun 
    156  1.35  christos static int mode = 0;
    157  1.35  christos static char *arg = NULL;
    158  1.22    itojun 
    159   1.1    itojun int
    160  1.35  christos main(int argc, char **argv)
    161   1.1    itojun {
    162   1.1    itojun 	int ch;
    163   1.1    itojun 
    164  1.25    itojun 	while ((ch = getopt(argc, argv, "acd:f:Ii:nprstA:HPR")) != -1)
    165  1.22    itojun 		switch (ch) {
    166   1.1    itojun 		case 'a':
    167   1.1    itojun 		case 'c':
    168  1.22    itojun 		case 'p':
    169  1.22    itojun 		case 'r':
    170  1.22    itojun 		case 'H':
    171  1.22    itojun 		case 'P':
    172  1.22    itojun 		case 'R':
    173  1.22    itojun 		case 's':
    174  1.25    itojun 		case 'I':
    175  1.22    itojun 			if (mode) {
    176  1.22    itojun 				usage();
    177  1.22    itojun 				/*NOTREACHED*/
    178  1.22    itojun 			}
    179  1.22    itojun 			mode = ch;
    180  1.22    itojun 			arg = NULL;
    181   1.1    itojun 			break;
    182   1.1    itojun 		case 'd':
    183  1.22    itojun 		case 'f':
    184   1.1    itojun 		case 'i' :
    185  1.22    itojun 			if (mode) {
    186   1.1    itojun 				usage();
    187  1.22    itojun 				/*NOTREACHED*/
    188  1.22    itojun 			}
    189  1.22    itojun 			mode = ch;
    190  1.22    itojun 			arg = optarg;
    191  1.22    itojun 			break;
    192   1.1    itojun 		case 'n':
    193   1.1    itojun 			nflag = 1;
    194   1.1    itojun 			break;
    195   1.1    itojun 		case 't':
    196   1.1    itojun 			tflag = 1;
    197   1.1    itojun 			break;
    198   1.1    itojun 		case 'A':
    199  1.22    itojun 			if (mode) {
    200  1.22    itojun 				usage();
    201  1.22    itojun 				/*NOTREACHED*/
    202  1.22    itojun 			}
    203  1.22    itojun 			mode = 'a';
    204   1.1    itojun 			repeat = atoi(optarg);
    205   1.1    itojun 			break;
    206   1.1    itojun 		default:
    207   1.1    itojun 			usage();
    208   1.1    itojun 		}
    209   1.1    itojun 
    210   1.1    itojun 	argc -= optind;
    211   1.1    itojun 	argv += optind;
    212   1.1    itojun 
    213  1.45     ozaki 	if (prog_init && prog_init() == -1)
    214  1.45     ozaki 		err(1, "init failed");
    215  1.45     ozaki 
    216  1.45     ozaki 	pid = prog_getpid();
    217  1.45     ozaki 	thiszone = gmt2local(0L);
    218  1.45     ozaki 
    219  1.22    itojun 	switch (mode) {
    220  1.22    itojun 	case 'a':
    221  1.22    itojun 	case 'c':
    222  1.22    itojun 		if (argc != 0) {
    223  1.22    itojun 			usage();
    224  1.22    itojun 			/*NOTREACHED*/
    225  1.22    itojun 		}
    226  1.22    itojun 		dump(0, mode == 'c');
    227  1.22    itojun 		break;
    228  1.22    itojun 	case 'd':
    229  1.22    itojun 		if (argc != 0) {
    230  1.22    itojun 			usage();
    231  1.22    itojun 			/*NOTREACHED*/
    232  1.22    itojun 		}
    233  1.35  christos 		(void)delete(arg);
    234  1.22    itojun 		break;
    235  1.22    itojun 	case 'I':
    236  1.22    itojun #ifdef SIOCSDEFIFACE_IN6	/* XXX: check SIOCGDEFIFACE_IN6 as well? */
    237  1.25    itojun 		if (argc > 1) {
    238  1.22    itojun 			usage();
    239  1.22    itojun 			/*NOTREACHED*/
    240  1.25    itojun 		} else if (argc == 1) {
    241  1.25    itojun 			if (strcmp(*argv, "delete") == 0 ||
    242  1.25    itojun 			    if_nametoindex(*argv))
    243  1.25    itojun 				setdefif(*argv);
    244  1.25    itojun 			else
    245  1.25    itojun 				errx(1, "invalid interface %s", *argv);
    246  1.22    itojun 		}
    247  1.22    itojun 		getdefif(); /* always call it to print the result */
    248  1.22    itojun 		break;
    249  1.22    itojun #else
    250  1.22    itojun 		errx(1, "not supported yet");
    251  1.22    itojun 		/*NOTREACHED*/
    252  1.22    itojun #endif
    253  1.22    itojun 	case 'p':
    254  1.22    itojun 		if (argc != 0) {
    255   1.1    itojun 			usage();
    256  1.22    itojun 			/*NOTREACHED*/
    257  1.22    itojun 		}
    258   1.1    itojun 		plist();
    259  1.22    itojun 		break;
    260  1.22    itojun 	case 'i':
    261  1.22    itojun 		ifinfo(arg, argc, argv);
    262  1.22    itojun 		break;
    263  1.22    itojun 	case 'r':
    264  1.22    itojun 		if (argc != 0) {
    265  1.22    itojun 			usage();
    266  1.22    itojun 			/*NOTREACHED*/
    267  1.22    itojun 		}
    268   1.1    itojun 		rtrlist();
    269  1.22    itojun 		break;
    270  1.22    itojun 	case 's':
    271   1.1    itojun 		if (argc < 2 || argc > 4)
    272   1.1    itojun 			usage();
    273  1.35  christos 		return(set(argc, argv) ? 1 : 0);
    274  1.22    itojun 	case 'H':
    275  1.22    itojun 		if (argc != 0) {
    276  1.22    itojun 			usage();
    277  1.22    itojun 			/*NOTREACHED*/
    278  1.22    itojun 		}
    279   1.1    itojun 		harmonize_rtr();
    280  1.22    itojun 		break;
    281  1.22    itojun 	case 'P':
    282  1.22    itojun 		if (argc != 0) {
    283  1.22    itojun 			usage();
    284  1.22    itojun 			/*NOTREACHED*/
    285  1.22    itojun 		}
    286   1.1    itojun 		pfx_flush();
    287  1.22    itojun 		break;
    288  1.22    itojun 	case 'R':
    289  1.22    itojun 		if (argc != 0) {
    290  1.22    itojun 			usage();
    291  1.22    itojun 			/*NOTREACHED*/
    292  1.22    itojun 		}
    293   1.1    itojun 		rtr_flush();
    294  1.22    itojun 		break;
    295  1.22    itojun 	case 0:
    296  1.22    itojun 		if (argc != 1) {
    297  1.22    itojun 			usage();
    298  1.22    itojun 			/*NOTREACHED*/
    299  1.22    itojun 		}
    300  1.22    itojun 		get(argv[0]);
    301  1.22    itojun 		break;
    302   1.1    itojun 	}
    303  1.35  christos 	return(0);
    304   1.1    itojun }
    305   1.1    itojun 
    306  1.35  christos static void
    307  1.35  christos getsocket(void)
    308   1.1    itojun {
    309  1.35  christos 	if (my_s < 0) {
    310  1.45     ozaki 		my_s = prog_socket(PF_ROUTE, SOCK_RAW, 0);
    311  1.35  christos 		if (my_s < 0)
    312  1.28    itojun 			err(1, "socket");
    313   1.1    itojun 	}
    314   1.1    itojun }
    315   1.1    itojun 
    316  1.35  christos #ifdef notdef
    317  1.36  christos static struct sockaddr_in6 so_mask = {
    318  1.36  christos 	.sin6_len = sizeof(so_mask),
    319  1.36  christos 	.sin6_family = AF_INET6
    320  1.36  christos };
    321  1.35  christos #endif
    322  1.36  christos static struct sockaddr_in6 blank_sin = {
    323  1.36  christos 	.sin6_len = sizeof(blank_sin),
    324  1.36  christos 	.sin6_family = AF_INET6
    325  1.36  christos };
    326  1.36  christos static struct sockaddr_in6 sin_m;
    327  1.36  christos static struct sockaddr_dl blank_sdl = {
    328  1.36  christos 	.sdl_len = sizeof(blank_sdl),
    329  1.36  christos 	.sdl_family = AF_LINK,
    330  1.36  christos };
    331  1.36  christos static struct sockaddr_dl sdl_m;
    332  1.36  christos static int expire_time, flags, found_entry;
    333  1.36  christos static struct {
    334   1.1    itojun 	struct	rt_msghdr m_rtm;
    335   1.1    itojun 	char	m_space[512];
    336  1.36  christos } m_rtmsg;
    337   1.1    itojun 
    338   1.1    itojun /*
    339   1.1    itojun  * Set an individual neighbor cache entry
    340   1.1    itojun  */
    341  1.35  christos static int
    342  1.35  christos set(int argc, char **argv)
    343   1.1    itojun {
    344  1.35  christos 	register struct sockaddr_in6 *mysin = &sin_m;
    345   1.1    itojun 	register struct sockaddr_dl *sdl;
    346   1.1    itojun 	register struct rt_msghdr *rtm = &(m_rtmsg.m_rtm);
    347   1.1    itojun 	struct addrinfo hints, *res;
    348   1.1    itojun 	int gai_error;
    349   1.1    itojun 	u_char *ea;
    350   1.1    itojun 	char *host = argv[0], *eaddr = argv[1];
    351   1.1    itojun 
    352   1.1    itojun 	getsocket();
    353   1.1    itojun 	argc -= 2;
    354   1.1    itojun 	argv += 2;
    355   1.1    itojun 	sdl_m = blank_sdl;
    356   1.1    itojun 	sin_m = blank_sin;
    357   1.1    itojun 
    358  1.35  christos 	(void)memset(&hints, 0, sizeof(hints));
    359   1.1    itojun 	hints.ai_family = AF_INET6;
    360   1.1    itojun 	gai_error = getaddrinfo(host, NULL, &hints, &res);
    361   1.1    itojun 	if (gai_error) {
    362  1.44  christos 		warnx("%s: %s", host, gai_strerror(gai_error));
    363   1.1    itojun 		return 1;
    364   1.1    itojun 	}
    365  1.35  christos 	mysin->sin6_addr = ((struct sockaddr_in6 *)(void *)res->ai_addr)->sin6_addr;
    366  1.41  christos 	inet6_putscopeid(mysin, INET6_IS_ADDR_LINKLOCAL);
    367   1.1    itojun 	ea = (u_char *)LLADDR(&sdl_m);
    368   1.1    itojun 	if (ndp_ether_aton(eaddr, ea) == 0)
    369   1.1    itojun 		sdl_m.sdl_alen = 6;
    370   1.1    itojun 	flags = expire_time = 0;
    371   1.1    itojun 	while (argc-- > 0) {
    372   1.1    itojun 		if (strncmp(argv[0], "temp", 4) == 0) {
    373  1.35  christos 			struct timeval tim;
    374  1.21    itojun 
    375  1.35  christos 			(void)gettimeofday(&tim, 0);
    376  1.35  christos 			expire_time = tim.tv_sec + 20 * 60;
    377   1.6    itojun 		} else if (strncmp(argv[0], "proxy", 5) == 0)
    378   1.6    itojun 			flags |= RTF_ANNOUNCE;
    379   1.1    itojun 		argv++;
    380   1.1    itojun 	}
    381   1.1    itojun 	if (rtmsg(RTM_GET) < 0) {
    382  1.16    itojun 		errx(1, "RTM_GET(%s) failed", host);
    383  1.16    itojun 		/* NOTREACHED */
    384   1.1    itojun 	}
    385  1.35  christos 	mysin = (struct sockaddr_in6 *)(void *)(rtm + 1);
    386  1.39  drochner 	sdl = (struct sockaddr_dl *)(void *)(RT_ROUNDUP(mysin->sin6_len) + (char *)(void *)mysin);
    387  1.35  christos 	if (IN6_ARE_ADDR_EQUAL(&mysin->sin6_addr, &sin_m.sin6_addr)) {
    388   1.1    itojun 		if (sdl->sdl_family == AF_LINK &&
    389   1.1    itojun 		    (rtm->rtm_flags & RTF_LLINFO) &&
    390  1.22    itojun 		    !(rtm->rtm_flags & RTF_GATEWAY)) {
    391  1.22    itojun 			switch (sdl->sdl_type) {
    392  1.22    itojun 			case IFT_ETHER: case IFT_FDDI: case IFT_ISO88023:
    393  1.22    itojun 			case IFT_ISO88024: case IFT_ISO88025:
    394  1.22    itojun 				goto overwrite;
    395  1.22    itojun 			}
    396   1.1    itojun 		}
    397   1.9    itojun 		/*
    398   1.9    itojun 		 * IPv4 arp command retries with sin_other = SIN_PROXY here.
    399   1.9    itojun 		 */
    400  1.35  christos 		(void)fprintf(stderr, "set: cannot configure a new entry\n");
    401   1.9    itojun 		return 1;
    402   1.1    itojun 	}
    403   1.9    itojun 
    404   1.1    itojun overwrite:
    405   1.1    itojun 	if (sdl->sdl_family != AF_LINK) {
    406  1.35  christos 		warnx("cannot intuit interface index and type for %s", host);
    407   1.1    itojun 		return (1);
    408   1.1    itojun 	}
    409   1.1    itojun 	sdl_m.sdl_type = sdl->sdl_type;
    410   1.1    itojun 	sdl_m.sdl_index = sdl->sdl_index;
    411   1.1    itojun 	return (rtmsg(RTM_ADD));
    412   1.1    itojun }
    413   1.1    itojun 
    414   1.1    itojun /*
    415   1.1    itojun  * Display an individual neighbor cache entry
    416   1.1    itojun  */
    417  1.35  christos static void
    418  1.35  christos get(char *host)
    419   1.1    itojun {
    420  1.35  christos 	struct sockaddr_in6 *mysin = &sin_m;
    421   1.1    itojun 	struct addrinfo hints, *res;
    422   1.1    itojun 	int gai_error;
    423   1.1    itojun 
    424   1.1    itojun 	sin_m = blank_sin;
    425  1.35  christos 	(void)memset(&hints, 0, sizeof(hints));
    426   1.1    itojun 	hints.ai_family = AF_INET6;
    427   1.1    itojun 	gai_error = getaddrinfo(host, NULL, &hints, &res);
    428   1.1    itojun 	if (gai_error) {
    429  1.44  christos 		warnx("%s: %s", host, gai_strerror(gai_error));
    430   1.1    itojun 		return;
    431   1.1    itojun 	}
    432  1.35  christos 	mysin->sin6_addr = ((struct sockaddr_in6 *)(void *)res->ai_addr)->sin6_addr;
    433  1.41  christos 	inet6_putscopeid(mysin, INET6_IS_ADDR_LINKLOCAL);
    434  1.35  christos 	dump(&mysin->sin6_addr, 0);
    435   1.1    itojun 	if (found_entry == 0) {
    436  1.35  christos 		(void)getnameinfo((struct sockaddr *)(void *)mysin,
    437  1.35  christos 		    (socklen_t)mysin->sin6_len,
    438  1.35  christos 		    host_buf, sizeof(host_buf), NULL ,0,
    439  1.21    itojun 		    (nflag ? NI_NUMERICHOST : 0));
    440  1.35  christos 		errx(1, "%s (%s) -- no entry", host, host_buf);
    441   1.1    itojun 	}
    442   1.1    itojun }
    443   1.1    itojun 
    444   1.1    itojun /*
    445   1.1    itojun  * Delete a neighbor cache entry
    446   1.1    itojun  */
    447  1.35  christos static int
    448  1.35  christos delete(char *host)
    449   1.1    itojun {
    450  1.35  christos 	struct sockaddr_in6 *mysin = &sin_m;
    451   1.1    itojun 	register struct rt_msghdr *rtm = &m_rtmsg.m_rtm;
    452   1.1    itojun 	struct sockaddr_dl *sdl;
    453   1.1    itojun 	struct addrinfo hints, *res;
    454   1.1    itojun 	int gai_error;
    455   1.1    itojun 
    456   1.1    itojun 	getsocket();
    457   1.1    itojun 	sin_m = blank_sin;
    458   1.1    itojun 
    459   1.1    itojun 	bzero(&hints, sizeof(hints));
    460   1.1    itojun 	hints.ai_family = AF_INET6;
    461   1.1    itojun 	gai_error = getaddrinfo(host, NULL, &hints, &res);
    462   1.1    itojun 	if (gai_error) {
    463  1.44  christos 		warnx("%s: %s", host, gai_strerror(gai_error));
    464   1.1    itojun 		return 1;
    465   1.1    itojun 	}
    466  1.35  christos 	mysin->sin6_addr = ((struct sockaddr_in6 *)(void *)res->ai_addr)->sin6_addr;
    467  1.41  christos 	inet6_putscopeid(mysin, INET6_IS_ADDR_LINKLOCAL);
    468  1.35  christos 	if (rtmsg(RTM_GET) < 0)
    469  1.16    itojun 		errx(1, "RTM_GET(%s) failed", host);
    470  1.35  christos 	mysin = (struct sockaddr_in6 *)(void *)(rtm + 1);
    471  1.39  drochner 	sdl = (struct sockaddr_dl *)(void *)(RT_ROUNDUP(mysin->sin6_len) +
    472  1.35  christos 	    (char *)(void *)mysin);
    473  1.35  christos 	if (IN6_ARE_ADDR_EQUAL(&mysin->sin6_addr, &sin_m.sin6_addr)) {
    474   1.1    itojun 		if (sdl->sdl_family == AF_LINK &&
    475   1.1    itojun 		    (rtm->rtm_flags & RTF_LLINFO) &&
    476   1.8    itojun 		    !(rtm->rtm_flags & RTF_GATEWAY)) {
    477  1.13    itojun 			goto delete;
    478   1.1    itojun 		}
    479   1.9    itojun 		/*
    480   1.9    itojun 		 * IPv4 arp command retries with sin_other = SIN_PROXY here.
    481   1.9    itojun 		 */
    482  1.35  christos 		warnx("delete: cannot delete non-NDP entry");
    483   1.9    itojun 		return 1;
    484   1.1    itojun 	}
    485   1.8    itojun 
    486   1.1    itojun delete:
    487   1.1    itojun 	if (sdl->sdl_family != AF_LINK) {
    488  1.35  christos 		(void)printf("cannot locate %s\n", host);
    489   1.1    itojun 		return (1);
    490   1.1    itojun 	}
    491   1.4    itojun 	if (rtmsg(RTM_DELETE) == 0) {
    492  1.35  christos 		struct sockaddr_in6 s6 = *mysin; /* XXX: for safety */
    493  1.11    itojun 
    494  1.41  christos 		mysin->sin6_scope_id = 0;
    495  1.41  christos 		inet6_putscopeid(mysin, INET6_IS_ADDR_LINKLOCAL);
    496  1.35  christos 		(void)getnameinfo((struct sockaddr *)(void *)&s6,
    497  1.35  christos 		    (socklen_t)s6.sin6_len, host_buf,
    498  1.21    itojun 		    sizeof(host_buf), NULL, 0,
    499  1.21    itojun 		    (nflag ? NI_NUMERICHOST : 0));
    500  1.35  christos 		(void)printf("%s (%s) deleted\n", host, host_buf);
    501   1.4    itojun 	}
    502   1.4    itojun 
    503   1.1    itojun 	return 0;
    504   1.1    itojun }
    505   1.1    itojun 
    506  1.19    itojun #define W_ADDR	36
    507  1.13    itojun #define W_LL	17
    508  1.13    itojun #define W_IF	6
    509  1.13    itojun 
    510   1.1    itojun /*
    511   1.1    itojun  * Dump the entire neighbor cache
    512   1.1    itojun  */
    513  1.35  christos static void
    514  1.35  christos dump(struct in6_addr *addr, int cflag)
    515   1.1    itojun {
    516   1.1    itojun 	int mib[6];
    517   1.1    itojun 	size_t needed;
    518   1.4    itojun 	char *lim, *buf, *next;
    519   1.1    itojun 	struct rt_msghdr *rtm;
    520  1.35  christos 	struct sockaddr_in6 *mysin;
    521   1.1    itojun 	struct sockaddr_dl *sdl;
    522   1.1    itojun 	struct in6_nbrinfo *nbi;
    523  1.35  christos 	struct timeval tim;
    524   1.4    itojun 	int addrwidth;
    525  1.13    itojun 	int llwidth;
    526  1.13    itojun 	int ifwidth;
    527   1.4    itojun 	char flgbuf[8];
    528  1.35  christos 	const char *ifname;
    529   1.1    itojun 
    530   1.1    itojun 	/* Print header */
    531  1.11    itojun 	if (!tflag && !cflag)
    532  1.35  christos 		(void)printf("%-*.*s %-*.*s %*.*s %-9.9s %1s %5s\n",
    533  1.13    itojun 		    W_ADDR, W_ADDR, "Neighbor", W_LL, W_LL, "Linklayer Address",
    534  1.22    itojun 		    W_IF, W_IF, "Netif", "Expire", "S", "Flags");
    535   1.1    itojun 
    536   1.1    itojun again:;
    537   1.1    itojun 	mib[0] = CTL_NET;
    538   1.1    itojun 	mib[1] = PF_ROUTE;
    539   1.1    itojun 	mib[2] = 0;
    540   1.1    itojun 	mib[3] = AF_INET6;
    541   1.1    itojun 	mib[4] = NET_RT_FLAGS;
    542   1.1    itojun 	mib[5] = RTF_LLINFO;
    543  1.45     ozaki 	if (prog_sysctl(mib, 6, NULL, &needed, NULL, 0) < 0)
    544   1.3    itojun 		err(1, "sysctl(PF_ROUTE estimate)");
    545   1.3    itojun 	if (needed > 0) {
    546   1.3    itojun 		if ((buf = malloc(needed)) == NULL)
    547  1.28    itojun 			err(1, "malloc");
    548  1.45     ozaki 		if (prog_sysctl(mib, 6, buf, &needed, NULL, 0) < 0)
    549   1.3    itojun 			err(1, "sysctl(PF_ROUTE, NET_RT_FLAGS)");
    550   1.3    itojun 		lim = buf + needed;
    551   1.3    itojun 	} else
    552   1.3    itojun 		buf = lim = NULL;
    553   1.1    itojun 
    554   1.3    itojun 	for (next = buf; next && next < lim; next += rtm->rtm_msglen) {
    555   1.1    itojun 		int isrouter = 0, prbs = 0;
    556   1.1    itojun 
    557  1.35  christos 		rtm = (struct rt_msghdr *)(void *)next;
    558  1.35  christos 		mysin = (struct sockaddr_in6 *)(void *)(rtm + 1);
    559  1.39  drochner 		sdl = (struct sockaddr_dl *)(void *)((char *)(void *)mysin + RT_ROUNDUP(mysin->sin6_len));
    560  1.16    itojun 
    561  1.16    itojun 		/*
    562  1.16    itojun 		 * Some OSes can produce a route that has the LINK flag but
    563  1.16    itojun 		 * has a non-AF_LINK gateway (e.g. fe80::xx%lo0 on FreeBSD
    564  1.16    itojun 		 * and BSD/OS, where xx is not the interface identifier on
    565  1.16    itojun 		 * lo0).  Such routes entry would annoy getnbrinfo() below,
    566  1.16    itojun 		 * so we skip them.
    567  1.16    itojun 		 * XXX: such routes should have the GATEWAY flag, not the
    568  1.16    itojun 		 * LINK flag.  However, there is rotten routing software
    569  1.16    itojun 		 * that advertises all routes that have the GATEWAY flag.
    570  1.16    itojun 		 * Thus, KAME kernel intentionally does not set the LINK flag.
    571  1.16    itojun 		 * What is to be fixed is not ndp, but such routing software
    572  1.16    itojun 		 * (and the kernel workaround)...
    573  1.16    itojun 		 */
    574  1.16    itojun 		if (sdl->sdl_family != AF_LINK)
    575  1.16    itojun 			continue;
    576  1.16    itojun 
    577  1.19    itojun 		if (!(rtm->rtm_flags & RTF_HOST))
    578  1.19    itojun 			continue;
    579  1.19    itojun 
    580   1.1    itojun 		if (addr) {
    581  1.35  christos 			if (!IN6_ARE_ADDR_EQUAL(addr, &mysin->sin6_addr))
    582   1.1    itojun 				continue;
    583   1.1    itojun 			found_entry = 1;
    584  1.35  christos 		} else if (IN6_IS_ADDR_MULTICAST(&mysin->sin6_addr))
    585   1.1    itojun 			continue;
    586  1.35  christos 		if (IN6_IS_ADDR_LINKLOCAL(&mysin->sin6_addr) ||
    587  1.35  christos 		    IN6_IS_ADDR_MC_LINKLOCAL(&mysin->sin6_addr)) {
    588  1.41  christos 			uint16_t scopeid = mysin->sin6_scope_id;
    589  1.41  christos 			inet6_getscopeid(mysin, INET6_IS_ADDR_LINKLOCAL|
    590  1.41  christos 			    INET6_IS_ADDR_MC_LINKLOCAL);
    591  1.41  christos 			if (scopeid == 0)
    592  1.35  christos 				mysin->sin6_scope_id = sdl->sdl_index;
    593   1.1    itojun 		}
    594  1.35  christos 		(void)getnameinfo((struct sockaddr *)(void *)mysin,
    595  1.35  christos 		    (socklen_t)mysin->sin6_len,
    596  1.35  christos 		    host_buf, sizeof(host_buf), NULL, 0,
    597  1.35  christos 		    (nflag ? NI_NUMERICHOST : 0));
    598  1.22    itojun 		if (cflag) {
    599  1.19    itojun #ifdef RTF_WASCLONED
    600  1.19    itojun 			if (rtm->rtm_flags & RTF_WASCLONED)
    601  1.35  christos 				(void)delete(host_buf);
    602  1.19    itojun #elif defined(RTF_CLONED)
    603  1.19    itojun 			if (rtm->rtm_flags & RTF_CLONED)
    604  1.35  christos 				(void)delete(host_buf);
    605  1.19    itojun #else
    606  1.35  christos 			(void)delete(host_buf);
    607  1.19    itojun #endif
    608  1.11    itojun 			continue;
    609  1.11    itojun 		}
    610  1.35  christos 		(void)gettimeofday(&tim, 0);
    611   1.1    itojun 		if (tflag)
    612  1.35  christos 			ts_print(&tim);
    613   1.1    itojun 
    614  1.13    itojun 		addrwidth = strlen(host_buf);
    615  1.13    itojun 		if (addrwidth < W_ADDR)
    616  1.13    itojun 			addrwidth = W_ADDR;
    617  1.13    itojun 		llwidth = strlen(ether_str(sdl));
    618  1.13    itojun 		if (W_ADDR + W_LL - addrwidth > llwidth)
    619  1.13    itojun 			llwidth = W_ADDR + W_LL - addrwidth;
    620  1.35  christos 		ifname = if_indextoname((unsigned int)sdl->sdl_index, ifix_buf);
    621  1.14    itojun 		if (!ifname)
    622  1.14    itojun 			ifname = "?";
    623  1.14    itojun 		ifwidth = strlen(ifname);
    624  1.13    itojun 		if (W_ADDR + W_LL + W_IF - addrwidth - llwidth > ifwidth)
    625  1.13    itojun 			ifwidth = W_ADDR + W_LL + W_IF - addrwidth - llwidth;
    626  1.13    itojun 
    627  1.35  christos 		(void)printf("%-*.*s %-*.*s %*.*s", addrwidth, addrwidth,
    628  1.35  christos 		    host_buf, llwidth, llwidth, ether_str(sdl), ifwidth,
    629  1.35  christos 		    ifwidth, ifname);
    630   1.1    itojun 
    631   1.1    itojun 		/* Print neighbor discovery specific informations */
    632  1.35  christos 		nbi = getnbrinfo(&mysin->sin6_addr,
    633  1.35  christos 		    (unsigned int)sdl->sdl_index, 1);
    634   1.1    itojun 		if (nbi) {
    635  1.35  christos 			if (nbi->expire > tim.tv_sec) {
    636  1.35  christos 				(void)printf(" %-9.9s",
    637  1.35  christos 				    sec2str(nbi->expire - tim.tv_sec));
    638  1.11    itojun 			} else if (nbi->expire == 0)
    639  1.35  christos 				(void)printf(" %-9.9s", "permanent");
    640   1.1    itojun 			else
    641  1.35  christos 				(void)printf(" %-9.9s", "expired");
    642   1.1    itojun 
    643  1.21    itojun 			switch (nbi->state) {
    644  1.19    itojun 			case ND6_LLINFO_NOSTATE:
    645  1.35  christos 				 (void)printf(" N");
    646   1.1    itojun 				 break;
    647  1.11    itojun #ifdef ND6_LLINFO_WAITDELETE
    648  1.19    itojun 			case ND6_LLINFO_WAITDELETE:
    649  1.35  christos 				 (void)printf(" W");
    650   1.1    itojun 				 break;
    651  1.11    itojun #endif
    652  1.19    itojun 			case ND6_LLINFO_INCOMPLETE:
    653  1.35  christos 				 (void)printf(" I");
    654   1.1    itojun 				 break;
    655  1.19    itojun 			case ND6_LLINFO_REACHABLE:
    656  1.35  christos 				 (void)printf(" R");
    657   1.1    itojun 				 break;
    658  1.19    itojun 			case ND6_LLINFO_STALE:
    659  1.35  christos 				 (void)printf(" S");
    660   1.1    itojun 				 break;
    661  1.19    itojun 			case ND6_LLINFO_DELAY:
    662  1.35  christos 				 (void)printf(" D");
    663   1.1    itojun 				 break;
    664  1.19    itojun 			case ND6_LLINFO_PROBE:
    665  1.35  christos 				 (void)printf(" P");
    666   1.1    itojun 				 break;
    667  1.19    itojun 			default:
    668  1.35  christos 				 (void)printf(" ?");
    669   1.1    itojun 				 break;
    670   1.1    itojun 			}
    671   1.1    itojun 
    672   1.1    itojun 			isrouter = nbi->isrouter;
    673   1.1    itojun 			prbs = nbi->asked;
    674  1.11    itojun 		} else {
    675   1.1    itojun 			warnx("failed to get neighbor information");
    676  1.35  christos 			(void)printf("  ");
    677   1.1    itojun 		}
    678   1.1    itojun 
    679   1.4    itojun 		/*
    680   1.4    itojun 		 * other flags. R: router, P: proxy, W: ??
    681   1.4    itojun 		 */
    682   1.4    itojun 		if ((rtm->rtm_addrs & RTA_NETMASK) == 0) {
    683  1.35  christos 			(void)snprintf(flgbuf, sizeof(flgbuf), "%s%s",
    684  1.21    itojun 			    isrouter ? "R" : "",
    685  1.21    itojun 			    (rtm->rtm_flags & RTF_ANNOUNCE) ? "p" : "");
    686   1.4    itojun 		} else {
    687  1.35  christos 			mysin = (struct sockaddr_in6 *)(void *)
    688  1.35  christos 			    (sdl->sdl_len + (char *)(void *)sdl);
    689  1.19    itojun #if 0	/* W and P are mystery even for us */
    690  1.35  christos 			(void)snprintf(flgbuf, sizeof(flgbuf), "%s%s%s%s",
    691  1.21    itojun 			    isrouter ? "R" : "",
    692  1.21    itojun 			    !IN6_IS_ADDR_UNSPECIFIED(&sin->sin6_addr) ? "P" : "",
    693  1.21    itojun 			    (sin->sin6_len != sizeof(struct sockaddr_in6)) ? "W" : "",
    694  1.21    itojun 			    (rtm->rtm_flags & RTF_ANNOUNCE) ? "p" : "");
    695  1.19    itojun #else
    696  1.35  christos 			(void)snprintf(flgbuf, sizeof(flgbuf), "%s%s",
    697  1.21    itojun 			    isrouter ? "R" : "",
    698  1.21    itojun 			    (rtm->rtm_flags & RTF_ANNOUNCE) ? "p" : "");
    699  1.19    itojun #endif
    700   1.1    itojun 		}
    701  1.35  christos 		(void)printf(" %s", flgbuf);
    702   1.1    itojun 
    703   1.1    itojun 		if (prbs)
    704  1.35  christos 			(void)printf(" %d", prbs);
    705   1.1    itojun 
    706  1.35  christos 		(void)printf("\n");
    707   1.1    itojun 	}
    708  1.12    itojun 	if (buf != NULL)
    709  1.12    itojun 		free(buf);
    710   1.1    itojun 
    711   1.1    itojun 	if (repeat) {
    712  1.35  christos 		(void)printf("\n");
    713  1.35  christos 		(void)fflush(stdout);
    714  1.35  christos 		(void)sleep(repeat);
    715   1.1    itojun 		goto again;
    716   1.1    itojun 	}
    717   1.1    itojun }
    718   1.1    itojun 
    719   1.1    itojun static struct in6_nbrinfo *
    720  1.35  christos getnbrinfo(struct in6_addr *addr, unsigned int ifindex, int warning)
    721   1.1    itojun {
    722   1.1    itojun 	static struct in6_nbrinfo nbi;
    723   1.1    itojun 	int s;
    724   1.1    itojun 
    725  1.45     ozaki 	if ((s = prog_socket(AF_INET6, SOCK_DGRAM, 0)) < 0)
    726   1.1    itojun 		err(1, "socket");
    727   1.1    itojun 
    728  1.35  christos 	(void)memset(&nbi, 0, sizeof(nbi));
    729  1.35  christos 	(void)if_indextoname(ifindex, nbi.ifname);
    730   1.1    itojun 	nbi.addr = *addr;
    731  1.45     ozaki 	if (prog_ioctl(s, SIOCGNBRINFO_IN6, &nbi) < 0) {
    732   1.4    itojun 		if (warning)
    733   1.8    itojun 			warn("ioctl(SIOCGNBRINFO_IN6)");
    734  1.45     ozaki 		(void)prog_close(s);
    735   1.1    itojun 		return(NULL);
    736   1.1    itojun 	}
    737   1.1    itojun 
    738  1.45     ozaki 	(void)prog_close(s);
    739   1.1    itojun 	return(&nbi);
    740   1.1    itojun }
    741   1.1    itojun 
    742   1.1    itojun static char *
    743  1.35  christos ether_str(struct sockaddr_dl *sdl)
    744   1.1    itojun {
    745  1.17     bjh21 	static char hbuf[NI_MAXHOST];
    746   1.1    itojun 
    747   1.1    itojun 	if (sdl->sdl_alen) {
    748  1.35  christos 		if (getnameinfo((struct sockaddr *)(void *)sdl,
    749  1.35  christos 		    (socklen_t)sdl->sdl_len,
    750  1.17     bjh21 		    hbuf, sizeof(hbuf), NULL, 0, NI_NUMERICHOST) != 0)
    751  1.35  christos 			(void)snprintf(hbuf, sizeof(hbuf), "<invalid>");
    752  1.20    itojun 	} else
    753  1.35  christos 		(void)snprintf(hbuf, sizeof(hbuf), "(incomplete)");
    754   1.1    itojun 
    755  1.17     bjh21 	return(hbuf);
    756   1.1    itojun }
    757   1.1    itojun 
    758  1.35  christos static int
    759  1.35  christos ndp_ether_aton(char *a, u_char *n)
    760   1.1    itojun {
    761   1.1    itojun 	int i, o[6];
    762   1.1    itojun 
    763   1.1    itojun 	i = sscanf(a, "%x:%x:%x:%x:%x:%x", &o[0], &o[1], &o[2],
    764  1.21    itojun 	    &o[3], &o[4], &o[5]);
    765   1.1    itojun 	if (i != 6) {
    766  1.35  christos 		warnx("invalid Ethernet address '%s'", a);
    767   1.1    itojun 		return (1);
    768   1.1    itojun 	}
    769  1.24    itojun 	for (i = 0; i < 6; i++)
    770   1.1    itojun 		n[i] = o[i];
    771   1.1    itojun 	return (0);
    772   1.1    itojun }
    773   1.1    itojun 
    774  1.35  christos static void
    775  1.35  christos usage(void)
    776   1.1    itojun {
    777  1.35  christos 	const char *pn = getprogname();
    778  1.35  christos 
    779  1.35  christos 	(void)fprintf(stderr, "Usage: %s [-nt] hostname\n", pn);
    780  1.35  christos 	(void)fprintf(stderr,
    781  1.35  christos 	    "       %s [-nt] -a | -c | -p | -r | -H | -P | -R\n", pn);
    782  1.35  christos 	(void)fprintf(stderr, "       %s [-nt] -A wait\n", pn);
    783  1.35  christos 	(void)fprintf(stderr, "       %s [-nt] -d hostname\n", pn);
    784  1.35  christos 	(void)fprintf(stderr, "       %s [-nt] -f filename\n", pn);
    785  1.35  christos 	(void)fprintf(stderr, "       %s [-nt] -i interface [flags...]\n", pn);
    786   1.4    itojun #ifdef SIOCSDEFIFACE_IN6
    787  1.35  christos 	(void)fprintf(stderr, "       %s [-nt] -I [interface|delete]\n", pn);
    788   1.4    itojun #endif
    789  1.35  christos 	(void)fprintf(stderr,
    790  1.35  christos 	    "       %s [-nt] -s nodename etheraddr [temp] [proxy]\n", pn);
    791   1.1    itojun 	exit(1);
    792   1.1    itojun }
    793   1.1    itojun 
    794  1.35  christos static int
    795  1.35  christos rtmsg(int cmd)
    796   1.1    itojun {
    797   1.1    itojun 	static int seq;
    798   1.1    itojun 	register struct rt_msghdr *rtm = &m_rtmsg.m_rtm;
    799   1.1    itojun 	register char *cp = m_rtmsg.m_space;
    800   1.1    itojun 	register int l;
    801   1.1    itojun 
    802   1.1    itojun 	errno = 0;
    803   1.1    itojun 	if (cmd == RTM_DELETE)
    804   1.1    itojun 		goto doit;
    805  1.35  christos 	(void)memset(&m_rtmsg, 0, sizeof(m_rtmsg));
    806   1.1    itojun 	rtm->rtm_flags = flags;
    807   1.1    itojun 	rtm->rtm_version = RTM_VERSION;
    808   1.1    itojun 
    809   1.1    itojun 	switch (cmd) {
    810   1.1    itojun 	default:
    811  1.35  christos 		errx(1, "internal wrong cmd");
    812  1.35  christos 		/*NOTREACHED*/
    813   1.1    itojun 	case RTM_ADD:
    814   1.1    itojun 		rtm->rtm_addrs |= RTA_GATEWAY;
    815  1.19    itojun 		if (expire_time) {
    816  1.19    itojun 			rtm->rtm_rmx.rmx_expire = expire_time;
    817  1.19    itojun 			rtm->rtm_inits = RTV_EXPIRE;
    818  1.19    itojun 		}
    819   1.1    itojun 		rtm->rtm_flags |= (RTF_HOST | RTF_STATIC);
    820  1.35  christos #ifdef notdef	/* we don't support ipv6addr/128 type proxying. */
    821   1.6    itojun 		if (rtm->rtm_flags & RTF_ANNOUNCE) {
    822   1.6    itojun 			rtm->rtm_flags &= ~RTF_HOST;
    823  1.30    itojun 			rtm->rtm_addrs |= RTA_NETMASK;
    824   1.6    itojun 		}
    825  1.34    rpaulo #endif
    826   1.1    itojun 		/* FALLTHROUGH */
    827   1.1    itojun 	case RTM_GET:
    828   1.1    itojun 		rtm->rtm_addrs |= RTA_DST;
    829   1.1    itojun 	}
    830   1.1    itojun #define NEXTADDR(w, s) \
    831   1.1    itojun 	if (rtm->rtm_addrs & (w)) { \
    832  1.35  christos 		(void)memcpy(cp, &s, sizeof(s)); \
    833  1.39  drochner 		RT_ADVANCE(cp, (struct sockaddr *)(void *)&s); \
    834  1.35  christos 	}
    835   1.1    itojun 
    836   1.1    itojun 	NEXTADDR(RTA_DST, sin_m);
    837   1.1    itojun 	NEXTADDR(RTA_GATEWAY, sdl_m);
    838  1.35  christos #ifdef notdef	/* we don't support ipv6addr/128 type proxying. */
    839  1.35  christos 	(void)memset(&so_mask.sin6_addr, 0xff, sizeof(so_mask.sin6_addr));
    840   1.1    itojun 	NEXTADDR(RTA_NETMASK, so_mask);
    841  1.34    rpaulo #endif
    842   1.1    itojun 
    843  1.35  christos 	rtm->rtm_msglen = cp - (char *)(void *)&m_rtmsg;
    844   1.1    itojun doit:
    845   1.1    itojun 	l = rtm->rtm_msglen;
    846   1.1    itojun 	rtm->rtm_seq = ++seq;
    847   1.1    itojun 	rtm->rtm_type = cmd;
    848  1.45     ozaki 	if (prog_write(my_s, &m_rtmsg, (size_t)l) == -1) {
    849  1.35  christos 		if (errno != ESRCH || cmd != RTM_DELETE)
    850  1.16    itojun 			err(1, "writing to routing socket");
    851   1.1    itojun 	}
    852   1.1    itojun 	do {
    853  1.45     ozaki 		l = prog_read(my_s, &m_rtmsg, sizeof(m_rtmsg));
    854   1.1    itojun 	} while (l > 0 && (rtm->rtm_seq != seq || rtm->rtm_pid != pid));
    855   1.1    itojun 	if (l < 0)
    856  1.35  christos 		warn("read from routing socket");
    857   1.1    itojun 	return (0);
    858   1.1    itojun }
    859   1.1    itojun 
    860  1.35  christos static void
    861  1.35  christos ifinfo(char *ifname, int argc, char **argv)
    862   1.1    itojun {
    863   1.1    itojun 	struct in6_ndireq nd;
    864   1.8    itojun 	int i, s;
    865   1.8    itojun 	u_int32_t newflags;
    866  1.13    itojun #ifdef IPV6CTL_USETEMPADDR
    867  1.13    itojun 	u_int8_t nullbuf[8];
    868  1.13    itojun #endif
    869   1.1    itojun 
    870  1.45     ozaki 	if ((s = prog_socket(AF_INET6, SOCK_DGRAM, 0)) < 0)
    871  1.16    itojun 		err(1, "socket");
    872  1.35  christos 	(void)memset(&nd, 0, sizeof(nd));
    873  1.35  christos 	(void)strlcpy(nd.ifname, ifname, sizeof(nd.ifname));
    874  1.45     ozaki 	if (prog_ioctl(s, SIOCGIFINFO_IN6, &nd) < 0)
    875  1.21    itojun 		err(1, "ioctl(SIOCGIFINFO_IN6)");
    876   1.1    itojun #define ND nd.ndi
    877   1.8    itojun 	newflags = ND.flags;
    878  1.22    itojun 	for (i = 0; i < argc; i++) {
    879   1.8    itojun 		int clear = 0;
    880   1.8    itojun 		char *cp = argv[i];
    881   1.8    itojun 
    882   1.8    itojun 		if (*cp == '-') {
    883   1.8    itojun 			clear = 1;
    884   1.8    itojun 			cp++;
    885   1.8    itojun 		}
    886   1.8    itojun 
    887   1.8    itojun #define SETFLAG(s, f) \
    888   1.8    itojun 	do {\
    889   1.8    itojun 		if (strcmp(cp, (s)) == 0) {\
    890   1.8    itojun 			if (clear)\
    891   1.8    itojun 				newflags &= ~(f);\
    892   1.8    itojun 			else\
    893   1.8    itojun 				newflags |= (f);\
    894   1.8    itojun 		}\
    895  1.35  christos 	} while (/*CONSTCOND*/0)
    896  1.34    rpaulo /*
    897  1.34    rpaulo  * XXX: this macro is not 100% correct, in that it matches "nud" against
    898  1.34    rpaulo  *      "nudbogus".  But we just let it go since this is minor.
    899  1.34    rpaulo  */
    900  1.34    rpaulo #define SETVALUE(f, v) \
    901  1.34    rpaulo 	do { \
    902  1.34    rpaulo 		char *valptr; \
    903  1.34    rpaulo 		unsigned long newval; \
    904  1.34    rpaulo 		v = 0; /* unspecified */ \
    905  1.34    rpaulo 		if (strncmp(cp, f, strlen(f)) == 0) { \
    906  1.34    rpaulo 			valptr = strchr(cp, '='); \
    907  1.34    rpaulo 			if (valptr == NULL) \
    908  1.34    rpaulo 				err(1, "syntax error in %s field", (f)); \
    909  1.34    rpaulo 			errno = 0; \
    910  1.34    rpaulo 			newval = strtoul(++valptr, NULL, 0); \
    911  1.34    rpaulo 			if (errno) \
    912  1.34    rpaulo 				err(1, "syntax error in %s's value", (f)); \
    913  1.34    rpaulo 			v = newval; \
    914  1.34    rpaulo 		} \
    915  1.35  christos 	} while (/*CONSTCOND*/0)
    916  1.34    rpaulo 
    917  1.34    rpaulo #ifdef ND6_IFF_IFDISABLED
    918  1.34    rpaulo 		SETFLAG("disabled", ND6_IFF_IFDISABLED);
    919  1.34    rpaulo #endif
    920   1.8    itojun 		SETFLAG("nud", ND6_IFF_PERFORMNUD);
    921  1.19    itojun #ifdef ND6_IFF_ACCEPT_RTADV
    922  1.19    itojun 		SETFLAG("accept_rtadv", ND6_IFF_ACCEPT_RTADV);
    923  1.19    itojun #endif
    924  1.38    dyoung #ifdef ND6_IFF_OVERRIDE_RTADV
    925  1.38    dyoung 		SETFLAG("override_rtadv", ND6_IFF_OVERRIDE_RTADV);
    926  1.38    dyoung #endif
    927  1.43       roy #ifdef ND6_IFF_AUTO_LINKLOCAL
    928  1.43       roy 		SETFLAG("auto_linklocal", ND6_IFF_AUTO_LINKLOCAL);
    929  1.43       roy #endif
    930  1.19    itojun #ifdef ND6_IFF_PREFER_SOURCE
    931  1.19    itojun 		SETFLAG("prefer_source", ND6_IFF_PREFER_SOURCE);
    932  1.19    itojun #endif
    933  1.34    rpaulo #ifdef ND6_IFF_DONT_SET_IFROUTE
    934  1.34    rpaulo 		SETFLAG("dont_set_ifroute", ND6_IFF_DONT_SET_IFROUTE);
    935  1.34    rpaulo #endif
    936  1.34    rpaulo 		SETVALUE("basereachable", ND.basereachable);
    937  1.34    rpaulo 		SETVALUE("retrans", ND.retrans);
    938  1.34    rpaulo 		SETVALUE("curhlim", ND.chlim);
    939   1.8    itojun 
    940   1.8    itojun 		ND.flags = newflags;
    941  1.34    rpaulo #ifdef SIOCSIFINFO_IN6
    942  1.45     ozaki 		if (prog_ioctl(s, SIOCSIFINFO_IN6, &nd) < 0)
    943  1.34    rpaulo 			err(1, "ioctl(SIOCSIFINFO_IN6)");
    944  1.34    rpaulo #else
    945  1.45     ozaki 		if (prog_ioctl(s, SIOCSIFINFO_FLAGS, &nd) < 0)
    946  1.16    itojun 			err(1, "ioctl(SIOCSIFINFO_FLAGS)");
    947  1.34    rpaulo #endif
    948   1.8    itojun #undef SETFLAG
    949  1.34    rpaulo #undef SETVALUE
    950   1.8    itojun 	}
    951   1.8    itojun 
    952  1.35  christos 	if (!ND.initialized)
    953  1.16    itojun 		errx(1, "%s: not initialized yet", ifname);
    954  1.16    itojun 
    955  1.45     ozaki 	if (prog_ioctl(s, SIOCGIFINFO_IN6, &nd) < 0)
    956  1.34    rpaulo 		err(1, "ioctl(SIOCGIFINFO_IN6)");
    957  1.35  christos 	(void)printf("linkmtu=%d", ND.linkmtu);
    958  1.35  christos 	(void)printf(", maxmtu=%d", ND.maxmtu);
    959  1.35  christos 	(void)printf(", curhlim=%d", ND.chlim);
    960  1.35  christos 	(void)printf(", basereachable=%ds%dms",
    961  1.21    itojun 	    ND.basereachable / 1000, ND.basereachable % 1000);
    962  1.35  christos 	(void)printf(", reachable=%ds", ND.reachable);
    963  1.35  christos 	(void)printf(", retrans=%ds%dms", ND.retrans / 1000, ND.retrans % 1000);
    964  1.13    itojun #ifdef IPV6CTL_USETEMPADDR
    965  1.35  christos 	(void)memset(nullbuf, 0, sizeof(nullbuf));
    966  1.13    itojun 	if (memcmp(nullbuf, ND.randomid, sizeof(nullbuf)) != 0) {
    967  1.13    itojun 		int j;
    968  1.13    itojun 		u_int8_t *rbuf;
    969  1.13    itojun 
    970  1.13    itojun 		for (i = 0; i < 3; i++) {
    971  1.21    itojun 			switch (i) {
    972  1.13    itojun 			case 0:
    973  1.35  christos 				(void)printf("\nRandom seed(0): ");
    974  1.13    itojun 				rbuf = ND.randomseed0;
    975  1.13    itojun 				break;
    976  1.13    itojun 			case 1:
    977  1.35  christos 				(void)printf("\nRandom seed(1): ");
    978  1.13    itojun 				rbuf = ND.randomseed1;
    979  1.13    itojun 				break;
    980  1.13    itojun 			case 2:
    981  1.35  christos 				(void)printf("\nRandom ID:      ");
    982  1.13    itojun 				rbuf = ND.randomid;
    983  1.13    itojun 				break;
    984  1.34    rpaulo 			default:
    985  1.34    rpaulo 				errx(1, "impossible case for tempaddr display");
    986  1.13    itojun 			}
    987  1.13    itojun 			for (j = 0; j < 8; j++)
    988  1.35  christos 				(void)printf("%02x", rbuf[j]);
    989  1.13    itojun 		}
    990  1.13    itojun 	}
    991  1.13    itojun #endif
    992   1.8    itojun 	if (ND.flags) {
    993  1.35  christos 		(void)printf("\nFlags: ");
    994  1.19    itojun 		if ((ND.flags & ND6_IFF_PERFORMNUD))
    995  1.35  christos 			(void)printf("nud ");
    996  1.34    rpaulo #ifdef ND6_IFF_IFDISABLED
    997  1.34    rpaulo 		if ((ND.flags & ND6_IFF_IFDISABLED))
    998  1.35  christos 			(void)printf("disabled ");
    999  1.34    rpaulo #endif
   1000  1.19    itojun #ifdef ND6_IFF_ACCEPT_RTADV
   1001  1.19    itojun 		if ((ND.flags & ND6_IFF_ACCEPT_RTADV))
   1002  1.35  christos 			(void)printf("accept_rtadv ");
   1003  1.19    itojun #endif
   1004  1.38    dyoung #ifdef ND6_IFF_OVERRIDE_RTADV
   1005  1.38    dyoung 		if ((ND.flags & ND6_IFF_OVERRIDE_RTADV))
   1006  1.38    dyoung 			(void)printf("override_rtadv ");
   1007  1.38    dyoung #endif
   1008  1.43       roy #ifdef ND6_IFF_AUTO_LINKLOCAL
   1009  1.43       roy 		if ((ND.flags & ND6_IFF_AUTO_LINKLOCAL))
   1010  1.43       roy 			(void)printf("auto_linklocal ");
   1011  1.43       roy #endif
   1012  1.19    itojun #ifdef ND6_IFF_PREFER_SOURCE
   1013  1.19    itojun 		if ((ND.flags & ND6_IFF_PREFER_SOURCE))
   1014  1.35  christos 			(void)printf("prefer_source ");
   1015  1.19    itojun #endif
   1016   1.8    itojun 	}
   1017  1.35  christos 	(void)putc('\n', stdout);
   1018   1.1    itojun #undef ND
   1019  1.21    itojun 
   1020  1.45     ozaki 	(void)prog_close(s);
   1021   1.1    itojun }
   1022   1.1    itojun 
   1023  1.16    itojun #ifndef ND_RA_FLAG_RTPREF_MASK	/* XXX: just for compilation on *BSD release */
   1024  1.16    itojun #define ND_RA_FLAG_RTPREF_MASK	0x18 /* 00011000 */
   1025  1.16    itojun #endif
   1026  1.16    itojun 
   1027  1.35  christos static void
   1028  1.35  christos rtrlist(void)
   1029   1.1    itojun {
   1030  1.16    itojun #ifdef ICMPV6CTL_ND6_DRLIST
   1031  1.16    itojun 	int mib[] = { CTL_NET, PF_INET6, IPPROTO_ICMPV6, ICMPV6CTL_ND6_DRLIST };
   1032  1.16    itojun 	char *buf;
   1033  1.16    itojun 	struct in6_defrouter *p, *ep;
   1034  1.16    itojun 	size_t l;
   1035  1.35  christos 	struct timeval tim;
   1036  1.16    itojun 
   1037  1.45     ozaki 	if (prog_sysctl(mib, sizeof(mib) / sizeof(mib[0]), NULL, &l, NULL, 0) < 0) {
   1038  1.16    itojun 		err(1, "sysctl(ICMPV6CTL_ND6_DRLIST)");
   1039  1.16    itojun 		/*NOTREACHED*/
   1040  1.16    itojun 	}
   1041  1.34    rpaulo 	if (l == 0)
   1042  1.34    rpaulo 		return;
   1043  1.16    itojun 	buf = malloc(l);
   1044  1.16    itojun 	if (!buf) {
   1045  1.28    itojun 		err(1, "malloc");
   1046  1.16    itojun 		/*NOTREACHED*/
   1047  1.16    itojun 	}
   1048  1.45     ozaki 	if (prog_sysctl(mib, sizeof(mib) / sizeof(mib[0]), buf, &l, NULL, 0) < 0) {
   1049  1.16    itojun 		err(1, "sysctl(ICMPV6CTL_ND6_DRLIST)");
   1050  1.16    itojun 		/*NOTREACHED*/
   1051  1.16    itojun 	}
   1052  1.16    itojun 
   1053  1.35  christos 	ep = (struct in6_defrouter *)(void *)(buf + l);
   1054  1.35  christos 	for (p = (struct in6_defrouter *)(void *)buf; p < ep; p++) {
   1055  1.16    itojun 		int rtpref;
   1056  1.16    itojun 
   1057  1.35  christos 		if (getnameinfo((struct sockaddr *)(void *)&p->rtaddr,
   1058  1.35  christos 		    (socklen_t)p->rtaddr.sin6_len, host_buf, sizeof(host_buf),
   1059  1.35  christos 		    NULL, 0, (nflag ? NI_NUMERICHOST : 0)) != 0)
   1060  1.35  christos 			(void)strlcpy(host_buf, "?", sizeof(host_buf));
   1061  1.35  christos 
   1062  1.35  christos 		(void)printf("%s if=%s", host_buf,
   1063  1.35  christos 		    if_indextoname((unsigned int)p->if_index, ifix_buf));
   1064  1.35  christos 		(void)printf(", flags=%s%s",
   1065  1.21    itojun 		    p->flags & ND_RA_FLAG_MANAGED ? "M" : "",
   1066  1.21    itojun 		    p->flags & ND_RA_FLAG_OTHER   ? "O" : "");
   1067  1.35  christos 		rtpref = ((uint32_t)(p->flags & ND_RA_FLAG_RTPREF_MASK) >> 3) & 0xff;
   1068  1.35  christos 		(void)printf(", pref=%s", rtpref_str[rtpref]);
   1069  1.21    itojun 
   1070  1.35  christos 		(void)gettimeofday(&tim, 0);
   1071  1.16    itojun 		if (p->expire == 0)
   1072  1.35  christos 			(void)printf(", expire=Never\n");
   1073  1.16    itojun 		else
   1074  1.35  christos 			(void)printf(", expire=%s\n",
   1075  1.35  christos 			    sec2str((time_t)(p->expire - tim.tv_sec)));
   1076  1.16    itojun 	}
   1077  1.16    itojun 	free(buf);
   1078  1.16    itojun #else
   1079   1.1    itojun 	struct in6_drlist dr;
   1080   1.1    itojun 	int s, i;
   1081   1.1    itojun 	struct timeval time;
   1082   1.1    itojun 
   1083  1.45     ozaki 	if ((s = prog_socket(AF_INET6, SOCK_DGRAM, 0)) < 0) {
   1084  1.16    itojun 		err(1, "socket");
   1085  1.16    itojun 		/* NOTREACHED */
   1086   1.1    itojun 	}
   1087  1.35  christos 	(void)memset(&dr, 0, sizeof(dr));
   1088  1.35  christos 	(void)strlcpy(dr.ifname, "lo0", sizeof(dr.ifname)); /* dummy */
   1089  1.45     ozaki 	if (prog_ioctl(s, SIOCGDRLST_IN6, (caddr_t)&dr) < 0) {
   1090  1.21    itojun 		err(1, "ioctl(SIOCGDRLST_IN6)");
   1091  1.16    itojun 		/* NOTREACHED */
   1092  1.21    itojun 	}
   1093   1.1    itojun #define DR dr.defrouter[i]
   1094  1.16    itojun 	for (i = 0 ; DR.if_index && i < DRLSTSIZ ; i++) {
   1095   1.4    itojun 		struct sockaddr_in6 sin6;
   1096   1.4    itojun 
   1097  1.35  christos 		(void)memset(&sin6, 0, sizeof(sin6));
   1098   1.4    itojun 		sin6.sin6_family = AF_INET6;
   1099   1.4    itojun 		sin6.sin6_len = sizeof(sin6);
   1100   1.4    itojun 		sin6.sin6_addr = DR.rtaddr;
   1101  1.35  christos 		(void)getnameinfo((struct sockaddr *)&sin6, sin6.sin6_len,
   1102  1.35  christos 		    host_buf, sizeof(host_buf), NULL, 0,
   1103  1.21    itojun 		    (nflag ? NI_NUMERICHOST : 0));
   1104  1.21    itojun 
   1105  1.35  christos 		(void)printf("%s if=%s", host_buf,
   1106  1.21    itojun 		    if_indextoname(DR.if_index, ifix_buf));
   1107  1.35  christos 		(void)printf(", flags=%s%s",
   1108  1.21    itojun 		    DR.flags & ND_RA_FLAG_MANAGED ? "M" : "",
   1109  1.21    itojun 		    DR.flags & ND_RA_FLAG_OTHER   ? "O" : "");
   1110   1.1    itojun 		gettimeofday(&time, 0);
   1111   1.1    itojun 		if (DR.expire == 0)
   1112  1.35  christos 			(void)printf(", expire=Never\n");
   1113   1.1    itojun 		else
   1114  1.35  christos 			(void)printf(", expire=%s\n",
   1115  1.21    itojun 			    sec2str(DR.expire - time.tv_sec));
   1116   1.1    itojun 	}
   1117   1.1    itojun #undef DR
   1118  1.45     ozaki 	(void)prog_close(s);
   1119  1.16    itojun #endif
   1120   1.1    itojun }
   1121   1.1    itojun 
   1122  1.35  christos static void
   1123  1.35  christos plist(void)
   1124   1.1    itojun {
   1125  1.16    itojun #ifdef ICMPV6CTL_ND6_PRLIST
   1126  1.16    itojun 	int mib[] = { CTL_NET, PF_INET6, IPPROTO_ICMPV6, ICMPV6CTL_ND6_PRLIST };
   1127  1.42    martin 	char *buf, *p, *ep;
   1128  1.42    martin 	struct in6_prefix pfx;
   1129  1.16    itojun 	size_t l;
   1130  1.35  christos 	struct timeval tim;
   1131  1.16    itojun 	const int niflags = NI_NUMERICHOST;
   1132  1.16    itojun 	int ninflags = nflag ? NI_NUMERICHOST : 0;
   1133  1.16    itojun 	char namebuf[NI_MAXHOST];
   1134  1.16    itojun 
   1135  1.45     ozaki 	if (prog_sysctl(mib, sizeof(mib) / sizeof(mib[0]), NULL, &l, NULL, 0) < 0) {
   1136  1.16    itojun 		err(1, "sysctl(ICMPV6CTL_ND6_PRLIST)");
   1137  1.16    itojun 		/*NOTREACHED*/
   1138  1.16    itojun 	}
   1139  1.16    itojun 	buf = malloc(l);
   1140  1.16    itojun 	if (!buf) {
   1141  1.28    itojun 		err(1, "malloc");
   1142  1.16    itojun 		/*NOTREACHED*/
   1143  1.16    itojun 	}
   1144  1.45     ozaki 	if (prog_sysctl(mib, sizeof(mib) / sizeof(mib[0]), buf, &l, NULL, 0) < 0) {
   1145  1.16    itojun 		err(1, "sysctl(ICMPV6CTL_ND6_PRLIST)");
   1146  1.16    itojun 		/*NOTREACHED*/
   1147  1.16    itojun 	}
   1148  1.16    itojun 
   1149  1.42    martin 	ep = buf + l;
   1150  1.42    martin 	for (p = buf; p < ep; ) {
   1151  1.42    martin 		memcpy(&pfx, p, sizeof(pfx));
   1152  1.42    martin 		p += sizeof(pfx);
   1153  1.16    itojun 
   1154  1.42    martin 		if (getnameinfo((struct sockaddr*)&pfx.prefix,
   1155  1.42    martin 		    (socklen_t)pfx.prefix.sin6_len, namebuf, sizeof(namebuf),
   1156  1.16    itojun 		    NULL, 0, niflags) != 0)
   1157  1.35  christos 			(void)strlcpy(namebuf, "?", sizeof(namebuf));
   1158  1.42    martin 		(void)printf("%s/%d if=%s\n", namebuf, pfx.prefixlen,
   1159  1.42    martin 		    if_indextoname((unsigned int)pfx.if_index, ifix_buf));
   1160  1.16    itojun 
   1161  1.35  christos 		(void)gettimeofday(&tim, 0);
   1162  1.16    itojun 		/*
   1163  1.16    itojun 		 * meaning of fields, especially flags, is very different
   1164  1.16    itojun 		 * by origin.  notify the difference to the users.
   1165  1.16    itojun 		 */
   1166  1.35  christos 		(void)printf("flags=%s%s%s%s%s",
   1167  1.42    martin 		    pfx.raflags.onlink ? "L" : "",
   1168  1.42    martin 		    pfx.raflags.autonomous ? "A" : "",
   1169  1.42    martin 		    (pfx.flags & NDPRF_ONLINK) != 0 ? "O" : "",
   1170  1.42    martin 		    (pfx.flags & NDPRF_DETACHED) != 0 ? "D" : "",
   1171  1.16    itojun #ifdef NDPRF_HOME
   1172  1.42    martin 		    (pfx.flags & NDPRF_HOME) != 0 ? "H" : ""
   1173  1.16    itojun #else
   1174  1.21    itojun 		    ""
   1175  1.16    itojun #endif
   1176  1.21    itojun 		    );
   1177  1.42    martin 		if (pfx.vltime == ND6_INFINITE_LIFETIME)
   1178  1.35  christos 			(void)printf(" vltime=infinity");
   1179  1.16    itojun 		else
   1180  1.42    martin 			(void)printf(" vltime=%lu", (unsigned long)pfx.vltime);
   1181  1.42    martin 		if (pfx.pltime == ND6_INFINITE_LIFETIME)
   1182  1.35  christos 			(void)printf(", pltime=infinity");
   1183  1.16    itojun 		else
   1184  1.42    martin 			(void)printf(", pltime=%lu", (unsigned long)pfx.pltime);
   1185  1.42    martin 		if (pfx.expire == 0)
   1186  1.35  christos 			(void)printf(", expire=Never");
   1187  1.42    martin 		else if (pfx.expire >= tim.tv_sec)
   1188  1.35  christos 			(void)printf(", expire=%s",
   1189  1.42    martin 			    sec2str(pfx.expire - tim.tv_sec));
   1190  1.16    itojun 		else
   1191  1.35  christos 			(void)printf(", expired");
   1192  1.42    martin 		(void)printf(", ref=%d", pfx.refcnt);
   1193  1.35  christos 		(void)printf("\n");
   1194  1.16    itojun 		/*
   1195  1.16    itojun 		 * "advertising router" list is meaningful only if the prefix
   1196  1.16    itojun 		 * information is from RA.
   1197  1.16    itojun 		 */
   1198  1.42    martin 		if (pfx.advrtrs) {
   1199  1.16    itojun 			int j;
   1200  1.42    martin 			struct sockaddr_in6 sin6;
   1201  1.16    itojun 
   1202  1.35  christos 			(void)printf("  advertised by\n");
   1203  1.42    martin 			for (j = 0; j < pfx.advrtrs && p <= ep; j++) {
   1204  1.16    itojun 				struct in6_nbrinfo *nbi;
   1205  1.16    itojun 
   1206  1.42    martin 				memcpy(&sin6, p, sizeof(sin6));
   1207  1.42    martin 				p += sizeof(sin6);
   1208  1.42    martin 
   1209  1.42    martin 				if (getnameinfo((struct sockaddr *)&sin6,
   1210  1.42    martin 				    (socklen_t)sin6.sin6_len, namebuf,
   1211  1.35  christos 				    sizeof(namebuf), NULL, 0, ninflags) != 0)
   1212  1.35  christos 					(void)strlcpy(namebuf, "?", sizeof(namebuf));
   1213  1.35  christos 				(void)printf("    %s", namebuf);
   1214  1.16    itojun 
   1215  1.42    martin 				nbi = getnbrinfo(&sin6.sin6_addr,
   1216  1.42    martin 				    (unsigned int)pfx.if_index, 0);
   1217  1.16    itojun 				if (nbi) {
   1218  1.21    itojun 					switch (nbi->state) {
   1219  1.16    itojun 					case ND6_LLINFO_REACHABLE:
   1220  1.16    itojun 					case ND6_LLINFO_STALE:
   1221  1.16    itojun 					case ND6_LLINFO_DELAY:
   1222  1.16    itojun 					case ND6_LLINFO_PROBE:
   1223  1.35  christos 						(void)printf(" (reachable)\n");
   1224  1.16    itojun 						break;
   1225  1.16    itojun 					default:
   1226  1.35  christos 						(void)printf(" (unreachable)\n");
   1227  1.16    itojun 					}
   1228  1.16    itojun 				} else
   1229  1.35  christos 					(void)printf(" (no neighbor state)\n");
   1230  1.16    itojun 			}
   1231  1.16    itojun 		} else
   1232  1.35  christos 			(void)printf("  No advertising router\n");
   1233  1.16    itojun 	}
   1234  1.16    itojun 	free(buf);
   1235  1.16    itojun #else
   1236   1.1    itojun 	struct in6_prlist pr;
   1237   1.1    itojun 	int s, i;
   1238   1.1    itojun 	struct timeval time;
   1239   1.1    itojun 
   1240  1.35  christos 	(void)gettimeofday(&time, 0);
   1241   1.1    itojun 
   1242  1.45     ozaki 	if ((s = prog_socket(AF_INET6, SOCK_DGRAM, 0)) < 0) {
   1243  1.16    itojun 		err(1, "socket");
   1244  1.16    itojun 		/* NOTREACHED */
   1245   1.1    itojun 	}
   1246  1.35  christos 	(void)memset(&pr, 0, sizeof(pr));
   1247  1.35  christos 	(void)strlcpy(pr.ifname, "lo0", sizeof(pr.ifname)); /* dummy */
   1248  1.45     ozaki 	if (prog_ioctl(s, SIOCGPRLST_IN6, (caddr_t)&pr) < 0) {
   1249  1.21    itojun 		err(1, "ioctl(SIOCGPRLST_IN6)");
   1250  1.16    itojun 		/* NOTREACHED */
   1251  1.21    itojun 	}
   1252   1.1    itojun #define PR pr.prefix[i]
   1253   1.1    itojun 	for (i = 0; PR.if_index && i < PRLSTSIZ ; i++) {
   1254  1.13    itojun 		struct sockaddr_in6 p6;
   1255  1.13    itojun 		char namebuf[NI_MAXHOST];
   1256  1.13    itojun 		int niflags;
   1257  1.13    itojun 
   1258  1.13    itojun #ifdef NDPRF_ONLINK
   1259  1.13    itojun 		p6 = PR.prefix;
   1260  1.13    itojun #else
   1261  1.35  christos 		(void)memset(&p6, 0, sizeof(p6));
   1262  1.13    itojun 		p6.sin6_family = AF_INET6;
   1263  1.13    itojun 		p6.sin6_len = sizeof(p6);
   1264  1.13    itojun 		p6.sin6_addr = PR.prefix;
   1265  1.13    itojun #endif
   1266  1.13    itojun 
   1267  1.13    itojun 		niflags = NI_NUMERICHOST;
   1268  1.13    itojun 		if (getnameinfo((struct sockaddr *)&p6,
   1269  1.21    itojun 		    sizeof(p6), namebuf, sizeof(namebuf),
   1270  1.21    itojun 		    NULL, 0, niflags)) {
   1271  1.13    itojun 			warnx("getnameinfo failed");
   1272  1.13    itojun 			continue;
   1273  1.13    itojun 		}
   1274  1.35  christos 		(void)printf("%s/%d if=%s\n", namebuf, PR.prefixlen,
   1275  1.21    itojun 		    if_indextoname(PR.if_index, ifix_buf));
   1276  1.13    itojun 
   1277  1.35  christos 		(void)gettimeofday(&time, 0);
   1278   1.6    itojun 		/*
   1279   1.6    itojun 		 * meaning of fields, especially flags, is very different
   1280   1.6    itojun 		 * by origin.  notify the difference to the users.
   1281   1.6    itojun 		 */
   1282  1.16    itojun #if 0
   1283  1.35  christos 		(void)printf("  %s",
   1284  1.21    itojun 		    PR.origin == PR_ORIG_RA ? "" : "advertise: ");
   1285  1.16    itojun #endif
   1286  1.13    itojun #ifdef NDPRF_ONLINK
   1287  1.35  christos 		(void)printf("flags=%s%s%s%s%s",
   1288  1.21    itojun 		    PR.raflags.onlink ? "L" : "",
   1289  1.21    itojun 		    PR.raflags.autonomous ? "A" : "",
   1290  1.21    itojun 		    (PR.flags & NDPRF_ONLINK) != 0 ? "O" : "",
   1291  1.21    itojun 		    (PR.flags & NDPRF_DETACHED) != 0 ? "D" : "",
   1292  1.16    itojun #ifdef NDPRF_HOME
   1293  1.21    itojun 		    (PR.flags & NDPRF_HOME) != 0 ? "H" : ""
   1294  1.16    itojun #else
   1295  1.21    itojun 		    ""
   1296  1.16    itojun #endif
   1297  1.21    itojun 		    );
   1298  1.13    itojun #else
   1299  1.35  christos 		(void)printf("flags=%s%s",
   1300  1.21    itojun 		    PR.raflags.onlink ? "L" : "",
   1301  1.21    itojun 		    PR.raflags.autonomous ? "A" : "");
   1302  1.13    itojun #endif
   1303   1.1    itojun 		if (PR.vltime == ND6_INFINITE_LIFETIME)
   1304  1.35  christos 			(void)printf(" vltime=infinity");
   1305   1.1    itojun 		else
   1306  1.35  christos 			(void)printf(" vltime=%lu", PR.vltime);
   1307   1.1    itojun 		if (PR.pltime == ND6_INFINITE_LIFETIME)
   1308  1.35  christos 			(void)printf(", pltime=infinity");
   1309   1.1    itojun 		else
   1310  1.35  christos 			(void)printf(", pltime=%lu", PR.pltime);
   1311   1.1    itojun 		if (PR.expire == 0)
   1312  1.35  christos 			(void)printf(", expire=Never");
   1313   1.1    itojun 		else if (PR.expire >= time.tv_sec)
   1314  1.35  christos 			(void)printf(", expire=%s",
   1315  1.21    itojun 			    sec2str(PR.expire - time.tv_sec));
   1316   1.1    itojun 		else
   1317  1.35  christos 			(void)printf(", expired");
   1318  1.13    itojun #ifdef NDPRF_ONLINK
   1319  1.35  christos 		(void)printf(", ref=%d", PR.refcnt);
   1320  1.13    itojun #endif
   1321  1.16    itojun #if 0
   1322   1.6    itojun 		switch (PR.origin) {
   1323   1.6    itojun 		case PR_ORIG_RA:
   1324  1.35  christos 			(void)printf(", origin=RA");
   1325   1.6    itojun 			break;
   1326   1.6    itojun 		case PR_ORIG_RR:
   1327  1.35  christos 			(void)printf(", origin=RR");
   1328   1.6    itojun 			break;
   1329   1.6    itojun 		case PR_ORIG_STATIC:
   1330  1.35  christos 			(void)printf(", origin=static");
   1331   1.6    itojun 			break;
   1332   1.6    itojun 		case PR_ORIG_KERNEL:
   1333  1.35  christos 			(void)printf(", origin=kernel");
   1334   1.6    itojun 			break;
   1335   1.6    itojun 		default:
   1336  1.35  christos 			(void)printf(", origin=?");
   1337   1.6    itojun 			break;
   1338   1.6    itojun 		}
   1339  1.16    itojun #endif
   1340  1.35  christos 		(void)printf("\n");
   1341   1.6    itojun 		/*
   1342   1.6    itojun 		 * "advertising router" list is meaningful only if the prefix
   1343   1.6    itojun 		 * information is from RA.
   1344   1.6    itojun 		 */
   1345  1.16    itojun 		if (0 &&	/* prefix origin is almost obsolted */
   1346  1.16    itojun 		    PR.origin != PR_ORIG_RA)
   1347   1.6    itojun 			;
   1348   1.6    itojun 		else if (PR.advrtrs) {
   1349   1.1    itojun 			int j;
   1350  1.35  christos 			(void)printf("  advertised by\n");
   1351   1.1    itojun 			for (j = 0; j < PR.advrtrs; j++) {
   1352   1.4    itojun 				struct sockaddr_in6 sin6;
   1353   1.4    itojun 				struct in6_nbrinfo *nbi;
   1354   1.4    itojun 
   1355   1.4    itojun 				bzero(&sin6, sizeof(sin6));
   1356   1.4    itojun 				sin6.sin6_family = AF_INET6;
   1357   1.4    itojun 				sin6.sin6_len = sizeof(sin6);
   1358   1.4    itojun 				sin6.sin6_addr = PR.advrtr[j];
   1359   1.4    itojun 				sin6.sin6_scope_id = PR.if_index; /* XXX */
   1360  1.35  christos 				(void)getnameinfo((struct sockaddr *)&sin6,
   1361  1.21    itojun 				    sin6.sin6_len, host_buf,
   1362  1.21    itojun 				    sizeof(host_buf), NULL, 0,
   1363  1.21    itojun 				    (nflag ? NI_NUMERICHOST : 0));
   1364  1.35  christos 				(void)printf("    %s", host_buf);
   1365   1.4    itojun 
   1366  1.21    itojun 				nbi = getnbrinfo(&sin6.sin6_addr,
   1367  1.21    itojun 				    PR.if_index, 0);
   1368   1.4    itojun 				if (nbi) {
   1369  1.21    itojun 					switch (nbi->state) {
   1370  1.21    itojun 					case ND6_LLINFO_REACHABLE:
   1371  1.21    itojun 					case ND6_LLINFO_STALE:
   1372  1.21    itojun 					case ND6_LLINFO_DELAY:
   1373  1.21    itojun 					case ND6_LLINFO_PROBE:
   1374  1.35  christos 						 (void)printf(" (reachable)\n");
   1375   1.4    itojun 						 break;
   1376  1.21    itojun 					default:
   1377  1.35  christos 						 (void)printf(" (unreachable)\n");
   1378   1.4    itojun 					}
   1379  1.11    itojun 				} else
   1380  1.35  christos 					(void)printf(" (no neighbor state)\n");
   1381   1.1    itojun 			}
   1382   1.1    itojun 			if (PR.advrtrs > DRLSTSIZ)
   1383  1.35  christos 				(void)printf("    and %d routers\n",
   1384  1.21    itojun 				    PR.advrtrs - DRLSTSIZ);
   1385   1.6    itojun 		} else
   1386  1.35  christos 			(void)printf("  No advertising router\n");
   1387   1.1    itojun 	}
   1388   1.1    itojun #undef PR
   1389  1.45     ozaki 	(void)prog_close(s);
   1390  1.16    itojun #endif
   1391   1.1    itojun }
   1392   1.1    itojun 
   1393  1.35  christos static void
   1394  1.35  christos pfx_flush(void)
   1395   1.1    itojun {
   1396   1.1    itojun 	char dummyif[IFNAMSIZ+8];
   1397   1.1    itojun 	int s;
   1398   1.1    itojun 
   1399  1.45     ozaki 	if ((s = prog_socket(AF_INET6, SOCK_DGRAM, 0)) < 0)
   1400   1.1    itojun 		err(1, "socket");
   1401  1.35  christos 	(void)strlcpy(dummyif, "lo0", sizeof(dummyif)); /* dummy */
   1402  1.45     ozaki 	if (prog_ioctl(s, SIOCSPFXFLUSH_IN6, (caddr_t)&dummyif) < 0)
   1403  1.21    itojun 		err(1, "ioctl(SIOCSPFXFLUSH_IN6)");
   1404  1.45     ozaki 	(void)prog_close(s);
   1405   1.1    itojun }
   1406   1.1    itojun 
   1407  1.35  christos static void
   1408  1.35  christos rtr_flush(void)
   1409   1.1    itojun {
   1410   1.1    itojun 	char dummyif[IFNAMSIZ+8];
   1411   1.1    itojun 	int s;
   1412   1.1    itojun 
   1413  1.45     ozaki 	if ((s = prog_socket(AF_INET6, SOCK_DGRAM, 0)) < 0)
   1414   1.1    itojun 		err(1, "socket");
   1415  1.35  christos 	(void)strlcpy(dummyif, "lo0", sizeof(dummyif)); /* dummy */
   1416  1.45     ozaki 	if (prog_ioctl(s, SIOCSRTRFLUSH_IN6, (caddr_t)&dummyif) < 0)
   1417  1.21    itojun 		err(1, "ioctl(SIOCSRTRFLUSH_IN6)");
   1418   1.4    itojun 
   1419  1.45     ozaki 	(void)prog_close(s);
   1420   1.1    itojun }
   1421   1.1    itojun 
   1422  1.35  christos static void
   1423  1.35  christos harmonize_rtr(void)
   1424   1.1    itojun {
   1425   1.1    itojun 	char dummyif[IFNAMSIZ+8];
   1426   1.1    itojun 	int s;
   1427   1.1    itojun 
   1428  1.45     ozaki 	if ((s = prog_socket(AF_INET6, SOCK_DGRAM, 0)) < 0)
   1429   1.4    itojun 		err(1, "socket");
   1430  1.35  christos 	(void)strlcpy(dummyif, "lo0", sizeof(dummyif)); /* dummy */
   1431  1.45     ozaki 	if (prog_ioctl(s, SIOCSNDFLUSH_IN6, (caddr_t)&dummyif) < 0)
   1432  1.21    itojun 		err(1, "ioctl(SIOCSNDFLUSH_IN6)");
   1433   1.4    itojun 
   1434  1.45     ozaki 	(void)prog_close(s);
   1435   1.4    itojun }
   1436   1.4    itojun 
   1437   1.4    itojun #ifdef SIOCSDEFIFACE_IN6	/* XXX: check SIOCGDEFIFACE_IN6 as well? */
   1438   1.4    itojun static void
   1439  1.35  christos setdefif(char *ifname)
   1440   1.4    itojun {
   1441   1.4    itojun 	struct in6_ndifreq ndifreq;
   1442   1.4    itojun 	unsigned int ifindex;
   1443  1.35  christos 	int s;
   1444   1.4    itojun 
   1445   1.4    itojun 	if (strcasecmp(ifname, "delete") == 0)
   1446   1.4    itojun 		ifindex = 0;
   1447   1.4    itojun 	else {
   1448   1.4    itojun 		if ((ifindex = if_nametoindex(ifname)) == 0)
   1449   1.4    itojun 			err(1, "failed to resolve i/f index for %s", ifname);
   1450   1.4    itojun 	}
   1451   1.4    itojun 
   1452  1.45     ozaki 	if ((s = prog_socket(AF_INET6, SOCK_DGRAM, 0)) < 0)
   1453   1.4    itojun 		err(1, "socket");
   1454   1.4    itojun 
   1455  1.35  christos 	(void)strlcpy(ndifreq.ifname, "lo0", sizeof(ndifreq.ifname)); /* dummy */
   1456   1.4    itojun 	ndifreq.ifindex = ifindex;
   1457   1.4    itojun 
   1458  1.45     ozaki 	if (prog_ioctl(s, SIOCSDEFIFACE_IN6, &ndifreq) < 0)
   1459  1.21    itojun 		err(1, "ioctl(SIOCSDEFIFACE_IN6)");
   1460   1.4    itojun 
   1461  1.45     ozaki 	(void)prog_close(s);
   1462   1.4    itojun }
   1463   1.4    itojun 
   1464   1.4    itojun static void
   1465  1.35  christos getdefif(void)
   1466   1.4    itojun {
   1467   1.4    itojun 	struct in6_ndifreq ndifreq;
   1468   1.4    itojun 	char ifname[IFNAMSIZ+8];
   1469  1.35  christos 	int s;
   1470   1.4    itojun 
   1471  1.45     ozaki 	if ((s = prog_socket(AF_INET6, SOCK_DGRAM, 0)) < 0)
   1472   1.4    itojun 		err(1, "socket");
   1473   1.4    itojun 
   1474  1.35  christos 	(void)memset(&ndifreq, 0, sizeof(ndifreq));
   1475  1.35  christos 	(void)strlcpy(ndifreq.ifname, "lo0", sizeof(ndifreq.ifname)); /* dummy */
   1476   1.4    itojun 
   1477  1.45     ozaki 	if (prog_ioctl(s, SIOCGDEFIFACE_IN6, &ndifreq) < 0)
   1478  1.21    itojun 		err(1, "ioctl(SIOCGDEFIFACE_IN6)");
   1479   1.4    itojun 
   1480   1.4    itojun 	if (ndifreq.ifindex == 0)
   1481  1.35  christos 		(void)printf("No default interface.\n");
   1482   1.4    itojun 	else {
   1483  1.35  christos 		if ((if_indextoname((unsigned int)ndifreq.ifindex, ifname)) == NULL)
   1484   1.4    itojun 			err(1, "failed to resolve ifname for index %lu",
   1485   1.4    itojun 			    ndifreq.ifindex);
   1486  1.35  christos 		(void)printf("ND default interface = %s\n", ifname);
   1487   1.1    itojun 	}
   1488   1.4    itojun 
   1489  1.45     ozaki 	(void)prog_close(s);
   1490   1.1    itojun }
   1491   1.4    itojun #endif
   1492   1.1    itojun 
   1493  1.35  christos static const char *
   1494  1.35  christos sec2str(time_t total)
   1495   1.1    itojun {
   1496   1.1    itojun 	static char result[256];
   1497   1.1    itojun 	int days, hours, mins, secs;
   1498   1.1    itojun 	int first = 1;
   1499   1.1    itojun 	char *p = result;
   1500  1.19    itojun 	char *ep = &result[sizeof(result)];
   1501  1.19    itojun 	int n;
   1502   1.1    itojun 
   1503   1.1    itojun 	days = total / 3600 / 24;
   1504   1.1    itojun 	hours = (total / 3600) % 24;
   1505   1.1    itojun 	mins = (total / 60) % 60;
   1506   1.1    itojun 	secs = total % 60;
   1507   1.1    itojun 
   1508   1.1    itojun 	if (days) {
   1509   1.1    itojun 		first = 0;
   1510  1.35  christos 		n = snprintf(p, (size_t)(ep - p), "%dd", days);
   1511  1.19    itojun 		if (n < 0 || n >= ep - p)
   1512  1.19    itojun 			return "?";
   1513  1.19    itojun 		p += n;
   1514   1.1    itojun 	}
   1515   1.1    itojun 	if (!first || hours) {
   1516   1.1    itojun 		first = 0;
   1517  1.35  christos 		n = snprintf(p, (size_t)(ep - p), "%dh", hours);
   1518  1.19    itojun 		if (n < 0 || n >= ep - p)
   1519  1.19    itojun 			return "?";
   1520  1.19    itojun 		p += n;
   1521   1.1    itojun 	}
   1522   1.1    itojun 	if (!first || mins) {
   1523   1.1    itojun 		first = 0;
   1524  1.35  christos 		n = snprintf(p, (size_t)(ep - p), "%dm", mins);
   1525  1.19    itojun 		if (n < 0 || n >= ep - p)
   1526  1.19    itojun 			return "?";
   1527  1.19    itojun 		p += n;
   1528   1.1    itojun 	}
   1529  1.35  christos 	(void)snprintf(p, (size_t)(ep - p), "%ds", secs);
   1530   1.1    itojun 
   1531   1.1    itojun 	return(result);
   1532   1.1    itojun }
   1533   1.1    itojun 
   1534   1.1    itojun /*
   1535   1.1    itojun  * Print the timestamp
   1536   1.1    itojun  * from tcpdump/util.c
   1537   1.1    itojun  */
   1538   1.1    itojun static void
   1539  1.35  christos ts_print(const struct timeval *tvp)
   1540   1.1    itojun {
   1541   1.1    itojun 	int s;
   1542   1.1    itojun 
   1543   1.1    itojun 	/* Default */
   1544   1.1    itojun 	s = (tvp->tv_sec + thiszone) % 86400;
   1545   1.1    itojun 	(void)printf("%02d:%02d:%02d.%06u ",
   1546   1.1    itojun 	    s / 3600, (s % 3600) / 60, s % 60, (u_int32_t)tvp->tv_usec);
   1547   1.1    itojun }
   1548