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