2007-06-21 12:57:43 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2007-06-20 20:53:03 +05:30
|
|
|
/*
|
|
|
|
* Stripped down version of net-tools for busybox.
|
|
|
|
*
|
|
|
|
* Author: Ignacio Garcia Perez (iggarpe at gmail dot com)
|
|
|
|
*
|
|
|
|
* License: GPLv2 or later, see LICENSE file in this tarball.
|
|
|
|
*
|
|
|
|
* There are some differences from the standard net-tools slattach:
|
|
|
|
*
|
|
|
|
* - The -l option is not supported.
|
|
|
|
*
|
|
|
|
* - The -F options allows disabling of RTS/CTS flow control.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libbb.h"
|
2007-06-21 12:57:43 +05:30
|
|
|
#include "libiproute/utils.h" /* invarg() */
|
2007-06-20 20:53:03 +05:30
|
|
|
|
|
|
|
struct globals {
|
|
|
|
int handle;
|
|
|
|
int saved_disc;
|
|
|
|
struct termios saved_state;
|
|
|
|
};
|
|
|
|
#define G (*(struct globals*)&bb_common_bufsiz1)
|
|
|
|
#define handle (G.handle )
|
|
|
|
#define saved_disc (G.saved_disc )
|
|
|
|
#define saved_state (G.saved_state )
|
2008-06-25 15:23:17 +05:30
|
|
|
#define INIT_G() do { } while (0)
|
2007-06-20 20:53:03 +05:30
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Save tty state and line discipline
|
|
|
|
*
|
|
|
|
* It is fine here to bail out on errors, since we haven modified anything yet
|
|
|
|
*/
|
|
|
|
static void save_state(void)
|
|
|
|
{
|
|
|
|
/* Save line status */
|
|
|
|
if (tcgetattr(handle, &saved_state) < 0)
|
|
|
|
bb_perror_msg_and_die("get state");
|
|
|
|
|
|
|
|
/* Save line discipline */
|
2007-07-15 03:37:14 +05:30
|
|
|
xioctl(handle, TIOCGETD, &saved_disc);
|
2007-06-20 20:53:03 +05:30
|
|
|
}
|
|
|
|
|
2008-02-24 19:06:01 +05:30
|
|
|
static int set_termios_state_or_warn(struct termios *state)
|
2007-06-21 12:57:43 +05:30
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = tcsetattr(handle, TCSANOW, state);
|
|
|
|
if (ret < 0) {
|
|
|
|
bb_perror_msg("set state");
|
|
|
|
return 1; /* used as exitcode */
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-06-20 20:53:03 +05:30
|
|
|
/*
|
|
|
|
* Restore state and line discipline for ALL managed ttys
|
|
|
|
*
|
|
|
|
* Restoring ALL managed ttys is the only way to have a single
|
|
|
|
* hangup delay.
|
|
|
|
*
|
|
|
|
* Go on after errors: we want to restore as many controlled ttys
|
|
|
|
* as possible.
|
|
|
|
*/
|
2008-07-05 14:48:54 +05:30
|
|
|
static void restore_state_and_exit(int exitcode) NORETURN;
|
2007-06-20 20:53:03 +05:30
|
|
|
static void restore_state_and_exit(int exitcode)
|
|
|
|
{
|
|
|
|
struct termios state;
|
|
|
|
|
|
|
|
/* Restore line discipline */
|
2007-07-15 03:37:14 +05:30
|
|
|
if (ioctl_or_warn(handle, TIOCSETD, &saved_disc) < 0) {
|
2007-06-20 20:53:03 +05:30
|
|
|
exitcode = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Hangup */
|
|
|
|
memcpy(&state, &saved_state, sizeof(state));
|
|
|
|
cfsetispeed(&state, B0);
|
|
|
|
cfsetospeed(&state, B0);
|
2008-02-24 19:06:01 +05:30
|
|
|
if (set_termios_state_or_warn(&state))
|
2007-06-20 20:53:03 +05:30
|
|
|
exitcode = 1;
|
|
|
|
sleep(1);
|
|
|
|
|
|
|
|
/* Restore line status */
|
2008-02-24 19:06:01 +05:30
|
|
|
if (set_termios_state_or_warn(&saved_state))
|
2007-06-21 12:57:43 +05:30
|
|
|
exit(EXIT_FAILURE);
|
2007-06-20 20:53:03 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
close(handle);
|
|
|
|
|
|
|
|
exit(exitcode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set tty state, line discipline and encapsulation
|
|
|
|
*/
|
|
|
|
static void set_state(struct termios *state, int encap)
|
|
|
|
{
|
|
|
|
int disc;
|
|
|
|
|
|
|
|
/* Set line status */
|
2008-02-24 19:06:01 +05:30
|
|
|
if (set_termios_state_or_warn(state))
|
2007-06-20 20:53:03 +05:30
|
|
|
goto bad;
|
|
|
|
/* Set line discliple (N_SLIP always) */
|
|
|
|
disc = N_SLIP;
|
2007-07-15 03:37:14 +05:30
|
|
|
if (ioctl_or_warn(handle, TIOCSETD, &disc) < 0) {
|
2007-06-20 20:53:03 +05:30
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set encapsulation (SLIP, CSLIP, etc) */
|
2007-07-15 03:37:14 +05:30
|
|
|
if (ioctl_or_warn(handle, SIOCSIFENCAP, &encap) < 0) {
|
2007-06-20 20:53:03 +05:30
|
|
|
bad:
|
2008-05-19 14:59:47 +05:30
|
|
|
restore_state_and_exit(EXIT_FAILURE);
|
2007-06-20 20:53:03 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-05 14:48:54 +05:30
|
|
|
static void sig_handler(int signo UNUSED_PARAM)
|
2007-06-20 20:53:03 +05:30
|
|
|
{
|
2008-05-19 14:59:47 +05:30
|
|
|
restore_state_and_exit(EXIT_SUCCESS);
|
2007-06-20 20:53:03 +05:30
|
|
|
}
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int slattach_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int slattach_main(int argc UNUSED_PARAM, char **argv)
|
2007-06-20 20:53:03 +05:30
|
|
|
{
|
2007-07-24 21:24:42 +05:30
|
|
|
/* Line discipline code table */
|
2007-08-13 02:28:27 +05:30
|
|
|
static const char proto_names[] ALIGN1 =
|
2007-07-24 21:24:42 +05:30
|
|
|
"slip\0" /* 0 */
|
|
|
|
"cslip\0" /* 1 */
|
|
|
|
"slip6\0" /* 2 */
|
|
|
|
"cslip6\0" /* 3 */
|
|
|
|
"adaptive\0" /* 8 */
|
|
|
|
;
|
|
|
|
|
2007-06-20 20:53:03 +05:30
|
|
|
int i, encap, opt;
|
|
|
|
struct termios state;
|
|
|
|
const char *proto = "cslip";
|
|
|
|
const char *extcmd; /* Command to execute after hangup */
|
|
|
|
const char *baud_str;
|
|
|
|
int baud_code = -1; /* Line baud rate (system code) */
|
|
|
|
|
|
|
|
enum {
|
|
|
|
OPT_p_proto = 1 << 0,
|
|
|
|
OPT_s_baud = 1 << 1,
|
|
|
|
OPT_c_extcmd = 1 << 2,
|
|
|
|
OPT_e_quit = 1 << 3,
|
|
|
|
OPT_h_watch = 1 << 4,
|
|
|
|
OPT_m_nonraw = 1 << 5,
|
|
|
|
OPT_L_local = 1 << 6,
|
2007-06-21 12:57:43 +05:30
|
|
|
OPT_F_noflow = 1 << 7
|
2007-06-20 20:53:03 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
INIT_G();
|
|
|
|
|
|
|
|
/* Parse command line options */
|
2007-08-18 21:02:12 +05:30
|
|
|
opt = getopt32(argv, "p:s:c:ehmLF", &proto, &baud_str, &extcmd);
|
2007-06-20 20:53:03 +05:30
|
|
|
/*argc -= optind;*/
|
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
if (!*argv)
|
|
|
|
bb_show_usage();
|
|
|
|
|
2007-07-24 21:24:42 +05:30
|
|
|
encap = index_in_strings(proto_names, proto);
|
2007-06-20 20:53:03 +05:30
|
|
|
|
|
|
|
if (encap < 0)
|
2007-06-21 12:57:43 +05:30
|
|
|
invarg(proto, "protocol");
|
2007-06-20 20:53:03 +05:30
|
|
|
if (encap > 3)
|
|
|
|
encap = 8;
|
|
|
|
|
|
|
|
/* We want to know if the baud rate is valid before we start touching the ttys */
|
|
|
|
if (opt & OPT_s_baud) {
|
|
|
|
baud_code = tty_value_to_baud(xatoi(baud_str));
|
|
|
|
if (baud_code < 0)
|
2007-06-21 12:57:43 +05:30
|
|
|
invarg(baud_str, "baud rate");
|
2007-06-20 20:53:03 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* Trap signals in order to restore tty states upon exit */
|
|
|
|
if (!(opt & OPT_e_quit)) {
|
2008-02-17 04:28:56 +05:30
|
|
|
bb_signals(0
|
|
|
|
+ (1 << SIGHUP)
|
|
|
|
+ (1 << SIGINT)
|
|
|
|
+ (1 << SIGQUIT)
|
|
|
|
+ (1 << SIGTERM)
|
|
|
|
, sig_handler);
|
2007-06-20 20:53:03 +05:30
|
|
|
}
|
|
|
|
|
2007-06-21 12:57:43 +05:30
|
|
|
/* Open tty */
|
2007-06-20 20:53:03 +05:30
|
|
|
handle = open(*argv, O_RDWR | O_NDELAY);
|
|
|
|
if (handle < 0) {
|
2007-06-21 12:57:43 +05:30
|
|
|
char *buf = concat_path_file("/dev", *argv);
|
2007-06-20 20:53:03 +05:30
|
|
|
handle = xopen(buf, O_RDWR | O_NDELAY);
|
|
|
|
/* maybe if (ENABLE_FEATURE_CLEAN_UP) ?? */
|
|
|
|
free(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Save current tty state */
|
|
|
|
save_state();
|
|
|
|
|
2007-06-21 12:57:43 +05:30
|
|
|
/* Configure tty */
|
2007-06-20 20:53:03 +05:30
|
|
|
memcpy(&state, &saved_state, sizeof(state));
|
|
|
|
if (!(opt & OPT_m_nonraw)) { /* raw not suppressed */
|
|
|
|
memset(&state.c_cc, 0, sizeof(state.c_cc));
|
|
|
|
state.c_cc[VMIN] = 1;
|
|
|
|
state.c_iflag = IGNBRK | IGNPAR;
|
|
|
|
state.c_oflag = 0;
|
|
|
|
state.c_lflag = 0;
|
|
|
|
state.c_cflag = CS8 | HUPCL | CREAD
|
|
|
|
| ((opt & OPT_L_local) ? CLOCAL : 0)
|
|
|
|
| ((opt & OPT_F_noflow) ? 0 : CRTSCTS);
|
2008-09-17 02:57:59 +05:30
|
|
|
cfsetispeed(&state, cfgetispeed(&saved_state));
|
|
|
|
cfsetospeed(&state, cfgetospeed(&saved_state));
|
2007-06-20 20:53:03 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if (opt & OPT_s_baud) {
|
|
|
|
cfsetispeed(&state, baud_code);
|
|
|
|
cfsetospeed(&state, baud_code);
|
|
|
|
}
|
|
|
|
|
|
|
|
set_state(&state, encap);
|
|
|
|
|
|
|
|
/* Exit now if option -e was passed */
|
|
|
|
if (opt & OPT_e_quit)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* If we're not requested to watch, just keep descriptor open
|
2007-06-21 12:57:43 +05:30
|
|
|
* until we are killed */
|
2007-06-20 20:53:03 +05:30
|
|
|
if (!(opt & OPT_h_watch))
|
|
|
|
while (1)
|
|
|
|
sleep(24*60*60);
|
|
|
|
|
|
|
|
/* Watch line for hangup */
|
|
|
|
while (1) {
|
|
|
|
if (ioctl(handle, TIOCMGET, &i) < 0 || !(i & TIOCM_CAR))
|
|
|
|
goto no_carrier;
|
|
|
|
sleep(15);
|
|
|
|
}
|
|
|
|
|
|
|
|
no_carrier:
|
|
|
|
|
|
|
|
/* Execute command on hangup */
|
|
|
|
if (opt & OPT_c_extcmd)
|
|
|
|
system(extcmd);
|
|
|
|
|
|
|
|
/* Restore states and exit */
|
2008-05-19 14:59:47 +05:30
|
|
|
restore_state_and_exit(EXIT_SUCCESS);
|
2007-06-20 20:53:03 +05:30
|
|
|
}
|