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