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