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