]> git.ozlabs.org Git - ppp.git/blob - pppd/sys-svr4.c
Added additional high baud rates for newer serial ports on Sun Sparc machines.
[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 #define RCSID   "$Id: sys-svr4.c,v 1.37 1999/10/29 00:30:26 masputra Exp $"
29
30 #include <limits.h>
31 #include <stdio.h>
32 #include <stddef.h>
33 #include <stdlib.h>
34 #include <ctype.h>
35 #include <errno.h>
36 #include <fcntl.h>
37 #include <unistd.h>
38 #include <termios.h>
39 #ifndef CRTSCTS
40 #include <sys/termiox.h>
41 #endif
42 #include <signal.h>
43 #include <utmpx.h>
44 #include <sys/types.h>
45 #include <sys/ioccom.h>
46 #include <sys/stream.h>
47 #include <sys/stropts.h>
48 #include <sys/socket.h>
49 #include <sys/sockio.h>
50 #include <sys/sysmacros.h>
51 #include <sys/systeminfo.h>
52 #include <sys/dlpi.h>
53 #include <sys/stat.h>
54 #include <sys/mkdev.h>
55 #include <net/if.h>
56 #include <net/if_arp.h>
57 #include <net/route.h>
58 #include <net/ppp_defs.h>
59 #include <net/pppio.h>
60 #include <netinet/in.h>
61 #ifdef SOL2
62 #include <sys/tihdr.h>
63 #include <sys/tiuser.h>
64 #include <inet/common.h>
65 #include <inet/mib2.h>
66 #include <sys/ethernet.h>
67 #endif
68
69 #include "pppd.h"
70
71 #if !defined(PPP_DEV_NAME)
72 #define PPP_DEV_NAME    "/dev/ppp"
73 #endif /* !defined(PPP_DEV_NAME) */
74
75 #if !defined(AHDLC_MOD_NAME)
76 #define AHDLC_MOD_NAME  "ppp_ahdl"
77 #endif /* !defined(AHDLC_MOD_NAME) */
78
79 #if !defined(COMP_MOD_NAME)
80 #define COMP_MOD_NAME   "ppp_comp"
81 #endif /* !defined(COMP_MOD_NAME) */
82
83 #if !defined(IP_DEV_NAME)
84 #define IP_DEV_NAME     "/dev/ip"
85 #endif /* !defined(IP_DEV_NAME) */
86
87 #if !defined(IP_MOD_NAME)
88 #define IP_MOD_NAME     "ip"
89 #endif /* !defined(IP_MOD_NAME) */
90
91 #if !defined(UDP_DEV_NAME) && defined(SOL2)
92 #define UDP_DEV_NAME    "/dev/udp"
93 #endif /* !defined(UDP_DEV_NAME) && defined(SOL2) */
94
95 #if !defined(UDP6_DEV_NAME) && defined(SOL2)
96 #define UDP6_DEV_NAME   "/dev/udp6"
97 #endif /* !defined(UDP6_DEV_NAME) && defined(SOL2) */
98
99 static const char rcsid[] = RCSID;
100
101 static          char *mux_dev_name;
102 static int      pppfd;
103 static int      fdmuxid = -1;
104 static int      ipfd;
105 static int      ipmuxid = -1;
106
107 #if defined(INET6) && defined(SOL2)
108 static int      ip6fd;          /* IP file descriptor */
109 static int      ip6muxid = -1;  /* Multiplexer file descriptor */
110 static int      if6_is_up = 0;  /* IPv6 interface has been marked up */
111
112 #define _IN6_LLX_FROM_EUI64(l, s, eui64, as) do {       \
113         s->sin6_addr.s6_addr32[0] = htonl(as);  \
114         eui64_copy(eui64, s->sin6_addr.s6_addr32[2]);   \
115         s->sin6_family = AF_INET6;              \
116         l.lifr_addr.ss_family = AF_INET6;       \
117         l.lifr_addrlen = 10;                    \
118         l.lifr_addr = laddr;                    \
119         } while (0)
120
121 #define IN6_LLADDR_FROM_EUI64(l, s, eui64)  \
122     _IN6_LLX_FROM_EUI64(l, s, eui64, 0xfe800000)
123
124 #define IN6_LLTOKEN_FROM_EUI64(l, s, eui64) \
125     _IN6_LLX_FROM_EUI64(l, s, eui64, 0)
126
127 #endif /* defined(INET6) && defined(SOL2) */
128
129 static int      restore_term;
130 static struct termios inittermios;
131 #ifndef CRTSCTS
132 static struct termiox inittermiox;
133 static int      termiox_ok;
134 #endif
135 static struct winsize wsinfo;   /* Initial window size info */
136 static pid_t    tty_sid;        /* original session ID for terminal */
137
138 extern u_char   inpacket_buf[]; /* borrowed from main.c */
139
140 #define MAX_POLLFDS     32
141 static struct pollfd pollfds[MAX_POLLFDS];
142 static int n_pollfds;
143
144 static int      link_mtu, link_mru;
145
146 #define NMODULES        32
147 static int      tty_nmodules;
148 static char     tty_modules[NMODULES][FMNAMESZ+1];
149 static int      tty_npushed;
150
151 static int      if_is_up;       /* Interface has been marked up */
152 static u_int32_t remote_addr;           /* IP address of peer */
153 static u_int32_t default_route_gateway; /* Gateway for default route added */
154 static u_int32_t proxy_arp_addr;        /* Addr for proxy arp entry added */
155
156 /* Prototypes for procedures local to this file. */
157 static int translate_speed __P((int));
158 static int baud_rate_of __P((int));
159 static int get_ether_addr __P((u_int32_t, struct sockaddr *));
160 static int get_hw_addr __P((char *, u_int32_t, struct sockaddr *));
161 static int get_hw_addr_dlpi __P((char *, struct sockaddr *));
162 static int dlpi_attach __P((int, int));
163 static int dlpi_info_req __P((int));
164 static int dlpi_get_reply __P((int, union DL_primitives *, int, int));
165 static int strioctl __P((int, int, void *, int, int));
166
167 #ifdef SOL2
168 /*
169  * sifppa - Sets interface ppa
170  *
171  * without setting the ppa, ip module will return EINVAL upon setting the
172  * interface UP (SIOCSxIFFLAGS). This is because ip module in 2.8 expects
173  * two DLPI_INFO_REQ to be sent down to the driver (below ip) before
174  * IFF_UP can be set. Plumbing the device causes one DLPI_INFO_REQ to
175  * be sent down, and the second DLPI_INFO_REQ is sent upon receiving
176  * IF_UNITSEL (old) or SIOCSLIFNAME (new) ioctls. Such setting of the ppa
177  * is required because the ppp DLPI provider advertises itself as
178  * a DLPI style 2 type, which requires a point of attachment to be
179  * specified. The only way the user can specify a point of attachment
180  * is via SIOCSLIFNAME or IF_UNITSEL.
181  *
182  * Such changes in the behavior of ip module was made to meet new or
183  * evolving standards requirements.
184  *
185  */
186 static int
187 sifppa(fd, ppa)
188     int fd;
189     int ppa;
190 {
191     return (int)ioctl(fd, IF_UNITSEL, (char *)&ppa);
192 }
193 #endif /* SOL2 */
194
195 #if defined(SOL2) && defined(INET6)
196 /*
197  * slifname - Sets interface ppa and flags
198  *
199  * in addition to the comments stated in sifppa(), IFF_IPV6 bit must
200  * be set in order to declare this as an IPv6 interface
201  */
202 static int
203 slifname(fd, ppa)
204     int fd;
205     int ppa;
206 {
207     struct  lifreq lifr;
208     int     ret;
209
210     memset(&lifr, 0, sizeof(lifr));
211     ret = ioctl(fd, SIOCGLIFFLAGS, &lifr);
212     if (ret < 0)
213         goto slifname_done;
214
215     lifr.lifr_flags |= IFF_IPV6;
216     lifr.lifr_flags &= ~(IFF_BROADCAST | IFF_IPV4);
217     lifr.lifr_ppa = ppa;
218     strlcpy(lifr.lifr_name, ifname, sizeof(lifr.lifr_name));
219
220     ret = ioctl(fd, SIOCSLIFNAME, &lifr);
221
222 slifname_done:
223     return ret;
224
225
226 }
227
228 /*
229  * ether_to_eui64 - Convert 48-bit Ethernet address into 64-bit EUI
230  *
231  * walks the list of valid ethernet interfaces, and convert the first
232  * found 48-bit MAC address into EUI 64. caller also assumes that
233  * the system has a properly configured Ethernet interface for this
234  * function to return non-zero.
235  */
236 int
237 ether_to_eui64(eui64_t *p_eui64)
238 {
239     struct lifnum lifn;
240     struct lifconf lifc;
241     struct lifreq *plifreq;
242     struct lifreq lifr;
243     int fd, num_ifs, i, found;
244     uint_t fl, req_size;
245     char *req;
246     struct sockaddr s_eth_addr;
247     struct ether_addr *eth_addr = (struct ether_addr *)&s_eth_addr.sa_data;
248
249     fd = socket(AF_INET, SOCK_DGRAM, 0);
250     if (fd < 0) {
251         return 0;
252     }
253
254     /*
255      * Find out how many interfaces are running
256      */
257     lifn.lifn_family = AF_UNSPEC;
258     lifn.lifn_flags = LIFC_NOXMIT;
259     if (ioctl(fd, SIOCGLIFNUM, &lifn) < 0) {
260         close(fd);
261         error("could not determine number of interfaces: %m");
262         return 0;
263     }
264
265     num_ifs = lifn.lifn_count;
266     req_size = num_ifs * sizeof(struct lifreq);
267     req = malloc(req_size);
268     if (req == NULL) {
269         close(fd);
270         error("out of memory");
271         return 0;
272     }
273
274     /*
275      * Get interface configuration info for all interfaces
276      */
277     lifc.lifc_family = AF_UNSPEC;
278     lifc.lifc_flags = LIFC_NOXMIT;
279     lifc.lifc_len = req_size;
280     lifc.lifc_buf = req;
281     if (ioctl(fd, SIOCGLIFCONF, &lifc) < 0) {
282         close(fd);
283         free(req);
284         error("SIOCGLIFCONF: %m");
285         return 0;
286     }
287
288     /*
289      * And traverse each interface to look specifically for the first
290      * occurence of an Ethernet interface which has been marked up
291      */
292     plifreq = lifc.lifc_req;
293     found = 0;
294     for (i = lifc.lifc_len / sizeof(struct lifreq); i>0; i--, plifreq++) {
295
296         if (strchr(plifreq->lifr_name, ':') != NULL)
297             continue;
298
299         memset(&lifr, 0, sizeof(lifr));
300         strncpy(lifr.lifr_name, plifreq->lifr_name, sizeof(lifr.lifr_name));
301         if (ioctl(fd, SIOCGLIFFLAGS, &lifr) < 0) {
302             close(fd);
303             free(req);
304             error("SIOCGLIFFLAGS: %m");
305             return 0;
306         }
307         fl = lifr.lifr_flags;
308
309         if ((fl & (IFF_UP|IFF_BROADCAST|IFF_POINTOPOINT|IFF_LOOPBACK|IFF_NOARP))
310                 != (IFF_UP | IFF_BROADCAST))
311             continue;
312
313         found = 1;
314         break;
315     }
316     free(req);
317     close(fd);
318
319     if (!found) {
320         error("no persistent id can be found");
321         return 0;
322     }
323  
324     /*
325      * Send DL_INFO_REQ to the driver to solicit its MAC address
326      */
327     if (!get_hw_addr_dlpi(plifreq->lifr_name, &s_eth_addr)) {
328         error("could not obtain hardware address for %s", plifreq->lifr_name);
329         return 0;
330     }
331
332     /*
333      * And convert the EUI-48 into EUI-64, per RFC 2472 [sec 4.1]
334      */
335     p_eui64->e8[0] = (eth_addr->ether_addr_octet[0] & 0xFF) | 0x02;
336     p_eui64->e8[1] = (eth_addr->ether_addr_octet[1] & 0xFF);
337     p_eui64->e8[2] = (eth_addr->ether_addr_octet[2] & 0xFF);
338     p_eui64->e8[3] = 0xFF;
339     p_eui64->e8[4] = 0xFE;
340     p_eui64->e8[5] = (eth_addr->ether_addr_octet[3] & 0xFF);
341     p_eui64->e8[6] = (eth_addr->ether_addr_octet[4] & 0xFF);
342     p_eui64->e8[7] = (eth_addr->ether_addr_octet[5] & 0xFF);
343
344     return 1;
345 }
346 #endif /* defined(SOL2) && defined(INET6) */
347
348 /*
349  * sys_init - System-dependent initialization.
350  */
351 void
352 sys_init()
353 {
354     int ifd, x;
355     struct ifreq ifr;
356 #if defined(INET6) && defined(SOL2)
357     int i6fd;
358     struct lifreq lifr;
359 #endif /* defined(INET6) && defined(SOL2) */
360 #if !defined(SOL2)
361     struct {
362         union DL_primitives prim;
363         char space[64];
364     } reply;
365 #endif /* !defined(SOL2) */
366
367 #if defined(SOL2)
368     /*
369      * "/dev/udp" is used as a multiplexor to PLINK the interface stream
370      * under. It is used in place of "/dev/ip" since STREAMS will not let
371      * a driver be PLINK'ed under itself, and "/dev/ip" is typically the
372      * driver at the bottom of the tunneling interfaces stream.
373      */
374     mux_dev_name = UDP_DEV_NAME;
375 #else
376     mux_dev_name = IP_DEV_NAME;
377 #endif
378
379     ipfd = open(mux_dev_name, O_RDWR, 0);
380     if (ipfd < 0)
381         fatal("Couldn't open IP device: %m");
382
383 #if defined(INET6) && defined(SOL2)
384     ip6fd = open(UDP6_DEV_NAME, O_RDWR, 0);
385     if (ip6fd < 0)
386         fatal("Couldn't open IP device (2): %m");
387 #endif /* defined(INET6) && defined(SOL2) */
388
389     if (default_device && !notty)
390         tty_sid = getsid((pid_t)0);
391
392     pppfd = open(PPP_DEV_NAME, O_RDWR | O_NONBLOCK, 0);
393     if (pppfd < 0)
394         fatal("Can't open %s: %m", PPP_DEV_NAME);
395     if (kdebugflag & 1) {
396         x = PPPDBG_LOG + PPPDBG_DRIVER;
397         strioctl(pppfd, PPPIO_DEBUG, &x, sizeof(int), 0);
398     }
399
400     /* Assign a new PPA and get its unit number. */
401     if (strioctl(pppfd, PPPIO_NEWPPA, &ifunit, 0, sizeof(int)) < 0)
402         fatal("Can't create new PPP interface: %m");
403
404 #if defined(SOL2)
405     /*
406      * Since sys_init() is called prior to ifname being set in main(),
407      * we need to get the ifname now, otherwise slifname(), and others,
408      * will fail, or maybe, I should move them to a later point ?
409      * <adi.masputra@sun.com>
410      */
411     sprintf(ifname, "ppp%d", ifunit);
412 #endif /* defined(SOL2) */
413     /*
414      * Open the ppp device again and link it under the ip multiplexor.
415      * IP will assign a unit number which hopefully is the same as ifunit.
416      * I don't know any way to be certain they will be the same. :-(
417      */
418     ifd = open(PPP_DEV_NAME, O_RDWR, 0);
419     if (ifd < 0)
420         fatal("Can't open %s (2): %m", PPP_DEV_NAME);
421     if (kdebugflag & 1) {
422         x = PPPDBG_LOG + PPPDBG_DRIVER;
423         strioctl(ifd, PPPIO_DEBUG, &x, sizeof(int), 0);
424     }
425
426 #if defined(INET6) && defined(SOL2)
427     i6fd = open(PPP_DEV_NAME, O_RDWR, 0);
428     if (i6fd < 0) {
429         close(ifd);
430         fatal("Can't open %s (3): %m", PPP_DEV_NAME);
431     }
432     if (kdebugflag & 1) {
433         x = PPPDBG_LOG + PPPDBG_DRIVER;
434         strioctl(i6fd, PPPIO_DEBUG, &x, sizeof(int), 0);
435     }
436 #endif /* defined(INET6) && defined(SOL2) */
437
438 #if defined(SOL2)
439     if (ioctl(ifd, I_PUSH, IP_MOD_NAME) < 0) {
440         close(ifd);
441 #if defined(INET6)
442         close(i6fd);
443 #endif /* defined(INET6) */
444         fatal("Can't push IP module: %m");
445     }
446
447     /*
448      * Assign ppa according to the unit number returned by ppp device
449      * after plumbing is completed above.
450      */
451     if (sifppa(ifd, ifunit) < 0) {
452         close (ifd);
453 #if defined(INET6)
454         close(i6fd);
455 #endif /* defined(INET6) */
456         fatal("Can't set ppa for unit %d: %m", ifunit);
457     }
458
459 #if defined(INET6)
460     /*
461      * An IPv6 interface is created anyway, even when the user does not 
462      * explicitly enable it. Note that the interface will be marked
463      * IPv6 during slifname().
464      */
465     if (ioctl(i6fd, I_PUSH, IP_MOD_NAME) < 0) {
466         close(ifd);
467         close(i6fd);
468         fatal("Can't push IP module (2): %m");
469     }
470
471     /*
472      * Assign ppa according to the unit number returned by ppp device
473      * after plumbing is completed above. In addition, mark the interface
474      * as an IPv6 interface.
475      */
476     if (slifname(i6fd, ifunit) < 0) {
477         close(ifd);
478         close(i6fd);
479         fatal("Can't set ifname for unit %d: %m", ifunit);
480     }
481 #endif /* defined(INET6) */
482
483     ipmuxid = ioctl(ipfd, I_PLINK, ifd);
484     close(ifd);
485     if (ipmuxid < 0) {
486 #if defined(INET6)
487         close(i6fd);
488 #endif /* defined(INET6) */
489         fatal("Can't I_PLINK PPP device to IP: %m");
490     }
491
492     memset(&ifr, 0, sizeof(ifr));
493     sprintf(ifr.ifr_name, "%s", ifname);
494     ifr.ifr_ip_muxid = ipmuxid;
495
496     /*
497      * In Sol 8 and later, STREAMS dynamic module plumbing feature exists.
498      * This is so that an arbitrary module can be inserted, or deleted, 
499      * between ip module and the device driver without tearing down the 
500      * existing stream. Such feature requires the mux ids, which is set 
501      * by SIOCSIFMUXID (or SIOCLSIFMUXID).
502      */
503     if (ioctl(ipfd, SIOCSIFMUXID, &ifr) < 0) {
504         ioctl(ipfd, I_PUNLINK, ipmuxid);
505 #if defined(INET6)
506         close(i6fd);
507 #endif /* defined(INET6) */
508         fatal("SIOCSIFMUXID: %m");
509     }
510
511 #else /* else if !defined(SOL2) */
512
513     if (dlpi_attach(ifd, ifunit) < 0 ||
514         dlpi_get_reply(ifd, &reply.prim, DL_OK_ACK, sizeof(reply)) < 0) {
515         close(ifd);
516         fatal("Can't attach to ppp%d: %m", ifunit);
517     }
518
519     ipmuxid = ioctl(ipfd, I_LINK, ifd);
520     close(ifd);
521     if (ipmuxid < 0)
522         fatal("Can't link PPP device to IP: %m");
523 #endif /* defined(SOL2) */
524
525 #if defined(INET6) && defined(SOL2)
526     ip6muxid = ioctl(ip6fd, I_PLINK, i6fd);
527     close(i6fd);
528     if (ip6muxid < 0) {
529         ioctl(ipfd, I_PUNLINK, ipmuxid);
530         fatal("Can't I_PLINK PPP device to IP (2): %m");
531     }
532
533     memset(&lifr, 0, sizeof(lifr));
534     sprintf(lifr.lifr_name, "%s", ifname);
535     lifr.lifr_ip_muxid = ip6muxid;
536
537     /*
538      * Let IP know of the mux id [see comment for SIOCSIFMUXID above]
539      */
540     if (ioctl(ip6fd, SIOCSLIFMUXID, &lifr) < 0) {
541         ioctl(ipfd, I_PUNLINK, ipmuxid);
542         ioctl(ip6fd, I_PUNLINK, ip6muxid);
543         fatal("Can't link PPP device to IP (2): %m");
544     }
545 #endif /* defined(INET6) && defined(SOL2) */
546
547 #if !defined(SOL2)
548     /* Set the interface name for the link. */
549     slprintf(ifr.ifr_name, sizeof(ifr.ifr_name), "ppp%d", ifunit);
550     ifr.ifr_metric = ipmuxid;
551     if (strioctl(ipfd, SIOCSIFNAME, (char *)&ifr, sizeof ifr, 0) < 0)
552         fatal("Can't set interface name %s: %m", ifr.ifr_name);
553 #endif /* !defined(SOL2) */
554
555     n_pollfds = 0;
556 }
557
558 /*
559  * sys_cleanup - restore any system state we modified before exiting:
560  * mark the interface down, delete default route and/or proxy arp entry.
561  * This should call die() because it's called from die().
562  */
563 void
564 sys_cleanup()
565 {
566 #if defined(SOL2)
567     struct ifreq ifr;
568 #if defined(INET6)
569     struct lifreq lifr;
570 #endif /* defined(INET6) */
571 #endif /* defined(SOL2) */
572
573 #if defined(SOL2) && defined(INET6)
574     if (if6_is_up)
575         sif6down(0);
576 #endif /* defined(SOL2) && defined(INET6) */
577     if (if_is_up)
578         sifdown(0);
579     if (default_route_gateway)
580         cifdefaultroute(0, default_route_gateway, default_route_gateway);
581     if (proxy_arp_addr)
582         cifproxyarp(0, proxy_arp_addr);
583 #if defined(SOL2)
584     /*
585      * Make sure we ask ip what the muxid, because 'ifconfig modlist' will
586      * unlink and re-link the modules, causing the muxid to change.
587      */
588     memset(&ifr, 0, sizeof(ifr));
589     sprintf(ifr.ifr_name, "%s", ifname);
590     if (ioctl(ipfd, SIOCGIFFLAGS, &ifr) < 0) {
591         error("SIOCGIFFLAGS: %m");
592         return;
593     }
594
595     if (ioctl(ipfd, SIOCGIFMUXID, &ifr) < 0) {
596         error("SIOCGIFMUXID: %m");
597         return;
598     }
599
600     ipmuxid = ifr.ifr_ip_muxid;
601      
602     if (ioctl(ipfd, I_PUNLINK, ipmuxid) < 0) {
603         error("Can't I_PUNLINK PPP from IP: %m");
604         return;
605     }
606 #if defined(INET6)
607     /*
608      * Make sure we ask ip what the muxid, because 'ifconfig modlist' will
609      * unlink and re-link the modules, causing the muxid to change.
610      */
611     memset(&lifr, 0, sizeof(lifr));
612     sprintf(lifr.lifr_name, "%s", ifname);
613     if (ioctl(ip6fd, SIOCGLIFFLAGS, &lifr) < 0) {
614         error("SIOCGLIFFLAGS: %m");
615         return;
616     }
617
618     if (ioctl(ip6fd, SIOCGLIFMUXID, &lifr) < 0) {
619         error("SIOCGLIFMUXID: %m");
620         return;
621     }
622
623     ip6muxid = lifr.lifr_ip_muxid;
624
625     if (ioctl(ip6fd, I_PUNLINK, ip6muxid) < 0) {
626         error("Can't I_PUNLINK PPP from IP (2): %m");
627     }
628 #endif /* defined(INET6) */
629 #endif /* defined(SOL2) */
630 }
631
632 /*
633  * sys_close - Clean up in a child process before execing.
634  */
635 void
636 sys_close()
637 {
638     close(ipfd);
639 #if defined(INET6) && defined(SOL2)
640     close(ip6fd);
641 #endif /* defined(INET6) && defined(SOL2) */
642     if (pppfd >= 0)
643         close(pppfd);
644 }
645
646 /*
647  * sys_check_options - check the options that the user specified
648  */
649 int
650 sys_check_options()
651 {
652     return 1;
653 }
654
655 #if 0
656 /*
657  * daemon - Detach us from controlling terminal session.
658  */
659 int
660 daemon(nochdir, noclose)
661     int nochdir, noclose;
662 {
663     int pid;
664
665     if ((pid = fork()) < 0)
666         return -1;
667     if (pid != 0)
668         exit(0);                /* parent dies */
669     setsid();
670     if (!nochdir)
671         chdir("/");
672     if (!noclose) {
673         fclose(stdin);          /* don't need stdin, stdout, stderr */
674         fclose(stdout);
675         fclose(stderr);
676     }
677     return 0;
678 }
679 #endif
680
681 /*
682  * ppp_available - check whether the system has any ppp interfaces
683  */
684 int
685 ppp_available()
686 {
687     struct stat buf;
688
689     return stat(PPP_DEV_NAME, &buf) >= 0;
690 }
691
692 /*
693  * establish_ppp - Turn the serial port into a ppp interface.
694  */
695 int
696 establish_ppp(fd)
697     int fd;
698 {
699     int i;
700
701     /* Pop any existing modules off the tty stream. */
702     for (i = 0;; ++i)
703         if (ioctl(fd, I_LOOK, tty_modules[i]) < 0
704             || strcmp(tty_modules[i], "ptem") == 0
705             || ioctl(fd, I_POP, 0) < 0)
706             break;
707     tty_nmodules = i;
708
709     /* Push the async hdlc module and the compressor module. */
710     tty_npushed = 0;
711
712     if(!sync_serial) {
713         if (ioctl(fd, I_PUSH, AHDLC_MOD_NAME) < 0) {
714             error("Couldn't push PPP Async HDLC module: %m");
715             return -1;
716         }
717         ++tty_npushed;
718     }
719     if (kdebugflag & 4) {
720         i = PPPDBG_LOG + PPPDBG_AHDLC;
721         strioctl(pppfd, PPPIO_DEBUG, &i, sizeof(int), 0);
722     }
723     if (ioctl(fd, I_PUSH, COMP_MOD_NAME) < 0)
724         error("Couldn't push PPP compression module: %m");
725     else
726         ++tty_npushed;
727     if (kdebugflag & 2) {
728         i = PPPDBG_LOG + PPPDBG_COMP;
729         strioctl(pppfd, PPPIO_DEBUG, &i, sizeof(int), 0);
730     }
731
732     /* Link the serial port under the PPP multiplexor. */
733     if ((fdmuxid = ioctl(pppfd, I_LINK, fd)) < 0) {
734         error("Can't link tty to PPP mux: %m");
735         return -1;
736     }
737
738     return pppfd;
739 }
740
741 /*
742  * restore_loop - reattach the ppp unit to the loopback.
743  * This doesn't need to do anything because disestablish_ppp does it.
744  */
745 void
746 restore_loop()
747 {
748 }
749
750 /*
751  * disestablish_ppp - Restore the serial port to normal operation.
752  * It attempts to reconstruct the stream with the previously popped
753  * modules.  This shouldn't call die() because it's called from die().
754  */
755 void
756 disestablish_ppp(fd)
757     int fd;
758 {
759     int i;
760
761     if (fdmuxid >= 0) {
762         if (ioctl(pppfd, I_UNLINK, fdmuxid) < 0) {
763             if (!hungup)
764                 error("Can't unlink tty from PPP mux: %m");
765         }
766         fdmuxid = -1;
767
768         if (!hungup) {
769             while (tty_npushed > 0 && ioctl(fd, I_POP, 0) >= 0)
770                 --tty_npushed;
771             for (i = tty_nmodules - 1; i >= 0; --i)
772                 if (ioctl(fd, I_PUSH, tty_modules[i]) < 0)
773                     error("Couldn't restore tty module %s: %m",
774                            tty_modules[i]);
775         }
776         if (hungup && default_device && tty_sid > 0) {
777             /*
778              * If we have received a hangup, we need to send a SIGHUP
779              * to the terminal's controlling process.  The reason is
780              * that the original stream head for the terminal hasn't
781              * seen the M_HANGUP message (it went up through the ppp
782              * driver to the stream head for our fd to /dev/ppp).
783              */
784             kill(tty_sid, SIGHUP);
785         }
786     }
787 }
788
789 /*
790  * Check whether the link seems not to be 8-bit clean.
791  */
792 void
793 clean_check()
794 {
795     int x;
796     char *s;
797
798     if (strioctl(pppfd, PPPIO_GCLEAN, &x, 0, sizeof(x)) < 0)
799         return;
800     s = NULL;
801     switch (~x) {
802     case RCV_B7_0:
803         s = "bit 7 set to 1";
804         break;
805     case RCV_B7_1:
806         s = "bit 7 set to 0";
807         break;
808     case RCV_EVNP:
809         s = "odd parity";
810         break;
811     case RCV_ODDP:
812         s = "even parity";
813         break;
814     }
815     if (s != NULL) {
816         warn("Serial link is not 8-bit clean:");
817         warn("All received characters had %s", s);
818     }
819 }
820
821 /*
822  * List of valid speeds.
823  */
824 struct speed {
825     int speed_int, speed_val;
826 } speeds[] = {
827 #ifdef B50
828     { 50, B50 },
829 #endif
830 #ifdef B75
831     { 75, B75 },
832 #endif
833 #ifdef B110
834     { 110, B110 },
835 #endif
836 #ifdef B134
837     { 134, B134 },
838 #endif
839 #ifdef B150
840     { 150, B150 },
841 #endif
842 #ifdef B200
843     { 200, B200 },
844 #endif
845 #ifdef B300
846     { 300, B300 },
847 #endif
848 #ifdef B600
849     { 600, B600 },
850 #endif
851 #ifdef B1200
852     { 1200, B1200 },
853 #endif
854 #ifdef B1800
855     { 1800, B1800 },
856 #endif
857 #ifdef B2000
858     { 2000, B2000 },
859 #endif
860 #ifdef B2400
861     { 2400, B2400 },
862 #endif
863 #ifdef B3600
864     { 3600, B3600 },
865 #endif
866 #ifdef B4800
867     { 4800, B4800 },
868 #endif
869 #ifdef B7200
870     { 7200, B7200 },
871 #endif
872 #ifdef B9600
873     { 9600, B9600 },
874 #endif
875 #ifdef B19200
876     { 19200, B19200 },
877 #endif
878 #ifdef B38400
879     { 38400, B38400 },
880 #endif
881 #ifdef EXTA
882     { 19200, EXTA },
883 #endif
884 #ifdef EXTB
885     { 38400, EXTB },
886 #endif
887 #ifdef B57600
888     { 57600, B57600 },
889 #endif
890 #ifdef B76800
891     { 76800, B76800 },
892 #endif
893 #ifdef B115200
894     { 115200, B115200 },
895 #endif
896 #ifdef B153600
897     { 153600, B153600 },
898 #endif
899 #ifdef B230400
900     { 230400, B230400 },
901 #endif
902 #ifdef B307200
903     { 307200, B307200 },
904 #endif
905 #ifdef B460800
906     { 460800, B460800 },
907 #endif
908     { 0, 0 }
909 };
910
911 /*
912  * Translate from bits/second to a speed_t.
913  */
914 static int
915 translate_speed(bps)
916     int bps;
917 {
918     struct speed *speedp;
919
920     if (bps == 0)
921         return 0;
922     for (speedp = speeds; speedp->speed_int; speedp++)
923         if (bps == speedp->speed_int)
924             return speedp->speed_val;
925     warn("speed %d not supported", bps);
926     return 0;
927 }
928
929 /*
930  * Translate from a speed_t to bits/second.
931  */
932 static int
933 baud_rate_of(speed)
934     int speed;
935 {
936     struct speed *speedp;
937
938     if (speed == 0)
939         return 0;
940     for (speedp = speeds; speedp->speed_int; speedp++)
941         if (speed == speedp->speed_val)
942             return speedp->speed_int;
943     return 0;
944 }
945
946 /*
947  * set_up_tty: Set up the serial port on `fd' for 8 bits, no parity,
948  * at the requested speed, etc.  If `local' is true, set CLOCAL
949  * regardless of whether the modem option was specified.
950  */
951 void
952 set_up_tty(fd, local)
953     int fd, local;
954 {
955     int speed;
956     struct termios tios;
957 #if !defined (CRTSCTS)
958     struct termiox tiox;
959 #endif
960
961     if (!sync_serial && tcgetattr(fd, &tios) < 0)
962         fatal("tcgetattr: %m");
963
964 #ifndef CRTSCTS
965     termiox_ok = 1;
966     if (ioctl (fd, TCGETX, &tiox) < 0) {
967         termiox_ok = 0;
968         if (errno != ENOTTY)
969             error("TCGETX: %m");
970     }
971 #endif
972
973     if (!restore_term) {
974         inittermios = tios;
975 #ifndef CRTSCTS
976         inittermiox = tiox;
977 #endif
978         ioctl(fd, TIOCGWINSZ, &wsinfo);
979     }
980
981     tios.c_cflag &= ~(CSIZE | CSTOPB | PARENB | CLOCAL);
982 #ifdef CRTSCTS
983     if (crtscts > 0)
984         tios.c_cflag |= CRTSCTS;
985     else if (crtscts < 0)
986         tios.c_cflag &= ~CRTSCTS;
987 #else
988     if (crtscts != 0 && !termiox_ok) {
989         error("Can't set RTS/CTS flow control");
990     } else if (crtscts > 0) {
991         tiox.x_hflag |= RTSXOFF|CTSXON;
992     } else if (crtscts < 0) {
993         tiox.x_hflag &= ~(RTSXOFF|CTSXON);
994     }
995 #endif
996
997     tios.c_cflag |= CS8 | CREAD | HUPCL;
998     if (local || !modem)
999         tios.c_cflag |= CLOCAL;
1000     tios.c_iflag = IGNBRK | IGNPAR;
1001     tios.c_oflag = 0;
1002     tios.c_lflag = 0;
1003     tios.c_cc[VMIN] = 1;
1004     tios.c_cc[VTIME] = 0;
1005
1006     if (crtscts == -2) {
1007         tios.c_iflag |= IXON | IXOFF;
1008         tios.c_cc[VSTOP] = 0x13;        /* DC3 = XOFF = ^S */
1009         tios.c_cc[VSTART] = 0x11;       /* DC1 = XON  = ^Q */
1010     }
1011
1012     speed = translate_speed(inspeed);
1013     if (speed) {
1014         cfsetospeed(&tios, speed);
1015         cfsetispeed(&tios, speed);
1016     } else {
1017         speed = cfgetospeed(&tios);
1018         /*
1019          * We can't proceed if the serial port speed is 0,
1020          * since that implies that the serial port is disabled.
1021          */
1022         if (speed == B0)
1023             fatal("Baud rate for %s is 0; need explicit baud rate", devnam);
1024     }
1025
1026     if (!sync_serial && tcsetattr(fd, TCSAFLUSH, &tios) < 0)
1027         fatal("tcsetattr: %m");
1028
1029 #ifndef CRTSCTS
1030     if (termiox_ok && ioctl (fd, TCSETXF, &tiox) < 0){
1031         error("TCSETXF: %m");
1032     }
1033 #endif
1034
1035     baud_rate = inspeed = baud_rate_of(speed);
1036     restore_term = 1;
1037 }
1038
1039 /*
1040  * restore_tty - restore the terminal to the saved settings.
1041  */
1042 void
1043 restore_tty(fd)
1044     int fd;
1045 {
1046     if (restore_term) {
1047         if (!default_device) {
1048             /*
1049              * Turn off echoing, because otherwise we can get into
1050              * a loop with the tty and the modem echoing to each other.
1051              * We presume we are the sole user of this tty device, so
1052              * when we close it, it will revert to its defaults anyway.
1053              */
1054             inittermios.c_lflag &= ~(ECHO | ECHONL);
1055         }
1056         if (tcsetattr(fd, TCSAFLUSH, &inittermios) < 0)
1057             if (!hungup && errno != ENXIO)
1058                 warn("tcsetattr: %m");
1059 #ifndef CRTSCTS
1060         if (ioctl (fd, TCSETXF, &inittermiox) < 0){
1061             if (!hungup && errno != ENXIO)
1062                 error("TCSETXF: %m");
1063         }
1064 #endif
1065         ioctl(fd, TIOCSWINSZ, &wsinfo);
1066         restore_term = 0;
1067     }
1068 }
1069
1070 /*
1071  * setdtr - control the DTR line on the serial port.
1072  * This is called from die(), so it shouldn't call die().
1073  */
1074 void
1075 setdtr(fd, on)
1076 int fd, on;
1077 {
1078     int modembits = TIOCM_DTR;
1079
1080     ioctl(fd, (on? TIOCMBIS: TIOCMBIC), &modembits);
1081 }
1082
1083 /*
1084  * open_loopback - open the device we use for getting packets
1085  * in demand mode.  Under Solaris 2, we use our existing fd
1086  * to the ppp driver.
1087  */
1088 int
1089 open_ppp_loopback()
1090 {
1091     return pppfd;
1092 }
1093
1094 /*
1095  * output - Output PPP packet.
1096  */
1097 void
1098 output(unit, p, len)
1099     int unit;
1100     u_char *p;
1101     int len;
1102 {
1103     struct strbuf data;
1104     int retries;
1105     struct pollfd pfd;
1106
1107     if (debug)
1108         dbglog("sent %P", p, len);
1109
1110     data.len = len;
1111     data.buf = (caddr_t) p;
1112     retries = 4;
1113     while (putmsg(pppfd, NULL, &data, 0) < 0) {
1114         if (--retries < 0 || (errno != EWOULDBLOCK && errno != EAGAIN)) {
1115             if (errno != ENXIO)
1116                 error("Couldn't send packet: %m");
1117             break;
1118         }
1119         pfd.fd = pppfd;
1120         pfd.events = POLLOUT;
1121         poll(&pfd, 1, 250);     /* wait for up to 0.25 seconds */
1122     }
1123 }
1124
1125
1126 /*
1127  * wait_input - wait until there is data available,
1128  * for the length of time specified by *timo (indefinite
1129  * if timo is NULL).
1130  */
1131 void
1132 wait_input(timo)
1133     struct timeval *timo;
1134 {
1135     int t;
1136
1137     t = timo == NULL? -1: timo->tv_sec * 1000 + timo->tv_usec / 1000;
1138     if (poll(pollfds, n_pollfds, t) < 0 && errno != EINTR)
1139         fatal("poll: %m");
1140 }
1141
1142 /*
1143  * add_fd - add an fd to the set that wait_input waits for.
1144  */
1145 void add_fd(fd)
1146     int fd;
1147 {
1148     int n;
1149
1150     for (n = 0; n < n_pollfds; ++n)
1151         if (pollfds[n].fd == fd)
1152             return;
1153     if (n_pollfds < MAX_POLLFDS) {
1154         pollfds[n_pollfds].fd = fd;
1155         pollfds[n_pollfds].events = POLLIN | POLLPRI | POLLHUP;
1156         ++n_pollfds;
1157     } else
1158         error("Too many inputs!");
1159 }
1160
1161 /*
1162  * remove_fd - remove an fd from the set that wait_input waits for.
1163  */
1164 void remove_fd(fd)
1165     int fd;
1166 {
1167     int n;
1168
1169     for (n = 0; n < n_pollfds; ++n) {
1170         if (pollfds[n].fd == fd) {
1171             while (++n < n_pollfds)
1172                 pollfds[n-1] = pollfds[n];
1173             --n_pollfds;
1174             break;
1175         }
1176     }
1177 }
1178
1179 #if 0
1180 /*
1181  * wait_loop_output - wait until there is data available on the
1182  * loopback, for the length of time specified by *timo (indefinite
1183  * if timo is NULL).
1184  */
1185 void
1186 wait_loop_output(timo)
1187     struct timeval *timo;
1188 {
1189     wait_input(timo);
1190 }
1191
1192 /*
1193  * wait_time - wait for a given length of time or until a
1194  * signal is received.
1195  */
1196 void
1197 wait_time(timo)
1198     struct timeval *timo;
1199 {
1200     int n;
1201
1202     n = select(0, NULL, NULL, NULL, timo);
1203     if (n < 0 && errno != EINTR)
1204         fatal("select: %m");
1205 }
1206 #endif
1207
1208
1209 /*
1210  * read_packet - get a PPP packet from the serial device.
1211  */
1212 int
1213 read_packet(buf)
1214     u_char *buf;
1215 {
1216     struct strbuf ctrl, data;
1217     int flags, len;
1218     unsigned char ctrlbuf[sizeof(union DL_primitives) + 64];
1219
1220     for (;;) {
1221         data.maxlen = PPP_MRU + PPP_HDRLEN;
1222         data.buf = (caddr_t) buf;
1223         ctrl.maxlen = sizeof(ctrlbuf);
1224         ctrl.buf = (caddr_t) ctrlbuf;
1225         flags = 0;
1226         len = getmsg(pppfd, &ctrl, &data, &flags);
1227         if (len < 0) {
1228             if (errno == EAGAIN || errno == EINTR)
1229                 return -1;
1230             fatal("Error reading packet: %m");
1231         }
1232
1233         if (ctrl.len <= 0)
1234             return data.len;
1235
1236         /*
1237          * Got a M_PROTO or M_PCPROTO message.  Interpret it
1238          * as a DLPI primitive??
1239          */
1240         if (debug)
1241             dbglog("got dlpi prim 0x%x, len=%d",
1242                    ((union DL_primitives *)ctrlbuf)->dl_primitive, ctrl.len);
1243
1244     }
1245 }
1246
1247 /*
1248  * get_loop_output - get outgoing packets from the ppp device,
1249  * and detect when we want to bring the real link up.
1250  * Return value is 1 if we need to bring up the link, 0 otherwise.
1251  */
1252 int
1253 get_loop_output()
1254 {
1255     int len;
1256     int rv = 0;
1257
1258     while ((len = read_packet(inpacket_buf)) > 0) {
1259         if (loop_frame(inpacket_buf, len))
1260             rv = 1;
1261     }
1262     return rv;
1263 }
1264
1265 /*
1266  * ppp_send_config - configure the transmit characteristics of
1267  * the ppp interface.
1268  */
1269 void
1270 ppp_send_config(unit, mtu, asyncmap, pcomp, accomp)
1271     int unit, mtu;
1272     u_int32_t asyncmap;
1273     int pcomp, accomp;
1274 {
1275     int cf[2];
1276     struct ifreq ifr;
1277 #if defined(INET6) && defined(SOL2)
1278     struct lifreq lifr;
1279     int fd;
1280 #endif /* defined(INET6) && defined(SOL2) */
1281
1282     link_mtu = mtu;
1283     if (strioctl(pppfd, PPPIO_MTU, &mtu, sizeof(mtu), 0) < 0) {
1284         if (hungup && errno == ENXIO)
1285             return;
1286         error("Couldn't set MTU: %m");
1287     }
1288     if (fdmuxid >= 0) {
1289         /* can't set these if we don't have a stream attached below /dev/ppp */
1290         if (strioctl(pppfd, PPPIO_XACCM, &asyncmap, sizeof(asyncmap), 0) < 0) {
1291             error("Couldn't set transmit ACCM: %m");
1292         }
1293         cf[0] = (pcomp? COMP_PROT: 0) + (accomp? COMP_AC: 0);
1294         cf[1] = COMP_PROT | COMP_AC;
1295         if (strioctl(pppfd, PPPIO_CFLAGS, cf, sizeof(cf), sizeof(int)) < 0) {
1296             error("Couldn't set prot/AC compression: %m");
1297         }
1298     }
1299
1300     /* set the MTU for IP as well */
1301     memset(&ifr, 0, sizeof(ifr));
1302     strlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
1303     ifr.ifr_metric = link_mtu;
1304     if (ioctl(ipfd, SIOCSIFMTU, &ifr) < 0) {
1305         error("Couldn't set IP MTU: %m");
1306     }
1307
1308 #if defined(INET6) && defined(SOL2) 
1309     fd = socket(AF_INET6, SOCK_DGRAM, 0);
1310     if (fd < 0)
1311         error("Couldn't open IPv6 socket: %m");
1312
1313     memset(&lifr, 0, sizeof(lifr));
1314     strlcpy(lifr.lifr_name, ifname, sizeof(lifr.lifr_name));
1315     lifr.lifr_mtu = link_mtu;
1316     if (ioctl(fd, SIOCSLIFMTU, &lifr) < 0) {
1317         close(fd);
1318         error("Couldn't set IPv6 MTU: %m");
1319     }
1320     close(fd);
1321 #endif /* defined(INET6) && defined(SOL2) */
1322 }
1323
1324 /*
1325  * ppp_set_xaccm - set the extended transmit ACCM for the interface.
1326  */
1327 void
1328 ppp_set_xaccm(unit, accm)
1329     int unit;
1330     ext_accm accm;
1331 {
1332     if (fdmuxid >= 0
1333         && strioctl(pppfd, PPPIO_XACCM, accm, sizeof(ext_accm), 0) < 0) {
1334         if (!hungup || errno != ENXIO)
1335             warn("Couldn't set extended ACCM: %m");
1336     }
1337 }
1338
1339 /*
1340  * ppp_recv_config - configure the receive-side characteristics of
1341  * the ppp interface.
1342  */
1343 void
1344 ppp_recv_config(unit, mru, asyncmap, pcomp, accomp)
1345     int unit, mru;
1346     u_int32_t asyncmap;
1347     int pcomp, accomp;
1348 {
1349     int cf[2];
1350
1351     link_mru = mru;
1352     if (strioctl(pppfd, PPPIO_MRU, &mru, sizeof(mru), 0) < 0) {
1353         if (hungup && errno == ENXIO)
1354             return;
1355         error("Couldn't set MRU: %m");
1356     }
1357     if (fdmuxid >= 0) {
1358         /* can't set these if we don't have a stream attached below /dev/ppp */
1359         if (strioctl(pppfd, PPPIO_RACCM, &asyncmap, sizeof(asyncmap), 0) < 0) {
1360             error("Couldn't set receive ACCM: %m");
1361         }
1362         cf[0] = (pcomp? DECOMP_PROT: 0) + (accomp? DECOMP_AC: 0);
1363         cf[1] = DECOMP_PROT | DECOMP_AC;
1364         if (strioctl(pppfd, PPPIO_CFLAGS, cf, sizeof(cf), sizeof(int)) < 0) {
1365             error("Couldn't set prot/AC decompression: %m");
1366         }
1367     }
1368 }
1369
1370 /*
1371  * ccp_test - ask kernel whether a given compression method
1372  * is acceptable for use.
1373  */
1374 int
1375 ccp_test(unit, opt_ptr, opt_len, for_transmit)
1376     int unit, opt_len, for_transmit;
1377     u_char *opt_ptr;
1378 {
1379     if (strioctl(pppfd, (for_transmit? PPPIO_XCOMP: PPPIO_RCOMP),
1380                  opt_ptr, opt_len, 0) >= 0)
1381         return 1;
1382     return (errno == ENOSR)? 0: -1;
1383 }
1384
1385 /*
1386  * ccp_flags_set - inform kernel about the current state of CCP.
1387  */
1388 void
1389 ccp_flags_set(unit, isopen, isup)
1390     int unit, isopen, isup;
1391 {
1392     int cf[2];
1393
1394     cf[0] = (isopen? CCP_ISOPEN: 0) + (isup? CCP_ISUP: 0);
1395     cf[1] = CCP_ISOPEN | CCP_ISUP | CCP_ERROR | CCP_FATALERROR;
1396     if (strioctl(pppfd, PPPIO_CFLAGS, cf, sizeof(cf), sizeof(int)) < 0) {
1397         if (!hungup || errno != ENXIO)
1398             error("Couldn't set kernel CCP state: %m");
1399     }
1400 }
1401
1402 /*
1403  * get_idle_time - return how long the link has been idle.
1404  */
1405 int
1406 get_idle_time(u, ip)
1407     int u;
1408     struct ppp_idle *ip;
1409 {
1410     return strioctl(pppfd, PPPIO_GIDLE, ip, 0, sizeof(struct ppp_idle)) >= 0;
1411 }
1412
1413 /*
1414  * get_ppp_stats - return statistics for the link.
1415  */
1416 int
1417 get_ppp_stats(u, stats)
1418     int u;
1419     struct pppd_stats *stats;
1420 {
1421     struct ppp_stats s;
1422
1423     if (strioctl(pppfd, PPPIO_GETSTAT, &s, 0, sizeof(s)) < 0) {
1424         error("Couldn't get link statistics: %m");
1425         return 0;
1426     }
1427     stats->bytes_in = s.p.ppp_ibytes;
1428     stats->bytes_out = s.p.ppp_obytes;
1429     return 1;
1430 }
1431
1432 #if 0
1433 /*
1434  * set_filters - transfer the pass and active filters to the kernel.
1435  */
1436 int
1437 set_filters(pass, active)
1438     struct bpf_program *pass, *active;
1439 {
1440     int ret = 1;
1441
1442     if (pass->bf_len > 0) {
1443         if (strioctl(pppfd, PPPIO_PASSFILT, pass,
1444                      sizeof(struct bpf_program), 0) < 0) {
1445             error("Couldn't set pass-filter in kernel: %m");
1446             ret = 0;
1447         }
1448     }
1449     if (active->bf_len > 0) {
1450         if (strioctl(pppfd, PPPIO_ACTIVEFILT, active,
1451                      sizeof(struct bpf_program), 0) < 0) {
1452             error("Couldn't set active-filter in kernel: %m");
1453             ret = 0;
1454         }
1455     }
1456     return ret;
1457 }
1458 #endif
1459
1460 /*
1461  * ccp_fatal_error - returns 1 if decompression was disabled as a
1462  * result of an error detected after decompression of a packet,
1463  * 0 otherwise.  This is necessary because of patent nonsense.
1464  */
1465 int
1466 ccp_fatal_error(unit)
1467     int unit;
1468 {
1469     int cf[2];
1470
1471     cf[0] = cf[1] = 0;
1472     if (strioctl(pppfd, PPPIO_CFLAGS, cf, sizeof(cf), sizeof(int)) < 0) {
1473         if (errno != ENXIO && errno != EINVAL)
1474             error("Couldn't get compression flags: %m");
1475         return 0;
1476     }
1477     return cf[0] & CCP_FATALERROR;
1478 }
1479
1480 /*
1481  * sifvjcomp - config tcp header compression
1482  */
1483 int
1484 sifvjcomp(u, vjcomp, xcidcomp, xmaxcid)
1485     int u, vjcomp, xcidcomp, xmaxcid;
1486 {
1487     int cf[2];
1488     char maxcid[2];
1489
1490     if (vjcomp) {
1491         maxcid[0] = xcidcomp;
1492         maxcid[1] = 15;         /* XXX should be rmaxcid */
1493         if (strioctl(pppfd, PPPIO_VJINIT, maxcid, sizeof(maxcid), 0) < 0) {
1494             error("Couldn't initialize VJ compression: %m");
1495         }
1496     }
1497
1498     cf[0] = (vjcomp? COMP_VJC + DECOMP_VJC: 0)  /* XXX this is wrong */
1499         + (xcidcomp? COMP_VJCCID + DECOMP_VJCCID: 0);
1500     cf[1] = COMP_VJC + DECOMP_VJC + COMP_VJCCID + DECOMP_VJCCID;
1501     if (strioctl(pppfd, PPPIO_CFLAGS, cf, sizeof(cf), sizeof(int)) < 0) {
1502         if (vjcomp)
1503             error("Couldn't enable VJ compression: %m");
1504     }
1505
1506     return 1;
1507 }
1508
1509 /*
1510  * sifup - Config the interface up and enable IP packets to pass.
1511  */
1512 int
1513 sifup(u)
1514     int u;
1515 {
1516     struct ifreq ifr;
1517
1518     strlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
1519     if (ioctl(ipfd, SIOCGIFFLAGS, &ifr) < 0) {
1520         error("Couldn't mark interface up (get): %m");
1521         return 0;
1522     }
1523     ifr.ifr_flags |= IFF_UP;
1524     if (ioctl(ipfd, SIOCSIFFLAGS, &ifr) < 0) {
1525         error("Couldn't mark interface up (set): %m");
1526         return 0;
1527     }
1528     if_is_up = 1;
1529     return 1;
1530 }
1531
1532 /*
1533  * sifdown - Config the interface down and disable IP.
1534  */
1535 int
1536 sifdown(u)
1537     int u;
1538 {
1539     struct ifreq ifr;
1540
1541     if (ipmuxid < 0)
1542         return 1;
1543     strlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
1544     if (ioctl(ipfd, SIOCGIFFLAGS, &ifr) < 0) {
1545         error("Couldn't mark interface down (get): %m");
1546         return 0;
1547     }
1548     ifr.ifr_flags &= ~IFF_UP;
1549     if (ioctl(ipfd, SIOCSIFFLAGS, &ifr) < 0) {
1550         error("Couldn't mark interface down (set): %m");
1551         return 0;
1552     }
1553     if_is_up = 0;
1554     return 1;
1555 }
1556
1557 /*
1558  * sifnpmode - Set the mode for handling packets for a given NP.
1559  */
1560 int
1561 sifnpmode(u, proto, mode)
1562     int u;
1563     int proto;
1564     enum NPmode mode;
1565 {
1566     int npi[2];
1567
1568     npi[0] = proto;
1569     npi[1] = (int) mode;
1570     if (strioctl(pppfd, PPPIO_NPMODE, &npi, 2 * sizeof(int), 0) < 0) {
1571         error("ioctl(set NP %d mode to %d): %m", proto, mode);
1572         return 0;
1573     }
1574     return 1;
1575 }
1576
1577 #if defined(SOL2) && defined(INET6)
1578 /*
1579  * sif6up - Config the IPv6 interface up and enable IPv6 packets to pass.
1580  */
1581 int
1582 sif6up(u)
1583     int u;
1584 {
1585     struct lifreq lifr;
1586     int fd;
1587
1588     fd = socket(AF_INET6, SOCK_DGRAM, 0);
1589     if (fd < 0) {
1590         return 0;
1591     }
1592
1593     memset(&lifr, 0, sizeof(lifr));
1594     strlcpy(lifr.lifr_name, ifname, sizeof(lifr.lifr_name));
1595     if (ioctl(fd, SIOCGLIFFLAGS, &lifr) < 0) {
1596         close(fd);
1597         return 0;
1598     }
1599
1600     lifr.lifr_flags |= IFF_UP;
1601     strlcpy(lifr.lifr_name, ifname, sizeof(lifr.lifr_name));
1602     if (ioctl(fd, SIOCSLIFFLAGS, &lifr) < 0) {
1603         close(fd);
1604         return 0;
1605     }
1606
1607     if6_is_up = 1;
1608     close(fd);
1609     return 1;
1610 }
1611
1612 /*
1613  * sifdown - Config the IPv6 interface down and disable IPv6.
1614  */
1615 int
1616 sif6down(u)
1617     int u;
1618 {
1619     struct lifreq lifr;
1620     int fd;
1621
1622     fd = socket(AF_INET6, SOCK_DGRAM, 0);
1623     if (fd < 0)
1624         return 0;
1625
1626     memset(&lifr, 0, sizeof(lifr));
1627     strlcpy(lifr.lifr_name, ifname, sizeof(lifr.lifr_name));
1628     if (ioctl(fd, SIOCGLIFFLAGS, &lifr) < 0) {
1629         close(fd);
1630         return 0;
1631     }
1632
1633     lifr.lifr_flags &= ~IFF_UP;
1634     strlcpy(lifr.lifr_name, ifname, sizeof(lifr.lifr_name));
1635     if (ioctl(fd, SIOCGLIFFLAGS, &lifr) < 0) {
1636         close(fd);
1637         return 0;
1638     }
1639
1640     if6_is_up = 0;
1641     close(fd);
1642     return 1;
1643 }
1644
1645 /*
1646  * sif6addr - Config the interface with an IPv6 link-local address
1647  */
1648 int
1649 sif6addr(u, o, h)
1650     int u;
1651     eui64_t o, h;
1652 {
1653     struct lifreq lifr;
1654     struct sockaddr_storage laddr;
1655     struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)&laddr;
1656     int fd;
1657
1658     fd = socket(AF_INET6, SOCK_DGRAM, 0);
1659     if (fd < 0)
1660         return 0;
1661
1662     memset(&lifr, 0, sizeof(lifr));
1663     strlcpy(lifr.lifr_name, ifname, sizeof(lifr.lifr_name));
1664
1665     /*
1666      * Do this because /dev/ppp responds to DL_PHYS_ADDR_REQ with
1667      * zero values, hence the interface token came to be zero too,
1668      * and without this, in.ndpd will complain
1669      */
1670     IN6_LLTOKEN_FROM_EUI64(lifr, sin6, o);
1671     if (ioctl(fd, SIOCSLIFTOKEN, &lifr) < 0) {
1672         close(fd);
1673         return 0;
1674     }
1675
1676     /*
1677      * Set the interface address and destination address
1678      */
1679     IN6_LLADDR_FROM_EUI64(lifr, sin6, o);
1680     if (ioctl(fd, SIOCSLIFADDR, &lifr) < 0) {
1681         close(fd);
1682         return 0;
1683     }
1684
1685     memset(&lifr, 0, sizeof(lifr));
1686     strlcpy(lifr.lifr_name, ifname, sizeof(lifr.lifr_name));
1687     IN6_LLADDR_FROM_EUI64(lifr, sin6, h);
1688     if (ioctl(fd, SIOCSLIFDSTADDR, &lifr) < 0) {
1689         close(fd);
1690         return 0;
1691     }
1692
1693     return 1;
1694 }
1695
1696 /*
1697  * cif6addr - Remove the IPv6 address from interface
1698  */
1699 int
1700 cif6addr(u, o, h)
1701     int u;
1702     eui64_t o, h;
1703 {
1704     return 1;
1705 }
1706
1707 #endif /* defined(SOL2) && defined(INET6) */
1708
1709
1710 #define INET_ADDR(x)    (((struct sockaddr_in *) &(x))->sin_addr.s_addr)
1711
1712 /*
1713  * sifaddr - Config the interface IP addresses and netmask.
1714  */
1715 int
1716 sifaddr(u, o, h, m)
1717     int u;
1718     u_int32_t o, h, m;
1719 {
1720     struct ifreq ifr;
1721     int ret = 1;
1722
1723     memset(&ifr, 0, sizeof(ifr));
1724     strlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
1725     ifr.ifr_addr.sa_family = AF_INET;
1726     INET_ADDR(ifr.ifr_addr) = m;
1727     if (ioctl(ipfd, SIOCSIFNETMASK, &ifr) < 0) {
1728         error("Couldn't set IP netmask: %m");
1729         ret = 0;
1730     }
1731     ifr.ifr_addr.sa_family = AF_INET;
1732     INET_ADDR(ifr.ifr_addr) = o;
1733     if (ioctl(ipfd, SIOCSIFADDR, &ifr) < 0) {
1734         error("Couldn't set local IP address: %m");
1735         ret = 0;
1736     }
1737
1738     /*
1739      * On some systems, we have to explicitly set the point-to-point
1740      * flag bit before we can set a destination address.
1741      */
1742     if (ioctl(ipfd, SIOCGIFFLAGS, &ifr) >= 0
1743         && (ifr.ifr_flags & IFF_POINTOPOINT) == 0) {
1744         ifr.ifr_flags |= IFF_POINTOPOINT;
1745         if (ioctl(ipfd, SIOCSIFFLAGS, &ifr) < 0) {
1746             error("Couldn't mark interface pt-to-pt: %m");
1747             ret = 0;
1748         }
1749     }
1750     ifr.ifr_dstaddr.sa_family = AF_INET;
1751     INET_ADDR(ifr.ifr_dstaddr) = h;
1752     if (ioctl(ipfd, SIOCSIFDSTADDR, &ifr) < 0) {
1753         error("Couldn't set remote IP address: %m");
1754         ret = 0;
1755     }
1756 #if 0   /* now done in ppp_send_config */
1757     ifr.ifr_metric = link_mtu;
1758     if (ioctl(ipfd, SIOCSIFMTU, &ifr) < 0) {
1759         error("Couldn't set IP MTU: %m");
1760     }
1761 #endif
1762
1763     remote_addr = h;
1764     return ret;
1765 }
1766
1767 /*
1768  * cifaddr - Clear the interface IP addresses, and delete routes
1769  * through the interface if possible.
1770  */
1771 int
1772 cifaddr(u, o, h)
1773     int u;
1774     u_int32_t o, h;
1775 {
1776 #if defined(__USLC__)           /* was: #if 0 */
1777     cifroute(unit, ouraddr, hisaddr);
1778     if (ipmuxid >= 0) {
1779         notice("Removing ppp interface unit");
1780         if (ioctl(ipfd, I_UNLINK, ipmuxid) < 0) {
1781             error("Can't remove ppp interface unit: %m");
1782             return 0;
1783         }
1784         ipmuxid = -1;
1785     }
1786 #endif
1787     remote_addr = 0;
1788     return 1;
1789 }
1790
1791 /*
1792  * sifdefaultroute - assign a default route through the address given.
1793  */
1794 int
1795 sifdefaultroute(u, l, g)
1796     int u;
1797     u_int32_t l, g;
1798 {
1799     struct rtentry rt;
1800
1801 #if defined(__USLC__)
1802     g = l;                      /* use the local address as gateway */
1803 #endif
1804     memset(&rt, 0, sizeof(rt));
1805     rt.rt_dst.sa_family = AF_INET;
1806     INET_ADDR(rt.rt_dst) = 0;
1807     rt.rt_gateway.sa_family = AF_INET;
1808     INET_ADDR(rt.rt_gateway) = g;
1809     rt.rt_flags = RTF_GATEWAY;
1810
1811     if (ioctl(ipfd, SIOCADDRT, &rt) < 0) {
1812         error("Can't add default route: %m");
1813         return 0;
1814     }
1815
1816     default_route_gateway = g;
1817     return 1;
1818 }
1819
1820 /*
1821  * cifdefaultroute - delete a default route through the address given.
1822  */
1823 int
1824 cifdefaultroute(u, l, g)
1825     int u;
1826     u_int32_t l, g;
1827 {
1828     struct rtentry rt;
1829
1830 #if defined(__USLC__)
1831     g = l;                      /* use the local address as gateway */
1832 #endif
1833     memset(&rt, 0, sizeof(rt));
1834     rt.rt_dst.sa_family = AF_INET;
1835     INET_ADDR(rt.rt_dst) = 0;
1836     rt.rt_gateway.sa_family = AF_INET;
1837     INET_ADDR(rt.rt_gateway) = g;
1838     rt.rt_flags = RTF_GATEWAY;
1839
1840     if (ioctl(ipfd, SIOCDELRT, &rt) < 0) {
1841         error("Can't delete default route: %m");
1842         return 0;
1843     }
1844
1845     default_route_gateway = 0;
1846     return 1;
1847 }
1848
1849 /*
1850  * sifproxyarp - Make a proxy ARP entry for the peer.
1851  */
1852 int
1853 sifproxyarp(unit, hisaddr)
1854     int unit;
1855     u_int32_t hisaddr;
1856 {
1857     struct arpreq arpreq;
1858
1859     memset(&arpreq, 0, sizeof(arpreq));
1860     if (!get_ether_addr(hisaddr, &arpreq.arp_ha))
1861         return 0;
1862
1863     arpreq.arp_pa.sa_family = AF_INET;
1864     INET_ADDR(arpreq.arp_pa) = hisaddr;
1865     arpreq.arp_flags = ATF_PERM | ATF_PUBL;
1866     if (ioctl(ipfd, SIOCSARP, (caddr_t) &arpreq) < 0) {
1867         error("Couldn't set proxy ARP entry: %m");
1868         return 0;
1869     }
1870
1871     proxy_arp_addr = hisaddr;
1872     return 1;
1873 }
1874
1875 /*
1876  * cifproxyarp - Delete the proxy ARP entry for the peer.
1877  */
1878 int
1879 cifproxyarp(unit, hisaddr)
1880     int unit;
1881     u_int32_t hisaddr;
1882 {
1883     struct arpreq arpreq;
1884
1885     memset(&arpreq, 0, sizeof(arpreq));
1886     arpreq.arp_pa.sa_family = AF_INET;
1887     INET_ADDR(arpreq.arp_pa) = hisaddr;
1888     if (ioctl(ipfd, SIOCDARP, (caddr_t)&arpreq) < 0) {
1889         error("Couldn't delete proxy ARP entry: %m");
1890         return 0;
1891     }
1892
1893     proxy_arp_addr = 0;
1894     return 1;
1895 }
1896
1897 /*
1898  * get_ether_addr - get the hardware address of an interface on the
1899  * the same subnet as ipaddr.
1900  */
1901 #define MAX_IFS         32
1902
1903 static int
1904 get_ether_addr(ipaddr, hwaddr)
1905     u_int32_t ipaddr;
1906     struct sockaddr *hwaddr;
1907 {
1908     struct ifreq *ifr, *ifend, ifreq;
1909     int nif;
1910     struct ifconf ifc;
1911     u_int32_t ina, mask;
1912
1913     /*
1914      * Scan through the system's network interfaces.
1915      */
1916 #ifdef SIOCGIFNUM
1917     if (ioctl(ipfd, SIOCGIFNUM, &nif) < 0)
1918 #endif
1919         nif = MAX_IFS;
1920     ifc.ifc_len = nif * sizeof(struct ifreq);
1921     ifc.ifc_buf = (caddr_t) malloc(ifc.ifc_len);
1922     if (ifc.ifc_buf == 0)
1923         return 0;
1924     if (ioctl(ipfd, SIOCGIFCONF, &ifc) < 0) {
1925         warn("Couldn't get system interface list: %m");
1926         free(ifc.ifc_buf);
1927         return 0;
1928     }
1929     ifend = (struct ifreq *) (ifc.ifc_buf + ifc.ifc_len);
1930     for (ifr = ifc.ifc_req; ifr < ifend; ++ifr) {
1931         if (ifr->ifr_addr.sa_family != AF_INET)
1932             continue;
1933         /*
1934          * Check that the interface is up, and not point-to-point or loopback.
1935          */
1936         strlcpy(ifreq.ifr_name, ifr->ifr_name, sizeof(ifreq.ifr_name));
1937         if (ioctl(ipfd, SIOCGIFFLAGS, &ifreq) < 0)
1938             continue;
1939         if ((ifreq.ifr_flags &
1940              (IFF_UP|IFF_BROADCAST|IFF_POINTOPOINT|IFF_LOOPBACK|IFF_NOARP))
1941             != (IFF_UP|IFF_BROADCAST))
1942             continue;
1943         /*
1944          * Get its netmask and check that it's on the right subnet.
1945          */
1946         if (ioctl(ipfd, SIOCGIFNETMASK, &ifreq) < 0)
1947             continue;
1948         ina = INET_ADDR(ifr->ifr_addr);
1949         mask = INET_ADDR(ifreq.ifr_addr);
1950         if ((ipaddr & mask) == (ina & mask))
1951             break;
1952     }
1953
1954     if (ifr >= ifend) {
1955         warn("No suitable interface found for proxy ARP");
1956         free(ifc.ifc_buf);
1957         return 0;
1958     }
1959
1960     info("found interface %s for proxy ARP", ifr->ifr_name);
1961     if (!get_hw_addr(ifr->ifr_name, ina, hwaddr)) {
1962         error("Couldn't get hardware address for %s", ifr->ifr_name);
1963         free(ifc.ifc_buf);
1964         return 0;
1965     }
1966
1967     free(ifc.ifc_buf);
1968     return 1;
1969 }
1970
1971 /*
1972  * get_hw_addr_dlpi - obtain the hardware address using DLPI
1973  */
1974 static int
1975 get_hw_addr_dlpi(name, hwaddr)
1976     char *name;
1977     struct sockaddr *hwaddr;
1978 {
1979     char *p, *q;
1980     int unit, iffd, adrlen;
1981     unsigned char *adrp;
1982     char ifdev[24];
1983     struct {
1984         union DL_primitives prim;
1985         char space[64];
1986     } reply;
1987
1988     /*
1989      * We have to open the device and ask it for its hardware address.
1990      * First split apart the device name and unit.
1991      */
1992     slprintf(ifdev, sizeof(ifdev), "/dev/%s", name);
1993     for (q = ifdev + strlen(ifdev); --q >= ifdev; )
1994         if (!isdigit(*q))
1995             break;
1996     unit = atoi(q+1);
1997     q[1] = 0;
1998
1999     /*
2000      * Open the device and do a DLPI attach and phys_addr_req.
2001      */
2002     iffd = open(ifdev, O_RDWR);
2003     if (iffd < 0) {
2004         error("Can't open %s: %m", ifdev);
2005         return 0;
2006     }
2007     if (dlpi_attach(iffd, unit) < 0
2008         || dlpi_get_reply(iffd, &reply.prim, DL_OK_ACK, sizeof(reply)) < 0
2009         || dlpi_info_req(iffd) < 0
2010         || dlpi_get_reply(iffd, &reply.prim, DL_INFO_ACK, sizeof(reply)) < 0) {
2011         close(iffd);
2012         return 0;
2013     }
2014
2015     adrlen = reply.prim.info_ack.dl_addr_length;
2016     adrp = (unsigned char *)&reply + reply.prim.info_ack.dl_addr_offset;
2017
2018 #if DL_CURRENT_VERSION >= 2
2019     if (reply.prim.info_ack.dl_sap_length < 0)
2020         adrlen += reply.prim.info_ack.dl_sap_length;
2021     else
2022         adrp += reply.prim.info_ack.dl_sap_length;
2023 #endif
2024
2025     hwaddr->sa_family = AF_UNSPEC;
2026     memcpy(hwaddr->sa_data, adrp, adrlen);
2027
2028     return 1;
2029 }
2030 /*
2031  * get_hw_addr - obtain the hardware address for a named interface.
2032  */
2033 static int
2034 get_hw_addr(name, ina, hwaddr)
2035     char *name;
2036     u_int32_t ina;
2037     struct sockaddr *hwaddr;
2038 {
2039     /* New way - get the address by doing an arp request. */
2040     int s;
2041     struct arpreq req;
2042
2043     s = socket(AF_INET, SOCK_DGRAM, 0);
2044     if (s < 0)
2045         return 0;
2046     memset(&req, 0, sizeof(req));
2047     req.arp_pa.sa_family = AF_INET;
2048     INET_ADDR(req.arp_pa) = ina;
2049     if (ioctl(s, SIOCGARP, &req) < 0) {
2050         error("Couldn't get ARP entry for %s: %m", ip_ntoa(ina));
2051         return 0;
2052     }
2053     *hwaddr = req.arp_ha;
2054     hwaddr->sa_family = AF_UNSPEC;
2055
2056     return 1;
2057 }
2058
2059 static int
2060 dlpi_attach(fd, ppa)
2061     int fd, ppa;
2062 {
2063     dl_attach_req_t req;
2064     struct strbuf buf;
2065
2066     req.dl_primitive = DL_ATTACH_REQ;
2067     req.dl_ppa = ppa;
2068     buf.len = sizeof(req);
2069     buf.buf = (void *) &req;
2070     return putmsg(fd, &buf, NULL, RS_HIPRI);
2071 }
2072
2073 static int
2074 dlpi_info_req(fd)
2075     int fd;
2076 {
2077     dl_info_req_t req;
2078     struct strbuf buf;
2079
2080     req.dl_primitive = DL_INFO_REQ;
2081     buf.len = sizeof(req);
2082     buf.buf = (void *) &req;
2083     return putmsg(fd, &buf, NULL, RS_HIPRI);
2084 }
2085
2086 static int
2087 dlpi_get_reply(fd, reply, expected_prim, maxlen)
2088     union DL_primitives *reply;
2089     int fd, expected_prim, maxlen;
2090 {
2091     struct strbuf buf;
2092     int flags, n;
2093     struct pollfd pfd;
2094
2095     /*
2096      * Use poll to wait for a message with a timeout.
2097      */
2098     pfd.fd = fd;
2099     pfd.events = POLLIN | POLLPRI;
2100     do {
2101         n = poll(&pfd, 1, 1000);
2102     } while (n == -1 && errno == EINTR);
2103     if (n <= 0)
2104         return -1;
2105
2106     /*
2107      * Get the reply.
2108      */
2109     buf.maxlen = maxlen;
2110     buf.buf = (void *) reply;
2111     flags = 0;
2112     if (getmsg(fd, &buf, NULL, &flags) < 0)
2113         return -1;
2114
2115     if (buf.len < sizeof(ulong)) {
2116         if (debug)
2117             dbglog("dlpi response short (len=%d)\n", buf.len);
2118         return -1;
2119     }
2120
2121     if (reply->dl_primitive == expected_prim)
2122         return 0;
2123
2124     if (debug) {
2125         if (reply->dl_primitive == DL_ERROR_ACK) {
2126             dbglog("dlpi error %d (unix errno %d) for prim %x\n",
2127                    reply->error_ack.dl_errno, reply->error_ack.dl_unix_errno,
2128                    reply->error_ack.dl_error_primitive);
2129         } else {
2130             dbglog("dlpi unexpected response prim %x\n",
2131                    reply->dl_primitive);
2132         }
2133     }
2134
2135     return -1;
2136 }
2137
2138 /*
2139  * Return user specified netmask, modified by any mask we might determine
2140  * for address `addr' (in network byte order).
2141  * Here we scan through the system's list of interfaces, looking for
2142  * any non-point-to-point interfaces which might appear to be on the same
2143  * network as `addr'.  If we find any, we OR in their netmask to the
2144  * user-specified netmask.
2145  */
2146 u_int32_t
2147 GetMask(addr)
2148     u_int32_t addr;
2149 {
2150     u_int32_t mask, nmask, ina;
2151     struct ifreq *ifr, *ifend, ifreq;
2152     int nif;
2153     struct ifconf ifc;
2154
2155     addr = ntohl(addr);
2156     if (IN_CLASSA(addr))        /* determine network mask for address class */
2157         nmask = IN_CLASSA_NET;
2158     else if (IN_CLASSB(addr))
2159         nmask = IN_CLASSB_NET;
2160     else
2161         nmask = IN_CLASSC_NET;
2162     /* class D nets are disallowed by bad_ip_adrs */
2163     mask = netmask | htonl(nmask);
2164
2165     /*
2166      * Scan through the system's network interfaces.
2167      */
2168 #ifdef SIOCGIFNUM
2169     if (ioctl(ipfd, SIOCGIFNUM, &nif) < 0)
2170 #endif
2171         nif = MAX_IFS;
2172     ifc.ifc_len = nif * sizeof(struct ifreq);
2173     ifc.ifc_buf = (caddr_t) malloc(ifc.ifc_len);
2174     if (ifc.ifc_buf == 0)
2175         return mask;
2176     if (ioctl(ipfd, SIOCGIFCONF, &ifc) < 0) {
2177         warn("Couldn't get system interface list: %m");
2178         free(ifc.ifc_buf);
2179         return mask;
2180     }
2181     ifend = (struct ifreq *) (ifc.ifc_buf + ifc.ifc_len);
2182     for (ifr = ifc.ifc_req; ifr < ifend; ++ifr) {
2183         /*
2184          * Check the interface's internet address.
2185          */
2186         if (ifr->ifr_addr.sa_family != AF_INET)
2187             continue;
2188         ina = INET_ADDR(ifr->ifr_addr);
2189         if ((ntohl(ina) & nmask) != (addr & nmask))
2190             continue;
2191         /*
2192          * Check that the interface is up, and not point-to-point or loopback.
2193          */
2194         strlcpy(ifreq.ifr_name, ifr->ifr_name, sizeof(ifreq.ifr_name));
2195         if (ioctl(ipfd, SIOCGIFFLAGS, &ifreq) < 0)
2196             continue;
2197         if ((ifreq.ifr_flags & (IFF_UP|IFF_POINTOPOINT|IFF_LOOPBACK))
2198             != IFF_UP)
2199             continue;
2200         /*
2201          * Get its netmask and OR it into our mask.
2202          */
2203         if (ioctl(ipfd, SIOCGIFNETMASK, &ifreq) < 0)
2204             continue;
2205         mask |= INET_ADDR(ifreq.ifr_addr);
2206     }
2207
2208     free(ifc.ifc_buf);
2209     return mask;
2210 }
2211
2212 /*
2213  * logwtmp - write an accounting record to the /var/adm/wtmp file.
2214  */
2215 void
2216 logwtmp(line, name, host)
2217     const char *line, *name, *host;
2218 {
2219     static struct utmpx utmpx;
2220
2221     if (name[0] != 0) {
2222         /* logging in */
2223         strncpy(utmpx.ut_user, name, sizeof(utmpx.ut_user));
2224         strncpy(utmpx.ut_id, ifname, sizeof(utmpx.ut_id));
2225         strncpy(utmpx.ut_line, line, sizeof(utmpx.ut_line));
2226         utmpx.ut_pid = getpid();
2227         utmpx.ut_type = USER_PROCESS;
2228     } else {
2229         utmpx.ut_type = DEAD_PROCESS;
2230     }
2231     gettimeofday(&utmpx.ut_tv, NULL);
2232     updwtmpx("/var/adm/wtmpx", &utmpx);
2233 }
2234
2235 /*
2236  * get_host_seed - return the serial number of this machine.
2237  */
2238 int
2239 get_host_seed()
2240 {
2241     char buf[32];
2242
2243     if (sysinfo(SI_HW_SERIAL, buf, sizeof(buf)) < 0) {
2244         error("sysinfo: %m");
2245         return 0;
2246     }
2247     return (int) strtoul(buf, NULL, 16);
2248 }
2249
2250 static int
2251 strioctl(fd, cmd, ptr, ilen, olen)
2252     int fd, cmd, ilen, olen;
2253     void *ptr;
2254 {
2255     struct strioctl str;
2256
2257     str.ic_cmd = cmd;
2258     str.ic_timout = 0;
2259     str.ic_len = ilen;
2260     str.ic_dp = ptr;
2261     if (ioctl(fd, I_STR, &str) == -1)
2262         return -1;
2263     if (str.ic_len != olen)
2264         dbglog("strioctl: expected %d bytes, got %d for cmd %x\n",
2265                olen, str.ic_len, cmd);
2266     return 0;
2267 }
2268
2269 #if 0
2270 /*
2271  * lock - create a lock file for the named lock device
2272  */
2273
2274 #define LOCK_PREFIX     "/var/spool/locks/LK."
2275 static char lock_file[40];      /* name of lock file created */
2276
2277 int
2278 lock(dev)
2279     char *dev;
2280 {
2281     int n, fd, pid;
2282     struct stat sbuf;
2283     char ascii_pid[12];
2284
2285     if (stat(dev, &sbuf) < 0) {
2286         error("Can't get device number for %s: %m", dev);
2287         return -1;
2288     }
2289     if ((sbuf.st_mode & S_IFMT) != S_IFCHR) {
2290         error("Can't lock %s: not a character device", dev);
2291         return -1;
2292     }
2293     slprintf(lock_file, sizeof(lock_file), "%s%03d.%03d.%03d",
2294              LOCK_PREFIX, major(sbuf.st_dev),
2295              major(sbuf.st_rdev), minor(sbuf.st_rdev));
2296
2297     while ((fd = open(lock_file, O_EXCL | O_CREAT | O_RDWR, 0644)) < 0) {
2298         if (errno == EEXIST
2299             && (fd = open(lock_file, O_RDONLY, 0)) >= 0) {
2300             /* Read the lock file to find out who has the device locked */
2301             n = read(fd, ascii_pid, 11);
2302             if (n <= 0) {
2303                 error("Can't read pid from lock file %s", lock_file);
2304                 close(fd);
2305             } else {
2306                 ascii_pid[n] = 0;
2307                 pid = atoi(ascii_pid);
2308                 if (pid > 0 && kill(pid, 0) == -1 && errno == ESRCH) {
2309                     /* pid no longer exists - remove the lock file */
2310                     if (unlink(lock_file) == 0) {
2311                         close(fd);
2312                         notice("Removed stale lock on %s (pid %d)",
2313                                dev, pid);
2314                         continue;
2315                     } else
2316                         warn("Couldn't remove stale lock on %s",
2317                                dev);
2318                 } else
2319                     notice("Device %s is locked by pid %d",
2320                            dev, pid);
2321             }
2322             close(fd);
2323         } else
2324             error("Can't create lock file %s: %m", lock_file);
2325         lock_file[0] = 0;
2326         return -1;
2327     }
2328
2329     slprintf(ascii_pid, sizeof(ascii_pid), "%10d\n", getpid());
2330     write(fd, ascii_pid, 11);
2331
2332     close(fd);
2333     return 1;
2334 }
2335
2336 /*
2337  * unlock - remove our lockfile
2338  */
2339 void
2340 unlock()
2341 {
2342     if (lock_file[0]) {
2343         unlink(lock_file);
2344         lock_file[0] = 0;
2345     }
2346 }
2347 #endif
2348
2349 /*
2350  * cifroute - delete a route through the addresses given.
2351  */
2352 int
2353 cifroute(u, our, his)
2354     int u;
2355     u_int32_t our, his;
2356 {
2357     struct rtentry rt;
2358
2359     memset(&rt, 0, sizeof(rt));
2360     rt.rt_dst.sa_family = AF_INET;
2361     INET_ADDR(rt.rt_dst) = his;
2362     rt.rt_gateway.sa_family = AF_INET;
2363     INET_ADDR(rt.rt_gateway) = our;
2364     rt.rt_flags = RTF_HOST;
2365
2366     if (ioctl(ipfd, SIOCDELRT, &rt) < 0) {
2367         error("Can't delete route: %m");
2368         return 0;
2369     }
2370
2371     return 1;
2372 }
2373
2374 /*
2375  * have_route_to - determine if the system has a route to the specified
2376  * IP address.  Returns 0 if not, 1 if so, -1 if we can't tell.
2377  * `addr' is in network byte order.
2378  * For demand mode to work properly, we have to ignore routes
2379  * through our own interface.
2380  */
2381 #ifndef T_CURRENT               /* needed for Solaris 2.5 */
2382 #define T_CURRENT       MI_T_CURRENT
2383 #endif
2384
2385 int
2386 have_route_to(addr)
2387     u_int32_t addr;
2388 {
2389 #ifdef SOL2
2390     int fd, r, flags, i;
2391     struct {
2392         struct T_optmgmt_req req;
2393         struct opthdr hdr;
2394     } req;
2395     union {
2396         struct T_optmgmt_ack ack;
2397         unsigned char space[64];
2398     } ack;
2399     struct opthdr *rh;
2400     struct strbuf cbuf, dbuf;
2401     int nroutes;
2402     mib2_ipRouteEntry_t routes[8];
2403     mib2_ipRouteEntry_t *rp;
2404
2405     fd = open(mux_dev_name, O_RDWR);
2406     if (fd < 0) {
2407         warn("have_route_to: couldn't open %s: %m", mux_dev_name);
2408         return -1;
2409     }
2410
2411     req.req.PRIM_type = T_OPTMGMT_REQ;
2412     req.req.OPT_offset = (char *) &req.hdr - (char *) &req;
2413     req.req.OPT_length = sizeof(req.hdr);
2414     req.req.MGMT_flags = T_CURRENT;
2415
2416     req.hdr.level = MIB2_IP;
2417     req.hdr.name = 0;
2418     req.hdr.len = 0;
2419
2420     cbuf.buf = (char *) &req;
2421     cbuf.len = sizeof(req);
2422
2423     if (putmsg(fd, &cbuf, NULL, 0) == -1) {
2424         warn("have_route_to: putmsg: %m");
2425         close(fd);
2426         return -1;
2427     }
2428
2429     for (;;) {
2430         cbuf.buf = (char *) &ack;
2431         cbuf.maxlen = sizeof(ack);
2432         dbuf.buf = (char *) routes;
2433         dbuf.maxlen = sizeof(routes);
2434         flags = 0;
2435         r = getmsg(fd, &cbuf, &dbuf, &flags);
2436         if (r == -1) {
2437             warn("have_route_to: getmsg: %m");
2438             close(fd);
2439             return -1;
2440         }
2441
2442         if (cbuf.len < sizeof(struct T_optmgmt_ack)
2443             || ack.ack.PRIM_type != T_OPTMGMT_ACK
2444             || ack.ack.MGMT_flags != T_SUCCESS
2445             || ack.ack.OPT_length < sizeof(struct opthdr)) {
2446             dbglog("have_route_to: bad message len=%d prim=%d",
2447                    cbuf.len, ack.ack.PRIM_type);
2448             close(fd);
2449             return -1;
2450         }
2451
2452         rh = (struct opthdr *) ((char *)&ack + ack.ack.OPT_offset);
2453         if (rh->level == 0 && rh->name == 0)
2454             break;
2455         if (rh->level != MIB2_IP || rh->name != MIB2_IP_21) {
2456             while (r == MOREDATA)
2457                 r = getmsg(fd, NULL, &dbuf, &flags);
2458             continue;
2459         }
2460
2461         for (;;) {
2462             nroutes = dbuf.len / sizeof(mib2_ipRouteEntry_t);
2463             for (rp = routes, i = 0; i < nroutes; ++i, ++rp) {
2464                 if (rp->ipRouteMask != ~0) {
2465                     dbglog("have_route_to: dest=%x gw=%x mask=%x\n",
2466                            rp->ipRouteDest, rp->ipRouteNextHop,
2467                            rp->ipRouteMask);
2468                     if (((addr ^ rp->ipRouteDest) & rp->ipRouteMask) == 0
2469                         && rp->ipRouteNextHop != remote_addr)
2470                         return 1;
2471                 }
2472             }
2473             if (r == 0)
2474                 break;
2475             r = getmsg(fd, NULL, &dbuf, &flags);
2476         }
2477     }
2478     close(fd);
2479     return 0;
2480 #else
2481     return -1;
2482 #endif /* SOL2 */
2483 }
2484
2485 /*
2486  * get_pty - get a pty master/slave pair and chown the slave side to
2487  * the uid given.  Assumes slave_name points to MAXPATHLEN bytes of space.
2488  */
2489 int
2490 get_pty(master_fdp, slave_fdp, slave_name, uid)
2491     int *master_fdp;
2492     int *slave_fdp;
2493     char *slave_name;
2494     int uid;
2495 {
2496     int mfd, sfd;
2497     char *pty_name;
2498     struct termios tios;
2499
2500     mfd = open("/dev/ptmx", O_RDWR);
2501     if (mfd < 0) {
2502         error("Couldn't open pty master: %m");
2503         return 0;
2504     }
2505
2506     pty_name = ptsname(mfd);
2507     if (pty_name == NULL) {
2508         error("Couldn't get name of pty slave");
2509         close(mfd);
2510         return 0;
2511     }
2512     if (chown(pty_name, uid, -1) < 0)
2513         warn("Couldn't change owner of pty slave: %m");
2514     if (chmod(pty_name, S_IRUSR | S_IWUSR) < 0)
2515         warn("Couldn't change permissions on pty slave: %m");
2516     if (unlockpt(mfd) < 0)
2517         warn("Couldn't unlock pty slave: %m");
2518
2519     sfd = open(pty_name, O_RDWR);
2520     if (sfd < 0) {
2521         error("Couldn't open pty slave %s: %m", pty_name);
2522         close(mfd);
2523         return 0;
2524     }
2525     if (ioctl(sfd, I_PUSH, "ptem") < 0)
2526         warn("Couldn't push ptem module on pty slave: %m");
2527
2528     dbglog("Using %s", pty_name);
2529     strlcpy(slave_name, pty_name, MAXPATHLEN);
2530     *master_fdp = mfd;
2531     *slave_fdp = sfd;
2532
2533     return 1;
2534 }