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