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