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