1 /* 2 * Copyright (c) 1990, 1991, 1992, 1993, 1996 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that: (1) source code distributions 7 * retain the above copyright notice and this paragraph in its entirety, (2) 8 * distributions including binary code include the above copyright notice and 9 * this paragraph in its entirety in the documentation or other materials 10 * provided with the distribution, and (3) all advertising materials mentioning 11 * features or use of this software display the following acknowledgement: 12 * ``This product includes software developed by the University of California, 13 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of 14 * the University nor the names of its contributors may be used to endorse 15 * or promote products derived from this software without specific prior 16 * written permission. 17 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED 18 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF 19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 20 */ 21 22 #ifndef lint 23 static const char copyright[] = 24 "@(#) Copyright (c) 1990, 1991, 1992, 1993, 1996\n\ 25 The Regents of the University of California. All rights reserved.\n"; 26 #endif /* not lint */ 27 28 #ifndef lint 29 static const char rcsid[] = 30 "$FreeBSD$"; 31 #endif /* not lint */ 32 33 /* 34 * rarpd - Reverse ARP Daemon 35 * 36 * Usage: rarpd -a [ -dfsv ] [ hostname ] 37 * rarpd [ -dfsv ] interface [ hostname ] 38 * 39 * 'hostname' is optional solely for backwards compatibility with Sun's rarpd. 40 * Currently, the argument is ignored. 41 */ 42 #include <sys/param.h> 43 #include <sys/file.h> 44 #include <sys/ioctl.h> 45 #include <sys/socket.h> 46 #include <sys/time.h> 47 48 #include <net/bpf.h> 49 #include <net/ethernet.h> 50 #include <net/if.h> 51 #include <net/if_types.h> 52 #include <net/if_dl.h> 53 #include <net/route.h> 54 55 #include <netinet/in.h> 56 #include <netinet/if_ether.h> 57 58 #include <arpa/inet.h> 59 60 #include <errno.h> 61 #include <netdb.h> 62 #include <stdarg.h> 63 #include <stdio.h> 64 #include <string.h> 65 #include <syslog.h> 66 #include <stdlib.h> 67 #include <unistd.h> 68 69 #if defined(SUNOS4) || defined(__FreeBSD__) /* XXX */ 70 #define HAVE_DIRENT_H 71 #endif 72 73 #ifdef HAVE_DIRENT_H 74 #include <dirent.h> 75 #else 76 #include <sys/dir.h> 77 #endif 78 79 /* Cast a struct sockaddr to a structaddr_in */ 80 #define SATOSIN(sa) ((struct sockaddr_in *)(sa)) 81 82 #ifndef TFTP_DIR 83 #define TFTP_DIR "/tftpboot" 84 #endif 85 86 #if BSD >= 199200 87 #define ARPSECS (20 * 60) /* as per code in netinet/if_ether.c */ 88 #define REVARP_REQUEST ARPOP_REVREQUEST 89 #define REVARP_REPLY ARPOP_REVREPLY 90 #endif 91 92 #ifndef ETHERTYPE_REVARP 93 #define ETHERTYPE_REVARP 0x8035 94 #define REVARP_REQUEST 3 95 #define REVARP_REPLY 4 96 #endif 97 98 /* 99 * Map field names in ether_arp struct. What a pain in the neck. 100 */ 101 #ifdef SUNOS3 102 #undef arp_sha 103 #undef arp_spa 104 #undef arp_tha 105 #undef arp_tpa 106 #define arp_sha arp_xsha 107 #define arp_spa arp_xspa 108 #define arp_tha arp_xtha 109 #define arp_tpa arp_xtpa 110 #endif 111 112 /* 113 * The structure for each interface. 114 */ 115 struct if_info { 116 struct if_info *ii_next; 117 int ii_fd; /* BPF file descriptor */ 118 u_long ii_ipaddr; /* IP address of this interface */ 119 u_long ii_netmask; /* subnet or net mask */ 120 u_char ii_eaddr[6]; /* Ethernet address of this interface */ 121 char ii_ifname[sizeof(((struct ifreq *)0)->ifr_name) + 1]; 122 }; 123 124 /* 125 * The list of all interfaces that are being listened to. rarp_loop() 126 * "selects" on the descriptors in this list. 127 */ 128 struct if_info *iflist; 129 130 int verbose; /* verbose messages */ 131 int s; /* inet datagram socket */ 132 const char *tftp_dir = TFTP_DIR; /* tftp directory */ 133 134 int dflag; /* messages to stdout/stderr, not syslog(3) */ 135 int sflag; /* ignore /tftpboot */ 136 137 static u_char zero[6]; 138 139 static int bpf_open(void); 140 static u_long choose_ipaddr(u_long **, u_long, u_long); 141 static char *eatoa(u_char *); 142 static int expand_syslog_m(const char *fmt, char **newfmt); 143 static void init(char *); 144 static void init_one(struct ifreq *, char *); 145 static char *intoa(u_long); 146 static u_long ipaddrtonetmask(u_long); 147 static void logmsg(int, const char *, ...) __printflike(2, 3); 148 static int rarp_bootable(u_long); 149 static int rarp_check(u_char *, u_int); 150 static void rarp_loop(void); 151 static int rarp_open(char *); 152 static void rarp_process(struct if_info *, u_char *, u_int); 153 static void rarp_reply(struct if_info *, struct ether_header *, 154 u_long, u_int); 155 static void update_arptab(u_char *, u_long); 156 static void usage(void); 157 158 int 159 main(int argc, char *argv[]) 160 { 161 int op; 162 char *ifname, *hostname, *name; 163 164 int aflag = 0; /* listen on "all" interfaces */ 165 int fflag = 0; /* don't fork */ 166 167 if ((name = strrchr(argv[0], '/')) != NULL) 168 ++name; 169 else 170 name = argv[0]; 171 if (*name == '-') 172 ++name; 173 174 /* 175 * All error reporting is done through syslog, unless -d is specified 176 */ 177 openlog(name, LOG_PID | LOG_CONS, LOG_DAEMON); 178 179 opterr = 0; 180 while ((op = getopt(argc, argv, "adfsv")) != -1) { 181 switch (op) { 182 case 'a': 183 ++aflag; 184 break; 185 186 case 'd': 187 ++dflag; 188 break; 189 190 case 'f': 191 ++fflag; 192 break; 193 194 case 's': 195 ++sflag; 196 break; 197 198 case 'v': 199 ++verbose; 200 break; 201 202 default: 203 usage(); 204 /* NOTREACHED */ 205 } 206 } 207 ifname = argv[optind++]; 208 hostname = ifname ? argv[optind] : NULL; 209 if ((aflag && ifname) || (!aflag && ifname == NULL)) 210 usage(); 211 212 if (aflag) 213 init(NULL); 214 else 215 init(ifname); 216 217 if (!fflag) { 218 if (daemon(0,0)) { 219 logmsg(LOG_ERR, "cannot fork"); 220 exit(1); 221 } 222 } 223 rarp_loop(); 224 return(0); 225 } 226 227 /* 228 * Add to the interface list. 229 */ 230 void 231 init_one(struct ifreq *ifrp, char *target) 232 { 233 struct if_info *ii; 234 struct sockaddr_dl *ll; 235 int family; 236 struct ifreq ifr; 237 238 family = ifrp->ifr_addr.sa_family; 239 switch (family) { 240 241 case AF_INET: 242 #if BSD >= 199100 243 case AF_LINK: 244 #endif 245 (void)strncpy(ifr.ifr_name, ifrp->ifr_name, 246 sizeof(ifrp->ifr_name)); 247 if (ioctl(s, SIOCGIFFLAGS, (char *)&ifr) == -1) { 248 logmsg(LOG_ERR, 249 "SIOCGIFFLAGS: %.*s: %m", 250 (int)sizeof(ifrp->ifr_name), ifrp->ifr_name); 251 exit(1); 252 } 253 if ((ifr.ifr_flags & IFF_UP) == 0 || 254 (ifr.ifr_flags & (IFF_LOOPBACK | IFF_POINTOPOINT)) != 0) 255 return; 256 break; 257 258 259 default: 260 return; 261 } 262 263 /* Don't bother going any further if not the target interface */ 264 if (target != NULL && 265 strncmp(ifrp->ifr_name, target, sizeof(ifrp->ifr_name)) != 0) 266 return; 267 268 /* Look for interface in list */ 269 for (ii = iflist; ii != NULL; ii = ii->ii_next) 270 if (strncmp(ifrp->ifr_name, ii->ii_ifname, 271 sizeof(ifrp->ifr_name)) == 0) 272 break; 273 274 /* Allocate a new one if not found */ 275 if (ii == NULL) { 276 ii = (struct if_info *)malloc(sizeof(*ii)); 277 if (ii == NULL) { 278 logmsg(LOG_ERR, "malloc: %m"); 279 exit(1); 280 } 281 bzero(ii, sizeof(*ii)); 282 ii->ii_fd = -1; 283 (void)strncpy(ii->ii_ifname, ifrp->ifr_name, 284 sizeof(ifrp->ifr_name)); 285 ii->ii_ifname[sizeof(ii->ii_ifname) - 1] = '\0'; 286 ii->ii_next = iflist; 287 iflist = ii; 288 } 289 290 switch (family) { 291 292 case AF_INET: 293 if (ioctl(s, SIOCGIFADDR, (char *)&ifr) == -1) { 294 logmsg(LOG_ERR, "ipaddr SIOCGIFADDR: %s: %m", 295 ii->ii_ifname); 296 exit(1); 297 } 298 ii->ii_ipaddr = SATOSIN(&ifr.ifr_addr)->sin_addr.s_addr; 299 if (ioctl(s, SIOCGIFNETMASK, (char *)&ifr) == -1) { 300 logmsg(LOG_ERR, "SIOCGIFNETMASK: %m"); 301 exit(1); 302 } 303 ii->ii_netmask = SATOSIN(&ifr.ifr_addr)->sin_addr.s_addr; 304 if (ii->ii_netmask == 0) 305 ii->ii_netmask = ipaddrtonetmask(ii->ii_ipaddr); 306 if (ii->ii_fd < 0) { 307 ii->ii_fd = rarp_open(ii->ii_ifname); 308 #if BSD < 199100 309 /* Use BPF descriptor to get ethernet address. */ 310 if (ioctl(ii->ii_fd, SIOCGIFADDR, (char *)&ifr) == -1) { 311 logmsg(LOG_ERR, "eaddr SIOCGIFADDR: %s: %m", 312 ii->ii_ifname); 313 exit(1); 314 } 315 bcopy(&ifr.ifr_addr.sa_data[0], ii->ii_eaddr, 6); 316 #endif 317 } 318 break; 319 320 #if BSD >= 199100 321 case AF_LINK: 322 ll = (struct sockaddr_dl *)&ifrp->ifr_addr; 323 if (ll->sdl_type == IFT_ETHER) 324 bcopy(LLADDR(ll), ii->ii_eaddr, 6); 325 break; 326 #endif 327 } 328 } 329 /* 330 * Initialize all "candidate" interfaces that are in the system 331 * configuration list. A "candidate" is up, not loopback and not 332 * point to point. 333 */ 334 void 335 init(char *target) 336 { 337 u_int n; 338 struct ifreq *ifrp, *ifend; 339 struct if_info *ii, *nii, *lii; 340 struct ifconf ifc; 341 struct ifreq ibuf[16]; 342 343 if ((s = socket(AF_INET, SOCK_DGRAM, 0)) == -1) { 344 logmsg(LOG_ERR, "socket: %m"); 345 exit(1); 346 } 347 ifc.ifc_len = sizeof ibuf; 348 ifc.ifc_buf = (caddr_t)ibuf; 349 if ((ioctl(s, SIOCGIFCONF, (char *)&ifc) == -1) || 350 ((u_int)ifc.ifc_len < sizeof(struct ifreq))) { 351 logmsg(LOG_ERR, "SIOCGIFCONF: %m"); 352 exit(1); 353 } 354 ifrp = ibuf; 355 ifend = (struct ifreq *)((char *)ibuf + ifc.ifc_len); 356 while (ifrp < ifend) { 357 init_one(ifrp, target); 358 359 #if BSD >= 199100 360 n = ifrp->ifr_addr.sa_len + sizeof(ifrp->ifr_name); 361 if (n < sizeof(*ifrp)) 362 n = sizeof(*ifrp); 363 ifrp = (struct ifreq *)((char *)ifrp + n); 364 #else 365 ++ifrp; 366 #endif 367 } 368 369 /* Throw away incomplete interfaces */ 370 lii = NULL; 371 for (ii = iflist; ii != NULL; ii = nii) { 372 nii = ii->ii_next; 373 if (ii->ii_ipaddr == 0 || 374 bcmp(ii->ii_eaddr, zero, 6) == 0) { 375 if (lii == NULL) 376 iflist = nii; 377 else 378 lii->ii_next = nii; 379 if (ii->ii_fd >= 0) 380 close(ii->ii_fd); 381 free(ii); 382 continue; 383 } 384 lii = ii; 385 } 386 387 /* Verbose stuff */ 388 if (verbose) 389 for (ii = iflist; ii != NULL; ii = ii->ii_next) 390 logmsg(LOG_DEBUG, "%s %s 0x%08lx %s", 391 ii->ii_ifname, intoa(ntohl(ii->ii_ipaddr)), 392 (u_long)ntohl(ii->ii_netmask), eatoa(ii->ii_eaddr)); 393 } 394 395 void 396 usage(void) 397 { 398 (void)fprintf(stderr, "usage: rarpd [-adfsv] [interface]\n"); 399 exit(1); 400 } 401 402 int 403 bpf_open(void) 404 { 405 int fd; 406 int n = 0; 407 char device[sizeof "/dev/bpf000"]; 408 409 /* 410 * Go through all the minors and find one that isn't in use. 411 */ 412 do { 413 (void)sprintf(device, "/dev/bpf%d", n++); 414 fd = open(device, O_RDWR); 415 } while ((fd == -1) && (errno == EBUSY)); 416 417 if (fd == -1) { 418 logmsg(LOG_ERR, "%s: %m", device); 419 exit(1); 420 } 421 return fd; 422 } 423 424 /* 425 * Open a BPF file and attach it to the interface named 'device'. 426 * Set immediate mode, and set a filter that accepts only RARP requests. 427 */ 428 int 429 rarp_open(char *device) 430 { 431 int fd; 432 struct ifreq ifr; 433 u_int dlt; 434 int immediate; 435 436 static struct bpf_insn insns[] = { 437 BPF_STMT(BPF_LD|BPF_H|BPF_ABS, 12), 438 BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, ETHERTYPE_REVARP, 0, 3), 439 BPF_STMT(BPF_LD|BPF_H|BPF_ABS, 20), 440 BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, REVARP_REQUEST, 0, 1), 441 BPF_STMT(BPF_RET|BPF_K, sizeof(struct ether_arp) + 442 sizeof(struct ether_header)), 443 BPF_STMT(BPF_RET|BPF_K, 0), 444 }; 445 static struct bpf_program filter = { 446 sizeof insns / sizeof(insns[0]), 447 insns 448 }; 449 450 fd = bpf_open(); 451 /* 452 * Set immediate mode so packets are processed as they arrive. 453 */ 454 immediate = 1; 455 if (ioctl(fd, BIOCIMMEDIATE, &immediate) == -1) { 456 logmsg(LOG_ERR, "BIOCIMMEDIATE: %m"); 457 exit(1); 458 } 459 (void)strncpy(ifr.ifr_name, device, sizeof ifr.ifr_name); 460 if (ioctl(fd, BIOCSETIF, (caddr_t)&ifr) == -1) { 461 logmsg(LOG_ERR, "BIOCSETIF: %m"); 462 exit(1); 463 } 464 /* 465 * Check that the data link layer is an Ethernet; this code won't 466 * work with anything else. 467 */ 468 if (ioctl(fd, BIOCGDLT, (caddr_t)&dlt) == -1) { 469 logmsg(LOG_ERR, "BIOCGDLT: %m"); 470 exit(1); 471 } 472 if (dlt != DLT_EN10MB) { 473 logmsg(LOG_ERR, "%s is not an ethernet", device); 474 exit(1); 475 } 476 /* 477 * Set filter program. 478 */ 479 if (ioctl(fd, BIOCSETF, (caddr_t)&filter) == -1) { 480 logmsg(LOG_ERR, "BIOCSETF: %m"); 481 exit(1); 482 } 483 return fd; 484 } 485 486 /* 487 * Perform various sanity checks on the RARP request packet. Return 488 * false on failure and log the reason. 489 */ 490 int 491 rarp_check(u_char *p, u_int len) 492 { 493 struct ether_header *ep = (struct ether_header *)p; 494 struct ether_arp *ap = (struct ether_arp *)(p + sizeof(*ep)); 495 496 if (len < sizeof(*ep) + sizeof(*ap)) { 497 logmsg(LOG_ERR, "truncated request, got %u, expected %lu", 498 len, (u_long)(sizeof(*ep) + sizeof(*ap))); 499 return 0; 500 } 501 /* 502 * XXX This test might be better off broken out... 503 */ 504 if (ntohs(ep->ether_type) != ETHERTYPE_REVARP || 505 ntohs(ap->arp_hrd) != ARPHRD_ETHER || 506 ntohs(ap->arp_op) != REVARP_REQUEST || 507 ntohs(ap->arp_pro) != ETHERTYPE_IP || 508 ap->arp_hln != 6 || ap->arp_pln != 4) { 509 logmsg(LOG_DEBUG, "request fails sanity check"); 510 return 0; 511 } 512 if (bcmp((char *)&ep->ether_shost, (char *)&ap->arp_sha, 6) != 0) { 513 logmsg(LOG_DEBUG, "ether/arp sender address mismatch"); 514 return 0; 515 } 516 if (bcmp((char *)&ap->arp_sha, (char *)&ap->arp_tha, 6) != 0) { 517 logmsg(LOG_DEBUG, "ether/arp target address mismatch"); 518 return 0; 519 } 520 return 1; 521 } 522 523 #ifndef FD_SETSIZE 524 #define FD_SET(n, fdp) ((fdp)->fds_bits[0] |= (1 << (n))) 525 #define FD_ISSET(n, fdp) ((fdp)->fds_bits[0] & (1 << (n))) 526 #define FD_ZERO(fdp) ((fdp)->fds_bits[0] = 0) 527 #endif 528 529 /* 530 * Loop indefinitely listening for RARP requests on the 531 * interfaces in 'iflist'. 532 */ 533 void 534 rarp_loop(void) 535 { 536 u_char *buf, *bp, *ep; 537 int cc, fd; 538 fd_set fds, listeners; 539 int bufsize, maxfd = 0; 540 struct if_info *ii; 541 542 if (iflist == NULL) { 543 logmsg(LOG_ERR, "no interfaces"); 544 exit(1); 545 } 546 if (ioctl(iflist->ii_fd, BIOCGBLEN, (caddr_t)&bufsize) == -1) { 547 logmsg(LOG_ERR, "BIOCGBLEN: %m"); 548 exit(1); 549 } 550 buf = malloc(bufsize); 551 if (buf == NULL) { 552 logmsg(LOG_ERR, "malloc: %m"); 553 exit(1); 554 } 555 556 while (1) { 557 /* 558 * Find the highest numbered file descriptor for select(). 559 * Initialize the set of descriptors to listen to. 560 */ 561 FD_ZERO(&fds); 562 for (ii = iflist; ii != NULL; ii = ii->ii_next) { 563 FD_SET(ii->ii_fd, &fds); 564 if (ii->ii_fd > maxfd) 565 maxfd = ii->ii_fd; 566 } 567 listeners = fds; 568 if (select(maxfd + 1, &listeners, NULL, NULL, NULL) == -1) { 569 /* Don't choke when we get ptraced */ 570 if (errno == EINTR) 571 continue; 572 logmsg(LOG_ERR, "select: %m"); 573 exit(1); 574 } 575 for (ii = iflist; ii != NULL; ii = ii->ii_next) { 576 fd = ii->ii_fd; 577 if (!FD_ISSET(fd, &listeners)) 578 continue; 579 again: 580 cc = read(fd, (char *)buf, bufsize); 581 /* Don't choke when we get ptraced */ 582 if ((cc == -1) && (errno == EINTR)) 583 goto again; 584 #if defined(SUNOS3) || defined(SUNOS4) 585 /* 586 * Due to a SunOS bug, after 2^31 bytes, the 587 * file offset overflows and read fails with 588 * EINVAL. The lseek() to 0 will fix things. 589 */ 590 if (cc == -1) { 591 if (errno == EINVAL && 592 (long)(tell(fd) + bufsize) < 0) { 593 (void)lseek(fd, 0, 0); 594 goto again; 595 } 596 logmsg(LOG_ERR, "read: %m"); 597 exit(1); 598 } 599 #endif 600 601 /* Loop through the packet(s) */ 602 #define bhp ((struct bpf_hdr *)bp) 603 bp = buf; 604 ep = bp + cc; 605 while (bp < ep) { 606 u_int caplen, hdrlen; 607 608 caplen = bhp->bh_caplen; 609 hdrlen = bhp->bh_hdrlen; 610 if (rarp_check(bp + hdrlen, caplen)) 611 rarp_process(ii, bp + hdrlen, caplen); 612 bp += BPF_WORDALIGN(hdrlen + caplen); 613 } 614 } 615 } 616 #undef bhp 617 } 618 619 /* 620 * True if this server can boot the host whose IP address is 'addr'. 621 * This check is made by looking in the tftp directory for the 622 * configuration file. 623 */ 624 int 625 rarp_bootable(u_long addr) 626 { 627 #ifdef HAVE_DIRENT_H 628 struct dirent *dent; 629 #else 630 struct direct *dent; 631 #endif 632 DIR *d; 633 char ipname[9]; 634 static DIR *dd = NULL; 635 636 (void)sprintf(ipname, "%08lX", (u_long)ntohl(addr)); 637 638 /* 639 * If directory is already open, rewind it. Otherwise, open it. 640 */ 641 if ((d = dd) != NULL) 642 rewinddir(d); 643 else { 644 if (chdir(tftp_dir) == -1) { 645 logmsg(LOG_ERR, "chdir: %s: %m", tftp_dir); 646 exit(1); 647 } 648 d = opendir("."); 649 if (d == NULL) { 650 logmsg(LOG_ERR, "opendir: %m"); 651 exit(1); 652 } 653 dd = d; 654 } 655 while ((dent = readdir(d)) != NULL) 656 if (strncmp(dent->d_name, ipname, 8) == 0) 657 return 1; 658 return 0; 659 } 660 661 /* 662 * Given a list of IP addresses, 'alist', return the first address that 663 * is on network 'net'; 'netmask' is a mask indicating the network portion 664 * of the address. 665 */ 666 u_long 667 choose_ipaddr(u_long **alist, u_long net, u_long netmask) 668 { 669 for (; *alist; ++alist) 670 if ((**alist & netmask) == net) 671 return **alist; 672 return 0; 673 } 674 675 /* 676 * Answer the RARP request in 'pkt', on the interface 'ii'. 'pkt' has 677 * already been checked for validity. The reply is overlaid on the request. 678 */ 679 void 680 rarp_process(struct if_info *ii, u_char *pkt, u_int len) 681 { 682 struct ether_header *ep; 683 struct hostent *hp; 684 u_long target_ipaddr; 685 char ename[256]; 686 687 ep = (struct ether_header *)pkt; 688 /* should this be arp_tha? */ 689 if (ether_ntohost(ename, (struct ether_addr *)&ep->ether_shost) != 0) { 690 logmsg(LOG_ERR, "cannot map %s to name", 691 eatoa(ep->ether_shost)); 692 return; 693 } 694 695 if ((hp = gethostbyname(ename)) == NULL) { 696 logmsg(LOG_ERR, "cannot map %s to IP address", ename); 697 return; 698 } 699 700 /* 701 * Choose correct address from list. 702 */ 703 if (hp->h_addrtype != AF_INET) { 704 logmsg(LOG_ERR, "cannot handle non IP addresses for %s", 705 ename); 706 return; 707 } 708 target_ipaddr = choose_ipaddr((u_long **)hp->h_addr_list, 709 ii->ii_ipaddr & ii->ii_netmask, 710 ii->ii_netmask); 711 if (target_ipaddr == 0) { 712 logmsg(LOG_ERR, "cannot find %s on net %s", 713 ename, intoa(ntohl(ii->ii_ipaddr & ii->ii_netmask))); 714 return; 715 } 716 if (sflag || rarp_bootable(target_ipaddr)) 717 rarp_reply(ii, ep, target_ipaddr, len); 718 else if (verbose > 1) 719 logmsg(LOG_INFO, "%s %s at %s DENIED (not bootable)", 720 ii->ii_ifname, 721 eatoa(ep->ether_shost), 722 intoa(ntohl(target_ipaddr))); 723 } 724 725 /* 726 * Poke the kernel arp tables with the ethernet/ip address combinataion 727 * given. When processing a reply, we must do this so that the booting 728 * host (i.e. the guy running rarpd), won't try to ARP for the hardware 729 * address of the guy being booted (he cannot answer the ARP). 730 */ 731 #if BSD >= 199200 732 struct sockaddr_inarp sin_inarp = { 733 sizeof(struct sockaddr_inarp), AF_INET, 0, 734 {0}, 735 {0}, 736 0, 0 737 }; 738 struct sockaddr_dl sin_dl = { 739 sizeof(struct sockaddr_dl), AF_LINK, 0, IFT_ETHER, 0, 6, 740 0, "", 0, {0} 741 }; 742 struct { 743 struct rt_msghdr rthdr; 744 char rtspace[512]; 745 } rtmsg; 746 747 void 748 update_arptab(u_char *ep, u_long ipaddr) 749 { 750 int cc; 751 struct sockaddr_inarp *ar, *ar2; 752 struct sockaddr_dl *ll, *ll2; 753 struct rt_msghdr *rt; 754 int xtype, xindex; 755 static pid_t pid; 756 int r; 757 static int seq; 758 759 r = socket(PF_ROUTE, SOCK_RAW, 0); 760 if (r == -1) { 761 logmsg(LOG_ERR, "raw route socket: %m"); 762 exit(1); 763 } 764 pid = getpid(); 765 766 ar = &sin_inarp; 767 ar->sin_addr.s_addr = ipaddr; 768 ll = &sin_dl; 769 bcopy(ep, LLADDR(ll), 6); 770 771 /* Get the type and interface index */ 772 rt = &rtmsg.rthdr; 773 bzero(rt, sizeof(rtmsg)); 774 rt->rtm_version = RTM_VERSION; 775 rt->rtm_addrs = RTA_DST; 776 rt->rtm_type = RTM_GET; 777 rt->rtm_seq = ++seq; 778 ar2 = (struct sockaddr_inarp *)rtmsg.rtspace; 779 bcopy(ar, ar2, sizeof(*ar)); 780 rt->rtm_msglen = sizeof(*rt) + sizeof(*ar); 781 errno = 0; 782 if ((write(r, rt, rt->rtm_msglen) == -1) && (errno != ESRCH)) { 783 logmsg(LOG_ERR, "rtmsg get write: %m"); 784 close(r); 785 return; 786 } 787 do { 788 cc = read(r, rt, sizeof(rtmsg)); 789 } while (cc > 0 && (rt->rtm_seq != seq || rt->rtm_pid != pid)); 790 if (cc == -1) { 791 logmsg(LOG_ERR, "rtmsg get read: %m"); 792 close(r); 793 return; 794 } 795 ll2 = (struct sockaddr_dl *)((u_char *)ar2 + ar2->sin_len); 796 if (ll2->sdl_family != AF_LINK) { 797 /* 798 * XXX I think this means the ip address is not on a 799 * directly connected network (the family is AF_INET in 800 * this case). 801 */ 802 logmsg(LOG_ERR, "bogus link family (%d) wrong net for %08lX?\n", 803 ll2->sdl_family, ipaddr); 804 close(r); 805 return; 806 } 807 xtype = ll2->sdl_type; 808 xindex = ll2->sdl_index; 809 810 /* Set the new arp entry */ 811 bzero(rt, sizeof(rtmsg)); 812 rt->rtm_version = RTM_VERSION; 813 rt->rtm_addrs = RTA_DST | RTA_GATEWAY; 814 rt->rtm_inits = RTV_EXPIRE; 815 rt->rtm_rmx.rmx_expire = time(0) + ARPSECS; 816 rt->rtm_flags = RTF_HOST | RTF_STATIC; 817 rt->rtm_type = RTM_ADD; 818 rt->rtm_seq = ++seq; 819 820 bcopy(ar, ar2, sizeof(*ar)); 821 822 ll2 = (struct sockaddr_dl *)((u_char *)ar2 + sizeof(*ar2)); 823 bcopy(ll, ll2, sizeof(*ll)); 824 ll2->sdl_type = xtype; 825 ll2->sdl_index = xindex; 826 827 rt->rtm_msglen = sizeof(*rt) + sizeof(*ar2) + sizeof(*ll2); 828 errno = 0; 829 if ((write(r, rt, rt->rtm_msglen) == -1) && (errno != EEXIST)) { 830 logmsg(LOG_ERR, "rtmsg add write: %m"); 831 close(r); 832 return; 833 } 834 do { 835 cc = read(r, rt, sizeof(rtmsg)); 836 } while (cc > 0 && (rt->rtm_seq != seq || rt->rtm_pid != pid)); 837 close(r); 838 if (cc == -1) { 839 logmsg(LOG_ERR, "rtmsg add read: %m"); 840 return; 841 } 842 } 843 #else 844 void 845 update_arptab(u_char *ep, u_long ipaddr) 846 { 847 struct arpreq request; 848 struct sockaddr_in *sin; 849 850 request.arp_flags = 0; 851 sin = (struct sockaddr_in *)&request.arp_pa; 852 sin->sin_family = AF_INET; 853 sin->sin_addr.s_addr = ipaddr; 854 request.arp_ha.sa_family = AF_UNSPEC; 855 bcopy((char *)ep, (char *)request.arp_ha.sa_data, 6); 856 857 if (ioctl(s, SIOCSARP, (caddr_t)&request) == -1) 858 logmsg(LOG_ERR, "SIOCSARP: %m"); 859 } 860 #endif 861 862 /* 863 * Build a reverse ARP packet and sent it out on the interface. 864 * 'ep' points to a valid REVARP_REQUEST. The REVARP_REPLY is built 865 * on top of the request, then written to the network. 866 * 867 * RFC 903 defines the ether_arp fields as follows. The following comments 868 * are taken (more or less) straight from this document. 869 * 870 * REVARP_REQUEST 871 * 872 * arp_sha is the hardware address of the sender of the packet. 873 * arp_spa is undefined. 874 * arp_tha is the 'target' hardware address. 875 * In the case where the sender wishes to determine his own 876 * protocol address, this, like arp_sha, will be the hardware 877 * address of the sender. 878 * arp_tpa is undefined. 879 * 880 * REVARP_REPLY 881 * 882 * arp_sha is the hardware address of the responder (the sender of the 883 * reply packet). 884 * arp_spa is the protocol address of the responder (see the note below). 885 * arp_tha is the hardware address of the target, and should be the same as 886 * that which was given in the request. 887 * arp_tpa is the protocol address of the target, that is, the desired address. 888 * 889 * Note that the requirement that arp_spa be filled in with the responder's 890 * protocol is purely for convenience. For instance, if a system were to use 891 * both ARP and RARP, then the inclusion of the valid protocol-hardware 892 * address pair (arp_spa, arp_sha) may eliminate the need for a subsequent 893 * ARP request. 894 */ 895 void 896 rarp_reply(struct if_info *ii, struct ether_header *ep, u_long ipaddr, 897 u_int len) 898 { 899 u_int n; 900 struct ether_arp *ap = (struct ether_arp *)(ep + 1); 901 902 update_arptab((u_char *)&ap->arp_sha, ipaddr); 903 904 /* 905 * Build the rarp reply by modifying the rarp request in place. 906 */ 907 ap->arp_op = htons(REVARP_REPLY); 908 909 #ifdef BROKEN_BPF 910 ep->ether_type = ETHERTYPE_REVARP; 911 #endif 912 bcopy((char *)&ap->arp_sha, (char *)&ep->ether_dhost, 6); 913 bcopy((char *)ii->ii_eaddr, (char *)&ep->ether_shost, 6); 914 bcopy((char *)ii->ii_eaddr, (char *)&ap->arp_sha, 6); 915 916 bcopy((char *)&ipaddr, (char *)ap->arp_tpa, 4); 917 /* Target hardware is unchanged. */ 918 bcopy((char *)&ii->ii_ipaddr, (char *)ap->arp_spa, 4); 919 920 /* Zero possible garbage after packet. */ 921 bzero((char *)ep + (sizeof(*ep) + sizeof(*ap)), 922 len - (sizeof(*ep) + sizeof(*ap))); 923 n = write(ii->ii_fd, (char *)ep, len); 924 if (n != len) 925 logmsg(LOG_ERR, "write: only %d of %d bytes written", n, len); 926 if (verbose) 927 logmsg(LOG_INFO, "%s %s at %s REPLIED", ii->ii_ifname, 928 eatoa(ap->arp_tha), 929 intoa(ntohl(ipaddr))); 930 } 931 932 /* 933 * Get the netmask of an IP address. This routine is used if 934 * SIOCGIFNETMASK doesn't work. 935 */ 936 u_long 937 ipaddrtonetmask(u_long addr) 938 { 939 addr = ntohl(addr); 940 if (IN_CLASSA(addr)) 941 return htonl(IN_CLASSA_NET); 942 if (IN_CLASSB(addr)) 943 return htonl(IN_CLASSB_NET); 944 if (IN_CLASSC(addr)) 945 return htonl(IN_CLASSC_NET); 946 logmsg(LOG_DEBUG, "unknown IP address class: %08lX", addr); 947 return htonl(0xffffffff); 948 } 949 950 /* 951 * A faster replacement for inet_ntoa(). 952 */ 953 char * 954 intoa(u_long addr) 955 { 956 char *cp; 957 u_int byte; 958 int n; 959 static char buf[sizeof(".xxx.xxx.xxx.xxx")]; 960 961 cp = &buf[sizeof buf]; 962 *--cp = '\0'; 963 964 n = 4; 965 do { 966 byte = addr & 0xff; 967 *--cp = byte % 10 + '0'; 968 byte /= 10; 969 if (byte > 0) { 970 *--cp = byte % 10 + '0'; 971 byte /= 10; 972 if (byte > 0) 973 *--cp = byte + '0'; 974 } 975 *--cp = '.'; 976 addr >>= 8; 977 } while (--n > 0); 978 979 return cp + 1; 980 } 981 982 char * 983 eatoa(u_char *ea) 984 { 985 static char buf[sizeof("xx:xx:xx:xx:xx:xx")]; 986 987 (void)sprintf(buf, "%x:%x:%x:%x:%x:%x", 988 ea[0], ea[1], ea[2], ea[3], ea[4], ea[5]); 989 return (buf); 990 } 991 992 void 993 logmsg(int pri, const char *fmt, ...) 994 { 995 va_list v; 996 FILE *fp; 997 char *newfmt; 998 999 va_start(v, fmt); 1000 if (dflag) { 1001 if (pri == LOG_ERR) 1002 fp = stderr; 1003 else 1004 fp = stdout; 1005 if (expand_syslog_m(fmt, &newfmt) == -1) { 1006 vfprintf(fp, fmt, v); 1007 } else { 1008 vfprintf(fp, newfmt, v); 1009 free(newfmt); 1010 } 1011 fputs("\n", fp); 1012 fflush(fp); 1013 } else { 1014 vsyslog(pri, fmt, v); 1015 } 1016 va_end(v); 1017 } 1018 1019 int 1020 expand_syslog_m(const char *fmt, char **newfmt) { 1021 const char *str, *m; 1022 char *p, *np; 1023 1024 p = strdup(""); 1025 str = fmt; 1026 while ((m = strstr(str, "%m")) != NULL) { 1027 asprintf(&np, "%s%.*s%s", p, (int)(m - str), 1028 str, strerror(errno)); 1029 free(p); 1030 if (np == NULL) { 1031 errno = ENOMEM; 1032 return (-1); 1033 } 1034 p = np; 1035 str = m + 2; 1036 } 1037 1038 if (*str != '\0') { 1039 asprintf(&np, "%s%s", p, str); 1040 free(p); 1041 if (np == NULL) { 1042 errno = ENOMEM; 1043 return (-1); 1044 } 1045 p = np; 1046 } 1047 1048 *newfmt = p; 1049 return (0); 1050 } 1051