blob: 7a0253525ce91fedfce8d4d95df275fad354b3ad [file] [log] [blame]
Eric Andersen28c70b32000-06-14 20:42:57 +00001/* vi: set sw=4 ts=4: */
Erik Andersenf7c49ef2000-02-22 17:17:45 +00002/*
Eric Andersen28c70b32000-06-14 20:42:57 +00003 * telnet implementation for busybox
Erik Andersenf7c49ef2000-02-22 17:17:45 +00004 *
Eric Andersen28c70b32000-06-14 20:42:57 +00005 * Author: Tomi Ollila <too@iki.fi>
6 * Copyright (C) 1994-2000 by Tomi Ollila
7 *
8 * Created: Thu Apr 7 13:29:41 1994 too
9 * Last modified: Fri Jun 9 14:34:24 2000 too
Erik Andersenf7c49ef2000-02-22 17:17:45 +000010 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020011 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Erik Andersenf7c49ef2000-02-22 17:17:45 +000012 *
Eric Andersen28c70b32000-06-14 20:42:57 +000013 * HISTORY
14 * Revision 3.1 1994/04/17 11:31:54 too
15 * initial revision
Eric Andersencb81e642003-07-14 21:21:08 +000016 * Modified 2000/06/13 for inclusion into BusyBox by Erik Andersen <andersen@codepoet.org>
Eric Andersen7e1273e2001-05-07 17:57:45 +000017 * Modified 2001/05/07 to add ability to pass TTYPE to remote host by Jim McQuillan
18 * <jam@ltsp.org>
Eric Andersen539ffc92004-02-22 12:25:47 +000019 * Modified 2004/02/11 to add ability to pass the USER variable to remote host
20 * by Fernando Silveira <swrh@gmx.net>
Erik Andersenf7c49ef2000-02-22 17:17:45 +000021 */
Denys Vlasenko47367e12016-11-23 09:05:14 +010022//config:config TELNET
Denys Vlasenkob097a842018-12-28 03:20:17 +010023//config: bool "telnet (8.8 kb)"
Denys Vlasenko47367e12016-11-23 09:05:14 +010024//config: default y
25//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020026//config: Telnet is an interface to the TELNET protocol, but is also commonly
27//config: used to test other simple protocols.
Denys Vlasenko47367e12016-11-23 09:05:14 +010028//config:
29//config:config FEATURE_TELNET_TTYPE
30//config: bool "Pass TERM type to remote host"
31//config: default y
32//config: depends on TELNET
33//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020034//config: Setting this option will forward the TERM environment variable to the
35//config: remote host you are connecting to. This is useful to make sure that
36//config: things like ANSI colors and other control sequences behave.
Denys Vlasenko47367e12016-11-23 09:05:14 +010037//config:
38//config:config FEATURE_TELNET_AUTOLOGIN
39//config: bool "Pass USER type to remote host"
40//config: default y
41//config: depends on TELNET
42//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020043//config: Setting this option will forward the USER environment variable to the
44//config: remote host you are connecting to. This is useful when you need to
45//config: log into a machine without telling the username (autologin). This
Denys Vlasenkofb8348b2017-08-17 13:37:51 +020046//config: option enables '-a' and '-l USER' options.
Denys Vlasenkoed15dde2017-01-11 16:35:52 +010047//config:
48//config:config FEATURE_TELNET_WIDTH
49//config: bool "Enable window size autodetection"
50//config: default y
51//config: depends on TELNET
Denys Vlasenko47367e12016-11-23 09:05:14 +010052
53//applet:IF_TELNET(APPLET(telnet, BB_DIR_USR_BIN, BB_SUID_DROP))
54
55//kbuild:lib-$(CONFIG_TELNET) += telnet.o
Erik Andersenf7c49ef2000-02-22 17:17:45 +000056
Pere Orga5bc8c002011-04-11 03:29:49 +020057//usage:#if ENABLE_FEATURE_TELNET_AUTOLOGIN
58//usage:#define telnet_trivial_usage
59//usage: "[-a] [-l USER] HOST [PORT]"
60//usage:#define telnet_full_usage "\n\n"
61//usage: "Connect to telnet server\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020062//usage: "\n -a Automatic login with $USER variable"
63//usage: "\n -l USER Automatic login as USER"
64//usage:
65//usage:#else
66//usage:#define telnet_trivial_usage
67//usage: "HOST [PORT]"
68//usage:#define telnet_full_usage "\n\n"
69//usage: "Connect to telnet server"
70//usage:#endif
71
Eric Andersen28c70b32000-06-14 20:42:57 +000072#include <arpa/telnet.h>
Eric Andersen28c70b32000-06-14 20:42:57 +000073#include <netinet/in.h>
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000074#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020075#include "common_bufsiz.h"
Erik Andersenf7c49ef2000-02-22 17:17:45 +000076
Denys Vlasenko14bd16a2011-07-08 08:49:40 +020077#ifdef __BIONIC__
78/* should be in arpa/telnet.h */
79# define IAC 255 /* interpret as command: */
80# define DONT 254 /* you are not to use option */
81# define DO 253 /* please, you use option */
82# define WONT 252 /* I won't use option */
83# define WILL 251 /* I will use option */
84# define SB 250 /* interpret as subnegotiation */
85# define SE 240 /* end sub negotiation */
86# define TELOPT_ECHO 1 /* echo */
87# define TELOPT_SGA 3 /* suppress go ahead */
88# define TELOPT_TTYPE 24 /* terminal type */
89# define TELOPT_NAWS 31 /* window size */
90#endif
91
Mark Whitley59ab0252001-01-23 22:30:04 +000092enum {
Denis Vlasenkof24cdf12007-03-19 14:47:09 +000093 DATABUFSIZE = 128,
94 IACBUFSIZE = 128,
95
Rob Landleybc68cd12006-03-10 19:22:06 +000096 CHM_TRY = 0,
Denys Vlasenko5bfc4a32019-01-06 18:41:11 +010097 CHM_ON = 1,
Rob Landleybc68cd12006-03-10 19:22:06 +000098 CHM_OFF = 2,
99
100 UF_ECHO = 0x01,
Denys Vlasenko5bfc4a32019-01-06 18:41:11 +0100101 UF_SGA = 0x02,
Rob Landleybc68cd12006-03-10 19:22:06 +0000102
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200103 TS_NORMAL = 0,
104 TS_COPY = 1,
Denys Vlasenko5bfc4a32019-01-06 18:41:11 +0100105 TS_IAC = 2,
106 TS_OPT = 3,
Mark Whitley59ab0252001-01-23 22:30:04 +0000107 TS_SUB1 = 4,
108 TS_SUB2 = 5,
Denys Vlasenko5bfc4a32019-01-06 18:41:11 +0100109 TS_CR = 6,
Mark Whitley59ab0252001-01-23 22:30:04 +0000110};
Eric Andersen28c70b32000-06-14 20:42:57 +0000111
Eric Andersen28c70b32000-06-14 20:42:57 +0000112typedef unsigned char byte;
113
Denis Vlasenko1101d1c2008-07-21 09:22:28 +0000114enum { netfd = 3 };
115
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000116struct globals {
Denis Vlasenko1101d1c2008-07-21 09:22:28 +0000117 int iaclen; /* could even use byte, but it's a loss on x86 */
Eric Andersen28c70b32000-06-14 20:42:57 +0000118 byte telstate; /* telnet negotiation state from network input */
119 byte telwish; /* DO, DONT, WILL, WONT */
120 byte charmode;
121 byte telflags;
Paul Foxf2ddc052005-07-20 19:55:19 +0000122 byte do_termios;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000123#if ENABLE_FEATURE_TELNET_TTYPE
124 char *ttype;
125#endif
126#if ENABLE_FEATURE_TELNET_AUTOLOGIN
127 const char *autologin;
128#endif
Denys Vlasenkoed15dde2017-01-11 16:35:52 +0100129#if ENABLE_FEATURE_TELNET_WIDTH
Denis Vlasenko55995022008-05-18 22:28:26 +0000130 unsigned win_width, win_height;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000131#endif
132 /* same buffer used both for network and console read/write */
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000133 char buf[DATABUFSIZE];
134 /* buffer to handle telnet negotiations */
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000135 char iacbuf[IACBUFSIZE];
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000136 struct termios termios_def;
137 struct termios termios_raw;
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100138} FIX_ALIASING;
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200139#define G (*(struct globals*)bb_common_bufsiz1)
Denis Vlasenko74324c82007-06-04 10:16:52 +0000140#define INIT_G() do { \
Denys Vlasenko47cfbf32016-04-21 18:18:48 +0200141 setup_common_bufsiz(); \
Denys Vlasenko7b85ec32015-10-13 17:17:34 +0200142 BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \
Denis Vlasenko74324c82007-06-04 10:16:52 +0000143} while (0)
Eric Andersen28c70b32000-06-14 20:42:57 +0000144
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200145
Eric Andersencd8c4362001-11-10 11:22:46 +0000146static void rawmode(void);
147static void cookmode(void);
148static void do_linemode(void);
149static void will_charmode(void);
Eric Andersen28c70b32000-06-14 20:42:57 +0000150static void telopt(byte c);
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200151static void subneg(byte c);
Eric Andersen28c70b32000-06-14 20:42:57 +0000152
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000153static void iac_flush(void)
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000154{
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100155 if (G.iaclen != 0) {
156 full_write(netfd, G.iacbuf, G.iaclen);
157 G.iaclen = 0;
158 }
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000159}
Eric Andersen7e1273e2001-05-07 17:57:45 +0000160
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000161static void doexit(int ev) NORETURN;
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000162static void doexit(int ev)
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000163{
Eric Andersen28c70b32000-06-14 20:42:57 +0000164 cookmode();
165 exit(ev);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000166}
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000167
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000168static void con_escape(void)
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000169{
Eric Andersen28c70b32000-06-14 20:42:57 +0000170 char b;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000171
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000172 if (bb_got_signal) /* came from line mode... go raw */
Eric Andersen28c70b32000-06-14 20:42:57 +0000173 rawmode();
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000174
Denys Vlasenkof76fd172013-05-12 02:13:24 +0200175 full_write1_str("\r\nConsole escape. Commands are:\r\n\n"
Eric Andersen28c70b32000-06-14 20:42:57 +0000176 " l go to line mode\r\n"
177 " c go to character mode\r\n"
178 " z suspend telnet\r\n"
179 " e exit telnet\r\n");
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000180
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000181 if (read(STDIN_FILENO, &b, 1) <= 0)
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000182 doexit(EXIT_FAILURE);
Eric Andersen28c70b32000-06-14 20:42:57 +0000183
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000184 switch (b) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000185 case 'l':
Denis Vlasenko08ea11a2008-09-11 19:51:11 +0000186 if (!bb_got_signal) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000187 do_linemode();
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000188 goto ret;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000189 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000190 break;
191 case 'c':
Denis Vlasenko08ea11a2008-09-11 19:51:11 +0000192 if (bb_got_signal) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000193 will_charmode();
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000194 goto ret;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000195 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000196 break;
197 case 'z':
198 cookmode();
199 kill(0, SIGTSTP);
200 rawmode();
201 break;
202 case 'e':
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000203 doexit(EXIT_SUCCESS);
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000204 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000205
Denys Vlasenkof76fd172013-05-12 02:13:24 +0200206 full_write1_str("continuing...\r\n");
Eric Andersen28c70b32000-06-14 20:42:57 +0000207
Denis Vlasenko08ea11a2008-09-11 19:51:11 +0000208 if (bb_got_signal)
Eric Andersen28c70b32000-06-14 20:42:57 +0000209 cookmode();
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000210 ret:
Denis Vlasenko08ea11a2008-09-11 19:51:11 +0000211 bb_got_signal = 0;
Eric Andersen28c70b32000-06-14 20:42:57 +0000212}
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000213
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000214static void handle_net_output(int len)
Eric Andersen28c70b32000-06-14 20:42:57 +0000215{
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200216 byte outbuf[2 * DATABUFSIZE];
Denys Vlasenko0ffd63c2012-09-17 11:54:35 +0200217 byte *dst = outbuf;
218 byte *src = (byte*)G.buf;
219 byte *end = src + len;
Eric Andersen28c70b32000-06-14 20:42:57 +0000220
Denys Vlasenko0ffd63c2012-09-17 11:54:35 +0200221 while (src < end) {
222 byte c = *src++;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200223 if (c == 0x1d) {
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000224 con_escape();
Eric Andersen28c70b32000-06-14 20:42:57 +0000225 return;
226 }
Denys Vlasenko0ffd63c2012-09-17 11:54:35 +0200227 *dst = c;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200228 if (c == IAC)
Denys Vlasenko0ffd63c2012-09-17 11:54:35 +0200229 *++dst = c; /* IAC -> IAC IAC */
230 else
231 if (c == '\r' || c == '\n') {
232 /* Enter key sends '\r' in raw mode and '\n' in cooked one.
233 *
234 * See RFC 1123 3.3.1 Telnet End-of-Line Convention.
Denys Vlasenkoaca464d2012-09-13 13:00:49 +0200235 * Using CR LF instead of other allowed possibilities
236 * like CR NUL - easier to talk to HTTP/SMTP servers.
237 */
Denys Vlasenko0ffd63c2012-09-17 11:54:35 +0200238 *dst = '\r'; /* Enter -> CR LF */
239 *++dst = '\n';
240 }
Denys Vlasenko95867142019-10-18 16:47:37 +0200241#if 0
242/* putty's "special commands" mode does this: */
243/* Korenix 3005 switch needs at least the backspace tweak */
244 if (c == 0x08 || c == 0x7f) { /* ctrl+h || backspace */
245 *dst = IAC;
246 *++dst = EC;
247 }
248 if (c == 0x03) { /* ctrl+c */
249 *dst = IAC;
250 *++dst = IP;
251 }
252#endif
Denys Vlasenko0ffd63c2012-09-17 11:54:35 +0200253 dst++;
Eric Andersen28c70b32000-06-14 20:42:57 +0000254 }
Denys Vlasenko0ffd63c2012-09-17 11:54:35 +0200255 if (dst - outbuf != 0)
256 full_write(netfd, outbuf, dst - outbuf);
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000257}
258
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000259static void handle_net_input(int len)
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000260{
Denys Vlasenko5bfc4a32019-01-06 18:41:11 +0100261 byte c;
Eric Andersen28c70b32000-06-14 20:42:57 +0000262 int i;
Denys Vlasenko65741d02019-09-25 13:48:01 +0200263 int cstart = 0;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000264
Denys Vlasenko5bfc4a32019-01-06 18:41:11 +0100265 i = 0;
266 //bb_error_msg("[%u,'%.*s']", G.telstate, len, G.buf);
267 if (G.telstate == TS_NORMAL) { /* most typical state */
268 while (i < len) {
269 c = G.buf[i];
270 i++;
271 if (c == IAC) /* unlikely */
272 goto got_IAC;
273 if (c != '\r') /* likely */
274 continue;
275 G.telstate = TS_CR;
276 cstart = i;
277 goto got_special;
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000278 }
Denys Vlasenko5bfc4a32019-01-06 18:41:11 +0100279 full_write(STDOUT_FILENO, G.buf, len);
280 return;
281 got_IAC:
282 G.telstate = TS_IAC;
283 cstart = i - 1;
284 got_special: ;
285 }
286
287 for (; i < len; i++) {
288 c = G.buf[i];
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200289
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000290 switch (G.telstate) {
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200291 case TS_CR:
292 /* Prev char was CR. If cur one is NUL, ignore it.
293 * See RFC 1123 section 3.3.1 for discussion of telnet EOL handling.
294 */
295 G.telstate = TS_COPY;
296 if (c == '\0')
297 break;
298 /* else: fall through - need to handle CR IAC ... properly */
299
300 case TS_COPY: /* Prev char was ordinary */
301 /* Similar to NORMAL, but in TS_COPY we need to copy bytes */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000302 if (c == IAC)
303 G.telstate = TS_IAC;
Denys Vlasenko5bfc4a32019-01-06 18:41:11 +0100304 else {
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000305 G.buf[cstart++] = c;
Denys Vlasenko5bfc4a32019-01-06 18:41:11 +0100306 if (c == '\r')
307 G.telstate = TS_CR;
308 }
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000309 break;
Eric Andersen28c70b32000-06-14 20:42:57 +0000310
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200311 case TS_IAC: /* Prev char was IAC */
Denys Vlasenko5bfc4a32019-01-06 18:41:11 +0100312 switch (c) {
313 case IAC: /* IAC IAC -> one IAC */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000314 G.buf[cstart++] = c;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200315 G.telstate = TS_COPY;
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000316 break;
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000317 case SB:
318 G.telstate = TS_SUB1;
319 break;
320 case DO:
321 case DONT:
322 case WILL:
323 case WONT:
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200324 G.telwish = c;
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000325 G.telstate = TS_OPT;
326 break;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200327 /* DATA MARK must be added later */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000328 default:
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200329 G.telstate = TS_COPY;
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000330 }
331 break;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200332
333 case TS_OPT: /* Prev chars were IAC WILL/WONT/DO/DONT */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000334 telopt(c);
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200335 G.telstate = TS_COPY;
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000336 break;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200337
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000338 case TS_SUB1: /* Subnegotiation */
339 case TS_SUB2: /* Subnegotiation */
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200340 subneg(c); /* can change G.telstate */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000341 break;
342 }
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000343 }
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200344
Denys Vlasenko5bfc4a32019-01-06 18:41:11 +0100345 /* We had some IACs, or CR */
346 iac_flush();
347 if (G.telstate == TS_COPY) /* we aren't in the middle of IAC */
348 G.telstate = TS_NORMAL;
349 if (cstart != 0)
350 full_write(STDOUT_FILENO, G.buf, cstart);
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000351}
352
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000353static void put_iac(int c)
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000354{
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100355 int iaclen = G.iaclen;
356 if (iaclen >= IACBUFSIZE) {
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000357 iac_flush();
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100358 iaclen = 0;
359 }
360 G.iacbuf[iaclen] = c; /* "... & 0xff" is implicit */
361 G.iaclen = iaclen + 1;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000362}
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100363
364static void put_iac2_msb_lsb(unsigned x_y)
365{
366 put_iac(x_y >> 8); /* "... & 0xff" is implicit */
367 put_iac(x_y); /* "... & 0xff" is implicit */
368}
369#define put_iac2_x_y(x,y) put_iac2_msb_lsb(((x)<<8) + (y))
370
Denys Vlasenko77a51a22020-12-29 16:53:11 +0100371#if ENABLE_FEATURE_TELNET_WIDTH \
372 || ENABLE_FEATURE_TELNET_TTYPE \
373 || ENABLE_FEATURE_TELNET_AUTOLOGIN
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100374static void put_iac4_msb_lsb(unsigned x_y_z_t)
375{
376 put_iac2_msb_lsb(x_y_z_t >> 16);
377 put_iac2_msb_lsb(x_y_z_t); /* "... & 0xffff" is implicit */
378}
379#define put_iac4_x_y_z_t(x,y,z,t) put_iac4_msb_lsb(((x)<<24) + ((y)<<16) + ((z)<<8) + (t))
Denys Vlasenko77a51a22020-12-29 16:53:11 +0100380#endif
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100381
382static void put_iac3_IAC_x_y_merged(unsigned wwdd_and_c)
383{
384 put_iac(IAC);
385 put_iac2_msb_lsb(wwdd_and_c);
386}
387#define put_iac3_IAC_x_y(wwdd,c) put_iac3_IAC_x_y_merged(((wwdd)<<8) + (c))
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000388
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000389#if ENABLE_FEATURE_TELNET_TTYPE
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000390static void put_iac_subopt(byte c, char *str)
Eric Andersen7e1273e2001-05-07 17:57:45 +0000391{
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100392 put_iac4_x_y_z_t(IAC, SB, c, 0);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000393
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000394 while (*str)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000395 put_iac(*str++);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000396
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100397 put_iac2_x_y(IAC, SE);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000398}
399#endif
400
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000401#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000402static void put_iac_subopt_autologin(void)
Eric Andersen539ffc92004-02-22 12:25:47 +0000403{
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100404 const char *p;
Eric Andersen539ffc92004-02-22 12:25:47 +0000405
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100406 put_iac4_x_y_z_t(IAC, SB, TELOPT_NEW_ENVIRON, TELQUAL_IS);
407 put_iac4_x_y_z_t(NEW_ENV_VAR, 'U', 'S', 'E'); /* "USER" */
408 put_iac2_x_y('R', NEW_ENV_VALUE);
Eric Andersen539ffc92004-02-22 12:25:47 +0000409
Denys Vlasenko25b10d92010-04-27 08:54:24 +0200410 p = G.autologin;
411 while (*p)
412 put_iac(*p++);
Eric Andersen539ffc92004-02-22 12:25:47 +0000413
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100414 put_iac2_x_y(IAC, SE);
Eric Andersen539ffc92004-02-22 12:25:47 +0000415}
416#endif
417
Denys Vlasenkoed15dde2017-01-11 16:35:52 +0100418#if ENABLE_FEATURE_TELNET_WIDTH
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000419static void put_iac_naws(byte c, int x, int y)
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000420{
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100421 put_iac3_IAC_x_y(SB, c);
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000422
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100423 put_iac4_msb_lsb((x << 16) + y);
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000424
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100425 put_iac2_x_y(IAC, SE);
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000426}
427#endif
428
Eric Andersencd8c4362001-11-10 11:22:46 +0000429static void setConMode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000430{
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000431 if (G.telflags & UF_ECHO) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000432 if (G.charmode == CHM_TRY) {
433 G.charmode = CHM_ON;
Denys Vlasenko57f07bf2012-09-17 11:53:09 +0200434 printf("\r\nEntering %s mode"
435 "\r\nEscape character is '^%c'.\r\n", "character", ']');
Eric Andersen28c70b32000-06-14 20:42:57 +0000436 rawmode();
437 }
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000438 } else {
Eric Andersen28c70b32000-06-14 20:42:57 +0000439 if (G.charmode != CHM_OFF) {
440 G.charmode = CHM_OFF;
Denys Vlasenko57f07bf2012-09-17 11:53:09 +0200441 printf("\r\nEntering %s mode"
442 "\r\nEscape character is '^%c'.\r\n", "line", 'C');
Eric Andersen28c70b32000-06-14 20:42:57 +0000443 cookmode();
444 }
445 }
446}
447
Eric Andersencd8c4362001-11-10 11:22:46 +0000448static void will_charmode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000449{
450 G.charmode = CHM_TRY;
451 G.telflags |= (UF_ECHO | UF_SGA);
452 setConMode();
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000453
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100454 put_iac3_IAC_x_y(DO, TELOPT_ECHO);
455 put_iac3_IAC_x_y(DO, TELOPT_SGA);
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000456 iac_flush();
Eric Andersen28c70b32000-06-14 20:42:57 +0000457}
458
Eric Andersencd8c4362001-11-10 11:22:46 +0000459static void do_linemode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000460{
461 G.charmode = CHM_TRY;
462 G.telflags &= ~(UF_ECHO | UF_SGA);
463 setConMode();
464
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100465 put_iac3_IAC_x_y(DONT, TELOPT_ECHO);
466 put_iac3_IAC_x_y(DONT, TELOPT_SGA);
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000467 iac_flush();
Eric Andersen28c70b32000-06-14 20:42:57 +0000468}
469
Rob Landley88621d72006-08-29 19:41:06 +0000470static void to_notsup(char c)
Eric Andersen28c70b32000-06-14 20:42:57 +0000471{
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000472 if (G.telwish == WILL)
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100473 put_iac3_IAC_x_y(DONT, c);
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000474 else if (G.telwish == DO)
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100475 put_iac3_IAC_x_y(WONT, c);
Eric Andersen28c70b32000-06-14 20:42:57 +0000476}
477
Rob Landley88621d72006-08-29 19:41:06 +0000478static void to_echo(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000479{
480 /* if server requests ECHO, don't agree */
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000481 if (G.telwish == DO) {
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100482 put_iac3_IAC_x_y(WONT, TELOPT_ECHO);
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000483 return;
484 }
485 if (G.telwish == DONT)
486 return;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000487
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000488 if (G.telflags & UF_ECHO) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000489 if (G.telwish == WILL)
490 return;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000491 } else if (G.telwish == WONT)
492 return;
Eric Andersen28c70b32000-06-14 20:42:57 +0000493
494 if (G.charmode != CHM_OFF)
495 G.telflags ^= UF_ECHO;
496
497 if (G.telflags & UF_ECHO)
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100498 put_iac3_IAC_x_y(DO, TELOPT_ECHO);
Eric Andersen28c70b32000-06-14 20:42:57 +0000499 else
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100500 put_iac3_IAC_x_y(DONT, TELOPT_ECHO);
Eric Andersen28c70b32000-06-14 20:42:57 +0000501
502 setConMode();
Denys Vlasenko729ecb82010-06-07 14:14:26 +0200503 full_write1_str("\r\n"); /* sudden modec */
Eric Andersen28c70b32000-06-14 20:42:57 +0000504}
505
Rob Landley88621d72006-08-29 19:41:06 +0000506static void to_sga(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000507{
508 /* daemon always sends will/wont, client do/dont */
509
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000510 if (G.telflags & UF_SGA) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000511 if (G.telwish == WILL)
512 return;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000513 } else if (G.telwish == WONT)
514 return;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000515
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000516 G.telflags ^= UF_SGA; /* toggle */
517 if (G.telflags & UF_SGA)
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100518 put_iac3_IAC_x_y(DO, TELOPT_SGA);
Eric Andersen28c70b32000-06-14 20:42:57 +0000519 else
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100520 put_iac3_IAC_x_y(DONT, TELOPT_SGA);
Eric Andersen28c70b32000-06-14 20:42:57 +0000521}
522
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000523#if ENABLE_FEATURE_TELNET_TTYPE
Rob Landley88621d72006-08-29 19:41:06 +0000524static void to_ttype(void)
Eric Andersen7e1273e2001-05-07 17:57:45 +0000525{
526 /* Tell server we will (or won't) do TTYPE */
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000527 if (G.ttype)
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100528 put_iac3_IAC_x_y(WILL, TELOPT_TTYPE);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000529 else
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100530 put_iac3_IAC_x_y(WONT, TELOPT_TTYPE);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000531}
532#endif
533
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000534#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Rob Landley88621d72006-08-29 19:41:06 +0000535static void to_new_environ(void)
Eric Andersen539ffc92004-02-22 12:25:47 +0000536{
537 /* Tell server we will (or will not) do AUTOLOGIN */
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000538 if (G.autologin)
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100539 put_iac3_IAC_x_y(WILL, TELOPT_NEW_ENVIRON);
Eric Andersen539ffc92004-02-22 12:25:47 +0000540 else
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100541 put_iac3_IAC_x_y(WONT, TELOPT_NEW_ENVIRON);
Eric Andersen539ffc92004-02-22 12:25:47 +0000542}
543#endif
544
Denys Vlasenkoed15dde2017-01-11 16:35:52 +0100545#if ENABLE_FEATURE_TELNET_WIDTH
Rob Landley88621d72006-08-29 19:41:06 +0000546static void to_naws(void)
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000547{
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000548 /* Tell server we will do NAWS */
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100549 put_iac3_IAC_x_y(WILL, TELOPT_NAWS);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000550}
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000551#endif
552
Eric Andersen28c70b32000-06-14 20:42:57 +0000553static void telopt(byte c)
554{
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000555 switch (c) {
556 case TELOPT_ECHO:
557 to_echo(); break;
558 case TELOPT_SGA:
559 to_sga(); break;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000560#if ENABLE_FEATURE_TELNET_TTYPE
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000561 case TELOPT_TTYPE:
562 to_ttype(); break;
Eric Andersen7e1273e2001-05-07 17:57:45 +0000563#endif
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000564#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000565 case TELOPT_NEW_ENVIRON:
566 to_new_environ(); break;
Eric Andersen539ffc92004-02-22 12:25:47 +0000567#endif
Denys Vlasenkoed15dde2017-01-11 16:35:52 +0100568#if ENABLE_FEATURE_TELNET_WIDTH
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000569 case TELOPT_NAWS:
570 to_naws();
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000571 put_iac_naws(c, G.win_width, G.win_height);
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000572 break;
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000573#endif
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000574 default:
575 to_notsup(c);
576 break;
Eric Andersen28c70b32000-06-14 20:42:57 +0000577 }
578}
579
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000580/* subnegotiation -- ignore all (except TTYPE,NAWS) */
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200581static void subneg(byte c)
Eric Andersen28c70b32000-06-14 20:42:57 +0000582{
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000583 switch (G.telstate) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000584 case TS_SUB1:
585 if (c == IAC)
586 G.telstate = TS_SUB2;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000587#if ENABLE_FEATURE_TELNET_TTYPE
Eric Andersen7e1273e2001-05-07 17:57:45 +0000588 else
Denys Vlasenko25b10d92010-04-27 08:54:24 +0200589 if (c == TELOPT_TTYPE && G.ttype)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000590 put_iac_subopt(TELOPT_TTYPE, G.ttype);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000591#endif
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000592#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Eric Andersen539ffc92004-02-22 12:25:47 +0000593 else
Denys Vlasenko25b10d92010-04-27 08:54:24 +0200594 if (c == TELOPT_NEW_ENVIRON && G.autologin)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000595 put_iac_subopt_autologin();
Eric Andersen539ffc92004-02-22 12:25:47 +0000596#endif
Eric Andersen28c70b32000-06-14 20:42:57 +0000597 break;
598 case TS_SUB2:
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200599 if (c == SE) {
600 G.telstate = TS_COPY;
601 return;
602 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000603 G.telstate = TS_SUB1;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200604 break;
Eric Andersen28c70b32000-06-14 20:42:57 +0000605 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000606}
607
Eric Andersencd8c4362001-11-10 11:22:46 +0000608static void rawmode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000609{
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000610 if (G.do_termios)
611 tcsetattr(0, TCSADRAIN, &G.termios_raw);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000612}
Eric Andersen28c70b32000-06-14 20:42:57 +0000613
Eric Andersencd8c4362001-11-10 11:22:46 +0000614static void cookmode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000615{
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000616 if (G.do_termios)
617 tcsetattr(0, TCSADRAIN, &G.termios_def);
Eric Andersen28c70b32000-06-14 20:42:57 +0000618}
619
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000620int telnet_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko1101d1c2008-07-21 09:22:28 +0000621int telnet_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen28c70b32000-06-14 20:42:57 +0000622{
Denis Vlasenko9de420c2007-01-10 09:28:01 +0000623 char *host;
624 int port;
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000625 int len;
Eric Andersen28c70b32000-06-14 20:42:57 +0000626 struct pollfd ufds[2];
Eric Andersen28c70b32000-06-14 20:42:57 +0000627
Denis Vlasenko74324c82007-06-04 10:16:52 +0000628 INIT_G();
Eric Andersen28c70b32000-06-14 20:42:57 +0000629
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000630#if ENABLE_FEATURE_TELNET_TTYPE
631 G.ttype = getenv("TERM");
632#endif
633
Paul Foxf2ddc052005-07-20 19:55:19 +0000634 if (tcgetattr(0, &G.termios_def) >= 0) {
635 G.do_termios = 1;
Paul Foxf2ddc052005-07-20 19:55:19 +0000636 G.termios_raw = G.termios_def;
637 cfmakeraw(&G.termios_raw);
638 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000639
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000640#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Denys Vlasenkofb8348b2017-08-17 13:37:51 +0200641 if (1 == getopt32(argv, "al:", &G.autologin)) {
642 /* Only -a without -l USER picks $USER from envvar */
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000643 G.autologin = getenv("USER");
Denys Vlasenkofb8348b2017-08-17 13:37:51 +0200644 }
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000645 argv += optind;
Eric Andersen539ffc92004-02-22 12:25:47 +0000646#else
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000647 argv++;
Eric Andersen539ffc92004-02-22 12:25:47 +0000648#endif
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000649 if (!*argv)
650 bb_show_usage();
651 host = *argv++;
Denys Vlasenko2aeb2012018-04-17 12:43:54 +0200652 port = *argv ? bb_lookup_port(*argv++, "tcp", 23)
653 : bb_lookup_std_port("telnet", "tcp", 23);
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000654 if (*argv) /* extra params?? */
655 bb_show_usage();
656
Denis Vlasenko1101d1c2008-07-21 09:22:28 +0000657 xmove_fd(create_and_connect_stream_or_die(host, port), netfd);
Danijel Tasov3f4fac52019-01-06 19:20:05 +0100658 printf("Connected to %s\n", host);
Eric Andersen28c70b32000-06-14 20:42:57 +0000659
Denys Vlasenkoc52cbea2015-08-24 19:48:03 +0200660 setsockopt_keepalive(netfd);
Eric Andersen28c70b32000-06-14 20:42:57 +0000661
Denys Vlasenko2f094ae2018-04-07 15:02:20 +0200662#if ENABLE_FEATURE_TELNET_WIDTH
663 get_terminal_width_height(0, &G.win_width, &G.win_height);
664//TODO: support dynamic resize?
665#endif
666
Denis Vlasenko08ea11a2008-09-11 19:51:11 +0000667 signal(SIGINT, record_signo);
Eric Andersen28c70b32000-06-14 20:42:57 +0000668
Denys Vlasenkoec074202010-10-29 02:33:38 +0200669 ufds[0].fd = STDIN_FILENO;
670 ufds[0].events = POLLIN;
671 ufds[1].fd = netfd;
672 ufds[1].events = POLLIN;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000673
Denis Vlasenko9de420c2007-01-10 09:28:01 +0000674 while (1) {
Denys Vlasenkoec074202010-10-29 02:33:38 +0200675 if (poll(ufds, 2, -1) < 0) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000676 /* error, ignore and/or log something, bay go to loop */
Denis Vlasenko08ea11a2008-09-11 19:51:11 +0000677 if (bb_got_signal)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000678 con_escape();
Eric Andersen28c70b32000-06-14 20:42:57 +0000679 else
Denys Vlasenkoec16c032020-11-29 11:37:34 +0100680 sleep1();
Denys Vlasenkoec074202010-10-29 02:33:38 +0200681 continue;
682 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000683
Denys Vlasenkoec074202010-10-29 02:33:38 +0200684// FIXME: reads can block. Need full bidirectional buffering.
Eric Andersen28c70b32000-06-14 20:42:57 +0000685
Denys Vlasenkoec074202010-10-29 02:33:38 +0200686 if (ufds[0].revents) {
687 len = safe_read(STDIN_FILENO, G.buf, DATABUFSIZE);
688 if (len <= 0)
689 doexit(EXIT_SUCCESS);
Denys Vlasenkoec074202010-10-29 02:33:38 +0200690 handle_net_output(len);
691 }
692
693 if (ufds[1].revents) {
694 len = safe_read(netfd, G.buf, DATABUFSIZE);
695 if (len <= 0) {
696 full_write1_str("Connection closed by foreign host\r\n");
697 doexit(EXIT_FAILURE);
Eric Andersen28c70b32000-06-14 20:42:57 +0000698 }
Denys Vlasenkoec074202010-10-29 02:33:38 +0200699 handle_net_input(len);
Eric Andersen28c70b32000-06-14 20:42:57 +0000700 }
Denis Vlasenko1101d1c2008-07-21 09:22:28 +0000701 } /* while (1) */
Eric Andersen28c70b32000-06-14 20:42:57 +0000702}