aboutsummaryrefslogtreecommitdiff
path: root/networking/slattach.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/slattach.c')
-rw-r--r--networking/slattach.c170
1 files changed, 66 insertions, 104 deletions
diff --git a/networking/slattach.c b/networking/slattach.c
index 71b5bf427..e0a388926 100644
--- a/networking/slattach.c
+++ b/networking/slattach.c
@@ -17,23 +17,23 @@
17//config: default y 17//config: default y
18//config: select PLATFORM_LINUX 18//config: select PLATFORM_LINUX
19//config: help 19//config: help
20//config: slattach is a small utility to attach network interfaces to serial 20//config: slattach configures serial line as SLIP network interface.
21//config: lines.
22 21
23//applet:IF_SLATTACH(APPLET(slattach, BB_DIR_SBIN, BB_SUID_DROP)) 22//applet:IF_SLATTACH(APPLET(slattach, BB_DIR_SBIN, BB_SUID_DROP))
23/* shouldn't be NOEXEC: may sleep indefinitely */
24 24
25//kbuild:lib-$(CONFIG_SLATTACH) += slattach.o 25//kbuild:lib-$(CONFIG_SLATTACH) += slattach.o
26 26
27//usage:#define slattach_trivial_usage 27//usage:#define slattach_trivial_usage
28//usage: "[-cehmLF] [-s SPEED] [-p PROTOCOL] DEVICE" 28//usage: "[-ehmLF] [-c SCRIPT] [-s BAUD] [-p PROTOCOL] SERIAL_DEVICE"
29//usage:#define slattach_full_usage "\n\n" 29//usage:#define slattach_full_usage "\n\n"
30//usage: "Attach network interface(s) to serial line(s)\n" 30//usage: "Configure serial line as SLIP network interface\n"
31//usage: "\n -p PROT Set protocol (slip, cslip, slip6, clisp6 or adaptive)" 31//usage: "\n -p PROT Protocol: slip, cslip (default), slip6, clisp6, adaptive"
32//usage: "\n -s SPD Set line speed" 32//usage: "\n -s BAUD Line speed"
33//usage: "\n -e Exit after initializing device" 33//usage: "\n -e Exit after initialization"
34//usage: "\n -h Exit when the carrier is lost" 34//usage: "\n -h Exit if carrier is lost (else never exits)"
35//usage: "\n -c PROG Run PROG when the line is hung up" 35//usage: "\n -c PROG Run PROG on carrier loss"
36//usage: "\n -m Do NOT initialize the line in raw 8 bits mode" 36//usage: "\n -m Do NOT set raw 8bit mode"
37//usage: "\n -L Enable 3-wire operation" 37//usage: "\n -L Enable 3-wire operation"
38//usage: "\n -F Disable RTS/CTS flow control" 38//usage: "\n -F Disable RTS/CTS flow control"
39 39
@@ -42,103 +42,53 @@
42#include "libiproute/utils.h" /* invarg_1_to_2() */ 42#include "libiproute/utils.h" /* invarg_1_to_2() */
43 43
44struct globals { 44struct globals {
45 int handle;
46 int saved_disc; 45 int saved_disc;
47 struct termios saved_state; 46 struct termios saved_state;
48} FIX_ALIASING; 47} FIX_ALIASING;
49#define G (*(struct globals*)bb_common_bufsiz1) 48#define G (*(struct globals*)bb_common_bufsiz1)
50#define handle (G.handle )
51#define saved_disc (G.saved_disc )
52#define saved_state (G.saved_state )
53#define INIT_G() do { setup_common_bufsiz(); } while (0) 49#define INIT_G() do { setup_common_bufsiz(); } while (0)
54 50
51#define serial_fd 3
55 52
56/* 53static int tcsetattr_serial_or_warn(struct termios *state)
57 * Save tty state and line discipline
58 *
59 * It is fine here to bail out on errors, since we haven modified anything yet
60 */
61static void save_state(void)
62{
63 /* Save line status */
64 if (tcgetattr(handle, &saved_state) < 0)
65 bb_perror_msg_and_die("get state");
66
67 /* Save line discipline */
68 xioctl(handle, TIOCGETD, &saved_disc);
69}
70
71static int set_termios_state_or_warn(struct termios *state)
72{ 54{
73 int ret; 55 int ret;
74 56
75 ret = tcsetattr(handle, TCSANOW, state); 57 ret = tcsetattr(serial_fd, TCSANOW, state);
76 if (ret < 0) { 58 if (ret != 0) {
77 bb_perror_msg("set state"); 59 bb_perror_msg("tcsetattr");
78 return 1; /* used as exitcode */ 60 return 1; /* used as exitcode */
79 } 61 }
80 return 0; 62 return ret; /* 0 */
81} 63}
82 64
83/*
84 * Restore state and line discipline for ALL managed ttys
85 *
86 * Restoring ALL managed ttys is the only way to have a single
87 * hangup delay.
88 *
89 * Go on after errors: we want to restore as many controlled ttys
90 * as possible.
91 */
92static void restore_state_and_exit(int exitcode) NORETURN; 65static void restore_state_and_exit(int exitcode) NORETURN;
93static void restore_state_and_exit(int exitcode) 66static void restore_state_and_exit(int exitcode)
94{ 67{
95 struct termios state; 68 struct termios state;
96 69
97 /* Restore line discipline */ 70 /* Restore line discipline */
98 if (ioctl_or_warn(handle, TIOCSETD, &saved_disc) < 0) { 71 if (ioctl_or_warn(serial_fd, TIOCSETD, &G.saved_disc)) {
99 exitcode = 1; 72 exitcode = 1;
100 } 73 }
101 74
102 /* Hangup */ 75 /* Hangup */
103 memcpy(&state, &saved_state, sizeof(state)); 76 memcpy(&state, &G.saved_state, sizeof(state));
104 cfsetispeed(&state, B0); 77 cfsetispeed(&state, B0);
105 cfsetospeed(&state, B0); 78 cfsetospeed(&state, B0);
106 if (set_termios_state_or_warn(&state)) 79 exitcode |= tcsetattr_serial_or_warn(&state);
107 exitcode = 1;
108 sleep(1); 80 sleep(1);
109 81
110 /* Restore line status */ 82 /* Restore line status */
111 if (set_termios_state_or_warn(&saved_state)) 83 if (tcsetattr_serial_or_warn(&G.saved_state))
112 exit(EXIT_FAILURE); 84 exit(EXIT_FAILURE);
85
113 if (ENABLE_FEATURE_CLEAN_UP) 86 if (ENABLE_FEATURE_CLEAN_UP)
114 close(handle); 87 close(serial_fd);
115 88
116 exit(exitcode); 89 exit(exitcode);
117} 90}
118 91
119/*
120 * Set tty state, line discipline and encapsulation
121 */
122static void set_state(struct termios *state, int encap)
123{
124 int disc;
125
126 /* Set line status */
127 if (set_termios_state_or_warn(state))
128 goto bad;
129 /* Set line discliple (N_SLIP always) */
130 disc = N_SLIP;
131 if (ioctl_or_warn(handle, TIOCSETD, &disc) < 0) {
132 goto bad;
133 }
134
135 /* Set encapsulation (SLIP, CSLIP, etc) */
136 if (ioctl_or_warn(handle, SIOCSIFENCAP, &encap) < 0) {
137 bad:
138 restore_state_and_exit(EXIT_FAILURE);
139 }
140}
141
142static void sig_handler(int signo UNUSED_PARAM) 92static void sig_handler(int signo UNUSED_PARAM)
143{ 93{
144 restore_state_and_exit(EXIT_SUCCESS); 94 restore_state_and_exit(EXIT_SUCCESS);
@@ -155,13 +105,14 @@ int slattach_main(int argc UNUSED_PARAM, char **argv)
155 "cslip6\0" /* 3 */ 105 "cslip6\0" /* 3 */
156 "adaptive\0" /* 8 */ 106 "adaptive\0" /* 8 */
157 ; 107 ;
108 static const int int_N_SLIP = N_SLIP;
158 109
159 int i, encap, opt; 110 int encap, opt, fd;
160 struct termios state; 111 struct termios state;
161 const char *proto = "cslip"; 112 const char *proto = "cslip";
162 const char *extcmd; /* Command to execute after hangup */ 113 const char *extcmd; /* Command to execute after hangup */
163 const char *baud_str; 114 const char *baud_str;
164 int baud_code = -1; /* Line baud rate (system code) */ 115 int baud_code = baud_code; /* for compiler */
165 116
166 enum { 117 enum {
167 OPT_p_proto = 1 << 0, 118 OPT_p_proto = 1 << 0,
@@ -177,15 +128,13 @@ int slattach_main(int argc UNUSED_PARAM, char **argv)
177 INIT_G(); 128 INIT_G();
178 129
179 /* Parse command line options */ 130 /* Parse command line options */
180 opt = getopt32(argv, "p:s:c:ehmLF", &proto, &baud_str, &extcmd); 131 opt = getopt32(argv, "^" "p:s:c:ehmLF" "\0" "=1",
132 &proto, &baud_str, &extcmd
133 );
181 /*argc -= optind;*/ 134 /*argc -= optind;*/
182 argv += optind; 135 argv += optind;
183 136
184 if (!*argv)
185 bb_show_usage();
186
187 encap = index_in_strings(proto_names, proto); 137 encap = index_in_strings(proto_names, proto);
188
189 if (encap < 0) 138 if (encap < 0)
190 invarg_1_to_2(proto, "protocol"); 139 invarg_1_to_2(proto, "protocol");
191 if (encap > 3) 140 if (encap > 3)
@@ -198,6 +147,22 @@ int slattach_main(int argc UNUSED_PARAM, char **argv)
198 invarg_1_to_2(baud_str, "baud rate"); 147 invarg_1_to_2(baud_str, "baud rate");
199 } 148 }
200 149
150 /* Open tty */
151 fd = open(*argv, O_RDWR | O_NDELAY);
152 if (fd < 0) {
153 char *buf = concat_path_file("/dev", *argv);
154 fd = xopen(buf, O_RDWR | O_NDELAY);
155 /* maybe if (ENABLE_FEATURE_CLEAN_UP) ?? */
156 free(buf);
157 }
158 xmove_fd(fd, serial_fd);
159
160 /* Save current tty state */
161 if (tcgetattr(serial_fd, &G.saved_state) != 0)
162 bb_perror_msg_and_die("tcgetattr");
163 /* Save line discipline */
164 xioctl(serial_fd, TIOCGETD, &G.saved_disc);
165
201 /* Trap signals in order to restore tty states upon exit */ 166 /* Trap signals in order to restore tty states upon exit */
202 if (!(opt & OPT_e_quit)) { 167 if (!(opt & OPT_e_quit)) {
203 bb_signals(0 168 bb_signals(0
@@ -208,43 +173,37 @@ int slattach_main(int argc UNUSED_PARAM, char **argv)
208 , sig_handler); 173 , sig_handler);
209 } 174 }
210 175
211 /* Open tty */
212 handle = open(*argv, O_RDWR | O_NDELAY);
213 if (handle < 0) {
214 char *buf = concat_path_file("/dev", *argv);
215 handle = xopen(buf, O_RDWR | O_NDELAY);
216 /* maybe if (ENABLE_FEATURE_CLEAN_UP) ?? */
217 free(buf);
218 }
219
220 /* Save current tty state */
221 save_state();
222
223 /* Configure tty */ 176 /* Configure tty */
224 memcpy(&state, &saved_state, sizeof(state)); 177 memcpy(&state, &G.saved_state, sizeof(state));
225 if (!(opt & OPT_m_nonraw)) { /* raw not suppressed */ 178 if (!(opt & OPT_m_nonraw)) { /* raw not suppressed */
226 memset(&state.c_cc, 0, sizeof(state.c_cc)); 179 memset(&state.c_cc, 0, sizeof(state.c_cc));
227 state.c_cc[VMIN] = 1; 180 state.c_cc[VMIN] = 1;
228 state.c_iflag = IGNBRK | IGNPAR; 181 state.c_iflag = IGNBRK | IGNPAR;
229 state.c_oflag = 0; 182 /*state.c_oflag = 0;*/
230 state.c_lflag = 0; 183 /*state.c_lflag = 0;*/
231 state.c_cflag = CS8 | HUPCL | CREAD 184 state.c_cflag = CS8 | HUPCL | CREAD
232 | ((opt & OPT_L_local) ? CLOCAL : 0) 185 | ((opt & OPT_L_local) ? CLOCAL : 0)
233 | ((opt & OPT_F_noflow) ? 0 : CRTSCTS); 186 | ((opt & OPT_F_noflow) ? 0 : CRTSCTS);
234 cfsetispeed(&state, cfgetispeed(&saved_state)); 187 cfsetispeed(&state, cfgetispeed(&G.saved_state));
235 cfsetospeed(&state, cfgetospeed(&saved_state)); 188 cfsetospeed(&state, cfgetospeed(&G.saved_state));
236 } 189 }
237
238 if (opt & OPT_s_baud) { 190 if (opt & OPT_s_baud) {
239 cfsetispeed(&state, baud_code); 191 cfsetispeed(&state, baud_code);
240 cfsetospeed(&state, baud_code); 192 cfsetospeed(&state, baud_code);
241 } 193 }
242 194 /* Set line status */
243 set_state(&state, encap); 195 if (tcsetattr_serial_or_warn(&state))
196 goto bad;
197 /* Set line disclipline (N_SLIP always) */
198 if (ioctl_or_warn(serial_fd, TIOCSETD, (void*)&int_N_SLIP))
199 goto bad;
200 /* Set encapsulation (SLIP, CSLIP, etc) */
201 if (ioctl_or_warn(serial_fd, SIOCSIFENCAP, &encap))
202 goto bad;
244 203
245 /* Exit now if option -e was passed */ 204 /* Exit now if option -e was passed */
246 if (opt & OPT_e_quit) 205 if (opt & OPT_e_quit)
247 return 0; 206 return EXIT_SUCCESS;
248 207
249 /* If we're not requested to watch, just keep descriptor open 208 /* If we're not requested to watch, just keep descriptor open
250 * until we are killed */ 209 * until we are killed */
@@ -254,17 +213,20 @@ int slattach_main(int argc UNUSED_PARAM, char **argv)
254 213
255 /* Watch line for hangup */ 214 /* Watch line for hangup */
256 while (1) { 215 while (1) {
257 if (ioctl(handle, TIOCMGET, &i) < 0 || !(i & TIOCM_CAR)) 216 int modem_stat;
258 goto no_carrier; 217 if (ioctl(serial_fd, TIOCMGET, &modem_stat))
218 break;
219 if (!(modem_stat & TIOCM_CAR))
220 break;
259 sleep(15); 221 sleep(15);
260 } 222 }
261 223
262 no_carrier:
263
264 /* Execute command on hangup */ 224 /* Execute command on hangup */
265 if (opt & OPT_c_extcmd) 225 if (opt & OPT_c_extcmd)
266 system(extcmd); 226 system(extcmd);
267 227
268 /* Restore states and exit */ 228 /* Restore states and exit */
269 restore_state_and_exit(EXIT_SUCCESS); 229 restore_state_and_exit(EXIT_SUCCESS);
230 bad:
231 restore_state_and_exit(EXIT_FAILURE);
270} 232}