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