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