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