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