]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/pppd/sys-bsd.c
This commit was generated by cvs2svn to compensate for changes in r99146,
[FreeBSD/FreeBSD.git] / usr.sbin / 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  * Copyright (c) 1995 The Australian National University.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms are permitted
10  * provided that the above copyright notice and this paragraph are
11  * duplicated in all such forms and that any documentation,
12  * advertising materials, and other materials related to such
13  * distribution and use acknowledge that the software was developed
14  * by Carnegie Mellon University and The Australian National University.
15  * The names of the Universities may not be used to endorse or promote
16  * products derived from this software without specific prior written
17  * permission.
18  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
19  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
20  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
21  */
22
23 #ifndef lint
24 static char rcsid[] = "$FreeBSD$";
25 #endif
26 /*      $NetBSD: sys-bsd.c,v 1.1.1.3 1997/09/26 18:53:04 christos Exp $ */
27
28 /*
29  * TODO:
30  */
31
32 #include <stdio.h>
33 #include <syslog.h>
34 #include <string.h>
35 #include <stdlib.h>
36 #include <unistd.h>
37 #include <errno.h>
38 #include <fcntl.h>
39 #include <termios.h>
40 #include <signal.h>
41 #include <sys/ioctl.h>
42 #include <sys/types.h>
43 #include <sys/socket.h>
44 #include <sys/time.h>
45 #include <sys/stat.h>
46 #include <sys/param.h>
47 #ifdef NetBSD1_2
48 #include <util.h>
49 #endif
50 #ifdef PPP_FILTER
51 #include <net/bpf.h>
52 #endif
53
54 #include <net/if.h>
55 #include <net/ppp_defs.h>
56 #include <net/if_ppp.h>
57 #include <net/route.h>
58 #include <net/if_dl.h>
59 #include <netinet/in.h>
60
61 #ifdef IPX_CHANGE
62 #include <netipx/ipx.h>
63 #endif
64
65 #if RTM_VERSION >= 3
66 #include <sys/param.h>
67 #if defined(NetBSD) && (NetBSD >= 199703)
68 #include <netinet/if_inarp.h>
69 #else   /* NetBSD 1.2D or later */
70 #ifdef __FreeBSD__
71 #include <netinet/if_ether.h>
72 #else
73 #include <net/if_ether.h>
74 #endif
75 #endif
76 #endif
77
78 #include "pppd.h"
79 #include "fsm.h"
80 #include "ipcp.h"
81
82 static int initdisc = -1;       /* Initial TTY discipline for ppp_fd */
83 static int initfdflags = -1;    /* Initial file descriptor flags for ppp_fd */
84 static int ppp_fd = -1;         /* fd which is set to PPP discipline */
85 static int rtm_seq;
86
87 static int restore_term;        /* 1 => we've munged the terminal */
88 static struct termios inittermios; /* Initial TTY termios */
89 static struct winsize wsinfo;   /* Initial window size info */
90
91 static char *lock_file;         /* name of lock file created */
92
93 static int loop_slave = -1;
94 static int loop_master;
95 static char loop_name[20];
96
97 static unsigned char inbuf[512]; /* buffer for chars read from loopback */
98
99 static int sockfd;              /* socket for doing interface ioctls */
100
101 static int if_is_up;            /* the interface is currently up */
102 static u_int32_t ifaddrs[2];    /* local and remote addresses we set */
103 static u_int32_t default_route_gateway; /* gateway addr for default route */
104 static u_int32_t proxy_arp_addr;        /* remote addr for proxy arp */
105
106 /* Prototypes for procedures local to this file. */
107 static int dodefaultroute __P((u_int32_t, int));
108 static int get_ether_addr __P((u_int32_t, struct sockaddr_dl *));
109
110
111 /*
112  * sys_init - System-dependent initialization.
113  */
114 void
115 sys_init()
116 {
117     /* Get an internet socket for doing socket ioctl's on. */
118     if ((sockfd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
119         syslog(LOG_ERR, "Couldn't create IP socket: %m");
120         die(1);
121     }
122 }
123
124 /*
125  * sys_cleanup - restore any system state we modified before exiting:
126  * mark the interface down, delete default route and/or proxy arp entry.
127  * This should call die() because it's called from die().
128  */
129 void
130 sys_cleanup()
131 {
132     struct ifreq ifr;
133
134     if (if_is_up) {
135         strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
136         if (ioctl(sockfd, SIOCGIFFLAGS, &ifr) >= 0
137             && ((ifr.ifr_flags & IFF_UP) != 0)) {
138             ifr.ifr_flags &= ~IFF_UP;
139             ioctl(sockfd, SIOCSIFFLAGS, &ifr);
140         }
141     }
142     if (ifaddrs[0] != 0)
143         cifaddr(0, ifaddrs[0], ifaddrs[1]);
144     if (default_route_gateway)
145         cifdefaultroute(0, 0, default_route_gateway);
146     if (proxy_arp_addr)
147         cifproxyarp(0, proxy_arp_addr);
148 }
149
150 /*
151  * sys_close - Clean up in a child process before execing.
152  */
153 void
154 sys_close()
155 {
156     close(sockfd);
157     if (loop_slave >= 0) {
158         close(loop_slave);
159         close(loop_master);
160     }
161 }
162
163 /*
164  * sys_check_options - check the options that the user specified
165  */
166 void
167 sys_check_options()
168 {
169 }
170
171 /*
172  * ppp_available - check whether the system has any ppp interfaces
173  * (in fact we check whether we can do an ioctl on ppp0).
174  */
175 int
176 ppp_available()
177 {
178     int s, ok;
179     struct ifreq ifr;
180     extern char *no_ppp_msg;
181
182     if ((s = socket(AF_INET, SOCK_DGRAM, 0)) < 0)
183         return 1;               /* can't tell */
184
185     strncpy(ifr.ifr_name, "ppp0", sizeof (ifr.ifr_name));
186     ok = ioctl(s, SIOCGIFFLAGS, (caddr_t) &ifr) >= 0;
187     close(s);
188
189     no_ppp_msg = "\
190 This system lacks kernel support for PPP.  To include PPP support\n\
191 in the kernel, please follow the steps detailed in the README.bsd\n\
192 file in the ppp-2.2 distribution.\n";
193     return ok;
194 }
195
196 /*
197  * establish_ppp - Turn the serial port into a ppp interface.
198  */
199 void
200 establish_ppp(fd)
201     int fd;
202 {
203     int pppdisc = PPPDISC;
204     int x;
205
206     if (demand) {
207         /*
208          * Demand mode - prime the old ppp device to relinquish the unit.
209          */
210         if (ioctl(ppp_fd, PPPIOCXFERUNIT, 0) < 0) {
211             syslog(LOG_ERR, "ioctl(transfer ppp unit): %m");
212             die(1);
213         }
214     }
215
216     /*
217      * Save the old line discipline of fd, and set it to PPP.
218      */
219     if (ioctl(fd, TIOCGETD, &initdisc) < 0) {
220         syslog(LOG_ERR, "ioctl(TIOCGETD): %m");
221         die(1);
222     }
223     if (ioctl(fd, TIOCSETD, &pppdisc) < 0) {
224         syslog(LOG_ERR, "ioctl(TIOCSETD): %m");
225         die(1);
226     }
227
228     if (!demand) {
229         /*
230          * Find out which interface we were given.
231          */
232         if (ioctl(fd, PPPIOCGUNIT, &ifunit) < 0) {      
233             syslog(LOG_ERR, "ioctl(PPPIOCGUNIT): %m");
234             die(1);
235         }
236     } else {
237         /*
238          * Check that we got the same unit again.
239          */
240         if (ioctl(fd, PPPIOCGUNIT, &x) < 0) {   
241             syslog(LOG_ERR, "ioctl(PPPIOCGUNIT): %m");
242             die(1);
243         }
244         if (x != ifunit) {
245             syslog(LOG_ERR, "transfer_ppp failed: wanted unit %d, got %d",
246                    ifunit, x);
247             die(1);
248         }
249         x = TTYDISC;
250         ioctl(loop_slave, TIOCSETD, &x);
251     }
252
253     ppp_fd = fd;
254
255     /*
256      * Enable debug in the driver if requested.
257      */
258     if (kdebugflag) {
259         if (ioctl(fd, PPPIOCGFLAGS, (caddr_t) &x) < 0) {
260             syslog(LOG_WARNING, "ioctl (PPPIOCGFLAGS): %m");
261         } else {
262             x |= (kdebugflag & 0xFF) * SC_DEBUG;
263             if (ioctl(fd, PPPIOCSFLAGS, (caddr_t) &x) < 0)
264                 syslog(LOG_WARNING, "ioctl(PPPIOCSFLAGS): %m");
265         }
266     }
267
268     /*
269      * Set device for non-blocking reads.
270      */
271     if ((initfdflags = fcntl(fd, F_GETFL)) == -1
272         || fcntl(fd, F_SETFL, initfdflags | O_NONBLOCK) == -1) {
273         syslog(LOG_WARNING, "Couldn't set device to non-blocking mode: %m");
274     }
275 }
276
277 /*
278  * restore_loop - reattach the ppp unit to the loopback.
279  */
280 void
281 restore_loop()
282 {
283     int x;
284
285     /*
286      * Transfer the ppp interface back to the loopback.
287      */
288     if (ioctl(ppp_fd, PPPIOCXFERUNIT, 0) < 0) {
289         syslog(LOG_ERR, "ioctl(transfer ppp unit): %m");
290         die(1);
291     }
292     x = PPPDISC;
293     if (ioctl(loop_slave, TIOCSETD, &x) < 0) {
294         syslog(LOG_ERR, "ioctl(TIOCSETD): %m");
295         die(1);
296     }
297
298     /*
299      * Check that we got the same unit again.
300      */
301     if (ioctl(loop_slave, PPPIOCGUNIT, &x) < 0) {       
302         syslog(LOG_ERR, "ioctl(PPPIOCGUNIT): %m");
303         die(1);
304     }
305     if (x != ifunit) {
306         syslog(LOG_ERR, "transfer_ppp failed: wanted unit %d, got %d",
307                ifunit, x);
308         die(1);
309     }
310     ppp_fd = loop_slave;
311 }
312
313
314 /*
315  * disestablish_ppp - Restore the serial port to normal operation.
316  * This shouldn't call die() because it's called from die().
317  */
318 void
319 disestablish_ppp(fd)
320     int fd;
321 {
322     /* Reset non-blocking mode on fd. */
323     if (initfdflags != -1 && fcntl(fd, F_SETFL, initfdflags) < 0)
324         syslog(LOG_WARNING, "Couldn't restore device fd flags: %m");
325     initfdflags = -1;
326
327     /* Restore old line discipline. */
328     if (initdisc >= 0 && ioctl(fd, TIOCSETD, &initdisc) < 0)
329         syslog(LOG_ERR, "ioctl(TIOCSETD): %m");
330     initdisc = -1;
331
332     if (fd == ppp_fd)
333         ppp_fd = -1;
334 }
335
336 /*
337  * Check whether the link seems not to be 8-bit clean.
338  */
339 void
340 clean_check()
341 {
342     int x;
343     char *s;
344
345     if (ioctl(ppp_fd, PPPIOCGFLAGS, (caddr_t) &x) == 0) {
346         s = NULL;
347         switch (~x & (SC_RCV_B7_0|SC_RCV_B7_1|SC_RCV_EVNP|SC_RCV_ODDP)) {
348         case SC_RCV_B7_0:
349             s = "bit 7 set to 1";
350             break;
351         case SC_RCV_B7_1:
352             s = "bit 7 set to 0";
353             break;
354         case SC_RCV_EVNP:
355             s = "odd parity";
356             break;
357         case SC_RCV_ODDP:
358             s = "even parity";
359             break;
360         }
361         if (s != NULL) {
362             syslog(LOG_WARNING, "Serial link is not 8-bit clean:");
363             syslog(LOG_WARNING, "All received characters had %s", s);
364         }
365     }
366 }
367
368 /*
369  * set_up_tty: Set up the serial port on `fd' for 8 bits, no parity,
370  * at the requested speed, etc.  If `local' is true, set CLOCAL
371  * regardless of whether the modem option was specified.
372  *
373  * For *BSD, we assume that speed_t values numerically equal bits/second.
374  */
375 void
376 set_up_tty(fd, local)
377     int fd, local;
378 {
379     struct termios tios;
380
381     if (tcgetattr(fd, &tios) < 0) {
382         syslog(LOG_ERR, "tcgetattr: %m");
383         die(1);
384     }
385
386     if (!restore_term) {
387         inittermios = tios;
388         ioctl(fd, TIOCGWINSZ, &wsinfo);
389     }
390
391     tios.c_cflag &= ~(CSIZE | CSTOPB | PARENB | CLOCAL);
392     if (crtscts > 0 && !local)
393         tios.c_cflag |= CRTSCTS;
394     else if (crtscts < 0)
395         tios.c_cflag &= ~CRTSCTS;
396
397     tios.c_cflag |= CS8 | CREAD | HUPCL;
398     if (local || !modem)
399         tios.c_cflag |= CLOCAL;
400     tios.c_iflag = IGNBRK | IGNPAR;
401     tios.c_oflag = 0;
402     tios.c_lflag = 0;
403     tios.c_cc[VMIN] = 1;
404     tios.c_cc[VTIME] = 0;
405
406     if (crtscts == -2) {
407         tios.c_iflag |= IXON | IXOFF;
408         tios.c_cc[VSTOP] = 0x13;        /* DC3 = XOFF = ^S */
409         tios.c_cc[VSTART] = 0x11;       /* DC1 = XON  = ^Q */
410     }
411
412     if (inspeed) {
413         cfsetospeed(&tios, inspeed);
414         cfsetispeed(&tios, inspeed);
415     } else {
416         inspeed = cfgetospeed(&tios);
417         /*
418          * We can't proceed if the serial port speed is 0,
419          * since that implies that the serial port is disabled.
420          */
421         if (inspeed == 0) {
422             syslog(LOG_ERR, "Baud rate for %s is 0; need explicit baud rate",
423                    devnam);
424             die(1);
425         }
426     }
427     baud_rate = inspeed;
428
429     if (tcsetattr(fd, TCSAFLUSH, &tios) < 0) {
430         syslog(LOG_ERR, "tcsetattr: %m");
431         die(1);
432     }
433
434     restore_term = 1;
435 }
436
437 /*
438  * restore_tty - restore the terminal to the saved settings.
439  */
440 void
441 restore_tty(fd)
442     int fd;
443 {
444     if (restore_term) {
445         if (!default_device) {
446             /*
447              * Turn off echoing, because otherwise we can get into
448              * a loop with the tty and the modem echoing to each other.
449              * We presume we are the sole user of this tty device, so
450              * when we close it, it will revert to its defaults anyway.
451              */
452             inittermios.c_lflag &= ~(ECHO | ECHONL);
453         }
454         if (tcsetattr(fd, TCSAFLUSH, &inittermios) < 0)
455             if (errno != ENXIO)
456                 syslog(LOG_WARNING, "tcsetattr: %m");
457         ioctl(fd, TIOCSWINSZ, &wsinfo);
458         restore_term = 0;
459     }
460 }
461
462 /*
463  * setdtr - control the DTR line on the serial port.
464  * This is called from die(), so it shouldn't call die().
465  */
466 void
467 setdtr(fd, on)
468 int fd, on;
469 {
470     int modembits = TIOCM_DTR;
471
472     ioctl(fd, (on? TIOCMBIS: TIOCMBIC), &modembits);
473 }
474
475
476 /*
477  * open_ppp_loopback - open the device we use for getting
478  * packets in demand mode, and connect it to a ppp interface.
479  * Here we use a pty.
480  */
481 void
482 open_ppp_loopback()
483 {
484     int flags;
485     struct termios tios;
486     int pppdisc = PPPDISC;
487
488     if (openpty(&loop_master, &loop_slave, loop_name, NULL, NULL) < 0) {
489         syslog(LOG_ERR, "No free pty for loopback");
490         die(1);
491     }
492     SYSDEBUG((LOG_DEBUG, "using %s for loopback", loop_name));
493
494     if (tcgetattr(loop_slave, &tios) == 0) {
495         tios.c_cflag &= ~(CSIZE | CSTOPB | PARENB);
496         tios.c_cflag |= CS8 | CREAD;
497         tios.c_iflag = IGNPAR;
498         tios.c_oflag = 0;
499         tios.c_lflag = 0;
500         if (tcsetattr(loop_slave, TCSAFLUSH, &tios) < 0)
501             syslog(LOG_WARNING, "couldn't set attributes on loopback: %m");
502     }
503
504     if ((flags = fcntl(loop_master, F_GETFL)) != -1) 
505         if (fcntl(loop_master, F_SETFL, flags | O_NONBLOCK) == -1)
506             syslog(LOG_WARNING, "couldn't set loopback to nonblock: %m");
507
508     ppp_fd = loop_slave;
509     if (ioctl(ppp_fd, TIOCSETD, &pppdisc) < 0) {
510         syslog(LOG_ERR, "ioctl(TIOCSETD): %m");
511         die(1);
512     }
513
514     /*
515      * Find out which interface we were given.
516      */
517     if (ioctl(ppp_fd, PPPIOCGUNIT, &ifunit) < 0) {      
518         syslog(LOG_ERR, "ioctl(PPPIOCGUNIT): %m");
519         die(1);
520     }
521
522     /*
523      * Enable debug in the driver if requested.
524      */
525     if (kdebugflag) {
526         if (ioctl(ppp_fd, PPPIOCGFLAGS, (caddr_t) &flags) < 0) {
527             syslog(LOG_WARNING, "ioctl (PPPIOCGFLAGS): %m");
528         } else {
529             flags |= (kdebugflag & 0xFF) * SC_DEBUG;
530             if (ioctl(ppp_fd, PPPIOCSFLAGS, (caddr_t) &flags) < 0)
531                 syslog(LOG_WARNING, "ioctl(PPPIOCSFLAGS): %m");
532         }
533     }
534
535 }
536
537
538 /*
539  * output - Output PPP packet.
540  */
541 void
542 output(unit, p, len)
543     int unit;
544     u_char *p;
545     int len;
546 {
547     if (debug)
548         log_packet(p, len, "sent ", LOG_DEBUG);
549
550     if (write(ttyfd, p, len) < 0) {
551         if (errno != EIO)
552             syslog(LOG_ERR, "write: %m");
553     }
554 }
555
556
557 /*
558  * wait_input - wait until there is data available on ttyfd,
559  * for the length of time specified by *timo (indefinite
560  * if timo is NULL).
561  */
562 void
563 wait_input(timo)
564     struct timeval *timo;
565 {
566     fd_set ready;
567     int n;
568
569     FD_ZERO(&ready);
570     FD_SET(ttyfd, &ready);
571     n = select(ttyfd+1, &ready, NULL, &ready, timo);
572     if (n < 0 && errno != EINTR) {
573         syslog(LOG_ERR, "select: %m");
574         die(1);
575     }
576 }
577
578
579 /*
580  * wait_loop_output - wait until there is data available on the
581  * loopback, for the length of time specified by *timo (indefinite
582  * if timo is NULL).
583  */
584 void
585 wait_loop_output(timo)
586     struct timeval *timo;
587 {
588     fd_set ready;
589     int n;
590
591     FD_ZERO(&ready);
592     FD_SET(loop_master, &ready);
593     n = select(loop_master + 1, &ready, NULL, &ready, timo);
594     if (n < 0 && errno != EINTR) {
595         syslog(LOG_ERR, "select: %m");
596         die(1);
597     }
598 }
599
600
601 /*
602  * wait_time - wait for a given length of time or until a
603  * signal is received.
604  */
605 void
606 wait_time(timo)
607     struct timeval *timo;
608 {
609     int n;
610
611     n = select(0, NULL, NULL, NULL, timo);
612     if (n < 0 && errno != EINTR) {
613         syslog(LOG_ERR, "select: %m");
614         die(1);
615     }
616 }
617
618
619 /*
620  * read_packet - get a PPP packet from the serial device.
621  */
622 int
623 read_packet(buf)
624     u_char *buf;
625 {
626     int len;
627
628     if ((len = read(ttyfd, buf, PPP_MTU + PPP_HDRLEN)) < 0) {
629         if (errno == EWOULDBLOCK || errno == EINTR)
630             return -1;
631         syslog(LOG_ERR, "read: %m");
632         die(1);
633     }
634     return len;
635 }
636
637
638 /*
639  * get_loop_output - read characters from the loopback, form them
640  * into frames, and detect when we want to bring the real link up.
641  * Return value is 1 if we need to bring up the link, 0 otherwise.
642  */
643 int
644 get_loop_output()
645 {
646     int rv = 0;
647     int n;
648
649     while ((n = read(loop_master, inbuf, sizeof(inbuf))) >= 0) {
650         if (loop_chars(inbuf, n))
651             rv = 1;
652     }
653
654     if (n == 0) {
655         syslog(LOG_ERR, "eof on loopback");
656         die(1);
657     } else if (errno != EWOULDBLOCK){
658         syslog(LOG_ERR, "read from loopback: %m");
659         die(1);
660     }
661
662     return rv;
663 }
664
665
666 /*
667  * ppp_send_config - configure the transmit characteristics of
668  * the ppp interface.
669  */
670 void
671 ppp_send_config(unit, mtu, asyncmap, pcomp, accomp)
672     int unit, mtu;
673     u_int32_t asyncmap;
674     int pcomp, accomp;
675 {
676     u_int x;
677     struct ifreq ifr;
678
679     strncpy(ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
680     ifr.ifr_mtu = mtu;
681     if (ioctl(sockfd, SIOCSIFMTU, (caddr_t) &ifr) < 0) {
682         syslog(LOG_ERR, "ioctl(SIOCSIFMTU): %m");
683         quit();
684     }
685
686     if (ioctl(ppp_fd, PPPIOCSASYNCMAP, (caddr_t) &asyncmap) < 0) {
687         syslog(LOG_ERR, "ioctl(PPPIOCSASYNCMAP): %m");
688         quit();
689     }
690
691     if (ioctl(ppp_fd, PPPIOCGFLAGS, (caddr_t) &x) < 0) {
692         syslog(LOG_ERR, "ioctl (PPPIOCGFLAGS): %m");
693         quit();
694     }
695     x = pcomp? x | SC_COMP_PROT: x &~ SC_COMP_PROT;
696     x = accomp? x | SC_COMP_AC: x &~ SC_COMP_AC;
697     if (ioctl(ppp_fd, PPPIOCSFLAGS, (caddr_t) &x) < 0) {
698         syslog(LOG_ERR, "ioctl(PPPIOCSFLAGS): %m");
699         quit();
700     }
701 }
702
703
704 /*
705  * ppp_set_xaccm - set the extended transmit ACCM for the interface.
706  */
707 void
708 ppp_set_xaccm(unit, accm)
709     int unit;
710     ext_accm accm;
711 {
712     if (ioctl(ppp_fd, PPPIOCSXASYNCMAP, accm) < 0 && errno != ENOTTY)
713         syslog(LOG_WARNING, "ioctl(set extended ACCM): %m");
714 }
715
716
717 /*
718  * ppp_recv_config - configure the receive-side characteristics of
719  * the ppp interface.
720  */
721 void
722 ppp_recv_config(unit, mru, asyncmap, pcomp, accomp)
723     int unit, mru;
724     u_int32_t asyncmap;
725     int pcomp, accomp;
726 {
727     int x;
728
729     if (ioctl(ppp_fd, PPPIOCSMRU, (caddr_t) &mru) < 0) {
730         syslog(LOG_ERR, "ioctl(PPPIOCSMRU): %m");
731         quit();
732     }
733     if (ioctl(ppp_fd, PPPIOCSRASYNCMAP, (caddr_t) &asyncmap) < 0) {
734         syslog(LOG_ERR, "ioctl(PPPIOCSRASYNCMAP): %m");
735         quit();
736     }
737     if (ioctl(ppp_fd, PPPIOCGFLAGS, (caddr_t) &x) < 0) {
738         syslog(LOG_ERR, "ioctl (PPPIOCGFLAGS): %m");
739         quit();
740     }
741     x = !accomp? x | SC_REJ_COMP_AC: x &~ SC_REJ_COMP_AC;
742     if (ioctl(ppp_fd, PPPIOCSFLAGS, (caddr_t) &x) < 0) {
743         syslog(LOG_ERR, "ioctl(PPPIOCSFLAGS): %m");
744         quit();
745     }
746 }
747
748 /*
749  * ccp_test - ask kernel whether a given compression method
750  * is acceptable for use.  Returns 1 if the method and parameters
751  * are OK, 0 if the method is known but the parameters are not OK
752  * (e.g. code size should be reduced), or -1 if the method is unknown.
753  */
754 int
755 ccp_test(unit, opt_ptr, opt_len, for_transmit)
756     int unit, opt_len, for_transmit;
757     u_char *opt_ptr;
758 {
759     struct ppp_option_data data;
760
761     data.ptr = opt_ptr;
762     data.length = opt_len;
763     data.transmit = for_transmit;
764     if (ioctl(ttyfd, PPPIOCSCOMPRESS, (caddr_t) &data) >= 0)
765         return 1;
766     return (errno == ENOBUFS)? 0: -1;
767 }
768
769 /*
770  * ccp_flags_set - inform kernel about the current state of CCP.
771  */
772 void
773 ccp_flags_set(unit, isopen, isup)
774     int unit, isopen, isup;
775 {
776     int x;
777
778     if (ioctl(ppp_fd, PPPIOCGFLAGS, (caddr_t) &x) < 0) {
779         syslog(LOG_ERR, "ioctl (PPPIOCGFLAGS): %m");
780         return;
781     }
782     x = isopen? x | SC_CCP_OPEN: x &~ SC_CCP_OPEN;
783     x = isup? x | SC_CCP_UP: x &~ SC_CCP_UP;
784     if (ioctl(ppp_fd, PPPIOCSFLAGS, (caddr_t) &x) < 0)
785         syslog(LOG_ERR, "ioctl(PPPIOCSFLAGS): %m");
786 }
787
788 /*
789  * ccp_fatal_error - returns 1 if decompression was disabled as a
790  * result of an error detected after decompression of a packet,
791  * 0 otherwise.  This is necessary because of patent nonsense.
792  */
793 int
794 ccp_fatal_error(unit)
795     int unit;
796 {
797     int x;
798
799     if (ioctl(ppp_fd, PPPIOCGFLAGS, (caddr_t) &x) < 0) {
800         syslog(LOG_ERR, "ioctl(PPPIOCGFLAGS): %m");
801         return 0;
802     }
803     return x & SC_DC_FERROR;
804 }
805
806 /*
807  * get_idle_time - return how long the link has been idle.
808  */
809 int
810 get_idle_time(u, ip)
811     int u;
812     struct ppp_idle *ip;
813 {
814     return ioctl(ppp_fd, PPPIOCGIDLE, ip) >= 0;
815 }
816
817
818 #ifdef PPP_FILTER
819 /*
820  * set_filters - transfer the pass and active filters to the kernel.
821  */
822 int
823 set_filters(pass, active)
824     struct bpf_program *pass, *active;
825 {
826     int ret = 1;
827
828     if (pass->bf_len > 0) {
829         if (ioctl(ppp_fd, PPPIOCSPASS, pass) < 0) {
830             syslog(LOG_ERR, "Couldn't set pass-filter in kernel: %m");
831             ret = 0;
832         }
833     }
834     if (active->bf_len > 0) {
835         if (ioctl(ppp_fd, PPPIOCSACTIVE, active) < 0) {
836             syslog(LOG_ERR, "Couldn't set active-filter in kernel: %m");
837             ret = 0;
838         }
839     }
840     return ret;
841 }
842 #endif
843
844 /*
845  * sifvjcomp - config tcp header compression
846  */
847 int
848 sifvjcomp(u, vjcomp, cidcomp, maxcid)
849     int u, vjcomp, cidcomp, maxcid;
850 {
851     u_int x;
852
853     if (ioctl(ppp_fd, PPPIOCGFLAGS, (caddr_t) &x) < 0) {
854         syslog(LOG_ERR, "ioctl (PPPIOCGFLAGS): %m");
855         return 0;
856     }
857     x = vjcomp ? x | SC_COMP_TCP: x &~ SC_COMP_TCP;
858     x = cidcomp? x & ~SC_NO_TCP_CCID: x | SC_NO_TCP_CCID;
859     if (ioctl(ppp_fd, PPPIOCSFLAGS, (caddr_t) &x) < 0) {
860         syslog(LOG_ERR, "ioctl(PPPIOCSFLAGS): %m");
861         return 0;
862     }
863     if (vjcomp && ioctl(ppp_fd, PPPIOCSMAXCID, (caddr_t) &maxcid) < 0) {
864         syslog(LOG_ERR, "ioctl(PPPIOCSFLAGS): %m");
865         return 0;
866     }
867     return 1;
868 }
869
870 /*
871  * sifup - Config the interface up and enable IP packets to pass.
872  */
873 int
874 sifup(u)
875     int u;
876 {
877     struct ifreq ifr;
878
879     strncpy(ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
880     if (ioctl(sockfd, SIOCGIFFLAGS, (caddr_t) &ifr) < 0) {
881         syslog(LOG_ERR, "ioctl (SIOCGIFFLAGS): %m");
882         return 0;
883     }
884     ifr.ifr_flags |= IFF_UP;
885     if (ioctl(sockfd, SIOCSIFFLAGS, (caddr_t) &ifr) < 0) {
886         syslog(LOG_ERR, "ioctl(SIOCSIFFLAGS): %m");
887         return 0;
888     }
889     if_is_up = 1;
890     return 1;
891 }
892
893 /*
894  * sifnpmode - Set the mode for handling packets for a given NP.
895  */
896 int
897 sifnpmode(u, proto, mode)
898     int u;
899     int proto;
900     enum NPmode mode;
901 {
902     struct npioctl npi;
903
904     npi.protocol = proto;
905     npi.mode = mode;
906     if (ioctl(ppp_fd, PPPIOCSNPMODE, &npi) < 0) {
907         syslog(LOG_ERR, "ioctl(set NP %d mode to %d): %m", proto, mode);
908         return 0;
909     }
910     return 1;
911 }
912
913 /*
914  * sifdown - Config the interface down and disable IP.
915  */
916 int
917 sifdown(u)
918     int u;
919 {
920     struct ifreq ifr;
921     int rv;
922     struct npioctl npi;
923
924     rv = 1;
925     npi.protocol = PPP_IP;
926     npi.mode = NPMODE_ERROR;
927     ioctl(ppp_fd, PPPIOCSNPMODE, (caddr_t) &npi);
928     /* ignore errors, because ppp_fd might have been closed by now. */
929
930     strncpy(ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
931     if (ioctl(sockfd, SIOCGIFFLAGS, (caddr_t) &ifr) < 0) {
932         syslog(LOG_ERR, "ioctl (SIOCGIFFLAGS): %m");
933         rv = 0;
934     } else {
935         ifr.ifr_flags &= ~IFF_UP;
936         if (ioctl(sockfd, SIOCSIFFLAGS, (caddr_t) &ifr) < 0) {
937             syslog(LOG_ERR, "ioctl(SIOCSIFFLAGS): %m");
938             rv = 0;
939         } else
940             if_is_up = 0;
941     }
942     return rv;
943 }
944
945 /*
946  * SET_SA_FAMILY - set the sa_family field of a struct sockaddr,
947  * if it exists.
948  */
949 #define SET_SA_FAMILY(addr, family)             \
950     BZERO((char *) &(addr), sizeof(addr));      \
951     addr.sa_family = (family);                  \
952     addr.sa_len = sizeof(addr);
953
954 /*
955  * sifaddr - Config the interface IP addresses and netmask.
956  */
957 int
958 sifaddr(u, o, h, m)
959     int u;
960     u_int32_t o, h, m;
961 {
962     struct ifaliasreq ifra;
963     struct ifreq ifr;
964
965     strncpy(ifra.ifra_name, ifname, sizeof(ifra.ifra_name));
966     SET_SA_FAMILY(ifra.ifra_addr, AF_INET);
967     ((struct sockaddr_in *) &ifra.ifra_addr)->sin_addr.s_addr = o;
968     SET_SA_FAMILY(ifra.ifra_broadaddr, AF_INET);
969     ((struct sockaddr_in *) &ifra.ifra_broadaddr)->sin_addr.s_addr = h;
970     if (m != 0) {
971         SET_SA_FAMILY(ifra.ifra_mask, AF_INET);
972         ((struct sockaddr_in *) &ifra.ifra_mask)->sin_addr.s_addr = m;
973     } else
974         BZERO(&ifra.ifra_mask, sizeof(ifra.ifra_mask));
975     BZERO(&ifr, sizeof(ifr));
976     strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
977     if (ioctl(sockfd, SIOCDIFADDR, (caddr_t) &ifr) < 0) {
978         if (errno != EADDRNOTAVAIL)
979             syslog(LOG_WARNING, "Couldn't remove interface address: %m");
980     }
981     if (ioctl(sockfd, SIOCAIFADDR, (caddr_t) &ifra) < 0) {
982         if (errno != EEXIST) {
983             syslog(LOG_ERR, "Couldn't set interface address: %m");
984             return 0;
985         }
986         syslog(LOG_WARNING,
987                "Couldn't set interface address: Address %s already exists",
988                 ip_ntoa(o));
989     }
990     ifaddrs[0] = o;
991     ifaddrs[1] = h;
992     return 1;
993 }
994
995 /*
996  * cifaddr - Clear the interface IP addresses, and delete routes
997  * through the interface if possible.
998  */
999 int
1000 cifaddr(u, o, h)
1001     int u;
1002     u_int32_t o, h;
1003 {
1004     struct ifaliasreq ifra;
1005
1006     ifaddrs[0] = 0;
1007     strncpy(ifra.ifra_name, ifname, sizeof(ifra.ifra_name));
1008     SET_SA_FAMILY(ifra.ifra_addr, AF_INET);
1009     ((struct sockaddr_in *) &ifra.ifra_addr)->sin_addr.s_addr = o;
1010     SET_SA_FAMILY(ifra.ifra_broadaddr, AF_INET);
1011     ((struct sockaddr_in *) &ifra.ifra_broadaddr)->sin_addr.s_addr = h;
1012     BZERO(&ifra.ifra_mask, sizeof(ifra.ifra_mask));
1013     if (ioctl(sockfd, SIOCDIFADDR, (caddr_t) &ifra) < 0) {
1014         if (errno != EADDRNOTAVAIL)
1015             syslog(LOG_WARNING, "Couldn't delete interface address: %m");
1016         return 0;
1017     }
1018     return 1;
1019 }
1020
1021 /*
1022  * sifdefaultroute - assign a default route through the address given.
1023  */
1024 int
1025 sifdefaultroute(u, l, g)
1026     int u;
1027     u_int32_t l, g;
1028 {
1029     return dodefaultroute(g, 's');
1030 }
1031
1032 /*
1033  * cifdefaultroute - delete a default route through the address given.
1034  */
1035 int
1036 cifdefaultroute(u, l, g)
1037     int u;
1038     u_int32_t l, g;
1039 {
1040     return dodefaultroute(g, 'c');
1041 }
1042
1043 /*
1044  * dodefaultroute - talk to a routing socket to add/delete a default route.
1045  */
1046 static int
1047 dodefaultroute(g, cmd)
1048     u_int32_t g;
1049     int cmd;
1050 {
1051     int routes;
1052     struct {
1053         struct rt_msghdr        hdr;
1054         struct sockaddr_in      dst;
1055         struct sockaddr_in      gway;
1056         struct sockaddr_in      mask;
1057     } rtmsg;
1058
1059     if ((routes = socket(PF_ROUTE, SOCK_RAW, AF_INET)) < 0) {
1060         syslog(LOG_ERR, "Couldn't %s default route: socket: %m",
1061                cmd=='s'? "add": "delete");
1062         return 0;
1063     }
1064
1065     memset(&rtmsg, 0, sizeof(rtmsg));
1066     rtmsg.hdr.rtm_type = cmd == 's'? RTM_ADD: RTM_DELETE;
1067     rtmsg.hdr.rtm_flags = RTF_UP | RTF_GATEWAY | RTF_STATIC;
1068     rtmsg.hdr.rtm_version = RTM_VERSION;
1069     rtmsg.hdr.rtm_seq = ++rtm_seq;
1070     rtmsg.hdr.rtm_addrs = RTA_DST | RTA_GATEWAY | RTA_NETMASK;
1071     rtmsg.dst.sin_len = sizeof(rtmsg.dst);
1072     rtmsg.dst.sin_family = AF_INET;
1073     rtmsg.gway.sin_len = sizeof(rtmsg.gway);
1074     rtmsg.gway.sin_family = AF_INET;
1075     rtmsg.gway.sin_addr.s_addr = g;
1076     rtmsg.mask.sin_len = sizeof(rtmsg.dst);
1077     rtmsg.mask.sin_family = AF_INET;
1078
1079     rtmsg.hdr.rtm_msglen = sizeof(rtmsg);
1080     if (write(routes, &rtmsg, sizeof(rtmsg)) < 0) {
1081         syslog(LOG_ERR, "Couldn't %s default route: %m",
1082                cmd=='s'? "add": "delete");
1083         close(routes);
1084         return 0;
1085     }
1086
1087     close(routes);
1088     default_route_gateway = (cmd == 's')? g: 0;
1089     return 1;
1090 }
1091
1092 #if RTM_VERSION >= 3
1093
1094 /*
1095  * sifproxyarp - Make a proxy ARP entry for the peer.
1096  */
1097 static struct {
1098     struct rt_msghdr            hdr;
1099     struct sockaddr_inarp       dst;
1100     struct sockaddr_dl          hwa;
1101     char                        extra[128];
1102 } arpmsg;
1103
1104 static int arpmsg_valid;
1105
1106 int
1107 sifproxyarp(unit, hisaddr)
1108     int unit;
1109     u_int32_t hisaddr;
1110 {
1111     int routes;
1112
1113     /*
1114      * Get the hardware address of an interface on the same subnet
1115      * as our local address.
1116      */
1117     memset(&arpmsg, 0, sizeof(arpmsg));
1118     if (!get_ether_addr(hisaddr, &arpmsg.hwa)) {
1119         syslog(LOG_ERR, "Cannot determine ethernet address for proxy ARP");
1120         return 0;
1121     }
1122
1123     if ((routes = socket(PF_ROUTE, SOCK_RAW, AF_INET)) < 0) {
1124         syslog(LOG_ERR, "Couldn't add proxy arp entry: socket: %m");
1125         return 0;
1126     }
1127
1128     arpmsg.hdr.rtm_type = RTM_ADD;
1129     arpmsg.hdr.rtm_flags = RTF_ANNOUNCE | RTF_HOST | RTF_STATIC;
1130     arpmsg.hdr.rtm_version = RTM_VERSION;
1131     arpmsg.hdr.rtm_seq = ++rtm_seq;
1132     arpmsg.hdr.rtm_addrs = RTA_DST | RTA_GATEWAY;
1133     arpmsg.hdr.rtm_inits = RTV_EXPIRE;
1134     arpmsg.dst.sin_len = sizeof(struct sockaddr_inarp);
1135     arpmsg.dst.sin_family = AF_INET;
1136     arpmsg.dst.sin_addr.s_addr = hisaddr;
1137     arpmsg.dst.sin_other = SIN_PROXY;
1138
1139     arpmsg.hdr.rtm_msglen = (char *) &arpmsg.hwa - (char *) &arpmsg
1140         + arpmsg.hwa.sdl_len;
1141     if (write(routes, &arpmsg, arpmsg.hdr.rtm_msglen) < 0) {
1142         syslog(LOG_ERR, "Couldn't add proxy arp entry: %m");
1143         close(routes);
1144         return 0;
1145     }
1146
1147     close(routes);
1148     arpmsg_valid = 1;
1149     proxy_arp_addr = hisaddr;
1150     return 1;
1151 }
1152
1153 /*
1154  * cifproxyarp - Delete the proxy ARP entry for the peer.
1155  */
1156 int
1157 cifproxyarp(unit, hisaddr)
1158     int unit;
1159     u_int32_t hisaddr;
1160 {
1161     int routes;
1162
1163     if (!arpmsg_valid)
1164         return 0;
1165     arpmsg_valid = 0;
1166
1167     arpmsg.hdr.rtm_type = RTM_DELETE;
1168     arpmsg.hdr.rtm_seq = ++rtm_seq;
1169
1170     if ((routes = socket(PF_ROUTE, SOCK_RAW, AF_INET)) < 0) {
1171         syslog(LOG_ERR, "Couldn't delete proxy arp entry: socket: %m");
1172         return 0;
1173     }
1174
1175     if (write(routes, &arpmsg, arpmsg.hdr.rtm_msglen) < 0) {
1176         syslog(LOG_ERR, "Couldn't delete proxy arp entry: %m");
1177         close(routes);
1178         return 0;
1179     }
1180
1181     close(routes);
1182     proxy_arp_addr = 0;
1183     return 1;
1184 }
1185
1186 #else   /* RTM_VERSION */
1187
1188 /*
1189  * sifproxyarp - Make a proxy ARP entry for the peer.
1190  */
1191 int
1192 sifproxyarp(unit, hisaddr)
1193     int unit;
1194     u_int32_t hisaddr;
1195 {
1196     struct arpreq arpreq;
1197     struct {
1198         struct sockaddr_dl      sdl;
1199         char                    space[128];
1200     } dls;
1201
1202     BZERO(&arpreq, sizeof(arpreq));
1203
1204     /*
1205      * Get the hardware address of an interface on the same subnet
1206      * as our local address.
1207      */
1208     if (!get_ether_addr(hisaddr, &dls.sdl)) {
1209         syslog(LOG_ERR, "Cannot determine ethernet address for proxy ARP");
1210         return 0;
1211     }
1212
1213     arpreq.arp_ha.sa_len = sizeof(struct sockaddr);
1214     arpreq.arp_ha.sa_family = AF_UNSPEC;
1215     BCOPY(LLADDR(&dls.sdl), arpreq.arp_ha.sa_data, dls.sdl.sdl_alen);
1216     SET_SA_FAMILY(arpreq.arp_pa, AF_INET);
1217     ((struct sockaddr_in *) &arpreq.arp_pa)->sin_addr.s_addr = hisaddr;
1218     arpreq.arp_flags = ATF_PERM | ATF_PUBL;
1219     if (ioctl(sockfd, SIOCSARP, (caddr_t)&arpreq) < 0) {
1220         syslog(LOG_ERR, "Couldn't add proxy arp entry: %m");
1221         return 0;
1222     }
1223
1224     proxy_arp_addr = hisaddr;
1225     return 1;
1226 }
1227
1228 /*
1229  * cifproxyarp - Delete the proxy ARP entry for the peer.
1230  */
1231 int
1232 cifproxyarp(unit, hisaddr)
1233     int unit;
1234     u_int32_t hisaddr;
1235 {
1236     struct arpreq arpreq;
1237
1238     BZERO(&arpreq, sizeof(arpreq));
1239     SET_SA_FAMILY(arpreq.arp_pa, AF_INET);
1240     ((struct sockaddr_in *) &arpreq.arp_pa)->sin_addr.s_addr = hisaddr;
1241     if (ioctl(sockfd, SIOCDARP, (caddr_t)&arpreq) < 0) {
1242         syslog(LOG_WARNING, "Couldn't delete proxy arp entry: %m");
1243         return 0;
1244     }
1245     proxy_arp_addr = 0;
1246     return 1;
1247 }
1248 #endif  /* RTM_VERSION */
1249
1250 #ifdef IPX_CHANGE
1251 /********************************************************************
1252  *
1253  * sipxfaddr - Config the interface IPX networknumber
1254  */
1255
1256 int
1257 sipxfaddr (int unit, unsigned long int network, unsigned char * node )
1258   {
1259     int    result = 1;
1260
1261     int    skfd; 
1262     struct sockaddr_ipx  ipx_addr;
1263     struct ifreq         ifr;
1264     struct sockaddr_ipx *sipx = (struct sockaddr_ipx *) &ifr.ifr_addr;
1265     union ipx_net_u net;
1266
1267     skfd = socket (AF_IPX, SOCK_DGRAM, 0);
1268     if (skfd < 0)
1269       { 
1270         syslog (LOG_DEBUG, "socket(AF_IPX): %m(%d)", errno);
1271         result = 0;
1272       }
1273     else
1274       {
1275         memset (&ifr, '\0', sizeof (ifr));
1276         strcpy (ifr.ifr_name, ifname);
1277
1278         memcpy (sipx->sipx_addr.x_host.c_host, node, 6);
1279         sipx->sipx_len     = sizeof(sipx);
1280         sipx->sipx_family  = AF_IPX;
1281         sipx->sipx_port    = 0;
1282         memset(&net, 0, sizeof(net));
1283         net.long_e = htonl (network);
1284         sipx->sipx_addr.x_net = net.net_e;
1285 /*
1286  *  Set the IPX device
1287  */
1288         if (ioctl(skfd, SIOCSIFADDR, (caddr_t) &ifr) < 0)
1289           {
1290             result = 0;
1291             if (errno != EEXIST)
1292               {
1293                 syslog (LOG_DEBUG,
1294                             "ioctl(SIOCAIFADDR, CRTITF): %m(%d)", errno);
1295               }
1296             else
1297               {
1298                 syslog (LOG_WARNING,
1299                         "ioctl(SIOCAIFADDR, CRTITF): Address already exists");
1300               }
1301           }
1302         close (skfd);
1303       }
1304     return result;
1305   }
1306
1307 /********************************************************************
1308  *
1309  * cipxfaddr - Clear the information for the IPX network. The IPX routes
1310  *             are removed and the device is no longer able to pass IPX
1311  *             frames.
1312  */
1313
1314 int cipxfaddr (int unit)
1315   {
1316     int    result = 1;
1317
1318     int    skfd; 
1319     struct sockaddr_ipx  ipx_addr;
1320     struct ifreq         ifr;
1321     struct sockaddr_ipx *sipx = (struct sockaddr_ipx *) &ifr.ifr_addr;
1322
1323     skfd = socket (AF_IPX, SOCK_DGRAM, 0);
1324     if (skfd < 0)
1325       { 
1326         syslog (LOG_DEBUG, "socket(AF_IPX): %m(%d)", errno);
1327         result = 0;
1328       }
1329     else
1330       {
1331         memset (&ifr, '\0', sizeof (ifr));
1332         strcpy (ifr.ifr_name, ifname);
1333
1334         sipx->sipx_len     = sizeof(sipx);
1335         sipx->sipx_family  = AF_IPX;
1336 /*
1337  *  Set the IPX device
1338  */
1339         if (ioctl(skfd, SIOCSIFADDR, (caddr_t) &ifr) < 0)
1340           {
1341             syslog (LOG_INFO,
1342                         "ioctl(SIOCAIFADDR, IPX_DLTITF): %m(%d)", errno);
1343             result = 0;
1344           }
1345         close (skfd);
1346       }
1347     return result;
1348   }
1349 #endif
1350
1351 /*
1352  * get_ether_addr - get the hardware address of an interface on the
1353  * the same subnet as ipaddr.
1354  */
1355 #define MAX_IFS         32
1356
1357 static int
1358 get_ether_addr(ipaddr, hwaddr)
1359     u_int32_t ipaddr;
1360     struct sockaddr_dl *hwaddr;
1361 {
1362     struct ifreq *ifr, *ifend, *ifp;
1363     u_int32_t ina, mask;
1364     struct sockaddr_dl *dla;
1365     struct ifreq ifreq;
1366     struct ifconf ifc;
1367     struct ifreq ifs[MAX_IFS];
1368
1369     ifc.ifc_len = sizeof(ifs);
1370     ifc.ifc_req = ifs;
1371     if (ioctl(sockfd, SIOCGIFCONF, &ifc) < 0) {
1372         syslog(LOG_ERR, "ioctl(SIOCGIFCONF): %m");
1373         return 0;
1374     }
1375
1376     /*
1377      * Scan through looking for an interface with an Internet
1378      * address on the same subnet as `ipaddr'.
1379      */
1380     ifend = (struct ifreq *) (ifc.ifc_buf + ifc.ifc_len);
1381     for (ifr = ifc.ifc_req; ifr < ifend;
1382                 ifr = (struct ifreq *) ((char *)&ifr->ifr_addr
1383                     + MAX(ifr->ifr_addr.sa_len, sizeof(ifr->ifr_addr)))) {
1384         if (ifr->ifr_addr.sa_family == AF_INET) {
1385             ina = ((struct sockaddr_in *) &ifr->ifr_addr)->sin_addr.s_addr;
1386             strncpy(ifreq.ifr_name, ifr->ifr_name, sizeof(ifreq.ifr_name));
1387             /*
1388              * Check that the interface is up, and not point-to-point
1389              * or loopback.
1390              */
1391             if (ioctl(sockfd, SIOCGIFFLAGS, &ifreq) < 0)
1392                 continue;
1393             if ((ifreq.ifr_flags &
1394                  (IFF_UP|IFF_BROADCAST|IFF_POINTOPOINT|IFF_LOOPBACK|IFF_NOARP))
1395                  != (IFF_UP|IFF_BROADCAST))
1396                 continue;
1397             /*
1398              * Get its netmask and check that it's on the right subnet.
1399              */
1400             if (ioctl(sockfd, SIOCGIFNETMASK, &ifreq) < 0)
1401                 continue;
1402             mask = ((struct sockaddr_in *) &ifreq.ifr_addr)->sin_addr.s_addr;
1403             if ((ipaddr & mask) != (ina & mask))
1404                 continue;
1405
1406             break;
1407         }
1408     }
1409
1410     if (ifr >= ifend)
1411         return 0;
1412     syslog(LOG_INFO, "found interface %s for proxy arp", ifr->ifr_name);
1413
1414     /*
1415      * Now scan through again looking for a link-level address
1416      * for this interface.
1417      */
1418     ifp = ifr;
1419     for (ifr = ifc.ifc_req; ifr < ifend; ) {
1420         if (strcmp(ifp->ifr_name, ifr->ifr_name) == 0
1421             && ifr->ifr_addr.sa_family == AF_LINK) {
1422             /*
1423              * Found the link-level address - copy it out
1424              */
1425             dla = (struct sockaddr_dl *) &ifr->ifr_addr;
1426             BCOPY(dla, hwaddr, dla->sdl_len);
1427             return 1;
1428         }
1429         ifr = (struct ifreq *) ((char *)&ifr->ifr_addr
1430             + MAX(ifr->ifr_addr.sa_len, sizeof(ifr->ifr_addr)));
1431     }
1432
1433     return 0;
1434 }
1435
1436 /*
1437  * Return user specified netmask, modified by any mask we might determine
1438  * for address `addr' (in network byte order).
1439  * Here we scan through the system's list of interfaces, looking for
1440  * any non-point-to-point interfaces which might appear to be on the same
1441  * network as `addr'.  If we find any, we OR in their netmask to the
1442  * user-specified netmask.
1443  */
1444 u_int32_t
1445 GetMask(addr)
1446     u_int32_t addr;
1447 {
1448     u_int32_t mask, nmask, ina;
1449     struct ifreq *ifr, *ifend, ifreq;
1450     struct ifconf ifc;
1451     struct ifreq ifs[MAX_IFS];
1452
1453     addr = ntohl(addr);
1454     if (IN_CLASSA(addr))        /* determine network mask for address class */
1455         nmask = IN_CLASSA_NET;
1456     else if (IN_CLASSB(addr))
1457         nmask = IN_CLASSB_NET;
1458     else
1459         nmask = IN_CLASSC_NET;
1460     /* class D nets are disallowed by bad_ip_adrs */
1461     mask = netmask | htonl(nmask);
1462
1463     /*
1464      * Scan through the system's network interfaces.
1465      */
1466     ifc.ifc_len = sizeof(ifs);
1467     ifc.ifc_req = ifs;
1468     if (ioctl(sockfd, SIOCGIFCONF, &ifc) < 0) {
1469         syslog(LOG_WARNING, "ioctl(SIOCGIFCONF): %m");
1470         return mask;
1471     }
1472     ifend = (struct ifreq *) (ifc.ifc_buf + ifc.ifc_len);
1473     for (ifr = ifc.ifc_req; ifr < ifend;
1474                 ifr = (struct ifreq *) ((char *)&ifr->ifr_addr
1475                     + MAX(ifr->ifr_addr.sa_len, sizeof(ifr->ifr_addr)))) {
1476         /*
1477          * Check the interface's internet address.
1478          */
1479         if (ifr->ifr_addr.sa_family != AF_INET)
1480             continue;
1481         ina = ((struct sockaddr_in *) &ifr->ifr_addr)->sin_addr.s_addr;
1482         if ((ntohl(ina) & nmask) != (addr & nmask))
1483             continue;
1484         /*
1485          * Check that the interface is up, and not point-to-point or loopback.
1486          */
1487         strncpy(ifreq.ifr_name, ifr->ifr_name, sizeof(ifreq.ifr_name));
1488         if (ioctl(sockfd, SIOCGIFFLAGS, &ifreq) < 0)
1489             continue;
1490         if ((ifreq.ifr_flags & (IFF_UP|IFF_POINTOPOINT|IFF_LOOPBACK))
1491             != IFF_UP)
1492             continue;
1493         /*
1494          * Get its netmask and OR it into our mask.
1495          */
1496         if (ioctl(sockfd, SIOCGIFNETMASK, &ifreq) < 0)
1497             continue;
1498         mask |= ((struct sockaddr_in *)&ifreq.ifr_addr)->sin_addr.s_addr;
1499     }
1500
1501     return mask;
1502 }
1503
1504 /*
1505  * Use the hostid as part of the random number seed.
1506  */
1507 int
1508 get_host_seed()
1509 {
1510     return gethostid();
1511 }
1512
1513 /*
1514  * lock - create a lock file for the named lock device
1515  */
1516 #define LOCK_PREFIX     "/var/spool/lock/LCK.."
1517
1518 int
1519 lock(dev)
1520     char *dev;
1521 {
1522     char hdb_lock_buffer[12];
1523     int fd, pid, n;
1524     char *p;
1525
1526     if ((p = strrchr(dev, '/')) != NULL)
1527         dev = p + 1;
1528     lock_file = malloc(strlen(LOCK_PREFIX) + strlen(dev) + 1);
1529     if (lock_file == NULL)
1530         novm("lock file name");
1531     strcat(strcpy(lock_file, LOCK_PREFIX), dev);
1532
1533     while ((fd = open(lock_file, O_EXCL | O_CREAT | O_RDWR, 0644)) < 0) {
1534         if (errno == EEXIST
1535             && (fd = open(lock_file, O_RDONLY, 0)) >= 0) {
1536             /* Read the lock file to find out who has the device locked */
1537             n = read(fd, hdb_lock_buffer, 11);
1538             if (n <= 0) {
1539                 syslog(LOG_ERR, "Can't read pid from lock file %s", lock_file);
1540                 close(fd);
1541             } else {
1542                 hdb_lock_buffer[n] = 0;
1543                 pid = atoi(hdb_lock_buffer);
1544                 if (kill(pid, 0) == -1 && errno == ESRCH) {
1545                     /* pid no longer exists - remove the lock file */
1546                     if (unlink(lock_file) == 0) {
1547                         close(fd);
1548                         syslog(LOG_NOTICE, "Removed stale lock on %s (pid %d)",
1549                                dev, pid);
1550                         continue;
1551                     } else
1552                         syslog(LOG_WARNING, "Couldn't remove stale lock on %s",
1553                                dev);
1554                 } else
1555                     syslog(LOG_NOTICE, "Device %s is locked by pid %d",
1556                            dev, pid);
1557             }
1558             close(fd);
1559         } else
1560             syslog(LOG_ERR, "Can't create lock file %s: %m", lock_file);
1561         free(lock_file);
1562         lock_file = NULL;
1563         return -1;
1564     }
1565
1566     sprintf(hdb_lock_buffer, "%10d\n", getpid());
1567     write(fd, hdb_lock_buffer, 11);
1568
1569     close(fd);
1570     return 0;
1571 }
1572
1573 /*
1574  * unlock - remove our lockfile
1575  */
1576 void
1577 unlock()
1578 {
1579     if (lock_file) {
1580         unlink(lock_file);
1581         free(lock_file);
1582         lock_file = NULL;
1583     }
1584 }