blob: f520fe1dda327f19b95da08fa6e7411fefd816ce [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 *
Erik Andersenf7c49ef2000-02-22 17:17:45 +000022 */
Denys Vlasenko47367e12016-11-23 09:05:14 +010023//config:config TELNET
24//config: bool "telnet"
25//config: default y
26//config: help
27//config: Telnet is an interface to the TELNET protocol, but is also commonly
28//config: used to test other simple protocols.
29//config:
30//config:config FEATURE_TELNET_TTYPE
31//config: bool "Pass TERM type to remote host"
32//config: default y
33//config: depends on TELNET
34//config: help
35//config: Setting this option will forward the TERM environment variable to the
36//config: remote host you are connecting to. This is useful to make sure that
37//config: things like ANSI colors and other control sequences behave.
38//config:
39//config:config FEATURE_TELNET_AUTOLOGIN
40//config: bool "Pass USER type to remote host"
41//config: default y
42//config: depends on TELNET
43//config: help
44//config: Setting this option will forward the USER environment variable to the
45//config: remote host you are connecting to. This is useful when you need to
46//config: log into a machine without telling the username (autologin). This
47//config: option enables `-a' and `-l USER' arguments.
48
49//applet:IF_TELNET(APPLET(telnet, BB_DIR_USR_BIN, BB_SUID_DROP))
50
51//kbuild:lib-$(CONFIG_TELNET) += telnet.o
Erik Andersenf7c49ef2000-02-22 17:17:45 +000052
Pere Orga5bc8c002011-04-11 03:29:49 +020053//usage:#if ENABLE_FEATURE_TELNET_AUTOLOGIN
54//usage:#define telnet_trivial_usage
55//usage: "[-a] [-l USER] HOST [PORT]"
56//usage:#define telnet_full_usage "\n\n"
57//usage: "Connect to telnet server\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020058//usage: "\n -a Automatic login with $USER variable"
59//usage: "\n -l USER Automatic login as USER"
60//usage:
61//usage:#else
62//usage:#define telnet_trivial_usage
63//usage: "HOST [PORT]"
64//usage:#define telnet_full_usage "\n\n"
65//usage: "Connect to telnet server"
66//usage:#endif
67
Eric Andersen28c70b32000-06-14 20:42:57 +000068#include <arpa/telnet.h>
Eric Andersen28c70b32000-06-14 20:42:57 +000069#include <netinet/in.h>
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000070#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020071#include "common_bufsiz.h"
Erik Andersenf7c49ef2000-02-22 17:17:45 +000072
Denys Vlasenko14bd16a2011-07-08 08:49:40 +020073#ifdef __BIONIC__
74/* should be in arpa/telnet.h */
75# define IAC 255 /* interpret as command: */
76# define DONT 254 /* you are not to use option */
77# define DO 253 /* please, you use option */
78# define WONT 252 /* I won't use option */
79# define WILL 251 /* I will use option */
80# define SB 250 /* interpret as subnegotiation */
81# define SE 240 /* end sub negotiation */
82# define TELOPT_ECHO 1 /* echo */
83# define TELOPT_SGA 3 /* suppress go ahead */
84# define TELOPT_TTYPE 24 /* terminal type */
85# define TELOPT_NAWS 31 /* window size */
86#endif
87
Pavel Roskin616d13b2000-07-28 19:38:27 +000088#ifdef DOTRACE
Denys Vlasenko14bd16a2011-07-08 08:49:40 +020089# define TRACE(x, y) do { if (x) printf y; } while (0)
Eric Andersen28c70b32000-06-14 20:42:57 +000090#else
Denys Vlasenko14bd16a2011-07-08 08:49:40 +020091# define TRACE(x, y)
Eric Andersen28c70b32000-06-14 20:42:57 +000092#endif
93
Mark Whitley59ab0252001-01-23 22:30:04 +000094enum {
Denis Vlasenkof24cdf12007-03-19 14:47:09 +000095 DATABUFSIZE = 128,
96 IACBUFSIZE = 128,
97
Rob Landleybc68cd12006-03-10 19:22:06 +000098 CHM_TRY = 0,
99 CHM_ON = 1,
100 CHM_OFF = 2,
101
102 UF_ECHO = 0x01,
103 UF_SGA = 0x02,
104
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200105 TS_NORMAL = 0,
106 TS_COPY = 1,
Mark Whitley59ab0252001-01-23 22:30:04 +0000107 TS_IAC = 2,
108 TS_OPT = 3,
109 TS_SUB1 = 4,
110 TS_SUB2 = 5,
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200111 TS_CR = 6,
Mark Whitley59ab0252001-01-23 22:30:04 +0000112};
Eric Andersen28c70b32000-06-14 20:42:57 +0000113
Eric Andersen28c70b32000-06-14 20:42:57 +0000114typedef unsigned char byte;
115
Denis Vlasenko1101d1c2008-07-21 09:22:28 +0000116enum { netfd = 3 };
117
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000118struct globals {
Denis Vlasenko1101d1c2008-07-21 09:22:28 +0000119 int iaclen; /* could even use byte, but it's a loss on x86 */
Eric Andersen28c70b32000-06-14 20:42:57 +0000120 byte telstate; /* telnet negotiation state from network input */
121 byte telwish; /* DO, DONT, WILL, WONT */
122 byte charmode;
123 byte telflags;
Paul Foxf2ddc052005-07-20 19:55:19 +0000124 byte do_termios;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000125#if ENABLE_FEATURE_TELNET_TTYPE
126 char *ttype;
127#endif
128#if ENABLE_FEATURE_TELNET_AUTOLOGIN
129 const char *autologin;
130#endif
131#if ENABLE_FEATURE_AUTOWIDTH
Denis Vlasenko55995022008-05-18 22:28:26 +0000132 unsigned win_width, win_height;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000133#endif
134 /* same buffer used both for network and console read/write */
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000135 char buf[DATABUFSIZE];
136 /* buffer to handle telnet negotiations */
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000137 char iacbuf[IACBUFSIZE];
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000138 struct termios termios_def;
139 struct termios termios_raw;
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100140} FIX_ALIASING;
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200141#define G (*(struct globals*)bb_common_bufsiz1)
Denis Vlasenko74324c82007-06-04 10:16:52 +0000142#define INIT_G() do { \
Denys Vlasenko47cfbf32016-04-21 18:18:48 +0200143 setup_common_bufsiz(); \
Denys Vlasenko7b85ec32015-10-13 17:17:34 +0200144 BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \
Denis Vlasenko74324c82007-06-04 10:16:52 +0000145} while (0)
Eric Andersen28c70b32000-06-14 20:42:57 +0000146
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200147
Eric Andersencd8c4362001-11-10 11:22:46 +0000148static void rawmode(void);
149static void cookmode(void);
150static void do_linemode(void);
151static void will_charmode(void);
Eric Andersen28c70b32000-06-14 20:42:57 +0000152static void telopt(byte c);
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200153static void subneg(byte c);
Eric Andersen28c70b32000-06-14 20:42:57 +0000154
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000155static void iac_flush(void)
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000156{
Denys Vlasenkof76fd172013-05-12 02:13:24 +0200157 full_write(netfd, G.iacbuf, G.iaclen);
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000158 G.iaclen = 0;
159}
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 }
241 dst++;
Eric Andersen28c70b32000-06-14 20:42:57 +0000242 }
Denys Vlasenko0ffd63c2012-09-17 11:54:35 +0200243 if (dst - outbuf != 0)
244 full_write(netfd, outbuf, dst - outbuf);
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000245}
246
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000247static void handle_net_input(int len)
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000248{
Eric Andersen28c70b32000-06-14 20:42:57 +0000249 int i;
250 int cstart = 0;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000251
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000252 for (i = 0; i < len; i++) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000253 byte c = G.buf[i];
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000254
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200255 if (G.telstate == TS_NORMAL) { /* most typical state */
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000256 if (c == IAC) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000257 cstart = i;
258 G.telstate = TS_IAC;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000259 }
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200260 else if (c == '\r') {
261 cstart = i + 1;
262 G.telstate = TS_CR;
263 }
264 /* No IACs were seen so far, no need to copy
265 * bytes within G.buf: */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000266 continue;
267 }
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200268
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000269 switch (G.telstate) {
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200270 case TS_CR:
271 /* Prev char was CR. If cur one is NUL, ignore it.
272 * See RFC 1123 section 3.3.1 for discussion of telnet EOL handling.
273 */
274 G.telstate = TS_COPY;
275 if (c == '\0')
276 break;
277 /* else: fall through - need to handle CR IAC ... properly */
278
279 case TS_COPY: /* Prev char was ordinary */
280 /* Similar to NORMAL, but in TS_COPY we need to copy bytes */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000281 if (c == IAC)
282 G.telstate = TS_IAC;
283 else
284 G.buf[cstart++] = c;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200285 if (c == '\r')
286 G.telstate = TS_CR;
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000287 break;
Eric Andersen28c70b32000-06-14 20:42:57 +0000288
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200289 case TS_IAC: /* Prev char was IAC */
290 if (c == IAC) { /* IAC IAC -> one IAC */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000291 G.buf[cstart++] = c;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200292 G.telstate = TS_COPY;
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000293 break;
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000294 }
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000295 /* else */
296 switch (c) {
297 case SB:
298 G.telstate = TS_SUB1;
299 break;
300 case DO:
301 case DONT:
302 case WILL:
303 case WONT:
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200304 G.telwish = c;
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000305 G.telstate = TS_OPT;
306 break;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200307 /* DATA MARK must be added later */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000308 default:
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200309 G.telstate = TS_COPY;
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000310 }
311 break;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200312
313 case TS_OPT: /* Prev chars were IAC WILL/WONT/DO/DONT */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000314 telopt(c);
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200315 G.telstate = TS_COPY;
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000316 break;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200317
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000318 case TS_SUB1: /* Subnegotiation */
319 case TS_SUB2: /* Subnegotiation */
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200320 subneg(c); /* can change G.telstate */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000321 break;
322 }
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000323 }
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200324
325 if (G.telstate != TS_NORMAL) {
326 /* We had some IACs, or CR */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000327 if (G.iaclen)
328 iac_flush();
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200329 if (G.telstate == TS_COPY) /* we aren't in the middle of IAC */
330 G.telstate = TS_NORMAL;
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000331 len = cstart;
Eric Andersen28c70b32000-06-14 20:42:57 +0000332 }
333
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000334 if (len)
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200335 full_write(STDOUT_FILENO, G.buf, len);
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000336}
337
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000338static void put_iac(int c)
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000339{
Eric Andersen28c70b32000-06-14 20:42:57 +0000340 G.iacbuf[G.iaclen++] = c;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000341}
342
Denys Vlasenko57727d42016-10-12 20:42:58 +0200343static void put_iac2_merged(unsigned wwdd_and_c)
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000344{
Eric Andersen28c70b32000-06-14 20:42:57 +0000345 if (G.iaclen + 3 > IACBUFSIZE)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000346 iac_flush();
Eric Andersen28c70b32000-06-14 20:42:57 +0000347
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000348 put_iac(IAC);
Denys Vlasenko57727d42016-10-12 20:42:58 +0200349 put_iac(wwdd_and_c >> 8);
350 put_iac(wwdd_and_c & 0xff);
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000351}
Denys Vlasenko57727d42016-10-12 20:42:58 +0200352#define put_iac2(wwdd,c) put_iac2_merged(((wwdd)<<8) + (c))
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000353
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000354#if ENABLE_FEATURE_TELNET_TTYPE
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000355static void put_iac_subopt(byte c, char *str)
Eric Andersen7e1273e2001-05-07 17:57:45 +0000356{
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000357 int len = strlen(str) + 6; // ( 2 + 1 + 1 + strlen + 2 )
Eric Andersen7e1273e2001-05-07 17:57:45 +0000358
359 if (G.iaclen + len > IACBUFSIZE)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000360 iac_flush();
Eric Andersen7e1273e2001-05-07 17:57:45 +0000361
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000362 put_iac(IAC);
363 put_iac(SB);
364 put_iac(c);
365 put_iac(0);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000366
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000367 while (*str)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000368 put_iac(*str++);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000369
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000370 put_iac(IAC);
371 put_iac(SE);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000372}
373#endif
374
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000375#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000376static void put_iac_subopt_autologin(void)
Eric Andersen539ffc92004-02-22 12:25:47 +0000377{
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000378 int len = strlen(G.autologin) + 6; // (2 + 1 + 1 + strlen + 2)
Denys Vlasenko25b10d92010-04-27 08:54:24 +0200379 const char *p = "USER";
Eric Andersen539ffc92004-02-22 12:25:47 +0000380
381 if (G.iaclen + len > IACBUFSIZE)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000382 iac_flush();
Eric Andersen539ffc92004-02-22 12:25:47 +0000383
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000384 put_iac(IAC);
385 put_iac(SB);
386 put_iac(TELOPT_NEW_ENVIRON);
387 put_iac(TELQUAL_IS);
388 put_iac(NEW_ENV_VAR);
Eric Andersen539ffc92004-02-22 12:25:47 +0000389
Denys Vlasenko25b10d92010-04-27 08:54:24 +0200390 while (*p)
391 put_iac(*p++);
Eric Andersen539ffc92004-02-22 12:25:47 +0000392
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000393 put_iac(NEW_ENV_VALUE);
Eric Andersen539ffc92004-02-22 12:25:47 +0000394
Denys Vlasenko25b10d92010-04-27 08:54:24 +0200395 p = G.autologin;
396 while (*p)
397 put_iac(*p++);
Eric Andersen539ffc92004-02-22 12:25:47 +0000398
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000399 put_iac(IAC);
400 put_iac(SE);
Eric Andersen539ffc92004-02-22 12:25:47 +0000401}
402#endif
403
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000404#if ENABLE_FEATURE_AUTOWIDTH
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000405static void put_iac_naws(byte c, int x, int y)
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000406{
407 if (G.iaclen + 9 > IACBUFSIZE)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000408 iac_flush();
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000409
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000410 put_iac(IAC);
411 put_iac(SB);
412 put_iac(c);
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000413
Denys Vlasenkof76fd172013-05-12 02:13:24 +0200414 /* "... & 0xff" implicitly done below */
415 put_iac(x >> 8);
416 put_iac(x);
417 put_iac(y >> 8);
418 put_iac(y);
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000419
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000420 put_iac(IAC);
421 put_iac(SE);
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000422}
423#endif
424
Eric Andersencd8c4362001-11-10 11:22:46 +0000425static void setConMode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000426{
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000427 if (G.telflags & UF_ECHO) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000428 if (G.charmode == CHM_TRY) {
429 G.charmode = CHM_ON;
Denys Vlasenko57f07bf2012-09-17 11:53:09 +0200430 printf("\r\nEntering %s mode"
431 "\r\nEscape character is '^%c'.\r\n", "character", ']');
Eric Andersen28c70b32000-06-14 20:42:57 +0000432 rawmode();
433 }
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000434 } else {
Eric Andersen28c70b32000-06-14 20:42:57 +0000435 if (G.charmode != CHM_OFF) {
436 G.charmode = CHM_OFF;
Denys Vlasenko57f07bf2012-09-17 11:53:09 +0200437 printf("\r\nEntering %s mode"
438 "\r\nEscape character is '^%c'.\r\n", "line", 'C');
Eric Andersen28c70b32000-06-14 20:42:57 +0000439 cookmode();
440 }
441 }
442}
443
Eric Andersencd8c4362001-11-10 11:22:46 +0000444static void will_charmode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000445{
446 G.charmode = CHM_TRY;
447 G.telflags |= (UF_ECHO | UF_SGA);
448 setConMode();
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000449
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000450 put_iac2(DO, TELOPT_ECHO);
451 put_iac2(DO, TELOPT_SGA);
452 iac_flush();
Eric Andersen28c70b32000-06-14 20:42:57 +0000453}
454
Eric Andersencd8c4362001-11-10 11:22:46 +0000455static void do_linemode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000456{
457 G.charmode = CHM_TRY;
458 G.telflags &= ~(UF_ECHO | UF_SGA);
459 setConMode();
460
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000461 put_iac2(DONT, TELOPT_ECHO);
462 put_iac2(DONT, TELOPT_SGA);
463 iac_flush();
Eric Andersen28c70b32000-06-14 20:42:57 +0000464}
465
Rob Landley88621d72006-08-29 19:41:06 +0000466static void to_notsup(char c)
Eric Andersen28c70b32000-06-14 20:42:57 +0000467{
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000468 if (G.telwish == WILL)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000469 put_iac2(DONT, c);
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000470 else if (G.telwish == DO)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000471 put_iac2(WONT, c);
Eric Andersen28c70b32000-06-14 20:42:57 +0000472}
473
Rob Landley88621d72006-08-29 19:41:06 +0000474static void to_echo(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000475{
476 /* if server requests ECHO, don't agree */
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000477 if (G.telwish == DO) {
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000478 put_iac2(WONT, TELOPT_ECHO);
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000479 return;
480 }
481 if (G.telwish == DONT)
482 return;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000483
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000484 if (G.telflags & UF_ECHO) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000485 if (G.telwish == WILL)
486 return;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000487 } else if (G.telwish == WONT)
488 return;
Eric Andersen28c70b32000-06-14 20:42:57 +0000489
490 if (G.charmode != CHM_OFF)
491 G.telflags ^= UF_ECHO;
492
493 if (G.telflags & UF_ECHO)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000494 put_iac2(DO, TELOPT_ECHO);
Eric Andersen28c70b32000-06-14 20:42:57 +0000495 else
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000496 put_iac2(DONT, TELOPT_ECHO);
Eric Andersen28c70b32000-06-14 20:42:57 +0000497
498 setConMode();
Denys Vlasenko729ecb82010-06-07 14:14:26 +0200499 full_write1_str("\r\n"); /* sudden modec */
Eric Andersen28c70b32000-06-14 20:42:57 +0000500}
501
Rob Landley88621d72006-08-29 19:41:06 +0000502static void to_sga(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000503{
504 /* daemon always sends will/wont, client do/dont */
505
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000506 if (G.telflags & UF_SGA) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000507 if (G.telwish == WILL)
508 return;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000509 } else if (G.telwish == WONT)
510 return;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000511
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000512 G.telflags ^= UF_SGA; /* toggle */
513 if (G.telflags & UF_SGA)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000514 put_iac2(DO, TELOPT_SGA);
Eric Andersen28c70b32000-06-14 20:42:57 +0000515 else
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000516 put_iac2(DONT, TELOPT_SGA);
Eric Andersen28c70b32000-06-14 20:42:57 +0000517}
518
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000519#if ENABLE_FEATURE_TELNET_TTYPE
Rob Landley88621d72006-08-29 19:41:06 +0000520static void to_ttype(void)
Eric Andersen7e1273e2001-05-07 17:57:45 +0000521{
522 /* Tell server we will (or won't) do TTYPE */
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000523 if (G.ttype)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000524 put_iac2(WILL, TELOPT_TTYPE);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000525 else
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000526 put_iac2(WONT, TELOPT_TTYPE);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000527}
528#endif
529
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000530#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Rob Landley88621d72006-08-29 19:41:06 +0000531static void to_new_environ(void)
Eric Andersen539ffc92004-02-22 12:25:47 +0000532{
533 /* Tell server we will (or will not) do AUTOLOGIN */
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000534 if (G.autologin)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000535 put_iac2(WILL, TELOPT_NEW_ENVIRON);
Eric Andersen539ffc92004-02-22 12:25:47 +0000536 else
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000537 put_iac2(WONT, TELOPT_NEW_ENVIRON);
Eric Andersen539ffc92004-02-22 12:25:47 +0000538}
539#endif
540
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000541#if ENABLE_FEATURE_AUTOWIDTH
Rob Landley88621d72006-08-29 19:41:06 +0000542static void to_naws(void)
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000543{
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000544 /* Tell server we will do NAWS */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000545 put_iac2(WILL, TELOPT_NAWS);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000546}
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000547#endif
548
Eric Andersen28c70b32000-06-14 20:42:57 +0000549static void telopt(byte c)
550{
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000551 switch (c) {
552 case TELOPT_ECHO:
553 to_echo(); break;
554 case TELOPT_SGA:
555 to_sga(); break;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000556#if ENABLE_FEATURE_TELNET_TTYPE
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000557 case TELOPT_TTYPE:
558 to_ttype(); break;
Eric Andersen7e1273e2001-05-07 17:57:45 +0000559#endif
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000560#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000561 case TELOPT_NEW_ENVIRON:
562 to_new_environ(); break;
Eric Andersen539ffc92004-02-22 12:25:47 +0000563#endif
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000564#if ENABLE_FEATURE_AUTOWIDTH
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000565 case TELOPT_NAWS:
566 to_naws();
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000567 put_iac_naws(c, G.win_width, G.win_height);
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000568 break;
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000569#endif
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000570 default:
571 to_notsup(c);
572 break;
Eric Andersen28c70b32000-06-14 20:42:57 +0000573 }
574}
575
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000576/* subnegotiation -- ignore all (except TTYPE,NAWS) */
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200577static void subneg(byte c)
Eric Andersen28c70b32000-06-14 20:42:57 +0000578{
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000579 switch (G.telstate) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000580 case TS_SUB1:
581 if (c == IAC)
582 G.telstate = TS_SUB2;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000583#if ENABLE_FEATURE_TELNET_TTYPE
Eric Andersen7e1273e2001-05-07 17:57:45 +0000584 else
Denys Vlasenko25b10d92010-04-27 08:54:24 +0200585 if (c == TELOPT_TTYPE && G.ttype)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000586 put_iac_subopt(TELOPT_TTYPE, G.ttype);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000587#endif
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000588#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Eric Andersen539ffc92004-02-22 12:25:47 +0000589 else
Denys Vlasenko25b10d92010-04-27 08:54:24 +0200590 if (c == TELOPT_NEW_ENVIRON && G.autologin)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000591 put_iac_subopt_autologin();
Eric Andersen539ffc92004-02-22 12:25:47 +0000592#endif
Eric Andersen28c70b32000-06-14 20:42:57 +0000593 break;
594 case TS_SUB2:
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200595 if (c == SE) {
596 G.telstate = TS_COPY;
597 return;
598 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000599 G.telstate = TS_SUB1;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200600 break;
Eric Andersen28c70b32000-06-14 20:42:57 +0000601 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000602}
603
Eric Andersencd8c4362001-11-10 11:22:46 +0000604static void rawmode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000605{
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000606 if (G.do_termios)
607 tcsetattr(0, TCSADRAIN, &G.termios_raw);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000608}
Eric Andersen28c70b32000-06-14 20:42:57 +0000609
Eric Andersencd8c4362001-11-10 11:22:46 +0000610static void cookmode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000611{
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000612 if (G.do_termios)
613 tcsetattr(0, TCSADRAIN, &G.termios_def);
Eric Andersen28c70b32000-06-14 20:42:57 +0000614}
615
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000616int telnet_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko1101d1c2008-07-21 09:22:28 +0000617int telnet_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen28c70b32000-06-14 20:42:57 +0000618{
Denis Vlasenko9de420c2007-01-10 09:28:01 +0000619 char *host;
620 int port;
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000621 int len;
Eric Andersen28c70b32000-06-14 20:42:57 +0000622 struct pollfd ufds[2];
Eric Andersen28c70b32000-06-14 20:42:57 +0000623
Denis Vlasenko74324c82007-06-04 10:16:52 +0000624 INIT_G();
Eric Andersen28c70b32000-06-14 20:42:57 +0000625
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000626#if ENABLE_FEATURE_AUTOWIDTH
627 get_terminal_width_height(0, &G.win_width, &G.win_height);
628#endif
629
630#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
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000641 if (1 & getopt32(argv, "al:", &G.autologin))
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000642 G.autologin = getenv("USER");
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000643 argv += optind;
Eric Andersen539ffc92004-02-22 12:25:47 +0000644#else
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000645 argv++;
Eric Andersen539ffc92004-02-22 12:25:47 +0000646#endif
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000647 if (!*argv)
648 bb_show_usage();
649 host = *argv++;
650 port = bb_lookup_port(*argv ? *argv++ : "telnet", "tcp", 23);
651 if (*argv) /* extra params?? */
652 bb_show_usage();
653
Denis Vlasenko1101d1c2008-07-21 09:22:28 +0000654 xmove_fd(create_and_connect_stream_or_die(host, port), netfd);
Eric Andersen28c70b32000-06-14 20:42:57 +0000655
Denys Vlasenkoc52cbea2015-08-24 19:48:03 +0200656 setsockopt_keepalive(netfd);
Eric Andersen28c70b32000-06-14 20:42:57 +0000657
Denis Vlasenko08ea11a2008-09-11 19:51:11 +0000658 signal(SIGINT, record_signo);
Eric Andersen28c70b32000-06-14 20:42:57 +0000659
Denys Vlasenkoec074202010-10-29 02:33:38 +0200660 ufds[0].fd = STDIN_FILENO;
661 ufds[0].events = POLLIN;
662 ufds[1].fd = netfd;
663 ufds[1].events = POLLIN;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000664
Denis Vlasenko9de420c2007-01-10 09:28:01 +0000665 while (1) {
Denys Vlasenkoec074202010-10-29 02:33:38 +0200666 if (poll(ufds, 2, -1) < 0) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000667 /* error, ignore and/or log something, bay go to loop */
Denis Vlasenko08ea11a2008-09-11 19:51:11 +0000668 if (bb_got_signal)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000669 con_escape();
Eric Andersen28c70b32000-06-14 20:42:57 +0000670 else
671 sleep(1);
Denys Vlasenkoec074202010-10-29 02:33:38 +0200672 continue;
673 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000674
Denys Vlasenkoec074202010-10-29 02:33:38 +0200675// FIXME: reads can block. Need full bidirectional buffering.
Eric Andersen28c70b32000-06-14 20:42:57 +0000676
Denys Vlasenkoec074202010-10-29 02:33:38 +0200677 if (ufds[0].revents) {
678 len = safe_read(STDIN_FILENO, G.buf, DATABUFSIZE);
679 if (len <= 0)
680 doexit(EXIT_SUCCESS);
681 TRACE(0, ("Read con: %d\n", len));
682 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 TRACE(0, ("Read netfd (%d): %d\n", netfd, len));
692 handle_net_input(len);
Eric Andersen28c70b32000-06-14 20:42:57 +0000693 }
Denis Vlasenko1101d1c2008-07-21 09:22:28 +0000694 } /* while (1) */
Eric Andersen28c70b32000-06-14 20:42:57 +0000695}