]> git.ozlabs.org Git - ppp.git/blob - pppd/sys-svr4.c
Corrected the comment about the device name option being privileged.
[ppp.git] / pppd / sys-svr4.c
1 /*
2  * System-dependent procedures for pppd under Solaris 2.
3  *
4  * Copyright (c) 1994 The Australian National University.
5  * All rights reserved.
6  *
7  * Permission to use, copy, modify, and distribute this software and its
8  * documentation is hereby granted, provided that the above copyright
9  * notice appears in all copies.  This software is provided without any
10  * warranty, express or implied. The Australian National University
11  * makes no representations about the suitability of this software for
12  * any purpose.
13  *
14  * IN NO EVENT SHALL THE AUSTRALIAN NATIONAL UNIVERSITY BE LIABLE TO ANY
15  * PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
16  * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
17  * THE AUSTRALIAN NATIONAL UNIVERSITY HAVE BEEN ADVISED OF THE POSSIBILITY
18  * OF SUCH DAMAGE.
19  *
20  * THE AUSTRALIAN NATIONAL UNIVERSITY SPECIFICALLY DISCLAIMS ANY WARRANTIES,
21  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
22  * AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
23  * ON AN "AS IS" BASIS, AND THE AUSTRALIAN NATIONAL UNIVERSITY HAS NO
24  * OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS,
25  * OR MODIFICATIONS.
26  */
27
28 #ifndef lint
29 static char rcsid[] = "$Id: sys-svr4.c,v 1.23 1999/03/08 05:34:46 paulus Exp $";
30 #endif
31
32 #include <limits.h>
33 #include <stdio.h>
34 #include <stddef.h>
35 #include <stdlib.h>
36 #include <ctype.h>
37 #include <errno.h>
38 #include <fcntl.h>
39 #include <unistd.h>
40 #include <termios.h>
41 #ifndef CRTSCTS
42 #include <sys/termiox.h>
43 #endif
44 #include <signal.h>
45 #include <utmpx.h>
46 #include <sys/types.h>
47 #include <sys/ioccom.h>
48 #include <sys/stream.h>
49 #include <sys/stropts.h>
50 #include <sys/socket.h>
51 #include <sys/sockio.h>
52 #include <sys/syslog.h>
53 #include <sys/sysmacros.h>
54 #include <sys/systeminfo.h>
55 #include <sys/dlpi.h>
56 #include <sys/stat.h>
57 #include <sys/mkdev.h>
58 #include <net/if.h>
59 #include <net/if_arp.h>
60 #include <net/route.h>
61 #include <net/ppp_defs.h>
62 #include <net/pppio.h>
63 #include <netinet/in.h>
64 #include <sys/tihdr.h>
65 #include <sys/tiuser.h>
66 #include <inet/common.h>
67 #include <inet/mib2.h>
68
69 #include "pppd.h"
70
71 static int      pppfd;
72 static int      fdmuxid = -1;
73 static int      ipfd;
74 static int      ipmuxid = -1;
75
76 static int      restore_term;
77 static struct termios inittermios;
78 #ifndef CRTSCTS
79 static struct termiox inittermiox;
80 static int      termiox_ok;
81 #endif
82 static struct winsize wsinfo;   /* Initial window size info */
83 static pid_t    tty_sid;        /* original session ID for terminal */
84
85 extern u_char   inpacket_buf[]; /* borrowed from main.c */
86
87 static int      link_mtu, link_mru;
88
89 #define NMODULES        32
90 static int      tty_nmodules;
91 static char     tty_modules[NMODULES][FMNAMESZ+1];
92
93 static int      if_is_up;       /* Interface has been marked up */
94 static u_int32_t remote_addr;           /* IP address of peer */
95 static u_int32_t default_route_gateway; /* Gateway for default route added */
96 static u_int32_t proxy_arp_addr;        /* Addr for proxy arp entry added */
97
98 /* Prototypes for procedures local to this file. */
99 static int translate_speed __P((int));
100 static int baud_rate_of __P((int));
101 static int get_ether_addr __P((u_int32_t, struct sockaddr *));
102 static int get_hw_addr __P((char *, u_int32_t, struct sockaddr *));
103 static int dlpi_attach __P((int, int));
104 static int dlpi_info_req __P((int));
105 static int dlpi_get_reply __P((int, union DL_primitives *, int, int));
106 static int strioctl __P((int, int, void *, int, int));
107
108
109 /*
110  * sys_init - System-dependent initialization.
111  */
112 void
113 sys_init()
114 {
115     int ifd, x;
116 #ifndef sun
117     struct ifreq ifr;
118     struct {
119         union DL_primitives prim;
120         char space[64];
121     } reply;
122 #endif
123
124     ipfd = open("/dev/ip", O_RDWR, 0);
125     if (ipfd < 0) {
126         syslog(LOG_ERR, "Couldn't open IP device: %m");
127         die(1);
128     }
129
130     if (default_device)
131         tty_sid = getsid((pid_t)0);
132
133     pppfd = open("/dev/ppp", O_RDWR | O_NONBLOCK, 0);
134     if (pppfd < 0) {
135         syslog(LOG_ERR, "Can't open /dev/ppp: %m");
136         die(1);
137     }
138     if (kdebugflag & 1) {
139         x = PPPDBG_LOG + PPPDBG_DRIVER;
140         strioctl(pppfd, PPPIO_DEBUG, &x, sizeof(int), 0);
141     }
142
143     /* Assign a new PPA and get its unit number. */
144     if (strioctl(pppfd, PPPIO_NEWPPA, &ifunit, 0, sizeof(int)) < 0) {
145         syslog(LOG_ERR, "Can't create new PPP interface: %m");
146         die(1);
147     }
148
149     /*
150      * Open the ppp device again and link it under the ip multiplexor.
151      * IP will assign a unit number which hopefully is the same as ifunit.
152      * I don't know any way to be certain they will be the same. :-(
153      */
154     ifd = open("/dev/ppp", O_RDWR, 0);
155     if (ifd < 0) {
156         syslog(LOG_ERR, "Can't open /dev/ppp (2): %m");
157         die(1);
158     }
159     if (kdebugflag & 1) {
160         x = PPPDBG_LOG + PPPDBG_DRIVER;
161         strioctl(ifd, PPPIO_DEBUG, &x, sizeof(int), 0);
162     }
163 #ifdef sun
164     if (ioctl(ifd, I_PUSH, "ip") < 0) {
165         syslog(LOG_ERR, "Can't push IP module: %m");
166         close(ifd);
167         die(1);
168     }
169 #else
170     if (dlpi_attach(ifd, ifunit) < 0 ||
171         dlpi_get_reply(ifd, &reply.prim, DL_OK_ACK, sizeof(reply)) < 0) {
172         syslog(LOG_ERR, "Can't attach to ppp%d: %m", ifunit);
173         close(ifd);
174         die(1);
175     }
176 #endif
177     ipmuxid = ioctl(ipfd, I_LINK, ifd);
178     close(ifd);
179     if (ipmuxid < 0) {
180         syslog(LOG_ERR, "Can't link PPP device to IP: %m");
181         die(1);
182     }
183
184 #ifndef sun
185     /* Set the interface name for the link. */
186     (void) sprintf (ifr.ifr_name, "ppp%d", ifunit);
187     ifr.ifr_metric = ipmuxid;
188     if (strioctl(ipfd, SIOCSIFNAME, (char *)&ifr, sizeof ifr, 0) < 0) {
189         syslog(LOG_ERR, "Can't set interface name %s: %m", ifr.ifr_name);
190         die(1);
191     }
192 #endif
193 }
194
195 /*
196  * sys_cleanup - restore any system state we modified before exiting:
197  * mark the interface down, delete default route and/or proxy arp entry.
198  * This should call die() because it's called from die().
199  */
200 void
201 sys_cleanup()
202 {
203     struct ifreq ifr;
204
205     if (if_is_up)
206         sifdown(0);
207     if (default_route_gateway)
208         cifdefaultroute(0, default_route_gateway, default_route_gateway);
209     if (proxy_arp_addr)
210         cifproxyarp(0, proxy_arp_addr);
211 }
212
213 /*
214  * sys_close - Clean up in a child process before execing.
215  */
216 void
217 sys_close()
218 {
219     close(ipfd);
220     if (pppfd >= 0)
221         close(pppfd);
222 }
223
224 /*
225  * sys_check_options - check the options that the user specified
226  */
227 int
228 sys_check_options()
229 {
230     return 1;
231 }
232
233
234 /*
235  * daemon - Detach us from controlling terminal session.
236  */
237 int
238 daemon(nochdir, noclose)
239     int nochdir, noclose;
240 {
241     int pid;
242
243     if ((pid = fork()) < 0)
244         return -1;
245     if (pid != 0)
246         exit(0);                /* parent dies */
247     setsid();
248     if (!nochdir)
249         chdir("/");
250     if (!noclose) {
251         fclose(stdin);          /* don't need stdin, stdout, stderr */
252         fclose(stdout);
253         fclose(stderr);
254     }
255     return 0;
256 }
257
258 /*
259  * ppp_available - check whether the system has any ppp interfaces
260  */
261 int
262 ppp_available()
263 {
264     struct stat buf;
265
266     return stat("/dev/ppp", &buf) >= 0;
267 }
268
269 /*
270  * establish_ppp - Turn the serial port into a ppp interface.
271  */
272 void
273 establish_ppp(fd)
274     int fd;
275 {
276     int i;
277
278     /* Pop any existing modules off the tty stream. */
279     for (i = 0;; ++i)
280         if (ioctl(fd, I_LOOK, tty_modules[i]) < 0
281             || ioctl(fd, I_POP, 0) < 0)
282             break;
283     tty_nmodules = i;
284
285     /* Push the async hdlc module and the compressor module. */
286     if (ioctl(fd, I_PUSH, "ppp_ahdl") < 0) {
287         syslog(LOG_ERR, "Couldn't push PPP Async HDLC module: %m");
288         die(1);
289     }
290     if (kdebugflag & 4) {
291         i = PPPDBG_LOG + PPPDBG_AHDLC;
292         strioctl(pppfd, PPPIO_DEBUG, &i, sizeof(int), 0);
293     }
294     if (ioctl(fd, I_PUSH, "ppp_comp") < 0) {
295         syslog(LOG_ERR, "Couldn't push PPP compression module: %m");
296 /*      die(1); */
297     }
298     if (kdebugflag & 2) {
299         i = PPPDBG_LOG + PPPDBG_COMP;
300         strioctl(pppfd, PPPIO_DEBUG, &i, sizeof(int), 0);
301     }
302
303     /* Link the serial port under the PPP multiplexor. */
304     if ((fdmuxid = ioctl(pppfd, I_LINK, fd)) < 0) {
305         syslog(LOG_ERR, "Can't link tty to PPP mux: %m");
306         die(1);
307     }
308 }
309
310 /*
311  * restore_loop - reattach the ppp unit to the loopback.
312  * This doesn't need to do anything because disestablish_ppp does it.
313  */
314 void
315 restore_loop()
316 {
317 }
318
319 /*
320  * disestablish_ppp - Restore the serial port to normal operation.
321  * It attempts to reconstruct the stream with the previously popped
322  * modules.  This shouldn't call die() because it's called from die().
323  */
324 void
325 disestablish_ppp(fd)
326     int fd;
327 {
328     int i;
329
330     if (fdmuxid >= 0) {
331         if (ioctl(pppfd, I_UNLINK, fdmuxid) < 0) {
332             if (!hungup)
333                 syslog(LOG_ERR, "Can't unlink tty from PPP mux: %m");
334         }
335         fdmuxid = -1;
336
337         if (!hungup) {
338             while (ioctl(fd, I_POP, 0) >= 0)
339                 ;
340             for (i = tty_nmodules - 1; i >= 0; --i)
341                 if (ioctl(fd, I_PUSH, tty_modules[i]) < 0)
342                     syslog(LOG_ERR, "Couldn't restore tty module %s: %m",
343                            tty_modules[i]);
344         }
345         if (hungup && default_device && tty_sid > 0) {
346             /*
347              * If we have received a hangup, we need to send a SIGHUP
348              * to the terminal's controlling process.  The reason is
349              * that the original stream head for the terminal hasn't
350              * seen the M_HANGUP message (it went up through the ppp
351              * driver to the stream head for our fd to /dev/ppp).
352              */
353             kill(tty_sid, SIGHUP);
354         }
355     }
356 }
357
358 /*
359  * Check whether the link seems not to be 8-bit clean.
360  */
361 void
362 clean_check()
363 {
364     int x;
365     char *s;
366
367     if (strioctl(pppfd, PPPIO_GCLEAN, &x, 0, sizeof(x)) < 0)
368         return;
369     s = NULL;
370     switch (~x) {
371     case RCV_B7_0:
372         s = "bit 7 set to 1";
373         break;
374     case RCV_B7_1:
375         s = "bit 7 set to 0";
376         break;
377     case RCV_EVNP:
378         s = "odd parity";
379         break;
380     case RCV_ODDP:
381         s = "even parity";
382         break;
383     }
384     if (s != NULL) {
385         syslog(LOG_WARNING, "Serial link is not 8-bit clean:");
386         syslog(LOG_WARNING, "All received characters had %s", s);
387     }
388 }
389
390 /*
391  * List of valid speeds.
392  */
393 struct speed {
394     int speed_int, speed_val;
395 } speeds[] = {
396 #ifdef B50
397     { 50, B50 },
398 #endif
399 #ifdef B75
400     { 75, B75 },
401 #endif
402 #ifdef B110
403     { 110, B110 },
404 #endif
405 #ifdef B134
406     { 134, B134 },
407 #endif
408 #ifdef B150
409     { 150, B150 },
410 #endif
411 #ifdef B200
412     { 200, B200 },
413 #endif
414 #ifdef B300
415     { 300, B300 },
416 #endif
417 #ifdef B600
418     { 600, B600 },
419 #endif
420 #ifdef B1200
421     { 1200, B1200 },
422 #endif
423 #ifdef B1800
424     { 1800, B1800 },
425 #endif
426 #ifdef B2000
427     { 2000, B2000 },
428 #endif
429 #ifdef B2400
430     { 2400, B2400 },
431 #endif
432 #ifdef B3600
433     { 3600, B3600 },
434 #endif
435 #ifdef B4800
436     { 4800, B4800 },
437 #endif
438 #ifdef B7200
439     { 7200, B7200 },
440 #endif
441 #ifdef B9600
442     { 9600, B9600 },
443 #endif
444 #ifdef B19200
445     { 19200, B19200 },
446 #endif
447 #ifdef B38400
448     { 38400, B38400 },
449 #endif
450 #ifdef EXTA
451     { 19200, EXTA },
452 #endif
453 #ifdef EXTB
454     { 38400, EXTB },
455 #endif
456 #ifdef B57600
457     { 57600, B57600 },
458 #endif
459 #ifdef B115200
460     { 115200, B115200 },
461 #endif
462     { 0, 0 }
463 };
464
465 /*
466  * Translate from bits/second to a speed_t.
467  */
468 static int
469 translate_speed(bps)
470     int bps;
471 {
472     struct speed *speedp;
473
474     if (bps == 0)
475         return 0;
476     for (speedp = speeds; speedp->speed_int; speedp++)
477         if (bps == speedp->speed_int)
478             return speedp->speed_val;
479     syslog(LOG_WARNING, "speed %d not supported", bps);
480     return 0;
481 }
482
483 /*
484  * Translate from a speed_t to bits/second.
485  */
486 static int
487 baud_rate_of(speed)
488     int speed;
489 {
490     struct speed *speedp;
491
492     if (speed == 0)
493         return 0;
494     for (speedp = speeds; speedp->speed_int; speedp++)
495         if (speed == speedp->speed_val)
496             return speedp->speed_int;
497     return 0;
498 }
499
500 /*
501  * set_up_tty: Set up the serial port on `fd' for 8 bits, no parity,
502  * at the requested speed, etc.  If `local' is true, set CLOCAL
503  * regardless of whether the modem option was specified.
504  */
505 void
506 set_up_tty(fd, local)
507     int fd, local;
508 {
509     int speed;
510     struct termios tios;
511 #if !defined (CRTSCTS)
512     struct termiox tiox;
513 #endif
514
515     if (tcgetattr(fd, &tios) < 0) {
516         syslog(LOG_ERR, "tcgetattr: %m");
517         die(1);
518     }
519
520 #ifndef CRTSCTS
521     termiox_ok = 1;
522     if (ioctl (fd, TCGETX, &tiox) < 0) {
523         termiox_ok = 0;
524         if (errno != ENOTTY)
525             syslog (LOG_ERR, "TCGETX: %m");
526     }
527 #endif
528
529     if (!restore_term) {
530         inittermios = tios;
531 #ifndef CRTSCTS
532         inittermiox = tiox;
533 #endif
534         ioctl(fd, TIOCGWINSZ, &wsinfo);
535     }
536
537     tios.c_cflag &= ~(CSIZE | CSTOPB | PARENB | CLOCAL);
538 #ifdef CRTSCTS
539     if (crtscts > 0)
540         tios.c_cflag |= CRTSCTS;
541     else if (crtscts < 0)
542         tios.c_cflag &= ~CRTSCTS;
543 #else
544     if (crtscts != 0 && !termiox_ok) {
545         syslog(LOG_ERR, "Can't set RTS/CTS flow control");
546     } else if (crtscts > 0) {
547         tiox.x_hflag |= RTSXOFF|CTSXON;
548     } else if (crtscts < 0) {
549         tiox.x_hflag &= ~(RTSXOFF|CTSXON);
550     }
551 #endif
552
553     tios.c_cflag |= CS8 | CREAD | HUPCL;
554     if (local || !modem)
555         tios.c_cflag |= CLOCAL;
556     tios.c_iflag = IGNBRK | IGNPAR;
557     tios.c_oflag = 0;
558     tios.c_lflag = 0;
559     tios.c_cc[VMIN] = 1;
560     tios.c_cc[VTIME] = 0;
561
562     if (crtscts == -2) {
563         tios.c_iflag |= IXON | IXOFF;
564         tios.c_cc[VSTOP] = 0x13;        /* DC3 = XOFF = ^S */
565         tios.c_cc[VSTART] = 0x11;       /* DC1 = XON  = ^Q */
566     }
567
568     speed = translate_speed(inspeed);
569     if (speed) {
570         cfsetospeed(&tios, speed);
571         cfsetispeed(&tios, speed);
572     } else {
573         speed = cfgetospeed(&tios);
574         /*
575          * We can't proceed if the serial port speed is 0,
576          * since that implies that the serial port is disabled.
577          */
578         if (speed == B0) {
579             syslog(LOG_ERR, "Baud rate for %s is 0; need explicit baud rate",
580                    devnam);
581             die(1);
582         }
583     }
584
585     if (tcsetattr(fd, TCSAFLUSH, &tios) < 0) {
586         syslog(LOG_ERR, "tcsetattr: %m");
587         die(1);
588     }
589
590 #ifndef CRTSCTS
591     if (termiox_ok && ioctl (fd, TCSETXF, &tiox) < 0){
592         syslog (LOG_ERR, "TCSETXF: %m");
593     }
594 #endif
595
596     baud_rate = inspeed = baud_rate_of(speed);
597     restore_term = 1;
598 }
599
600 /*
601  * restore_tty - restore the terminal to the saved settings.
602  */
603 void
604 restore_tty(fd)
605     int fd;
606 {
607     if (restore_term) {
608         if (!default_device) {
609             /*
610              * Turn off echoing, because otherwise we can get into
611              * a loop with the tty and the modem echoing to each other.
612              * We presume we are the sole user of this tty device, so
613              * when we close it, it will revert to its defaults anyway.
614              */
615             inittermios.c_lflag &= ~(ECHO | ECHONL);
616         }
617         if (tcsetattr(fd, TCSAFLUSH, &inittermios) < 0)
618             if (!hungup && errno != ENXIO)
619                 syslog(LOG_WARNING, "tcsetattr: %m");
620 #ifndef CRTSCTS
621         if (ioctl (fd, TCSETXF, &inittermiox) < 0){
622             if (!hungup && errno != ENXIO)
623                 syslog (LOG_ERR, "TCSETXF: %m");
624         }
625 #endif
626         ioctl(fd, TIOCSWINSZ, &wsinfo);
627         restore_term = 0;
628     }
629 }
630
631 /*
632  * setdtr - control the DTR line on the serial port.
633  * This is called from die(), so it shouldn't call die().
634  */
635 void
636 setdtr(fd, on)
637 int fd, on;
638 {
639     int modembits = TIOCM_DTR;
640
641     ioctl(fd, (on? TIOCMBIS: TIOCMBIC), &modembits);
642 }
643
644 /*
645  * open_loopback - open the device we use for getting packets
646  * in demand mode.  Under Solaris 2, we use our existing fd
647  * to the ppp driver.
648  */
649 void
650 open_ppp_loopback()
651 {
652 }
653
654 /*
655  * output - Output PPP packet.
656  */
657 void
658 output(unit, p, len)
659     int unit;
660     u_char *p;
661     int len;
662 {
663     struct strbuf data;
664     int retries;
665     struct pollfd pfd;
666
667     if (debug)
668         log_packet(p, len, "sent ", LOG_DEBUG);
669
670     data.len = len;
671     data.buf = (caddr_t) p;
672     retries = 4;
673     while (putmsg(pppfd, NULL, &data, 0) < 0) {
674         if (--retries < 0 || (errno != EWOULDBLOCK && errno != EAGAIN)) {
675             if (errno != ENXIO)
676                 syslog(LOG_ERR, "Couldn't send packet: %m");
677             break;
678         }
679         pfd.fd = pppfd;
680         pfd.events = POLLOUT;
681         poll(&pfd, 1, 250);     /* wait for up to 0.25 seconds */
682     }
683 }
684
685
686 /*
687  * wait_input - wait until there is data available on fd,
688  * for the length of time specified by *timo (indefinite
689  * if timo is NULL).
690  */
691 void
692 wait_input(timo)
693     struct timeval *timo;
694 {
695     int t;
696     struct pollfd pfd;
697
698     t = timo == NULL? -1: timo->tv_sec * 1000 + timo->tv_usec / 1000;
699     pfd.fd = pppfd;
700     pfd.events = POLLIN | POLLPRI | POLLHUP;
701     if (poll(&pfd, 1, t) < 0 && errno != EINTR) {
702         syslog(LOG_ERR, "poll: %m");
703         die(1);
704     }
705 }
706
707 /*
708  * wait_loop_output - wait until there is data available on the
709  * loopback, for the length of time specified by *timo (indefinite
710  * if timo is NULL).
711  */
712 void
713 wait_loop_output(timo)
714     struct timeval *timo;
715 {
716     wait_input(timo);
717 }
718
719 /*
720  * wait_time - wait for a given length of time or until a
721  * signal is received.
722  */
723 void
724 wait_time(timo)
725     struct timeval *timo;
726 {
727     int n;
728
729     n = select(0, NULL, NULL, NULL, timo);
730     if (n < 0 && errno != EINTR) {
731         syslog(LOG_ERR, "select: %m");
732         die(1);
733     }
734 }
735
736
737 /*
738  * read_packet - get a PPP packet from the serial device.
739  */
740 int
741 read_packet(buf)
742     u_char *buf;
743 {
744     struct strbuf ctrl, data;
745     int flags, len;
746     unsigned char ctrlbuf[sizeof(union DL_primitives) + 64];
747
748     for (;;) {
749         data.maxlen = PPP_MRU + PPP_HDRLEN;
750         data.buf = (caddr_t) buf;
751         ctrl.maxlen = sizeof(ctrlbuf);
752         ctrl.buf = (caddr_t) ctrlbuf;
753         flags = 0;
754         len = getmsg(pppfd, &ctrl, &data, &flags);
755         if (len < 0) {
756             if (errno == EAGAIN || errno == EINTR)
757                 return -1;
758             syslog(LOG_ERR, "Error reading packet: %m");
759             die(1);
760         }
761
762         if (ctrl.len <= 0)
763             return data.len;
764
765         /*
766          * Got a M_PROTO or M_PCPROTO message.  Interpret it
767          * as a DLPI primitive??
768          */
769         if (debug)
770             syslog(LOG_DEBUG, "got dlpi prim 0x%x, len=%d",
771                    ((union DL_primitives *)ctrlbuf)->dl_primitive, ctrl.len);
772
773     }
774 }
775
776 /*
777  * get_loop_output - get outgoing packets from the ppp device,
778  * and detect when we want to bring the real link up.
779  * Return value is 1 if we need to bring up the link, 0 otherwise.
780  */
781 int
782 get_loop_output()
783 {
784     int len;
785     int rv = 0;
786
787     while ((len = read_packet(inpacket_buf)) > 0) {
788         if (loop_frame(inpacket_buf, len))
789             rv = 1;
790     }
791     return rv;
792 }
793
794 /*
795  * ppp_send_config - configure the transmit characteristics of
796  * the ppp interface.
797  */
798 void
799 ppp_send_config(unit, mtu, asyncmap, pcomp, accomp)
800     int unit, mtu;
801     u_int32_t asyncmap;
802     int pcomp, accomp;
803 {
804     int cf[2];
805     struct ifreq ifr;
806
807     link_mtu = mtu;
808     if (strioctl(pppfd, PPPIO_MTU, &mtu, sizeof(mtu), 0) < 0) {
809         if (hungup && errno == ENXIO)
810             return;
811         syslog(LOG_ERR, "Couldn't set MTU: %m");
812     }
813     if (fdmuxid >= 0) {
814         /* can't set these if we don't have a stream attached below /dev/ppp */
815         if (strioctl(pppfd, PPPIO_XACCM, &asyncmap, sizeof(asyncmap), 0) < 0) {
816             syslog(LOG_ERR, "Couldn't set transmit ACCM: %m");
817         }
818         cf[0] = (pcomp? COMP_PROT: 0) + (accomp? COMP_AC: 0);
819         cf[1] = COMP_PROT | COMP_AC;
820         if (strioctl(pppfd, PPPIO_CFLAGS, cf, sizeof(cf), sizeof(int)) < 0) {
821             syslog(LOG_ERR, "Couldn't set prot/AC compression: %m");
822         }
823     }
824
825     /* set the MTU for IP as well */
826     memset(&ifr, 0, sizeof(ifr));
827     strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
828     ifr.ifr_metric = link_mtu;
829     if (ioctl(ipfd, SIOCSIFMTU, &ifr) < 0) {
830         syslog(LOG_ERR, "Couldn't set IP MTU: %m");
831     }
832 }
833
834 /*
835  * ppp_set_xaccm - set the extended transmit ACCM for the interface.
836  */
837 void
838 ppp_set_xaccm(unit, accm)
839     int unit;
840     ext_accm accm;
841 {
842     if (fdmuxid >= 0
843         && strioctl(pppfd, PPPIO_XACCM, accm, sizeof(ext_accm), 0) < 0) {
844         if (!hungup || errno != ENXIO)
845             syslog(LOG_WARNING, "Couldn't set extended ACCM: %m");
846     }
847 }
848
849 /*
850  * ppp_recv_config - configure the receive-side characteristics of
851  * the ppp interface.
852  */
853 void
854 ppp_recv_config(unit, mru, asyncmap, pcomp, accomp)
855     int unit, mru;
856     u_int32_t asyncmap;
857     int pcomp, accomp;
858 {
859     int cf[2];
860
861     link_mru = mru;
862     if (strioctl(pppfd, PPPIO_MRU, &mru, sizeof(mru), 0) < 0) {
863         if (hungup && errno == ENXIO)
864             return;
865         syslog(LOG_ERR, "Couldn't set MRU: %m");
866     }
867     if (fdmuxid >= 0) {
868         /* can't set these if we don't have a stream attached below /dev/ppp */
869         if (strioctl(pppfd, PPPIO_RACCM, &asyncmap, sizeof(asyncmap), 0) < 0) {
870             syslog(LOG_ERR, "Couldn't set receive ACCM: %m");
871         }
872         cf[0] = (pcomp? DECOMP_PROT: 0) + (accomp? DECOMP_AC: 0);
873         cf[1] = DECOMP_PROT | DECOMP_AC;
874         if (strioctl(pppfd, PPPIO_CFLAGS, cf, sizeof(cf), sizeof(int)) < 0) {
875             syslog(LOG_ERR, "Couldn't set prot/AC decompression: %m");
876         }
877     }
878 }
879
880 /*
881  * ccp_test - ask kernel whether a given compression method
882  * is acceptable for use.
883  */
884 int
885 ccp_test(unit, opt_ptr, opt_len, for_transmit)
886     int unit, opt_len, for_transmit;
887     u_char *opt_ptr;
888 {
889     if (strioctl(pppfd, (for_transmit? PPPIO_XCOMP: PPPIO_RCOMP),
890                  opt_ptr, opt_len, 0) >= 0)
891         return 1;
892     return (errno == ENOSR)? 0: -1;
893 }
894
895 /*
896  * ccp_flags_set - inform kernel about the current state of CCP.
897  */
898 void
899 ccp_flags_set(unit, isopen, isup)
900     int unit, isopen, isup;
901 {
902     int cf[2];
903
904     cf[0] = (isopen? CCP_ISOPEN: 0) + (isup? CCP_ISUP: 0);
905     cf[1] = CCP_ISOPEN | CCP_ISUP | CCP_ERROR | CCP_FATALERROR;
906     if (strioctl(pppfd, PPPIO_CFLAGS, cf, sizeof(cf), sizeof(int)) < 0) {
907         if (!hungup || errno != ENXIO)
908             syslog(LOG_ERR, "Couldn't set kernel CCP state: %m");
909     }
910 }
911
912 /*
913  * get_idle_time - return how long the link has been idle.
914  */
915 int
916 get_idle_time(u, ip)
917     int u;
918     struct ppp_idle *ip;
919 {
920     return strioctl(pppfd, PPPIO_GIDLE, ip, 0, sizeof(struct ppp_idle)) >= 0;
921 }
922
923 #if 0
924 /*
925  * set_filters - transfer the pass and active filters to the kernel.
926  */
927 int
928 set_filters(pass, active)
929     struct bpf_program *pass, *active;
930 {
931     int ret = 1;
932
933     if (pass->bf_len > 0) {
934         if (strioctl(pppfd, PPPIO_PASSFILT, pass,
935                      sizeof(struct bpf_program), 0) < 0) {
936             syslog(LOG_ERR, "Couldn't set pass-filter in kernel: %m");
937             ret = 0;
938         }
939     }
940     if (active->bf_len > 0) {
941         if (strioctl(pppfd, PPPIO_ACTIVEFILT, active,
942                      sizeof(struct bpf_program), 0) < 0) {
943             syslog(LOG_ERR, "Couldn't set active-filter in kernel: %m");
944             ret = 0;
945         }
946     }
947     return ret;
948 }
949 #endif
950
951 /*
952  * ccp_fatal_error - returns 1 if decompression was disabled as a
953  * result of an error detected after decompression of a packet,
954  * 0 otherwise.  This is necessary because of patent nonsense.
955  */
956 int
957 ccp_fatal_error(unit)
958     int unit;
959 {
960     int cf[2];
961
962     cf[0] = cf[1] = 0;
963     if (strioctl(pppfd, PPPIO_CFLAGS, cf, sizeof(cf), sizeof(int)) < 0) {
964         if (errno != ENXIO && errno != EINVAL)
965             syslog(LOG_ERR, "Couldn't get compression flags: %m");
966         return 0;
967     }
968     return cf[0] & CCP_FATALERROR;
969 }
970
971 /*
972  * sifvjcomp - config tcp header compression
973  */
974 int
975 sifvjcomp(u, vjcomp, xcidcomp, xmaxcid)
976     int u, vjcomp, xcidcomp, xmaxcid;
977 {
978     int cf[2];
979     char maxcid[2];
980
981     if (vjcomp) {
982         maxcid[0] = xcidcomp;
983         maxcid[1] = 15;         /* XXX should be rmaxcid */
984         if (strioctl(pppfd, PPPIO_VJINIT, maxcid, sizeof(maxcid), 0) < 0) {
985             syslog(LOG_ERR, "Couldn't initialize VJ compression: %m");
986         }
987     }
988
989     cf[0] = (vjcomp? COMP_VJC + DECOMP_VJC: 0)  /* XXX this is wrong */
990         + (xcidcomp? COMP_VJCCID + DECOMP_VJCCID: 0);
991     cf[1] = COMP_VJC + DECOMP_VJC + COMP_VJCCID + DECOMP_VJCCID;
992     if (strioctl(pppfd, PPPIO_CFLAGS, cf, sizeof(cf), sizeof(int)) < 0) {
993         if (vjcomp)
994             syslog(LOG_ERR, "Couldn't enable VJ compression: %m");
995     }
996
997     return 1;
998 }
999
1000 /*
1001  * sifup - Config the interface up and enable IP packets to pass.
1002  */
1003 int
1004 sifup(u)
1005     int u;
1006 {
1007     struct ifreq ifr;
1008
1009     strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
1010     if (ioctl(ipfd, SIOCGIFFLAGS, &ifr) < 0) {
1011         syslog(LOG_ERR, "Couldn't mark interface up (get): %m");
1012         return 0;
1013     }
1014     ifr.ifr_flags |= IFF_UP;
1015     if (ioctl(ipfd, SIOCSIFFLAGS, &ifr) < 0) {
1016         syslog(LOG_ERR, "Couldn't mark interface up (set): %m");
1017         return 0;
1018     }
1019     if_is_up = 1;
1020     return 1;
1021 }
1022
1023 /*
1024  * sifdown - Config the interface down and disable IP.
1025  */
1026 int
1027 sifdown(u)
1028     int u;
1029 {
1030     struct ifreq ifr;
1031
1032     if (ipmuxid < 0)
1033         return 1;
1034     strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
1035     if (ioctl(ipfd, SIOCGIFFLAGS, &ifr) < 0) {
1036         syslog(LOG_ERR, "Couldn't mark interface down (get): %m");
1037         return 0;
1038     }
1039     ifr.ifr_flags &= ~IFF_UP;
1040     if (ioctl(ipfd, SIOCSIFFLAGS, &ifr) < 0) {
1041         syslog(LOG_ERR, "Couldn't mark interface down (set): %m");
1042         return 0;
1043     }
1044     if_is_up = 0;
1045     return 1;
1046 }
1047
1048 /*
1049  * sifnpmode - Set the mode for handling packets for a given NP.
1050  */
1051 int
1052 sifnpmode(u, proto, mode)
1053     int u;
1054     int proto;
1055     enum NPmode mode;
1056 {
1057     int npi[2];
1058
1059     npi[0] = proto;
1060     npi[1] = (int) mode;
1061     if (strioctl(pppfd, PPPIO_NPMODE, &npi, 2 * sizeof(int), 0) < 0) {
1062         syslog(LOG_ERR, "ioctl(set NP %d mode to %d): %m", proto, mode);
1063         return 0;
1064     }
1065     return 1;
1066 }
1067
1068 #define INET_ADDR(x)    (((struct sockaddr_in *) &(x))->sin_addr.s_addr)
1069
1070 /*
1071  * sifaddr - Config the interface IP addresses and netmask.
1072  */
1073 int
1074 sifaddr(u, o, h, m)
1075     int u;
1076     u_int32_t o, h, m;
1077 {
1078     struct ifreq ifr;
1079     int ret = 1;
1080
1081     memset(&ifr, 0, sizeof(ifr));
1082     strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
1083     ifr.ifr_addr.sa_family = AF_INET;
1084     INET_ADDR(ifr.ifr_addr) = m;
1085     if (ioctl(ipfd, SIOCSIFNETMASK, &ifr) < 0) {
1086         syslog(LOG_ERR, "Couldn't set IP netmask: %m");
1087         ret = 0;
1088     }
1089     ifr.ifr_addr.sa_family = AF_INET;
1090     INET_ADDR(ifr.ifr_addr) = o;
1091     if (ioctl(ipfd, SIOCSIFADDR, &ifr) < 0) {
1092         syslog(LOG_ERR, "Couldn't set local IP address: %m");
1093         ret = 0;
1094     }
1095
1096     /*
1097      * On some systems, we have to explicitly set the point-to-point
1098      * flag bit before we can set a destination address.
1099      */
1100     if (ioctl(ipfd, SIOCGIFFLAGS, &ifr) >= 0
1101         && (ifr.ifr_flags & IFF_POINTOPOINT) == 0) {
1102         ifr.ifr_flags |= IFF_POINTOPOINT;
1103         if (ioctl(ipfd, SIOCSIFFLAGS, &ifr) < 0) {
1104             syslog(LOG_ERR, "Couldn't mark interface pt-to-pt: %m");
1105             ret = 0;
1106         }
1107     }
1108     ifr.ifr_dstaddr.sa_family = AF_INET;
1109     INET_ADDR(ifr.ifr_dstaddr) = h;
1110     if (ioctl(ipfd, SIOCSIFDSTADDR, &ifr) < 0) {
1111         syslog(LOG_ERR, "Couldn't set remote IP address: %m");
1112         ret = 0;
1113     }
1114 #if 0   /* now done in ppp_send_config */
1115     ifr.ifr_metric = link_mtu;
1116     if (ioctl(ipfd, SIOCSIFMTU, &ifr) < 0) {
1117         syslog(LOG_ERR, "Couldn't set IP MTU: %m");
1118     }
1119 #endif
1120
1121     remote_addr = h;
1122     return ret;
1123 }
1124
1125 /*
1126  * cifaddr - Clear the interface IP addresses, and delete routes
1127  * through the interface if possible.
1128  */
1129 int
1130 cifaddr(u, o, h)
1131     int u;
1132     u_int32_t o, h;
1133 {
1134 #if defined(__USLC__)           /* was: #if 0 */
1135     cifroute(unit, ouraddr, hisaddr);
1136     if (ipmuxid >= 0) {
1137         syslog(LOG_NOTICE, "Removing ppp interface unit");
1138         if (ioctl(ipfd, I_UNLINK, ipmuxid) < 0) {
1139             syslog(LOG_ERR, "Can't remove ppp interface unit: %m");
1140             return 0;
1141         }
1142         ipmuxid = -1;
1143     }
1144 #endif
1145     remote_addr = 0;
1146     return 1;
1147 }
1148
1149 /*
1150  * sifdefaultroute - assign a default route through the address given.
1151  */
1152 int
1153 sifdefaultroute(u, l, g)
1154     int u;
1155     u_int32_t l, g;
1156 {
1157     struct rtentry rt;
1158
1159 #if defined(__USLC__)
1160     g = l;                      /* use the local address as gateway */
1161 #endif
1162     memset(&rt, 0, sizeof(rt));
1163     rt.rt_dst.sa_family = AF_INET;
1164     INET_ADDR(rt.rt_dst) = 0;
1165     rt.rt_gateway.sa_family = AF_INET;
1166     INET_ADDR(rt.rt_gateway) = g;
1167     rt.rt_flags = RTF_GATEWAY;
1168
1169     if (ioctl(ipfd, SIOCADDRT, &rt) < 0) {
1170         syslog(LOG_ERR, "Can't add default route: %m");
1171         return 0;
1172     }
1173
1174     default_route_gateway = g;
1175     return 1;
1176 }
1177
1178 /*
1179  * cifdefaultroute - delete a default route through the address given.
1180  */
1181 int
1182 cifdefaultroute(u, l, g)
1183     int u;
1184     u_int32_t l, g;
1185 {
1186     struct rtentry rt;
1187
1188 #if defined(__USLC__)
1189     g = l;                      /* use the local address as gateway */
1190 #endif
1191     memset(&rt, 0, sizeof(rt));
1192     rt.rt_dst.sa_family = AF_INET;
1193     INET_ADDR(rt.rt_dst) = 0;
1194     rt.rt_gateway.sa_family = AF_INET;
1195     INET_ADDR(rt.rt_gateway) = g;
1196     rt.rt_flags = RTF_GATEWAY;
1197
1198     if (ioctl(ipfd, SIOCDELRT, &rt) < 0) {
1199         syslog(LOG_ERR, "Can't delete default route: %m");
1200         return 0;
1201     }
1202
1203     default_route_gateway = 0;
1204     return 1;
1205 }
1206
1207 /*
1208  * sifproxyarp - Make a proxy ARP entry for the peer.
1209  */
1210 int
1211 sifproxyarp(unit, hisaddr)
1212     int unit;
1213     u_int32_t hisaddr;
1214 {
1215     struct arpreq arpreq;
1216
1217     memset(&arpreq, 0, sizeof(arpreq));
1218     if (!get_ether_addr(hisaddr, &arpreq.arp_ha))
1219         return 0;
1220
1221     arpreq.arp_pa.sa_family = AF_INET;
1222     INET_ADDR(arpreq.arp_pa) = hisaddr;
1223     arpreq.arp_flags = ATF_PERM | ATF_PUBL;
1224     if (ioctl(ipfd, SIOCSARP, (caddr_t) &arpreq) < 0) {
1225         syslog(LOG_ERR, "Couldn't set proxy ARP entry: %m");
1226         return 0;
1227     }
1228
1229     proxy_arp_addr = hisaddr;
1230     return 1;
1231 }
1232
1233 /*
1234  * cifproxyarp - Delete the proxy ARP entry for the peer.
1235  */
1236 int
1237 cifproxyarp(unit, hisaddr)
1238     int unit;
1239     u_int32_t hisaddr;
1240 {
1241     struct arpreq arpreq;
1242
1243     memset(&arpreq, 0, sizeof(arpreq));
1244     arpreq.arp_pa.sa_family = AF_INET;
1245     INET_ADDR(arpreq.arp_pa) = hisaddr;
1246     if (ioctl(ipfd, SIOCDARP, (caddr_t)&arpreq) < 0) {
1247         syslog(LOG_ERR, "Couldn't delete proxy ARP entry: %m");
1248         return 0;
1249     }
1250
1251     proxy_arp_addr = 0;
1252     return 1;
1253 }
1254
1255 /*
1256  * get_ether_addr - get the hardware address of an interface on the
1257  * the same subnet as ipaddr.
1258  */
1259 #define MAX_IFS         32
1260
1261 static int
1262 get_ether_addr(ipaddr, hwaddr)
1263     u_int32_t ipaddr;
1264     struct sockaddr *hwaddr;
1265 {
1266     struct ifreq *ifr, *ifend, ifreq;
1267     int nif;
1268     struct ifconf ifc;
1269     u_int32_t ina, mask;
1270
1271     /*
1272      * Scan through the system's network interfaces.
1273      */
1274 #ifdef SIOCGIFNUM
1275     if (ioctl(ipfd, SIOCGIFNUM, &nif) < 0)
1276 #endif
1277         nif = MAX_IFS;
1278     ifc.ifc_len = nif * sizeof(struct ifreq);
1279     ifc.ifc_buf = (caddr_t) malloc(ifc.ifc_len);
1280     if (ifc.ifc_buf == 0)
1281         return 0;
1282     if (ioctl(ipfd, SIOCGIFCONF, &ifc) < 0) {
1283         syslog(LOG_WARNING, "Couldn't get system interface list: %m");
1284         free(ifc.ifc_buf);
1285         return 0;
1286     }
1287     ifend = (struct ifreq *) (ifc.ifc_buf + ifc.ifc_len);
1288     for (ifr = ifc.ifc_req; ifr < ifend; ++ifr) {
1289         if (ifr->ifr_addr.sa_family != AF_INET)
1290             continue;
1291         /*
1292          * Check that the interface is up, and not point-to-point or loopback.
1293          */
1294         strncpy(ifreq.ifr_name, ifr->ifr_name, sizeof(ifreq.ifr_name));
1295         if (ioctl(ipfd, SIOCGIFFLAGS, &ifreq) < 0)
1296             continue;
1297         if ((ifreq.ifr_flags &
1298              (IFF_UP|IFF_BROADCAST|IFF_POINTOPOINT|IFF_LOOPBACK|IFF_NOARP))
1299             != (IFF_UP|IFF_BROADCAST))
1300             continue;
1301         /*
1302          * Get its netmask and check that it's on the right subnet.
1303          */
1304         if (ioctl(ipfd, SIOCGIFNETMASK, &ifreq) < 0)
1305             continue;
1306         ina = INET_ADDR(ifr->ifr_addr);
1307         mask = INET_ADDR(ifreq.ifr_addr);
1308         if ((ipaddr & mask) == (ina & mask))
1309             break;
1310     }
1311
1312     if (ifr >= ifend) {
1313         syslog(LOG_WARNING, "No suitable interface found for proxy ARP");
1314         free(ifc.ifc_buf);
1315         return 0;
1316     }
1317
1318     syslog(LOG_INFO, "found interface %s for proxy ARP", ifr->ifr_name);
1319     if (!get_hw_addr(ifr->ifr_name, ina, hwaddr)) {
1320         syslog(LOG_ERR, "Couldn't get hardware address for %s", ifr->ifr_name);
1321         free(ifc.ifc_buf);
1322         return 0;
1323     }
1324
1325     free(ifc.ifc_buf);
1326     return 1;
1327 }
1328
1329 /*
1330  * get_hw_addr - obtain the hardware address for a named interface.
1331  */
1332 static int
1333 get_hw_addr(name, ina, hwaddr)
1334     char *name;
1335     u_int32_t ina;
1336     struct sockaddr *hwaddr;
1337 {
1338 #if 1
1339     /* New way - get the address by doing an arp request. */
1340     int s;
1341     struct arpreq req;
1342
1343     s = socket(AF_INET, SOCK_DGRAM, 0);
1344     if (s < 0)
1345         return 0;
1346     memset(&req, 0, sizeof(req));
1347     req.arp_pa.sa_family = AF_INET;
1348     INET_ADDR(req.arp_pa) = ina;
1349     if (ioctl(s, SIOCGARP, &req) < 0) {
1350         syslog(LOG_ERR, "Couldn't get ARP entry for %s: %m", ip_ntoa(ina));
1351         return 0;
1352     }
1353     *hwaddr = req.arp_ha;
1354     hwaddr->sa_family = AF_UNSPEC;
1355
1356 #else /* 0 */
1357     char *p, *q;
1358     int unit, iffd, adrlen;
1359     unsigned char *adrp;
1360     char ifdev[24];
1361     struct {
1362         union DL_primitives prim;
1363         char space[64];
1364     } reply;
1365
1366     /*
1367      * We have to open the device and ask it for its hardware address.
1368      * First split apart the device name and unit.
1369      */
1370     strcpy(ifdev, "/dev/");
1371     q = ifdev + 5;              /* strlen("/dev/") */
1372     while (*name != 0 && !isdigit(*name))
1373         *q++ = *name++;
1374     *q = 0;
1375     unit = atoi(name);
1376
1377     /*
1378      * Open the device and do a DLPI attach and phys_addr_req.
1379      */
1380     iffd = open(ifdev, O_RDWR);
1381     if (iffd < 0) {
1382         syslog(LOG_ERR, "Can't open %s: %m", ifdev);
1383         return 0;
1384     }
1385     if (dlpi_attach(iffd, unit) < 0
1386         || dlpi_get_reply(iffd, &reply.prim, DL_OK_ACK, sizeof(reply)) < 0
1387         || dlpi_info_req(iffd) < 0
1388         || dlpi_get_reply(iffd, &reply.prim, DL_INFO_ACK, sizeof(reply)) < 0) {
1389         close(iffd);
1390         return 0;
1391     }
1392
1393     adrlen = reply.prim.info_ack.dl_addr_length;
1394     adrp = (unsigned char *)&reply + reply.prim.info_ack.dl_addr_offset;
1395 #if DL_CURRENT_VERSION >= 2
1396     if (reply.prim.info_ack.dl_sap_length < 0)
1397         adrlen += reply.prim.info_ack.dl_sap_length;
1398     else
1399         adrp += reply.prim.info_ack.dl_sap_length;
1400 #endif
1401     hwaddr->sa_family = AF_UNSPEC;
1402     memcpy(hwaddr->sa_data, adrp, adrlen);
1403 #endif /* 0 */
1404
1405     return 1;
1406 }
1407
1408 static int
1409 dlpi_attach(fd, ppa)
1410     int fd, ppa;
1411 {
1412     dl_attach_req_t req;
1413     struct strbuf buf;
1414
1415     req.dl_primitive = DL_ATTACH_REQ;
1416     req.dl_ppa = ppa;
1417     buf.len = sizeof(req);
1418     buf.buf = (void *) &req;
1419     return putmsg(fd, &buf, NULL, RS_HIPRI);
1420 }
1421
1422 static int
1423 dlpi_info_req(fd)
1424     int fd;
1425 {
1426     dl_info_req_t req;
1427     struct strbuf buf;
1428
1429     req.dl_primitive = DL_INFO_REQ;
1430     buf.len = sizeof(req);
1431     buf.buf = (void *) &req;
1432     return putmsg(fd, &buf, NULL, RS_HIPRI);
1433 }
1434
1435 static int
1436 dlpi_get_reply(fd, reply, expected_prim, maxlen)
1437     union DL_primitives *reply;
1438     int fd, expected_prim, maxlen;
1439 {
1440     struct strbuf buf;
1441     int flags, n;
1442     struct pollfd pfd;
1443
1444     /*
1445      * Use poll to wait for a message with a timeout.
1446      */
1447     pfd.fd = fd;
1448     pfd.events = POLLIN | POLLPRI;
1449     do {
1450         n = poll(&pfd, 1, 1000);
1451     } while (n == -1 && errno == EINTR);
1452     if (n <= 0)
1453         return -1;
1454
1455     /*
1456      * Get the reply.
1457      */
1458     buf.maxlen = maxlen;
1459     buf.buf = (void *) reply;
1460     flags = 0;
1461     if (getmsg(fd, &buf, NULL, &flags) < 0)
1462         return -1;
1463
1464     if (buf.len < sizeof(ulong)) {
1465         if (debug)
1466             syslog(LOG_DEBUG, "dlpi response short (len=%d)\n", buf.len);
1467         return -1;
1468     }
1469
1470     if (reply->dl_primitive == expected_prim)
1471         return 0;
1472
1473     if (debug) {
1474         if (reply->dl_primitive == DL_ERROR_ACK) {
1475             syslog(LOG_DEBUG, "dlpi error %d (unix errno %d) for prim %x\n",
1476                    reply->error_ack.dl_errno, reply->error_ack.dl_unix_errno,
1477                    reply->error_ack.dl_error_primitive);
1478         } else {
1479             syslog(LOG_DEBUG, "dlpi unexpected response prim %x\n",
1480                    reply->dl_primitive);
1481         }
1482     }
1483
1484     return -1;
1485 }
1486
1487 /*
1488  * Return user specified netmask, modified by any mask we might determine
1489  * for address `addr' (in network byte order).
1490  * Here we scan through the system's list of interfaces, looking for
1491  * any non-point-to-point interfaces which might appear to be on the same
1492  * network as `addr'.  If we find any, we OR in their netmask to the
1493  * user-specified netmask.
1494  */
1495 u_int32_t
1496 GetMask(addr)
1497     u_int32_t addr;
1498 {
1499     u_int32_t mask, nmask, ina;
1500     struct ifreq *ifr, *ifend, ifreq;
1501     int nif;
1502     struct ifconf ifc;
1503
1504     addr = ntohl(addr);
1505     if (IN_CLASSA(addr))        /* determine network mask for address class */
1506         nmask = IN_CLASSA_NET;
1507     else if (IN_CLASSB(addr))
1508         nmask = IN_CLASSB_NET;
1509     else
1510         nmask = IN_CLASSC_NET;
1511     /* class D nets are disallowed by bad_ip_adrs */
1512     mask = netmask | htonl(nmask);
1513
1514     /*
1515      * Scan through the system's network interfaces.
1516      */
1517 #ifdef SIOCGIFNUM
1518     if (ioctl(ipfd, SIOCGIFNUM, &nif) < 0)
1519 #endif
1520         nif = MAX_IFS;
1521     ifc.ifc_len = nif * sizeof(struct ifreq);
1522     ifc.ifc_buf = (caddr_t) malloc(ifc.ifc_len);
1523     if (ifc.ifc_buf == 0)
1524         return mask;
1525     if (ioctl(ipfd, SIOCGIFCONF, &ifc) < 0) {
1526         syslog(LOG_WARNING, "Couldn't get system interface list: %m");
1527         free(ifc.ifc_buf);
1528         return mask;
1529     }
1530     ifend = (struct ifreq *) (ifc.ifc_buf + ifc.ifc_len);
1531     for (ifr = ifc.ifc_req; ifr < ifend; ++ifr) {
1532         /*
1533          * Check the interface's internet address.
1534          */
1535         if (ifr->ifr_addr.sa_family != AF_INET)
1536             continue;
1537         ina = INET_ADDR(ifr->ifr_addr);
1538         if ((ntohl(ina) & nmask) != (addr & nmask))
1539             continue;
1540         /*
1541          * Check that the interface is up, and not point-to-point or loopback.
1542          */
1543         strncpy(ifreq.ifr_name, ifr->ifr_name, sizeof(ifreq.ifr_name));
1544         if (ioctl(ipfd, SIOCGIFFLAGS, &ifreq) < 0)
1545             continue;
1546         if ((ifreq.ifr_flags & (IFF_UP|IFF_POINTOPOINT|IFF_LOOPBACK))
1547             != IFF_UP)
1548             continue;
1549         /*
1550          * Get its netmask and OR it into our mask.
1551          */
1552         if (ioctl(ipfd, SIOCGIFNETMASK, &ifreq) < 0)
1553             continue;
1554         mask |= INET_ADDR(ifreq.ifr_addr);
1555     }
1556
1557     free(ifc.ifc_buf);
1558     return mask;
1559 }
1560
1561 /*
1562  * logwtmp - write an accounting record to the /var/adm/wtmp file.
1563  */
1564 void
1565 logwtmp(line, name, host)
1566     const char *line, *name, *host;
1567 {
1568     static struct utmpx utmpx;
1569
1570     if (name[0] != 0) {
1571         /* logging in */
1572         strncpy(utmpx.ut_user, name, sizeof(utmpx.ut_user));
1573         strncpy(utmpx.ut_id, ifname, sizeof(utmpx.ut_id));
1574         strncpy(utmpx.ut_line, line, sizeof(utmpx.ut_line));
1575         utmpx.ut_pid = getpid();
1576         utmpx.ut_type = USER_PROCESS;
1577     } else {
1578         utmpx.ut_type = DEAD_PROCESS;
1579     }
1580     gettimeofday(&utmpx.ut_tv, NULL);
1581     updwtmpx("/var/adm/wtmpx", &utmpx);
1582 }
1583
1584 /*
1585  * get_host_seed - return the serial number of this machine.
1586  */
1587 int
1588 get_host_seed()
1589 {
1590     char buf[32];
1591
1592     if (sysinfo(SI_HW_SERIAL, buf, sizeof(buf)) < 0) {
1593         syslog(LOG_ERR, "sysinfo: %m");
1594         return 0;
1595     }
1596     return (int) strtoul(buf, NULL, 16);
1597 }
1598
1599 static int
1600 strioctl(fd, cmd, ptr, ilen, olen)
1601     int fd, cmd, ilen, olen;
1602     void *ptr;
1603 {
1604     struct strioctl str;
1605
1606     str.ic_cmd = cmd;
1607     str.ic_timout = 0;
1608     str.ic_len = ilen;
1609     str.ic_dp = ptr;
1610     if (ioctl(fd, I_STR, &str) == -1)
1611         return -1;
1612     if (str.ic_len != olen)
1613         syslog(LOG_DEBUG, "strioctl: expected %d bytes, got %d for cmd %x\n",
1614                olen, str.ic_len, cmd);
1615     return 0;
1616 }
1617
1618 /*
1619  * lock - create a lock file for the named lock device
1620  */
1621
1622 #define LOCK_PREFIX     "/var/spool/locks/LK."
1623 static char lock_file[40];      /* name of lock file created */
1624
1625 int
1626 lock(dev)
1627     char *dev;
1628 {
1629     int n, fd, pid;
1630     struct stat sbuf;
1631     char ascii_pid[12];
1632
1633     if (stat(dev, &sbuf) < 0) {
1634         syslog(LOG_ERR, "Can't get device number for %s: %m", dev);
1635         return -1;
1636     }
1637     if ((sbuf.st_mode & S_IFMT) != S_IFCHR) {
1638         syslog(LOG_ERR, "Can't lock %s: not a character device", dev);
1639         return -1;
1640     }
1641     sprintf(lock_file, "%s%03d.%03d.%03d", LOCK_PREFIX, major(sbuf.st_dev),
1642             major(sbuf.st_rdev), minor(sbuf.st_rdev));
1643
1644     while ((fd = open(lock_file, O_EXCL | O_CREAT | O_RDWR, 0644)) < 0) {
1645         if (errno == EEXIST
1646             && (fd = open(lock_file, O_RDONLY, 0)) >= 0) {
1647             /* Read the lock file to find out who has the device locked */
1648             n = read(fd, ascii_pid, 11);
1649             if (n <= 0) {
1650                 syslog(LOG_ERR, "Can't read pid from lock file %s", lock_file);
1651                 close(fd);
1652             } else {
1653                 ascii_pid[n] = 0;
1654                 pid = atoi(ascii_pid);
1655                 if (pid > 0 && kill(pid, 0) == -1 && errno == ESRCH) {
1656                     /* pid no longer exists - remove the lock file */
1657                     if (unlink(lock_file) == 0) {
1658                         close(fd);
1659                         syslog(LOG_NOTICE, "Removed stale lock on %s (pid %d)",
1660                                dev, pid);
1661                         continue;
1662                     } else
1663                         syslog(LOG_WARNING, "Couldn't remove stale lock on %s",
1664                                dev);
1665                 } else
1666                     syslog(LOG_NOTICE, "Device %s is locked by pid %d",
1667                            dev, pid);
1668             }
1669             close(fd);
1670         } else
1671             syslog(LOG_ERR, "Can't create lock file %s: %m", lock_file);
1672         lock_file[0] = 0;
1673         return -1;
1674     }
1675
1676     sprintf(ascii_pid, "%10d\n", getpid());
1677     write(fd, ascii_pid, 11);
1678
1679     close(fd);
1680     return 1;
1681 }
1682
1683 /*
1684  * unlock - remove our lockfile
1685  */
1686 void
1687 unlock()
1688 {
1689     if (lock_file[0]) {
1690         unlink(lock_file);
1691         lock_file[0] = 0;
1692     }
1693 }
1694
1695
1696 /*
1697  * cifroute - delete a route through the addresses given.
1698  */
1699 int
1700 cifroute(u, our, his)
1701     int u;
1702     u_int32_t our, his;
1703 {
1704     struct rtentry rt;
1705
1706     memset(&rt, 0, sizeof(rt));
1707     rt.rt_dst.sa_family = AF_INET;
1708     INET_ADDR(rt.rt_dst) = his;
1709     rt.rt_gateway.sa_family = AF_INET;
1710     INET_ADDR(rt.rt_gateway) = our;
1711     rt.rt_flags = RTF_HOST;
1712
1713     if (ioctl(ipfd, SIOCDELRT, &rt) < 0) {
1714         syslog(LOG_ERR, "Can't delete route: %m");
1715         return 0;
1716     }
1717
1718     return 1;
1719 }
1720
1721 /*
1722  * have_route_to - determine if the system has a route to the specified
1723  * IP address.  Returns 0 if not, 1 if so, -1 if we can't tell.
1724  * `addr' is in network byte order.
1725  * For demand mode to work properly, we have to ignore routes
1726  * through our own interface.
1727  */
1728 #ifndef T_CURRENT               /* needed for Solaris 2.5 */
1729 #define T_CURRENT       MI_T_CURRENT
1730 #endif
1731
1732 int
1733 have_route_to(addr)
1734     u_int32_t addr;
1735 {
1736     int fd, r, flags, i;
1737     struct {
1738         struct T_optmgmt_req req;
1739         struct opthdr hdr;
1740     } req;
1741     union {
1742         struct T_optmgmt_ack ack;
1743         unsigned char space[64];
1744     } ack;
1745     struct opthdr *rh;
1746     struct strbuf cbuf, dbuf;
1747     int nroutes;
1748     mib2_ipRouteEntry_t routes[8];
1749     mib2_ipRouteEntry_t *rp;
1750
1751     fd = open("/dev/ip", O_RDWR);
1752     if (fd < 0) {
1753         syslog(LOG_WARNING, "have_route_to: couldn't open /dev/ip: %m");
1754         return -1;
1755     }
1756
1757     req.req.PRIM_type = T_OPTMGMT_REQ;
1758     req.req.OPT_offset = (char *) &req.hdr - (char *) &req;
1759     req.req.OPT_length = sizeof(req.hdr);
1760     req.req.MGMT_flags = T_CURRENT;
1761
1762     req.hdr.level = MIB2_IP;
1763     req.hdr.name = 0;
1764     req.hdr.len = 0;
1765
1766     cbuf.buf = (char *) &req;
1767     cbuf.len = sizeof(req);
1768
1769     if (putmsg(fd, &cbuf, NULL, 0) == -1) {
1770         syslog(LOG_WARNING, "have_route_to: putmsg: %m");
1771         close(fd);
1772         return -1;
1773     }
1774
1775     for (;;) {
1776         cbuf.buf = (char *) &ack;
1777         cbuf.maxlen = sizeof(ack);
1778         dbuf.buf = (char *) routes;
1779         dbuf.maxlen = sizeof(routes);
1780         flags = 0;
1781         r = getmsg(fd, &cbuf, &dbuf, &flags);
1782         if (r == -1) {
1783             syslog(LOG_WARNING, "have_route_to: getmsg: %m");
1784             close(fd);
1785             return -1;
1786         }
1787
1788         if (cbuf.len < sizeof(struct T_optmgmt_ack)
1789             || ack.ack.PRIM_type != T_OPTMGMT_ACK
1790             || ack.ack.MGMT_flags != T_SUCCESS
1791             || ack.ack.OPT_length < sizeof(struct opthdr)) {
1792             syslog(LOG_DEBUG, "have_route_to: bad message len=%d prim=%d",
1793                    cbuf.len, ack.ack.PRIM_type);
1794             close(fd);
1795             return -1;
1796         }
1797
1798         rh = (struct opthdr *) ((char *)&ack + ack.ack.OPT_offset);
1799         if (rh->level == 0 && rh->name == 0)
1800             break;
1801         if (rh->level != MIB2_IP || rh->name != MIB2_IP_21) {
1802             while (r == MOREDATA)
1803                 r = getmsg(fd, NULL, &dbuf, &flags);
1804             continue;
1805         }
1806
1807         for (;;) {
1808             nroutes = dbuf.len / sizeof(mib2_ipRouteEntry_t);
1809             for (rp = routes, i = 0; i < nroutes; ++i, ++rp) {
1810                 if (rp->ipRouteMask != ~0) {
1811                     syslog(LOG_DEBUG, "have_route_to: dest=%x gw=%x mask=%x\n",
1812                            rp->ipRouteDest, rp->ipRouteNextHop,
1813                            rp->ipRouteMask);
1814                     if (((addr ^ rp->ipRouteDest) & rp->ipRouteMask) == 0
1815                         && rp->ipRouteNextHop != remote_addr)
1816                         return 1;
1817                 }
1818             }
1819             if (r == 0)
1820                 break;
1821             r = getmsg(fd, NULL, &dbuf, &flags);
1822         }
1823     }
1824     close(fd);
1825     return 0;
1826 }