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