]> git.ozlabs.org Git - ppp.git/blob - pppd/sys-bsd.c
call appropriate protocol's active_pkt procedure to filter pkts
[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.25 1996/05/27 00:00:12 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, 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 (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 already exists");
933     }
934     ifaddrs[0] = o;
935     ifaddrs[1] = h;
936     return 1;
937 }
938
939 /*
940  * cifaddr - Clear the interface IP addresses, and delete routes
941  * through the interface if possible.
942  */
943 int
944 cifaddr(u, o, h)
945     int u;
946     u_int32_t o, h;
947 {
948     struct ifaliasreq ifra;
949
950     ifaddrs[0] = 0;
951     strncpy(ifra.ifra_name, ifname, sizeof(ifra.ifra_name));
952     SET_SA_FAMILY(ifra.ifra_addr, AF_INET);
953     ((struct sockaddr_in *) &ifra.ifra_addr)->sin_addr.s_addr = o;
954     SET_SA_FAMILY(ifra.ifra_broadaddr, AF_INET);
955     ((struct sockaddr_in *) &ifra.ifra_broadaddr)->sin_addr.s_addr = h;
956     BZERO(&ifra.ifra_mask, sizeof(ifra.ifra_mask));
957     if (ioctl(sockfd, SIOCDIFADDR, (caddr_t) &ifra) < 0) {
958         if (errno != EADDRNOTAVAIL)
959             syslog(LOG_WARNING, "Couldn't delete interface address: %m");
960         return 0;
961     }
962     return 1;
963 }
964
965 /*
966  * sifdefaultroute - assign a default route through the address given.
967  */
968 int
969 sifdefaultroute(u, g)
970     int u;
971     u_int32_t g;
972 {
973     return dodefaultroute(g, 's');
974 }
975
976 /*
977  * cifdefaultroute - delete a default route through the address given.
978  */
979 int
980 cifdefaultroute(u, g)
981     int u;
982     u_int32_t g;
983 {
984     return dodefaultroute(g, 'c');
985 }
986
987 /*
988  * dodefaultroute - talk to a routing socket to add/delete a default route.
989  */
990 static int
991 dodefaultroute(g, cmd)
992     u_int32_t g;
993     int cmd;
994 {
995     int routes;
996     struct {
997         struct rt_msghdr        hdr;
998         struct sockaddr_in      dst;
999         struct sockaddr_in      gway;
1000         struct sockaddr_in      mask;
1001     } rtmsg;
1002
1003     if ((routes = socket(PF_ROUTE, SOCK_RAW, AF_INET)) < 0) {
1004         syslog(LOG_ERR, "Couldn't %s default route: socket: %m",
1005                cmd=='s'? "add": "delete");
1006         return 0;
1007     }
1008
1009     memset(&rtmsg, 0, sizeof(rtmsg));
1010     rtmsg.hdr.rtm_type = cmd == 's'? RTM_ADD: RTM_DELETE;
1011     rtmsg.hdr.rtm_flags = RTF_UP | RTF_GATEWAY;
1012     rtmsg.hdr.rtm_version = RTM_VERSION;
1013     rtmsg.hdr.rtm_seq = ++rtm_seq;
1014     rtmsg.hdr.rtm_addrs = RTA_DST | RTA_GATEWAY | RTA_NETMASK;
1015     rtmsg.dst.sin_len = sizeof(rtmsg.dst);
1016     rtmsg.dst.sin_family = AF_INET;
1017     rtmsg.gway.sin_len = sizeof(rtmsg.gway);
1018     rtmsg.gway.sin_family = AF_INET;
1019     rtmsg.gway.sin_addr.s_addr = g;
1020     rtmsg.mask.sin_len = sizeof(rtmsg.dst);
1021     rtmsg.mask.sin_family = AF_INET;
1022
1023     rtmsg.hdr.rtm_msglen = sizeof(rtmsg);
1024     if (write(routes, &rtmsg, sizeof(rtmsg)) < 0) {
1025         syslog(LOG_ERR, "Couldn't %s default route: %m",
1026                cmd=='s'? "add": "delete");
1027         close(routes);
1028         return 0;
1029     }
1030
1031     close(routes);
1032     default_route_gateway = (cmd == 's')? g: 0;
1033     return 1;
1034 }
1035
1036 #if RTM_VERSION >= 3
1037
1038 /*
1039  * sifproxyarp - Make a proxy ARP entry for the peer.
1040  */
1041 static struct {
1042     struct rt_msghdr            hdr;
1043     struct sockaddr_inarp       dst;
1044     struct sockaddr_dl          hwa;
1045     char                        extra[128];
1046 } arpmsg;
1047
1048 static int arpmsg_valid;
1049
1050 int
1051 sifproxyarp(unit, hisaddr)
1052     int unit;
1053     u_int32_t hisaddr;
1054 {
1055     int routes;
1056
1057     /*
1058      * Get the hardware address of an interface on the same subnet
1059      * as our local address.
1060      */
1061     memset(&arpmsg, 0, sizeof(arpmsg));
1062     if (!get_ether_addr(hisaddr, &arpmsg.hwa)) {
1063         syslog(LOG_ERR, "Cannot determine ethernet address for proxy ARP");
1064         return 0;
1065     }
1066
1067     if ((routes = socket(PF_ROUTE, SOCK_RAW, AF_INET)) < 0) {
1068         syslog(LOG_ERR, "Couldn't add proxy arp entry: socket: %m");
1069         return 0;
1070     }
1071
1072     arpmsg.hdr.rtm_type = RTM_ADD;
1073     arpmsg.hdr.rtm_flags = RTF_ANNOUNCE | RTF_HOST | RTF_STATIC;
1074     arpmsg.hdr.rtm_version = RTM_VERSION;
1075     arpmsg.hdr.rtm_seq = ++rtm_seq;
1076     arpmsg.hdr.rtm_addrs = RTA_DST | RTA_GATEWAY;
1077     arpmsg.hdr.rtm_inits = RTV_EXPIRE;
1078     arpmsg.dst.sin_len = sizeof(struct sockaddr_inarp);
1079     arpmsg.dst.sin_family = AF_INET;
1080     arpmsg.dst.sin_addr.s_addr = hisaddr;
1081     arpmsg.dst.sin_other = SIN_PROXY;
1082
1083     arpmsg.hdr.rtm_msglen = (char *) &arpmsg.hwa - (char *) &arpmsg
1084         + arpmsg.hwa.sdl_len;
1085     if (write(routes, &arpmsg, arpmsg.hdr.rtm_msglen) < 0) {
1086         syslog(LOG_ERR, "Couldn't add proxy arp entry: %m");
1087         close(routes);
1088         return 0;
1089     }
1090
1091     close(routes);
1092     arpmsg_valid = 1;
1093     proxy_arp_addr = hisaddr;
1094     return 1;
1095 }
1096
1097 /*
1098  * cifproxyarp - Delete the proxy ARP entry for the peer.
1099  */
1100 int
1101 cifproxyarp(unit, hisaddr)
1102     int unit;
1103     u_int32_t hisaddr;
1104 {
1105     int routes;
1106
1107     if (!arpmsg_valid)
1108         return 0;
1109     arpmsg_valid = 0;
1110
1111     arpmsg.hdr.rtm_type = RTM_DELETE;
1112     arpmsg.hdr.rtm_seq = ++rtm_seq;
1113
1114     if ((routes = socket(PF_ROUTE, SOCK_RAW, AF_INET)) < 0) {
1115         syslog(LOG_ERR, "Couldn't delete proxy arp entry: socket: %m");
1116         return 0;
1117     }
1118
1119     if (write(routes, &arpmsg, arpmsg.hdr.rtm_msglen) < 0) {
1120         syslog(LOG_ERR, "Couldn't delete proxy arp entry: %m");
1121         close(routes);
1122         return 0;
1123     }
1124
1125     close(routes);
1126     proxy_arp_addr = 0;
1127     return 1;
1128 }
1129
1130 #else   /* RTM_VERSION */
1131
1132 /*
1133  * sifproxyarp - Make a proxy ARP entry for the peer.
1134  */
1135 int
1136 sifproxyarp(unit, hisaddr)
1137     int unit;
1138     u_int32_t hisaddr;
1139 {
1140     struct arpreq arpreq;
1141     struct {
1142         struct sockaddr_dl      sdl;
1143         char                    space[128];
1144     } dls;
1145
1146     BZERO(&arpreq, sizeof(arpreq));
1147
1148     /*
1149      * Get the hardware address of an interface on the same subnet
1150      * as our local address.
1151      */
1152     if (!get_ether_addr(hisaddr, &dls.sdl)) {
1153         syslog(LOG_ERR, "Cannot determine ethernet address for proxy ARP");
1154         return 0;
1155     }
1156
1157     arpreq.arp_ha.sa_len = sizeof(struct sockaddr);
1158     arpreq.arp_ha.sa_family = AF_UNSPEC;
1159     BCOPY(LLADDR(&dls.sdl), arpreq.arp_ha.sa_data, dls.sdl.sdl_alen);
1160     SET_SA_FAMILY(arpreq.arp_pa, AF_INET);
1161     ((struct sockaddr_in *) &arpreq.arp_pa)->sin_addr.s_addr = hisaddr;
1162     arpreq.arp_flags = ATF_PERM | ATF_PUBL;
1163     if (ioctl(sockfd, SIOCSARP, (caddr_t)&arpreq) < 0) {
1164         syslog(LOG_ERR, "Couldn't add proxy arp entry: %m");
1165         return 0;
1166     }
1167
1168     proxy_arp_addr = hisaddr;
1169     return 1;
1170 }
1171
1172 /*
1173  * cifproxyarp - Delete the proxy ARP entry for the peer.
1174  */
1175 int
1176 cifproxyarp(unit, hisaddr)
1177     int unit;
1178     u_int32_t hisaddr;
1179 {
1180     struct arpreq arpreq;
1181
1182     BZERO(&arpreq, sizeof(arpreq));
1183     SET_SA_FAMILY(arpreq.arp_pa, AF_INET);
1184     ((struct sockaddr_in *) &arpreq.arp_pa)->sin_addr.s_addr = hisaddr;
1185     if (ioctl(sockfd, SIOCDARP, (caddr_t)&arpreq) < 0) {
1186         syslog(LOG_WARNING, "Couldn't delete proxy arp entry: %m");
1187         return 0;
1188     }
1189     proxy_arp_addr = 0;
1190     return 1;
1191 }
1192 #endif  /* RTM_VERSION */
1193
1194
1195 /*
1196  * get_ether_addr - get the hardware address of an interface on the
1197  * the same subnet as ipaddr.
1198  */
1199 #define MAX_IFS         32
1200
1201 static int
1202 get_ether_addr(ipaddr, hwaddr)
1203     u_int32_t ipaddr;
1204     struct sockaddr_dl *hwaddr;
1205 {
1206     struct ifreq *ifr, *ifend, *ifp;
1207     u_int32_t ina, mask;
1208     struct sockaddr_dl *dla;
1209     struct ifreq ifreq;
1210     struct ifconf ifc;
1211     struct ifreq ifs[MAX_IFS];
1212
1213     ifc.ifc_len = sizeof(ifs);
1214     ifc.ifc_req = ifs;
1215     if (ioctl(sockfd, SIOCGIFCONF, &ifc) < 0) {
1216         syslog(LOG_ERR, "ioctl(SIOCGIFCONF): %m");
1217         return 0;
1218     }
1219
1220     /*
1221      * Scan through looking for an interface with an Internet
1222      * address on the same subnet as `ipaddr'.
1223      */
1224     ifend = (struct ifreq *) (ifc.ifc_buf + ifc.ifc_len);
1225     for (ifr = ifc.ifc_req; ifr < ifend; ifr = (struct ifreq *)
1226                 ((char *)&ifr->ifr_addr + ifr->ifr_addr.sa_len)) {
1227         if (ifr->ifr_addr.sa_family == AF_INET) {
1228             ina = ((struct sockaddr_in *) &ifr->ifr_addr)->sin_addr.s_addr;
1229             strncpy(ifreq.ifr_name, ifr->ifr_name, sizeof(ifreq.ifr_name));
1230             /*
1231              * Check that the interface is up, and not point-to-point
1232              * or loopback.
1233              */
1234             if (ioctl(sockfd, SIOCGIFFLAGS, &ifreq) < 0)
1235                 continue;
1236             if ((ifreq.ifr_flags &
1237                  (IFF_UP|IFF_BROADCAST|IFF_POINTOPOINT|IFF_LOOPBACK|IFF_NOARP))
1238                  != (IFF_UP|IFF_BROADCAST))
1239                 continue;
1240             /*
1241              * Get its netmask and check that it's on the right subnet.
1242              */
1243             if (ioctl(sockfd, SIOCGIFNETMASK, &ifreq) < 0)
1244                 continue;
1245             mask = ((struct sockaddr_in *) &ifreq.ifr_addr)->sin_addr.s_addr;
1246             if ((ipaddr & mask) != (ina & mask))
1247                 continue;
1248
1249             break;
1250         }
1251     }
1252
1253     if (ifr >= ifend)
1254         return 0;
1255     syslog(LOG_INFO, "found interface %s for proxy arp", ifr->ifr_name);
1256
1257     /*
1258      * Now scan through again looking for a link-level address
1259      * for this interface.
1260      */
1261     ifp = ifr;
1262     for (ifr = ifc.ifc_req; ifr < ifend; ) {
1263         if (strcmp(ifp->ifr_name, ifr->ifr_name) == 0
1264             && ifr->ifr_addr.sa_family == AF_LINK) {
1265             /*
1266              * Found the link-level address - copy it out
1267              */
1268             dla = (struct sockaddr_dl *) &ifr->ifr_addr;
1269             BCOPY(dla, hwaddr, dla->sdl_len);
1270             return 1;
1271         }
1272         ifr = (struct ifreq *) ((char *)&ifr->ifr_addr + ifr->ifr_addr.sa_len);
1273     }
1274
1275     return 0;
1276 }
1277
1278 /*
1279  * Return user specified netmask, modified by any mask we might determine
1280  * for address `addr' (in network byte order).
1281  * Here we scan through the system's list of interfaces, looking for
1282  * any non-point-to-point interfaces which might appear to be on the same
1283  * network as `addr'.  If we find any, we OR in their netmask to the
1284  * user-specified netmask.
1285  */
1286 u_int32_t
1287 GetMask(addr)
1288     u_int32_t addr;
1289 {
1290     u_int32_t mask, nmask, ina;
1291     struct ifreq *ifr, *ifend, ifreq;
1292     struct ifconf ifc;
1293     struct ifreq ifs[MAX_IFS];
1294
1295     addr = ntohl(addr);
1296     if (IN_CLASSA(addr))        /* determine network mask for address class */
1297         nmask = IN_CLASSA_NET;
1298     else if (IN_CLASSB(addr))
1299         nmask = IN_CLASSB_NET;
1300     else
1301         nmask = IN_CLASSC_NET;
1302     /* class D nets are disallowed by bad_ip_adrs */
1303     mask = netmask | htonl(nmask);
1304
1305     /*
1306      * Scan through the system's network interfaces.
1307      */
1308     ifc.ifc_len = sizeof(ifs);
1309     ifc.ifc_req = ifs;
1310     if (ioctl(sockfd, SIOCGIFCONF, &ifc) < 0) {
1311         syslog(LOG_WARNING, "ioctl(SIOCGIFCONF): %m");
1312         return mask;
1313     }
1314     ifend = (struct ifreq *) (ifc.ifc_buf + ifc.ifc_len);
1315     for (ifr = ifc.ifc_req; ifr < ifend; ifr = (struct ifreq *)
1316                 ((char *)&ifr->ifr_addr + ifr->ifr_addr.sa_len)) {
1317         /*
1318          * Check the interface's internet address.
1319          */
1320         if (ifr->ifr_addr.sa_family != AF_INET)
1321             continue;
1322         ina = ((struct sockaddr_in *) &ifr->ifr_addr)->sin_addr.s_addr;
1323         if ((ntohl(ina) & nmask) != (addr & nmask))
1324             continue;
1325         /*
1326          * Check that the interface is up, and not point-to-point or loopback.
1327          */
1328         strncpy(ifreq.ifr_name, ifr->ifr_name, sizeof(ifreq.ifr_name));
1329         if (ioctl(sockfd, SIOCGIFFLAGS, &ifreq) < 0)
1330             continue;
1331         if ((ifreq.ifr_flags & (IFF_UP|IFF_POINTOPOINT|IFF_LOOPBACK))
1332             != IFF_UP)
1333             continue;
1334         /*
1335          * Get its netmask and OR it into our mask.
1336          */
1337         if (ioctl(sockfd, SIOCGIFNETMASK, &ifreq) < 0)
1338             continue;
1339         mask |= ((struct sockaddr_in *)&ifreq.ifr_addr)->sin_addr.s_addr;
1340     }
1341
1342     return mask;
1343 }
1344
1345 /*
1346  * lock - create a lock file for the named lock device
1347  */
1348 #define LOCK_PREFIX     "/var/spool/lock/LCK.."
1349
1350 int
1351 lock(dev)
1352     char *dev;
1353 {
1354     char hdb_lock_buffer[12];
1355     int fd, pid, n;
1356     char *p;
1357
1358     if ((p = strrchr(dev, '/')) != NULL)
1359         dev = p + 1;
1360     lock_file = malloc(strlen(LOCK_PREFIX) + strlen(dev) + 1);
1361     if (lock_file == NULL)
1362         novm("lock file name");
1363     strcat(strcpy(lock_file, LOCK_PREFIX), dev);
1364
1365     while ((fd = open(lock_file, O_EXCL | O_CREAT | O_RDWR, 0644)) < 0) {
1366         if (errno == EEXIST
1367             && (fd = open(lock_file, O_RDONLY, 0)) >= 0) {
1368             /* Read the lock file to find out who has the device locked */
1369             n = read(fd, hdb_lock_buffer, 11);
1370             if (n <= 0) {
1371                 syslog(LOG_ERR, "Can't read pid from lock file %s", lock_file);
1372                 close(fd);
1373             } else {
1374                 hdb_lock_buffer[n] = 0;
1375                 pid = atoi(hdb_lock_buffer);
1376                 if (kill(pid, 0) == -1 && errno == ESRCH) {
1377                     /* pid no longer exists - remove the lock file */
1378                     if (unlink(lock_file) == 0) {
1379                         close(fd);
1380                         syslog(LOG_NOTICE, "Removed stale lock on %s (pid %d)",
1381                                dev, pid);
1382                         continue;
1383                     } else
1384                         syslog(LOG_WARNING, "Couldn't remove stale lock on %s",
1385                                dev);
1386                 } else
1387                     syslog(LOG_NOTICE, "Device %s is locked by pid %d",
1388                            dev, pid);
1389             }
1390             close(fd);
1391         } else
1392             syslog(LOG_ERR, "Can't create lock file %s: %m", lock_file);
1393         free(lock_file);
1394         lock_file = NULL;
1395         return -1;
1396     }
1397
1398     sprintf(hdb_lock_buffer, "%10d\n", getpid());
1399     write(fd, hdb_lock_buffer, 11);
1400
1401     close(fd);
1402     return 0;
1403 }
1404
1405 /*
1406  * unlock - remove our lockfile
1407  */
1408 void
1409 unlock()
1410 {
1411     if (lock_file) {
1412         unlink(lock_file);
1413         free(lock_file);
1414         lock_file = NULL;
1415     }
1416 }