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