2 * sys-linux.c - System-dependent procedures for setting up
3 * PPP interfaces on Linux systems
5 * Copyright (c) 1989 Carnegie Mellon University.
8 * Redistribution and use in source and binary forms are permitted
9 * provided that the above copyright notice and this paragraph are
10 * duplicated in all such forms and that any documentation,
11 * advertising materials, and other materials related to such
12 * distribution and use acknowledge that the software was developed
13 * by Carnegie Mellon University. The name of the
14 * University may not be used to endorse or promote products derived
15 * from this software without specific prior written permission.
16 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
18 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
21 #include <sys/ioctl.h>
22 #include <sys/types.h>
23 #include <sys/socket.h>
25 #include <sys/errno.h>
28 #include <sys/utsname.h>
44 /* This is in netdevice.h. However, this compile will fail miserably if
45 you attempt to include netdevice.h because it has so many references
46 to __memcpy functions which it should not attempt to do. So, since I
47 really don't use it, but it must be defined, define it now. */
50 #define MAX_ADDR_LEN 7
54 #include <asm/types.h> /* glibc 2 conflicts with linux/types.h */
56 #include <net/if_arp.h>
57 #include <net/route.h>
58 #include <netinet/if_ether.h>
60 #include <linux/types.h>
62 #include <linux/if_arp.h>
63 #include <linux/route.h>
64 #include <linux/if_ether.h>
66 #include <netinet/in.h>
67 #include <arpa/inet.h>
69 #include <linux/ppp_defs.h>
70 #include <linux/if_ppp.h>
75 #include "patchlevel.h"
79 #if __GLIBC__ >= 2 && \
80 !(defined(__powerpc__) && __GLIBC__ == 2 && __GLIBC_MINOR__ == 0)
81 #include <netipx/ipx.h>
83 #include <linux/ipx.h>
85 #endif /* IPX_CHANGE */
88 #include <sys/locks.h>
91 #ifndef RTF_DEFAULT /* Normally in <linux/route.h> from <net/route.h> */
95 #define ok_error(num) ((num)==EIO)
97 static int tty_disc
= N_TTY
; /* The TTY discipline */
98 static int ppp_disc
= N_PPP
; /* The PPP discpline */
99 static int initfdflags
= -1; /* Initial file descriptor flags for fd */
100 static int ppp_fd
= -1; /* fd which is set to PPP discipline */
101 static int sock_fd
= -1; /* socket for doing interface ioctls */
102 static int slave_fd
= -1;
103 static int master_fd
= -1;
105 static int has_proxy_arp
= 0;
106 static int driver_version
= 0;
107 static int driver_modification
= 0;
108 static int driver_patch
= 0;
109 static int driver_is_old
= 0;
110 static int restore_term
= 0; /* 1 => we've munged the terminal */
111 static struct termios inittermios
; /* Initial TTY termios */
113 static char loop_name
[20];
114 static unsigned char inbuf
[512]; /* buffer for chars read from loopback */
116 static int if_is_up
; /* Interface has been marked up */
117 static u_int32_t default_route_gateway
; /* Gateway for default route added */
118 static u_int32_t proxy_arp_addr
; /* Addr for proxy arp entry added */
120 static char *lock_file
;
122 static struct utsname utsname
; /* for the kernel version */
123 static int kernel_version
;
124 #define KVERSION(j,n,p) ((j)*1000000 + (n)*1000 + (p))
128 #define FLAGS_GOOD (IFF_UP | IFF_BROADCAST)
129 #define FLAGS_MASK (IFF_UP | IFF_BROADCAST | \
130 IFF_POINTOPOINT | IFF_LOOPBACK | IFF_NOARP)
132 /* Prototypes for procedures local to this file. */
133 static int get_flags (void);
134 static void set_flags (int flags
);
135 static int translate_speed (int bps
);
136 static int baud_rate_of (int speed
);
137 static char *path_to_route (void);
138 static void close_route_table (void);
139 static int open_route_table (void);
140 static int read_route_table (struct rtentry
*rt
);
141 static int defaultroute_exists (struct rtentry
*rt
);
142 static int get_ether_addr (u_int32_t ipaddr
, struct sockaddr
*hwaddr
,
144 static void decode_version (char *buf
, int *version
, int *mod
, int *patch
);
146 extern u_char inpacket_buf
[]; /* borrowed from main.c */
149 * SET_SA_FAMILY - set the sa_family field of a struct sockaddr,
153 #define SET_SA_FAMILY(addr, family) \
154 memset ((char *) &(addr), '\0', sizeof(addr)); \
155 addr.sa_family = (family);
158 * Determine if the PPP connection should still be present.
164 #define LOCK_PREFIX "/var/lock/LCK.."
167 static void set_ppp_fd (int new_fd
)
169 SYSDEBUG ((LOG_DEBUG
, "setting ppp_fd to %d\n", new_fd
));
173 static int still_ppp(void)
175 if (!hungup
|| ppp_fd
== slave_fd
)
178 set_ppp_fd(slave_fd
);
184 /********************************************************************
186 * Functions to read and set the flags value in the device driver
189 static int get_flags (void)
193 if (ioctl(ppp_fd
, PPPIOCGFLAGS
, (caddr_t
) &flags
) < 0)
195 if ( ok_error (errno
) )
201 syslog(LOG_ERR
, "ioctl(PPPIOCGFLAGS): %m");
206 SYSDEBUG ((LOG_DEBUG
, "get flags = %x\n", flags
));
210 /********************************************************************/
212 static void set_flags (int flags
)
214 SYSDEBUG ((LOG_DEBUG
, "set flags = %x\n", flags
));
216 if (ioctl(ppp_fd
, PPPIOCSFLAGS
, (caddr_t
) &flags
) < 0)
218 if (! ok_error (errno
) )
220 syslog(LOG_ERR
, "ioctl(PPPIOCSFLAGS, %x): %m(%d)", flags
, errno
);
226 /********************************************************************
228 * sys_init - System-dependent initialization.
233 int osmaj
, osmin
, ospatch
;
235 openlog("pppd", LOG_PID
| LOG_NDELAY
, LOG_PPP
);
236 setlogmask(LOG_UPTO(LOG_INFO
));
239 setlogmask(LOG_UPTO(LOG_DEBUG
));
242 /* Get an internet socket for doing socket ioctls. */
243 sock_fd
= socket(AF_INET
, SOCK_DGRAM
, 0);
246 if ( ! ok_error ( errno
))
248 syslog(LOG_ERR
, "Couldn't create IP socket: %m(%d)", errno
);
254 osmaj
= osmin
= ospatch
= 0;
255 sscanf(utsname
.release
, "%d.%d.%d", &osmaj
, &osmin
, &ospatch
);
256 kernel_version
= KVERSION(osmaj
, osmin
, ospatch
);
259 /********************************************************************
261 * sys_cleanup - restore any system state we modified before exiting:
262 * mark the interface down, delete default route and/or proxy arp entry.
263 * This should call die() because it's called from die().
266 void sys_cleanup(void)
269 * Take down the device
276 * Delete any routes through the device.
278 if (default_route_gateway
!= 0)
280 cifdefaultroute(0, 0, default_route_gateway
);
285 cifproxyarp(0, proxy_arp_addr
);
289 /********************************************************************
291 * sys_close - Clean up in a child process before execing.
301 /********************************************************************
303 * note_debug_level - note a change in the debug level.
306 void note_debug_level (void)
310 SYSDEBUG ((LOG_INFO
, "Debug turned ON, Level %d", debug
));
311 setlogmask(LOG_UPTO(LOG_DEBUG
));
315 setlogmask(LOG_UPTO(LOG_WARNING
));
319 /********************************************************************
321 * set_kdebugflag - Define the debugging level for the kernel
324 int set_kdebugflag (int requested_level
)
326 if (ioctl(ppp_fd
, PPPIOCSDEBUG
, &requested_level
) < 0)
328 if ( ! ok_error (errno
) )
330 syslog (LOG_ERR
, "ioctl(PPPIOCSDEBUG): %m");
334 SYSDEBUG ((LOG_INFO
, "set kernel debugging level to %d",
339 /********************************************************************
341 * establish_ppp - Turn the serial port into a ppp interface.
344 void establish_ppp (int tty_fd
)
348 * The current PPP device will be the tty file.
352 * Ensure that the tty device is in exclusive mode.
354 if (ioctl(tty_fd
, TIOCEXCL
, 0) < 0)
356 if ( ! ok_error ( errno
))
358 syslog (LOG_WARNING
, "ioctl(TIOCEXCL): %m");
362 * Demand mode - prime the old ppp device to relinquish the unit.
364 if (demand
&& ioctl(slave_fd
, PPPIOCXFERUNIT
, 0) < 0)
366 syslog(LOG_ERR
, "ioctl(transfer ppp unit): %m(%d)", errno
);
370 * Set the current tty to the PPP discpline
372 if (ioctl(ppp_fd
, TIOCSETD
, &ppp_disc
) < 0)
374 if ( ! ok_error (errno
) )
376 syslog(LOG_ERR
, "ioctl(TIOCSETD): %m(%d)", errno
);
381 * Find out which interface we were given.
383 if (ioctl(ppp_fd
, PPPIOCGUNIT
, &x
) < 0)
385 if ( ! ok_error (errno
))
387 syslog(LOG_ERR
, "ioctl(PPPIOCGUNIT): %m(%d)", errno
);
392 * Check that we got the same unit again.
398 syslog(LOG_ERR
, "transfer_ppp failed: wanted unit %d, got %d",
406 * Enable debug in the driver if requested.
409 set_kdebugflag (kdebugflag
);
411 set_flags (get_flags() & ~(SC_RCV_B7_0
| SC_RCV_B7_1
|
412 SC_RCV_EVNP
| SC_RCV_ODDP
));
414 SYSDEBUG ((LOG_NOTICE
, "Using version %d.%d.%d of PPP driver",
415 driver_version
, driver_modification
, driver_patch
));
417 * Fetch the initial file flags and reset blocking mode on the file.
419 initfdflags
= fcntl(ppp_fd
, F_GETFL
);
421 if (initfdflags
== -1 ||
422 fcntl(ppp_fd
, F_SETFL
, initfdflags
| O_NONBLOCK
) == -1)
424 if ( ! ok_error (errno
))
427 "Couldn't set device to non-blocking mode: %m");
432 /********************************************************************
434 * disestablish_ppp - Restore the serial port to normal operation.
435 * This shouldn't call die() because it's called from die().
438 void disestablish_ppp(int tty_fd
)
441 * Attempt to restore the previous tty settings
446 * Restore the previous line discipline
448 if (ioctl(tty_fd
, TIOCSETD
, &tty_disc
) < 0)
450 if ( ! ok_error (errno
))
452 syslog(LOG_ERR
, "ioctl(TIOCSETD, N_TTY): %m");
456 if (ioctl(tty_fd
, TIOCNXCL
, 0) < 0)
458 if ( ! ok_error (errno
))
460 syslog (LOG_WARNING
, "ioctl(TIOCNXCL): %m(%d)", errno
);
464 /* Reset non-blocking mode on fd. */
465 if (initfdflags
!= -1 && fcntl(tty_fd
, F_SETFL
, initfdflags
) < 0)
467 if ( ! ok_error (errno
))
470 "Couldn't restore device fd flags: %m");
477 /********************************************************************
479 * clean_check - Fetch the flags for the device and generate
480 * appropriate error messages.
482 void clean_check(void)
489 if (ioctl(ppp_fd
, PPPIOCGFLAGS
, (caddr_t
) &x
) == 0)
492 switch (~x
& (SC_RCV_B7_0
|SC_RCV_B7_1
|SC_RCV_EVNP
|SC_RCV_ODDP
))
495 case SC_RCV_B7_0
| SC_RCV_EVNP
:
496 case SC_RCV_B7_0
| SC_RCV_ODDP
:
497 case SC_RCV_B7_0
| SC_RCV_ODDP
| SC_RCV_EVNP
:
498 s
= "all had bit 7 set to 1";
502 case SC_RCV_B7_1
| SC_RCV_EVNP
:
503 case SC_RCV_B7_1
| SC_RCV_ODDP
:
504 case SC_RCV_B7_1
| SC_RCV_ODDP
| SC_RCV_EVNP
:
505 s
= "all had bit 7 set to 0";
509 s
= "all had odd parity";
513 s
= "all had even parity";
519 syslog(LOG_WARNING
, "Receive serial link is not"
521 syslog(LOG_WARNING
, "Problem: %s", s
);
529 * List of valid speeds.
533 int speed_int
, speed_val
;
610 /********************************************************************
612 * Translate from bits/second to a speed_t.
615 static int translate_speed (int bps
)
617 struct speed
*speedp
;
621 for (speedp
= speeds
; speedp
->speed_int
; speedp
++)
623 if (bps
== speedp
->speed_int
)
625 return speedp
->speed_val
;
628 syslog(LOG_WARNING
, "speed %d not supported", bps
);
633 /********************************************************************
635 * Translate from a speed_t to bits/second.
638 static int baud_rate_of (int speed
)
640 struct speed
*speedp
;
644 for (speedp
= speeds
; speedp
->speed_int
; speedp
++)
646 if (speed
== speedp
->speed_val
)
648 return speedp
->speed_int
;
655 /********************************************************************
657 * set_up_tty: Set up the serial port on `fd' for 8 bits, no parity,
658 * at the requested speed, etc. If `local' is true, set CLOCAL
659 * regardless of whether the modem option was specified.
662 void set_up_tty(int tty_fd
, int local
)
668 if (tcgetattr(tty_fd
, &tios
) < 0)
670 syslog(LOG_ERR
, "tcgetattr: %m(%d)", errno
);
679 tios
.c_cflag
&= ~(CSIZE
| CSTOPB
| PARENB
| CLOCAL
);
680 tios
.c_cflag
|= CS8
| CREAD
| HUPCL
;
682 tios
.c_iflag
= IGNBRK
| IGNPAR
;
686 tios
.c_cc
[VTIME
] = 0;
690 tios
.c_cflag
^= (CLOCAL
| HUPCL
);
696 tios
.c_cflag
|= CRTSCTS
;
700 tios
.c_iflag
|= IXON
| IXOFF
;
701 tios
.c_cc
[VSTOP
] = 0x13; /* DC3 = XOFF = ^S */
702 tios
.c_cc
[VSTART
] = 0x11; /* DC1 = XON = ^Q */
706 tios
.c_cflag
&= ~CRTSCTS
;
713 speed
= translate_speed(inspeed
);
716 cfsetospeed (&tios
, speed
);
717 cfsetispeed (&tios
, speed
);
720 * We can't proceed if the serial port speed is B0,
721 * since that implies that the serial port is disabled.
725 speed
= cfgetospeed(&tios
);
728 syslog(LOG_ERR
, "Baud rate for %s is 0; need explicit baud rate",
734 if (tcsetattr(tty_fd
, TCSAFLUSH
, &tios
) < 0)
736 syslog(LOG_ERR
, "tcsetattr: %m");
740 baud_rate
= baud_rate_of(speed
);
745 * hangup_modem - hang up the modem by clearing DTR.
747 void hangup_modem(int ttyfd
)
752 /********************************************************************
754 * setdtr - control the DTR line on the serial port.
755 * This is called from die(), so it shouldn't call die().
758 void setdtr (int tty_fd
, int on
)
760 int modembits
= TIOCM_DTR
;
762 ioctl(tty_fd
, (on
? TIOCMBIS
: TIOCMBIC
), &modembits
);
765 /********************************************************************
767 * restore_tty - restore the terminal to the saved settings.
770 void restore_tty (int tty_fd
)
776 * Turn off echoing, because otherwise we can get into
777 * a loop with the tty and the modem echoing to each other.
778 * We presume we are the sole user of this tty device, so
779 * when we close it, it will revert to its defaults anyway.
783 inittermios
.c_lflag
&= ~(ECHO
| ECHONL
);
786 if (tcsetattr(tty_fd
, TCSAFLUSH
, &inittermios
) < 0)
788 if (! ok_error (errno
))
790 syslog(LOG_WARNING
, "tcsetattr: %m");
796 /********************************************************************
798 * output - Output PPP packet.
801 void output (int unit
, unsigned char *p
, int len
)
805 log_packet(p
, len
, "sent ", LOG_DEBUG
);
808 if (write(ppp_fd
, p
, len
) < 0)
810 if (errno
== EWOULDBLOCK
|| errno
== ENOBUFS
811 || errno
== ENXIO
|| errno
== EIO
|| errno
== EINTR
)
813 syslog(LOG_WARNING
, "write: warning: %m (%d)", errno
);
817 syslog(LOG_ERR
, "write: %m (%d)", errno
);
822 /********************************************************************
824 * wait_input - wait until there is data available on ppp_fd,
825 * for the length of time specified by *timo (indefinite
829 void wait_input (struct timeval
*timo
)
835 FD_SET(ppp_fd
, &ready
);
837 n
= select(ppp_fd
+ 1, &ready
, NULL
, &ready
, timo
);
838 if (n
< 0 && errno
!= EINTR
)
840 syslog(LOG_ERR
, "select: %m(%d)", errno
);
845 /********************************************************************
847 * wait_loop_output - wait until there is data available on the
848 * loopback, for the length of time specified by *timo (indefinite
851 void wait_loop_output(timo
)
852 struct timeval
*timo
;
858 FD_SET(master_fd
, &ready
);
859 n
= select(master_fd
+ 1, &ready
, NULL
, &ready
, timo
);
860 if (n
< 0 && errno
!= EINTR
)
862 syslog(LOG_ERR
, "select: %m(%d)", errno
);
867 /********************************************************************
869 * wait_time - wait for a given length of time or until a
870 * signal is received.
874 struct timeval
*timo
;
878 n
= select(0, NULL
, NULL
, NULL
, timo
);
879 if (n
< 0 && errno
!= EINTR
) {
880 syslog(LOG_ERR
, "select: %m(%d)", errno
);
885 /********************************************************************
887 * read_packet - get a PPP packet from the serial device.
890 int read_packet (unsigned char *buf
)
894 len
= read(ppp_fd
, buf
, PPP_MTU
+ PPP_HDRLEN
);
897 if (errno
== EWOULDBLOCK
)
901 syslog(LOG_ERR
, "read: %m(%d)", errno
);
907 /********************************************************************
909 * get_loop_output - get outgoing packets from the ppp device,
910 * and detect when we want to bring the real link up.
911 * Return value is 1 if we need to bring up the link, 0 otherwise.
914 get_loop_output(void)
917 int n
= read(master_fd
, inbuf
, sizeof(inbuf
));
921 if (loop_chars(inbuf
, n
))
925 n
= read(master_fd
, inbuf
, sizeof(inbuf
));
930 syslog(LOG_ERR
, "eof on loopback");
934 if (errno
!= EWOULDBLOCK
)
936 syslog(LOG_ERR
, "read from loopback: %m(%d)", errno
);
943 /********************************************************************
945 * ppp_send_config - configure the transmit characteristics of
949 void ppp_send_config (int unit
,int mtu
,u_int32_t asyncmap
,int pcomp
,int accomp
)
954 SYSDEBUG ((LOG_DEBUG
, "send_config: mtu = %d\n", mtu
));
956 * Ensure that the link is still up.
961 * Set the MTU and other parameters for the ppp device
963 memset (&ifr
, '\0', sizeof (ifr
));
964 strncpy(ifr
.ifr_name
, ifname
, sizeof (ifr
.ifr_name
));
967 if (ioctl(sock_fd
, SIOCSIFMTU
, (caddr_t
) &ifr
) < 0)
969 syslog(LOG_ERR
, "ioctl(SIOCSIFMTU): %m(%d)", errno
);
973 SYSDEBUG ((LOG_DEBUG
, "send_config: asyncmap = %lx\n", asyncmap
));
974 if (ioctl(ppp_fd
, PPPIOCSASYNCMAP
, (caddr_t
) &asyncmap
) < 0)
976 syslog(LOG_ERR
, "ioctl(PPPIOCSASYNCMAP): %m(%d)", errno
);
981 x
= pcomp
? x
| SC_COMP_PROT
: x
& ~SC_COMP_PROT
;
982 x
= accomp
? x
| SC_COMP_AC
: x
& ~SC_COMP_AC
;
987 /********************************************************************
989 * ppp_set_xaccm - set the extended transmit ACCM for the interface.
992 void ppp_set_xaccm (int unit
, ext_accm accm
)
994 SYSDEBUG ((LOG_DEBUG
, "set_xaccm: %08lx %08lx %08lx %08lx\n",
995 accm
[0], accm
[1], accm
[2], accm
[3]));
997 if (ioctl(ppp_fd
, PPPIOCSXASYNCMAP
, accm
) < 0 && errno
!= ENOTTY
)
999 if ( ! ok_error (errno
))
1001 syslog(LOG_WARNING
, "ioctl(set extended ACCM): %m(%d)", errno
);
1006 /********************************************************************
1008 * ppp_recv_config - configure the receive-side characteristics of
1009 * the ppp interface.
1012 void ppp_recv_config (int unit
,int mru
,u_int32_t asyncmap
,int pcomp
,int accomp
)
1016 SYSDEBUG ((LOG_DEBUG
, "recv_config: mru = %d\n", mru
));
1018 * If we were called because the link has gone down then there is nothing
1019 * which may be done. Just return without incident.
1026 * Set the receiver parameters
1028 if (ioctl(ppp_fd
, PPPIOCSMRU
, (caddr_t
) &mru
) < 0)
1030 if ( ! ok_error (errno
))
1032 syslog(LOG_ERR
, "ioctl(PPPIOCSMRU): %m(%d)", errno
);
1036 SYSDEBUG ((LOG_DEBUG
, "recv_config: asyncmap = %lx\n", asyncmap
));
1037 if (ioctl(ppp_fd
, PPPIOCSRASYNCMAP
, (caddr_t
) &asyncmap
) < 0)
1039 syslog(LOG_ERR
, "ioctl(PPPIOCSRASYNCMAP): %m(%d)", errno
);
1044 x
= !accomp
? x
| SC_REJ_COMP_AC
: x
&~ SC_REJ_COMP_AC
;
1048 /********************************************************************
1050 * ccp_test - ask kernel whether a given compression method
1051 * is acceptable for use.
1054 int ccp_test (int unit
, u_char
*opt_ptr
, int opt_len
, int for_transmit
)
1056 struct ppp_option_data data
;
1058 memset (&data
, '\0', sizeof (data
));
1060 data
.length
= opt_len
;
1061 data
.transmit
= for_transmit
;
1063 if (ioctl(ppp_fd
, PPPIOCSCOMPRESS
, (caddr_t
) &data
) >= 0)
1068 return (errno
== ENOBUFS
)? 0: -1;
1071 /********************************************************************
1073 * ccp_flags_set - inform kernel about the current state of CCP.
1076 void ccp_flags_set (int unit
, int isopen
, int isup
)
1080 int x
= get_flags();
1081 x
= isopen
? x
| SC_CCP_OPEN
: x
&~ SC_CCP_OPEN
;
1082 x
= isup
? x
| SC_CCP_UP
: x
&~ SC_CCP_UP
;
1087 /********************************************************************
1089 * get_idle_time - return how long the link has been idle.
1092 get_idle_time(u
, ip
)
1094 struct ppp_idle
*ip
;
1096 return ioctl(ppp_fd
, PPPIOCGIDLE
, ip
) >= 0;
1099 /********************************************************************
1101 * ccp_fatal_error - returns 1 if decompression was disabled as a
1102 * result of an error detected after decompression of a packet,
1103 * 0 otherwise. This is necessary because of patent nonsense.
1106 int ccp_fatal_error (int unit
)
1108 int x
= get_flags();
1110 return x
& SC_DC_FERROR
;
1114 * path_to_route - determine the path to the proc file system data
1116 #define ROUTE_MAX_COLS 12
1117 FILE *route_fd
= (FILE *) 0;
1118 static char route_buffer
[512];
1119 static int route_dev_col
, route_dest_col
, route_gw_col
;
1120 static int route_flags_col
, route_mask_col
;
1121 static int route_num_cols
;
1123 static char *path_to_route (void);
1124 static int open_route_table (void);
1125 static void close_route_table (void);
1126 static int read_route_table (struct rtentry
*rt
);
1128 /********************************************************************
1130 * path_to_procfs - find the path to the proc file system mount point
1133 static int path_to_procfs (void)
1135 struct mntent
*mntent
;
1138 fp
= fopen(MOUNTED
, "r");
1140 /* Default the mount location of /proc */
1141 strncpy (route_buffer
, "/proc", sizeof (route_buffer
)-10);
1145 while ((mntent
= getmntent(fp
)) != NULL
) {
1146 if (strcmp(mntent
->mnt_type
, MNTTYPE_IGNORE
) == 0)
1148 if (strcmp(mntent
->mnt_type
, "proc") == 0)
1155 strncpy(route_buffer
, mntent
->mnt_dir
, sizeof (route_buffer
)-10);
1156 route_buffer
[sizeof (route_buffer
)-10] = '\0';
1160 /********************************************************************
1162 * path_to_route - find the path to the route tables in the proc file system
1165 static char *path_to_route (void)
1167 if (!path_to_procfs()) {
1168 syslog (LOG_ERR
, "proc file system not mounted");
1171 strcat (route_buffer
, "/net/route");
1172 return (route_buffer
);
1175 /********************************************************************
1177 * close_route_table - close the interface to the route table
1180 static void close_route_table (void)
1182 if (route_fd
!= (FILE *) 0) {
1184 route_fd
= (FILE *) 0;
1188 /********************************************************************
1190 * open_route_table - open the interface to the route table
1192 static char route_delims
[] = " \t\n";
1194 static int open_route_table (void)
1198 close_route_table();
1200 path
= path_to_route();
1204 route_fd
= fopen (path
, "r");
1205 if (route_fd
== NULL
) {
1206 syslog (LOG_ERR
, "can't open %s: %m (%d)", path
, errno
);
1210 route_dev_col
= 0; /* default to usual columns */
1213 route_flags_col
= 3;
1217 /* parse header line */
1218 if (fgets(route_buffer
, sizeof(route_buffer
), route_fd
) != 0) {
1219 char *p
= route_buffer
, *q
;
1221 for (col
= 0; col
< ROUTE_MAX_COLS
; ++col
) {
1223 if ((q
= strtok(p
, route_delims
)) == 0)
1225 if (strcasecmp(q
, "iface") == 0)
1226 route_dev_col
= col
;
1227 else if (strcasecmp(q
, "destination") == 0)
1228 route_dest_col
= col
;
1229 else if (strcasecmp(q
, "gateway") == 0)
1231 else if (strcasecmp(q
, "flags") == 0)
1232 route_flags_col
= col
;
1233 else if (strcasecmp(q
, "mask") == 0)
1234 route_mask_col
= col
;
1237 if (used
&& col
>= route_num_cols
)
1238 route_num_cols
= col
+ 1;
1246 /********************************************************************
1248 * read_route_table - read the next entry from the route table
1251 static int read_route_table(struct rtentry
*rt
)
1253 char *cols
[ROUTE_MAX_COLS
], *p
;
1256 memset (rt
, '\0', sizeof (struct rtentry
));
1258 if (fgets (route_buffer
, sizeof (route_buffer
), route_fd
) == (char *) 0)
1262 for (col
= 0; col
< route_num_cols
; ++col
) {
1263 cols
[col
] = strtok(p
, route_delims
);
1264 if (cols
[col
] == NULL
)
1265 return 0; /* didn't get enough columns */
1268 ((struct sockaddr_in
*) &rt
->rt_dst
)->sin_addr
.s_addr
=
1269 strtoul(cols
[route_dest_col
], NULL
, 16);
1271 ((struct sockaddr_in
*) &rt
->rt_gateway
)->sin_addr
.s_addr
=
1272 strtoul(cols
[route_gw_col
], NULL
, 16);
1274 ((struct sockaddr_in
*) &rt
->rt_genmask
)->sin_addr
.s_addr
=
1275 strtoul(cols
[route_mask_col
], NULL
, 16);
1277 rt
->rt_flags
= (short) strtoul(cols
[route_flags_col
], NULL
, 16);
1278 rt
->rt_dev
= cols
[route_dev_col
];
1283 /********************************************************************
1285 * defaultroute_exists - determine if there is a default route
1288 static int defaultroute_exists (struct rtentry
*rt
)
1292 if (!open_route_table())
1295 while (read_route_table(rt
) != 0) {
1296 if ((rt
->rt_flags
& RTF_UP
) == 0)
1299 if (((struct sockaddr_in
*) (&rt
->rt_dst
))->sin_addr
.s_addr
== 0L) {
1305 close_route_table();
1310 * have_route_to - determine if the system has any route to
1311 * a given IP address.
1312 * For demand mode to work properly, we have to ignore routes
1313 * through our own interface.
1315 int have_route_to(u_int32_t addr
)
1320 if (!open_route_table())
1321 return -1; /* don't know */
1323 while (read_route_table(&rt
)) {
1324 if ((rt
.rt_flags
& RTF_UP
) == 0 || strcmp(rt
.rt_dev
, ifname
) == 0)
1326 if ((addr
& ((struct sockaddr_in
*)&rt
.rt_genmask
)->sin_addr
.s_addr
)
1327 == ((struct sockaddr_in
*)&rt
.rt_genmask
)->sin_addr
.s_addr
) {
1333 close_route_table();
1337 /********************************************************************
1339 * sifdefaultroute - assign a default route through the address given.
1342 int sifdefaultroute (int unit
, u_int32_t ouraddr
, u_int32_t gateway
)
1346 if (defaultroute_exists(&rt
) && strcmp(rt
.rt_dev
, ifname
) != 0)
1348 struct in_addr old_gateway
=
1349 ((struct sockaddr_in
*) (&rt
.rt_gateway
))-> sin_addr
;
1351 if (old_gateway
.s_addr
!= gateway
)
1354 "not replacing existing default route to %s [%s]",
1355 rt
.rt_dev
, inet_ntoa (old_gateway
));
1360 memset (&rt
, '\0', sizeof (rt
));
1361 SET_SA_FAMILY (rt
.rt_dst
, AF_INET
);
1362 SET_SA_FAMILY (rt
.rt_gateway
, AF_INET
);
1364 if (kernel_version
> KVERSION(2,1,0)) {
1365 SET_SA_FAMILY (rt
.rt_genmask
, AF_INET
);
1366 ((struct sockaddr_in
*) &rt
.rt_genmask
)->sin_addr
.s_addr
= 0L;
1369 ((struct sockaddr_in
*) &rt
.rt_gateway
)->sin_addr
.s_addr
= gateway
;
1371 rt
.rt_flags
= RTF_UP
| RTF_GATEWAY
| RTF_DEFAULT
;
1372 if (ioctl(sock_fd
, SIOCADDRT
, &rt
) < 0)
1374 if ( ! ok_error ( errno
))
1376 syslog (LOG_ERR
, "default route ioctl(SIOCADDRT): %m(%d)", errno
);
1381 default_route_gateway
= gateway
;
1385 /********************************************************************
1387 * cifdefaultroute - delete a default route through the address given.
1390 int cifdefaultroute (int unit
, u_int32_t ouraddr
, u_int32_t gateway
)
1394 default_route_gateway
= 0;
1396 memset (&rt
, '\0', sizeof (rt
));
1397 SET_SA_FAMILY (rt
.rt_dst
, AF_INET
);
1398 SET_SA_FAMILY (rt
.rt_gateway
, AF_INET
);
1400 if (kernel_version
> KVERSION(2,1,0)) {
1401 SET_SA_FAMILY (rt
.rt_genmask
, AF_INET
);
1402 ((struct sockaddr_in
*) &rt
.rt_genmask
)->sin_addr
.s_addr
= 0L;
1405 ((struct sockaddr_in
*) &rt
.rt_gateway
)->sin_addr
.s_addr
= gateway
;
1407 rt
.rt_flags
= RTF_UP
| RTF_GATEWAY
| RTF_DEFAULT
;
1408 if (ioctl(sock_fd
, SIOCDELRT
, &rt
) < 0 && errno
!= ESRCH
)
1412 if ( ! ok_error ( errno
))
1415 "default route ioctl(SIOCDELRT): %m(%d)", errno
);
1424 /********************************************************************
1426 * sifproxyarp - Make a proxy ARP entry for the peer.
1429 int sifproxyarp (int unit
, u_int32_t his_adr
)
1431 struct arpreq arpreq
;
1433 if (has_proxy_arp
== 0)
1435 memset (&arpreq
, '\0', sizeof(arpreq
));
1437 SET_SA_FAMILY(arpreq
.arp_pa
, AF_INET
);
1438 ((struct sockaddr_in
*) &arpreq
.arp_pa
)->sin_addr
.s_addr
= his_adr
;
1439 arpreq
.arp_flags
= ATF_PERM
| ATF_PUBL
;
1441 * Get the hardware address of an interface on the same subnet
1442 * as our local address.
1444 if (!get_ether_addr(his_adr
, &arpreq
.arp_ha
, arpreq
.arp_dev
))
1446 syslog(LOG_ERR
, "Cannot determine ethernet address for proxy ARP");
1450 if (ioctl(sock_fd
, SIOCSARP
, (caddr_t
)&arpreq
) < 0)
1452 if ( ! ok_error ( errno
))
1454 syslog(LOG_ERR
, "ioctl(SIOCSARP): %m(%d)", errno
);
1460 proxy_arp_addr
= his_adr
;
1465 /********************************************************************
1467 * cifproxyarp - Delete the proxy ARP entry for the peer.
1470 int cifproxyarp (int unit
, u_int32_t his_adr
)
1472 struct arpreq arpreq
;
1474 if (has_proxy_arp
== 1)
1476 memset (&arpreq
, '\0', sizeof(arpreq
));
1477 SET_SA_FAMILY(arpreq
.arp_pa
, AF_INET
);
1478 ((struct sockaddr_in
*) &arpreq
.arp_pa
)->sin_addr
.s_addr
= his_adr
;
1479 arpreq
.arp_flags
= ATF_PERM
| ATF_PUBL
;
1481 if (ioctl(sock_fd
, SIOCDARP
, (caddr_t
)&arpreq
) < 0)
1483 if ( ! ok_error ( errno
))
1485 syslog(LOG_WARNING
, "ioctl(SIOCDARP): %m(%d)", errno
);
1494 /********************************************************************
1496 * get_ether_addr - get the hardware address of an interface on the
1497 * the same subnet as ipaddr.
1500 static int get_ether_addr (u_int32_t ipaddr
,
1501 struct sockaddr
*hwaddr
,
1504 struct ifreq
*ifr
, *ifend
;
1505 u_int32_t ina
, mask
;
1508 struct ifreq ifs
[MAX_IFS
];
1510 ifc
.ifc_len
= sizeof(ifs
);
1512 if (ioctl(sock_fd
, SIOCGIFCONF
, &ifc
) < 0)
1514 if ( ! ok_error ( errno
))
1516 syslog(LOG_ERR
, "ioctl(SIOCGIFCONF): %m(%d)", errno
);
1521 SYSDEBUG ((LOG_DEBUG
, "proxy arp: scanning %d interfaces for IP %s",
1522 ifc
.ifc_len
/ sizeof(struct ifreq
), ip_ntoa(ipaddr
)));
1524 * Scan through looking for an interface with an Internet
1525 * address on the same subnet as `ipaddr'.
1527 ifend
= ifs
+ (ifc
.ifc_len
/ sizeof(struct ifreq
));
1528 for (ifr
= ifc
.ifc_req
; ifr
< ifend
; ifr
++)
1530 if (ifr
->ifr_addr
.sa_family
== AF_INET
)
1532 ina
= ((struct sockaddr_in
*) &ifr
->ifr_addr
)->sin_addr
.s_addr
;
1533 strncpy(ifreq
.ifr_name
, ifr
->ifr_name
, sizeof(ifreq
.ifr_name
));
1534 SYSDEBUG ((LOG_DEBUG
, "proxy arp: examining interface %s",
1537 * Check that the interface is up, and not point-to-point
1540 if (ioctl(sock_fd
, SIOCGIFFLAGS
, &ifreq
) < 0)
1545 if (((ifreq
.ifr_flags
^ FLAGS_GOOD
) & FLAGS_MASK
) != 0)
1550 * Get its netmask and check that it's on the right subnet.
1552 if (ioctl(sock_fd
, SIOCGIFNETMASK
, &ifreq
) < 0)
1557 mask
= ((struct sockaddr_in
*) &ifreq
.ifr_addr
)->sin_addr
.s_addr
;
1558 SYSDEBUG ((LOG_DEBUG
, "proxy arp: interface addr %s mask %lx",
1559 ip_ntoa(ina
), ntohl(mask
)));
1561 if (((ipaddr
^ ina
) & mask
) != 0)
1574 memcpy (name
, ifreq
.ifr_name
, sizeof(ifreq
.ifr_name
));
1575 syslog(LOG_INFO
, "found interface %s for proxy arp", name
);
1577 * Now get the hardware address.
1579 memset (&ifreq
.ifr_hwaddr
, 0, sizeof (struct sockaddr
));
1580 if (ioctl (sock_fd
, SIOCGIFHWADDR
, &ifreq
) < 0)
1582 syslog(LOG_ERR
, "SIOCGIFHWADDR(%s): %m(%d)", ifreq
.ifr_name
, errno
);
1588 sizeof (struct sockaddr
));
1590 SYSDEBUG ((LOG_DEBUG
,
1591 "proxy arp: found hwaddr %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x",
1592 (int) ((unsigned char *) &hwaddr
->sa_data
)[0],
1593 (int) ((unsigned char *) &hwaddr
->sa_data
)[1],
1594 (int) ((unsigned char *) &hwaddr
->sa_data
)[2],
1595 (int) ((unsigned char *) &hwaddr
->sa_data
)[3],
1596 (int) ((unsigned char *) &hwaddr
->sa_data
)[4],
1597 (int) ((unsigned char *) &hwaddr
->sa_data
)[5],
1598 (int) ((unsigned char *) &hwaddr
->sa_data
)[6],
1599 (int) ((unsigned char *) &hwaddr
->sa_data
)[7]));
1603 /********************************************************************
1605 * Return user specified netmask, modified by any mask we might determine
1606 * for address `addr' (in network byte order).
1607 * Here we scan through the system's list of interfaces, looking for
1608 * any non-point-to-point interfaces which might appear to be on the same
1609 * network as `addr'. If we find any, we OR in their netmask to the
1610 * user-specified netmask.
1613 u_int32_t
GetMask (u_int32_t addr
)
1615 u_int32_t mask
, nmask
, ina
;
1616 struct ifreq
*ifr
, *ifend
, ifreq
;
1618 struct ifreq ifs
[MAX_IFS
];
1622 if (IN_CLASSA(addr
)) /* determine network mask for address class */
1624 nmask
= IN_CLASSA_NET
;
1628 if (IN_CLASSB(addr
))
1630 nmask
= IN_CLASSB_NET
;
1634 nmask
= IN_CLASSC_NET
;
1638 /* class D nets are disallowed by bad_ip_adrs */
1639 mask
= netmask
| htonl(nmask
);
1641 * Scan through the system's network interfaces.
1643 ifc
.ifc_len
= sizeof(ifs
);
1645 if (ioctl(sock_fd
, SIOCGIFCONF
, &ifc
) < 0)
1647 if ( ! ok_error ( errno
))
1649 syslog(LOG_WARNING
, "ioctl(SIOCGIFCONF): %m(%d)", errno
);
1654 ifend
= (struct ifreq
*) (ifc
.ifc_buf
+ ifc
.ifc_len
);
1655 for (ifr
= ifc
.ifc_req
; ifr
< ifend
; ifr
++)
1658 * Check the interface's internet address.
1660 if (ifr
->ifr_addr
.sa_family
!= AF_INET
)
1664 ina
= ((struct sockaddr_in
*) &ifr
->ifr_addr
)->sin_addr
.s_addr
;
1665 if (((ntohl(ina
) ^ addr
) & nmask
) != 0)
1670 * Check that the interface is up, and not point-to-point nor loopback.
1672 strncpy(ifreq
.ifr_name
, ifr
->ifr_name
, sizeof(ifreq
.ifr_name
));
1673 if (ioctl(sock_fd
, SIOCGIFFLAGS
, &ifreq
) < 0)
1678 if (((ifreq
.ifr_flags
^ FLAGS_GOOD
) & FLAGS_MASK
) != 0)
1683 * Get its netmask and OR it into our mask.
1685 if (ioctl(sock_fd
, SIOCGIFNETMASK
, &ifreq
) < 0)
1689 mask
|= ((struct sockaddr_in
*)&ifreq
.ifr_addr
)->sin_addr
.s_addr
;
1695 /********************************************************************
1697 * Internal routine to decode the version.modification.patch level
1700 static void decode_version (char *buf
, int *version
,
1701 int *modification
, int *patch
)
1703 *version
= (int) strtoul (buf
, &buf
, 10);
1710 *modification
= (int) strtoul (buf
, &buf
, 10);
1714 *patch
= (int) strtoul (buf
, &buf
, 10);
1726 /********************************************************************
1728 * Procedure to determine if the PPP line discipline is registered.
1732 ppp_registered(void)
1738 local_fd
= open(devnam
, O_NONBLOCK
| O_RDWR
, 0);
1741 syslog(LOG_ERR
, "Failed to open %s: %m(%d)", devnam
, errno
);
1745 initfdflags
= fcntl(local_fd
, F_GETFL
);
1746 if (initfdflags
== -1)
1748 syslog(LOG_ERR
, "Couldn't get device fd flags: %m(%d)", errno
);
1753 initfdflags
&= ~O_NONBLOCK
;
1754 fcntl(local_fd
, F_SETFL
, initfdflags
);
1756 * Read the initial line dicipline and try to put the device into the
1759 if (ioctl(local_fd
, TIOCGETD
, &init_disc
) < 0)
1761 syslog(LOG_ERR
, "ioctl(TIOCGETD): %m(%d)", errno
);
1766 if (ioctl(local_fd
, TIOCSETD
, &ppp_disc
) < 0)
1768 syslog(LOG_ERR
, "ioctl(TIOCSETD): %m(%d)", errno
);
1773 if (ioctl(local_fd
, TIOCSETD
, &init_disc
) < 0)
1775 syslog(LOG_ERR
, "ioctl(TIOCSETD): %m(%d)", errno
);
1784 /********************************************************************
1786 * ppp_available - check whether the system has any ppp interfaces
1787 * (in fact we check whether we can do an ioctl on ppp0).
1790 int ppp_available(void)
1795 int my_version
, my_modification
, my_patch
;
1796 extern char *no_ppp_msg
;
1798 * Open a socket for doing the ioctl operations.
1800 s
= socket(AF_INET
, SOCK_DGRAM
, 0);
1806 strncpy (ifr
.ifr_name
, "ppp0", sizeof (ifr
.ifr_name
));
1807 ok
= ioctl(s
, SIOCGIFFLAGS
, (caddr_t
) &ifr
) >= 0;
1809 * If the device did not exist then attempt to create one by putting the
1810 * current tty into the PPP discipline. If this works then obtain the
1811 * flags for the device again.
1815 if (ppp_registered())
1817 strncpy (ifr
.ifr_name
, "ppp0", sizeof (ifr
.ifr_name
));
1818 ok
= ioctl(s
, SIOCGIFFLAGS
, (caddr_t
) &ifr
) >= 0;
1822 * Ensure that the hardware address is for PPP and not something else
1826 ok
= ioctl (s
, SIOCGIFHWADDR
, (caddr_t
) &ifr
) >= 0;
1829 if (ok
&& ((ifr
.ifr_hwaddr
.sa_family
& ~0xFF) != ARPHRD_PPP
))
1837 "This system lacks kernel support for PPP. This could be because\n"
1838 "the PPP kernel module is not loaded, or because the kernel is\n"
1839 "not configured for PPP. See the README.linux file in the\n"
1840 "ppp-2.3.6 distribution.\n";
1843 * This is the PPP device. Validate the version of the driver at this
1844 * point to ensure that this program will work with the driver.
1848 char abBuffer
[1024];
1850 ifr
.ifr_data
= abBuffer
;
1851 size
= ioctl (s
, SIOCGPPPVER
, (caddr_t
) &ifr
);
1853 syslog(LOG_ERR
, "Couldn't read driver version: %m");
1855 no_ppp_msg
= "Sorry, couldn't verify kernel driver version\n";
1858 decode_version(abBuffer
,
1860 &driver_modification
,
1863 * Validate the version of the driver against the version that we used.
1865 decode_version(VERSION
,
1870 /* The version numbers must match */
1871 if (driver_version
!= my_version
)
1876 /* The modification levels must be legal */
1877 if (driver_modification
< 3)
1879 if (driver_modification
>= 2) {
1880 /* we can cope with 2.2.0 and above */
1890 sprintf (route_buffer
,
1891 "Sorry - PPP driver version %d.%d.%d is out of date\n",
1892 driver_version
, driver_modification
, driver_patch
);
1894 no_ppp_msg
= route_buffer
;
1901 /********************************************************************
1903 * Update the wtmp file with the appropriate user name and tty device.
1906 void logwtmp (const char *line
, const char *name
, const char *host
)
1909 struct utmp ut
, *utp
;
1910 pid_t mypid
= getpid();
1912 * Update the signon database for users.
1913 * Christoph Lameter: Copied from poeigl-1.36 Jan 3, 1996
1915 utmpname(_PATH_UTMP
);
1917 while ((utp
= getutent()) && (utp
->ut_pid
!= mypid
))
1920 /* Is this call really necessary? There is another one after the 'put' */
1925 memcpy(&ut
, utp
, sizeof(ut
));
1929 /* some gettys/telnetds don't initialize utmp... */
1930 memset(&ut
, 0, sizeof(ut
));
1933 if (ut
.ut_id
[0] == 0)
1935 strncpy(ut
.ut_id
, line
+ 3, sizeof(ut
.ut_id
));
1938 strncpy(ut
.ut_user
, name
, sizeof(ut
.ut_user
));
1939 strncpy(ut
.ut_line
, line
, sizeof(ut
.ut_line
));
1943 ut
.ut_type
= USER_PROCESS
;
1946 /* Insert the host name if one is supplied */
1949 strncpy (ut
.ut_host
, host
, sizeof(ut
.ut_host
));
1952 /* Insert the IP address of the remote system if IP is enabled */
1953 if (ipcp_protent
.enabled_flag
&& ipcp_hisoptions
[0].neg_addr
)
1955 memcpy (&ut
.ut_addr
, (char *) &ipcp_hisoptions
[0].hisaddr
,
1956 sizeof(ut
.ut_addr
));
1959 /* CL: Makes sure that the logout works */
1960 if (*host
== 0 && *name
==0)
1968 * Update the wtmp file.
1970 wtmp
= open(_PATH_WTMP
, O_APPEND
|O_WRONLY
);
1973 flock(wtmp
, LOCK_EX
);
1975 /* we really should check for error on the write for a full disk! */
1976 write (wtmp
, (char *)&ut
, sizeof(ut
));
1979 flock(wtmp
, LOCK_UN
);
1983 /********************************************************************
1984 * Code for locking/unlocking the serial device.
1985 * This code is derived from chat.c.
1989 * lock - create a lock file for the named device
1992 int lock (char *dev
)
1996 lock_file
= malloc(strlen(dev
) + 1);
1997 if (lock_file
== NULL
)
1999 novm("lock file name");
2001 strcpy (lock_file
, dev
);
2002 result
= mklock (dev
, (void *) 0);
2006 syslog (LOG_NOTICE
, "Device %s is locked by pid %d", dev
, result
);
2015 syslog (LOG_ERR
, "Can't create lock file %s", lock_file
);
2023 char hdb_lock_buffer
[12];
2028 p
= strrchr(dev
, '/');
2034 lock_file
= malloc(strlen(LOCK_PREFIX
) + strlen(dev
) + 1);
2035 if (lock_file
== NULL
)
2037 novm("lock file name");
2040 strcpy (lock_file
, LOCK_PREFIX
);
2041 strcat (lock_file
, dev
);
2043 * Attempt to create the lock file at this point.
2047 fd
= open(lock_file
, O_EXCL
| O_CREAT
| O_RDWR
, 0644);
2052 sprintf (hdb_lock_buffer
, "%010d\n", pid
);
2053 write (fd
, hdb_lock_buffer
, 11);
2055 write(fd
, &pid
, sizeof (pid
));
2061 * If the file exists then check to see if the pid is stale
2063 if (errno
== EEXIST
)
2065 fd
= open(lock_file
, O_RDONLY
, 0);
2068 if (errno
== ENOENT
) /* This is just a timing problem. */
2075 /* Read the lock file to find out who has the device locked */
2076 n
= read (fd
, hdb_lock_buffer
, 11);
2080 syslog(LOG_ERR
, "Can't read pid from lock file %s", lock_file
);
2084 /* See the process still exists. */
2088 hdb_lock_buffer
[n
] = '\0';
2089 sscanf (hdb_lock_buffer
, " %d", &pid
);
2091 pid
= ((int *) hdb_lock_buffer
)[0];
2093 if (pid
== 0 || pid
== getpid()
2094 || (kill(pid
, 0) == -1 && errno
== ESRCH
))
2100 /* If the process does not exist then try to remove the lock */
2101 if (n
== 0 && unlink (lock_file
) == 0)
2103 syslog (LOG_NOTICE
, "Removed stale lock on %s (pid %d)",
2108 syslog (LOG_NOTICE
, "Device %s is locked by pid %d", dev
, pid
);
2112 syslog(LOG_ERR
, "Can't create lock file %s: %m(%d)", lock_file
, errno
);
2123 /********************************************************************
2125 * unlock - remove our lockfile
2133 (void) rmlock (lock_file
, (void *) 0);
2142 /********************************************************************
2144 * sifvjcomp - config tcp header compression
2147 int sifvjcomp (int u
, int vjcomp
, int cidcomp
, int maxcid
)
2149 u_int x
= get_flags();
2153 if (ioctl (ppp_fd
, PPPIOCSMAXCID
, (caddr_t
) &maxcid
) < 0)
2155 if (! ok_error (errno
))
2157 syslog (LOG_ERR
, "ioctl(PPPIOCSMAXCID): %m(%d)", errno
);
2163 x
= vjcomp
? x
| SC_COMP_TCP
: x
&~ SC_COMP_TCP
;
2164 x
= cidcomp
? x
& ~SC_NO_TCP_CCID
: x
| SC_NO_TCP_CCID
;
2170 /********************************************************************
2172 * sifup - Config the interface up and enable IP packets to pass.
2179 memset (&ifr
, '\0', sizeof (ifr
));
2180 strncpy(ifr
.ifr_name
, ifname
, sizeof (ifr
.ifr_name
));
2181 if (ioctl(sock_fd
, SIOCGIFFLAGS
, (caddr_t
) &ifr
) < 0)
2183 if (! ok_error (errno
))
2185 syslog(LOG_ERR
, "ioctl (SIOCGIFFLAGS): %m(%d)", errno
);
2190 ifr
.ifr_flags
|= (IFF_UP
| IFF_POINTOPOINT
);
2191 if (ioctl(sock_fd
, SIOCSIFFLAGS
, (caddr_t
) &ifr
) < 0)
2193 if (! ok_error (errno
))
2195 syslog(LOG_ERR
, "ioctl(SIOCSIFFLAGS): %m(%d)", errno
);
2203 /********************************************************************
2205 * sifdown - Config the interface down and disable IP.
2214 memset (&ifr
, '\0', sizeof (ifr
));
2215 strncpy(ifr
.ifr_name
, ifname
, sizeof (ifr
.ifr_name
));
2216 if (ioctl(sock_fd
, SIOCGIFFLAGS
, (caddr_t
) &ifr
) < 0)
2218 if (! ok_error (errno
))
2220 syslog(LOG_ERR
, "ioctl (SIOCGIFFLAGS): %m(%d)", errno
);
2225 ifr
.ifr_flags
&= ~IFF_UP
;
2226 ifr
.ifr_flags
|= IFF_POINTOPOINT
;
2227 if (ioctl(sock_fd
, SIOCSIFFLAGS
, (caddr_t
) &ifr
) < 0)
2229 if (! ok_error (errno
))
2231 syslog(LOG_ERR
, "ioctl(SIOCSIFFLAGS): %m(%d)", errno
);
2238 /********************************************************************
2240 * sifaddr - Config the interface IP addresses and netmask.
2243 int sifaddr (int unit
, u_int32_t our_adr
, u_int32_t his_adr
,
2249 memset (&ifr
, '\0', sizeof (ifr
));
2250 memset (&rt
, '\0', sizeof (rt
));
2252 SET_SA_FAMILY (ifr
.ifr_addr
, AF_INET
);
2253 SET_SA_FAMILY (ifr
.ifr_dstaddr
, AF_INET
);
2254 SET_SA_FAMILY (ifr
.ifr_netmask
, AF_INET
);
2256 strncpy (ifr
.ifr_name
, ifname
, sizeof (ifr
.ifr_name
));
2258 * Set our IP address
2260 ((struct sockaddr_in
*) &ifr
.ifr_addr
)->sin_addr
.s_addr
= our_adr
;
2261 if (ioctl(sock_fd
, SIOCSIFADDR
, (caddr_t
) &ifr
) < 0)
2263 if (errno
!= EEXIST
)
2265 if (! ok_error (errno
))
2267 syslog (LOG_ERR
, "ioctl(SIOCAIFADDR): %m(%d)", errno
);
2272 syslog (LOG_WARNING
, "ioctl(SIOCAIFADDR): Address already exists");
2277 * Set the gateway address
2279 ((struct sockaddr_in
*) &ifr
.ifr_dstaddr
)->sin_addr
.s_addr
= his_adr
;
2280 if (ioctl(sock_fd
, SIOCSIFDSTADDR
, (caddr_t
) &ifr
) < 0)
2282 if (! ok_error (errno
))
2284 syslog (LOG_ERR
, "ioctl(SIOCSIFDSTADDR): %m(%d)", errno
);
2290 * For recent kernels, force the netmask to 255.255.255.255.
2292 if (kernel_version
>= KVERSION(2,1,16))
2296 ((struct sockaddr_in
*) &ifr
.ifr_netmask
)->sin_addr
.s_addr
= net_mask
;
2297 if (ioctl(sock_fd
, SIOCSIFNETMASK
, (caddr_t
) &ifr
) < 0)
2299 if (! ok_error (errno
))
2301 syslog (LOG_ERR
, "ioctl(SIOCSIFNETMASK): %m(%d)", errno
);
2307 * Add the device route
2309 if (kernel_version
< KVERSION(2,1,16)) {
2310 SET_SA_FAMILY (rt
.rt_dst
, AF_INET
);
2311 SET_SA_FAMILY (rt
.rt_gateway
, AF_INET
);
2314 ((struct sockaddr_in
*) &rt
.rt_gateway
)->sin_addr
.s_addr
= 0L;
2315 ((struct sockaddr_in
*) &rt
.rt_dst
)->sin_addr
.s_addr
= his_adr
;
2316 rt
.rt_flags
= RTF_UP
| RTF_HOST
;
2318 if (kernel_version
> KVERSION(2,1,0)) {
2319 SET_SA_FAMILY (rt
.rt_genmask
, AF_INET
);
2320 ((struct sockaddr_in
*) &rt
.rt_genmask
)->sin_addr
.s_addr
= -1L;
2323 if (ioctl(sock_fd
, SIOCADDRT
, &rt
) < 0)
2325 if (! ok_error (errno
))
2327 syslog (LOG_ERR
, "ioctl(SIOCADDRT) device route: %m(%d)", errno
);
2335 /********************************************************************
2337 * cifaddr - Clear the interface IP addresses, and delete routes
2338 * through the interface if possible.
2341 int cifaddr (int unit
, u_int32_t our_adr
, u_int32_t his_adr
)
2345 if (kernel_version
< KVERSION(2,1,16)) {
2347 * Delete the route through the device
2349 memset (&rt
, '\0', sizeof (rt
));
2351 SET_SA_FAMILY (rt
.rt_dst
, AF_INET
);
2352 SET_SA_FAMILY (rt
.rt_gateway
, AF_INET
);
2355 ((struct sockaddr_in
*) &rt
.rt_gateway
)->sin_addr
.s_addr
= 0;
2356 ((struct sockaddr_in
*) &rt
.rt_dst
)->sin_addr
.s_addr
= his_adr
;
2357 rt
.rt_flags
= RTF_UP
| RTF_HOST
;
2359 if (kernel_version
> KVERSION(2,1,0)) {
2360 SET_SA_FAMILY (rt
.rt_genmask
, AF_INET
);
2361 ((struct sockaddr_in
*) &rt
.rt_genmask
)->sin_addr
.s_addr
= -1L;
2364 if (ioctl(sock_fd
, SIOCDELRT
, &rt
) < 0 && errno
!= ESRCH
)
2366 if (still_ppp() && ! ok_error (errno
))
2368 syslog (LOG_ERR
, "ioctl(SIOCDELRT) device route: %m(%d)", errno
);
2376 /********************************************************************
2378 * open_loopback - open the device we use for getting packets
2379 * in demand mode. Under Linux, we use our existing fd
2380 * to the ppp driver.
2383 open_ppp_loopback(void)
2386 struct termios tios
;
2389 for (i
= 0; i
< 64; ++i
) {
2390 sprintf(loop_name
, "/dev/pty%c%x", 'p' + i
/ 16, i
% 16);
2391 master_fd
= open(loop_name
, O_RDWR
| O_NOCTTY
, 0);
2395 if (master_fd
< 0) {
2396 syslog(LOG_ERR
, "No free pty for loopback");
2399 SYSDEBUG((LOG_DEBUG
, "using %s for loopback", loop_name
));
2401 slave_fd
= open(loop_name
, O_RDWR
| O_NOCTTY
, 0);
2403 syslog(LOG_ERR
, "Couldn't open %s for loopback: %m", loop_name
);
2407 set_ppp_fd(slave_fd
);
2409 if (tcgetattr(ppp_fd
, &tios
) == 0)
2411 tios
.c_cflag
&= ~(CSIZE
| CSTOPB
| PARENB
);
2412 tios
.c_cflag
|= CS8
| CREAD
;
2413 tios
.c_iflag
= IGNPAR
| CLOCAL
;
2416 if (tcsetattr(ppp_fd
, TCSAFLUSH
, &tios
) < 0)
2418 syslog(LOG_WARNING
, "couldn't set attributes on loopback: %m(%d)", errno
);
2422 flags
= fcntl(master_fd
, F_GETFL
);
2424 fcntl(master_fd
, F_SETFL
, flags
| O_NONBLOCK
) == -1)
2426 syslog(LOG_WARNING
, "couldn't set master loopback to nonblock: %m(%d)", errno
);
2429 flags
= fcntl(ppp_fd
, F_GETFL
);
2431 fcntl(ppp_fd
, F_SETFL
, flags
| O_NONBLOCK
) == -1)
2433 syslog(LOG_WARNING
, "couldn't set slave loopback to nonblock: %m(%d)", errno
);
2436 if (ioctl(ppp_fd
, TIOCSETD
, &ppp_disc
) < 0)
2438 syslog(LOG_ERR
, "ioctl(TIOCSETD): %m(%d)", errno
);
2442 * Find out which interface we were given.
2444 if (ioctl(ppp_fd
, PPPIOCGUNIT
, &ifunit
) < 0)
2446 syslog(LOG_ERR
, "ioctl(PPPIOCGUNIT): %m(%d)", errno
);
2450 * Enable debug in the driver if requested.
2452 set_kdebugflag (kdebugflag
);
2455 /********************************************************************
2457 * restore_loop - reattach the ppp unit to the loopback.
2459 * The kernel ppp driver automatically reattaches the ppp unit to
2460 * the loopback if the serial port is set to a line discipline other
2461 * than ppp, or if it detects a modem hangup. The former will happen
2462 * in disestablish_ppp if the latter hasn't already happened, so we
2463 * shouldn't need to do anything.
2465 * Just to be sure, set the real serial port to the normal discipline.
2471 if (ppp_fd
!= slave_fd
)
2473 (void) ioctl(ppp_fd
, TIOCSETD
, &tty_disc
);
2474 set_ppp_fd(slave_fd
);
2478 /********************************************************************
2480 * sifnpmode - Set the mode for handling packets for a given NP.
2484 sifnpmode(u
, proto
, mode
)
2491 npi
.protocol
= proto
;
2493 if (ioctl(ppp_fd
, PPPIOCSNPMODE
, (caddr_t
) &npi
) < 0)
2495 if (! ok_error (errno
))
2497 syslog(LOG_ERR
, "ioctl(PPPIOCSNPMODE, %d, %d): %m(%d)",
2498 proto
, mode
, errno
);
2499 syslog(LOG_ERR
, "ppp_fd=%d slave_fd=%d\n", ppp_fd
, slave_fd
);
2507 /********************************************************************
2509 * sipxfaddr - Config the interface IPX networknumber
2512 int sipxfaddr (int unit
, unsigned long int network
, unsigned char * node
)
2519 struct sockaddr_ipx
*sipx
= (struct sockaddr_ipx
*) &ifr
.ifr_addr
;
2521 skfd
= socket (AF_IPX
, SOCK_DGRAM
, 0);
2524 if (! ok_error (errno
))
2526 syslog (LOG_DEBUG
, "socket(AF_IPX): %m(%d)", errno
);
2532 memset (&ifr
, '\0', sizeof (ifr
));
2533 strcpy (ifr
.ifr_name
, ifname
);
2535 memcpy (sipx
->sipx_node
, node
, IPX_NODE_LEN
);
2536 sipx
->sipx_family
= AF_IPX
;
2537 sipx
->sipx_port
= 0;
2538 sipx
->sipx_network
= htonl (network
);
2539 sipx
->sipx_type
= IPX_FRAME_ETHERII
;
2540 sipx
->sipx_action
= IPX_CRTITF
;
2542 * Set the IPX device
2544 if (ioctl(skfd
, SIOCSIFADDR
, (caddr_t
) &ifr
) < 0)
2547 if (errno
!= EEXIST
)
2549 if (! ok_error (errno
))
2552 "ioctl(SIOCAIFADDR, CRTITF): %m(%d)", errno
);
2557 syslog (LOG_WARNING
,
2558 "ioctl(SIOCAIFADDR, CRTITF): Address already exists");
2567 /********************************************************************
2569 * cipxfaddr - Clear the information for the IPX network. The IPX routes
2570 * are removed and the device is no longer able to pass IPX
2574 int cipxfaddr (int unit
)
2581 struct sockaddr_ipx
*sipx
= (struct sockaddr_ipx
*) &ifr
.ifr_addr
;
2583 skfd
= socket (AF_IPX
, SOCK_DGRAM
, 0);
2586 if (! ok_error (errno
))
2588 syslog (LOG_DEBUG
, "socket(AF_IPX): %m(%d)", errno
);
2594 memset (&ifr
, '\0', sizeof (ifr
));
2595 strcpy (ifr
.ifr_name
, ifname
);
2597 sipx
->sipx_type
= IPX_FRAME_ETHERII
;
2598 sipx
->sipx_action
= IPX_DLTITF
;
2599 sipx
->sipx_family
= AF_IPX
;
2601 * Set the IPX device
2603 if (ioctl(skfd
, SIOCSIFADDR
, (caddr_t
) &ifr
) < 0)
2605 if (! ok_error (errno
))
2608 "ioctl(SIOCAIFADDR, IPX_DLTITF): %m(%d)", errno
);
2619 * daemon - Detach us from controlling terminal session.
2622 daemon(nochdir
, noclose
)
2623 int nochdir
, noclose
;
2627 if ((pid
= fork()) < 0)
2630 exit(0); /* parent dies */
2635 fclose(stdin
); /* don't need stdin, stdout, stderr */
2643 * Use the hostname as part of the random number seed.
2652 for (p
= hostname
; *p
!= 0; ++p
)
2657 /********************************************************************
2659 * sys_check_options - check the options that the user specified
2663 sys_check_options(void)
2666 struct stat stat_buf
;
2668 * Disable the IPX protocol if the support is not present in the kernel.
2669 * If we disable it then ensure that IP support is enabled.
2671 while (ipxcp_protent
.enabled_flag
)
2673 if (path_to_procfs())
2675 strcat (route_buffer
, "/net/ipx_interface");
2676 if (lstat (route_buffer
, &stat_buf
) >= 0)
2681 syslog (LOG_ERR
, "IPX support is not present in the kernel\n");
2682 ipxcp_protent
.enabled_flag
= 0;
2683 ipcp_protent
.enabled_flag
= 1;
2687 if (demand
&& driver_is_old
) {
2688 option_error("demand dialling is not supported by kernel driver version "
2689 "%d.%d.%d", driver_version
, driver_modification
,