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