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