]> git.ozlabs.org Git - ppp.git/blob - pppd/sys-solaris.c
pppd: linux: use monotonic time if possible
[ppp.git] / pppd / sys-solaris.c
1 /*
2  * System-dependent procedures for pppd under Solaris 2.
3  *
4  * Parts re-written by Adi Masputra <adi.masputra@sun.com>, based on 
5  * the original sys-svr4.c
6  *
7  * Copyright (c) 2000 by Sun Microsystems, Inc.
8  * All rights reserved.
9  *
10  * Permission to use, copy, modify, and distribute this software and its
11  * documentation is hereby granted, provided that the above copyright
12  * notice appears in all copies.  
13  *
14  * SUN MAKES NO REPRESENTATION OR WARRANTIES ABOUT THE SUITABILITY OF
15  * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
16  * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
17  * PARTICULAR PURPOSE, OR NON-INFRINGEMENT.  SUN SHALL NOT BE LIABLE FOR
18  * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
19  * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES
20  *
21  * Copyright (c) 1995-2002 Paul Mackerras. All rights reserved.
22  *
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  *
27  * 1. Redistributions of source code must retain the above copyright
28  *    notice, this list of conditions and the following disclaimer.
29  *
30  * 2. The name(s) of the authors of this software must not be used to
31  *    endorse or promote products derived from this software without
32  *    prior written permission.
33  *
34  * 3. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by Paul Mackerras
37  *     <paulus@samba.org>".
38  *
39  * THE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO
40  * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
41  * AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
42  * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
43  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
44  * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
45  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
46  *
47  * Derived from main.c and pppd.h, which are:
48  *
49  * Copyright (c) 1984-2000 Carnegie Mellon University. All rights reserved.
50  *
51  * Redistribution and use in source and binary forms, with or without
52  * modification, are permitted provided that the following conditions
53  * are met:
54  *
55  * 1. Redistributions of source code must retain the above copyright
56  *    notice, this list of conditions and the following disclaimer.
57  *
58  * 2. Redistributions in binary form must reproduce the above copyright
59  *    notice, this list of conditions and the following disclaimer in
60  *    the documentation and/or other materials provided with the
61  *    distribution.
62  *
63  * 3. The name "Carnegie Mellon University" must not be used to
64  *    endorse or promote products derived from this software without
65  *    prior written permission. For permission or any legal
66  *    details, please contact
67  *      Office of Technology Transfer
68  *      Carnegie Mellon University
69  *      5000 Forbes Avenue
70  *      Pittsburgh, PA  15213-3890
71  *      (412) 268-4387, fax: (412) 268-7395
72  *      tech-transfer@andrew.cmu.edu
73  *
74  * 4. Redistributions of any form whatsoever must retain the following
75  *    acknowledgment:
76  *    "This product includes software developed by Computing Services
77  *     at Carnegie Mellon University (http://www.cmu.edu/computing/)."
78  *
79  * CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
80  * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
81  * AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
82  * FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
83  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
84  * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
85  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
86  */
87
88 #define RCSID   "$Id: sys-solaris.c,v 1.16 2008/01/30 14:26:53 carlsonj Exp $"
89
90 #include <limits.h>
91 #include <stdio.h>
92 #include <stddef.h>
93 #include <stdlib.h>
94 #include <string.h>
95 #include <ctype.h>
96 #include <errno.h>
97 #include <fcntl.h>
98 #include <unistd.h>
99 #include <termios.h>
100 #ifndef CRTSCTS
101 #include <sys/termiox.h>
102 #endif
103 #include <signal.h>
104 #include <utmpx.h>
105 #include <stropts.h>
106 #include <sys/types.h>
107 #include <sys/ioccom.h>
108 #include <sys/stream.h>
109 #include <sys/stropts.h>
110 #include <sys/socket.h>
111 #include <sys/sockio.h>
112 #include <sys/sysmacros.h>
113 #include <sys/systeminfo.h>
114 #include <sys/dlpi.h>
115 #include <sys/stat.h>
116 #include <sys/mkdev.h>
117 #include <sys/time.h>
118 #include <net/if.h>
119 #include <net/if_arp.h>
120 #include <net/route.h>
121 #include <net/ppp_defs.h>
122 #include <net/pppio.h>
123 #include <netinet/in.h>
124 #ifdef SOL2
125 #include <sys/tihdr.h>
126 #include <sys/tiuser.h>
127 #include <inet/common.h>
128 #include <inet/mib2.h>
129 #include <sys/ethernet.h>
130 #endif
131
132 #include "pppd.h"
133 #include "fsm.h"
134 #include "lcp.h"
135 #include "ipcp.h"
136 #include "ccp.h"
137
138 #if !defined(PPP_DRV_NAME)
139 #define PPP_DRV_NAME    "ppp"
140 #endif /* !defined(PPP_DRV_NAME) */
141
142 #if !defined(PPP_DEV_NAME)
143 #define PPP_DEV_NAME    "/dev/" PPP_DRV_NAME
144 #endif /* !defined(PPP_DEV_NAME) */
145
146 #if !defined(AHDLC_MOD_NAME)
147 #define AHDLC_MOD_NAME  "ppp_ahdl"
148 #endif /* !defined(AHDLC_MOD_NAME) */
149
150 #if !defined(COMP_MOD_NAME)
151 #define COMP_MOD_NAME   "ppp_comp"
152 #endif /* !defined(COMP_MOD_NAME) */
153
154 #if !defined(IP_DEV_NAME)
155 #define IP_DEV_NAME     "/dev/ip"
156 #endif /* !defined(IP_DEV_NAME) */
157
158 #if !defined(IP_MOD_NAME)
159 #define IP_MOD_NAME     "ip"
160 #endif /* !defined(IP_MOD_NAME) */
161
162 #if !defined(UDP_DEV_NAME) && defined(SOL2)
163 #define UDP_DEV_NAME    "/dev/udp"
164 #endif /* !defined(UDP_DEV_NAME) && defined(SOL2) */
165
166 #if !defined(UDP6_DEV_NAME) && defined(SOL2)
167 #define UDP6_DEV_NAME   "/dev/udp6"
168 #endif /* !defined(UDP6_DEV_NAME) && defined(SOL2) */
169
170 static const char rcsid[] = RCSID;
171
172 #if defined(SOL2)
173 /*
174  * "/dev/udp" is used as a multiplexor to PLINK the interface stream
175  * under. It is used in place of "/dev/ip" since STREAMS will not let
176  * a driver be PLINK'ed under itself, and "/dev/ip" is typically the
177  * driver at the bottom of the tunneling interfaces stream.
178  */
179 static char *mux_dev_name = UDP_DEV_NAME;
180 #else
181 static char *mux_dev_name = IP_DEV_NAME;
182 #endif
183 static int      pppfd;
184 static int      fdmuxid = -1;
185 static int      ipfd;
186 static int      ipmuxid = -1;
187
188 #if defined(INET6) && defined(SOL2)
189 static int      ip6fd;          /* IP file descriptor */
190 static int      ip6muxid = -1;  /* Multiplexer file descriptor */
191 static int      if6_is_up = 0;  /* IPv6 interface has been marked up */
192
193 #define _IN6_LLX_FROM_EUI64(l, s, eui64, as) do {       \
194         s->sin6_addr.s6_addr32[0] = htonl(as);  \
195         eui64_copy(eui64, s->sin6_addr.s6_addr32[2]);   \
196         s->sin6_family = AF_INET6;              \
197         l.lifr_addr.ss_family = AF_INET6;       \
198         l.lifr_addrlen = 64;                    \
199         l.lifr_addr = laddr;                    \
200         } while (0)
201
202 #define IN6_LLADDR_FROM_EUI64(l, s, eui64)  \
203     _IN6_LLX_FROM_EUI64(l, s, eui64, 0xfe800000)
204
205 #define IN6_LLTOKEN_FROM_EUI64(l, s, eui64) \
206     _IN6_LLX_FROM_EUI64(l, s, eui64, 0)
207
208 #endif /* defined(INET6) && defined(SOL2) */
209
210 #if defined(INET6) && defined(SOL2)
211 static char     first_ether_name[LIFNAMSIZ];    /* Solaris 8 and above */
212 #else
213 static char     first_ether_name[IFNAMSIZ];     /* Before Solaris 8 */
214 #define MAXIFS          256                     /* Max # of interfaces */
215 #endif /* defined(INET6) && defined(SOL2) */
216
217 static int      restore_term;
218 static struct termios inittermios;
219 #ifndef CRTSCTS
220 static struct termiox inittermiox;
221 static int      termiox_ok;
222 #endif
223 static struct winsize wsinfo;   /* Initial window size info */
224 static pid_t    tty_sid;        /* original session ID for terminal */
225
226 extern u_char   inpacket_buf[]; /* borrowed from main.c */
227
228 #define MAX_POLLFDS     32
229 static struct pollfd pollfds[MAX_POLLFDS];
230 static int n_pollfds;
231
232 static int      link_mtu, link_mru;
233
234 #define NMODULES        32
235 static int      tty_nmodules;
236 static char     tty_modules[NMODULES][FMNAMESZ+1];
237 static int      tty_npushed;
238
239 static int      if_is_up;       /* Interface has been marked up */
240 static u_int32_t remote_addr;           /* IP address of peer */
241 static u_int32_t default_route_gateway; /* Gateway for default route added */
242 static u_int32_t proxy_arp_addr;        /* Addr for proxy arp entry added */
243
244 /* Prototypes for procedures local to this file. */
245 static int translate_speed __P((int));
246 static int baud_rate_of __P((int));
247 static int get_ether_addr __P((u_int32_t, struct sockaddr *));
248 static int get_hw_addr __P((char *, u_int32_t, struct sockaddr *));
249 static int get_hw_addr_dlpi __P((char *, struct sockaddr *));
250 static int dlpi_attach __P((int, int));
251 static int dlpi_info_req __P((int));
252 static int dlpi_get_reply __P((int, union DL_primitives *, int, int));
253 static int strioctl __P((int, int, void *, int, int));
254
255 #ifdef SOL2
256 /*
257  * sifppa - Sets interface ppa
258  *
259  * without setting the ppa, ip module will return EINVAL upon setting the
260  * interface UP (SIOCSxIFFLAGS). This is because ip module in 2.8 expects
261  * two DLPI_INFO_REQ to be sent down to the driver (below ip) before
262  * IFF_UP can be set. Plumbing the device causes one DLPI_INFO_REQ to
263  * be sent down, and the second DLPI_INFO_REQ is sent upon receiving
264  * IF_UNITSEL (old) or SIOCSLIFNAME (new) ioctls. Such setting of the ppa
265  * is required because the ppp DLPI provider advertises itself as
266  * a DLPI style 2 type, which requires a point of attachment to be
267  * specified. The only way the user can specify a point of attachment
268  * is via SIOCSLIFNAME or IF_UNITSEL.
269  *
270  * Such changes in the behavior of ip module was made to meet new or
271  * evolving standards requirements.
272  *
273  */
274 static int
275 sifppa(fd, ppa)
276     int fd;
277     int ppa;
278 {
279     return (int)ioctl(fd, IF_UNITSEL, (char *)&ppa);
280 }
281 #endif /* SOL2 */
282
283 #if defined(SOL2) && defined(INET6)
284 /*
285  * get_first_ethernet - returns the first Ethernet interface name found in 
286  * the system, or NULL if none is found
287  *
288  * NOTE: This is the lifreq version (Solaris 8 and above)
289  */
290 char *
291 get_first_ethernet()
292 {
293     struct lifnum lifn;
294     struct lifconf lifc;
295     struct lifreq *plifreq;
296     struct lifreq lifr;
297     int fd, num_ifs, i, found;
298     uint_t fl, req_size;
299     char *req;
300
301     fd = socket(AF_INET, SOCK_DGRAM, 0);
302     if (fd < 0) {
303         return 0;
304     }
305
306     /*
307      * Find out how many interfaces are running
308      */
309     lifn.lifn_family = AF_UNSPEC;
310     lifn.lifn_flags = LIFC_NOXMIT;
311     if (ioctl(fd, SIOCGLIFNUM, &lifn) < 0) {
312         close(fd);
313         error("could not determine number of interfaces: %m");
314         return 0;
315     }
316
317     num_ifs = lifn.lifn_count;
318     req_size = num_ifs * sizeof(struct lifreq);
319     req = malloc(req_size);
320     if (req == NULL) {
321         close(fd);
322         error("out of memory");
323         return 0;
324     }
325
326     /*
327      * Get interface configuration info for all interfaces
328      */
329     lifc.lifc_family = AF_UNSPEC;
330     lifc.lifc_flags = LIFC_NOXMIT;
331     lifc.lifc_len = req_size;
332     lifc.lifc_buf = req;
333     if (ioctl(fd, SIOCGLIFCONF, &lifc) < 0) {
334         close(fd);
335         free(req);
336         error("SIOCGLIFCONF: %m");
337         return 0;
338     }
339
340     /*
341      * And traverse each interface to look specifically for the first
342      * occurence of an Ethernet interface which has been marked up
343      */
344     plifreq = lifc.lifc_req;
345     found = 0;
346     for (i = lifc.lifc_len / sizeof(struct lifreq); i > 0; i--, plifreq++) {
347
348         if (strchr(plifreq->lifr_name, ':') != NULL)
349             continue;
350
351         memset(&lifr, 0, sizeof(lifr));
352         strncpy(lifr.lifr_name, plifreq->lifr_name, sizeof(lifr.lifr_name));
353         if (ioctl(fd, SIOCGLIFFLAGS, &lifr) < 0) {
354             close(fd);
355             free(req);
356             error("SIOCGLIFFLAGS: %m");
357             return 0;
358         }
359         fl = lifr.lifr_flags;
360
361         if ((fl & (IFF_UP|IFF_BROADCAST|IFF_POINTOPOINT|IFF_LOOPBACK|IFF_NOARP))
362                 != (IFF_UP | IFF_BROADCAST))
363             continue;
364
365         found = 1;
366         break;
367     }
368     free(req);
369     close(fd);
370
371     if (found) {
372         strncpy(first_ether_name, lifr.lifr_name, sizeof(first_ether_name));
373         return (char *)first_ether_name;
374     } else
375         return NULL;
376 }
377 #else
378 /*
379  * get_first_ethernet - returns the first Ethernet interface name found in 
380  * the system, or NULL if none is found
381  *
382  * NOTE: This is the ifreq version (before Solaris 8). 
383  */
384 char *
385 get_first_ethernet()
386 {
387     struct ifconf ifc;
388     struct ifreq *pifreq;
389     struct ifreq ifr;
390     int fd, num_ifs, i, found;
391     uint_t fl, req_size;
392     char *req;
393
394     fd = socket(AF_INET, SOCK_DGRAM, 0);
395     if (fd < 0) {
396         return 0;
397     }
398
399     /*
400      * Find out how many interfaces are running
401      */
402     if (ioctl(fd, SIOCGIFNUM, (char *)&num_ifs) < 0) {
403         num_ifs = MAXIFS;
404     }
405
406     req_size = num_ifs * sizeof(struct ifreq);
407     req = malloc(req_size);
408     if (req == NULL) {
409         close(fd);
410         error("out of memory");
411         return 0;
412     }
413
414     /*
415      * Get interface configuration info for all interfaces
416      */
417     ifc.ifc_len = req_size;
418     ifc.ifc_buf = req;
419     if (ioctl(fd, SIOCGIFCONF, &ifc) < 0) {
420         close(fd);
421         free(req);
422         error("SIOCGIFCONF: %m");
423         return 0;
424     }
425
426     /*
427      * And traverse each interface to look specifically for the first
428      * occurence of an Ethernet interface which has been marked up
429      */
430     pifreq = ifc.ifc_req;
431     found = 0;
432     for (i = ifc.ifc_len / sizeof(struct ifreq); i > 0; i--, pifreq++) {
433
434         if (strchr(pifreq->ifr_name, ':') != NULL)
435             continue;
436
437         memset(&ifr, 0, sizeof(ifr));
438         strncpy(ifr.ifr_name, pifreq->ifr_name, sizeof(ifr.ifr_name));
439         if (ioctl(fd, SIOCGIFFLAGS, &ifr) < 0) {
440             close(fd);
441             free(req);
442             error("SIOCGIFFLAGS: %m");
443             return 0;
444         }
445         fl = ifr.ifr_flags;
446
447         if ((fl & (IFF_UP|IFF_BROADCAST|IFF_POINTOPOINT|IFF_LOOPBACK|IFF_NOARP))
448                 != (IFF_UP | IFF_BROADCAST))
449             continue;
450
451         found = 1;
452         break;
453     }
454     free(req);
455     close(fd);
456
457     if (found) {
458         strncpy(first_ether_name, ifr.ifr_name, sizeof(first_ether_name));
459         return (char *)first_ether_name;
460     } else
461         return NULL;
462 }
463 #endif /* defined(SOL2) && defined(INET6) */
464
465 #if defined(SOL2)
466 /*
467  * get_if_hwaddr - get the hardware address for the specified
468  * network interface device.
469  */
470 int
471 get_if_hwaddr(u_char *addr, char *if_name)
472 {
473     struct sockaddr s_eth_addr;
474     struct ether_addr *eth_addr = (struct ether_addr *)&s_eth_addr.sa_data;
475
476     if (if_name == NULL)
477         return -1;
478
479     /*
480      * Send DL_INFO_REQ to the driver to solicit its MAC address
481      */
482     if (!get_hw_addr_dlpi(if_name, &s_eth_addr)) {
483         error("could not obtain hardware address for %s", if_name);
484         return -1;
485     }
486
487     memcpy(addr, eth_addr->ether_addr_octet, 6);
488     return 1;
489 }
490 #endif /* SOL2 */
491
492 #if defined(SOL2) && defined(INET6)
493 /*
494  * slifname - Sets interface ppa and flags
495  *
496  * in addition to the comments stated in sifppa(), IFF_IPV6 bit must
497  * be set in order to declare this as an IPv6 interface
498  */
499 static int
500 slifname(fd, ppa)
501     int fd;
502     int ppa;
503 {
504     struct  lifreq lifr;
505     int     ret;
506
507     memset(&lifr, 0, sizeof(lifr));
508     ret = ioctl(fd, SIOCGLIFFLAGS, &lifr);
509     if (ret < 0)
510         goto slifname_done;
511
512     lifr.lifr_flags |= IFF_IPV6;
513     lifr.lifr_flags &= ~(IFF_BROADCAST | IFF_IPV4);
514     lifr.lifr_ppa = ppa;
515     strlcpy(lifr.lifr_name, ifname, sizeof(lifr.lifr_name));
516
517     ret = ioctl(fd, SIOCSLIFNAME, &lifr);
518
519 slifname_done:
520     return ret;
521
522
523 }
524
525
526 /*
527  * ether_to_eui64 - Convert 48-bit Ethernet address into 64-bit EUI
528  *
529  * walks the list of valid ethernet interfaces, and convert the first
530  * found 48-bit MAC address into EUI 64. caller also assumes that
531  * the system has a properly configured Ethernet interface for this
532  * function to return non-zero.
533  */
534 int
535 ether_to_eui64(eui64_t *p_eui64)
536 {
537     struct sockaddr s_eth_addr;
538     struct ether_addr *eth_addr = (struct ether_addr *)&s_eth_addr.sa_data;
539     char *if_name;
540
541     if ((if_name = get_first_ethernet()) == NULL) {
542         error("no persistent id can be found");
543         return 0;
544     }
545  
546     /*
547      * Send DL_INFO_REQ to the driver to solicit its MAC address
548      */
549     if (!get_hw_addr_dlpi(if_name, &s_eth_addr)) {
550         error("could not obtain hardware address for %s", if_name);
551         return 0;
552     }
553
554     /*
555      * And convert the EUI-48 into EUI-64, per RFC 2472 [sec 4.1]
556      */
557     p_eui64->e8[0] = (eth_addr->ether_addr_octet[0] & 0xFF) | 0x02;
558     p_eui64->e8[1] = (eth_addr->ether_addr_octet[1] & 0xFF);
559     p_eui64->e8[2] = (eth_addr->ether_addr_octet[2] & 0xFF);
560     p_eui64->e8[3] = 0xFF;
561     p_eui64->e8[4] = 0xFE;
562     p_eui64->e8[5] = (eth_addr->ether_addr_octet[3] & 0xFF);
563     p_eui64->e8[6] = (eth_addr->ether_addr_octet[4] & 0xFF);
564     p_eui64->e8[7] = (eth_addr->ether_addr_octet[5] & 0xFF);
565
566     return 1;
567 }
568 #endif /* defined(SOL2) && defined(INET6) */
569
570 /*
571  * sys_init - System-dependent initialization.
572  */
573 void
574 sys_init()
575 {
576     int ifd, x;
577     struct ifreq ifr;
578 #if defined(INET6) && defined(SOL2)
579     int i6fd;
580     struct lifreq lifr;
581 #endif /* defined(INET6) && defined(SOL2) */
582 #if !defined(SOL2)
583     struct {
584         union DL_primitives prim;
585         char space[64];
586     } reply;
587 #endif /* !defined(SOL2) */
588
589     ipfd = open(mux_dev_name, O_RDWR, 0);
590     if (ipfd < 0)
591         fatal("Couldn't open IP device: %m");
592
593 #if defined(INET6) && defined(SOL2)
594     ip6fd = open(UDP6_DEV_NAME, O_RDWR, 0);
595     if (ip6fd < 0)
596         fatal("Couldn't open IP device (2): %m");
597 #endif /* defined(INET6) && defined(SOL2) */
598
599     if (default_device && !notty)
600         tty_sid = getsid((pid_t)0);
601
602     pppfd = open(PPP_DEV_NAME, O_RDWR | O_NONBLOCK, 0);
603     if (pppfd < 0)
604         fatal("Can't open %s: %m", PPP_DEV_NAME);
605     if (kdebugflag & 1) {
606         x = PPPDBG_LOG + PPPDBG_DRIVER;
607         strioctl(pppfd, PPPIO_DEBUG, &x, sizeof(int), 0);
608     }
609
610     /* Assign a new PPA and get its unit number. */
611     if (strioctl(pppfd, PPPIO_NEWPPA, &ifunit, 0, sizeof(int)) < 0)
612         fatal("Can't create new PPP interface: %m");
613
614 #if defined(SOL2)
615     /*
616      * Since sys_init() is called prior to ifname being set in main(),
617      * we need to get the ifname now, otherwise slifname(), and others,
618      * will fail, or maybe, I should move them to a later point ?
619      * <adi.masputra@sun.com>
620      */
621     sprintf(ifname, PPP_DRV_NAME "%d", ifunit);
622 #endif /* defined(SOL2) */
623     /*
624      * Open the ppp device again and link it under the ip multiplexor.
625      * IP will assign a unit number which hopefully is the same as ifunit.
626      * I don't know any way to be certain they will be the same. :-(
627      */
628     ifd = open(PPP_DEV_NAME, O_RDWR, 0);
629     if (ifd < 0)
630         fatal("Can't open %s (2): %m", PPP_DEV_NAME);
631     if (kdebugflag & 1) {
632         x = PPPDBG_LOG + PPPDBG_DRIVER;
633         strioctl(ifd, PPPIO_DEBUG, &x, sizeof(int), 0);
634     }
635
636 #if defined(INET6) && defined(SOL2)
637     i6fd = open(PPP_DEV_NAME, O_RDWR, 0);
638     if (i6fd < 0) {
639         close(ifd);
640         fatal("Can't open %s (3): %m", PPP_DEV_NAME);
641     }
642     if (kdebugflag & 1) {
643         x = PPPDBG_LOG + PPPDBG_DRIVER;
644         strioctl(i6fd, PPPIO_DEBUG, &x, sizeof(int), 0);
645     }
646 #endif /* defined(INET6) && defined(SOL2) */
647
648 #if defined(SOL2)
649     if (ioctl(ifd, I_PUSH, IP_MOD_NAME) < 0) {
650         close(ifd);
651 #if defined(INET6)
652         close(i6fd);
653 #endif /* defined(INET6) */
654         fatal("Can't push IP module: %m");
655     }
656
657     /*
658      * Assign ppa according to the unit number returned by ppp device
659      * after plumbing is completed above.
660      */
661     if (sifppa(ifd, ifunit) < 0) {
662         close (ifd);
663 #if defined(INET6)
664         close(i6fd);
665 #endif /* defined(INET6) */
666         fatal("Can't set ppa for unit %d: %m", ifunit);
667     }
668
669 #if defined(INET6)
670     /*
671      * An IPv6 interface is created anyway, even when the user does not 
672      * explicitly enable it. Note that the interface will be marked
673      * IPv6 during slifname().
674      */
675     if (ioctl(i6fd, I_PUSH, IP_MOD_NAME) < 0) {
676         close(ifd);
677         close(i6fd);
678         fatal("Can't push IP module (2): %m");
679     }
680
681     /*
682      * Assign ppa according to the unit number returned by ppp device
683      * after plumbing is completed above. In addition, mark the interface
684      * as an IPv6 interface.
685      */
686     if (slifname(i6fd, ifunit) < 0) {
687         close(ifd);
688         close(i6fd);
689         fatal("Can't set ifname for unit %d: %m", ifunit);
690     }
691 #endif /* defined(INET6) */
692
693     ipmuxid = ioctl(ipfd, I_PLINK, ifd);
694     close(ifd);
695     if (ipmuxid < 0) {
696 #if defined(INET6)
697         close(i6fd);
698 #endif /* defined(INET6) */
699         fatal("Can't I_PLINK PPP device to IP: %m");
700     }
701
702     memset(&ifr, 0, sizeof(ifr));
703     sprintf(ifr.ifr_name, "%s", ifname);
704     ifr.ifr_ip_muxid = ipmuxid;
705
706     /*
707      * In Sol 8 and later, STREAMS dynamic module plumbing feature exists.
708      * This is so that an arbitrary module can be inserted, or deleted, 
709      * between ip module and the device driver without tearing down the 
710      * existing stream. Such feature requires the mux ids, which is set 
711      * by SIOCSIFMUXID (or SIOCLSIFMUXID).
712      */
713     if (ioctl(ipfd, SIOCSIFMUXID, &ifr) < 0) {
714         ioctl(ipfd, I_PUNLINK, ipmuxid);
715 #if defined(INET6)
716         close(i6fd);
717 #endif /* defined(INET6) */
718         fatal("SIOCSIFMUXID: %m");
719     }
720
721 #else /* else if !defined(SOL2) */
722
723     if (dlpi_attach(ifd, ifunit) < 0 ||
724         dlpi_get_reply(ifd, &reply.prim, DL_OK_ACK, sizeof(reply)) < 0) {
725         close(ifd);
726         fatal("Can't attach to ppp%d: %m", ifunit);
727     }
728
729     ipmuxid = ioctl(ipfd, I_LINK, ifd);
730     close(ifd);
731     if (ipmuxid < 0)
732         fatal("Can't link PPP device to IP: %m");
733 #endif /* defined(SOL2) */
734
735 #if defined(INET6) && defined(SOL2)
736     ip6muxid = ioctl(ip6fd, I_PLINK, i6fd);
737     close(i6fd);
738     if (ip6muxid < 0) {
739         ioctl(ipfd, I_PUNLINK, ipmuxid);
740         fatal("Can't I_PLINK PPP device to IP (2): %m");
741     }
742
743     memset(&lifr, 0, sizeof(lifr));
744     sprintf(lifr.lifr_name, "%s", ifname);
745     lifr.lifr_ip_muxid = ip6muxid;
746
747     /*
748      * Let IP know of the mux id [see comment for SIOCSIFMUXID above]
749      */
750     if (ioctl(ip6fd, SIOCSLIFMUXID, &lifr) < 0) {
751         ioctl(ipfd, I_PUNLINK, ipmuxid);
752         ioctl(ip6fd, I_PUNLINK, ip6muxid);
753         fatal("Can't link PPP device to IP (2): %m");
754     }
755 #endif /* defined(INET6) && defined(SOL2) */
756
757 #if !defined(SOL2)
758     /* Set the interface name for the link. */
759     slprintf(ifr.ifr_name, sizeof(ifr.ifr_name), PPP_DRV_NAME "%d", ifunit);
760     ifr.ifr_metric = ipmuxid;
761     if (strioctl(ipfd, SIOCSIFNAME, (char *)&ifr, sizeof ifr, 0) < 0)
762         fatal("Can't set interface name %s: %m", ifr.ifr_name);
763 #endif /* !defined(SOL2) */
764
765     n_pollfds = 0;
766 }
767
768 /*
769  * sys_cleanup - restore any system state we modified before exiting:
770  * mark the interface down, delete default route and/or proxy arp entry.
771  * This should call die() because it's called from die().
772  */
773 void
774 sys_cleanup()
775 {
776 #if defined(SOL2)
777     struct ifreq ifr;
778 #if defined(INET6)
779     struct lifreq lifr;
780 #endif /* defined(INET6) */
781 #endif /* defined(SOL2) */
782
783 #if defined(SOL2) && defined(INET6)
784     if (if6_is_up)
785         sif6down(0);
786 #endif /* defined(SOL2) && defined(INET6) */
787     if (if_is_up)
788         sifdown(0);
789     if (default_route_gateway)
790         cifdefaultroute(0, default_route_gateway, default_route_gateway);
791     if (proxy_arp_addr)
792         cifproxyarp(0, proxy_arp_addr);
793 #if defined(SOL2)
794     /*
795      * Make sure we ask ip what the muxid, because 'ifconfig modlist' will
796      * unlink and re-link the modules, causing the muxid to change.
797      */
798     memset(&ifr, 0, sizeof(ifr));
799     sprintf(ifr.ifr_name, "%s", ifname);
800     if (ioctl(ipfd, SIOCGIFFLAGS, &ifr) < 0) {
801         error("SIOCGIFFLAGS: %m");
802         return;
803     }
804
805     if (ioctl(ipfd, SIOCGIFMUXID, &ifr) < 0) {
806         error("SIOCGIFMUXID: %m");
807         return;
808     }
809
810     ipmuxid = ifr.ifr_ip_muxid;
811      
812     if (ioctl(ipfd, I_PUNLINK, ipmuxid) < 0) {
813         error("Can't I_PUNLINK PPP from IP: %m");
814         return;
815     }
816 #if defined(INET6)
817     /*
818      * Make sure we ask ip what the muxid, because 'ifconfig modlist' will
819      * unlink and re-link the modules, causing the muxid to change.
820      */
821     memset(&lifr, 0, sizeof(lifr));
822     sprintf(lifr.lifr_name, "%s", ifname);
823     if (ioctl(ip6fd, SIOCGLIFFLAGS, &lifr) < 0) {
824         error("SIOCGLIFFLAGS: %m");
825         return;
826     }
827
828     if (ioctl(ip6fd, SIOCGLIFMUXID, &lifr) < 0) {
829         error("SIOCGLIFMUXID: %m");
830         return;
831     }
832
833     ip6muxid = lifr.lifr_ip_muxid;
834
835     if (ioctl(ip6fd, I_PUNLINK, ip6muxid) < 0) {
836         error("Can't I_PUNLINK PPP from IP (2): %m");
837     }
838 #endif /* defined(INET6) */
839 #endif /* defined(SOL2) */
840 }
841
842 /*
843  * sys_close - Clean up in a child process before execing.
844  */
845 void
846 sys_close()
847 {
848     close(ipfd);
849 #if defined(INET6) && defined(SOL2)
850     close(ip6fd);
851 #endif /* defined(INET6) && defined(SOL2) */
852     if (pppfd >= 0)
853         close(pppfd);
854 }
855
856 /*
857  * sys_check_options - check the options that the user specified
858  */
859 int
860 sys_check_options()
861 {
862     return 1;
863 }
864
865 #if 0
866 /*
867  * daemon - Detach us from controlling terminal session.
868  */
869 int
870 daemon(nochdir, noclose)
871     int nochdir, noclose;
872 {
873     int pid;
874
875     if ((pid = fork()) < 0)
876         return -1;
877     if (pid != 0)
878         exit(0);                /* parent dies */
879     setsid();
880     if (!nochdir)
881         chdir("/");
882     if (!noclose) {
883         fclose(stdin);          /* don't need stdin, stdout, stderr */
884         fclose(stdout);
885         fclose(stderr);
886     }
887     return 0;
888 }
889 #endif
890
891 /*
892  * ppp_available - check whether the system has any ppp interfaces
893  */
894 int
895 ppp_available()
896 {
897     struct stat buf;
898
899     return stat(PPP_DEV_NAME, &buf) >= 0;
900 }
901
902 /*
903  * any_compressions - see if compression is enabled or not
904  *
905  * In the STREAMS implementation of kernel-portion pppd,
906  * the comp STREAMS module performs the ACFC, PFC, as well
907  * CCP and VJ compressions. However, if the user has explicitly
908  * declare to not enable them from the command line, there is
909  * no point of having the comp module be pushed on the stream.
910  */
911 static int
912 any_compressions()
913 {
914     if ((!lcp_wantoptions[0].neg_accompression) &&
915         (!lcp_wantoptions[0].neg_pcompression) &&
916         (!ccp_protent.enabled_flag) &&
917         (!ipcp_wantoptions[0].neg_vj)) {
918             return 0;
919     }
920     return 1;
921 }
922
923 /*
924  * tty_establish_ppp - Turn the serial port into a ppp interface.
925  */
926 int
927 tty_establish_ppp(fd)
928     int fd;
929 {
930     int i;
931
932     /* Pop any existing modules off the tty stream. */
933     for (i = 0;; ++i)
934         if (ioctl(fd, I_LOOK, tty_modules[i]) < 0
935             || strcmp(tty_modules[i], "ptem") == 0
936             || ioctl(fd, I_POP, 0) < 0)
937             break;
938     tty_nmodules = i;
939
940     /* Push the async hdlc module and the compressor module. */
941     tty_npushed = 0;
942
943     if(!sync_serial) {
944         if (ioctl(fd, I_PUSH, AHDLC_MOD_NAME) < 0) {
945             error("Couldn't push PPP Async HDLC module: %m");
946             return -1;
947         }
948         ++tty_npushed;
949     }
950     if (kdebugflag & 4) {
951         i = PPPDBG_LOG + PPPDBG_AHDLC;
952         strioctl(pppfd, PPPIO_DEBUG, &i, sizeof(int), 0);
953     }
954     /*
955      * There's no need to push comp module if we don't intend
956      * to compress anything
957      */
958     if (any_compressions()) { 
959         if (ioctl(fd, I_PUSH, COMP_MOD_NAME) < 0)
960             error("Couldn't push PPP compression module: %m");
961         else
962             ++tty_npushed;
963     }
964
965     if (kdebugflag & 2) {
966         i = PPPDBG_LOG; 
967         if (any_compressions())
968             i += PPPDBG_COMP;
969         strioctl(pppfd, PPPIO_DEBUG, &i, sizeof(int), 0);
970     }
971
972     /* Link the serial port under the PPP multiplexor. */
973     if ((fdmuxid = ioctl(pppfd, I_LINK, fd)) < 0) {
974         error("Can't link tty to PPP mux: %m");
975         return -1;
976     }
977
978     return pppfd;
979 }
980
981 /*
982  * tty_disestablish_ppp - Restore the serial port to normal operation.
983  * It attempts to reconstruct the stream with the previously popped
984  * modules.  This shouldn't call die() because it's called from die().
985  */
986 void
987 tty_disestablish_ppp(fd)
988     int fd;
989 {
990     int i;
991
992     if (fdmuxid >= 0) {
993         if (ioctl(pppfd, I_UNLINK, fdmuxid) < 0) {
994             if (!hungup)
995                 error("Can't unlink tty from PPP mux: %m");
996         }
997         fdmuxid = -1;
998
999         if (!hungup) {
1000             while (tty_npushed > 0 && ioctl(fd, I_POP, 0) >= 0)
1001                 --tty_npushed;
1002             for (i = tty_nmodules - 1; i >= 0; --i)
1003                 if (ioctl(fd, I_PUSH, tty_modules[i]) < 0)
1004                     error("Couldn't restore tty module %s: %m",
1005                            tty_modules[i]);
1006         }
1007         if (hungup && default_device && tty_sid > 0) {
1008             /*
1009              * If we have received a hangup, we need to send a SIGHUP
1010              * to the terminal's controlling process.  The reason is
1011              * that the original stream head for the terminal hasn't
1012              * seen the M_HANGUP message (it went up through the ppp
1013              * driver to the stream head for our fd to /dev/ppp).
1014              */
1015             kill(tty_sid, SIGHUP);
1016         }
1017     }
1018 }
1019
1020 /*
1021  * Check whether the link seems not to be 8-bit clean.
1022  */
1023 void
1024 clean_check()
1025 {
1026     int x;
1027     char *s;
1028
1029     if (strioctl(pppfd, PPPIO_GCLEAN, &x, 0, sizeof(x)) < 0)
1030         return;
1031     s = NULL;
1032     switch (~x) {
1033     case RCV_B7_0:
1034         s = "bit 7 set to 1";
1035         break;
1036     case RCV_B7_1:
1037         s = "bit 7 set to 0";
1038         break;
1039     case RCV_EVNP:
1040         s = "odd parity";
1041         break;
1042     case RCV_ODDP:
1043         s = "even parity";
1044         break;
1045     }
1046     if (s != NULL) {
1047         warn("Serial link is not 8-bit clean:");
1048         warn("All received characters had %s", s);
1049     }
1050 }
1051
1052 /*
1053  * List of valid speeds.
1054  */
1055 struct speed {
1056     int speed_int, speed_val;
1057 } speeds[] = {
1058 #ifdef B50
1059     { 50, B50 },
1060 #endif
1061 #ifdef B75
1062     { 75, B75 },
1063 #endif
1064 #ifdef B110
1065     { 110, B110 },
1066 #endif
1067 #ifdef B134
1068     { 134, B134 },
1069 #endif
1070 #ifdef B150
1071     { 150, B150 },
1072 #endif
1073 #ifdef B200
1074     { 200, B200 },
1075 #endif
1076 #ifdef B300
1077     { 300, B300 },
1078 #endif
1079 #ifdef B600
1080     { 600, B600 },
1081 #endif
1082 #ifdef B1200
1083     { 1200, B1200 },
1084 #endif
1085 #ifdef B1800
1086     { 1800, B1800 },
1087 #endif
1088 #ifdef B2000
1089     { 2000, B2000 },
1090 #endif
1091 #ifdef B2400
1092     { 2400, B2400 },
1093 #endif
1094 #ifdef B3600
1095     { 3600, B3600 },
1096 #endif
1097 #ifdef B4800
1098     { 4800, B4800 },
1099 #endif
1100 #ifdef B7200
1101     { 7200, B7200 },
1102 #endif
1103 #ifdef B9600
1104     { 9600, B9600 },
1105 #endif
1106 #ifdef B19200
1107     { 19200, B19200 },
1108 #endif
1109 #ifdef B38400
1110     { 38400, B38400 },
1111 #endif
1112 #ifdef EXTA
1113     { 19200, EXTA },
1114 #endif
1115 #ifdef EXTB
1116     { 38400, EXTB },
1117 #endif
1118 #ifdef B57600
1119     { 57600, B57600 },
1120 #endif
1121 #ifdef B76800
1122     { 76800, B76800 },
1123 #endif
1124 #ifdef B115200
1125     { 115200, B115200 },
1126 #endif
1127 #ifdef B153600
1128     { 153600, B153600 },
1129 #endif
1130 #ifdef B230400
1131     { 230400, B230400 },
1132 #endif
1133 #ifdef B307200
1134     { 307200, B307200 },
1135 #endif
1136 #ifdef B460800
1137     { 460800, B460800 },
1138 #endif
1139     { 0, 0 }
1140 };
1141
1142 /*
1143  * Translate from bits/second to a speed_t.
1144  */
1145 static int
1146 translate_speed(bps)
1147     int bps;
1148 {
1149     struct speed *speedp;
1150
1151     if (bps == 0)
1152         return 0;
1153     for (speedp = speeds; speedp->speed_int; speedp++)
1154         if (bps == speedp->speed_int)
1155             return speedp->speed_val;
1156     warn("speed %d not supported", bps);
1157     return 0;
1158 }
1159
1160 /*
1161  * Translate from a speed_t to bits/second.
1162  */
1163 static int
1164 baud_rate_of(speed)
1165     int speed;
1166 {
1167     struct speed *speedp;
1168
1169     if (speed == 0)
1170         return 0;
1171     for (speedp = speeds; speedp->speed_int; speedp++)
1172         if (speed == speedp->speed_val)
1173             return speedp->speed_int;
1174     return 0;
1175 }
1176
1177 /*
1178  * set_up_tty: Set up the serial port on `fd' for 8 bits, no parity,
1179  * at the requested speed, etc.  If `local' is true, set CLOCAL
1180  * regardless of whether the modem option was specified.
1181  */
1182 void
1183 set_up_tty(fd, local)
1184     int fd, local;
1185 {
1186     int speed;
1187     struct termios tios;
1188 #if !defined (CRTSCTS)
1189     struct termiox tiox;
1190 #endif
1191
1192     if (!sync_serial && tcgetattr(fd, &tios) < 0)
1193         fatal("tcgetattr: %m");
1194
1195 #ifndef CRTSCTS
1196     termiox_ok = 1;
1197     if (!sync_serial && ioctl (fd, TCGETX, &tiox) < 0) {
1198         termiox_ok = 0;
1199         if (errno != ENOTTY)
1200             error("TCGETX: %m");
1201     }
1202 #endif
1203
1204     if (!restore_term) {
1205         inittermios = tios;
1206 #ifndef CRTSCTS
1207         inittermiox = tiox;
1208 #endif
1209         if (!sync_serial)
1210             ioctl(fd, TIOCGWINSZ, &wsinfo);
1211     }
1212
1213     tios.c_cflag &= ~(CSIZE | CSTOPB | PARENB | CLOCAL);
1214 #ifdef CRTSCTS
1215     if (crtscts > 0)
1216         tios.c_cflag |= CRTSCTS;
1217     else if (crtscts < 0)
1218         tios.c_cflag &= ~CRTSCTS;
1219 #else
1220     if (crtscts != 0 && !termiox_ok) {
1221         error("Can't set RTS/CTS flow control");
1222     } else if (crtscts > 0) {
1223         tiox.x_hflag |= RTSXOFF|CTSXON;
1224     } else if (crtscts < 0) {
1225         tiox.x_hflag &= ~(RTSXOFF|CTSXON);
1226     }
1227 #endif
1228
1229     if (stop_bits >= 2)
1230         tios.c_cflag |= CSTOPB;
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 *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_line, line, sizeof(utmpx.ut_line));
2473         strncpy(utmpx.ut_host, host, sizeof(utmpx.ut_host));
2474         if (*host != '\0') {
2475             utmpx.ut_syslen = strlen(host) + 1;
2476             if (utmpx.ut_syslen > sizeof(utmpx.ut_host))
2477                 utmpx.ut_syslen = sizeof(utmpx.ut_host);
2478         }
2479         utmpx.ut_pid = getpid();
2480         utmpx.ut_type = USER_PROCESS;
2481     } else {
2482         utmpx.ut_type = DEAD_PROCESS;
2483     }
2484     gettimeofday(&utmpx.ut_tv, NULL);
2485     updwtmpx("/var/adm/wtmpx", &utmpx);
2486 }
2487
2488 /*
2489  * get_host_seed - return the serial number of this machine.
2490  */
2491 int
2492 get_host_seed()
2493 {
2494     char buf[32];
2495
2496     if (sysinfo(SI_HW_SERIAL, buf, sizeof(buf)) < 0) {
2497         error("sysinfo: %m");
2498         return 0;
2499     }
2500     return (int) strtoul(buf, NULL, 16);
2501 }
2502
2503 static int
2504 strioctl(fd, cmd, ptr, ilen, olen)
2505     int fd, cmd, ilen, olen;
2506     void *ptr;
2507 {
2508     struct strioctl str;
2509
2510     str.ic_cmd = cmd;
2511     str.ic_timout = 0;
2512     str.ic_len = ilen;
2513     str.ic_dp = ptr;
2514     if (ioctl(fd, I_STR, &str) == -1)
2515         return -1;
2516     if (str.ic_len != olen)
2517         dbglog("strioctl: expected %d bytes, got %d for cmd %x\n",
2518                olen, str.ic_len, cmd);
2519     return 0;
2520 }
2521
2522 #if 0
2523 /*
2524  * lock - create a lock file for the named lock device
2525  */
2526
2527 #define LOCK_PREFIX     "/var/spool/locks/LK."
2528 static char lock_file[40];      /* name of lock file created */
2529
2530 int
2531 lock(dev)
2532     char *dev;
2533 {
2534     int n, fd, pid;
2535     struct stat sbuf;
2536     char ascii_pid[12];
2537
2538     if (stat(dev, &sbuf) < 0) {
2539         error("Can't get device number for %s: %m", dev);
2540         return -1;
2541     }
2542     if ((sbuf.st_mode & S_IFMT) != S_IFCHR) {
2543         error("Can't lock %s: not a character device", dev);
2544         return -1;
2545     }
2546     slprintf(lock_file, sizeof(lock_file), "%s%03d.%03d.%03d",
2547              LOCK_PREFIX, major(sbuf.st_dev),
2548              major(sbuf.st_rdev), minor(sbuf.st_rdev));
2549
2550     while ((fd = open(lock_file, O_EXCL | O_CREAT | O_RDWR, 0644)) < 0) {
2551         if (errno == EEXIST
2552             && (fd = open(lock_file, O_RDONLY, 0)) >= 0) {
2553             /* Read the lock file to find out who has the device locked */
2554             n = read(fd, ascii_pid, 11);
2555             if (n <= 0) {
2556                 error("Can't read pid from lock file %s", lock_file);
2557                 close(fd);
2558             } else {
2559                 ascii_pid[n] = 0;
2560                 pid = atoi(ascii_pid);
2561                 if (pid > 0 && kill(pid, 0) == -1 && errno == ESRCH) {
2562                     /* pid no longer exists - remove the lock file */
2563                     if (unlink(lock_file) == 0) {
2564                         close(fd);
2565                         notice("Removed stale lock on %s (pid %d)",
2566                                dev, pid);
2567                         continue;
2568                     } else
2569                         warn("Couldn't remove stale lock on %s",
2570                                dev);
2571                 } else
2572                     notice("Device %s is locked by pid %d",
2573                            dev, pid);
2574             }
2575             close(fd);
2576         } else
2577             error("Can't create lock file %s: %m", lock_file);
2578         lock_file[0] = 0;
2579         return -1;
2580     }
2581
2582     slprintf(ascii_pid, sizeof(ascii_pid), "%10d\n", getpid());
2583     write(fd, ascii_pid, 11);
2584
2585     close(fd);
2586     return 1;
2587 }
2588
2589 /*
2590  * unlock - remove our lockfile
2591  */
2592 void
2593 unlock()
2594 {
2595     if (lock_file[0]) {
2596         unlink(lock_file);
2597         lock_file[0] = 0;
2598     }
2599 }
2600 #endif
2601
2602 /*
2603  * cifroute - delete a route through the addresses given.
2604  */
2605 int
2606 cifroute(u, our, his)
2607     int u;
2608     u_int32_t our, his;
2609 {
2610     struct rtentry rt;
2611
2612     memset(&rt, 0, sizeof(rt));
2613     rt.rt_dst.sa_family = AF_INET;
2614     INET_ADDR(rt.rt_dst) = his;
2615     rt.rt_gateway.sa_family = AF_INET;
2616     INET_ADDR(rt.rt_gateway) = our;
2617     rt.rt_flags = RTF_HOST;
2618
2619     if (ioctl(ipfd, SIOCDELRT, &rt) < 0) {
2620         error("Can't delete route: %m");
2621         return 0;
2622     }
2623
2624     return 1;
2625 }
2626
2627 /*
2628  * have_route_to - determine if the system has a route to the specified
2629  * IP address.  Returns 0 if not, 1 if so, -1 if we can't tell.
2630  * `addr' is in network byte order.
2631  * For demand mode to work properly, we have to ignore routes
2632  * through our own interface.
2633  */
2634 #ifndef T_CURRENT               /* needed for Solaris 2.5 */
2635 #define T_CURRENT       MI_T_CURRENT
2636 #endif
2637
2638 int
2639 have_route_to(addr)
2640     u_int32_t addr;
2641 {
2642 #ifdef SOL2
2643     int fd, r, flags, i;
2644     struct {
2645         struct T_optmgmt_req req;
2646         struct opthdr hdr;
2647     } req;
2648     union {
2649         struct T_optmgmt_ack ack;
2650         unsigned char space[64];
2651     } ack;
2652     struct opthdr *rh;
2653     struct strbuf cbuf, dbuf;
2654     int nroutes;
2655     mib2_ipRouteEntry_t routes[8];
2656     mib2_ipRouteEntry_t *rp;
2657
2658     fd = open(mux_dev_name, O_RDWR);
2659     if (fd < 0) {
2660         warn("have_route_to: couldn't open %s: %m", mux_dev_name);
2661         return -1;
2662     }
2663
2664     req.req.PRIM_type = T_OPTMGMT_REQ;
2665     req.req.OPT_offset = (char *) &req.hdr - (char *) &req;
2666     req.req.OPT_length = sizeof(req.hdr);
2667     req.req.MGMT_flags = T_CURRENT;
2668
2669     req.hdr.level = MIB2_IP;
2670     req.hdr.name = 0;
2671     req.hdr.len = 0;
2672
2673     cbuf.buf = (char *) &req;
2674     cbuf.len = sizeof(req);
2675
2676     if (putmsg(fd, &cbuf, NULL, 0) == -1) {
2677         warn("have_route_to: putmsg: %m");
2678         close(fd);
2679         return -1;
2680     }
2681
2682     for (;;) {
2683         cbuf.buf = (char *) &ack;
2684         cbuf.maxlen = sizeof(ack);
2685         dbuf.buf = (char *) routes;
2686         dbuf.maxlen = sizeof(routes);
2687         flags = 0;
2688         r = getmsg(fd, &cbuf, &dbuf, &flags);
2689         if (r == -1) {
2690             warn("have_route_to: getmsg: %m");
2691             close(fd);
2692             return -1;
2693         }
2694
2695         if (cbuf.len < sizeof(struct T_optmgmt_ack)
2696             || ack.ack.PRIM_type != T_OPTMGMT_ACK
2697             || ack.ack.MGMT_flags != T_SUCCESS
2698             || ack.ack.OPT_length < sizeof(struct opthdr)) {
2699             dbglog("have_route_to: bad message len=%d prim=%d",
2700                    cbuf.len, ack.ack.PRIM_type);
2701             close(fd);
2702             return -1;
2703         }
2704
2705         rh = (struct opthdr *) ((char *)&ack + ack.ack.OPT_offset);
2706         if (rh->level == 0 && rh->name == 0)
2707             break;
2708         if (rh->level != MIB2_IP || rh->name != MIB2_IP_21) {
2709             while (r == MOREDATA)
2710                 r = getmsg(fd, NULL, &dbuf, &flags);
2711             continue;
2712         }
2713
2714         for (;;) {
2715             nroutes = dbuf.len / sizeof(mib2_ipRouteEntry_t);
2716             for (rp = routes, i = 0; i < nroutes; ++i, ++rp) {
2717                 if (rp->ipRouteMask != ~0) {
2718                     dbglog("have_route_to: dest=%x gw=%x mask=%x\n",
2719                            rp->ipRouteDest, rp->ipRouteNextHop,
2720                            rp->ipRouteMask);
2721                     if (((addr ^ rp->ipRouteDest) & rp->ipRouteMask) == 0
2722                         && rp->ipRouteNextHop != remote_addr)
2723                         return 1;
2724                 }
2725             }
2726             if (r == 0)
2727                 break;
2728             r = getmsg(fd, NULL, &dbuf, &flags);
2729         }
2730     }
2731     close(fd);
2732     return 0;
2733 #else
2734     return -1;
2735 #endif /* SOL2 */
2736 }
2737
2738 /*
2739  * get_pty - get a pty master/slave pair and chown the slave side to
2740  * the uid given.  Assumes slave_name points to MAXPATHLEN bytes of space.
2741  */
2742 int
2743 get_pty(master_fdp, slave_fdp, slave_name, uid)
2744     int *master_fdp;
2745     int *slave_fdp;
2746     char *slave_name;
2747     int uid;
2748 {
2749     int mfd, sfd;
2750     char *pty_name;
2751
2752     mfd = open("/dev/ptmx", O_RDWR);
2753     if (mfd < 0) {
2754         error("Couldn't open pty master: %m");
2755         return 0;
2756     }
2757
2758     pty_name = ptsname(mfd);
2759     if (pty_name == NULL) {
2760         error("Couldn't get name of pty slave");
2761         close(mfd);
2762         return 0;
2763     }
2764     if (chown(pty_name, uid, -1) < 0)
2765         warn("Couldn't change owner of pty slave: %m");
2766     if (chmod(pty_name, S_IRUSR | S_IWUSR) < 0)
2767         warn("Couldn't change permissions on pty slave: %m");
2768     if (unlockpt(mfd) < 0)
2769         warn("Couldn't unlock pty slave: %m");
2770
2771     sfd = open(pty_name, O_RDWR);
2772     if (sfd < 0) {
2773         error("Couldn't open pty slave %s: %m", pty_name);
2774         close(mfd);
2775         return 0;
2776     }
2777     if (ioctl(sfd, I_PUSH, "ptem") < 0)
2778         warn("Couldn't push ptem module on pty slave: %m");
2779
2780     dbglog("Using %s", pty_name);
2781     strlcpy(slave_name, pty_name, MAXPATHLEN);
2782     *master_fdp = mfd;
2783     *slave_fdp = sfd;
2784
2785     return 1;
2786 }
2787
2788 /********************************************************************
2789  *
2790  * get_time - Get current time, monotonic if possible.
2791  */
2792 int
2793 get_time(struct timeval *tv)
2794 {
2795     return gettimeofday(tv, NULL);
2796 }