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