blob: 15d6a08d8288408566bc71bef1a6e17a7c22db31 [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 Vlasenko4eed2c62017-07-18 22:01:24 +020023//config: bool "telnet (8.7 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,
97 CHM_ON = 1,
98 CHM_OFF = 2,
99
100 UF_ECHO = 0x01,
101 UF_SGA = 0x02,
102
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200103 TS_NORMAL = 0,
104 TS_COPY = 1,
Mark Whitley59ab0252001-01-23 22:30:04 +0000105 TS_IAC = 2,
106 TS_OPT = 3,
107 TS_SUB1 = 4,
108 TS_SUB2 = 5,
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200109 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 Vlasenkof76fd172013-05-12 02:13:24 +0200155 full_write(netfd, G.iacbuf, G.iaclen);
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000156 G.iaclen = 0;
157}
Eric Andersen7e1273e2001-05-07 17:57:45 +0000158
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000159static void doexit(int ev) NORETURN;
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000160static void doexit(int ev)
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000161{
Eric Andersen28c70b32000-06-14 20:42:57 +0000162 cookmode();
163 exit(ev);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000164}
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000165
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000166static void con_escape(void)
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000167{
Eric Andersen28c70b32000-06-14 20:42:57 +0000168 char b;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000169
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000170 if (bb_got_signal) /* came from line mode... go raw */
Eric Andersen28c70b32000-06-14 20:42:57 +0000171 rawmode();
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000172
Denys Vlasenkof76fd172013-05-12 02:13:24 +0200173 full_write1_str("\r\nConsole escape. Commands are:\r\n\n"
Eric Andersen28c70b32000-06-14 20:42:57 +0000174 " l go to line mode\r\n"
175 " c go to character mode\r\n"
176 " z suspend telnet\r\n"
177 " e exit telnet\r\n");
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000178
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000179 if (read(STDIN_FILENO, &b, 1) <= 0)
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000180 doexit(EXIT_FAILURE);
Eric Andersen28c70b32000-06-14 20:42:57 +0000181
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000182 switch (b) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000183 case 'l':
Denis Vlasenko08ea11a2008-09-11 19:51:11 +0000184 if (!bb_got_signal) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000185 do_linemode();
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000186 goto ret;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000187 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000188 break;
189 case 'c':
Denis Vlasenko08ea11a2008-09-11 19:51:11 +0000190 if (bb_got_signal) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000191 will_charmode();
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000192 goto ret;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000193 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000194 break;
195 case 'z':
196 cookmode();
197 kill(0, SIGTSTP);
198 rawmode();
199 break;
200 case 'e':
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000201 doexit(EXIT_SUCCESS);
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000202 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000203
Denys Vlasenkof76fd172013-05-12 02:13:24 +0200204 full_write1_str("continuing...\r\n");
Eric Andersen28c70b32000-06-14 20:42:57 +0000205
Denis Vlasenko08ea11a2008-09-11 19:51:11 +0000206 if (bb_got_signal)
Eric Andersen28c70b32000-06-14 20:42:57 +0000207 cookmode();
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000208 ret:
Denis Vlasenko08ea11a2008-09-11 19:51:11 +0000209 bb_got_signal = 0;
Eric Andersen28c70b32000-06-14 20:42:57 +0000210}
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000211
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000212static void handle_net_output(int len)
Eric Andersen28c70b32000-06-14 20:42:57 +0000213{
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200214 byte outbuf[2 * DATABUFSIZE];
Denys Vlasenko0ffd63c2012-09-17 11:54:35 +0200215 byte *dst = outbuf;
216 byte *src = (byte*)G.buf;
217 byte *end = src + len;
Eric Andersen28c70b32000-06-14 20:42:57 +0000218
Denys Vlasenko0ffd63c2012-09-17 11:54:35 +0200219 while (src < end) {
220 byte c = *src++;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200221 if (c == 0x1d) {
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000222 con_escape();
Eric Andersen28c70b32000-06-14 20:42:57 +0000223 return;
224 }
Denys Vlasenko0ffd63c2012-09-17 11:54:35 +0200225 *dst = c;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200226 if (c == IAC)
Denys Vlasenko0ffd63c2012-09-17 11:54:35 +0200227 *++dst = c; /* IAC -> IAC IAC */
228 else
229 if (c == '\r' || c == '\n') {
230 /* Enter key sends '\r' in raw mode and '\n' in cooked one.
231 *
232 * See RFC 1123 3.3.1 Telnet End-of-Line Convention.
Denys Vlasenkoaca464d2012-09-13 13:00:49 +0200233 * Using CR LF instead of other allowed possibilities
234 * like CR NUL - easier to talk to HTTP/SMTP servers.
235 */
Denys Vlasenko0ffd63c2012-09-17 11:54:35 +0200236 *dst = '\r'; /* Enter -> CR LF */
237 *++dst = '\n';
238 }
239 dst++;
Eric Andersen28c70b32000-06-14 20:42:57 +0000240 }
Denys Vlasenko0ffd63c2012-09-17 11:54:35 +0200241 if (dst - outbuf != 0)
242 full_write(netfd, outbuf, dst - outbuf);
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000243}
244
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000245static void handle_net_input(int len)
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000246{
Eric Andersen28c70b32000-06-14 20:42:57 +0000247 int i;
248 int cstart = 0;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000249
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000250 for (i = 0; i < len; i++) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000251 byte c = G.buf[i];
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000252
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200253 if (G.telstate == TS_NORMAL) { /* most typical state */
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000254 if (c == IAC) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000255 cstart = i;
256 G.telstate = TS_IAC;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000257 }
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200258 else if (c == '\r') {
259 cstart = i + 1;
260 G.telstate = TS_CR;
261 }
262 /* No IACs were seen so far, no need to copy
263 * bytes within G.buf: */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000264 continue;
265 }
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200266
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000267 switch (G.telstate) {
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200268 case TS_CR:
269 /* Prev char was CR. If cur one is NUL, ignore it.
270 * See RFC 1123 section 3.3.1 for discussion of telnet EOL handling.
271 */
272 G.telstate = TS_COPY;
273 if (c == '\0')
274 break;
275 /* else: fall through - need to handle CR IAC ... properly */
276
277 case TS_COPY: /* Prev char was ordinary */
278 /* Similar to NORMAL, but in TS_COPY we need to copy bytes */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000279 if (c == IAC)
280 G.telstate = TS_IAC;
281 else
282 G.buf[cstart++] = c;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200283 if (c == '\r')
284 G.telstate = TS_CR;
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000285 break;
Eric Andersen28c70b32000-06-14 20:42:57 +0000286
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200287 case TS_IAC: /* Prev char was IAC */
288 if (c == IAC) { /* IAC IAC -> one IAC */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000289 G.buf[cstart++] = c;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200290 G.telstate = TS_COPY;
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000291 break;
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000292 }
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000293 /* else */
294 switch (c) {
295 case SB:
296 G.telstate = TS_SUB1;
297 break;
298 case DO:
299 case DONT:
300 case WILL:
301 case WONT:
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200302 G.telwish = c;
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000303 G.telstate = TS_OPT;
304 break;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200305 /* DATA MARK must be added later */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000306 default:
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200307 G.telstate = TS_COPY;
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000308 }
309 break;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200310
311 case TS_OPT: /* Prev chars were IAC WILL/WONT/DO/DONT */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000312 telopt(c);
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200313 G.telstate = TS_COPY;
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000314 break;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200315
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000316 case TS_SUB1: /* Subnegotiation */
317 case TS_SUB2: /* Subnegotiation */
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200318 subneg(c); /* can change G.telstate */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000319 break;
320 }
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000321 }
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200322
323 if (G.telstate != TS_NORMAL) {
324 /* We had some IACs, or CR */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000325 if (G.iaclen)
326 iac_flush();
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200327 if (G.telstate == TS_COPY) /* we aren't in the middle of IAC */
328 G.telstate = TS_NORMAL;
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000329 len = cstart;
Eric Andersen28c70b32000-06-14 20:42:57 +0000330 }
331
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000332 if (len)
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200333 full_write(STDOUT_FILENO, G.buf, len);
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000334}
335
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000336static void put_iac(int c)
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000337{
Eric Andersen28c70b32000-06-14 20:42:57 +0000338 G.iacbuf[G.iaclen++] = c;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000339}
340
Denys Vlasenko57727d42016-10-12 20:42:58 +0200341static void put_iac2_merged(unsigned wwdd_and_c)
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000342{
Eric Andersen28c70b32000-06-14 20:42:57 +0000343 if (G.iaclen + 3 > IACBUFSIZE)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000344 iac_flush();
Eric Andersen28c70b32000-06-14 20:42:57 +0000345
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000346 put_iac(IAC);
Denys Vlasenko57727d42016-10-12 20:42:58 +0200347 put_iac(wwdd_and_c >> 8);
348 put_iac(wwdd_and_c & 0xff);
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000349}
Denys Vlasenko57727d42016-10-12 20:42:58 +0200350#define put_iac2(wwdd,c) put_iac2_merged(((wwdd)<<8) + (c))
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000351
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000352#if ENABLE_FEATURE_TELNET_TTYPE
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000353static void put_iac_subopt(byte c, char *str)
Eric Andersen7e1273e2001-05-07 17:57:45 +0000354{
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000355 int len = strlen(str) + 6; // ( 2 + 1 + 1 + strlen + 2 )
Eric Andersen7e1273e2001-05-07 17:57:45 +0000356
357 if (G.iaclen + len > IACBUFSIZE)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000358 iac_flush();
Eric Andersen7e1273e2001-05-07 17:57:45 +0000359
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000360 put_iac(IAC);
361 put_iac(SB);
362 put_iac(c);
363 put_iac(0);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000364
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000365 while (*str)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000366 put_iac(*str++);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000367
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000368 put_iac(IAC);
369 put_iac(SE);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000370}
371#endif
372
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000373#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000374static void put_iac_subopt_autologin(void)
Eric Andersen539ffc92004-02-22 12:25:47 +0000375{
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000376 int len = strlen(G.autologin) + 6; // (2 + 1 + 1 + strlen + 2)
Denys Vlasenko25b10d92010-04-27 08:54:24 +0200377 const char *p = "USER";
Eric Andersen539ffc92004-02-22 12:25:47 +0000378
379 if (G.iaclen + len > IACBUFSIZE)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000380 iac_flush();
Eric Andersen539ffc92004-02-22 12:25:47 +0000381
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000382 put_iac(IAC);
383 put_iac(SB);
384 put_iac(TELOPT_NEW_ENVIRON);
385 put_iac(TELQUAL_IS);
386 put_iac(NEW_ENV_VAR);
Eric Andersen539ffc92004-02-22 12:25:47 +0000387
Denys Vlasenko25b10d92010-04-27 08:54:24 +0200388 while (*p)
389 put_iac(*p++);
Eric Andersen539ffc92004-02-22 12:25:47 +0000390
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000391 put_iac(NEW_ENV_VALUE);
Eric Andersen539ffc92004-02-22 12:25:47 +0000392
Denys Vlasenko25b10d92010-04-27 08:54:24 +0200393 p = G.autologin;
394 while (*p)
395 put_iac(*p++);
Eric Andersen539ffc92004-02-22 12:25:47 +0000396
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000397 put_iac(IAC);
398 put_iac(SE);
Eric Andersen539ffc92004-02-22 12:25:47 +0000399}
400#endif
401
Denys Vlasenkoed15dde2017-01-11 16:35:52 +0100402#if ENABLE_FEATURE_TELNET_WIDTH
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000403static void put_iac_naws(byte c, int x, int y)
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000404{
405 if (G.iaclen + 9 > IACBUFSIZE)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000406 iac_flush();
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000407
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000408 put_iac(IAC);
409 put_iac(SB);
410 put_iac(c);
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000411
Denys Vlasenkof76fd172013-05-12 02:13:24 +0200412 /* "... & 0xff" implicitly done below */
413 put_iac(x >> 8);
414 put_iac(x);
415 put_iac(y >> 8);
416 put_iac(y);
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000417
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000418 put_iac(IAC);
419 put_iac(SE);
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000420}
421#endif
422
Eric Andersencd8c4362001-11-10 11:22:46 +0000423static void setConMode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000424{
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000425 if (G.telflags & UF_ECHO) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000426 if (G.charmode == CHM_TRY) {
427 G.charmode = CHM_ON;
Denys Vlasenko57f07bf2012-09-17 11:53:09 +0200428 printf("\r\nEntering %s mode"
429 "\r\nEscape character is '^%c'.\r\n", "character", ']');
Eric Andersen28c70b32000-06-14 20:42:57 +0000430 rawmode();
431 }
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000432 } else {
Eric Andersen28c70b32000-06-14 20:42:57 +0000433 if (G.charmode != CHM_OFF) {
434 G.charmode = CHM_OFF;
Denys Vlasenko57f07bf2012-09-17 11:53:09 +0200435 printf("\r\nEntering %s mode"
436 "\r\nEscape character is '^%c'.\r\n", "line", 'C');
Eric Andersen28c70b32000-06-14 20:42:57 +0000437 cookmode();
438 }
439 }
440}
441
Eric Andersencd8c4362001-11-10 11:22:46 +0000442static void will_charmode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000443{
444 G.charmode = CHM_TRY;
445 G.telflags |= (UF_ECHO | UF_SGA);
446 setConMode();
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000447
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000448 put_iac2(DO, TELOPT_ECHO);
449 put_iac2(DO, TELOPT_SGA);
450 iac_flush();
Eric Andersen28c70b32000-06-14 20:42:57 +0000451}
452
Eric Andersencd8c4362001-11-10 11:22:46 +0000453static void do_linemode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000454{
455 G.charmode = CHM_TRY;
456 G.telflags &= ~(UF_ECHO | UF_SGA);
457 setConMode();
458
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000459 put_iac2(DONT, TELOPT_ECHO);
460 put_iac2(DONT, TELOPT_SGA);
461 iac_flush();
Eric Andersen28c70b32000-06-14 20:42:57 +0000462}
463
Rob Landley88621d72006-08-29 19:41:06 +0000464static void to_notsup(char c)
Eric Andersen28c70b32000-06-14 20:42:57 +0000465{
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000466 if (G.telwish == WILL)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000467 put_iac2(DONT, c);
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000468 else if (G.telwish == DO)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000469 put_iac2(WONT, c);
Eric Andersen28c70b32000-06-14 20:42:57 +0000470}
471
Rob Landley88621d72006-08-29 19:41:06 +0000472static void to_echo(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000473{
474 /* if server requests ECHO, don't agree */
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000475 if (G.telwish == DO) {
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000476 put_iac2(WONT, TELOPT_ECHO);
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000477 return;
478 }
479 if (G.telwish == DONT)
480 return;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000481
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000482 if (G.telflags & UF_ECHO) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000483 if (G.telwish == WILL)
484 return;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000485 } else if (G.telwish == WONT)
486 return;
Eric Andersen28c70b32000-06-14 20:42:57 +0000487
488 if (G.charmode != CHM_OFF)
489 G.telflags ^= UF_ECHO;
490
491 if (G.telflags & UF_ECHO)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000492 put_iac2(DO, TELOPT_ECHO);
Eric Andersen28c70b32000-06-14 20:42:57 +0000493 else
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000494 put_iac2(DONT, TELOPT_ECHO);
Eric Andersen28c70b32000-06-14 20:42:57 +0000495
496 setConMode();
Denys Vlasenko729ecb82010-06-07 14:14:26 +0200497 full_write1_str("\r\n"); /* sudden modec */
Eric Andersen28c70b32000-06-14 20:42:57 +0000498}
499
Rob Landley88621d72006-08-29 19:41:06 +0000500static void to_sga(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000501{
502 /* daemon always sends will/wont, client do/dont */
503
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000504 if (G.telflags & UF_SGA) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000505 if (G.telwish == WILL)
506 return;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000507 } else if (G.telwish == WONT)
508 return;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000509
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000510 G.telflags ^= UF_SGA; /* toggle */
511 if (G.telflags & UF_SGA)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000512 put_iac2(DO, TELOPT_SGA);
Eric Andersen28c70b32000-06-14 20:42:57 +0000513 else
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000514 put_iac2(DONT, TELOPT_SGA);
Eric Andersen28c70b32000-06-14 20:42:57 +0000515}
516
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000517#if ENABLE_FEATURE_TELNET_TTYPE
Rob Landley88621d72006-08-29 19:41:06 +0000518static void to_ttype(void)
Eric Andersen7e1273e2001-05-07 17:57:45 +0000519{
520 /* Tell server we will (or won't) do TTYPE */
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000521 if (G.ttype)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000522 put_iac2(WILL, TELOPT_TTYPE);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000523 else
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000524 put_iac2(WONT, TELOPT_TTYPE);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000525}
526#endif
527
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000528#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Rob Landley88621d72006-08-29 19:41:06 +0000529static void to_new_environ(void)
Eric Andersen539ffc92004-02-22 12:25:47 +0000530{
531 /* Tell server we will (or will not) do AUTOLOGIN */
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000532 if (G.autologin)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000533 put_iac2(WILL, TELOPT_NEW_ENVIRON);
Eric Andersen539ffc92004-02-22 12:25:47 +0000534 else
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000535 put_iac2(WONT, TELOPT_NEW_ENVIRON);
Eric Andersen539ffc92004-02-22 12:25:47 +0000536}
537#endif
538
Denys Vlasenkoed15dde2017-01-11 16:35:52 +0100539#if ENABLE_FEATURE_TELNET_WIDTH
Rob Landley88621d72006-08-29 19:41:06 +0000540static void to_naws(void)
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000541{
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000542 /* Tell server we will do NAWS */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000543 put_iac2(WILL, TELOPT_NAWS);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000544}
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000545#endif
546
Eric Andersen28c70b32000-06-14 20:42:57 +0000547static void telopt(byte c)
548{
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000549 switch (c) {
550 case TELOPT_ECHO:
551 to_echo(); break;
552 case TELOPT_SGA:
553 to_sga(); break;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000554#if ENABLE_FEATURE_TELNET_TTYPE
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000555 case TELOPT_TTYPE:
556 to_ttype(); break;
Eric Andersen7e1273e2001-05-07 17:57:45 +0000557#endif
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000558#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000559 case TELOPT_NEW_ENVIRON:
560 to_new_environ(); break;
Eric Andersen539ffc92004-02-22 12:25:47 +0000561#endif
Denys Vlasenkoed15dde2017-01-11 16:35:52 +0100562#if ENABLE_FEATURE_TELNET_WIDTH
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000563 case TELOPT_NAWS:
564 to_naws();
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000565 put_iac_naws(c, G.win_width, G.win_height);
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000566 break;
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000567#endif
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000568 default:
569 to_notsup(c);
570 break;
Eric Andersen28c70b32000-06-14 20:42:57 +0000571 }
572}
573
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000574/* subnegotiation -- ignore all (except TTYPE,NAWS) */
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200575static void subneg(byte c)
Eric Andersen28c70b32000-06-14 20:42:57 +0000576{
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000577 switch (G.telstate) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000578 case TS_SUB1:
579 if (c == IAC)
580 G.telstate = TS_SUB2;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000581#if ENABLE_FEATURE_TELNET_TTYPE
Eric Andersen7e1273e2001-05-07 17:57:45 +0000582 else
Denys Vlasenko25b10d92010-04-27 08:54:24 +0200583 if (c == TELOPT_TTYPE && G.ttype)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000584 put_iac_subopt(TELOPT_TTYPE, G.ttype);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000585#endif
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000586#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Eric Andersen539ffc92004-02-22 12:25:47 +0000587 else
Denys Vlasenko25b10d92010-04-27 08:54:24 +0200588 if (c == TELOPT_NEW_ENVIRON && G.autologin)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000589 put_iac_subopt_autologin();
Eric Andersen539ffc92004-02-22 12:25:47 +0000590#endif
Eric Andersen28c70b32000-06-14 20:42:57 +0000591 break;
592 case TS_SUB2:
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200593 if (c == SE) {
594 G.telstate = TS_COPY;
595 return;
596 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000597 G.telstate = TS_SUB1;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200598 break;
Eric Andersen28c70b32000-06-14 20:42:57 +0000599 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000600}
601
Eric Andersencd8c4362001-11-10 11:22:46 +0000602static void rawmode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000603{
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000604 if (G.do_termios)
605 tcsetattr(0, TCSADRAIN, &G.termios_raw);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000606}
Eric Andersen28c70b32000-06-14 20:42:57 +0000607
Eric Andersencd8c4362001-11-10 11:22:46 +0000608static void cookmode(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_def);
Eric Andersen28c70b32000-06-14 20:42:57 +0000612}
613
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000614int telnet_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko1101d1c2008-07-21 09:22:28 +0000615int telnet_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen28c70b32000-06-14 20:42:57 +0000616{
Denis Vlasenko9de420c2007-01-10 09:28:01 +0000617 char *host;
618 int port;
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000619 int len;
Eric Andersen28c70b32000-06-14 20:42:57 +0000620 struct pollfd ufds[2];
Eric Andersen28c70b32000-06-14 20:42:57 +0000621
Denis Vlasenko74324c82007-06-04 10:16:52 +0000622 INIT_G();
Eric Andersen28c70b32000-06-14 20:42:57 +0000623
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000624#if ENABLE_FEATURE_TELNET_TTYPE
625 G.ttype = getenv("TERM");
626#endif
627
Paul Foxf2ddc052005-07-20 19:55:19 +0000628 if (tcgetattr(0, &G.termios_def) >= 0) {
629 G.do_termios = 1;
Paul Foxf2ddc052005-07-20 19:55:19 +0000630 G.termios_raw = G.termios_def;
631 cfmakeraw(&G.termios_raw);
632 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000633
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000634#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Denys Vlasenkofb8348b2017-08-17 13:37:51 +0200635 if (1 == getopt32(argv, "al:", &G.autologin)) {
636 /* Only -a without -l USER picks $USER from envvar */
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000637 G.autologin = getenv("USER");
Denys Vlasenkofb8348b2017-08-17 13:37:51 +0200638 }
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000639 argv += optind;
Eric Andersen539ffc92004-02-22 12:25:47 +0000640#else
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000641 argv++;
Eric Andersen539ffc92004-02-22 12:25:47 +0000642#endif
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000643 if (!*argv)
644 bb_show_usage();
645 host = *argv++;
646 port = bb_lookup_port(*argv ? *argv++ : "telnet", "tcp", 23);
647 if (*argv) /* extra params?? */
648 bb_show_usage();
649
Denis Vlasenko1101d1c2008-07-21 09:22:28 +0000650 xmove_fd(create_and_connect_stream_or_die(host, port), netfd);
Eric Andersen28c70b32000-06-14 20:42:57 +0000651
Denys Vlasenkoc52cbea2015-08-24 19:48:03 +0200652 setsockopt_keepalive(netfd);
Eric Andersen28c70b32000-06-14 20:42:57 +0000653
Denys Vlasenko2f094ae2018-04-07 15:02:20 +0200654#if ENABLE_FEATURE_TELNET_WIDTH
655 get_terminal_width_height(0, &G.win_width, &G.win_height);
656//TODO: support dynamic resize?
657#endif
658
Denis Vlasenko08ea11a2008-09-11 19:51:11 +0000659 signal(SIGINT, record_signo);
Eric Andersen28c70b32000-06-14 20:42:57 +0000660
Denys Vlasenkoec074202010-10-29 02:33:38 +0200661 ufds[0].fd = STDIN_FILENO;
662 ufds[0].events = POLLIN;
663 ufds[1].fd = netfd;
664 ufds[1].events = POLLIN;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000665
Denis Vlasenko9de420c2007-01-10 09:28:01 +0000666 while (1) {
Denys Vlasenkoec074202010-10-29 02:33:38 +0200667 if (poll(ufds, 2, -1) < 0) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000668 /* error, ignore and/or log something, bay go to loop */
Denis Vlasenko08ea11a2008-09-11 19:51:11 +0000669 if (bb_got_signal)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000670 con_escape();
Eric Andersen28c70b32000-06-14 20:42:57 +0000671 else
672 sleep(1);
Denys Vlasenkoec074202010-10-29 02:33:38 +0200673 continue;
674 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000675
Denys Vlasenkoec074202010-10-29 02:33:38 +0200676// FIXME: reads can block. Need full bidirectional buffering.
Eric Andersen28c70b32000-06-14 20:42:57 +0000677
Denys Vlasenkoec074202010-10-29 02:33:38 +0200678 if (ufds[0].revents) {
679 len = safe_read(STDIN_FILENO, G.buf, DATABUFSIZE);
680 if (len <= 0)
681 doexit(EXIT_SUCCESS);
Denys Vlasenkoec074202010-10-29 02:33:38 +0200682 handle_net_output(len);
683 }
684
685 if (ufds[1].revents) {
686 len = safe_read(netfd, G.buf, DATABUFSIZE);
687 if (len <= 0) {
688 full_write1_str("Connection closed by foreign host\r\n");
689 doexit(EXIT_FAILURE);
Eric Andersen28c70b32000-06-14 20:42:57 +0000690 }
Denys Vlasenkoec074202010-10-29 02:33:38 +0200691 handle_net_input(len);
Eric Andersen28c70b32000-06-14 20:42:57 +0000692 }
Denis Vlasenko1101d1c2008-07-21 09:22:28 +0000693 } /* while (1) */
Eric Andersen28c70b32000-06-14 20:42:57 +0000694}