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