blob: 9fc85050bac7a01d3b95dc02241f80501ce533b1 [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
371static void put_iac4_msb_lsb(unsigned x_y_z_t)
372{
373 put_iac2_msb_lsb(x_y_z_t >> 16);
374 put_iac2_msb_lsb(x_y_z_t); /* "... & 0xffff" is implicit */
375}
376#define put_iac4_x_y_z_t(x,y,z,t) put_iac4_msb_lsb(((x)<<24) + ((y)<<16) + ((z)<<8) + (t))
377
378static void put_iac3_IAC_x_y_merged(unsigned wwdd_and_c)
379{
380 put_iac(IAC);
381 put_iac2_msb_lsb(wwdd_and_c);
382}
383#define put_iac3_IAC_x_y(wwdd,c) put_iac3_IAC_x_y_merged(((wwdd)<<8) + (c))
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000384
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000385#if ENABLE_FEATURE_TELNET_TTYPE
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000386static void put_iac_subopt(byte c, char *str)
Eric Andersen7e1273e2001-05-07 17:57:45 +0000387{
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100388 put_iac4_x_y_z_t(IAC, SB, c, 0);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000389
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000390 while (*str)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000391 put_iac(*str++);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000392
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100393 put_iac2_x_y(IAC, SE);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000394}
395#endif
396
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000397#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000398static void put_iac_subopt_autologin(void)
Eric Andersen539ffc92004-02-22 12:25:47 +0000399{
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100400 const char *p;
Eric Andersen539ffc92004-02-22 12:25:47 +0000401
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100402 put_iac4_x_y_z_t(IAC, SB, TELOPT_NEW_ENVIRON, TELQUAL_IS);
403 put_iac4_x_y_z_t(NEW_ENV_VAR, 'U', 'S', 'E'); /* "USER" */
404 put_iac2_x_y('R', NEW_ENV_VALUE);
Eric Andersen539ffc92004-02-22 12:25:47 +0000405
Denys Vlasenko25b10d92010-04-27 08:54:24 +0200406 p = G.autologin;
407 while (*p)
408 put_iac(*p++);
Eric Andersen539ffc92004-02-22 12:25:47 +0000409
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100410 put_iac2_x_y(IAC, SE);
Eric Andersen539ffc92004-02-22 12:25:47 +0000411}
412#endif
413
Denys Vlasenkoed15dde2017-01-11 16:35:52 +0100414#if ENABLE_FEATURE_TELNET_WIDTH
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000415static void put_iac_naws(byte c, int x, int y)
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000416{
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100417 put_iac3_IAC_x_y(SB, c);
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000418
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100419 put_iac4_msb_lsb((x << 16) + y);
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000420
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100421 put_iac2_x_y(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
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100450 put_iac3_IAC_x_y(DO, TELOPT_ECHO);
451 put_iac3_IAC_x_y(DO, TELOPT_SGA);
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000452 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
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100461 put_iac3_IAC_x_y(DONT, TELOPT_ECHO);
462 put_iac3_IAC_x_y(DONT, TELOPT_SGA);
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000463 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)
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100469 put_iac3_IAC_x_y(DONT, c);
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000470 else if (G.telwish == DO)
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100471 put_iac3_IAC_x_y(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) {
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100478 put_iac3_IAC_x_y(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)
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100494 put_iac3_IAC_x_y(DO, TELOPT_ECHO);
Eric Andersen28c70b32000-06-14 20:42:57 +0000495 else
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100496 put_iac3_IAC_x_y(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)
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100514 put_iac3_IAC_x_y(DO, TELOPT_SGA);
Eric Andersen28c70b32000-06-14 20:42:57 +0000515 else
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100516 put_iac3_IAC_x_y(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)
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100524 put_iac3_IAC_x_y(WILL, TELOPT_TTYPE);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000525 else
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100526 put_iac3_IAC_x_y(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)
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100535 put_iac3_IAC_x_y(WILL, TELOPT_NEW_ENVIRON);
Eric Andersen539ffc92004-02-22 12:25:47 +0000536 else
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100537 put_iac3_IAC_x_y(WONT, TELOPT_NEW_ENVIRON);
Eric Andersen539ffc92004-02-22 12:25:47 +0000538}
539#endif
540
Denys Vlasenkoed15dde2017-01-11 16:35:52 +0100541#if ENABLE_FEATURE_TELNET_WIDTH
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 */
Denys Vlasenko935afaf2019-01-06 18:45:38 +0100545 put_iac3_IAC_x_y(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
Denys Vlasenkoed15dde2017-01-11 16:35:52 +0100564#if ENABLE_FEATURE_TELNET_WIDTH
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_TELNET_TTYPE
627 G.ttype = getenv("TERM");
628#endif
629
Paul Foxf2ddc052005-07-20 19:55:19 +0000630 if (tcgetattr(0, &G.termios_def) >= 0) {
631 G.do_termios = 1;
Paul Foxf2ddc052005-07-20 19:55:19 +0000632 G.termios_raw = G.termios_def;
633 cfmakeraw(&G.termios_raw);
634 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000635
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000636#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Denys Vlasenkofb8348b2017-08-17 13:37:51 +0200637 if (1 == getopt32(argv, "al:", &G.autologin)) {
638 /* Only -a without -l USER picks $USER from envvar */
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000639 G.autologin = getenv("USER");
Denys Vlasenkofb8348b2017-08-17 13:37:51 +0200640 }
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000641 argv += optind;
Eric Andersen539ffc92004-02-22 12:25:47 +0000642#else
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000643 argv++;
Eric Andersen539ffc92004-02-22 12:25:47 +0000644#endif
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000645 if (!*argv)
646 bb_show_usage();
647 host = *argv++;
Denys Vlasenko2aeb2012018-04-17 12:43:54 +0200648 port = *argv ? bb_lookup_port(*argv++, "tcp", 23)
649 : bb_lookup_std_port("telnet", "tcp", 23);
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000650 if (*argv) /* extra params?? */
651 bb_show_usage();
652
Denis Vlasenko1101d1c2008-07-21 09:22:28 +0000653 xmove_fd(create_and_connect_stream_or_die(host, port), netfd);
Danijel Tasov3f4fac52019-01-06 19:20:05 +0100654 printf("Connected to %s\n", host);
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
Denys Vlasenko2f094ae2018-04-07 15:02:20 +0200658#if ENABLE_FEATURE_TELNET_WIDTH
659 get_terminal_width_height(0, &G.win_width, &G.win_height);
660//TODO: support dynamic resize?
661#endif
662
Denis Vlasenko08ea11a2008-09-11 19:51:11 +0000663 signal(SIGINT, record_signo);
Eric Andersen28c70b32000-06-14 20:42:57 +0000664
Denys Vlasenkoec074202010-10-29 02:33:38 +0200665 ufds[0].fd = STDIN_FILENO;
666 ufds[0].events = POLLIN;
667 ufds[1].fd = netfd;
668 ufds[1].events = POLLIN;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000669
Denis Vlasenko9de420c2007-01-10 09:28:01 +0000670 while (1) {
Denys Vlasenkoec074202010-10-29 02:33:38 +0200671 if (poll(ufds, 2, -1) < 0) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000672 /* error, ignore and/or log something, bay go to loop */
Denis Vlasenko08ea11a2008-09-11 19:51:11 +0000673 if (bb_got_signal)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000674 con_escape();
Eric Andersen28c70b32000-06-14 20:42:57 +0000675 else
676 sleep(1);
Denys Vlasenkoec074202010-10-29 02:33:38 +0200677 continue;
678 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000679
Denys Vlasenkoec074202010-10-29 02:33:38 +0200680// FIXME: reads can block. Need full bidirectional buffering.
Eric Andersen28c70b32000-06-14 20:42:57 +0000681
Denys Vlasenkoec074202010-10-29 02:33:38 +0200682 if (ufds[0].revents) {
683 len = safe_read(STDIN_FILENO, G.buf, DATABUFSIZE);
684 if (len <= 0)
685 doexit(EXIT_SUCCESS);
Denys Vlasenkoec074202010-10-29 02:33:38 +0200686 handle_net_output(len);
687 }
688
689 if (ufds[1].revents) {
690 len = safe_read(netfd, G.buf, DATABUFSIZE);
691 if (len <= 0) {
692 full_write1_str("Connection closed by foreign host\r\n");
693 doexit(EXIT_FAILURE);
Eric Andersen28c70b32000-06-14 20:42:57 +0000694 }
Denys Vlasenkoec074202010-10-29 02:33:38 +0200695 handle_net_input(len);
Eric Andersen28c70b32000-06-14 20:42:57 +0000696 }
Denis Vlasenko1101d1c2008-07-21 09:22:28 +0000697 } /* while (1) */
Eric Andersen28c70b32000-06-14 20:42:57 +0000698}