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