]> git.ozlabs.org Git - ppp.git/blob - pppd/sys-bsd.c
fix get_ether_addr
[ppp.git] / pppd / sys-bsd.c
1 /*
2  * sys-bsd.c - System-dependent procedures for setting up
3  * PPP interfaces on bsd-4.4-ish systems (including 386BSD, NetBSD, etc.)
4  *
5  * Copyright (c) 1989 Carnegie Mellon University.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms are permitted
9  * provided that the above copyright notice and this paragraph are
10  * duplicated in all such forms and that any documentation,
11  * advertising materials, and other materials related to such
12  * distribution and use acknowledge that the software was developed
13  * by Carnegie Mellon University.  The name of the
14  * University may not be used to endorse or promote products derived
15  * from this software without specific prior written permission.
16  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
17  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
18  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
19  */
20
21 #ifndef lint
22 static char rcsid[] = "$Id: sys-bsd.c,v 1.14 1994/10/22 11:50:36 paulus Exp $";
23 #endif
24
25 /*
26  * TODO:
27  */
28
29 #include <syslog.h>
30 #include <string.h>
31 #include <termios.h>
32 #include <sys/ioctl.h>
33 #include <sys/types.h>
34 #include <sys/socket.h>
35 #include <sys/time.h>
36 #include <sys/errno.h>
37
38 #include <net/if.h>
39 #include <net/ppp_defs.h>
40 #include <net/if_ppp.h>
41 #include <net/route.h>
42 #include <net/if_dl.h>
43 #include <netinet/in.h>
44
45 #if RTM_VERSION >= 3
46 #include <netinet/if_ether.h>
47 #endif
48
49 #include "pppd.h"
50
51 static int initdisc = -1;       /* Initial TTY discipline */
52 static int rtm_seq;
53
54 static int      restore_term;   /* 1 => we've munged the terminal */
55 static struct termios inittermios; /* Initial TTY termios */
56
57 /*
58  * sys_init - System-dependent initialization.
59  */
60 void
61 sys_init()
62 {
63     openlog("pppd", LOG_PID | LOG_NDELAY, LOG_PPP);
64     setlogmask(LOG_UPTO(LOG_INFO));
65     if (debug)
66         setlogmask(LOG_UPTO(LOG_DEBUG));
67 }
68
69 /*
70  * note_debug_level - note a change in the debug level.
71  */
72 void
73 note_debug_level()
74 {
75     if (debug) {
76         syslog(LOG_INFO, "Debug turned ON, Level %d", debug);
77         setlogmask(LOG_UPTO(LOG_DEBUG));
78     } else {
79         setlogmask(LOG_UPTO(LOG_WARNING));
80     }
81 }
82
83 /*
84  * ppp_available - check whether the system has any ppp interfaces
85  * (in fact we check whether we can do an ioctl on ppp0).
86  */
87 int
88 ppp_available()
89 {
90     int s, ok;
91     struct ifreq ifr;
92
93     if ((s = socket(AF_INET, SOCK_DGRAM, 0)) < 0)
94         return 1;               /* can't tell - maybe we're not root */
95
96     strncpy(ifr.ifr_name, "ppp0", sizeof (ifr.ifr_name));
97     ok = ioctl(s, SIOCGIFFLAGS, (caddr_t) &ifr) >= 0;
98     close(s);
99
100     return ok;
101 }
102
103 /*
104  * establish_ppp - Turn the serial port into a ppp interface.
105  */
106 void
107 establish_ppp()
108 {
109     int pppdisc = PPPDISC;
110     int x;
111
112     if (ioctl(fd, TIOCGETD, &initdisc) < 0) {
113         syslog(LOG_ERR, "ioctl(TIOCGETD): %m");
114         die(1);
115     }
116     if (ioctl(fd, TIOCSETD, &pppdisc) < 0) {
117         syslog(LOG_ERR, "ioctl(TIOCSETD): %m");
118         die(1);
119     }
120
121     /*
122      * Find out which interface we were given.
123      */
124     if (ioctl(fd, PPPIOCGUNIT, &ifunit) < 0) {  
125         syslog(LOG_ERR, "ioctl(PPPIOCGUNIT): %m");
126         die(1);
127     }
128
129     /*
130      * Enable debug in the driver if requested.
131      */
132     if (kdebugflag) {
133         if (ioctl(fd, PPPIOCGFLAGS, (caddr_t) &x) < 0) {
134             syslog(LOG_WARNING, "ioctl (PPPIOCGFLAGS): %m");
135         } else {
136             x |= (kdebugflag & 0xFF) * SC_DEBUG;
137             if (ioctl(fd, PPPIOCSFLAGS, (caddr_t) &x) < 0)
138                 syslog(LOG_WARNING, "ioctl(PPPIOCSFLAGS): %m");
139         }
140     }
141 }
142
143
144 /*
145  * disestablish_ppp - Restore the serial port to normal operation.
146  * This shouldn't call die() because it's called from die().
147  */
148 void
149 disestablish_ppp()
150 {
151     int x;
152     char *s;
153
154     if (initdisc >= 0) {
155         /*
156          * Check whether the link seems not to be 8-bit clean.
157          */
158         if (ioctl(fd, PPPIOCGFLAGS, (caddr_t) &x) == 0) {
159             s = NULL;
160             switch (~x & (SC_RCV_B7_0|SC_RCV_B7_1|SC_RCV_EVNP|SC_RCV_ODDP)) {
161             case SC_RCV_B7_0:
162                 s = "bit 7 set to 1";
163                 break;
164             case SC_RCV_B7_1:
165                 s = "bit 7 set to 0";
166                 break;
167             case SC_RCV_EVNP:
168                 s = "odd parity";
169                 break;
170             case SC_RCV_ODDP:
171                 s = "even parity";
172                 break;
173             }
174             if (s != NULL) {
175                 syslog(LOG_WARNING, "Serial link is not 8-bit clean:");
176                 syslog(LOG_WARNING, "All received characters had %s", s);
177             }
178         }
179         if (ioctl(fd, TIOCSETD, &initdisc) < 0)
180             syslog(LOG_ERR, "ioctl(TIOCSETD): %m");
181     }
182 }
183
184
185 /*
186  * set_up_tty: Set up the serial port on `fd' for 8 bits, no parity,
187  * at the requested speed, etc.  If `local' is true, set CLOCAL
188  * regardless of whether the modem option was specified.
189  *
190  * For *BSD, we assume that speed_t values numerically equal bits/second.
191  */
192 set_up_tty(fd, local)
193     int fd, local;
194 {
195     struct termios tios;
196
197     if (tcgetattr(fd, &tios) < 0) {
198         syslog(LOG_ERR, "tcgetattr: %m");
199         die(1);
200     }
201
202     if (!restore_term)
203         inittermios = tios;
204
205     tios.c_cflag &= ~(CSIZE | CSTOPB | PARENB | CLOCAL);
206     if (crtscts > 0)
207         tios.c_cflag |= CRTSCTS;
208     else if (crtscts < 0)
209         tios.c_cflag &= ~CRTSCTS;
210
211     tios.c_cflag |= CS8 | CREAD | HUPCL;
212     if (local || !modem)
213         tios.c_cflag |= CLOCAL;
214     tios.c_iflag = IGNBRK | IGNPAR;
215     tios.c_oflag = 0;
216     tios.c_lflag = 0;
217     tios.c_cc[VMIN] = 1;
218     tios.c_cc[VTIME] = 0;
219
220     if (crtscts == 2) {
221         tios.c_iflag |= IXOFF;
222         tios.c_cc[VSTOP] = 0x13;        /* DC3 = XOFF = ^S */
223         tios.c_cc[VSTART] = 0x11;       /* DC1 = XON  = ^Q */
224     }
225
226     if (inspeed) {
227         cfsetospeed(&tios, inspeed);
228         cfsetispeed(&tios, inspeed);
229     } else {
230         inspeed = cfgetospeed(&tios);
231         /*
232          * We can't proceed if the serial port speed is 0,
233          * since that implies that the serial port is disabled.
234          */
235         if (inspeed == 0) {
236             syslog(LOG_ERR, "Baud rate for %s is 0; need explicit baud rate",
237                    devnam);
238             die(1);
239         }
240     }
241     baud_rate = inspeed;
242
243     if (tcsetattr(fd, TCSAFLUSH, &tios) < 0) {
244         syslog(LOG_ERR, "tcsetattr: %m");
245         die(1);
246     }
247
248     restore_term = 1;
249 }
250
251 /*
252  * restore_tty - restore the terminal to the saved settings.
253  */
254 void
255 restore_tty()
256 {
257     if (restore_term) {
258         if (tcsetattr(fd, TCSAFLUSH, &inittermios) < 0)
259             if (errno != ENXIO)
260                 syslog(LOG_WARNING, "tcsetattr: %m");
261         restore_term = 0;
262     }
263 }
264
265 /*
266  * setdtr - control the DTR line on the serial port.
267  * This is called from die(), so it shouldn't call die().
268  */
269 setdtr(fd, on)
270 int fd, on;
271 {
272     int modembits = TIOCM_DTR;
273
274     ioctl(fd, (on? TIOCMBIS: TIOCMBIC), &modembits);
275 }
276
277
278 /*
279  * output - Output PPP packet.
280  */
281 void
282 output(unit, p, len)
283     int unit;
284     u_char *p;
285     int len;
286 {
287     if (unit != 0)
288         MAINDEBUG((LOG_WARNING, "output: unit != 0!"));
289     if (debug)
290         log_packet(p, len, "sent ");
291
292     if (write(fd, p, len) < 0) {
293         syslog(LOG_ERR, "write: %m");
294         die(1);
295     }
296 }
297
298
299 /*
300  * wait_input - wait until there is data available on fd,
301  * for the length of time specified by *timo (indefinite
302  * if timo is NULL).
303  */
304 wait_input(timo)
305     struct timeval *timo;
306 {
307     fd_set ready;
308     int n;
309
310     FD_ZERO(&ready);
311     FD_SET(fd, &ready);
312     n = select(fd+1, &ready, NULL, &ready, timo);
313     if (n < 0 && errno != EINTR) {
314         syslog(LOG_ERR, "select: %m");
315         die(1);
316     }
317 }
318
319
320 /*
321  * read_packet - get a PPP packet from the serial device.
322  */
323 int
324 read_packet(buf)
325     u_char *buf;
326 {
327     int len;
328
329     if ((len = read(fd, buf, PPP_MTU + PPP_HDRLEN)) < 0) {
330         if (errno == EWOULDBLOCK || errno == EINTR) {
331             MAINDEBUG((LOG_DEBUG, "read(fd): %m"));
332             return -1;
333         }
334         syslog(LOG_ERR, "read(fd): %m");
335         die(1);
336     }
337     return len;
338 }
339
340
341 /*
342  * ppp_send_config - configure the transmit characteristics of
343  * the ppp interface.
344  */
345 void
346 ppp_send_config(unit, mtu, asyncmap, pcomp, accomp)
347     int unit, mtu;
348     u_int32_t asyncmap;
349     int pcomp, accomp;
350 {
351     u_int x;
352     struct ifreq ifr;
353
354     strncpy(ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
355     ifr.ifr_mtu = mtu;
356     if (ioctl(s, SIOCSIFMTU, (caddr_t) &ifr) < 0) {
357         syslog(LOG_ERR, "ioctl(SIOCSIFMTU): %m");
358         quit();
359     }
360
361     if (ioctl(fd, PPPIOCSASYNCMAP, (caddr_t) &asyncmap) < 0) {
362         syslog(LOG_ERR, "ioctl(PPPIOCSASYNCMAP): %m");
363         quit();
364     }
365
366     if (ioctl(fd, PPPIOCGFLAGS, (caddr_t) &x) < 0) {
367         syslog(LOG_ERR, "ioctl (PPPIOCGFLAGS): %m");
368         quit();
369     }
370     x = pcomp? x | SC_COMP_PROT: x &~ SC_COMP_PROT;
371     x = accomp? x | SC_COMP_AC: x &~ SC_COMP_AC;
372     if (ioctl(fd, PPPIOCSFLAGS, (caddr_t) &x) < 0) {
373         syslog(LOG_ERR, "ioctl(PPPIOCSFLAGS): %m");
374         quit();
375     }
376 }
377
378
379 /*
380  * ppp_set_xaccm - set the extended transmit ACCM for the interface.
381  */
382 void
383 ppp_set_xaccm(unit, accm)
384     int unit;
385     ext_accm accm;
386 {
387     if (ioctl(fd, PPPIOCSXASYNCMAP, accm) < 0 && errno != ENOTTY)
388         syslog(LOG_WARNING, "ioctl(set extended ACCM): %m");
389 }
390
391
392 /*
393  * ppp_recv_config - configure the receive-side characteristics of
394  * the ppp interface.
395  */
396 void
397 ppp_recv_config(unit, mru, asyncmap, pcomp, accomp)
398     int unit, mru;
399     u_int32_t asyncmap;
400     int pcomp, accomp;
401 {
402     int x;
403
404     if (ioctl(fd, PPPIOCSMRU, (caddr_t) &mru) < 0) {
405         syslog(LOG_ERR, "ioctl(PPPIOCSMRU): %m");
406         quit();
407     }
408     if (ioctl(fd, PPPIOCSRASYNCMAP, (caddr_t) &asyncmap) < 0) {
409         syslog(LOG_ERR, "ioctl(PPPIOCSRASYNCMAP): %m");
410         quit();
411     }
412     if (ioctl(fd, PPPIOCGFLAGS, (caddr_t) &x) < 0) {
413         syslog(LOG_ERR, "ioctl (PPPIOCGFLAGS): %m");
414         quit();
415     }
416     x = !accomp? x | SC_REJ_COMP_AC: x &~ SC_REJ_COMP_AC;
417     if (ioctl(fd, PPPIOCSFLAGS, (caddr_t) &x) < 0) {
418         syslog(LOG_ERR, "ioctl(PPPIOCSFLAGS): %m");
419         quit();
420     }
421 }
422
423 /*
424  * ccp_test - ask kernel whether a given compression method
425  * is acceptable for use.
426  */
427 ccp_test(unit, opt_ptr, opt_len, for_transmit)
428     int unit, opt_len, for_transmit;
429     u_char *opt_ptr;
430 {
431     struct ppp_option_data data;
432
433     data.ptr = opt_ptr;
434     data.length = opt_len;
435     data.transmit = for_transmit;
436     return ioctl(fd, PPPIOCSCOMPRESS, (caddr_t) &data) >= 0;
437 }
438
439 /*
440  * ccp_flags_set - inform kernel about the current state of CCP.
441  */
442 void
443 ccp_flags_set(unit, isopen, isup)
444     int unit, isopen, isup;
445 {
446     int x;
447
448     if (ioctl(fd, PPPIOCGFLAGS, (caddr_t) &x) < 0) {
449         syslog(LOG_ERR, "ioctl (PPPIOCGFLAGS): %m");
450         return;
451     }
452     x = isopen? x | SC_CCP_OPEN: x &~ SC_CCP_OPEN;
453     x = isup? x | SC_CCP_UP: x &~ SC_CCP_UP;
454     if (ioctl(fd, PPPIOCSFLAGS, (caddr_t) &x) < 0)
455         syslog(LOG_ERR, "ioctl(PPPIOCSFLAGS): %m");
456 }
457
458 /*
459  * ccp_fatal_error - returns 1 if decompression was disabled as a
460  * result of an error detected after decompression of a packet,
461  * 0 otherwise.  This is necessary because of patent nonsense.
462  */
463 int
464 ccp_fatal_error(unit)
465     int unit;
466 {
467     int x;
468
469     if (ioctl(fd, PPPIOCGFLAGS, (caddr_t) &x) < 0) {
470         syslog(LOG_ERR, "ioctl(PPPIOCGFLAGS): %m");
471         return 0;
472     }
473     return x & SC_DC_FERROR;
474 }
475
476 /*
477  * sifvjcomp - config tcp header compression
478  */
479 int
480 sifvjcomp(u, vjcomp, cidcomp, maxcid)
481     int u, vjcomp, cidcomp, maxcid;
482 {
483     u_int x;
484
485     if (ioctl(fd, PPPIOCGFLAGS, (caddr_t) &x) < 0) {
486         syslog(LOG_ERR, "ioctl (PPPIOCGFLAGS): %m");
487         return 0;
488     }
489     x = vjcomp ? x | SC_COMP_TCP: x &~ SC_COMP_TCP;
490     x = cidcomp? x & ~SC_NO_TCP_CCID: x | SC_NO_TCP_CCID;
491     if (ioctl(fd, PPPIOCSFLAGS, (caddr_t) &x) < 0) {
492         syslog(LOG_ERR, "ioctl(PPPIOCSFLAGS): %m");
493         return 0;
494     }
495     if (ioctl(fd, PPPIOCSMAXCID, (caddr_t) &maxcid) < 0) {
496         syslog(LOG_ERR, "ioctl(PPPIOCSFLAGS): %m");
497         return 0;
498     }
499     return 1;
500 }
501
502 /*
503  * sifup - Config the interface up and enable IP packets to pass.
504  */
505 int
506 sifup(u)
507     int u;
508 {
509     struct ifreq ifr;
510     u_int x;
511     struct npioctl npi;
512
513     strncpy(ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
514     if (ioctl(s, SIOCGIFFLAGS, (caddr_t) &ifr) < 0) {
515         syslog(LOG_ERR, "ioctl (SIOCGIFFLAGS): %m");
516         return 0;
517     }
518     ifr.ifr_flags |= IFF_UP;
519     if (ioctl(s, SIOCSIFFLAGS, (caddr_t) &ifr) < 0) {
520         syslog(LOG_ERR, "ioctl(SIOCSIFFLAGS): %m");
521         return 0;
522     }
523     npi.protocol = PPP_IP;
524     npi.mode = NPMODE_PASS;
525     if (ioctl(fd, PPPIOCSNPMODE, &npi) < 0) {
526         if (errno != ENOTTY) {
527             syslog(LOG_ERR, "ioctl(PPPIOCSNPMODE): %m");
528             return 0;
529         }
530         /* for backwards compatibility */
531         if (ioctl(fd, PPPIOCGFLAGS, (caddr_t) &x) < 0) {
532             syslog(LOG_ERR, "ioctl (PPPIOCGFLAGS): %m");
533             return 0;
534         }
535         x |= SC_ENABLE_IP;
536         if (ioctl(fd, PPPIOCSFLAGS, (caddr_t) &x) < 0) {
537             syslog(LOG_ERR, "ioctl(PPPIOCSFLAGS): %m");
538             return 0;
539         }
540     }
541     return 1;
542 }
543
544 /*
545  * sifdown - Config the interface down and disable IP.
546  */
547 int
548 sifdown(u)
549     int u;
550 {
551     struct ifreq ifr;
552     u_int x;
553     int rv;
554     struct npioctl npi;
555
556     rv = 1;
557     npi.protocol = PPP_IP;
558     npi.mode = NPMODE_ERROR;
559     if (ioctl(fd, PPPIOCSNPMODE, (caddr_t) &npi) < 0) {
560         if (errno != ENOTTY) {
561             syslog(LOG_ERR, "ioctl(PPPIOCSNPMODE): %m");
562             rv = 0;
563         } else {
564             /* backwards compatibility */
565             if (ioctl(fd, PPPIOCGFLAGS, (caddr_t) &x) < 0) {
566                 syslog(LOG_ERR, "ioctl (PPPIOCGFLAGS): %m");
567                 rv = 0;
568             } else {
569                 x &= ~SC_ENABLE_IP;
570                 if (ioctl(fd, PPPIOCSFLAGS, (caddr_t) &x) < 0) {
571                     syslog(LOG_ERR, "ioctl(PPPIOCSFLAGS): %m");
572                     rv = 0;
573                 }
574             }
575         }
576     }
577
578     strncpy(ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
579     if (ioctl(s, SIOCGIFFLAGS, (caddr_t) &ifr) < 0) {
580         syslog(LOG_ERR, "ioctl (SIOCGIFFLAGS): %m");
581         rv = 0;
582     } else {
583         ifr.ifr_flags &= ~IFF_UP;
584         if (ioctl(s, SIOCSIFFLAGS, (caddr_t) &ifr) < 0) {
585             syslog(LOG_ERR, "ioctl(SIOCSIFFLAGS): %m");
586             rv = 0;
587         }
588     }
589     return rv;
590 }
591
592 /*
593  * SET_SA_FAMILY - set the sa_family field of a struct sockaddr,
594  * if it exists.
595  */
596 #define SET_SA_FAMILY(addr, family)             \
597     BZERO((char *) &(addr), sizeof(addr));      \
598     addr.sa_family = (family);                  \
599     addr.sa_len = sizeof(addr);
600
601 /*
602  * sifaddr - Config the interface IP addresses and netmask.
603  */
604 int
605 sifaddr(u, o, h, m)
606     int u;
607     u_int32_t o, h, m;
608 {
609     struct ifaliasreq ifra;
610
611     strncpy(ifra.ifra_name, ifname, sizeof(ifra.ifra_name));
612     SET_SA_FAMILY(ifra.ifra_addr, AF_INET);
613     ((struct sockaddr_in *) &ifra.ifra_addr)->sin_addr.s_addr = o;
614     SET_SA_FAMILY(ifra.ifra_broadaddr, AF_INET);
615     ((struct sockaddr_in *) &ifra.ifra_broadaddr)->sin_addr.s_addr = h;
616     if (m != 0) {
617         SET_SA_FAMILY(ifra.ifra_mask, AF_INET);
618         ((struct sockaddr_in *) &ifra.ifra_mask)->sin_addr.s_addr = m;
619     } else
620         BZERO(&ifra.ifra_mask, sizeof(ifra.ifra_mask));
621     if (ioctl(s, SIOCAIFADDR, (caddr_t) &ifra) < 0) {
622         if (errno != EEXIST) {
623             syslog(LOG_ERR, "ioctl(SIOCAIFADDR): %m");
624             return 0;
625         }
626         syslog(LOG_WARNING, "ioctl(SIOCAIFADDR): Address already exists");
627     }
628     return 1;
629 }
630
631 /*
632  * cifaddr - Clear the interface IP addresses, and delete routes
633  * through the interface if possible.
634  */
635 int
636 cifaddr(u, o, h)
637     int u;
638     u_int32_t o, h;
639 {
640     struct ifaliasreq ifra;
641
642     strncpy(ifra.ifra_name, ifname, sizeof(ifra.ifra_name));
643     SET_SA_FAMILY(ifra.ifra_addr, AF_INET);
644     ((struct sockaddr_in *) &ifra.ifra_addr)->sin_addr.s_addr = o;
645     SET_SA_FAMILY(ifra.ifra_broadaddr, AF_INET);
646     ((struct sockaddr_in *) &ifra.ifra_broadaddr)->sin_addr.s_addr = h;
647     BZERO(&ifra.ifra_mask, sizeof(ifra.ifra_mask));
648     if (ioctl(s, SIOCDIFADDR, (caddr_t) &ifra) < 0) {
649         syslog(LOG_WARNING, "ioctl(SIOCDIFADDR): %m");
650         return 0;
651     }
652     return 1;
653 }
654
655 /*
656  * sifdefaultroute - assign a default route through the address given.
657  */
658 int
659 sifdefaultroute(u, g)
660     int u;
661     u_int32_t g;
662 {
663     return dodefaultroute(g, 's');
664 }
665
666 /*
667  * cifdefaultroute - delete a default route through the address given.
668  */
669 int
670 cifdefaultroute(u, g)
671     int u;
672     u_int32_t g;
673 {
674     return dodefaultroute(g, 'c');
675 }
676
677 /*
678  * dodefaultroute - talk to a routing socket to add/delete a default route.
679  */
680 int
681 dodefaultroute(g, cmd)
682     u_int32_t g;
683     int cmd;
684 {
685     int routes;
686     struct {
687         struct rt_msghdr        hdr;
688         struct sockaddr_in      dst;
689         struct sockaddr_in      gway;
690         struct sockaddr_in      mask;
691     } rtmsg;
692
693     if ((routes = socket(PF_ROUTE, SOCK_RAW, AF_INET)) < 0) {
694         syslog(LOG_ERR, "%cifdefaultroute: opening routing socket: %m", cmd);
695         return 0;
696     }
697
698     memset(&rtmsg, 0, sizeof(rtmsg));
699     rtmsg.hdr.rtm_type = cmd == 's'? RTM_ADD: RTM_DELETE;
700     rtmsg.hdr.rtm_flags = RTF_UP | RTF_GATEWAY;
701     rtmsg.hdr.rtm_version = RTM_VERSION;
702     rtmsg.hdr.rtm_seq = ++rtm_seq;
703     rtmsg.hdr.rtm_addrs = RTA_DST | RTA_GATEWAY | RTA_NETMASK;
704     rtmsg.dst.sin_len = sizeof(rtmsg.dst);
705     rtmsg.dst.sin_family = AF_INET;
706     rtmsg.gway.sin_len = sizeof(rtmsg.gway);
707     rtmsg.gway.sin_family = AF_INET;
708     rtmsg.gway.sin_addr.s_addr = g;
709     rtmsg.mask.sin_len = sizeof(rtmsg.dst);
710     rtmsg.mask.sin_family = AF_INET;
711
712     rtmsg.hdr.rtm_msglen = sizeof(rtmsg);
713     if (write(routes, &rtmsg, sizeof(rtmsg)) < 0) {
714         syslog(LOG_ERR, "%s default route: %m", cmd=='s'? "add": "delete");
715         close(routes);
716         return 0;
717     }
718
719     close(routes);
720     return 1;
721 }
722
723 #if RTM_VERSION >= 3
724
725 /*
726  * sifproxyarp - Make a proxy ARP entry for the peer.
727  */
728 static struct {
729     struct rt_msghdr            hdr;
730     struct sockaddr_inarp       dst;
731     struct sockaddr_dl          hwa;
732     char                        extra[128];
733 } arpmsg;
734
735 static int arpmsg_valid;
736
737 int
738 sifproxyarp(unit, hisaddr)
739     int unit;
740     u_int32_t hisaddr;
741 {
742     int routes;
743     int l;
744
745     /*
746      * Get the hardware address of an interface on the same subnet
747      * as our local address.
748      */
749     memset(&arpmsg, 0, sizeof(arpmsg));
750     if (!get_ether_addr(hisaddr, &arpmsg.hwa)) {
751         syslog(LOG_ERR, "Cannot determine ethernet address for proxy ARP");
752         return 0;
753     }
754
755     if ((routes = socket(PF_ROUTE, SOCK_RAW, AF_INET)) < 0) {
756         syslog(LOG_ERR, "sifproxyarp: opening routing socket: %m");
757         return 0;
758     }
759
760     arpmsg.hdr.rtm_type = RTM_ADD;
761     arpmsg.hdr.rtm_flags = RTF_ANNOUNCE | RTF_HOST | RTF_STATIC;
762     arpmsg.hdr.rtm_version = RTM_VERSION;
763     arpmsg.hdr.rtm_seq = ++rtm_seq;
764     arpmsg.hdr.rtm_addrs = RTA_DST | RTA_GATEWAY;
765     arpmsg.hdr.rtm_inits = RTV_EXPIRE;
766     arpmsg.dst.sin_len = sizeof(struct sockaddr_inarp);
767     arpmsg.dst.sin_family = AF_INET;
768     arpmsg.dst.sin_addr.s_addr = hisaddr;
769     arpmsg.dst.sin_other = SIN_PROXY;
770
771     arpmsg.hdr.rtm_msglen = (char *) &arpmsg.hwa - (char *) &arpmsg
772         + arpmsg.hwa.sdl_len;
773     if (write(routes, &arpmsg, arpmsg.hdr.rtm_msglen) < 0) {
774         syslog(LOG_ERR, "add proxy arp entry: %m");
775         close(routes);
776         return 0;
777     }
778
779     close(routes);
780     arpmsg_valid = 1;
781     return 1;
782 }
783
784 /*
785  * cifproxyarp - Delete the proxy ARP entry for the peer.
786  */
787 int
788 cifproxyarp(unit, hisaddr)
789     int unit;
790     u_int32_t hisaddr;
791 {
792     int routes;
793
794     if (!arpmsg_valid)
795         return 0;
796     arpmsg_valid = 0;
797
798     arpmsg.hdr.rtm_type = RTM_DELETE;
799     arpmsg.hdr.rtm_seq = ++rtm_seq;
800
801     if ((routes = socket(PF_ROUTE, SOCK_RAW, AF_INET)) < 0) {
802         syslog(LOG_ERR, "sifproxyarp: opening routing socket: %m");
803         return 0;
804     }
805
806     if (write(routes, &arpmsg, arpmsg.hdr.rtm_msglen) < 0) {
807         syslog(LOG_ERR, "delete proxy arp entry: %m");
808         close(routes);
809         return 0;
810     }
811
812     close(routes);
813     return 1;
814 }
815
816 #else   /* RTM_VERSION */
817
818 /*
819  * sifproxyarp - Make a proxy ARP entry for the peer.
820  */
821 int
822 sifproxyarp(unit, hisaddr)
823     int unit;
824     u_int32_t hisaddr;
825 {
826     struct arpreq arpreq;
827     struct {
828         struct sockaddr_dl      sdl;
829         char                    space[128];
830     } dls;
831
832     BZERO(&arpreq, sizeof(arpreq));
833
834     /*
835      * Get the hardware address of an interface on the same subnet
836      * as our local address.
837      */
838     if (!get_ether_addr(hisaddr, &dls.sdl)) {
839         syslog(LOG_ERR, "Cannot determine ethernet address for proxy ARP");
840         return 0;
841     }
842
843     arpreq.arp_ha.sa_len = sizeof(struct sockaddr);
844     arpreq.arp_ha.sa_family = AF_UNSPEC;
845     BCOPY(LLADDR(&dls.sdl), arpreq.arp_ha.sa_data, dls.sdl.sdl_alen);
846     SET_SA_FAMILY(arpreq.arp_pa, AF_INET);
847     ((struct sockaddr_in *) &arpreq.arp_pa)->sin_addr.s_addr = hisaddr;
848     arpreq.arp_flags = ATF_PERM | ATF_PUBL;
849     if (ioctl(s, SIOCSARP, (caddr_t)&arpreq) < 0) {
850         syslog(LOG_ERR, "ioctl(SIOCSARP): %m");
851         return 0;
852     }
853
854     return 1;
855 }
856
857 /*
858  * cifproxyarp - Delete the proxy ARP entry for the peer.
859  */
860 int
861 cifproxyarp(unit, hisaddr)
862     int unit;
863     u_int32_t hisaddr;
864 {
865     struct arpreq arpreq;
866
867     BZERO(&arpreq, sizeof(arpreq));
868     SET_SA_FAMILY(arpreq.arp_pa, AF_INET);
869     ((struct sockaddr_in *) &arpreq.arp_pa)->sin_addr.s_addr = hisaddr;
870     if (ioctl(s, SIOCDARP, (caddr_t)&arpreq) < 0) {
871         syslog(LOG_WARNING, "ioctl(SIOCDARP): %m");
872         return 0;
873     }
874     return 1;
875 }
876 #endif  /* RTM_VERSION */
877
878
879 /*
880  * get_ether_addr - get the hardware address of an interface on the
881  * the same subnet as ipaddr.
882  */
883 #define MAX_IFS         32
884
885 int
886 get_ether_addr(ipaddr, hwaddr)
887     u_int32_t ipaddr;
888     struct sockaddr_dl *hwaddr;
889 {
890     struct ifreq *ifr, *ifend, *ifp;
891     u_int32_t ina, mask;
892     struct sockaddr_dl *dla;
893     struct ifreq ifreq;
894     struct ifconf ifc;
895     struct ifreq ifs[MAX_IFS];
896
897     ifc.ifc_len = sizeof(ifs);
898     ifc.ifc_req = ifs;
899     if (ioctl(s, SIOCGIFCONF, &ifc) < 0) {
900         syslog(LOG_ERR, "ioctl(SIOCGIFCONF): %m");
901         return 0;
902     }
903
904     /*
905      * Scan through looking for an interface with an Internet
906      * address on the same subnet as `ipaddr'.
907      */
908     ifend = (struct ifreq *) (ifc.ifc_buf + ifc.ifc_len);
909     for (ifr = ifc.ifc_req; ifr < ifend; ifr = (struct ifreq *)
910                 ((char *)&ifr->ifr_addr + ifr->ifr_addr.sa_len) {
911         if (ifr->ifr_addr.sa_family == AF_INET) {
912             ina = ((struct sockaddr_in *) &ifr->ifr_addr)->sin_addr.s_addr;
913             strncpy(ifreq.ifr_name, ifr->ifr_name, sizeof(ifreq.ifr_name));
914             /*
915              * Check that the interface is up, and not point-to-point
916              * or loopback.
917              */
918             if (ioctl(s, SIOCGIFFLAGS, &ifreq) < 0)
919                 continue;
920             if ((ifreq.ifr_flags &
921                  (IFF_UP|IFF_BROADCAST|IFF_POINTOPOINT|IFF_LOOPBACK|IFF_NOARP))
922                  != (IFF_UP|IFF_BROADCAST))
923                 continue;
924             /*
925              * Get its netmask and check that it's on the right subnet.
926              */
927             if (ioctl(s, SIOCGIFNETMASK, &ifreq) < 0)
928                 continue;
929             mask = ((struct sockaddr_in *) &ifr->ifr_addr)->sin_addr.s_addr;
930             if ((ipaddr & mask) != (ina & mask))
931                 continue;
932
933             break;
934         }
935     }
936
937     if (ifr >= ifend)
938         return 0;
939     syslog(LOG_INFO, "found interface %s for proxy arp", ifr->ifr_name);
940
941     /*
942      * Now scan through again looking for a link-level address
943      * for this interface.
944      */
945     ifp = ifr;
946     for (ifr = ifc.ifc_req; ifr < ifend; ) {
947         if (strcmp(ifp->ifr_name, ifr->ifr_name) == 0
948             && ifr->ifr_addr.sa_family == AF_LINK) {
949             /*
950              * Found the link-level address - copy it out
951              */
952             dla = (struct sockaddr_dl *) &ifr->ifr_addr;
953             BCOPY(dla, hwaddr, dla->sdl_len);
954             return 1;
955         }
956         ifr = (struct ifreq *) ((char *)&ifr->ifr_addr + ifr->ifr_addr.sa_len);
957     }
958
959     return 0;
960 }