]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - usr.sbin/arp/arp.c
MFC r313457:
[FreeBSD/stable/10.git] / usr.sbin / arp / arp.c
1 /*
2  * Copyright (c) 1984, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Sun Microsystems, Inc.
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  * 4. Neither the name of the University 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 REGENTS 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 REGENTS 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 #if 0
34 #ifndef lint
35 static char const copyright[] =
36 "@(#) Copyright (c) 1984, 1993\n\
37         The Regents of the University of California.  All rights reserved.\n";
38 #endif /* not lint */
39
40 #ifndef lint
41 static char const sccsid[] = "@(#)from: arp.c   8.2 (Berkeley) 1/2/94";
42 #endif /* not lint */
43 #endif
44 #include <sys/cdefs.h>
45 __FBSDID("$FreeBSD$");
46
47 /*
48  * arp - display, set, and delete arp table entries
49  */
50
51 #include <sys/param.h>
52 #include <sys/file.h>
53 #include <sys/socket.h>
54 #include <sys/sockio.h>
55 #include <sys/sysctl.h>
56 #include <sys/ioctl.h>
57 #include <sys/time.h>
58
59 #include <net/if.h>
60 #include <net/if_dl.h>
61 #include <net/if_types.h>
62 #include <net/route.h>
63 #include <net/iso88025.h>
64
65 #include <netinet/in.h>
66 #include <netinet/if_ether.h>
67
68 #include <arpa/inet.h>
69
70 #include <ctype.h>
71 #include <err.h>
72 #include <errno.h>
73 #include <netdb.h>
74 #include <nlist.h>
75 #include <paths.h>
76 #include <stdio.h>
77 #include <stdlib.h>
78 #include <string.h>
79 #include <strings.h>
80 #include <unistd.h>
81
82 typedef void (action_fn)(struct sockaddr_dl *sdl, struct sockaddr_in *s_in,
83     struct rt_msghdr *rtm);
84
85 static int search(u_long addr, action_fn *action);
86 static action_fn print_entry;
87 static action_fn nuke_entry;
88
89 static int delete(char *host);
90 static void usage(void);
91 static int set(int argc, char **argv);
92 static int get(char *host);
93 static int file(char *name);
94 static struct rt_msghdr *rtmsg(int cmd,
95     struct sockaddr_in *dst, struct sockaddr_dl *sdl);
96 static int get_ether_addr(in_addr_t ipaddr, struct ether_addr *hwaddr);
97 static struct sockaddr_in *getaddr(char *host);
98 static int valid_type(int type);
99
100 static int nflag;       /* no reverse dns lookups */
101 static char *rifname;
102
103 static time_t   expire_time;
104 static int      flags, doing_proxy;
105
106 struct if_nameindex *ifnameindex;
107
108 /* which function we're supposed to do */
109 #define F_GET           1
110 #define F_SET           2
111 #define F_FILESET       3
112 #define F_REPLACE       4
113 #define F_DELETE        5
114
115 #define SETFUNC(f)      { if (func) usage(); func = (f); }
116
117 int
118 main(int argc, char *argv[])
119 {
120         int ch, func = 0;
121         int rtn = 0;
122         int aflag = 0;  /* do it for all entries */
123
124         while ((ch = getopt(argc, argv, "andfsSi:")) != -1)
125                 switch(ch) {
126                 case 'a':
127                         aflag = 1;
128                         break;
129                 case 'd':
130                         SETFUNC(F_DELETE);
131                         break;
132                 case 'n':
133                         nflag = 1;
134                         break;
135                 case 'S':
136                         SETFUNC(F_REPLACE);
137                         break;
138                 case 's':
139                         SETFUNC(F_SET);
140                         break;
141                 case 'f' :
142                         SETFUNC(F_FILESET);
143                         break;
144                 case 'i':
145                         rifname = optarg;
146                         break;
147                 case '?':
148                 default:
149                         usage();
150                 }
151         argc -= optind;
152         argv += optind;
153
154         if (!func)
155                 func = F_GET;
156         if (rifname) {
157                 if (func != F_GET && !(func == F_DELETE && aflag))
158                         errx(1, "-i not applicable to this operation");
159                 if (if_nametoindex(rifname) == 0) {
160                         if (errno == ENXIO)
161                                 errx(1, "interface %s does not exist", rifname);
162                         else
163                                 err(1, "if_nametoindex(%s)", rifname);
164                 }
165         }
166         switch (func) {
167         case F_GET:
168                 if (aflag) {
169                         if (argc != 0)
170                                 usage();
171                         search(0, print_entry);
172                 } else {
173                         if (argc != 1)
174                                 usage();
175                         rtn = get(argv[0]);
176                 }
177                 break;
178         case F_SET:
179         case F_REPLACE:
180                 if (argc < 2 || argc > 6)
181                         usage();
182                 if (func == F_REPLACE)
183                         (void)delete(argv[0]);
184                 rtn = set(argc, argv) ? 1 : 0;
185                 break;
186         case F_DELETE:
187                 if (aflag) {
188                         if (argc != 0)
189                                 usage();
190                         search(0, nuke_entry);
191                 } else {
192                         if (argc != 1)
193                                 usage();
194                         rtn = delete(argv[0]);
195                 }
196                 break;
197         case F_FILESET:
198                 if (argc != 1)
199                         usage();
200                 rtn = file(argv[0]);
201                 break;
202         }
203
204         if (ifnameindex != NULL)
205                 if_freenameindex(ifnameindex);
206
207         return (rtn);
208 }
209
210 /*
211  * Process a file to set standard arp entries
212  */
213 static int
214 file(char *name)
215 {
216         FILE *fp;
217         int i, retval;
218         char line[100], arg[5][50], *args[5], *p;
219
220         if ((fp = fopen(name, "r")) == NULL)
221                 err(1, "cannot open %s", name);
222         args[0] = &arg[0][0];
223         args[1] = &arg[1][0];
224         args[2] = &arg[2][0];
225         args[3] = &arg[3][0];
226         args[4] = &arg[4][0];
227         retval = 0;
228         while(fgets(line, sizeof(line), fp) != NULL) {
229                 if ((p = strchr(line, '#')) != NULL)
230                         *p = '\0';
231                 for (p = line; isblank(*p); p++);
232                 if (*p == '\n' || *p == '\0')
233                         continue;
234                 i = sscanf(p, "%49s %49s %49s %49s %49s", arg[0], arg[1],
235                     arg[2], arg[3], arg[4]);
236                 if (i < 2) {
237                         warnx("bad line: %s", line);
238                         retval = 1;
239                         continue;
240                 }
241                 if (set(i, args))
242                         retval = 1;
243         }
244         fclose(fp);
245         return (retval);
246 }
247
248 /*
249  * Given a hostname, fills up a (static) struct sockaddr_in with
250  * the address of the host and returns a pointer to the
251  * structure.
252  */
253 static struct sockaddr_in *
254 getaddr(char *host)
255 {
256         struct hostent *hp;
257         static struct sockaddr_in reply;
258
259         bzero(&reply, sizeof(reply));
260         reply.sin_len = sizeof(reply);
261         reply.sin_family = AF_INET;
262         reply.sin_addr.s_addr = inet_addr(host);
263         if (reply.sin_addr.s_addr == INADDR_NONE) {
264                 if (!(hp = gethostbyname(host))) {
265                         warnx("%s: %s", host, hstrerror(h_errno));
266                         return (NULL);
267                 }
268                 bcopy((char *)hp->h_addr, (char *)&reply.sin_addr,
269                         sizeof reply.sin_addr);
270         }
271         return (&reply);
272 }
273
274 /*
275  * Returns true if the type is a valid one for ARP.
276  */
277 static int
278 valid_type(int type)
279 {
280
281         switch (type) {
282         case IFT_ETHER:
283         case IFT_FDDI:
284         case IFT_INFINIBAND:
285         case IFT_ISO88023:
286         case IFT_ISO88024:
287         case IFT_ISO88025:
288         case IFT_L2VLAN:
289         case IFT_BRIDGE:
290                 return (1);
291         default:
292                 return (0);
293         }
294 }
295
296 /*
297  * Set an individual arp entry
298  */
299 static int
300 set(int argc, char **argv)
301 {
302         struct sockaddr_in *addr;
303         struct sockaddr_in *dst;        /* what are we looking for */
304         struct sockaddr_dl *sdl;
305         struct rt_msghdr *rtm;
306         struct ether_addr *ea;
307         char *host = argv[0], *eaddr = argv[1];
308         struct sockaddr_dl sdl_m;
309
310         argc -= 2;
311         argv += 2;
312
313         bzero(&sdl_m, sizeof(sdl_m));
314         sdl_m.sdl_len = sizeof(sdl_m);
315         sdl_m.sdl_family = AF_LINK;
316
317         dst = getaddr(host);
318         if (dst == NULL)
319                 return (1);
320         doing_proxy = flags = expire_time = 0;
321         while (argc-- > 0) {
322                 if (strncmp(argv[0], "temp", 4) == 0) {
323                         struct timespec tp;
324                         int max_age;
325                         size_t len = sizeof(max_age);
326
327                         clock_gettime(CLOCK_MONOTONIC, &tp);
328                         if (sysctlbyname("net.link.ether.inet.max_age",
329                             &max_age, &len, NULL, 0) != 0)
330                                 err(1, "sysctlbyname");
331                         expire_time = tp.tv_sec + max_age;
332                 } else if (strncmp(argv[0], "pub", 3) == 0) {
333                         flags |= RTF_ANNOUNCE;
334                         doing_proxy = 1;
335                         if (argc && strncmp(argv[1], "only", 3) == 0) {
336                                 /*
337                                  * Compatibility: in pre FreeBSD 8 times
338                                  * the "only" keyword used to mean that
339                                  * an ARP entry should be announced, but
340                                  * not installed into routing table.
341                                  */
342                                 argc--; argv++;
343                         }
344                 } else if (strncmp(argv[0], "blackhole", 9) == 0) {
345                         if (flags & RTF_REJECT) {
346                                 printf("Choose one of blackhole or reject, "
347                                     "not both.");
348                         }
349                         flags |= RTF_BLACKHOLE;
350                 } else if (strncmp(argv[0], "reject", 6) == 0) {
351                         if (flags & RTF_BLACKHOLE) {
352                                 printf("Choose one of blackhole or reject, "
353                                     "not both.");
354                         }
355                         flags |= RTF_REJECT;
356                 } else if (strncmp(argv[0], "trail", 5) == 0) {
357                         /* XXX deprecated and undocumented feature */
358                         printf("%s: Sending trailers is no longer supported\n",
359                             host);
360                 }
361                 argv++;
362         }
363         ea = (struct ether_addr *)LLADDR(&sdl_m);
364         if (doing_proxy && !strcmp(eaddr, "auto")) {
365                 if (!get_ether_addr(dst->sin_addr.s_addr, ea)) {
366                         printf("no interface found for %s\n",
367                                inet_ntoa(dst->sin_addr));
368                         return (1);
369                 }
370                 sdl_m.sdl_alen = ETHER_ADDR_LEN;
371         } else {
372                 struct ether_addr *ea1 = ether_aton(eaddr);
373
374                 if (ea1 == NULL) {
375                         warnx("invalid Ethernet address '%s'", eaddr);
376                         return (1);
377                 } else {
378                         *ea = *ea1;
379                         sdl_m.sdl_alen = ETHER_ADDR_LEN;
380                 }
381         }
382
383         /*
384          * In the case a proxy-arp entry is being added for
385          * a remote end point, the RTF_ANNOUNCE flag in the
386          * RTM_GET command is an indication to the kernel
387          * routing code that the interface associated with
388          * the prefix route covering the local end of the
389          * PPP link should be returned, on which ARP applies.
390          */
391         rtm = rtmsg(RTM_GET, dst, &sdl_m);
392         if (rtm == NULL) {
393                 warn("%s", host);
394                 return (1);
395         }
396         addr = (struct sockaddr_in *)(rtm + 1);
397         sdl = (struct sockaddr_dl *)(SA_SIZE(addr) + (char *)addr);
398
399         if ((sdl->sdl_family != AF_LINK) ||
400             (rtm->rtm_flags & RTF_GATEWAY) ||
401             !valid_type(sdl->sdl_type)) {
402                 printf("cannot intuit interface index and type for %s\n", host);
403                 return (1);
404         }
405         sdl_m.sdl_type = sdl->sdl_type;
406         sdl_m.sdl_index = sdl->sdl_index;
407         return (rtmsg(RTM_ADD, dst, &sdl_m) == NULL);
408 }
409
410 /*
411  * Display an individual arp entry
412  */
413 static int
414 get(char *host)
415 {
416         struct sockaddr_in *addr;
417
418         addr = getaddr(host);
419         if (addr == NULL)
420                 return (1);
421         if (0 == search(addr->sin_addr.s_addr, print_entry)) {
422                 printf("%s (%s) -- no entry",
423                     host, inet_ntoa(addr->sin_addr));
424                 if (rifname)
425                         printf(" on %s", rifname);
426                 printf("\n");
427                 return (1);
428         }
429         return (0);
430 }
431
432 /*
433  * Delete an arp entry
434  */
435 static int
436 delete(char *host)
437 {
438         struct sockaddr_in *addr, *dst;
439         struct rt_msghdr *rtm;
440         struct sockaddr_dl *sdl;
441         struct sockaddr_dl sdl_m;
442
443         dst = getaddr(host);
444         if (dst == NULL)
445                 return (1);
446
447         /*
448          * Perform a regular entry delete first.
449          */
450         flags &= ~RTF_ANNOUNCE;
451
452         /*
453          * setup the data structure to notify the kernel
454          * it is the ARP entry the RTM_GET is interested
455          * in
456          */
457         bzero(&sdl_m, sizeof(sdl_m));
458         sdl_m.sdl_len = sizeof(sdl_m);
459         sdl_m.sdl_family = AF_LINK;
460
461         for (;;) {      /* try twice */
462                 rtm = rtmsg(RTM_GET, dst, &sdl_m);
463                 if (rtm == NULL) {
464                         warn("%s", host);
465                         return (1);
466                 }
467                 addr = (struct sockaddr_in *)(rtm + 1);
468                 sdl = (struct sockaddr_dl *)(SA_SIZE(addr) + (char *)addr);
469
470                 /*
471                  * With the new L2/L3 restructure, the route
472                  * returned is a prefix route. The important
473                  * piece of information from the previous
474                  * RTM_GET is the interface index. In the
475                  * case of ECMP, the kernel will traverse
476                  * the route group for the given entry.
477                  */
478                 if (sdl->sdl_family == AF_LINK &&
479                     !(rtm->rtm_flags & RTF_GATEWAY) &&
480                     valid_type(sdl->sdl_type) ) {
481                         addr->sin_addr.s_addr = dst->sin_addr.s_addr;
482                         break;
483                 }
484
485                 /*
486                  * Regualar entry delete failed, now check if there
487                  * is a proxy-arp entry to remove.
488                  */
489                 if (flags & RTF_ANNOUNCE) {
490                         fprintf(stderr, "delete: cannot locate %s\n", host);
491                         return (1);
492                 }
493
494                 flags |= RTF_ANNOUNCE;
495         }
496         rtm->rtm_flags |= RTF_LLDATA;
497         if (rtmsg(RTM_DELETE, dst, NULL) != NULL) {
498                 printf("%s (%s) deleted\n", host, inet_ntoa(addr->sin_addr));
499                 return (0);
500         }
501         return (1);
502 }
503
504
505 /*
506  * Search the arp table and do some action on matching entries
507  */
508 static int
509 search(u_long addr, action_fn *action)
510 {
511         int mib[6];
512         size_t needed;
513         char *lim, *buf, *next;
514         struct rt_msghdr *rtm;
515         struct sockaddr_in *sin2;
516         struct sockaddr_dl *sdl;
517         char ifname[IF_NAMESIZE];
518         int st, found_entry = 0;
519
520         mib[0] = CTL_NET;
521         mib[1] = PF_ROUTE;
522         mib[2] = 0;
523         mib[3] = AF_INET;
524         mib[4] = NET_RT_FLAGS;
525 #ifdef RTF_LLINFO
526         mib[5] = RTF_LLINFO;
527 #else
528         mib[5] = 0;
529 #endif
530         if (sysctl(mib, 6, NULL, &needed, NULL, 0) < 0)
531                 err(1, "route-sysctl-estimate");
532         if (needed == 0)        /* empty table */
533                 return 0;
534         buf = NULL;
535         for (;;) {
536                 buf = reallocf(buf, needed);
537                 if (buf == NULL)
538                         errx(1, "could not reallocate memory");
539                 st = sysctl(mib, 6, buf, &needed, NULL, 0);
540                 if (st == 0 || errno != ENOMEM)
541                         break;
542                 needed += needed / 8;
543         }
544         if (st == -1)
545                 err(1, "actual retrieval of routing table");
546         lim = buf + needed;
547         for (next = buf; next < lim; next += rtm->rtm_msglen) {
548                 rtm = (struct rt_msghdr *)next;
549                 sin2 = (struct sockaddr_in *)(rtm + 1);
550                 sdl = (struct sockaddr_dl *)((char *)sin2 + SA_SIZE(sin2));
551                 if (rifname && if_indextoname(sdl->sdl_index, ifname) &&
552                     strcmp(ifname, rifname))
553                         continue;
554                 if (addr) {
555                         if (addr != sin2->sin_addr.s_addr)
556                                 continue;
557                         found_entry = 1;
558                 }
559                 (*action)(sdl, sin2, rtm);
560         }
561         free(buf);
562         return (found_entry);
563 }
564
565 /*
566  * Display an arp entry
567  */
568
569 static void
570 print_entry(struct sockaddr_dl *sdl,
571         struct sockaddr_in *addr, struct rt_msghdr *rtm)
572 {
573         const char *host;
574         struct hostent *hp;
575         struct iso88025_sockaddr_dl_data *trld;
576         struct if_nameindex *p;
577         int seg;
578
579         if (ifnameindex == NULL)
580                 if ((ifnameindex = if_nameindex()) == NULL)
581                         err(1, "cannot retrieve interface names");
582
583         if (nflag == 0)
584                 hp = gethostbyaddr((caddr_t)&(addr->sin_addr),
585                     sizeof addr->sin_addr, AF_INET);
586         else
587                 hp = 0;
588         if (hp)
589                 host = hp->h_name;
590         else {
591                 host = "?";
592                 if (h_errno == TRY_AGAIN)
593                         nflag = 1;
594         }
595         printf("%s (%s) at ", host, inet_ntoa(addr->sin_addr));
596         if (sdl->sdl_alen) {
597                 if ((sdl->sdl_type == IFT_ETHER ||
598                     sdl->sdl_type == IFT_L2VLAN ||
599                     sdl->sdl_type == IFT_BRIDGE) &&
600                     sdl->sdl_alen == ETHER_ADDR_LEN)
601                         printf("%s",
602                             ether_ntoa((struct ether_addr *)LLADDR(sdl)));
603                 else {
604                         int n = sdl->sdl_nlen > 0 ? sdl->sdl_nlen + 1 : 0;
605
606                         printf("%s", link_ntoa(sdl) + n);
607                 }
608         } else
609                 printf("(incomplete)");
610
611         for (p = ifnameindex; p && ifnameindex->if_index &&
612             ifnameindex->if_name; p++) {
613                 if (p->if_index == sdl->sdl_index) {
614                         printf(" on %s", p->if_name);
615                         break;
616                 }
617         }
618
619         if (rtm->rtm_rmx.rmx_expire == 0)
620                 printf(" permanent");
621         else {
622                 static struct timespec tp;
623                 if (tp.tv_sec == 0)
624                         clock_gettime(CLOCK_MONOTONIC, &tp);
625                 if ((expire_time = rtm->rtm_rmx.rmx_expire - tp.tv_sec) > 0)
626                         printf(" expires in %d seconds", (int)expire_time);
627                 else
628                         printf(" expired");
629         }
630         if (rtm->rtm_flags & RTF_ANNOUNCE)
631                 printf(" published");
632         switch(sdl->sdl_type) {
633         case IFT_ETHER:
634                 printf(" [ethernet]");
635                 break;
636         case IFT_ISO88025:
637                 printf(" [token-ring]");
638                 trld = SDL_ISO88025(sdl);
639                 if (trld->trld_rcf != 0) {
640                         printf(" rt=%x", ntohs(trld->trld_rcf));
641                         for (seg = 0;
642                              seg < ((TR_RCF_RIFLEN(trld->trld_rcf) - 2 ) / 2);
643                              seg++)
644                                 printf(":%x", ntohs(*(trld->trld_route[seg])));
645                 }
646                 break;
647         case IFT_FDDI:
648                 printf(" [fddi]");
649                 break;
650         case IFT_ATM:
651                 printf(" [atm]");
652                 break;
653         case IFT_L2VLAN:
654                 printf(" [vlan]");
655                 break;
656         case IFT_IEEE1394:
657                 printf(" [firewire]");
658                 break;
659         case IFT_BRIDGE:
660                 printf(" [bridge]");
661                 break;
662         case IFT_INFINIBAND:
663                 printf(" [infiniband]");
664                 break;
665         default:
666                 break;
667         }
668
669         printf("\n");
670
671 }
672
673 /*
674  * Nuke an arp entry
675  */
676 static void
677 nuke_entry(struct sockaddr_dl *sdl __unused,
678         struct sockaddr_in *addr, struct rt_msghdr *rtm)
679 {
680         char ip[20];
681
682         if (rtm->rtm_flags & RTF_PINNED)
683                 return;
684
685         snprintf(ip, sizeof(ip), "%s", inet_ntoa(addr->sin_addr));
686         delete(ip);
687 }
688
689 static void
690 usage(void)
691 {
692         fprintf(stderr, "%s\n%s\n%s\n%s\n%s\n%s\n%s\n",
693             "usage: arp [-n] [-i interface] hostname",
694             "       arp [-n] [-i interface] -a",
695             "       arp -d hostname [pub]",
696             "       arp -d [-i interface] -a",
697             "       arp -s hostname ether_addr [temp] [reject | blackhole] [pub [only]]",
698             "       arp -S hostname ether_addr [temp] [reject | blackhole] [pub [only]]",
699             "       arp -f filename");
700         exit(1);
701 }
702
703 static struct rt_msghdr *
704 rtmsg(int cmd, struct sockaddr_in *dst, struct sockaddr_dl *sdl)
705 {
706         static int seq;
707         int rlen;
708         int l;
709         struct sockaddr_in so_mask, *som = &so_mask;
710         static int s = -1;
711         static pid_t pid;
712
713         static struct   {
714                 struct  rt_msghdr m_rtm;
715                 char    m_space[512];
716         }       m_rtmsg;
717
718         struct rt_msghdr *rtm = &m_rtmsg.m_rtm;
719         char *cp = m_rtmsg.m_space;
720
721         if (s < 0) {    /* first time: open socket, get pid */
722                 s = socket(PF_ROUTE, SOCK_RAW, 0);
723                 if (s < 0)
724                         err(1, "socket");
725                 pid = getpid();
726         }
727         bzero(&so_mask, sizeof(so_mask));
728         so_mask.sin_len = 8;
729         so_mask.sin_addr.s_addr = 0xffffffff;
730
731         errno = 0;
732         /*
733          * XXX RTM_DELETE relies on a previous RTM_GET to fill the buffer
734          * appropriately.
735          */
736         if (cmd == RTM_DELETE)
737                 goto doit;
738         bzero((char *)&m_rtmsg, sizeof(m_rtmsg));
739         rtm->rtm_flags = flags;
740         rtm->rtm_version = RTM_VERSION;
741
742         switch (cmd) {
743         default:
744                 errx(1, "internal wrong cmd");
745         case RTM_ADD:
746                 rtm->rtm_addrs |= RTA_GATEWAY;
747                 rtm->rtm_rmx.rmx_expire = expire_time;
748                 rtm->rtm_inits = RTV_EXPIRE;
749                 rtm->rtm_flags |= (RTF_HOST | RTF_STATIC | RTF_LLDATA);
750                 if (doing_proxy) {
751                         rtm->rtm_addrs |= RTA_NETMASK;
752                         rtm->rtm_flags &= ~RTF_HOST;
753                 }
754                 /* FALLTHROUGH */
755         case RTM_GET:
756                 rtm->rtm_addrs |= RTA_DST;
757         }
758 #define NEXTADDR(w, s)                                          \
759         do {                                                    \
760                 if ((s) != NULL && rtm->rtm_addrs & (w)) {      \
761                         bcopy((s), cp, sizeof(*(s)));           \
762                         cp += SA_SIZE(s);                       \
763                 }                                               \
764         } while (0)
765
766         NEXTADDR(RTA_DST, dst);
767         NEXTADDR(RTA_GATEWAY, sdl);
768         NEXTADDR(RTA_NETMASK, som);
769
770         rtm->rtm_msglen = cp - (char *)&m_rtmsg;
771 doit:
772         l = rtm->rtm_msglen;
773         rtm->rtm_seq = ++seq;
774         rtm->rtm_type = cmd;
775         if ((rlen = write(s, (char *)&m_rtmsg, l)) < 0) {
776                 if (errno != ESRCH || cmd != RTM_DELETE) {
777                         warn("writing to routing socket");
778                         return (NULL);
779                 }
780         }
781         do {
782                 l = read(s, (char *)&m_rtmsg, sizeof(m_rtmsg));
783         } while (l > 0 && (rtm->rtm_seq != seq || rtm->rtm_pid != pid));
784         if (l < 0)
785                 warn("read from routing socket");
786         return (rtm);
787 }
788
789 /*
790  * get_ether_addr - get the hardware address of an interface on the
791  * the same subnet as ipaddr.
792  */
793 #define MAX_IFS         32
794
795 static int
796 get_ether_addr(in_addr_t ipaddr, struct ether_addr *hwaddr)
797 {
798         struct ifreq *ifr, *ifend, *ifp;
799         in_addr_t ina, mask;
800         struct sockaddr_dl *dla;
801         struct ifreq ifreq;
802         struct ifconf ifc;
803         struct ifreq ifs[MAX_IFS];
804         int sock;
805         int retval = 0;
806
807         sock = socket(AF_INET, SOCK_DGRAM, 0);
808         if (sock < 0)
809                 err(1, "socket");
810
811         ifc.ifc_len = sizeof(ifs);
812         ifc.ifc_req = ifs;
813         if (ioctl(sock, SIOCGIFCONF, &ifc) < 0) {
814                 warnx("ioctl(SIOCGIFCONF)");
815                 goto done;
816         }
817
818 #define NEXTIFR(i)                                              \
819         ((struct ifreq *)((char *)&(i)->ifr_addr                \
820         + MAX((i)->ifr_addr.sa_len, sizeof((i)->ifr_addr))) )
821
822         /*
823          * Scan through looking for an interface with an Internet
824          * address on the same subnet as `ipaddr'.
825          */
826         ifend = (struct ifreq *)(ifc.ifc_buf + ifc.ifc_len);
827         for (ifr = ifc.ifc_req; ifr < ifend; ifr = NEXTIFR(ifr) ) {
828                 if (ifr->ifr_addr.sa_family != AF_INET)
829                         continue;
830                 strncpy(ifreq.ifr_name, ifr->ifr_name,
831                         sizeof(ifreq.ifr_name));
832                 ifreq.ifr_addr = ifr->ifr_addr;
833                 /*
834                  * Check that the interface is up,
835                  * and not point-to-point or loopback.
836                  */
837                 if (ioctl(sock, SIOCGIFFLAGS, &ifreq) < 0)
838                         continue;
839                 if ((ifreq.ifr_flags &
840                     (IFF_UP|IFF_BROADCAST|IFF_POINTOPOINT|
841                     IFF_LOOPBACK|IFF_NOARP)) != (IFF_UP|IFF_BROADCAST))
842                         continue;
843                 /* Get its netmask and check that it's on the right subnet. */
844                 if (ioctl(sock, SIOCGIFNETMASK, &ifreq) < 0)
845                         continue;
846                 mask = ((struct sockaddr_in *)
847                         &ifreq.ifr_addr)->sin_addr.s_addr;
848                 ina = ((struct sockaddr_in *)
849                         &ifr->ifr_addr)->sin_addr.s_addr;
850                 if ((ipaddr & mask) == (ina & mask))
851                         break; /* ok, we got it! */
852         }
853
854         if (ifr >= ifend)
855                 goto done;
856
857         /*
858          * Now scan through again looking for a link-level address
859          * for this interface.
860          */
861         ifp = ifr;
862         for (ifr = ifc.ifc_req; ifr < ifend; ifr = NEXTIFR(ifr))
863                 if (strcmp(ifp->ifr_name, ifr->ifr_name) == 0 &&
864                     ifr->ifr_addr.sa_family == AF_LINK)
865                         break;
866         if (ifr >= ifend)
867                 goto done;
868         /*
869          * Found the link-level address - copy it out
870          */
871         dla = (struct sockaddr_dl *) &ifr->ifr_addr;
872         memcpy(hwaddr,  LLADDR(dla), dla->sdl_alen);
873         printf("using interface %s for proxy with address ",
874                 ifp->ifr_name);
875         printf("%s\n", ether_ntoa(hwaddr));
876         retval = dla->sdl_alen;
877 done:
878         close(sock);
879         return (retval);
880 }