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