2 * System-dependent procedures for pppd under SunOS 4.
4 * Copyright (c) 1994 The Australian National University.
7 * Permission to use, copy, modify, and distribute this software and its
8 * documentation is hereby granted, provided that the above copyright
9 * notice appears in all copies. This software is provided without any
10 * warranty, express or implied. The Australian National University
11 * makes no representations about the suitability of this software for
14 * IN NO EVENT SHALL THE AUSTRALIAN NATIONAL UNIVERSITY BE LIABLE TO ANY
15 * PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
16 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
17 * THE AUSTRALIAN NATIONAL UNIVERSITY HAVE BEEN ADVISED OF THE POSSIBILITY
20 * THE AUSTRALIAN NATIONAL UNIVERSITY SPECIFICALLY DISCLAIMS ANY WARRANTIES,
21 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
22 * AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
23 * ON AN "AS IS" BASIS, AND THE AUSTRALIAN NATIONAL UNIVERSITY HAS NO
24 * OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS,
28 #define RCSID "$Id: sys-sunos4.c,v 1.1.1.4 2003/10/14 08:09:53 sparq Exp $"
42 #include <sys/types.h>
43 #include <sys/param.h>
44 #include <sys/socket.h>
45 #include <sys/sockio.h>
46 #include <sys/stream.h>
47 #include <sys/stropts.h>
52 #include <net/if_arp.h>
53 #include <net/nit_if.h>
54 #include <net/route.h>
55 #include <net/ppp_defs.h>
56 #include <net/pppio.h>
57 #include <netinet/in.h>
61 #if defined(sun) && defined(sparc)
64 extern void *alloca();
68 static const char rcsid
[] = RCSID
;
71 static int fdmuxid
= -1;
75 static int restore_term
;
76 static struct termios inittermios
;
77 static struct winsize wsinfo
; /* Initial window size info */
78 static pid_t parent_pid
; /* PID of our parent */
80 extern u_char inpacket_buf
[]; /* borrowed from main.c */
82 #define MAX_POLLFDS 32
83 static struct pollfd pollfds
[MAX_POLLFDS
];
86 static int link_mtu
, link_mru
;
89 static int tty_nmodules
;
90 static char tty_modules
[NMODULES
][FMNAMESZ
+1];
92 static int if_is_up
; /* Interface has been marked up */
93 static u_int32_t ifaddrs
[2]; /* local and remote addresses */
94 static u_int32_t default_route_gateway
; /* Gateway for default route added */
95 static u_int32_t proxy_arp_addr
; /* Addr for proxy arp entry added */
97 /* Prototypes for procedures local to this file. */
98 static int translate_speed
__P((int));
99 static int baud_rate_of
__P((int));
100 static int get_ether_addr
__P((u_int32_t
, struct sockaddr
*));
101 static int strioctl
__P((int, int, void *, int, int));
105 * sys_init - System-dependent initialization.
112 /* Get an internet socket for doing socket ioctl's on. */
113 if ((sockfd
= socket(AF_INET
, SOCK_DGRAM
, 0)) < 0)
114 fatal("Couldn't create IP socket: %m");
117 * We may want to send a SIGHUP to the session leader associated
118 * with our controlling terminal later. Because SunOS doesn't
119 * have getsid(), we make do with sending the signal to our
122 parent_pid
= getppid();
125 * Open the ppp device.
127 pppfd
= open("/dev/ppp", O_RDWR
| O_NONBLOCK
, 0);
129 fatal("Can't open /dev/ppp: %m");
131 x
= PPPDBG_LOG
+ PPPDBG_DRIVER
;
132 strioctl(pppfd
, PPPIO_DEBUG
, &x
, sizeof(int), 0);
135 /* Assign a new PPA and get its unit number. */
136 if (strioctl(pppfd
, PPPIO_NEWPPA
, &ifunit
, 0, sizeof(int)) < 0)
137 fatal("Can't create new PPP interface: %m");
140 * Open the ppp device again and push the if_ppp module on it.
142 iffd
= open("/dev/ppp", O_RDWR
, 0);
144 fatal("Can't open /dev/ppp (2): %m");
146 x
= PPPDBG_LOG
+ PPPDBG_DRIVER
;
147 strioctl(iffd
, PPPIO_DEBUG
, &x
, sizeof(int), 0);
149 if (strioctl(iffd
, PPPIO_ATTACH
, &ifunit
, sizeof(int), 0) < 0)
150 fatal("Couldn't attach ppp interface to device: %m");
151 if (ioctl(iffd
, I_PUSH
, "if_ppp") < 0)
152 fatal("Can't push ppp interface module: %m");
154 x
= PPPDBG_LOG
+ PPPDBG_IF
;
155 strioctl(iffd
, PPPIO_DEBUG
, &x
, sizeof(int), 0);
157 if (strioctl(iffd
, PPPIO_NEWPPA
, &ifunit
, sizeof(int), 0) < 0)
158 fatal("Couldn't create ppp interface unit: %m");
160 if (strioctl(iffd
, PPPIO_BIND
, &x
, sizeof(int), 0) < 0)
161 fatal("Couldn't bind ppp interface to IP SAP: %m");
167 * sys_cleanup - restore any system state we modified before exiting:
168 * mark the interface down, delete default route and/or proxy arp entry.
169 * This shouldn't call die() because it's called from die().
177 cifaddr(0, ifaddrs
[0], ifaddrs
[1]);
178 if (default_route_gateway
)
179 cifdefaultroute(0, 0, default_route_gateway
);
181 cifproxyarp(0, proxy_arp_addr
);
185 * sys_close - Clean up in a child process before execing.
196 * sys_check_options - check the options that the user specified
206 * ppp_available - check whether the system has any ppp interfaces
213 return stat("/dev/ppp", &buf
) >= 0;
217 * tty_establish_ppp - Turn the serial port into a ppp interface.
220 tty_establish_ppp(fd
)
225 /* Pop any existing modules off the tty stream. */
227 if (ioctl(fd
, I_LOOK
, tty_modules
[i
]) < 0
228 || ioctl(fd
, I_POP
, 0) < 0)
232 /* Push the async hdlc module and the compressor module. */
233 if (ioctl(fd
, I_PUSH
, "ppp_ahdl") < 0)
234 fatal("Couldn't push PPP Async HDLC module: %m");
235 if (ioctl(fd
, I_PUSH
, "ppp_comp") < 0)
236 error("Couldn't push PPP compression module: %m");
238 /* Link the serial port under the PPP multiplexor. */
239 if ((fdmuxid
= ioctl(pppfd
, I_LINK
, fd
)) < 0)
240 fatal("Can't link tty to PPP mux: %m");
246 * disestablish_ppp - Restore the serial port to normal operation.
247 * It attempts to reconstruct the stream with the previously popped
248 * modules. This shouldn't call die() because it's called from die().
251 tty_disestablish_ppp(fd
)
257 if (ioctl(pppfd
, I_UNLINK
, fdmuxid
) < 0) {
259 error("Can't unlink tty from PPP mux: %m");
264 while (ioctl(fd
, I_POP
, 0) >= 0)
266 for (i
= tty_nmodules
- 1; i
>= 0; --i
)
267 if (ioctl(fd
, I_PUSH
, tty_modules
[i
]) < 0)
268 error("Couldn't restore tty module %s: %m",
271 if (hungup
&& default_device
&& parent_pid
> 0) {
273 * If we have received a hangup, we need to send a SIGHUP
274 * to the terminal's controlling process. The reason is
275 * that the original stream head for the terminal hasn't
276 * seen the M_HANGUP message (it went up through the ppp
277 * driver to the stream head for our fd to /dev/ppp).
278 * Actually we send the signal to the process that invoked
279 * pppd, since SunOS doesn't have getsid().
281 kill(parent_pid
, SIGHUP
);
287 * Check whether the link seems not to be 8-bit clean.
295 if (strioctl(pppfd
, PPPIO_GCLEAN
, &x
, 0, sizeof(x
)) < 0)
300 s
= "bit 7 set to 1";
303 s
= "bit 7 set to 0";
313 warn("Serial link is not 8-bit clean:");
314 warn("All received characters had %s", s
);
319 * List of valid speeds.
322 int speed_int
, speed_val
;
394 * Translate from bits/second to a speed_t.
400 struct speed
*speedp
;
404 for (speedp
= speeds
; speedp
->speed_int
; speedp
++)
405 if (bps
== speedp
->speed_int
)
406 return speedp
->speed_val
;
407 warn("speed %d not supported", bps
);
412 * Translate from a speed_t to bits/second.
418 struct speed
*speedp
;
422 for (speedp
= speeds
; speedp
->speed_int
; speedp
++)
423 if (speed
== speedp
->speed_val
)
424 return speedp
->speed_int
;
429 * set_up_tty: Set up the serial port on `fd' for 8 bits, no parity,
430 * at the requested speed, etc. If `local' is true, set CLOCAL
431 * regardless of whether the modem option was specified.
434 set_up_tty(fd
, local
)
440 if (tcgetattr(fd
, &tios
) < 0)
441 fatal("tcgetattr: %m");
445 ioctl(fd
, TIOCGWINSZ
, &wsinfo
);
448 tios
.c_cflag
&= ~(CSIZE
| CSTOPB
| PARENB
| CLOCAL
);
450 tios
.c_cflag
|= CRTSCTS
;
451 else if (crtscts
< 0)
452 tios
.c_cflag
&= ~CRTSCTS
;
454 tios
.c_cflag
|= CS8
| CREAD
| HUPCL
;
456 tios
.c_cflag
|= CLOCAL
;
457 tios
.c_iflag
= IGNBRK
| IGNPAR
;
461 tios
.c_cc
[VTIME
] = 0;
464 tios
.c_iflag
|= IXON
| IXOFF
;
465 tios
.c_cc
[VSTOP
] = 0x13; /* DC3 = XOFF = ^S */
466 tios
.c_cc
[VSTART
] = 0x11; /* DC1 = XON = ^Q */
469 speed
= translate_speed(inspeed
);
471 cfsetospeed(&tios
, speed
);
472 cfsetispeed(&tios
, speed
);
474 speed
= cfgetospeed(&tios
);
476 * We can't proceed if the serial port speed is 0,
477 * since that implies that the serial port is disabled.
480 fatal("Baud rate for %s is 0; need explicit baud rate", devnam
);
483 if (tcsetattr(fd
, TCSAFLUSH
, &tios
) < 0)
484 fatal("tcsetattr: %m");
486 baud_rate
= inspeed
= baud_rate_of(speed
);
491 * restore_tty - restore the terminal to the saved settings.
498 if (!default_device
) {
500 * Turn off echoing, because otherwise we can get into
501 * a loop with the tty and the modem echoing to each other.
502 * We presume we are the sole user of this tty device, so
503 * when we close it, it will revert to its defaults anyway.
505 inittermios
.c_lflag
&= ~(ECHO
| ECHONL
);
507 if (tcsetattr(fd
, TCSAFLUSH
, &inittermios
) < 0)
508 if (!hungup
&& errno
!= ENXIO
)
509 warn("tcsetattr: %m");
510 ioctl(fd
, TIOCSWINSZ
, &wsinfo
);
516 * setdtr - control the DTR line on the serial port.
517 * This is called from die(), so it shouldn't call die().
523 int modembits
= TIOCM_DTR
;
525 ioctl(fd
, (on
? TIOCMBIS
: TIOCMBIC
), &modembits
);
529 * open_loopback - open the device we use for getting packets
530 * in demand mode. Under SunOS, we use our existing fd
540 * output - Output PPP packet.
553 dbglog("sent %P", p
, len
);
556 data
.buf
= (caddr_t
) p
;
558 while (putmsg(pppfd
, NULL
, &data
, 0) < 0) {
559 if (--retries
< 0 || (errno
!= EWOULDBLOCK
&& errno
!= EAGAIN
)) {
561 error("Couldn't send packet: %m");
565 pfd
.events
= POLLOUT
;
566 poll(&pfd
, 1, 250); /* wait for up to 0.25 seconds */
572 * wait_input - wait until there is data available,
573 * for the length of time specified by *timo (indefinite
578 struct timeval
*timo
;
582 t
= timo
== NULL
? -1: timo
->tv_sec
* 1000 + timo
->tv_usec
/ 1000;
583 if (poll(pollfds
, n_pollfds
, t
) < 0 && errno
!= EINTR
) {
586 /* we can get EAGAIN on a heavily loaded system,
587 * just wait a short time and try again. */
593 * add_fd - add an fd to the set that wait_input waits for.
600 for (n
= 0; n
< n_pollfds
; ++n
)
601 if (pollfds
[n
].fd
== fd
)
603 if (n_pollfds
< MAX_POLLFDS
) {
604 pollfds
[n_pollfds
].fd
= fd
;
605 pollfds
[n_pollfds
].events
= POLLIN
| POLLPRI
| POLLHUP
;
608 error("Too many inputs!");
612 * remove_fd - remove an fd from the set that wait_input waits for.
619 for (n
= 0; n
< n_pollfds
; ++n
) {
620 if (pollfds
[n
].fd
== fd
) {
621 while (++n
< n_pollfds
)
622 pollfds
[n
-1] = pollfds
[n
];
631 * read_packet - get a PPP packet from the serial device.
637 struct strbuf ctrl
, data
;
639 unsigned char ctrlbuf
[64];
642 data
.maxlen
= PPP_MRU
+ PPP_HDRLEN
;
643 data
.buf
= (caddr_t
) buf
;
644 ctrl
.maxlen
= sizeof(ctrlbuf
);
645 ctrl
.buf
= (caddr_t
) ctrlbuf
;
647 len
= getmsg(pppfd
, &ctrl
, &data
, &flags
);
649 if (errno
== EAGAIN
|| errno
== EINTR
)
651 fatal("Error reading packet: %m");
658 * Got a M_PROTO or M_PCPROTO message. Huh?
661 dbglog("got ctrl msg len=%d", ctrl
.len
);
667 * get_loop_output - get outgoing packets from the ppp device,
668 * and detect when we want to bring the real link up.
669 * Return value is 1 if we need to bring up the link, 0 otherwise.
677 while ((len
= read_packet(inpacket_buf
)) > 0) {
678 if (loop_frame(inpacket_buf
, len
))
685 * ppp_send_config - configure the transmit characteristics of
689 ppp_send_config(unit
, mtu
, asyncmap
, pcomp
, accomp
)
698 if (strioctl(pppfd
, PPPIO_MTU
, &mtu
, sizeof(mtu
), 0) < 0) {
699 if (hungup
&& errno
== ENXIO
)
701 error("Couldn't set MTU: %m");
703 if (strioctl(pppfd
, PPPIO_XACCM
, &asyncmap
, sizeof(asyncmap
), 0) < 0) {
704 error("Couldn't set transmit ACCM: %m");
706 cf
[0] = (pcomp
? COMP_PROT
: 0) + (accomp
? COMP_AC
: 0);
707 cf
[1] = COMP_PROT
| COMP_AC
;
708 if (strioctl(pppfd
, PPPIO_CFLAGS
, cf
, sizeof(cf
), sizeof(int)) < 0) {
709 error("Couldn't set prot/AC compression: %m");
712 /* set mtu for ip as well */
713 memset(&ifr
, 0, sizeof(ifr
));
714 strlcpy(ifr
.ifr_name
, ifname
, sizeof(ifr
.ifr_name
));
715 ifr
.ifr_metric
= link_mtu
;
716 if (ioctl(sockfd
, SIOCSIFMTU
, &ifr
) < 0) {
717 error("Couldn't set IP MTU: %m");
722 * ppp_set_xaccm - set the extended transmit ACCM for the interface.
725 ppp_set_xaccm(unit
, accm
)
729 if (strioctl(pppfd
, PPPIO_XACCM
, accm
, sizeof(ext_accm
), 0) < 0) {
730 if (!hungup
|| errno
!= ENXIO
)
731 warn("Couldn't set extended ACCM: %m");
736 * ppp_recv_config - configure the receive-side characteristics of
740 ppp_recv_config(unit
, mru
, asyncmap
, pcomp
, accomp
)
748 if (strioctl(pppfd
, PPPIO_MRU
, &mru
, sizeof(mru
), 0) < 0) {
749 if (hungup
&& errno
== ENXIO
)
751 error("Couldn't set MRU: %m");
753 if (strioctl(pppfd
, PPPIO_RACCM
, &asyncmap
, sizeof(asyncmap
), 0) < 0) {
754 error("Couldn't set receive ACCM: %m");
756 cf
[0] = (pcomp
? DECOMP_PROT
: 0) + (accomp
? DECOMP_AC
: 0);
757 cf
[1] = DECOMP_PROT
| DECOMP_AC
;
758 if (strioctl(pppfd
, PPPIO_CFLAGS
, cf
, sizeof(cf
), sizeof(int)) < 0) {
759 error("Couldn't set prot/AC decompression: %m");
764 * ccp_test - ask kernel whether a given compression method
765 * is acceptable for use.
768 ccp_test(unit
, opt_ptr
, opt_len
, for_transmit
)
769 int unit
, opt_len
, for_transmit
;
772 if (strioctl(pppfd
, (for_transmit
? PPPIO_XCOMP
: PPPIO_RCOMP
),
773 opt_ptr
, opt_len
, 0) >= 0)
775 return (errno
== ENOSR
)? 0: -1;
779 * ccp_flags_set - inform kernel about the current state of CCP.
782 ccp_flags_set(unit
, isopen
, isup
)
783 int unit
, isopen
, isup
;
787 cf
[0] = (isopen
? CCP_ISOPEN
: 0) + (isup
? CCP_ISUP
: 0);
788 cf
[1] = CCP_ISOPEN
| CCP_ISUP
| CCP_ERROR
| CCP_FATALERROR
;
789 if (strioctl(pppfd
, PPPIO_CFLAGS
, cf
, sizeof(cf
), sizeof(int)) < 0) {
790 if (!hungup
|| errno
!= ENXIO
)
791 error("Couldn't set kernel CCP state: %m");
796 * get_idle_time - return how long the link has been idle.
803 return strioctl(pppfd
, PPPIO_GIDLE
, ip
, 0, sizeof(struct ppp_idle
)) >= 0;
807 * get_ppp_stats - return statistics for the link.
810 get_ppp_stats(u
, stats
)
812 struct pppd_stats
*stats
;
816 if (strioctl(pppfd
, PPPIO_GETSTAT
, &s
, 0, sizeof(s
)) < 0) {
817 error("Couldn't get link statistics: %m");
820 stats
->bytes_in
= s
.p
.ppp_ibytes
;
821 stats
->bytes_out
= s
.p
.ppp_obytes
;
827 * ccp_fatal_error - returns 1 if decompression was disabled as a
828 * result of an error detected after decompression of a packet,
829 * 0 otherwise. This is necessary because of patent nonsense.
832 ccp_fatal_error(unit
)
838 if (strioctl(pppfd
, PPPIO_CFLAGS
, cf
, sizeof(cf
), sizeof(int)) < 0) {
839 if (errno
!= ENXIO
&& errno
!= EINVAL
)
840 error("Couldn't get compression flags: %m");
843 return cf
[0] & CCP_FATALERROR
;
847 * sifvjcomp - config tcp header compression
850 sifvjcomp(u
, vjcomp
, xcidcomp
, xmaxcid
)
851 int u
, vjcomp
, xcidcomp
, xmaxcid
;
857 maxcid
[0] = xcidcomp
;
859 if (strioctl(pppfd
, PPPIO_VJINIT
, maxcid
, sizeof(maxcid
), 0) < 0) {
860 error("Couldn't initialize VJ compression: %m");
864 cf
[0] = (vjcomp
? COMP_VJC
+ DECOMP_VJC
: 0)
865 + (xcidcomp
? COMP_VJCCID
+ DECOMP_VJCCID
: 0);
866 cf
[1] = COMP_VJC
+ DECOMP_VJC
+ COMP_VJCCID
+ DECOMP_VJCCID
;
867 if (strioctl(pppfd
, PPPIO_CFLAGS
, cf
, sizeof(cf
), sizeof(int)) < 0) {
869 error("Couldn't enable VJ compression: %m");
876 * sifup - Config the interface up and enable IP packets to pass.
884 strlcpy(ifr
.ifr_name
, ifname
, sizeof(ifr
.ifr_name
));
885 if (ioctl(sockfd
, SIOCGIFFLAGS
, &ifr
) < 0) {
886 error("Couldn't mark interface up (get): %m");
889 ifr
.ifr_flags
|= IFF_UP
;
890 if (ioctl(sockfd
, SIOCSIFFLAGS
, &ifr
) < 0) {
891 error("Couldn't mark interface up (set): %m");
899 * sifdown - Config the interface down and disable IP.
907 strlcpy(ifr
.ifr_name
, ifname
, sizeof(ifr
.ifr_name
));
908 if (ioctl(sockfd
, SIOCGIFFLAGS
, &ifr
) < 0) {
909 error("Couldn't mark interface down (get): %m");
912 if ((ifr
.ifr_flags
& IFF_UP
) != 0) {
913 ifr
.ifr_flags
&= ~IFF_UP
;
914 if (ioctl(sockfd
, SIOCSIFFLAGS
, &ifr
) < 0) {
915 error("Couldn't mark interface down (set): %m");
924 * sifnpmode - Set the mode for handling packets for a given NP.
927 sifnpmode(u
, proto
, mode
)
936 if (strioctl(pppfd
, PPPIO_NPMODE
, npi
, 2 * sizeof(int), 0) < 0) {
937 error("ioctl(set NP %d mode to %d): %m", proto
, mode
);
943 #define INET_ADDR(x) (((struct sockaddr_in *) &(x))->sin_addr.s_addr)
946 * sifaddr - Config the interface IP addresses and netmask.
955 memset(&ifr
, 0, sizeof(ifr
));
956 strlcpy(ifr
.ifr_name
, ifname
, sizeof(ifr
.ifr_name
));
957 ifr
.ifr_addr
.sa_family
= AF_INET
;
958 INET_ADDR(ifr
.ifr_addr
) = m
;
959 if (ioctl(sockfd
, SIOCSIFNETMASK
, &ifr
) < 0) {
960 error("Couldn't set IP netmask: %m");
962 ifr
.ifr_addr
.sa_family
= AF_INET
;
963 INET_ADDR(ifr
.ifr_addr
) = o
;
964 if (ioctl(sockfd
, SIOCSIFADDR
, &ifr
) < 0) {
965 error("Couldn't set local IP address: %m");
967 ifr
.ifr_dstaddr
.sa_family
= AF_INET
;
968 INET_ADDR(ifr
.ifr_dstaddr
) = h
;
969 if (ioctl(sockfd
, SIOCSIFDSTADDR
, &ifr
) < 0) {
970 error("Couldn't set remote IP address: %m");
979 * cifaddr - Clear the interface IP addresses, and delete routes
980 * through the interface if possible.
989 bzero(&rt
, sizeof(rt
));
990 rt
.rt_dst
.sa_family
= AF_INET
;
991 INET_ADDR(rt
.rt_dst
) = h
;
992 rt
.rt_gateway
.sa_family
= AF_INET
;
993 INET_ADDR(rt
.rt_gateway
) = o
;
994 rt
.rt_flags
= RTF_HOST
;
995 if (ioctl(sockfd
, SIOCDELRT
, &rt
) < 0)
996 error("Couldn't delete route through interface: %m");
1002 * sifdefaultroute - assign a default route through the address given.
1005 sifdefaultroute(u
, l
, g
)
1011 bzero(&rt
, sizeof(rt
));
1012 rt
.rt_dst
.sa_family
= AF_INET
;
1013 INET_ADDR(rt
.rt_dst
) = 0;
1014 rt
.rt_gateway
.sa_family
= AF_INET
;
1015 INET_ADDR(rt
.rt_gateway
) = g
;
1016 rt
.rt_flags
= RTF_GATEWAY
;
1018 if (ioctl(sockfd
, SIOCADDRT
, &rt
) < 0) {
1019 error("Can't add default route: %m");
1023 default_route_gateway
= g
;
1028 * cifdefaultroute - delete a default route through the address given.
1031 cifdefaultroute(u
, l
, g
)
1037 bzero(&rt
, sizeof(rt
));
1038 rt
.rt_dst
.sa_family
= AF_INET
;
1039 INET_ADDR(rt
.rt_dst
) = 0;
1040 rt
.rt_gateway
.sa_family
= AF_INET
;
1041 INET_ADDR(rt
.rt_gateway
) = g
;
1042 rt
.rt_flags
= RTF_GATEWAY
;
1044 if (ioctl(sockfd
, SIOCDELRT
, &rt
) < 0) {
1045 error("Can't delete default route: %m");
1049 default_route_gateway
= 0;
1054 * sifproxyarp - Make a proxy ARP entry for the peer.
1057 sifproxyarp(unit
, hisaddr
)
1061 struct arpreq arpreq
;
1063 bzero(&arpreq
, sizeof(arpreq
));
1064 if (!get_ether_addr(hisaddr
, &arpreq
.arp_ha
))
1067 arpreq
.arp_pa
.sa_family
= AF_INET
;
1068 INET_ADDR(arpreq
.arp_pa
) = hisaddr
;
1069 arpreq
.arp_flags
= ATF_PERM
| ATF_PUBL
;
1070 if (ioctl(sockfd
, SIOCSARP
, (caddr_t
) &arpreq
) < 0) {
1071 error("Couldn't set proxy ARP entry: %m");
1075 proxy_arp_addr
= hisaddr
;
1080 * cifproxyarp - Delete the proxy ARP entry for the peer.
1083 cifproxyarp(unit
, hisaddr
)
1087 struct arpreq arpreq
;
1089 bzero(&arpreq
, sizeof(arpreq
));
1090 arpreq
.arp_pa
.sa_family
= AF_INET
;
1091 INET_ADDR(arpreq
.arp_pa
) = hisaddr
;
1092 if (ioctl(sockfd
, SIOCDARP
, (caddr_t
)&arpreq
) < 0) {
1093 error("Couldn't delete proxy ARP entry: %m");
1102 * get_ether_addr - get the hardware address of an interface on the
1103 * the same subnet as ipaddr.
1108 get_ether_addr(ipaddr
, hwaddr
)
1110 struct sockaddr
*hwaddr
;
1112 struct ifreq
*ifr
, *ifend
;
1113 u_int32_t ina
, mask
;
1116 struct ifreq ifs
[MAX_IFS
];
1119 ifc
.ifc_len
= sizeof(ifs
);
1121 if (ioctl(sockfd
, SIOCGIFCONF
, &ifc
) < 0) {
1122 error("ioctl(SIOCGIFCONF): %m");
1127 * Scan through looking for an interface with an Internet
1128 * address on the same subnet as `ipaddr'.
1130 ifend
= (struct ifreq
*) (ifc
.ifc_buf
+ ifc
.ifc_len
);
1131 for (ifr
= ifc
.ifc_req
; ifr
< ifend
; ifr
= (struct ifreq
*)
1132 ((char *)&ifr
->ifr_addr
+ sizeof(struct sockaddr
))) {
1133 if (ifr
->ifr_addr
.sa_family
== AF_INET
) {
1136 * Check that the interface is up, and not point-to-point
1139 strlcpy(ifreq
.ifr_name
, ifr
->ifr_name
, sizeof(ifreq
.ifr_name
));
1140 if (ioctl(sockfd
, SIOCGIFFLAGS
, &ifreq
) < 0)
1142 if ((ifreq
.ifr_flags
&
1143 (IFF_UP
|IFF_BROADCAST
|IFF_POINTOPOINT
|IFF_LOOPBACK
|IFF_NOARP
))
1144 != (IFF_UP
|IFF_BROADCAST
))
1148 * Get its netmask and check that it's on the right subnet.
1150 if (ioctl(sockfd
, SIOCGIFNETMASK
, &ifreq
) < 0)
1152 ina
= ((struct sockaddr_in
*) &ifr
->ifr_addr
)->sin_addr
.s_addr
;
1153 mask
= ((struct sockaddr_in
*) &ifreq
.ifr_addr
)->sin_addr
.s_addr
;
1154 if ((ipaddr
& mask
) != (ina
& mask
))
1163 info("found interface %s for proxy arp", ifr
->ifr_name
);
1166 * Grab the physical address for this interface.
1168 if ((nit_fd
= open("/dev/nit", O_RDONLY
)) < 0) {
1169 error("Couldn't open /dev/nit: %m");
1172 strlcpy(ifreq
.ifr_name
, ifr
->ifr_name
, sizeof(ifreq
.ifr_name
));
1173 if (ioctl(nit_fd
, NIOCBIND
, &ifreq
) < 0
1174 || ioctl(nit_fd
, SIOCGIFADDR
, &ifreq
) < 0) {
1175 error("Couldn't get hardware address for %s: %m",
1181 hwaddr
->sa_family
= AF_UNSPEC
;
1182 memcpy(hwaddr
->sa_data
, ifreq
.ifr_addr
.sa_data
, 6);
1188 * have_route_to - determine if the system has any route to
1189 * a given IP address.
1190 * For demand mode to work properly, we have to ignore routes
1191 * through our own interface.
1193 int have_route_to(addr
)
1199 #define WTMPFILE "/usr/adm/wtmp"
1202 logwtmp(line
, name
, host
)
1203 const char *line
, *name
, *host
;
1209 if ((fd
= open(WTMPFILE
, O_WRONLY
|O_APPEND
, 0)) < 0)
1211 if (!fstat(fd
, &buf
)) {
1212 strncpy(ut
.ut_line
, line
, sizeof(ut
.ut_line
));
1213 strncpy(ut
.ut_name
, name
, sizeof(ut
.ut_name
));
1214 strncpy(ut
.ut_host
, host
, sizeof(ut
.ut_host
));
1215 (void)time(&ut
.ut_time
);
1216 if (write(fd
, (char *)&ut
, sizeof(struct utmp
)) != sizeof(struct utmp
))
1217 (void)ftruncate(fd
, buf
.st_size
);
1223 * Return user specified netmask, modified by any mask we might determine
1224 * for address `addr' (in network byte order).
1225 * Here we scan through the system's list of interfaces, looking for
1226 * any non-point-to-point interfaces which might appear to be on the same
1227 * network as `addr'. If we find any, we OR in their netmask to the
1228 * user-specified netmask.
1234 u_int32_t mask
, nmask
, ina
;
1235 struct ifreq
*ifr
, *ifend
, ifreq
;
1239 if (IN_CLASSA(addr
)) /* determine network mask for address class */
1240 nmask
= IN_CLASSA_NET
;
1241 else if (IN_CLASSB(addr
))
1242 nmask
= IN_CLASSB_NET
;
1244 nmask
= IN_CLASSC_NET
;
1245 /* class D nets are disallowed by bad_ip_adrs */
1246 mask
= netmask
| htonl(nmask
);
1249 * Scan through the system's network interfaces.
1251 ifc
.ifc_len
= MAX_IFS
* sizeof(struct ifreq
);
1252 ifc
.ifc_req
= alloca(ifc
.ifc_len
);
1253 if (ifc
.ifc_req
== 0)
1255 if (ioctl(sockfd
, SIOCGIFCONF
, &ifc
) < 0) {
1256 warn("Couldn't get system interface list: %m");
1259 ifend
= (struct ifreq
*) (ifc
.ifc_buf
+ ifc
.ifc_len
);
1260 for (ifr
= ifc
.ifc_req
; ifr
< ifend
; ++ifr
) {
1262 * Check the interface's internet address.
1264 if (ifr
->ifr_addr
.sa_family
!= AF_INET
)
1266 ina
= INET_ADDR(ifr
->ifr_addr
);
1267 if ((ntohl(ina
) & nmask
) != (addr
& nmask
))
1270 * Check that the interface is up, and not point-to-point or loopback.
1272 strlcpy(ifreq
.ifr_name
, ifr
->ifr_name
, sizeof(ifreq
.ifr_name
));
1273 if (ioctl(sockfd
, SIOCGIFFLAGS
, &ifreq
) < 0)
1275 if ((ifreq
.ifr_flags
& (IFF_UP
|IFF_POINTOPOINT
|IFF_LOOPBACK
))
1279 * Get its netmask and OR it into our mask.
1281 if (ioctl(sockfd
, SIOCGIFNETMASK
, &ifreq
) < 0)
1283 mask
|= INET_ADDR(ifreq
.ifr_addr
);
1290 strioctl(fd
, cmd
, ptr
, ilen
, olen
)
1291 int fd
, cmd
, ilen
, olen
;
1294 struct strioctl str
;
1300 if (ioctl(fd
, I_STR
, &str
) == -1)
1302 if (str
.ic_len
!= olen
)
1303 dbglog("strioctl: expected %d bytes, got %d for cmd %x\n",
1304 olen
, str
.ic_len
, cmd
);
1309 * Use the hostid as part of the random number seed.
1319 * get_pty - get a pty master/slave pair and chown the slave side
1320 * to the uid given. Assumes slave_name points to >= 12 bytes of space.
1323 get_pty(master_fdp
, slave_fdp
, slave_name
, uid
)
1331 struct termios tios
;
1334 for (i
= 0; i
< 64; ++i
) {
1335 slprintf(pty_name
, sizeof(pty_name
), "/dev/pty%c%x",
1336 'p' + i
/ 16, i
% 16);
1337 mfd
= open(pty_name
, O_RDWR
, 0);
1340 sfd
= open(pty_name
, O_RDWR
| O_NOCTTY
, 0);
1349 strlcpy(slave_name
, pty_name
, 12);
1352 fchown(sfd
, uid
, -1);
1353 fchmod(sfd
, S_IRUSR
| S_IWUSR
);
1354 if (tcgetattr(sfd
, &tios
) == 0) {
1355 tios
.c_cflag
&= ~(CSIZE
| CSTOPB
| PARENB
);
1356 tios
.c_cflag
|= CS8
| CREAD
;
1357 tios
.c_iflag
= IGNPAR
| CLOCAL
;
1360 if (tcsetattr(sfd
, TCSAFLUSH
, &tios
) < 0)
1361 warn("couldn't set attributes on pty: %m");
1363 warn("couldn't get attributes on pty: %m");
1369 * SunOS doesn't have strtoul :-(
1372 strtoul(str
, ptr
, base
)
1376 return (unsigned long) strtol(str
, ptr
, base
);
1382 extern char *sys_errlist
[];
1383 extern int sys_nerr
;
1389 static char unknown
[32];
1391 if (n
> 0 && n
< sys_nerr
)
1392 return sys_errlist
[n
];
1393 slprintf(unknown
, sizeof(unknown
), "Error %d", n
);