2 * sys-linux.c - System-dependent procedures for setting up
3 * PPP interfaces on Linux systems
5 * Copyright (c) 1994-2004 Paul Mackerras. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
14 * 2. The name(s) of the authors of this software must not be used to
15 * endorse or promote products derived from this software without
16 * prior written permission.
18 * 3. Redistributions of any form whatsoever must retain the following
20 * "This product includes software developed by Paul Mackerras
21 * <paulus@samba.org>".
23 * THE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO
24 * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
25 * AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
26 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
27 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
28 * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
29 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
31 * Derived from main.c and pppd.h, which are:
33 * Copyright (c) 1984-2000 Carnegie Mellon University. All rights reserved.
35 * Redistribution and use in source and binary forms, with or without
36 * modification, are permitted provided that the following conditions
39 * 1. Redistributions of source code must retain the above copyright
40 * notice, this list of conditions and the following disclaimer.
42 * 2. Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in
44 * the documentation and/or other materials provided with the
47 * 3. The name "Carnegie Mellon University" must not be used to
48 * endorse or promote products derived from this software without
49 * prior written permission. For permission or any legal
50 * details, please contact
51 * Office of Technology Transfer
52 * Carnegie Mellon University
54 * Pittsburgh, PA 15213-3890
55 * (412) 268-4387, fax: (412) 268-7395
56 * tech-transfer@andrew.cmu.edu
58 * 4. Redistributions of any form whatsoever must retain the following
60 * "This product includes software developed by Computing Services
61 * at Carnegie Mellon University (http://www.cmu.edu/computing/)."
63 * CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
64 * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
65 * AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
66 * FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
67 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
68 * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
69 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
72 #include <sys/ioctl.h>
73 #include <sys/types.h>
74 #include <sys/socket.h>
76 #include <sys/errno.h>
79 #include <sys/utsname.h>
80 #include <sys/sysmacros.h>
96 /* This is in netdevice.h. However, this compile will fail miserably if
97 you attempt to include netdevice.h because it has so many references
98 to __memcpy functions which it should not attempt to do. So, since I
99 really don't use it, but it must be defined, define it now. */
102 #define MAX_ADDR_LEN 7
106 #include <asm/types.h> /* glibc 2 conflicts with linux/types.h */
108 #include <net/if_arp.h>
109 #include <net/route.h>
110 #include <netinet/if_ether.h>
112 #include <linux/types.h>
113 #include <linux/if.h>
114 #include <linux/if_arp.h>
115 #include <linux/route.h>
116 #include <linux/if_ether.h>
118 #include <netinet/in.h>
119 #include <arpa/inet.h>
121 #include <linux/ppp_defs.h>
122 #include <linux/if_ppp.h>
130 #if __GLIBC__ >= 2 && \
131 !(defined(__powerpc__) && __GLIBC__ == 2 && __GLIBC_MINOR__ == 0)
132 #include <netipx/ipx.h>
134 #include <linux/ipx.h>
136 #endif /* IPX_CHANGE */
139 #include <pcap-bpf.h>
140 #include <linux/filter.h>
141 #endif /* PPP_FILTER */
144 #include <sys/locks.h>
150 * This is in linux/include/net/ipv6.h.
154 struct in6_addr ifr6_addr
;
155 __u32 ifr6_prefixlen
;
156 unsigned int ifr6_ifindex
;
160 #define IN6_LLADDR_FROM_EUI64(sin6, eui64) do { \
161 memset(&sin6.s6_addr, 0, sizeof(struct in6_addr)); \
162 sin6.s6_addr16[0] = htons(0xfe80); \
163 eui64_copy(eui64, sin6.s6_addr32[2]); \
168 /* We can get an EIO error on an ioctl if the modem has hung up */
169 #define ok_error(num) ((num)==EIO)
171 static int tty_disc
= N_TTY
; /* The TTY discipline */
172 static int ppp_disc
= N_PPP
; /* The PPP discpline */
173 static int initfdflags
= -1; /* Initial file descriptor flags for fd */
174 static int ppp_fd
= -1; /* fd which is set to PPP discipline */
175 static int sock_fd
= -1; /* socket for doing interface ioctls */
176 static int slave_fd
= -1; /* pty for old-style demand mode, slave */
177 static int master_fd
= -1; /* pty for old-style demand mode, master */
179 static int sock6_fd
= -1;
183 * For the old-style kernel driver, this is the same as ppp_fd.
184 * For the new-style driver, it is the fd of an instance of /dev/ppp
185 * which is attached to the ppp unit and is used for controlling it.
187 int ppp_dev_fd
= -1; /* fd for /dev/ppp (new style driver) */
189 static int chindex
; /* channel index (new style driver) */
191 static fd_set in_fds
; /* set of fds that wait_input waits for */
192 static int max_in_fd
; /* highest fd set in in_fds */
194 static int has_proxy_arp
= 0;
195 static int driver_version
= 0;
196 static int driver_modification
= 0;
197 static int driver_patch
= 0;
198 static int driver_is_old
= 0;
199 static int restore_term
= 0; /* 1 => we've munged the terminal */
200 static struct termios inittermios
; /* Initial TTY termios */
202 int new_style_driver
= 0;
204 static char loop_name
[20];
205 static unsigned char inbuf
[512]; /* buffer for chars read from loopback */
207 static int if_is_up
; /* Interface has been marked up */
208 static int have_default_route
; /* Gateway for default route added */
209 static u_int32_t proxy_arp_addr
; /* Addr for proxy arp entry added */
210 static char proxy_arp_dev
[16]; /* Device for proxy arp entry */
211 static u_int32_t our_old_addr
; /* for detecting address changes */
212 static int dynaddr_set
; /* 1 if ip_dynaddr set */
213 static int looped
; /* 1 if using loop */
214 static int link_mtu
; /* mtu for the link (not bundle) */
216 static struct utsname utsname
; /* for the kernel version */
217 static int kernel_version
;
218 #define KVERSION(j,n,p) ((j)*1000000 + (n)*1000 + (p))
222 #define FLAGS_GOOD (IFF_UP | IFF_BROADCAST)
223 #define FLAGS_MASK (IFF_UP | IFF_BROADCAST | \
224 IFF_POINTOPOINT | IFF_LOOPBACK | IFF_NOARP)
226 #define SIN_ADDR(x) (((struct sockaddr_in *) (&(x)))->sin_addr.s_addr)
228 /* Prototypes for procedures local to this file. */
229 static int modify_flags(int fd
, int clear_bits
, int set_bits
);
230 static int translate_speed (int bps
);
231 static int baud_rate_of (int speed
);
232 static void close_route_table (void);
233 static int open_route_table (void);
234 static int read_route_table (struct rtentry
*rt
);
235 static int defaultroute_exists (struct rtentry
*rt
);
236 static int get_ether_addr (u_int32_t ipaddr
, struct sockaddr
*hwaddr
,
237 char *name
, int namelen
);
238 static void decode_version (char *buf
, int *version
, int *mod
, int *patch
);
239 static int set_kdebugflag(int level
);
240 static int ppp_registered(void);
241 static int make_ppp_unit(void);
243 extern u_char inpacket_buf
[]; /* borrowed from main.c */
246 * SET_SA_FAMILY - set the sa_family field of a struct sockaddr,
250 #define SET_SA_FAMILY(addr, family) \
251 memset ((char *) &(addr), '\0', sizeof(addr)); \
252 addr.sa_family = (family);
255 * Determine if the PPP connection should still be present.
260 /* new_fd is the fd of a tty */
261 static void set_ppp_fd (int new_fd
)
264 if (!new_style_driver
)
268 static int still_ppp(void)
270 if (new_style_driver
)
271 return !hungup
&& ppp_fd
>= 0;
272 if (!hungup
|| ppp_fd
== slave_fd
)
275 set_ppp_fd(slave_fd
);
282 * modify_flags - set and clear flag bits controlling the kernel
285 static int modify_flags(int fd
, int clear_bits
, int set_bits
)
289 if (ioctl(fd
, PPPIOCGFLAGS
, &flags
) == -1)
291 flags
= (flags
& ~clear_bits
) | set_bits
;
292 if (ioctl(fd
, PPPIOCSFLAGS
, &flags
) == -1)
299 error("Failed to set PPP kernel option flags: %m");
303 /********************************************************************
305 * sys_init - System-dependent initialization.
310 /* Get an internet socket for doing socket ioctls. */
311 sock_fd
= socket(AF_INET
, SOCK_DGRAM
, 0);
313 fatal("Couldn't create IP socket: %m(%d)", errno
);
316 sock6_fd
= socket(AF_INET6
, SOCK_DGRAM
, 0);
318 sock6_fd
= -errno
; /* save errno for later */
325 /********************************************************************
327 * sys_cleanup - restore any system state we modified before exiting:
328 * mark the interface down, delete default route and/or proxy arp entry.
329 * This shouldn't call die() because it's called from die().
332 void sys_cleanup(void)
335 * Take down the device
342 * Delete any routes through the device.
344 if (have_default_route
)
345 cifdefaultroute(0, 0, 0);
348 cifproxyarp(0, proxy_arp_addr
);
351 /********************************************************************
353 * sys_close - Clean up in a child process before execing.
358 if (new_style_driver
&& ppp_dev_fd
>= 0)
372 /********************************************************************
374 * set_kdebugflag - Define the debugging level for the kernel
377 static int set_kdebugflag (int requested_level
)
381 if (ioctl(ppp_dev_fd
, PPPIOCSDEBUG
, &requested_level
) < 0) {
382 if ( ! ok_error (errno
) )
383 error("ioctl(PPPIOCSDEBUG): %m (line %d)", __LINE__
);
389 /********************************************************************
391 * tty_establish_ppp - Turn the serial port into a ppp interface.
394 int tty_establish_ppp (int tty_fd
)
399 * Ensure that the tty device is in exclusive mode.
401 if (ioctl(tty_fd
, TIOCEXCL
, 0) < 0) {
402 if ( ! ok_error ( errno
))
403 warn("Couldn't make tty exclusive: %m");
406 * Demand mode - prime the old ppp device to relinquish the unit.
408 if (!new_style_driver
&& looped
409 && ioctl(slave_fd
, PPPIOCXFERUNIT
, 0) < 0) {
410 error("ioctl(transfer ppp unit): %m, line %d", __LINE__
);
414 * Set the current tty to the PPP discpline
418 #define N_SYNC_PPP 14
420 ppp_disc
= (new_style_driver
&& sync_serial
)? N_SYNC_PPP
: N_PPP
;
421 if (ioctl(tty_fd
, TIOCSETD
, &ppp_disc
) < 0) {
422 if ( ! ok_error (errno
) ) {
423 error("Couldn't set tty to PPP discipline: %m");
428 ret_fd
= generic_establish_ppp(tty_fd
);
430 #define SC_RCVB (SC_RCV_B7_0 | SC_RCV_B7_1 | SC_RCV_EVNP | SC_RCV_ODDP)
431 #define SC_LOGB (SC_DEBUG | SC_LOG_INPKT | SC_LOG_OUTPKT | SC_LOG_RAWIN \
435 modify_flags(ppp_fd
, SC_RCVB
| SC_LOGB
,
436 (kdebugflag
* SC_DEBUG
) & SC_LOGB
);
438 if (ioctl(tty_fd
, TIOCSETD
, &tty_disc
) < 0 && !ok_error(errno
))
439 warn("Couldn't reset tty to normal line discipline: %m");
445 /********************************************************************
447 * generic_establish_ppp - Turn the fd into a ppp interface.
449 int generic_establish_ppp (int fd
)
453 if (new_style_driver
) {
456 /* Open an instance of /dev/ppp and connect the channel to it */
457 if (ioctl(fd
, PPPIOCGCHAN
, &chindex
) == -1) {
458 error("Couldn't get channel number: %m");
461 dbglog("using channel %d", chindex
);
462 fd
= open("/dev/ppp", O_RDWR
);
464 error("Couldn't reopen /dev/ppp: %m");
467 (void) fcntl(fd
, F_SETFD
, FD_CLOEXEC
);
468 if (ioctl(fd
, PPPIOCATTCHAN
, &chindex
) < 0) {
469 error("Couldn't attach to channel %d: %m", chindex
);
472 flags
= fcntl(fd
, F_GETFL
);
473 if (flags
== -1 || fcntl(fd
, F_SETFL
, flags
| O_NONBLOCK
) == -1)
474 warn("Couldn't set /dev/ppp (channel) to nonblock: %m");
479 if (!looped
&& !multilink
) {
481 * Create a new PPP unit.
483 if (make_ppp_unit() < 0)
488 modify_flags(ppp_dev_fd
, SC_LOOP_TRAFFIC
, 0);
492 if (ioctl(fd
, PPPIOCCONNECT
, &ifunit
) < 0) {
493 error("Couldn't attach to PPP unit %d: %m", ifunit
);
500 * Old-style driver: find out which interface we were given.
503 if (ioctl(fd
, PPPIOCGUNIT
, &x
) < 0) {
504 if (ok_error (errno
))
506 fatal("ioctl(PPPIOCGUNIT): %m (line %d)", __LINE__
);
508 /* Check that we got the same unit again. */
509 if (looped
&& x
!= ifunit
)
510 fatal("transfer_ppp failed: wanted unit %d, got %d", ifunit
, x
);
514 * Fetch the initial file flags and reset blocking mode on the file.
516 initfdflags
= fcntl(fd
, F_GETFL
);
517 if (initfdflags
== -1 ||
518 fcntl(fd
, F_SETFL
, initfdflags
| O_NONBLOCK
) == -1) {
519 if ( ! ok_error (errno
))
520 warn("Couldn't set device to non-blocking mode: %m");
525 * Enable debug in the driver if requested.
528 set_kdebugflag (kdebugflag
);
540 /********************************************************************
542 * tty_disestablish_ppp - Restore the serial port to normal operation.
543 * This shouldn't call die() because it's called from die().
546 void tty_disestablish_ppp(int tty_fd
)
550 * Flush the tty output buffer so that the TIOCSETD doesn't hang.
552 if (tcflush(tty_fd
, TCIOFLUSH
) < 0)
554 warn("tcflush failed: %m");
558 * Restore the previous line discipline
560 if (ioctl(tty_fd
, TIOCSETD
, &tty_disc
) < 0) {
561 if ( ! ok_error (errno
))
562 error("ioctl(TIOCSETD, N_TTY): %m (line %d)", __LINE__
);
565 if (ioctl(tty_fd
, TIOCNXCL
, 0) < 0) {
566 if ( ! ok_error (errno
))
567 warn("ioctl(TIOCNXCL): %m (line %d)", __LINE__
);
570 /* Reset non-blocking mode on fd. */
571 if (initfdflags
!= -1 && fcntl(tty_fd
, F_SETFL
, initfdflags
) < 0) {
572 if ( ! ok_error (errno
))
573 warn("Couldn't restore device fd flags: %m");
579 generic_disestablish_ppp(tty_fd
);
582 /********************************************************************
584 * generic_disestablish_ppp - Restore device components to normal
585 * operation, and reconnect the ppp unit to the loopback if in demand
586 * mode. This shouldn't call die() because it's called from die().
588 void generic_disestablish_ppp(int dev_fd
)
590 if (new_style_driver
) {
594 modify_flags(ppp_dev_fd
, 0, SC_LOOP_TRAFFIC
);
596 } else if (!doing_multilink
&& ppp_dev_fd
>= 0) {
598 remove_fd(ppp_dev_fd
);
602 /* old-style driver */
604 set_ppp_fd(slave_fd
);
611 * make_ppp_unit - make a new ppp unit for ppp_dev_fd.
612 * Assumes new_style_driver.
614 static int make_ppp_unit()
618 if (ppp_dev_fd
>= 0) {
619 dbglog("in make_ppp_unit, already had /dev/ppp open?");
622 ppp_dev_fd
= open("/dev/ppp", O_RDWR
);
624 fatal("Couldn't open /dev/ppp: %m");
625 flags
= fcntl(ppp_dev_fd
, F_GETFL
);
627 || fcntl(ppp_dev_fd
, F_SETFL
, flags
| O_NONBLOCK
) == -1)
628 warn("Couldn't set /dev/ppp to nonblock: %m");
631 x
= ioctl(ppp_dev_fd
, PPPIOCNEWUNIT
, &ifunit
);
632 if (x
< 0 && req_unit
>= 0 && errno
== EEXIST
) {
633 warn("Couldn't allocate PPP unit %d as it is already in use", req_unit
);
635 x
= ioctl(ppp_dev_fd
, PPPIOCNEWUNIT
, &ifunit
);
638 error("Couldn't create new ppp unit: %m");
643 * cfg_bundle - configure the existing bundle.
644 * Used in demand mode.
646 void cfg_bundle(int mrru
, int mtru
, int rssn
, int tssn
)
648 if (!new_style_driver
)
651 /* set the mrru, mtu and flags */
652 if (ioctl(ppp_dev_fd
, PPPIOCSMRRU
, &mrru
) < 0)
653 error("Couldn't set MRRU: %m");
655 modify_flags(ppp_dev_fd
, SC_MP_SHORTSEQ
|SC_MP_XSHORTSEQ
|SC_MULTILINK
,
656 ((rssn
? SC_MP_SHORTSEQ
: 0) | (tssn
? SC_MP_XSHORTSEQ
: 0)
657 | (mrru
? SC_MULTILINK
: 0)));
659 /* connect up the channel */
660 if (ioctl(ppp_fd
, PPPIOCCONNECT
, &ifunit
) < 0)
661 fatal("Couldn't attach to PPP unit %d: %m", ifunit
);
666 * make_new_bundle - create a new PPP unit (i.e. a bundle)
667 * and connect our channel to it. This should only get called
668 * if `multilink' was set at the time establish_ppp was called.
669 * In demand mode this uses our existing bundle instead of making
672 void make_new_bundle(int mrru
, int mtru
, int rssn
, int tssn
)
674 if (!new_style_driver
)
677 /* make us a ppp unit */
678 if (make_ppp_unit() < 0)
681 /* set the mrru and flags */
682 cfg_bundle(mrru
, mtru
, rssn
, tssn
);
686 * bundle_attach - attach our link to a given PPP unit.
687 * We assume the unit is controlled by another pppd.
689 int bundle_attach(int ifnum
)
693 if (!new_style_driver
)
696 master_fd
= open("/dev/ppp", O_RDWR
);
698 fatal("Couldn't open /dev/ppp: %m");
699 if (ioctl(master_fd
, PPPIOCATTACH
, &ifnum
) < 0) {
700 if (errno
== ENXIO
) {
702 return 0; /* doesn't still exist */
704 fatal("Couldn't attach to interface unit %d: %m\n", ifnum
);
706 if (ioctl(ppp_fd
, PPPIOCCONNECT
, &ifnum
) < 0)
707 fatal("Couldn't connect to interface unit %d: %m", ifnum
);
708 modify_flags(master_fd
, 0, SC_MULTILINK
);
716 * destroy_bundle - tell the driver to destroy our bundle.
718 void destroy_bundle(void)
720 if (ppp_dev_fd
>= 0) {
722 remove_fd(ppp_dev_fd
);
727 /********************************************************************
729 * clean_check - Fetch the flags for the device and generate
730 * appropriate error messages.
732 void clean_check(void)
738 if (ioctl(ppp_fd
, PPPIOCGFLAGS
, (caddr_t
) &x
) == 0) {
740 switch (~x
& (SC_RCV_B7_0
|SC_RCV_B7_1
|SC_RCV_EVNP
|SC_RCV_ODDP
)) {
742 s
= "all had bit 7 set to 1";
746 s
= "all had bit 7 set to 0";
750 s
= "all had odd parity";
754 s
= "all had even parity";
759 warn("Receive serial link is not 8-bit clean:");
760 warn("Problem: %s", s
);
768 * List of valid speeds.
772 int speed_int
, speed_val
;
855 /********************************************************************
857 * Translate from bits/second to a speed_t.
860 static int translate_speed (int bps
)
862 struct speed
*speedp
;
865 for (speedp
= speeds
; speedp
->speed_int
; speedp
++) {
866 if (bps
== speedp
->speed_int
)
867 return speedp
->speed_val
;
869 warn("speed %d not supported", bps
);
874 /********************************************************************
876 * Translate from a speed_t to bits/second.
879 static int baud_rate_of (int speed
)
881 struct speed
*speedp
;
884 for (speedp
= speeds
; speedp
->speed_int
; speedp
++) {
885 if (speed
== speedp
->speed_val
)
886 return speedp
->speed_int
;
892 /********************************************************************
894 * set_up_tty: Set up the serial port on `fd' for 8 bits, no parity,
895 * at the requested speed, etc. If `local' is true, set CLOCAL
896 * regardless of whether the modem option was specified.
899 void set_up_tty(int tty_fd
, int local
)
905 if (tcgetattr(tty_fd
, &tios
) < 0) {
906 if (!ok_error(errno
))
907 fatal("tcgetattr: %m (line %d)", __LINE__
);
914 tios
.c_cflag
&= ~(CSIZE
| CSTOPB
| PARENB
| CLOCAL
);
915 tios
.c_cflag
|= CS8
| CREAD
| HUPCL
;
917 tios
.c_iflag
= IGNBRK
| IGNPAR
;
921 tios
.c_cc
[VTIME
] = 0;
924 tios
.c_cflag
^= (CLOCAL
| HUPCL
);
928 tios
.c_cflag
|= CRTSCTS
;
932 tios
.c_iflag
|= IXON
| IXOFF
;
933 tios
.c_cc
[VSTOP
] = 0x13; /* DC3 = XOFF = ^S */
934 tios
.c_cc
[VSTART
] = 0x11; /* DC1 = XON = ^Q */
938 tios
.c_cflag
&= ~CRTSCTS
;
945 speed
= translate_speed(inspeed
);
947 cfsetospeed (&tios
, speed
);
948 cfsetispeed (&tios
, speed
);
951 * We can't proceed if the serial port speed is B0,
952 * since that implies that the serial port is disabled.
955 speed
= cfgetospeed(&tios
);
957 fatal("Baud rate for %s is 0; need explicit baud rate", devnam
);
960 while (tcsetattr(tty_fd
, TCSAFLUSH
, &tios
) < 0 && !ok_error(errno
))
962 fatal("tcsetattr: %m (line %d)", __LINE__
);
964 baud_rate
= baud_rate_of(speed
);
968 /********************************************************************
970 * setdtr - control the DTR line on the serial port.
971 * This is called from die(), so it shouldn't call die().
974 void setdtr (int tty_fd
, int on
)
976 int modembits
= TIOCM_DTR
;
978 ioctl(tty_fd
, (on
? TIOCMBIS
: TIOCMBIC
), &modembits
);
981 /********************************************************************
983 * restore_tty - restore the terminal to the saved settings.
986 void restore_tty (int tty_fd
)
991 * Turn off echoing, because otherwise we can get into
992 * a loop with the tty and the modem echoing to each other.
993 * We presume we are the sole user of this tty device, so
994 * when we close it, it will revert to its defaults anyway.
997 inittermios
.c_lflag
&= ~(ECHO
| ECHONL
);
999 if (tcsetattr(tty_fd
, TCSAFLUSH
, &inittermios
) < 0) {
1000 if (! ok_error (errno
))
1001 warn("tcsetattr: %m (line %d)", __LINE__
);
1006 /********************************************************************
1008 * output - Output PPP packet.
1011 void output (int unit
, unsigned char *p
, int len
)
1016 dump_packet("sent", p
, len
);
1017 if (snoop_send_hook
) snoop_send_hook(p
, len
);
1019 if (len
< PPP_HDRLEN
)
1021 if (new_style_driver
) {
1024 proto
= (p
[0] << 8) + p
[1];
1025 if (ppp_dev_fd
>= 0 && !(proto
>= 0xc000 || proto
== PPP_CCPFRAG
))
1028 if (write(fd
, p
, len
) < 0) {
1029 if (errno
== EWOULDBLOCK
|| errno
== EAGAIN
|| errno
== ENOBUFS
1030 || errno
== ENXIO
|| errno
== EIO
|| errno
== EINTR
)
1031 warn("write: warning: %m (%d)", errno
);
1033 error("write: %m (%d)", errno
);
1037 /********************************************************************
1039 * wait_input - wait until there is data available,
1040 * for the length of time specified by *timo (indefinite
1044 void wait_input(struct timeval
*timo
)
1051 n
= select(max_in_fd
+ 1, &ready
, NULL
, &exc
, timo
);
1052 if (n
< 0 && errno
!= EINTR
)
1053 fatal("select: %m");
1057 * add_fd - add an fd to the set that wait_input waits for.
1061 if (fd
>= FD_SETSIZE
)
1062 fatal("internal error: file descriptor too large (%d)", fd
);
1063 FD_SET(fd
, &in_fds
);
1069 * remove_fd - remove an fd from the set that wait_input waits for.
1071 void remove_fd(int fd
)
1073 FD_CLR(fd
, &in_fds
);
1077 /********************************************************************
1079 * read_packet - get a PPP packet from the serial device.
1082 int read_packet (unsigned char *buf
)
1086 len
= PPP_MRU
+ PPP_HDRLEN
;
1087 if (new_style_driver
) {
1088 *buf
++ = PPP_ALLSTATIONS
;
1094 nr
= read(ppp_fd
, buf
, len
);
1095 if (nr
< 0 && errno
!= EWOULDBLOCK
&& errno
!= EAGAIN
1096 && errno
!= EIO
&& errno
!= EINTR
)
1098 if (nr
< 0 && errno
== ENXIO
)
1101 if (nr
< 0 && new_style_driver
&& ppp_dev_fd
>= 0 && !bundle_eof
) {
1102 /* N.B. we read ppp_fd first since LCP packets come in there. */
1103 nr
= read(ppp_dev_fd
, buf
, len
);
1104 if (nr
< 0 && errno
!= EWOULDBLOCK
&& errno
!= EAGAIN
1105 && errno
!= EIO
&& errno
!= EINTR
)
1106 error("read /dev/ppp: %m");
1107 if (nr
< 0 && errno
== ENXIO
)
1109 if (nr
== 0 && doing_multilink
) {
1110 remove_fd(ppp_dev_fd
);
1114 if (new_style_driver
&& ppp_fd
< 0 && ppp_dev_fd
< 0)
1116 return (new_style_driver
&& nr
> 0)? nr
+2: nr
;
1119 /********************************************************************
1121 * get_loop_output - get outgoing packets from the ppp device,
1122 * and detect when we want to bring the real link up.
1123 * Return value is 1 if we need to bring up the link, 0 otherwise.
1126 get_loop_output(void)
1131 if (new_style_driver
) {
1132 while ((n
= read_packet(inpacket_buf
)) > 0)
1133 if (loop_frame(inpacket_buf
, n
))
1138 while ((n
= read(master_fd
, inbuf
, sizeof(inbuf
))) > 0)
1139 if (loop_chars(inbuf
, n
))
1143 fatal("eof on loopback");
1145 if (errno
!= EWOULDBLOCK
&& errno
!= EAGAIN
)
1146 fatal("read from loopback: %m(%d)", errno
);
1152 * netif_set_mtu - set the MTU on the PPP network interface.
1155 netif_set_mtu(int unit
, int mtu
)
1159 memset (&ifr
, '\0', sizeof (ifr
));
1160 strlcpy(ifr
.ifr_name
, ifname
, sizeof (ifr
.ifr_name
));
1163 if (ifunit
>= 0 && ioctl(sock_fd
, SIOCSIFMTU
, (caddr_t
) &ifr
) < 0)
1164 error("ioctl(SIOCSIFMTU): %m (line %d)", __LINE__
);
1168 * netif_get_mtu - get the MTU on the PPP network interface.
1171 netif_get_mtu(int unit
)
1175 memset (&ifr
, '\0', sizeof (ifr
));
1176 strlcpy(ifr
.ifr_name
, ifname
, sizeof (ifr
.ifr_name
));
1178 if (ifunit
>= 0 && ioctl(sock_fd
, SIOCGIFMTU
, (caddr_t
) &ifr
) < 0) {
1179 error("ioctl(SIOCGIFMTU): %m (line %d)", __LINE__
);
1185 /********************************************************************
1187 * tty_send_config - configure the transmit characteristics of
1188 * the ppp interface.
1191 void tty_send_config(int mtu
, u_int32_t asyncmap
, int pcomp
, int accomp
)
1198 if (ioctl(ppp_fd
, PPPIOCSASYNCMAP
, (caddr_t
) &asyncmap
) < 0) {
1199 if (errno
!= EIO
&& errno
!= ENOTTY
)
1200 error("Couldn't set transmit async character map: %m");
1205 x
= (pcomp
? SC_COMP_PROT
: 0) | (accomp
? SC_COMP_AC
: 0)
1206 | (sync_serial
? SC_SYNC
: 0);
1207 modify_flags(ppp_fd
, SC_COMP_PROT
|SC_COMP_AC
|SC_SYNC
, x
);
1210 /********************************************************************
1212 * tty_set_xaccm - set the extended transmit ACCM for the interface.
1215 void tty_set_xaccm (ext_accm accm
)
1219 if (ioctl(ppp_fd
, PPPIOCSXASYNCMAP
, accm
) < 0 && errno
!= ENOTTY
) {
1220 if ( ! ok_error (errno
))
1221 warn("ioctl(set extended ACCM): %m (line %d)", __LINE__
);
1225 /********************************************************************
1227 * tty_recv_config - configure the receive-side characteristics of
1228 * the ppp interface.
1231 void tty_recv_config(int mru
, u_int32_t asyncmap
, int pcomp
, int accomp
)
1234 * If we were called because the link has gone down then there is nothing
1235 * which may be done. Just return without incident.
1240 * Set the receiver parameters
1242 if (ioctl(ppp_fd
, PPPIOCSMRU
, (caddr_t
) &mru
) < 0) {
1243 if (errno
!= EIO
&& errno
!= ENOTTY
)
1244 error("Couldn't set channel receive MRU: %m");
1246 if (new_style_driver
&& ppp_dev_fd
>= 0
1247 && ioctl(ppp_dev_fd
, PPPIOCSMRU
, (caddr_t
) &mru
) < 0)
1248 error("Couldn't set MRU in generic PPP layer: %m");
1250 if (ioctl(ppp_fd
, PPPIOCSRASYNCMAP
, (caddr_t
) &asyncmap
) < 0) {
1251 if (errno
!= EIO
&& errno
!= ENOTTY
)
1252 error("Couldn't set channel receive asyncmap: %m");
1256 /********************************************************************
1258 * ccp_test - ask kernel whether a given compression method
1259 * is acceptable for use.
1263 ccp_test(int unit
, u_char
*opt_ptr
, int opt_len
, int for_transmit
)
1265 struct ppp_option_data data
;
1267 memset (&data
, '\0', sizeof (data
));
1269 data
.length
= opt_len
;
1270 data
.transmit
= for_transmit
;
1272 if (ioctl(ppp_dev_fd
, PPPIOCSCOMPRESS
, (caddr_t
) &data
) >= 0)
1275 return (errno
== ENOBUFS
)? 0: -1;
1278 /********************************************************************
1280 * ccp_flags_set - inform kernel about the current state of CCP.
1283 void ccp_flags_set (int unit
, int isopen
, int isup
)
1287 x
= (isopen
? SC_CCP_OPEN
: 0) | (isup
? SC_CCP_UP
: 0);
1288 if (still_ppp() && ppp_dev_fd
>= 0)
1289 modify_flags(ppp_dev_fd
, SC_CCP_OPEN
|SC_CCP_UP
, x
);
1294 * set_filters - set the active and pass filters in the kernel driver.
1296 int set_filters(struct bpf_program
*pass
, struct bpf_program
*active
)
1298 struct sock_fprog fp
;
1300 fp
.len
= pass
->bf_len
;
1301 fp
.filter
= (struct sock_filter
*) pass
->bf_insns
;
1302 if (ioctl(ppp_dev_fd
, PPPIOCSPASS
, &fp
) < 0) {
1303 if (errno
== ENOTTY
)
1304 warn("kernel does not support PPP filtering");
1306 error("Couldn't set pass-filter in kernel: %m");
1309 fp
.len
= active
->bf_len
;
1310 fp
.filter
= (struct sock_filter
*) active
->bf_insns
;
1311 if (ioctl(ppp_dev_fd
, PPPIOCSACTIVE
, &fp
) < 0) {
1312 error("Couldn't set active-filter in kernel: %m");
1317 #endif /* PPP_FILTER */
1319 /********************************************************************
1321 * get_idle_time - return how long the link has been idle.
1324 get_idle_time(u
, ip
)
1326 struct ppp_idle
*ip
;
1328 return ioctl(ppp_dev_fd
, PPPIOCGIDLE
, ip
) >= 0;
1331 /********************************************************************
1333 * get_ppp_stats - return statistics for the link.
1336 get_ppp_stats(u
, stats
)
1338 struct pppd_stats
*stats
;
1340 struct ifpppstatsreq req
;
1342 memset (&req
, 0, sizeof (req
));
1344 req
.stats_ptr
= (caddr_t
) &req
.stats
;
1345 strlcpy(req
.ifr__name
, ifname
, sizeof(req
.ifr__name
));
1346 if (ioctl(sock_fd
, SIOCGPPPSTATS
, &req
) < 0) {
1347 error("Couldn't get PPP statistics: %m");
1350 stats
->bytes_in
= req
.stats
.p
.ppp_ibytes
;
1351 stats
->bytes_out
= req
.stats
.p
.ppp_obytes
;
1352 stats
->pkts_in
= req
.stats
.p
.ppp_ipackets
;
1353 stats
->pkts_out
= req
.stats
.p
.ppp_opackets
;
1357 /********************************************************************
1359 * ccp_fatal_error - returns 1 if decompression was disabled as a
1360 * result of an error detected after decompression of a packet,
1361 * 0 otherwise. This is necessary because of patent nonsense.
1364 int ccp_fatal_error (int unit
)
1368 if (ioctl(ppp_dev_fd
, PPPIOCGFLAGS
, &flags
) < 0) {
1369 error("Couldn't read compression error flags: %m");
1372 return flags
& SC_DC_FERROR
;
1375 /********************************************************************
1377 * path_to_procfs - find the path to the proc file system mount point
1379 static char proc_path
[MAXPATHLEN
];
1380 static int proc_path_len
;
1382 static char *path_to_procfs(const char *tail
)
1384 struct mntent
*mntent
;
1387 if (proc_path_len
== 0) {
1388 /* Default the mount location of /proc */
1389 strlcpy (proc_path
, "/proc", sizeof(proc_path
));
1391 fp
= fopen(MOUNTED
, "r");
1393 while ((mntent
= getmntent(fp
)) != NULL
) {
1394 if (strcmp(mntent
->mnt_type
, MNTTYPE_IGNORE
) == 0)
1396 if (strcmp(mntent
->mnt_type
, "proc") == 0) {
1397 strlcpy(proc_path
, mntent
->mnt_dir
, sizeof(proc_path
));
1398 proc_path_len
= strlen(proc_path
);
1406 strlcpy(proc_path
+ proc_path_len
, tail
,
1407 sizeof(proc_path
) - proc_path_len
);
1412 * /proc/net/route parsing stuff.
1414 #define ROUTE_MAX_COLS 12
1415 FILE *route_fd
= (FILE *) 0;
1416 static char route_buffer
[512];
1417 static int route_dev_col
, route_dest_col
, route_gw_col
;
1418 static int route_flags_col
, route_mask_col
;
1419 static int route_num_cols
;
1421 static int open_route_table (void);
1422 static void close_route_table (void);
1423 static int read_route_table (struct rtentry
*rt
);
1425 /********************************************************************
1427 * close_route_table - close the interface to the route table
1430 static void close_route_table (void)
1432 if (route_fd
!= (FILE *) 0) {
1434 route_fd
= (FILE *) 0;
1438 /********************************************************************
1440 * open_route_table - open the interface to the route table
1442 static char route_delims
[] = " \t\n";
1444 static int open_route_table (void)
1448 close_route_table();
1450 path
= path_to_procfs("/net/route");
1451 route_fd
= fopen (path
, "r");
1452 if (route_fd
== NULL
) {
1453 error("can't open routing table %s: %m", path
);
1457 route_dev_col
= 0; /* default to usual columns */
1460 route_flags_col
= 3;
1464 /* parse header line */
1465 if (fgets(route_buffer
, sizeof(route_buffer
), route_fd
) != 0) {
1466 char *p
= route_buffer
, *q
;
1468 for (col
= 0; col
< ROUTE_MAX_COLS
; ++col
) {
1470 if ((q
= strtok(p
, route_delims
)) == 0)
1472 if (strcasecmp(q
, "iface") == 0)
1473 route_dev_col
= col
;
1474 else if (strcasecmp(q
, "destination") == 0)
1475 route_dest_col
= col
;
1476 else if (strcasecmp(q
, "gateway") == 0)
1478 else if (strcasecmp(q
, "flags") == 0)
1479 route_flags_col
= col
;
1480 else if (strcasecmp(q
, "mask") == 0)
1481 route_mask_col
= col
;
1484 if (used
&& col
>= route_num_cols
)
1485 route_num_cols
= col
+ 1;
1493 /********************************************************************
1495 * read_route_table - read the next entry from the route table
1498 static int read_route_table(struct rtentry
*rt
)
1500 char *cols
[ROUTE_MAX_COLS
], *p
;
1503 memset (rt
, '\0', sizeof (struct rtentry
));
1505 if (fgets (route_buffer
, sizeof (route_buffer
), route_fd
) == (char *) 0)
1509 for (col
= 0; col
< route_num_cols
; ++col
) {
1510 cols
[col
] = strtok(p
, route_delims
);
1511 if (cols
[col
] == NULL
)
1512 return 0; /* didn't get enough columns */
1516 SIN_ADDR(rt
->rt_dst
) = strtoul(cols
[route_dest_col
], NULL
, 16);
1517 SIN_ADDR(rt
->rt_gateway
) = strtoul(cols
[route_gw_col
], NULL
, 16);
1518 SIN_ADDR(rt
->rt_genmask
) = strtoul(cols
[route_mask_col
], NULL
, 16);
1520 rt
->rt_flags
= (short) strtoul(cols
[route_flags_col
], NULL
, 16);
1521 rt
->rt_dev
= cols
[route_dev_col
];
1526 /********************************************************************
1528 * defaultroute_exists - determine if there is a default route
1531 static int defaultroute_exists (struct rtentry
*rt
)
1535 if (!open_route_table())
1538 while (read_route_table(rt
) != 0) {
1539 if ((rt
->rt_flags
& RTF_UP
) == 0)
1542 if (kernel_version
> KVERSION(2,1,0) && SIN_ADDR(rt
->rt_genmask
) != 0)
1544 if (SIN_ADDR(rt
->rt_dst
) == 0L) {
1550 close_route_table();
1555 * have_route_to - determine if the system has any route to
1556 * a given IP address. `addr' is in network byte order.
1557 * Return value is 1 if yes, 0 if no, -1 if don't know.
1558 * For demand mode to work properly, we have to ignore routes
1559 * through our own interface.
1561 int have_route_to(u_int32_t addr
)
1566 if (!open_route_table())
1567 return -1; /* don't know */
1569 while (read_route_table(&rt
)) {
1570 if ((rt
.rt_flags
& RTF_UP
) == 0 || strcmp(rt
.rt_dev
, ifname
) == 0)
1572 if ((addr
& SIN_ADDR(rt
.rt_genmask
)) == SIN_ADDR(rt
.rt_dst
)) {
1578 close_route_table();
1582 /********************************************************************
1584 * sifdefaultroute - assign a default route through the address given.
1587 int sifdefaultroute (int unit
, u_int32_t ouraddr
, u_int32_t gateway
)
1591 if (defaultroute_exists(&rt
) && strcmp(rt
.rt_dev
, ifname
) != 0) {
1592 if (rt
.rt_flags
& RTF_GATEWAY
)
1593 error("not replacing existing default route via %I",
1594 SIN_ADDR(rt
.rt_gateway
));
1596 error("not replacing existing default route through %s",
1601 memset (&rt
, 0, sizeof (rt
));
1602 SET_SA_FAMILY (rt
.rt_dst
, AF_INET
);
1606 if (kernel_version
> KVERSION(2,1,0)) {
1607 SET_SA_FAMILY (rt
.rt_genmask
, AF_INET
);
1608 SIN_ADDR(rt
.rt_genmask
) = 0L;
1611 rt
.rt_flags
= RTF_UP
;
1612 if (ioctl(sock_fd
, SIOCADDRT
, &rt
) < 0) {
1613 if ( ! ok_error ( errno
))
1614 error("default route ioctl(SIOCADDRT): %m");
1618 have_default_route
= 1;
1622 /********************************************************************
1624 * cifdefaultroute - delete a default route through the address given.
1627 int cifdefaultroute (int unit
, u_int32_t ouraddr
, u_int32_t gateway
)
1631 have_default_route
= 0;
1633 memset (&rt
, '\0', sizeof (rt
));
1634 SET_SA_FAMILY (rt
.rt_dst
, AF_INET
);
1635 SET_SA_FAMILY (rt
.rt_gateway
, AF_INET
);
1637 if (kernel_version
> KVERSION(2,1,0)) {
1638 SET_SA_FAMILY (rt
.rt_genmask
, AF_INET
);
1639 SIN_ADDR(rt
.rt_genmask
) = 0L;
1642 rt
.rt_flags
= RTF_UP
;
1643 if (ioctl(sock_fd
, SIOCDELRT
, &rt
) < 0 && errno
!= ESRCH
) {
1645 if ( ! ok_error ( errno
))
1646 error("default route ioctl(SIOCDELRT): %m");
1654 /********************************************************************
1656 * sifproxyarp - Make a proxy ARP entry for the peer.
1659 int sifproxyarp (int unit
, u_int32_t his_adr
)
1661 struct arpreq arpreq
;
1664 if (has_proxy_arp
== 0) {
1665 memset (&arpreq
, '\0', sizeof(arpreq
));
1667 SET_SA_FAMILY(arpreq
.arp_pa
, AF_INET
);
1668 SIN_ADDR(arpreq
.arp_pa
) = his_adr
;
1669 arpreq
.arp_flags
= ATF_PERM
| ATF_PUBL
;
1671 * Get the hardware address of an interface on the same subnet
1672 * as our local address.
1674 if (!get_ether_addr(his_adr
, &arpreq
.arp_ha
, proxy_arp_dev
,
1675 sizeof(proxy_arp_dev
))) {
1676 error("Cannot determine ethernet address for proxy ARP");
1679 strlcpy(arpreq
.arp_dev
, proxy_arp_dev
, sizeof(arpreq
.arp_dev
));
1681 if (ioctl(sock_fd
, SIOCSARP
, (caddr_t
)&arpreq
) < 0) {
1682 if ( ! ok_error ( errno
))
1683 error("ioctl(SIOCSARP): %m");
1686 proxy_arp_addr
= his_adr
;
1690 forw_path
= path_to_procfs("/sys/net/ipv4/ip_forward");
1691 if (forw_path
!= 0) {
1692 int fd
= open(forw_path
, O_WRONLY
);
1694 if (write(fd
, "1", 1) != 1)
1695 error("Couldn't enable IP forwarding: %m");
1705 /********************************************************************
1707 * cifproxyarp - Delete the proxy ARP entry for the peer.
1710 int cifproxyarp (int unit
, u_int32_t his_adr
)
1712 struct arpreq arpreq
;
1714 if (has_proxy_arp
) {
1716 memset (&arpreq
, '\0', sizeof(arpreq
));
1717 SET_SA_FAMILY(arpreq
.arp_pa
, AF_INET
);
1718 SIN_ADDR(arpreq
.arp_pa
) = his_adr
;
1719 arpreq
.arp_flags
= ATF_PERM
| ATF_PUBL
;
1720 strlcpy(arpreq
.arp_dev
, proxy_arp_dev
, sizeof(arpreq
.arp_dev
));
1722 if (ioctl(sock_fd
, SIOCDARP
, (caddr_t
)&arpreq
) < 0) {
1723 if ( ! ok_error ( errno
))
1724 warn("ioctl(SIOCDARP): %m");
1731 /********************************************************************
1733 * get_ether_addr - get the hardware address of an interface on the
1734 * the same subnet as ipaddr.
1737 static int get_ether_addr (u_int32_t ipaddr
,
1738 struct sockaddr
*hwaddr
,
1739 char *name
, int namelen
)
1741 struct ifreq
*ifr
, *ifend
;
1742 u_int32_t ina
, mask
;
1744 struct ifreq ifreq
, bestifreq
;
1746 struct ifreq ifs
[MAX_IFS
];
1748 u_int32_t bestmask
=0;
1749 int found_interface
= 0;
1751 ifc
.ifc_len
= sizeof(ifs
);
1753 if (ioctl(sock_fd
, SIOCGIFCONF
, &ifc
) < 0) {
1754 if ( ! ok_error ( errno
))
1755 error("ioctl(SIOCGIFCONF): %m (line %d)", __LINE__
);
1760 * Scan through looking for an interface with an Internet
1761 * address on the same subnet as `ipaddr'.
1763 ifend
= ifs
+ (ifc
.ifc_len
/ sizeof(struct ifreq
));
1764 for (ifr
= ifc
.ifc_req
; ifr
< ifend
; ifr
++) {
1765 if (ifr
->ifr_addr
.sa_family
== AF_INET
) {
1766 ina
= SIN_ADDR(ifr
->ifr_addr
);
1767 strlcpy(ifreq
.ifr_name
, ifr
->ifr_name
, sizeof(ifreq
.ifr_name
));
1769 * Check that the interface is up, and not point-to-point
1772 if (ioctl(sock_fd
, SIOCGIFFLAGS
, &ifreq
) < 0)
1775 if (((ifreq
.ifr_flags
^ FLAGS_GOOD
) & FLAGS_MASK
) != 0)
1778 * Get its netmask and check that it's on the right subnet.
1780 if (ioctl(sock_fd
, SIOCGIFNETMASK
, &ifreq
) < 0)
1783 mask
= SIN_ADDR(ifreq
.ifr_addr
);
1785 if (((ipaddr
^ ina
) & mask
) != 0)
1786 continue; /* no match */
1788 if (mask
>= bestmask
) {
1789 /* Compare using >= instead of > -- it is possible for
1790 an interface to have a netmask of 0.0.0.0 */
1791 found_interface
= 1;
1798 if (!found_interface
) return 0;
1800 strlcpy(name
, bestifreq
.ifr_name
, namelen
);
1802 /* trim off the :1 in eth0:1 */
1803 aliasp
= strchr(name
, ':');
1807 info("found interface %s for proxy arp", name
);
1809 * Now get the hardware address.
1811 memset (&bestifreq
.ifr_hwaddr
, 0, sizeof (struct sockaddr
));
1812 if (ioctl (sock_fd
, SIOCGIFHWADDR
, &bestifreq
) < 0) {
1813 error("SIOCGIFHWADDR(%s): %m", bestifreq
.ifr_name
);
1818 &bestifreq
.ifr_hwaddr
,
1819 sizeof (struct sockaddr
));
1825 * get_if_hwaddr - get the hardware address for the specified
1826 * network interface device.
1829 get_if_hwaddr(u_char
*addr
, char *name
)
1834 sock_fd
= socket(AF_INET
, SOCK_DGRAM
, 0);
1837 memset(&ifreq
.ifr_hwaddr
, 0, sizeof(struct sockaddr
));
1838 strlcpy(ifreq
.ifr_name
, name
, sizeof(ifreq
.ifr_name
));
1839 ret
= ioctl(sock_fd
, SIOCGIFHWADDR
, &ifreq
);
1842 memcpy(addr
, ifreq
.ifr_hwaddr
.sa_data
, 6);
1847 * get_first_ethernet - return the name of the first ethernet-style
1848 * interface on this system.
1851 get_first_ethernet()
1856 /********************************************************************
1858 * Return user specified netmask, modified by any mask we might determine
1859 * for address `addr' (in network byte order).
1860 * Here we scan through the system's list of interfaces, looking for
1861 * any non-point-to-point interfaces which might appear to be on the same
1862 * network as `addr'. If we find any, we OR in their netmask to the
1863 * user-specified netmask.
1866 u_int32_t
GetMask (u_int32_t addr
)
1868 u_int32_t mask
, nmask
, ina
;
1869 struct ifreq
*ifr
, *ifend
, ifreq
;
1871 struct ifreq ifs
[MAX_IFS
];
1875 if (IN_CLASSA(addr
)) /* determine network mask for address class */
1876 nmask
= IN_CLASSA_NET
;
1877 else if (IN_CLASSB(addr
))
1878 nmask
= IN_CLASSB_NET
;
1880 nmask
= IN_CLASSC_NET
;
1882 /* class D nets are disallowed by bad_ip_adrs */
1883 mask
= netmask
| htonl(nmask
);
1885 * Scan through the system's network interfaces.
1887 ifc
.ifc_len
= sizeof(ifs
);
1889 if (ioctl(sock_fd
, SIOCGIFCONF
, &ifc
) < 0) {
1890 if ( ! ok_error ( errno
))
1891 warn("ioctl(SIOCGIFCONF): %m (line %d)", __LINE__
);
1895 ifend
= (struct ifreq
*) (ifc
.ifc_buf
+ ifc
.ifc_len
);
1896 for (ifr
= ifc
.ifc_req
; ifr
< ifend
; ifr
++) {
1898 * Check the interface's internet address.
1900 if (ifr
->ifr_addr
.sa_family
!= AF_INET
)
1902 ina
= SIN_ADDR(ifr
->ifr_addr
);
1903 if (((ntohl(ina
) ^ addr
) & nmask
) != 0)
1906 * Check that the interface is up, and not point-to-point nor loopback.
1908 strlcpy(ifreq
.ifr_name
, ifr
->ifr_name
, sizeof(ifreq
.ifr_name
));
1909 if (ioctl(sock_fd
, SIOCGIFFLAGS
, &ifreq
) < 0)
1912 if (((ifreq
.ifr_flags
^ FLAGS_GOOD
) & FLAGS_MASK
) != 0)
1915 * Get its netmask and OR it into our mask.
1917 if (ioctl(sock_fd
, SIOCGIFNETMASK
, &ifreq
) < 0)
1919 mask
|= SIN_ADDR(ifreq
.ifr_addr
);
1925 /********************************************************************
1927 * Internal routine to decode the version.modification.patch level
1930 static void decode_version (char *buf
, int *version
,
1931 int *modification
, int *patch
)
1935 *version
= (int) strtoul (buf
, &endp
, 10);
1939 if (endp
!= buf
&& *endp
== '.') {
1941 *modification
= (int) strtoul (buf
, &endp
, 10);
1942 if (endp
!= buf
&& *endp
== '.') {
1944 *patch
= (int) strtoul (buf
, &buf
, 10);
1949 /********************************************************************
1951 * Procedure to determine if the PPP line discipline is registered.
1955 ppp_registered(void)
1963 * We used to open the serial device and set it to the ppp line
1964 * discipline here, in order to create a ppp unit. But that is
1965 * not a good idea - the user might have specified a device that
1966 * they can't open (permission, or maybe it doesn't really exist).
1967 * So we grab a pty master/slave pair and use that.
1969 if (!get_pty(&mfd
, &local_fd
, slave
, 0)) {
1970 no_ppp_msg
= "Couldn't determine if PPP is supported (no free ptys)";
1975 * Try to put the device into the PPP discipline.
1977 if (ioctl(local_fd
, TIOCSETD
, &ppp_disc
) < 0) {
1978 error("ioctl(TIOCSETD(PPP)): %m (line %d)", __LINE__
);
1987 /********************************************************************
1989 * ppp_available - check whether the system has any ppp interfaces
1990 * (in fact we check whether we can do an ioctl on ppp0).
1993 int ppp_available(void)
1998 int my_version
, my_modification
, my_patch
;
1999 int osmaj
, osmin
, ospatch
;
2002 "This system lacks kernel support for PPP. This could be because\n"
2003 "the PPP kernel module could not be loaded, or because PPP was not\n"
2004 "included in the kernel configuration. If PPP was included as a\n"
2005 "module, try `/sbin/modprobe -v ppp'. If that fails, check that\n"
2006 "ppp.o exists in /lib/modules/`uname -r`/net.\n"
2007 "See README.linux file in the ppp distribution for more details.\n";
2009 /* get the kernel version now, since we are called before sys_init */
2011 osmaj
= osmin
= ospatch
= 0;
2012 sscanf(utsname
.release
, "%d.%d.%d", &osmaj
, &osmin
, &ospatch
);
2013 kernel_version
= KVERSION(osmaj
, osmin
, ospatch
);
2015 fd
= open("/dev/ppp", O_RDWR
);
2017 if (fd
< 0 && errno
== ENOENT
) {
2018 /* try making it and see if that helps. */
2019 if (mknod("/dev/ppp", S_IFCHR
| S_IRUSR
| S_IWUSR
,
2020 makedev(108, 0)) >= 0) {
2021 fd
= open("/dev/ppp", O_RDWR
);
2023 info("Created /dev/ppp device node");
2025 unlink("/dev/ppp"); /* didn't work, undo the mknod */
2026 } else if (errno
== EEXIST
) {
2027 fd
= open("/dev/ppp", O_RDWR
);
2032 new_style_driver
= 1;
2034 /* XXX should get from driver */
2036 driver_modification
= 4;
2041 if (kernel_version
>= KVERSION(2,3,13)) {
2042 if (errno
== ENOENT
)
2044 "pppd is unable to open the /dev/ppp device.\n"
2045 "You need to create the /dev/ppp device node by\n"
2046 "executing the following command as root:\n"
2047 " mknod /dev/ppp c 108 0\n";
2052 * Open a socket for doing the ioctl operations.
2054 s
= socket(AF_INET
, SOCK_DGRAM
, 0);
2058 strlcpy (ifr
.ifr_name
, "ppp0", sizeof (ifr
.ifr_name
));
2059 ok
= ioctl(s
, SIOCGIFFLAGS
, (caddr_t
) &ifr
) >= 0;
2061 * If the device did not exist then attempt to create one by putting the
2062 * current tty into the PPP discipline. If this works then obtain the
2063 * flags for the device again.
2066 if (ppp_registered()) {
2067 strlcpy (ifr
.ifr_name
, "ppp0", sizeof (ifr
.ifr_name
));
2068 ok
= ioctl(s
, SIOCGIFFLAGS
, (caddr_t
) &ifr
) >= 0;
2072 * Ensure that the hardware address is for PPP and not something else
2075 ok
= ioctl (s
, SIOCGIFHWADDR
, (caddr_t
) &ifr
) >= 0;
2077 if (ok
&& ((ifr
.ifr_hwaddr
.sa_family
& ~0xFF) != ARPHRD_PPP
))
2081 * This is the PPP device. Validate the version of the driver at this
2082 * point to ensure that this program will work with the driver.
2085 char abBuffer
[1024];
2087 ifr
.ifr_data
= abBuffer
;
2088 size
= ioctl (s
, SIOCGPPPVER
, (caddr_t
) &ifr
);
2090 error("Couldn't read driver version: %m");
2092 no_ppp_msg
= "Sorry, couldn't verify kernel driver version\n";
2095 decode_version(abBuffer
,
2097 &driver_modification
,
2100 * Validate the version of the driver against the version that we used.
2102 decode_version(VERSION
,
2107 /* The version numbers must match */
2108 if (driver_version
!= my_version
)
2111 /* The modification levels must be legal */
2112 if (driver_modification
< 3) {
2113 if (driver_modification
>= 2) {
2114 /* we can cope with 2.2.0 and above */
2123 slprintf(route_buffer
, sizeof(route_buffer
),
2124 "Sorry - PPP driver version %d.%d.%d is out of date\n",
2125 driver_version
, driver_modification
, driver_patch
);
2127 no_ppp_msg
= route_buffer
;
2134 /********************************************************************
2136 * Update the wtmp file with the appropriate user name and tty device.
2139 void logwtmp (const char *line
, const char *name
, const char *host
)
2141 struct utmp ut
, *utp
;
2142 pid_t mypid
= getpid();
2148 * Update the signon database for users.
2149 * Christoph Lameter: Copied from poeigl-1.36 Jan 3, 1996
2151 utmpname(_PATH_UTMP
);
2153 while ((utp
= getutent()) && (utp
->ut_pid
!= mypid
))
2157 memcpy(&ut
, utp
, sizeof(ut
));
2159 /* some gettys/telnetds don't initialize utmp... */
2160 memset(&ut
, 0, sizeof(ut
));
2162 if (ut
.ut_id
[0] == 0)
2163 strncpy(ut
.ut_id
, line
+ 3, sizeof(ut
.ut_id
));
2165 strncpy(ut
.ut_user
, name
, sizeof(ut
.ut_user
));
2166 strncpy(ut
.ut_line
, line
, sizeof(ut
.ut_line
));
2170 ut
.ut_type
= USER_PROCESS
;
2173 /* Insert the host name if one is supplied */
2175 strncpy (ut
.ut_host
, host
, sizeof(ut
.ut_host
));
2177 /* Insert the IP address of the remote system if IP is enabled */
2178 if (ipcp_protent
.enabled_flag
&& ipcp_hisoptions
[0].neg_addr
)
2179 memcpy(&ut
.ut_addr
, (char *) &ipcp_hisoptions
[0].hisaddr
,
2180 sizeof(ut
.ut_addr
));
2182 /* CL: Makes sure that the logout works */
2183 if (*host
== 0 && *name
==0)
2189 * Update the wtmp file.
2192 updwtmp(_PATH_WTMP
, &ut
);
2194 wtmp
= open(_PATH_WTMP
, O_APPEND
|O_WRONLY
);
2196 flock(wtmp
, LOCK_EX
);
2198 if (write (wtmp
, (char *)&ut
, sizeof(ut
)) != sizeof(ut
))
2199 warn("error writing %s: %m", _PATH_WTMP
);
2201 flock(wtmp
, LOCK_UN
);
2209 /********************************************************************
2211 * sifvjcomp - config tcp header compression
2214 int sifvjcomp (int u
, int vjcomp
, int cidcomp
, int maxcid
)
2219 if (ioctl(ppp_dev_fd
, PPPIOCSMAXCID
, (caddr_t
) &maxcid
) < 0)
2220 error("Couldn't set up TCP header compression: %m");
2224 x
= (vjcomp
? SC_COMP_TCP
: 0) | (cidcomp
? 0: SC_NO_TCP_CCID
);
2225 modify_flags(ppp_dev_fd
, SC_COMP_TCP
|SC_NO_TCP_CCID
, x
);
2230 /********************************************************************
2232 * sifup - Config the interface up and enable IP packets to pass.
2239 memset (&ifr
, '\0', sizeof (ifr
));
2240 strlcpy(ifr
.ifr_name
, ifname
, sizeof (ifr
.ifr_name
));
2241 if (ioctl(sock_fd
, SIOCGIFFLAGS
, (caddr_t
) &ifr
) < 0) {
2242 if (! ok_error (errno
))
2243 error("ioctl (SIOCGIFFLAGS): %m (line %d)", __LINE__
);
2247 ifr
.ifr_flags
|= (IFF_UP
| IFF_POINTOPOINT
);
2248 if (ioctl(sock_fd
, SIOCSIFFLAGS
, (caddr_t
) &ifr
) < 0) {
2249 if (! ok_error (errno
))
2250 error("ioctl(SIOCSIFFLAGS): %m (line %d)", __LINE__
);
2258 /********************************************************************
2260 * sifdown - Disable the indicated protocol and config the interface
2261 * down if there are no remaining protocols.
2268 if (if_is_up
&& --if_is_up
> 0)
2271 memset (&ifr
, '\0', sizeof (ifr
));
2272 strlcpy(ifr
.ifr_name
, ifname
, sizeof (ifr
.ifr_name
));
2273 if (ioctl(sock_fd
, SIOCGIFFLAGS
, (caddr_t
) &ifr
) < 0) {
2274 if (! ok_error (errno
))
2275 error("ioctl (SIOCGIFFLAGS): %m (line %d)", __LINE__
);
2279 ifr
.ifr_flags
&= ~IFF_UP
;
2280 ifr
.ifr_flags
|= IFF_POINTOPOINT
;
2281 if (ioctl(sock_fd
, SIOCSIFFLAGS
, (caddr_t
) &ifr
) < 0) {
2282 if (! ok_error (errno
))
2283 error("ioctl(SIOCSIFFLAGS): %m (line %d)", __LINE__
);
2289 /********************************************************************
2291 * sifaddr - Config the interface IP addresses and netmask.
2294 int sifaddr (int unit
, u_int32_t our_adr
, u_int32_t his_adr
,
2300 memset (&ifr
, '\0', sizeof (ifr
));
2301 memset (&rt
, '\0', sizeof (rt
));
2303 SET_SA_FAMILY (ifr
.ifr_addr
, AF_INET
);
2304 SET_SA_FAMILY (ifr
.ifr_dstaddr
, AF_INET
);
2305 SET_SA_FAMILY (ifr
.ifr_netmask
, AF_INET
);
2307 strlcpy (ifr
.ifr_name
, ifname
, sizeof (ifr
.ifr_name
));
2309 * Set our IP address
2311 SIN_ADDR(ifr
.ifr_addr
) = our_adr
;
2312 if (ioctl(sock_fd
, SIOCSIFADDR
, (caddr_t
) &ifr
) < 0) {
2313 if (errno
!= EEXIST
) {
2314 if (! ok_error (errno
))
2315 error("ioctl(SIOCSIFADDR): %m (line %d)", __LINE__
);
2318 warn("ioctl(SIOCSIFADDR): Address already exists");
2323 * Set the gateway address
2325 SIN_ADDR(ifr
.ifr_dstaddr
) = his_adr
;
2326 if (ioctl(sock_fd
, SIOCSIFDSTADDR
, (caddr_t
) &ifr
) < 0) {
2327 if (! ok_error (errno
))
2328 error("ioctl(SIOCSIFDSTADDR): %m (line %d)", __LINE__
);
2333 * For recent kernels, force the netmask to 255.255.255.255.
2335 if (kernel_version
>= KVERSION(2,1,16))
2337 if (net_mask
!= 0) {
2338 SIN_ADDR(ifr
.ifr_netmask
) = net_mask
;
2339 if (ioctl(sock_fd
, SIOCSIFNETMASK
, (caddr_t
) &ifr
) < 0) {
2340 if (! ok_error (errno
))
2341 error("ioctl(SIOCSIFNETMASK): %m (line %d)", __LINE__
);
2346 * Add the device route
2348 if (kernel_version
< KVERSION(2,1,16)) {
2349 SET_SA_FAMILY (rt
.rt_dst
, AF_INET
);
2350 SET_SA_FAMILY (rt
.rt_gateway
, AF_INET
);
2353 SIN_ADDR(rt
.rt_gateway
) = 0L;
2354 SIN_ADDR(rt
.rt_dst
) = his_adr
;
2355 rt
.rt_flags
= RTF_UP
| RTF_HOST
;
2357 if (kernel_version
> KVERSION(2,1,0)) {
2358 SET_SA_FAMILY (rt
.rt_genmask
, AF_INET
);
2359 SIN_ADDR(rt
.rt_genmask
) = -1L;
2362 if (ioctl(sock_fd
, SIOCADDRT
, &rt
) < 0) {
2363 if (! ok_error (errno
))
2364 error("ioctl(SIOCADDRT) device route: %m (line %d)", __LINE__
);
2369 /* set ip_dynaddr in demand mode if address changes */
2370 if (demand
&& tune_kernel
&& !dynaddr_set
2371 && our_old_addr
&& our_old_addr
!= our_adr
) {
2372 /* set ip_dynaddr if possible */
2376 path
= path_to_procfs("/sys/net/ipv4/ip_dynaddr");
2377 if (path
!= 0 && (fd
= open(path
, O_WRONLY
)) >= 0) {
2378 if (write(fd
, "1", 1) != 1)
2379 error("Couldn't enable dynamic IP addressing: %m");
2382 dynaddr_set
= 1; /* only 1 attempt */
2389 /********************************************************************
2391 * cifaddr - Clear the interface IP addresses, and delete routes
2392 * through the interface if possible.
2395 int cifaddr (int unit
, u_int32_t our_adr
, u_int32_t his_adr
)
2399 if (kernel_version
< KVERSION(2,1,16)) {
2401 * Delete the route through the device
2404 memset (&rt
, '\0', sizeof (rt
));
2406 SET_SA_FAMILY (rt
.rt_dst
, AF_INET
);
2407 SET_SA_FAMILY (rt
.rt_gateway
, AF_INET
);
2410 SIN_ADDR(rt
.rt_gateway
) = 0;
2411 SIN_ADDR(rt
.rt_dst
) = his_adr
;
2412 rt
.rt_flags
= RTF_UP
| RTF_HOST
;
2414 if (kernel_version
> KVERSION(2,1,0)) {
2415 SET_SA_FAMILY (rt
.rt_genmask
, AF_INET
);
2416 SIN_ADDR(rt
.rt_genmask
) = -1L;
2419 if (ioctl(sock_fd
, SIOCDELRT
, &rt
) < 0 && errno
!= ESRCH
) {
2420 if (still_ppp() && ! ok_error (errno
))
2421 error("ioctl(SIOCDELRT) device route: %m (line %d)", __LINE__
);
2426 /* This way it is possible to have an IPX-only or IPv6-only interface */
2427 memset(&ifr
, 0, sizeof(ifr
));
2428 SET_SA_FAMILY(ifr
.ifr_addr
, AF_INET
);
2429 strlcpy(ifr
.ifr_name
, ifname
, sizeof(ifr
.ifr_name
));
2431 if (ioctl(sock_fd
, SIOCSIFADDR
, (caddr_t
) &ifr
) < 0) {
2432 if (! ok_error (errno
)) {
2433 error("ioctl(SIOCSIFADDR): %m (line %d)", __LINE__
);
2438 our_old_addr
= our_adr
;
2444 /********************************************************************
2446 * sif6addr - Config the interface with an IPv6 link-local address
2448 int sif6addr (int unit
, eui64_t our_eui64
, eui64_t his_eui64
)
2450 struct in6_ifreq ifr6
;
2452 struct in6_rtmsg rt6
;
2456 error("IPv6 socket creation failed: %m");
2459 memset(&ifr
, 0, sizeof (ifr
));
2460 strlcpy(ifr
.ifr_name
, ifname
, sizeof(ifr
.ifr_name
));
2461 if (ioctl(sock6_fd
, SIOCGIFINDEX
, (caddr_t
) &ifr
) < 0) {
2462 error("sif6addr: ioctl(SIOCGIFINDEX): %m (line %d)", __LINE__
);
2466 /* Local interface */
2467 memset(&ifr6
, 0, sizeof(ifr6
));
2468 IN6_LLADDR_FROM_EUI64(ifr6
.ifr6_addr
, our_eui64
);
2469 ifr6
.ifr6_ifindex
= ifr
.ifr_ifindex
;
2470 ifr6
.ifr6_prefixlen
= 10;
2472 if (ioctl(sock6_fd
, SIOCSIFADDR
, &ifr6
) < 0) {
2473 error("sif6addr: ioctl(SIOCSIFADDR): %m (line %d)", __LINE__
);
2477 /* Route to remote host */
2478 memset(&rt6
, 0, sizeof(rt6
));
2479 IN6_LLADDR_FROM_EUI64(rt6
.rtmsg_dst
, his_eui64
);
2480 rt6
.rtmsg_flags
= RTF_UP
;
2481 rt6
.rtmsg_dst_len
= 10;
2482 rt6
.rtmsg_ifindex
= ifr
.ifr_ifindex
;
2483 rt6
.rtmsg_metric
= 1;
2485 if (ioctl(sock6_fd
, SIOCADDRT
, &rt6
) < 0) {
2486 error("sif6addr: ioctl(SIOCADDRT): %m (line %d)", __LINE__
);
2494 /********************************************************************
2496 * cif6addr - Remove IPv6 address from interface
2498 int cif6addr (int unit
, eui64_t our_eui64
, eui64_t his_eui64
)
2501 struct in6_ifreq ifr6
;
2505 error("IPv6 socket creation failed: %m");
2508 memset(&ifr
, 0, sizeof(ifr
));
2509 strlcpy(ifr
.ifr_name
, ifname
, sizeof(ifr
.ifr_name
));
2510 if (ioctl(sock6_fd
, SIOCGIFINDEX
, (caddr_t
) &ifr
) < 0) {
2511 error("cif6addr: ioctl(SIOCGIFINDEX): %m (line %d)", __LINE__
);
2515 memset(&ifr6
, 0, sizeof(ifr6
));
2516 IN6_LLADDR_FROM_EUI64(ifr6
.ifr6_addr
, our_eui64
);
2517 ifr6
.ifr6_ifindex
= ifr
.ifr_ifindex
;
2518 ifr6
.ifr6_prefixlen
= 10;
2520 if (ioctl(sock6_fd
, SIOCDIFADDR
, &ifr6
) < 0) {
2521 if (errno
!= EADDRNOTAVAIL
) {
2522 if (! ok_error (errno
))
2523 error("cif6addr: ioctl(SIOCDIFADDR): %m (line %d)", __LINE__
);
2526 warn("cif6addr: ioctl(SIOCDIFADDR): No such address");
2535 * get_pty - get a pty master/slave pair and chown the slave side
2536 * to the uid given. Assumes slave_name points to >= 16 bytes of space.
2539 get_pty(master_fdp
, slave_fdp
, slave_name
, uid
)
2545 int i
, mfd
, sfd
= -1;
2547 struct termios tios
;
2551 * Try the unix98 way first.
2553 mfd
= open("/dev/ptmx", O_RDWR
);
2556 if (ioctl(mfd
, TIOCGPTN
, &ptn
) >= 0) {
2557 slprintf(pty_name
, sizeof(pty_name
), "/dev/pts/%d", ptn
);
2558 chmod(pty_name
, S_IRUSR
| S_IWUSR
);
2561 if (ioctl(mfd
, TIOCSPTLCK
, &ptn
) < 0)
2562 warn("Couldn't unlock pty slave %s: %m", pty_name
);
2564 if ((sfd
= open(pty_name
, O_RDWR
| O_NOCTTY
)) < 0)
2565 warn("Couldn't open pty slave %s: %m", pty_name
);
2568 #endif /* TIOCGPTN */
2571 /* the old way - scan through the pty name space */
2572 for (i
= 0; i
< 64; ++i
) {
2573 slprintf(pty_name
, sizeof(pty_name
), "/dev/pty%c%x",
2574 'p' + i
/ 16, i
% 16);
2575 mfd
= open(pty_name
, O_RDWR
, 0);
2578 sfd
= open(pty_name
, O_RDWR
| O_NOCTTY
, 0);
2580 fchown(sfd
, uid
, -1);
2581 fchmod(sfd
, S_IRUSR
| S_IWUSR
);
2592 strlcpy(slave_name
, pty_name
, 16);
2595 if (tcgetattr(sfd
, &tios
) == 0) {
2596 tios
.c_cflag
&= ~(CSIZE
| CSTOPB
| PARENB
);
2597 tios
.c_cflag
|= CS8
| CREAD
| CLOCAL
;
2598 tios
.c_iflag
= IGNPAR
;
2601 if (tcsetattr(sfd
, TCSAFLUSH
, &tios
) < 0)
2602 warn("couldn't set attributes on pty: %m");
2604 warn("couldn't get attributes on pty: %m");
2609 /********************************************************************
2611 * open_loopback - open the device we use for getting packets
2612 * in demand mode. Under Linux, we use a pty master/slave pair.
2615 open_ppp_loopback(void)
2620 if (new_style_driver
) {
2621 /* allocate ourselves a ppp unit */
2622 if (make_ppp_unit() < 0)
2624 modify_flags(ppp_dev_fd
, 0, SC_LOOP_TRAFFIC
);
2625 set_kdebugflag(kdebugflag
);
2630 if (!get_pty(&master_fd
, &slave_fd
, loop_name
, 0))
2631 fatal("No free pty for loopback");
2633 set_ppp_fd(slave_fd
);
2635 flags
= fcntl(master_fd
, F_GETFL
);
2637 fcntl(master_fd
, F_SETFL
, flags
| O_NONBLOCK
) == -1)
2638 warn("couldn't set master loopback to nonblock: %m");
2640 flags
= fcntl(ppp_fd
, F_GETFL
);
2642 fcntl(ppp_fd
, F_SETFL
, flags
| O_NONBLOCK
) == -1)
2643 warn("couldn't set slave loopback to nonblock: %m");
2645 if (ioctl(ppp_fd
, TIOCSETD
, &ppp_disc
) < 0)
2646 fatal("ioctl(TIOCSETD): %m (line %d)", __LINE__
);
2648 * Find out which interface we were given.
2650 if (ioctl(ppp_fd
, PPPIOCGUNIT
, &ifunit
) < 0)
2651 fatal("ioctl(PPPIOCGUNIT): %m (line %d)", __LINE__
);
2653 * Enable debug in the driver if requested.
2655 set_kdebugflag (kdebugflag
);
2660 /********************************************************************
2662 * sifnpmode - Set the mode for handling packets for a given NP.
2666 sifnpmode(u
, proto
, mode
)
2673 npi
.protocol
= proto
;
2675 if (ioctl(ppp_dev_fd
, PPPIOCSNPMODE
, (caddr_t
) &npi
) < 0) {
2676 if (! ok_error (errno
))
2677 error("ioctl(PPPIOCSNPMODE, %d, %d): %m", proto
, mode
);
2684 /********************************************************************
2686 * sipxfaddr - Config the interface IPX networknumber
2689 int sipxfaddr (int unit
, unsigned long int network
, unsigned char * node
)
2696 struct sockaddr_ipx
*sipx
= (struct sockaddr_ipx
*) &ifr
.ifr_addr
;
2698 skfd
= socket (AF_IPX
, SOCK_DGRAM
, 0);
2700 if (! ok_error (errno
))
2701 dbglog("socket(AF_IPX): %m (line %d)", __LINE__
);
2705 memset (&ifr
, '\0', sizeof (ifr
));
2706 strlcpy (ifr
.ifr_name
, ifname
, sizeof(ifr
.ifr_name
));
2708 memcpy (sipx
->sipx_node
, node
, IPX_NODE_LEN
);
2709 sipx
->sipx_family
= AF_IPX
;
2710 sipx
->sipx_port
= 0;
2711 sipx
->sipx_network
= htonl (network
);
2712 sipx
->sipx_type
= IPX_FRAME_ETHERII
;
2713 sipx
->sipx_action
= IPX_CRTITF
;
2715 * Set the IPX device
2717 if (ioctl(skfd
, SIOCSIFADDR
, (caddr_t
) &ifr
) < 0) {
2719 if (errno
!= EEXIST
) {
2720 if (! ok_error (errno
))
2721 dbglog("ioctl(SIOCSIFADDR, CRTITF): %m (line %d)", __LINE__
);
2724 warn("ioctl(SIOCSIFADDR, CRTITF): Address already exists");
2733 /********************************************************************
2735 * cipxfaddr - Clear the information for the IPX network. The IPX routes
2736 * are removed and the device is no longer able to pass IPX
2740 int cipxfaddr (int unit
)
2747 struct sockaddr_ipx
*sipx
= (struct sockaddr_ipx
*) &ifr
.ifr_addr
;
2749 skfd
= socket (AF_IPX
, SOCK_DGRAM
, 0);
2751 if (! ok_error (errno
))
2752 dbglog("socket(AF_IPX): %m (line %d)", __LINE__
);
2756 memset (&ifr
, '\0', sizeof (ifr
));
2757 strlcpy (ifr
.ifr_name
, ifname
, sizeof(ifr
.ifr_name
));
2759 sipx
->sipx_type
= IPX_FRAME_ETHERII
;
2760 sipx
->sipx_action
= IPX_DLTITF
;
2761 sipx
->sipx_family
= AF_IPX
;
2763 * Set the IPX device
2765 if (ioctl(skfd
, SIOCSIFADDR
, (caddr_t
) &ifr
) < 0) {
2766 if (! ok_error (errno
))
2767 info("ioctl(SIOCSIFADDR, IPX_DLTITF): %m (line %d)", __LINE__
);
2777 * Use the hostname as part of the random number seed.
2786 for (p
= hostname
; *p
!= 0; ++p
)
2791 /********************************************************************
2793 * sys_check_options - check the options that the user specified
2797 sys_check_options(void)
2801 * Disable the IPX protocol if the support is not present in the kernel.
2805 if (ipxcp_protent
.enabled_flag
) {
2806 struct stat stat_buf
;
2807 if ( ((path
= path_to_procfs("/net/ipx/interface")) == NULL
2808 && (path
= path_to_procfs("/net/ipx_interface")) == NULL
)
2809 || lstat(path
, &stat_buf
) < 0) {
2810 error("IPX support is not present in the kernel\n");
2811 ipxcp_protent
.enabled_flag
= 0;
2815 if (demand
&& driver_is_old
) {
2816 option_error("demand dialling is not supported by kernel driver "
2817 "version %d.%d.%d", driver_version
, driver_modification
,
2821 if (multilink
&& !new_style_driver
) {
2822 warn("Warning: multilink is not supported by the kernel driver");
2830 * ether_to_eui64 - Convert 48-bit Ethernet address into 64-bit EUI
2832 * convert the 48-bit MAC address of eth0 into EUI 64. caller also assumes
2833 * that the system has a properly configured Ethernet interface for this
2834 * function to return non-zero.
2837 ether_to_eui64(eui64_t
*p_eui64
)
2841 const unsigned char *ptr
;
2843 skfd
= socket(PF_INET6
, SOCK_DGRAM
, 0);
2846 warn("could not open IPv6 socket");
2850 strcpy(ifr
.ifr_name
, "eth0");
2851 if(ioctl(skfd
, SIOCGIFHWADDR
, &ifr
) < 0)
2854 warn("could not obtain hardware address for eth0");
2860 * And convert the EUI-48 into EUI-64, per RFC 2472 [sec 4.1]
2862 ptr
= ifr
.ifr_hwaddr
.sa_data
;
2863 p_eui64
->e8
[0] = ptr
[0] | 0x02;
2864 p_eui64
->e8
[1] = ptr
[1];
2865 p_eui64
->e8
[2] = ptr
[2];
2866 p_eui64
->e8
[3] = 0xFF;
2867 p_eui64
->e8
[4] = 0xFE;
2868 p_eui64
->e8
[5] = ptr
[3];
2869 p_eui64
->e8
[6] = ptr
[4];
2870 p_eui64
->e8
[7] = ptr
[5];