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