]> git.ozlabs.org Git - ppp.git/blob - pppd/sys-ultrix.c
increase DEFLOOPBACKFAIL
[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.18 1996/07/01 01:20:29 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, 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 void
141 sys_check_options()
142 {
143     if (demand) {
144         fprintf(stderr,
145                 "Sorry - demand-dialling is not supported under Ultrix\n");
146         exit(1);
147     }
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 ");
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, g)
984 {
985     struct rtentry rt;
986
987     BZERO(&rt, sizeof(rt));
988     SET_SA_FAMILY(rt.rt_dst, AF_INET);
989     SET_SA_FAMILY(rt.rt_gateway, AF_INET);
990     ((struct sockaddr_in *) &rt.rt_gateway)->sin_addr.s_addr = g;
991     rt.rt_flags = RTF_GATEWAY;
992     if (ioctl(sockfd, SIOCADDRT, &rt) < 0) {
993         syslog(LOG_ERR, "default route ioctl(SIOCADDRT): %m");
994         return 0;
995     }
996     default_route_gateway = g;
997     return 1;
998 }
999
1000 /*
1001  * cifdefaultroute - delete a default route through the address given.
1002  */
1003 int
1004 cifdefaultroute(u, g)
1005 {
1006     struct rtentry rt;
1007
1008     BZERO(&rt, sizeof(rt));
1009     SET_SA_FAMILY(rt.rt_dst, AF_INET);
1010     SET_SA_FAMILY(rt.rt_gateway, AF_INET);
1011     ((struct sockaddr_in *) &rt.rt_gateway)->sin_addr.s_addr = g;
1012     rt.rt_flags = RTF_GATEWAY;
1013     if (ioctl(sockfd, SIOCDELRT, &rt) < 0)
1014         syslog(LOG_WARNING, "default route ioctl(SIOCDELRT): %m");
1015     default_route_gateway = 0;
1016     return 1;
1017 }
1018
1019 /*
1020  * sifproxyarp - Make a proxy ARP entry for the peer.
1021  */
1022 int
1023 sifproxyarp(unit, hisaddr)
1024     int unit;
1025     u_int32_t hisaddr;
1026 {
1027     struct arpreq arpreq;
1028
1029     BZERO(&arpreq, sizeof(arpreq));
1030
1031     /*
1032      * Get the hardware address of an interface on the same subnet
1033      * as our local address.
1034      */
1035     if (!get_ether_addr(hisaddr, &arpreq.arp_ha)) {
1036         syslog(LOG_ERR, "Cannot determine ethernet address for proxy ARP");
1037         return 0;
1038     }
1039
1040     SET_SA_FAMILY(arpreq.arp_pa, AF_INET);
1041     ((struct sockaddr_in *) &arpreq.arp_pa)->sin_addr.s_addr = hisaddr;
1042     arpreq.arp_flags = ATF_PERM | ATF_PUBL;
1043     if (ioctl(sockfd, SIOCSARP, (caddr_t)&arpreq) < 0) {
1044         syslog(LOG_ERR, "Couldn't add proxy arp entry: %m");
1045         return 0;
1046     }
1047
1048     proxy_arp_addr = hisaddr;
1049     return 1;
1050 }
1051
1052 /*
1053  * cifproxyarp - Delete the proxy ARP entry for the peer.
1054  */
1055 int
1056 cifproxyarp(unit, hisaddr)
1057     int unit;
1058     u_int32_t hisaddr;
1059 {
1060     struct arpreq arpreq;
1061
1062     BZERO(&arpreq, sizeof(arpreq));
1063     SET_SA_FAMILY(arpreq.arp_pa, AF_INET);
1064     ((struct sockaddr_in *) &arpreq.arp_pa)->sin_addr.s_addr = hisaddr;
1065     if (ioctl(sockfd, SIOCDARP, (caddr_t)&arpreq) < 0) {
1066         syslog(LOG_WARNING, "Couldn't delete proxy arp entry: %m");
1067         return 0;
1068     }
1069     proxy_arp_addr = 0;
1070     return 1;
1071 }
1072
1073 /*
1074  * get_ether_addr - get the hardware address of an interface on the
1075  * the same subnet as ipaddr.
1076  */
1077 #define MAX_IFS         32
1078
1079 static int
1080 get_ether_addr(ipaddr, hwaddr)
1081     u_int32_t ipaddr;
1082     struct sockaddr *hwaddr;
1083 {
1084     struct ifreq *ifr, *ifend;
1085     u_int32_t ina, mask;
1086     struct ifreq ifreq;
1087     struct ifconf ifc;
1088     struct ifreq ifs[MAX_IFS];
1089     struct ifdevea ifdevea;
1090
1091     ifc.ifc_len = sizeof(ifs);
1092     ifc.ifc_req = ifs;
1093     if (ioctl(sockfd, SIOCGIFCONF, &ifc) < 0) {
1094         syslog(LOG_ERR, "ioctl(SIOCGIFCONF): %m");
1095         return 0;
1096     }
1097
1098     /*
1099      * Scan through looking for an interface with an Internet
1100      * address on the same subnet as `ipaddr'.
1101      */
1102     ifend = (struct ifreq *) (ifc.ifc_buf + ifc.ifc_len);
1103     for (ifr = ifc.ifc_req; ifr < ifend; ifr = (struct ifreq *)
1104             ((char *)&ifr->ifr_addr + sizeof(struct sockaddr))) {
1105         if (ifr->ifr_addr.sa_family == AF_INET) {
1106             ina = ((struct sockaddr_in *) &ifr->ifr_addr)->sin_addr.s_addr;
1107             strncpy(ifreq.ifr_name, ifr->ifr_name, sizeof(ifreq.ifr_name));
1108             /*
1109              * Check that the interface is up, and not point-to-point
1110              * or loopback.
1111              */
1112             if (ioctl(sockfd, SIOCGIFFLAGS, &ifreq) < 0)
1113                 continue;
1114             if ((ifreq.ifr_flags &
1115                  (IFF_UP|IFF_BROADCAST|IFF_POINTOPOINT|IFF_LOOPBACK|IFF_NOARP))
1116                  != (IFF_UP|IFF_BROADCAST))
1117                 continue;
1118             /*
1119              * Get its netmask and check that it's on the right subnet.
1120              */
1121             if (ioctl(sockfd, SIOCGIFNETMASK, &ifreq) < 0)
1122                 continue;
1123             mask = ((struct sockaddr_in *) &ifreq.ifr_addr)->sin_addr.s_addr;
1124             if ((ipaddr & mask) != (ina & mask))
1125                 continue;
1126
1127             break;
1128         }
1129     }
1130
1131     if (ifr >= ifend)
1132         return 0;
1133     syslog(LOG_INFO, "found interface %s for proxy arp", ifr->ifr_name);
1134
1135     /*
1136      * Grab the physical address for this interface.
1137      */
1138     strncpy(ifdevea.ifr_name, ifr->ifr_name, sizeof(ifdevea.ifr_name));
1139     if (ioctl(sockfd, SIOCRPHYSADDR, &ifdevea) < 0) {
1140         syslog(LOG_ERR, "Couldn't get h/w address for %s: %m", ifr->ifr_name);
1141         return 0;
1142     }
1143
1144     hwaddr->sa_family = AF_UNSPEC;
1145     BCOPY(ifdevea.current_pa, hwaddr->sa_data, 6);
1146     return 1;
1147 }
1148
1149 /*
1150  * Return user specified netmask, modified by any mask we might determine
1151  * for address `addr' (in network byte order).
1152  * Here we scan through the system's list of interfaces, looking for
1153  * any non-point-to-point interfaces which might appear to be on the same
1154  * network as `addr'.  If we find any, we OR in their netmask to the
1155  * user-specified netmask.
1156  */
1157 u_int32_t
1158 GetMask(addr)
1159     u_int32_t addr;
1160 {
1161     u_int32_t mask, nmask, ina;
1162     struct ifreq *ifr, *ifend, ifreq;
1163     struct ifconf ifc;
1164     struct ifreq ifs[MAX_IFS];
1165
1166     addr = ntohl(addr);
1167     if (IN_CLASSA(addr))        /* determine network mask for address class */
1168         nmask = IN_CLASSA_NET;
1169     else if (IN_CLASSB(addr))
1170         nmask = IN_CLASSB_NET;
1171     else
1172         nmask = IN_CLASSC_NET;
1173     /* class D nets are disallowed by bad_ip_adrs */
1174     mask = netmask | htonl(nmask);
1175
1176     /*
1177      * Scan through the system's network interfaces.
1178      */
1179     ifc.ifc_len = sizeof(ifs);
1180     ifc.ifc_req = ifs;
1181     if (ioctl(sockfd, SIOCGIFCONF, &ifc) < 0) {
1182         syslog(LOG_WARNING, "ioctl(SIOCGIFCONF): %m");
1183         return mask;
1184     }
1185     ifend = (struct ifreq *) (ifc.ifc_buf + ifc.ifc_len);
1186     for (ifr = ifc.ifc_req; ifr < ifend; ifr = (struct ifreq *)
1187                 ((char *)&ifr->ifr_addr + sizeof(struct sockaddr))) {
1188         /*
1189          * Check the interface's internet address.
1190          */
1191         if (ifr->ifr_addr.sa_family != AF_INET)
1192             continue;
1193         ina = ((struct sockaddr_in *) &ifr->ifr_addr)->sin_addr.s_addr;
1194         if ((ntohl(ina) & nmask) != (addr & nmask))
1195             continue;
1196         /*
1197          * Check that the interface is up, and not point-to-point or loopback.
1198          */
1199         strncpy(ifreq.ifr_name, ifr->ifr_name, sizeof(ifreq.ifr_name));
1200         if (ioctl(sockfd, SIOCGIFFLAGS, &ifreq) < 0)
1201             continue;
1202         if ((ifreq.ifr_flags & (IFF_UP|IFF_POINTOPOINT|IFF_LOOPBACK))
1203             != IFF_UP)
1204             continue;
1205         /*
1206          * Get its netmask and OR it into our mask.
1207          */
1208         if (ioctl(sockfd, SIOCGIFNETMASK, &ifreq) < 0)
1209             continue;
1210         mask |= ((struct sockaddr_in *)&ifreq.ifr_addr)->sin_addr.s_addr;
1211     }
1212
1213     return mask;
1214 }
1215
1216
1217 /*
1218   Seems like strdup() is not part of string package in Ultrix.
1219   If I understood the man-page on the sun this should work.
1220
1221   Robert Olsson
1222 */
1223
1224 char *strdup( in ) char *in;
1225 {
1226   char* dup;
1227   if(! (dup = (char *) malloc( strlen( in ) +1 ))) return NULL;
1228   (void) strcpy( dup, in );
1229   return dup;
1230 }
1231
1232 /*
1233  * This logwtmp() implementation is subject to the following copyright:
1234  *
1235  * Copyright (c) 1988 The Regents of the University of California.
1236  * All rights reserved.
1237  *
1238  * Redistribution and use in source and binary forms are permitted
1239  * provided that the above copyright notice and this paragraph are
1240  * duplicated in all such forms and that any documentation,
1241  * advertising materials, and other materials related to such
1242  * distribution and use acknowledge that the software was developed
1243  * by the University of California, Berkeley.  The name of the
1244  * University may not be used to endorse or promote products derived
1245  * from this software without specific prior written permission.
1246  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
1247  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
1248  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
1249  */
1250
1251 #define WTMPFILE        "/usr/adm/wtmp"
1252
1253 int
1254 logwtmp(line, name, host)
1255     char *line, *name, *host;
1256 {
1257     int fd;
1258     struct stat buf;
1259     struct utmp ut;
1260
1261     if ((fd = open(WTMPFILE, O_WRONLY|O_APPEND, 0)) < 0)
1262         return;
1263     if (!fstat(fd, &buf)) {
1264         (void)strncpy(ut.ut_line, line, sizeof(ut.ut_line));
1265         (void)strncpy(ut.ut_name, name, sizeof(ut.ut_name));
1266         (void)strncpy(ut.ut_host, host, sizeof(ut.ut_host));
1267         (void)time(&ut.ut_time);
1268         if (write(fd, (char *)&ut, sizeof(struct utmp)) != sizeof(struct utmp))
1269             (void)ftruncate(fd, buf.st_size);
1270     }
1271     close(fd);
1272 }
1273
1274 /*
1275  * Routines for locking and unlocking the serial device, moved here
1276  * from chat.c.
1277  */
1278
1279 #define LOCK_PREFIX     "/usr/spool/uucp/LCK.."
1280
1281 /*
1282  * lock - create a lock file for the named device
1283  */
1284 int
1285 lock(dev)
1286     char *dev;
1287 {
1288     int fd, pid, n;
1289     char *p;
1290
1291     if ((p = strrchr(dev, '/')) != NULL)
1292         dev = p + 1;
1293     lock_file = malloc(strlen(LOCK_PREFIX) + strlen(dev) + 1);
1294     if (lock_file == NULL)
1295         novm("lock file name");
1296     strcat(strcpy(lock_file, LOCK_PREFIX), dev);
1297
1298     while ((fd = open(lock_file, O_EXCL | O_CREAT | O_RDWR, 0644)) < 0) {
1299         if (errno == EEXIST
1300             && (fd = open(lock_file, O_RDONLY, 0)) >= 0) {
1301             /* Read the lock file to find out who has the device locked */
1302             n = read(fd, &pid, sizeof(pid));
1303             if (n <= 0) {
1304                 syslog(LOG_ERR, "Can't read pid from lock file %s", lock_file);
1305                 close(fd);
1306             } else {
1307                 if (kill(pid, 0) == -1 && errno == ESRCH) {
1308                     /* pid no longer exists - remove the lock file */
1309                     if (unlink(lock_file) == 0) {
1310                         close(fd);
1311                         syslog(LOG_NOTICE, "Removed stale lock on %s (pid %d)",
1312                                dev, pid);
1313                         continue;
1314                     } else
1315                         syslog(LOG_WARNING, "Couldn't remove stale lock on %s",
1316                                dev);
1317                 } else
1318                     syslog(LOG_NOTICE, "Device %s is locked by pid %d",
1319                            dev, pid);
1320             }
1321             close(fd);
1322         } else
1323             syslog(LOG_ERR, "Can't create lock file %s: %m", lock_file);
1324         free(lock_file);
1325         lock_file = NULL;
1326         return -1;
1327     }
1328
1329     pid = getpid();
1330     write(fd, &pid, sizeof pid);
1331
1332     close(fd);
1333     return 0;
1334 }
1335
1336 /*
1337  * unlock - remove our lockfile
1338  */
1339 void
1340 unlock()
1341 {
1342     if (lock_file) {
1343         unlink(lock_file);
1344         free(lock_file);
1345         lock_file = NULL;
1346     }
1347 }