]> git.ozlabs.org Git - ppp.git/blob - pppd/sys-bsd.c
Fix from Steve Tate.
[ppp.git] / pppd / sys-bsd.c
1 /*
2  * sys-bsd.c - System-dependent procedures for setting up
3  * PPP interfaces on bsd-4.4-ish systems (including 386BSD, NetBSD, etc.)
4  *
5  * Copyright (c) 1989 Carnegie Mellon University.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms are permitted
9  * provided that the above copyright notice and this paragraph are
10  * duplicated in all such forms and that any documentation,
11  * advertising materials, and other materials related to such
12  * distribution and use acknowledge that the software was developed
13  * by Carnegie Mellon University.  The name of the
14  * University may not be used to endorse or promote products derived
15  * from this software without specific prior written permission.
16  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
17  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
18  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
19  */
20
21 #ifndef lint
22 static char rcsid[] = "$Id: sys-bsd.c,v 1.19 1995/05/19 03:27:03 paulus Exp $";
23 #endif
24
25 /*
26  * TODO:
27  */
28
29 #include <stdio.h>
30 #include <syslog.h>
31 #include <string.h>
32 #include <stdlib.h>
33 #include <errno.h>
34 #include <fcntl.h>
35 #include <termios.h>
36 #include <sys/ioctl.h>
37 #include <sys/types.h>
38 #include <sys/socket.h>
39 #include <sys/time.h>
40 #include <sys/stat.h>
41
42 #include <net/if.h>
43 #include <net/ppp_defs.h>
44 #include <net/if_ppp.h>
45 #include <net/route.h>
46 #include <net/if_dl.h>
47 #include <netinet/in.h>
48
49 #if RTM_VERSION >= 3
50 #include <netinet/if_ether.h>
51 #endif
52
53 #include "pppd.h"
54
55 static int initdisc = -1;       /* Initial TTY discipline */
56 static int rtm_seq;
57
58 static int      restore_term;   /* 1 => we've munged the terminal */
59 static struct termios inittermios; /* Initial TTY termios */
60
61 static char *lock_file;         /* name of lock file created */
62
63 int sockfd;                     /* socket for doing interface ioctls */
64
65 /*
66  * sys_init - System-dependent initialization.
67  */
68 void
69 sys_init()
70 {
71     openlog("pppd", LOG_PID | LOG_NDELAY, LOG_PPP);
72     setlogmask(LOG_UPTO(LOG_INFO));
73     if (debug)
74         setlogmask(LOG_UPTO(LOG_DEBUG));
75
76     /* Get an internet socket for doing socket ioctl's on. */
77     if ((sockfd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
78         syslog(LOG_ERR, "Couldn't create IP socket: %m");
79         die(1);
80     }
81 }
82
83 /*
84  * note_debug_level - note a change in the debug level.
85  */
86 void
87 note_debug_level()
88 {
89     if (debug) {
90         syslog(LOG_INFO, "Debug turned ON, Level %d", debug);
91         setlogmask(LOG_UPTO(LOG_DEBUG));
92     } else {
93         setlogmask(LOG_UPTO(LOG_WARNING));
94     }
95 }
96
97 /*
98  * ppp_available - check whether the system has any ppp interfaces
99  * (in fact we check whether we can do an ioctl on ppp0).
100  */
101 int
102 ppp_available()
103 {
104     int s, ok;
105     struct ifreq ifr;
106
107     if ((s = socket(AF_INET, SOCK_DGRAM, 0)) < 0)
108         return 1;               /* can't tell - maybe we're not root */
109
110     strncpy(ifr.ifr_name, "ppp0", sizeof (ifr.ifr_name));
111     ok = ioctl(s, SIOCGIFFLAGS, (caddr_t) &ifr) >= 0;
112     close(s);
113
114     return ok;
115 }
116
117 /*
118  * establish_ppp - Turn the serial port into a ppp interface.
119  */
120 void
121 establish_ppp()
122 {
123     int pppdisc = PPPDISC;
124     int x;
125
126     if (ioctl(fd, TIOCGETD, &initdisc) < 0) {
127         syslog(LOG_ERR, "ioctl(TIOCGETD): %m");
128         die(1);
129     }
130     if (ioctl(fd, TIOCSETD, &pppdisc) < 0) {
131         syslog(LOG_ERR, "ioctl(TIOCSETD): %m");
132         die(1);
133     }
134
135     /*
136      * Find out which interface we were given.
137      */
138     if (ioctl(fd, PPPIOCGUNIT, &ifunit) < 0) {  
139         syslog(LOG_ERR, "ioctl(PPPIOCGUNIT): %m");
140         die(1);
141     }
142
143     /*
144      * Enable debug in the driver if requested.
145      */
146     if (kdebugflag) {
147         if (ioctl(fd, PPPIOCGFLAGS, (caddr_t) &x) < 0) {
148             syslog(LOG_WARNING, "ioctl (PPPIOCGFLAGS): %m");
149         } else {
150             x |= (kdebugflag & 0xFF) * SC_DEBUG;
151             if (ioctl(fd, PPPIOCSFLAGS, (caddr_t) &x) < 0)
152                 syslog(LOG_WARNING, "ioctl(PPPIOCSFLAGS): %m");
153         }
154     }
155 }
156
157
158 /*
159  * disestablish_ppp - Restore the serial port to normal operation.
160  * This shouldn't call die() because it's called from die().
161  */
162 void
163 disestablish_ppp()
164 {
165     int x;
166     char *s;
167
168     if (initdisc >= 0) {
169         /*
170          * Check whether the link seems not to be 8-bit clean.
171          */
172         if (ioctl(fd, PPPIOCGFLAGS, (caddr_t) &x) == 0) {
173             s = NULL;
174             switch (~x & (SC_RCV_B7_0|SC_RCV_B7_1|SC_RCV_EVNP|SC_RCV_ODDP)) {
175             case SC_RCV_B7_0:
176                 s = "bit 7 set to 1";
177                 break;
178             case SC_RCV_B7_1:
179                 s = "bit 7 set to 0";
180                 break;
181             case SC_RCV_EVNP:
182                 s = "odd parity";
183                 break;
184             case SC_RCV_ODDP:
185                 s = "even parity";
186                 break;
187             }
188             if (s != NULL) {
189                 syslog(LOG_WARNING, "Serial link is not 8-bit clean:");
190                 syslog(LOG_WARNING, "All received characters had %s", s);
191             }
192         }
193         if (ioctl(fd, TIOCSETD, &initdisc) < 0)
194             syslog(LOG_ERR, "ioctl(TIOCSETD): %m");
195     }
196 }
197
198
199 /*
200  * set_up_tty: Set up the serial port on `fd' for 8 bits, no parity,
201  * at the requested speed, etc.  If `local' is true, set CLOCAL
202  * regardless of whether the modem option was specified.
203  *
204  * For *BSD, we assume that speed_t values numerically equal bits/second.
205  */
206 set_up_tty(fd, local)
207     int fd, local;
208 {
209     struct termios tios;
210
211     if (tcgetattr(fd, &tios) < 0) {
212         syslog(LOG_ERR, "tcgetattr: %m");
213         die(1);
214     }
215
216     if (!restore_term)
217         inittermios = tios;
218
219     tios.c_cflag &= ~(CSIZE | CSTOPB | PARENB | CLOCAL);
220     if (crtscts > 0)
221         tios.c_cflag |= CRTSCTS;
222     else if (crtscts < 0)
223         tios.c_cflag &= ~CRTSCTS;
224
225     tios.c_cflag |= CS8 | CREAD | HUPCL;
226     if (local || !modem)
227         tios.c_cflag |= CLOCAL;
228     tios.c_iflag = IGNBRK | IGNPAR;
229     tios.c_oflag = 0;
230     tios.c_lflag = 0;
231     tios.c_cc[VMIN] = 1;
232     tios.c_cc[VTIME] = 0;
233
234     if (crtscts == 2) {
235         tios.c_iflag |= IXOFF;
236         tios.c_cc[VSTOP] = 0x13;        /* DC3 = XOFF = ^S */
237         tios.c_cc[VSTART] = 0x11;       /* DC1 = XON  = ^Q */
238     }
239
240     if (inspeed) {
241         cfsetospeed(&tios, inspeed);
242         cfsetispeed(&tios, inspeed);
243     } else {
244         inspeed = cfgetospeed(&tios);
245         /*
246          * We can't proceed if the serial port speed is 0,
247          * since that implies that the serial port is disabled.
248          */
249         if (inspeed == 0) {
250             syslog(LOG_ERR, "Baud rate for %s is 0; need explicit baud rate",
251                    devnam);
252             die(1);
253         }
254     }
255     baud_rate = inspeed;
256
257     if (tcsetattr(fd, TCSAFLUSH, &tios) < 0) {
258         syslog(LOG_ERR, "tcsetattr: %m");
259         die(1);
260     }
261
262     restore_term = 1;
263 }
264
265 /*
266  * restore_tty - restore the terminal to the saved settings.
267  */
268 void
269 restore_tty()
270 {
271     if (restore_term) {
272         if (!default_device) {
273             /*
274              * Turn off echoing, because otherwise we can get into
275              * a loop with the tty and the modem echoing to each other.
276              * We presume we are the sole user of this tty device, so
277              * when we close it, it will revert to its defaults anyway.
278              */
279             inittermios.c_lflag &= ~(ECHO | ECHONL);
280         }
281         if (tcsetattr(fd, TCSAFLUSH, &inittermios) < 0)
282             if (errno != ENXIO)
283                 syslog(LOG_WARNING, "tcsetattr: %m");
284         restore_term = 0;
285     }
286 }
287
288 /*
289  * setdtr - control the DTR line on the serial port.
290  * This is called from die(), so it shouldn't call die().
291  */
292 setdtr(fd, on)
293 int fd, on;
294 {
295     int modembits = TIOCM_DTR;
296
297     ioctl(fd, (on? TIOCMBIS: TIOCMBIC), &modembits);
298 }
299
300
301 /*
302  * output - Output PPP packet.
303  */
304 void
305 output(unit, p, len)
306     int unit;
307     u_char *p;
308     int len;
309 {
310     if (unit != 0)
311         MAINDEBUG((LOG_WARNING, "output: unit != 0!"));
312     if (debug)
313         log_packet(p, len, "sent ");
314
315     if (write(fd, p, len) < 0) {
316         syslog(LOG_ERR, "write: %m");
317         die(1);
318     }
319 }
320
321
322 /*
323  * wait_input - wait until there is data available on fd,
324  * for the length of time specified by *timo (indefinite
325  * if timo is NULL).
326  */
327 wait_input(timo)
328     struct timeval *timo;
329 {
330     fd_set ready;
331     int n;
332
333     FD_ZERO(&ready);
334     FD_SET(fd, &ready);
335     n = select(fd+1, &ready, NULL, &ready, timo);
336     if (n < 0 && errno != EINTR) {
337         syslog(LOG_ERR, "select: %m");
338         die(1);
339     }
340 }
341
342
343 /*
344  * read_packet - get a PPP packet from the serial device.
345  */
346 int
347 read_packet(buf)
348     u_char *buf;
349 {
350     int len;
351
352     if ((len = read(fd, buf, PPP_MTU + PPP_HDRLEN)) < 0) {
353         if (errno == EWOULDBLOCK || errno == EINTR)
354             return -1;
355         syslog(LOG_ERR, "read(fd): %m");
356         die(1);
357     }
358     return len;
359 }
360
361
362 /*
363  * ppp_send_config - configure the transmit characteristics of
364  * the ppp interface.
365  */
366 void
367 ppp_send_config(unit, mtu, asyncmap, pcomp, accomp)
368     int unit, mtu;
369     u_int32_t asyncmap;
370     int pcomp, accomp;
371 {
372     u_int x;
373     struct ifreq ifr;
374
375     strncpy(ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
376     ifr.ifr_mtu = mtu;
377     if (ioctl(sockfd, SIOCSIFMTU, (caddr_t) &ifr) < 0) {
378         syslog(LOG_ERR, "ioctl(SIOCSIFMTU): %m");
379         quit();
380     }
381
382     if (ioctl(fd, PPPIOCSASYNCMAP, (caddr_t) &asyncmap) < 0) {
383         syslog(LOG_ERR, "ioctl(PPPIOCSASYNCMAP): %m");
384         quit();
385     }
386
387     if (ioctl(fd, PPPIOCGFLAGS, (caddr_t) &x) < 0) {
388         syslog(LOG_ERR, "ioctl (PPPIOCGFLAGS): %m");
389         quit();
390     }
391     x = pcomp? x | SC_COMP_PROT: x &~ SC_COMP_PROT;
392     x = accomp? x | SC_COMP_AC: x &~ SC_COMP_AC;
393     if (ioctl(fd, PPPIOCSFLAGS, (caddr_t) &x) < 0) {
394         syslog(LOG_ERR, "ioctl(PPPIOCSFLAGS): %m");
395         quit();
396     }
397 }
398
399
400 /*
401  * ppp_set_xaccm - set the extended transmit ACCM for the interface.
402  */
403 void
404 ppp_set_xaccm(unit, accm)
405     int unit;
406     ext_accm accm;
407 {
408     if (ioctl(fd, PPPIOCSXASYNCMAP, accm) < 0 && errno != ENOTTY)
409         syslog(LOG_WARNING, "ioctl(set extended ACCM): %m");
410 }
411
412
413 /*
414  * ppp_recv_config - configure the receive-side characteristics of
415  * the ppp interface.
416  */
417 void
418 ppp_recv_config(unit, mru, asyncmap, pcomp, accomp)
419     int unit, mru;
420     u_int32_t asyncmap;
421     int pcomp, accomp;
422 {
423     int x;
424
425     if (ioctl(fd, PPPIOCSMRU, (caddr_t) &mru) < 0) {
426         syslog(LOG_ERR, "ioctl(PPPIOCSMRU): %m");
427         quit();
428     }
429     if (ioctl(fd, PPPIOCSRASYNCMAP, (caddr_t) &asyncmap) < 0) {
430         syslog(LOG_ERR, "ioctl(PPPIOCSRASYNCMAP): %m");
431         quit();
432     }
433     if (ioctl(fd, PPPIOCGFLAGS, (caddr_t) &x) < 0) {
434         syslog(LOG_ERR, "ioctl (PPPIOCGFLAGS): %m");
435         quit();
436     }
437     x = !accomp? x | SC_REJ_COMP_AC: x &~ SC_REJ_COMP_AC;
438     if (ioctl(fd, PPPIOCSFLAGS, (caddr_t) &x) < 0) {
439         syslog(LOG_ERR, "ioctl(PPPIOCSFLAGS): %m");
440         quit();
441     }
442 }
443
444 /*
445  * ccp_test - ask kernel whether a given compression method
446  * is acceptable for use.
447  */
448 ccp_test(unit, opt_ptr, opt_len, for_transmit)
449     int unit, opt_len, for_transmit;
450     u_char *opt_ptr;
451 {
452     struct ppp_option_data data;
453
454     data.ptr = opt_ptr;
455     data.length = opt_len;
456     data.transmit = for_transmit;
457     return ioctl(fd, PPPIOCSCOMPRESS, (caddr_t) &data) >= 0;
458 }
459
460 /*
461  * ccp_flags_set - inform kernel about the current state of CCP.
462  */
463 void
464 ccp_flags_set(unit, isopen, isup)
465     int unit, isopen, isup;
466 {
467     int x;
468
469     if (ioctl(fd, PPPIOCGFLAGS, (caddr_t) &x) < 0) {
470         syslog(LOG_ERR, "ioctl (PPPIOCGFLAGS): %m");
471         return;
472     }
473     x = isopen? x | SC_CCP_OPEN: x &~ SC_CCP_OPEN;
474     x = isup? x | SC_CCP_UP: x &~ SC_CCP_UP;
475     if (ioctl(fd, PPPIOCSFLAGS, (caddr_t) &x) < 0)
476         syslog(LOG_ERR, "ioctl(PPPIOCSFLAGS): %m");
477 }
478
479 /*
480  * ccp_fatal_error - returns 1 if decompression was disabled as a
481  * result of an error detected after decompression of a packet,
482  * 0 otherwise.  This is necessary because of patent nonsense.
483  */
484 int
485 ccp_fatal_error(unit)
486     int unit;
487 {
488     int x;
489
490     if (ioctl(fd, PPPIOCGFLAGS, (caddr_t) &x) < 0) {
491         syslog(LOG_ERR, "ioctl(PPPIOCGFLAGS): %m");
492         return 0;
493     }
494     return x & SC_DC_FERROR;
495 }
496
497 /*
498  * sifvjcomp - config tcp header compression
499  */
500 int
501 sifvjcomp(u, vjcomp, cidcomp, maxcid)
502     int u, vjcomp, cidcomp, maxcid;
503 {
504     u_int x;
505
506     if (ioctl(fd, PPPIOCGFLAGS, (caddr_t) &x) < 0) {
507         syslog(LOG_ERR, "ioctl (PPPIOCGFLAGS): %m");
508         return 0;
509     }
510     x = vjcomp ? x | SC_COMP_TCP: x &~ SC_COMP_TCP;
511     x = cidcomp? x & ~SC_NO_TCP_CCID: x | SC_NO_TCP_CCID;
512     if (ioctl(fd, PPPIOCSFLAGS, (caddr_t) &x) < 0) {
513         syslog(LOG_ERR, "ioctl(PPPIOCSFLAGS): %m");
514         return 0;
515     }
516     if (ioctl(fd, PPPIOCSMAXCID, (caddr_t) &maxcid) < 0) {
517         syslog(LOG_ERR, "ioctl(PPPIOCSFLAGS): %m");
518         return 0;
519     }
520     return 1;
521 }
522
523 /*
524  * sifup - Config the interface up and enable IP packets to pass.
525  */
526 #ifndef SC_ENABLE_IP
527 #define SC_ENABLE_IP    0x100   /* compat for old versions of kernel code */
528 #endif
529
530 int
531 sifup(u)
532     int u;
533 {
534     struct ifreq ifr;
535     u_int x;
536     struct npioctl npi;
537
538     strncpy(ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
539     if (ioctl(sockfd, SIOCGIFFLAGS, (caddr_t) &ifr) < 0) {
540         syslog(LOG_ERR, "ioctl (SIOCGIFFLAGS): %m");
541         return 0;
542     }
543     ifr.ifr_flags |= IFF_UP;
544     if (ioctl(sockfd, SIOCSIFFLAGS, (caddr_t) &ifr) < 0) {
545         syslog(LOG_ERR, "ioctl(SIOCSIFFLAGS): %m");
546         return 0;
547     }
548     npi.protocol = PPP_IP;
549     npi.mode = NPMODE_PASS;
550     if (ioctl(fd, PPPIOCSNPMODE, &npi) < 0) {
551         if (errno != ENOTTY) {
552             syslog(LOG_ERR, "ioctl(PPPIOCSNPMODE): %m");
553             return 0;
554         }
555         /* for backwards compatibility */
556         if (ioctl(fd, PPPIOCGFLAGS, (caddr_t) &x) < 0) {
557             syslog(LOG_ERR, "ioctl (PPPIOCGFLAGS): %m");
558             return 0;
559         }
560         x |= SC_ENABLE_IP;
561         if (ioctl(fd, PPPIOCSFLAGS, (caddr_t) &x) < 0) {
562             syslog(LOG_ERR, "ioctl(PPPIOCSFLAGS): %m");
563             return 0;
564         }
565     }
566     return 1;
567 }
568
569 /*
570  * sifdown - Config the interface down and disable IP.
571  */
572 int
573 sifdown(u)
574     int u;
575 {
576     struct ifreq ifr;
577     u_int x;
578     int rv;
579     struct npioctl npi;
580
581     rv = 1;
582     npi.protocol = PPP_IP;
583     npi.mode = NPMODE_ERROR;
584     if (ioctl(fd, PPPIOCSNPMODE, (caddr_t) &npi) < 0) {
585         if (errno != ENOTTY) {
586             syslog(LOG_ERR, "ioctl(PPPIOCSNPMODE): %m");
587             rv = 0;
588         } else {
589             /* backwards compatibility */
590             if (ioctl(fd, PPPIOCGFLAGS, (caddr_t) &x) < 0) {
591                 syslog(LOG_ERR, "ioctl (PPPIOCGFLAGS): %m");
592                 rv = 0;
593             } else {
594                 x &= ~SC_ENABLE_IP;
595                 if (ioctl(fd, PPPIOCSFLAGS, (caddr_t) &x) < 0) {
596                     syslog(LOG_ERR, "ioctl(PPPIOCSFLAGS): %m");
597                     rv = 0;
598                 }
599             }
600         }
601     }
602
603     strncpy(ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
604     if (ioctl(sockfd, SIOCGIFFLAGS, (caddr_t) &ifr) < 0) {
605         syslog(LOG_ERR, "ioctl (SIOCGIFFLAGS): %m");
606         rv = 0;
607     } else {
608         ifr.ifr_flags &= ~IFF_UP;
609         if (ioctl(sockfd, SIOCSIFFLAGS, (caddr_t) &ifr) < 0) {
610             syslog(LOG_ERR, "ioctl(SIOCSIFFLAGS): %m");
611             rv = 0;
612         }
613     }
614     return rv;
615 }
616
617 /*
618  * SET_SA_FAMILY - set the sa_family field of a struct sockaddr,
619  * if it exists.
620  */
621 #define SET_SA_FAMILY(addr, family)             \
622     BZERO((char *) &(addr), sizeof(addr));      \
623     addr.sa_family = (family);                  \
624     addr.sa_len = sizeof(addr);
625
626 /*
627  * sifaddr - Config the interface IP addresses and netmask.
628  */
629 int
630 sifaddr(u, o, h, m)
631     int u;
632     u_int32_t o, h, m;
633 {
634     struct ifaliasreq ifra;
635
636     strncpy(ifra.ifra_name, ifname, sizeof(ifra.ifra_name));
637     SET_SA_FAMILY(ifra.ifra_addr, AF_INET);
638     ((struct sockaddr_in *) &ifra.ifra_addr)->sin_addr.s_addr = o;
639     SET_SA_FAMILY(ifra.ifra_broadaddr, AF_INET);
640     ((struct sockaddr_in *) &ifra.ifra_broadaddr)->sin_addr.s_addr = h;
641     if (m != 0) {
642         SET_SA_FAMILY(ifra.ifra_mask, AF_INET);
643         ((struct sockaddr_in *) &ifra.ifra_mask)->sin_addr.s_addr = m;
644     } else
645         BZERO(&ifra.ifra_mask, sizeof(ifra.ifra_mask));
646     if (ioctl(sockfd, SIOCAIFADDR, (caddr_t) &ifra) < 0) {
647         if (errno != EEXIST) {
648             syslog(LOG_ERR, "ioctl(SIOCAIFADDR): %m");
649             return 0;
650         }
651         syslog(LOG_WARNING, "ioctl(SIOCAIFADDR): Address already exists");
652     }
653     return 1;
654 }
655
656 /*
657  * cifaddr - Clear the interface IP addresses, and delete routes
658  * through the interface if possible.
659  */
660 int
661 cifaddr(u, o, h)
662     int u;
663     u_int32_t o, h;
664 {
665     struct ifaliasreq ifra;
666
667     strncpy(ifra.ifra_name, ifname, sizeof(ifra.ifra_name));
668     SET_SA_FAMILY(ifra.ifra_addr, AF_INET);
669     ((struct sockaddr_in *) &ifra.ifra_addr)->sin_addr.s_addr = o;
670     SET_SA_FAMILY(ifra.ifra_broadaddr, AF_INET);
671     ((struct sockaddr_in *) &ifra.ifra_broadaddr)->sin_addr.s_addr = h;
672     BZERO(&ifra.ifra_mask, sizeof(ifra.ifra_mask));
673     if (ioctl(sockfd, SIOCDIFADDR, (caddr_t) &ifra) < 0) {
674         syslog(LOG_WARNING, "ioctl(SIOCDIFADDR): %m");
675         return 0;
676     }
677     return 1;
678 }
679
680 /*
681  * sifdefaultroute - assign a default route through the address given.
682  */
683 int
684 sifdefaultroute(u, g)
685     int u;
686     u_int32_t g;
687 {
688     return dodefaultroute(g, 's');
689 }
690
691 /*
692  * cifdefaultroute - delete a default route through the address given.
693  */
694 int
695 cifdefaultroute(u, g)
696     int u;
697     u_int32_t g;
698 {
699     return dodefaultroute(g, 'c');
700 }
701
702 /*
703  * dodefaultroute - talk to a routing socket to add/delete a default route.
704  */
705 int
706 dodefaultroute(g, cmd)
707     u_int32_t g;
708     int cmd;
709 {
710     int routes;
711     struct {
712         struct rt_msghdr        hdr;
713         struct sockaddr_in      dst;
714         struct sockaddr_in      gway;
715         struct sockaddr_in      mask;
716     } rtmsg;
717
718     if ((routes = socket(PF_ROUTE, SOCK_RAW, AF_INET)) < 0) {
719         syslog(LOG_ERR, "%cifdefaultroute: opening routing socket: %m", cmd);
720         return 0;
721     }
722
723     memset(&rtmsg, 0, sizeof(rtmsg));
724     rtmsg.hdr.rtm_type = cmd == 's'? RTM_ADD: RTM_DELETE;
725     rtmsg.hdr.rtm_flags = RTF_UP | RTF_GATEWAY;
726     rtmsg.hdr.rtm_version = RTM_VERSION;
727     rtmsg.hdr.rtm_seq = ++rtm_seq;
728     rtmsg.hdr.rtm_addrs = RTA_DST | RTA_GATEWAY | RTA_NETMASK;
729     rtmsg.dst.sin_len = sizeof(rtmsg.dst);
730     rtmsg.dst.sin_family = AF_INET;
731     rtmsg.gway.sin_len = sizeof(rtmsg.gway);
732     rtmsg.gway.sin_family = AF_INET;
733     rtmsg.gway.sin_addr.s_addr = g;
734     rtmsg.mask.sin_len = sizeof(rtmsg.dst);
735     rtmsg.mask.sin_family = AF_INET;
736
737     rtmsg.hdr.rtm_msglen = sizeof(rtmsg);
738     if (write(routes, &rtmsg, sizeof(rtmsg)) < 0) {
739         syslog(LOG_ERR, "%s default route: %m", cmd=='s'? "add": "delete");
740         close(routes);
741         return 0;
742     }
743
744     close(routes);
745     return 1;
746 }
747
748 #if RTM_VERSION >= 3
749
750 /*
751  * sifproxyarp - Make a proxy ARP entry for the peer.
752  */
753 static struct {
754     struct rt_msghdr            hdr;
755     struct sockaddr_inarp       dst;
756     struct sockaddr_dl          hwa;
757     char                        extra[128];
758 } arpmsg;
759
760 static int arpmsg_valid;
761
762 int
763 sifproxyarp(unit, hisaddr)
764     int unit;
765     u_int32_t hisaddr;
766 {
767     int routes;
768     int l;
769
770     /*
771      * Get the hardware address of an interface on the same subnet
772      * as our local address.
773      */
774     memset(&arpmsg, 0, sizeof(arpmsg));
775     if (!get_ether_addr(hisaddr, &arpmsg.hwa)) {
776         syslog(LOG_ERR, "Cannot determine ethernet address for proxy ARP");
777         return 0;
778     }
779
780     if ((routes = socket(PF_ROUTE, SOCK_RAW, AF_INET)) < 0) {
781         syslog(LOG_ERR, "sifproxyarp: opening routing socket: %m");
782         return 0;
783     }
784
785     arpmsg.hdr.rtm_type = RTM_ADD;
786     arpmsg.hdr.rtm_flags = RTF_ANNOUNCE | RTF_HOST | RTF_STATIC;
787     arpmsg.hdr.rtm_version = RTM_VERSION;
788     arpmsg.hdr.rtm_seq = ++rtm_seq;
789     arpmsg.hdr.rtm_addrs = RTA_DST | RTA_GATEWAY;
790     arpmsg.hdr.rtm_inits = RTV_EXPIRE;
791     arpmsg.dst.sin_len = sizeof(struct sockaddr_inarp);
792     arpmsg.dst.sin_family = AF_INET;
793     arpmsg.dst.sin_addr.s_addr = hisaddr;
794     arpmsg.dst.sin_other = SIN_PROXY;
795
796     arpmsg.hdr.rtm_msglen = (char *) &arpmsg.hwa - (char *) &arpmsg
797         + arpmsg.hwa.sdl_len;
798     if (write(routes, &arpmsg, arpmsg.hdr.rtm_msglen) < 0) {
799         syslog(LOG_ERR, "add proxy arp entry: %m");
800         close(routes);
801         return 0;
802     }
803
804     close(routes);
805     arpmsg_valid = 1;
806     return 1;
807 }
808
809 /*
810  * cifproxyarp - Delete the proxy ARP entry for the peer.
811  */
812 int
813 cifproxyarp(unit, hisaddr)
814     int unit;
815     u_int32_t hisaddr;
816 {
817     int routes;
818
819     if (!arpmsg_valid)
820         return 0;
821     arpmsg_valid = 0;
822
823     arpmsg.hdr.rtm_type = RTM_DELETE;
824     arpmsg.hdr.rtm_seq = ++rtm_seq;
825
826     if ((routes = socket(PF_ROUTE, SOCK_RAW, AF_INET)) < 0) {
827         syslog(LOG_ERR, "sifproxyarp: opening routing socket: %m");
828         return 0;
829     }
830
831     if (write(routes, &arpmsg, arpmsg.hdr.rtm_msglen) < 0) {
832         syslog(LOG_ERR, "delete proxy arp entry: %m");
833         close(routes);
834         return 0;
835     }
836
837     close(routes);
838     return 1;
839 }
840
841 #else   /* RTM_VERSION */
842
843 /*
844  * sifproxyarp - Make a proxy ARP entry for the peer.
845  */
846 int
847 sifproxyarp(unit, hisaddr)
848     int unit;
849     u_int32_t hisaddr;
850 {
851     struct arpreq arpreq;
852     struct {
853         struct sockaddr_dl      sdl;
854         char                    space[128];
855     } dls;
856
857     BZERO(&arpreq, sizeof(arpreq));
858
859     /*
860      * Get the hardware address of an interface on the same subnet
861      * as our local address.
862      */
863     if (!get_ether_addr(hisaddr, &dls.sdl)) {
864         syslog(LOG_ERR, "Cannot determine ethernet address for proxy ARP");
865         return 0;
866     }
867
868     arpreq.arp_ha.sa_len = sizeof(struct sockaddr);
869     arpreq.arp_ha.sa_family = AF_UNSPEC;
870     BCOPY(LLADDR(&dls.sdl), arpreq.arp_ha.sa_data, dls.sdl.sdl_alen);
871     SET_SA_FAMILY(arpreq.arp_pa, AF_INET);
872     ((struct sockaddr_in *) &arpreq.arp_pa)->sin_addr.s_addr = hisaddr;
873     arpreq.arp_flags = ATF_PERM | ATF_PUBL;
874     if (ioctl(sockfd, SIOCSARP, (caddr_t)&arpreq) < 0) {
875         syslog(LOG_ERR, "ioctl(SIOCSARP): %m");
876         return 0;
877     }
878
879     return 1;
880 }
881
882 /*
883  * cifproxyarp - Delete the proxy ARP entry for the peer.
884  */
885 int
886 cifproxyarp(unit, hisaddr)
887     int unit;
888     u_int32_t hisaddr;
889 {
890     struct arpreq arpreq;
891
892     BZERO(&arpreq, sizeof(arpreq));
893     SET_SA_FAMILY(arpreq.arp_pa, AF_INET);
894     ((struct sockaddr_in *) &arpreq.arp_pa)->sin_addr.s_addr = hisaddr;
895     if (ioctl(sockfd, SIOCDARP, (caddr_t)&arpreq) < 0) {
896         syslog(LOG_WARNING, "ioctl(SIOCDARP): %m");
897         return 0;
898     }
899     return 1;
900 }
901 #endif  /* RTM_VERSION */
902
903
904 /*
905  * get_ether_addr - get the hardware address of an interface on the
906  * the same subnet as ipaddr.
907  */
908 #define MAX_IFS         32
909
910 int
911 get_ether_addr(ipaddr, hwaddr)
912     u_int32_t ipaddr;
913     struct sockaddr_dl *hwaddr;
914 {
915     struct ifreq *ifr, *ifend, *ifp;
916     u_int32_t ina, mask;
917     struct sockaddr_dl *dla;
918     struct ifreq ifreq;
919     struct ifconf ifc;
920     struct ifreq ifs[MAX_IFS];
921
922     ifc.ifc_len = sizeof(ifs);
923     ifc.ifc_req = ifs;
924     if (ioctl(sockfd, SIOCGIFCONF, &ifc) < 0) {
925         syslog(LOG_ERR, "ioctl(SIOCGIFCONF): %m");
926         return 0;
927     }
928
929     /*
930      * Scan through looking for an interface with an Internet
931      * address on the same subnet as `ipaddr'.
932      */
933     ifend = (struct ifreq *) (ifc.ifc_buf + ifc.ifc_len);
934     for (ifr = ifc.ifc_req; ifr < ifend; ifr = (struct ifreq *)
935                 ((char *)&ifr->ifr_addr + ifr->ifr_addr.sa_len)) {
936         if (ifr->ifr_addr.sa_family == AF_INET) {
937             ina = ((struct sockaddr_in *) &ifr->ifr_addr)->sin_addr.s_addr;
938             strncpy(ifreq.ifr_name, ifr->ifr_name, sizeof(ifreq.ifr_name));
939             /*
940              * Check that the interface is up, and not point-to-point
941              * or loopback.
942              */
943             if (ioctl(sockfd, SIOCGIFFLAGS, &ifreq) < 0)
944                 continue;
945             if ((ifreq.ifr_flags &
946                  (IFF_UP|IFF_BROADCAST|IFF_POINTOPOINT|IFF_LOOPBACK|IFF_NOARP))
947                  != (IFF_UP|IFF_BROADCAST))
948                 continue;
949             /*
950              * Get its netmask and check that it's on the right subnet.
951              */
952             if (ioctl(sockfd, SIOCGIFNETMASK, &ifreq) < 0)
953                 continue;
954             mask = ((struct sockaddr_in *) &ifreq.ifr_addr)->sin_addr.s_addr;
955             if ((ipaddr & mask) != (ina & mask))
956                 continue;
957
958             break;
959         }
960     }
961
962     if (ifr >= ifend)
963         return 0;
964     syslog(LOG_INFO, "found interface %s for proxy arp", ifr->ifr_name);
965
966     /*
967      * Now scan through again looking for a link-level address
968      * for this interface.
969      */
970     ifp = ifr;
971     for (ifr = ifc.ifc_req; ifr < ifend; ) {
972         if (strcmp(ifp->ifr_name, ifr->ifr_name) == 0
973             && ifr->ifr_addr.sa_family == AF_LINK) {
974             /*
975              * Found the link-level address - copy it out
976              */
977             dla = (struct sockaddr_dl *) &ifr->ifr_addr;
978             BCOPY(dla, hwaddr, dla->sdl_len);
979             return 1;
980         }
981         ifr = (struct ifreq *) ((char *)&ifr->ifr_addr + ifr->ifr_addr.sa_len);
982     }
983
984     return 0;
985 }
986
987 /*
988  * Return user specified netmask, modified by any mask we might determine
989  * for address `addr' (in network byte order).
990  * Here we scan through the system's list of interfaces, looking for
991  * any non-point-to-point interfaces which might appear to be on the same
992  * network as `addr'.  If we find any, we OR in their netmask to the
993  * user-specified netmask.
994  */
995 u_int32_t
996 GetMask(addr)
997     u_int32_t addr;
998 {
999     u_int32_t mask, nmask, ina;
1000     struct ifreq *ifr, *ifend, ifreq;
1001     struct ifconf ifc;
1002     struct ifreq ifs[MAX_IFS];
1003
1004     addr = ntohl(addr);
1005     if (IN_CLASSA(addr))        /* determine network mask for address class */
1006         nmask = IN_CLASSA_NET;
1007     else if (IN_CLASSB(addr))
1008         nmask = IN_CLASSB_NET;
1009     else
1010         nmask = IN_CLASSC_NET;
1011     /* class D nets are disallowed by bad_ip_adrs */
1012     mask = netmask | htonl(nmask);
1013
1014     /*
1015      * Scan through the system's network interfaces.
1016      */
1017     ifc.ifc_len = sizeof(ifs);
1018     ifc.ifc_req = ifs;
1019     if (ioctl(sockfd, SIOCGIFCONF, &ifc) < 0) {
1020         syslog(LOG_WARNING, "ioctl(SIOCGIFCONF): %m");
1021         return mask;
1022     }
1023     ifend = (struct ifreq *) (ifc.ifc_buf + ifc.ifc_len);
1024     for (ifr = ifc.ifc_req; ifr < ifend; ifr = (struct ifreq *)
1025                 ((char *)&ifr->ifr_addr + ifr->ifr_addr.sa_len)) {
1026         /*
1027          * Check the interface's internet address.
1028          */
1029         if (ifr->ifr_addr.sa_family != AF_INET)
1030             continue;
1031         ina = ((struct sockaddr_in *) &ifr->ifr_addr)->sin_addr.s_addr;
1032         if ((ntohl(ina) & nmask) != (addr & nmask))
1033             continue;
1034         /*
1035          * Check that the interface is up, and not point-to-point or loopback.
1036          */
1037         strncpy(ifreq.ifr_name, ifr->ifr_name, sizeof(ifreq.ifr_name));
1038         if (ioctl(sockfd, SIOCGIFFLAGS, &ifreq) < 0)
1039             continue;
1040         if ((ifreq.ifr_flags & (IFF_UP|IFF_POINTOPOINT|IFF_LOOPBACK))
1041             != IFF_UP)
1042             continue;
1043         /*
1044          * Get its netmask and OR it into our mask.
1045          */
1046         if (ioctl(sockfd, SIOCGIFNETMASK, &ifreq) < 0)
1047             continue;
1048         mask |= ((struct sockaddr_in *)&ifreq.ifr_addr)->sin_addr.s_addr;
1049     }
1050
1051     return mask;
1052 }
1053
1054 /*
1055  * lock - create a lock file for the named lock device
1056  */
1057 #define LOCK_PREFIX     "/var/spool/lock/LCK.."
1058
1059 int
1060 lock(dev)
1061     char *dev;
1062 {
1063     char hdb_lock_buffer[12];
1064     int fd, pid, n;
1065     char *p;
1066
1067     if ((p = strrchr(dev, '/')) != NULL)
1068         dev = p + 1;
1069     lock_file = malloc(strlen(LOCK_PREFIX) + strlen(dev) + 1);
1070     if (lock_file == NULL)
1071         novm("lock file name");
1072     strcat(strcpy(lock_file, LOCK_PREFIX), dev);
1073
1074     while ((fd = open(lock_file, O_EXCL | O_CREAT | O_RDWR, 0644)) < 0) {
1075         if (errno == EEXIST
1076             && (fd = open(lock_file, O_RDONLY, 0)) >= 0) {
1077             /* Read the lock file to find out who has the device locked */
1078             n = read(fd, hdb_lock_buffer, 11);
1079             if (n > 0) {
1080                 hdb_lock_buffer[n] = 0;
1081                 pid = atoi(hdb_lock_buffer);
1082             }
1083             if (n <= 0) {
1084                 syslog(LOG_ERR, "Can't read pid from lock file %s", lock_file);
1085                 close(fd);
1086             } else {
1087                 if (kill(pid, 0) == -1 && errno == ESRCH) {
1088                     /* pid no longer exists - remove the lock file */
1089                     if (unlink(lock_file) == 0) {
1090                         close(fd);
1091                         syslog(LOG_NOTICE, "Removed stale lock on %s (pid %d)",
1092                                dev, pid);
1093                         continue;
1094                     } else
1095                         syslog(LOG_WARNING, "Couldn't remove stale lock on %s",
1096                                dev);
1097                 } else
1098                     syslog(LOG_NOTICE, "Device %s is locked by pid %d",
1099                            dev, pid);
1100             }
1101             close(fd);
1102         } else
1103             syslog(LOG_ERR, "Can't create lock file %s: %m", lock_file);
1104         free(lock_file);
1105         lock_file = NULL;
1106         return -1;
1107     }
1108
1109     sprintf(hdb_lock_buffer, "%10d\n", getpid());
1110     write(fd, hdb_lock_buffer, 11);
1111
1112     close(fd);
1113     return 0;
1114 }
1115
1116 /*
1117  * unlock - remove our lockfile
1118  */
1119 unlock()
1120 {
1121     if (lock_file) {
1122         unlink(lock_file);
1123         free(lock_file);
1124         lock_file = NULL;
1125     }
1126 }