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